couriersandfreight - Version 10.0.1

Version Notes

Couriers and Freight Shipping Extension Solutions

Download this release

Release Info

Developer CN Global Pty Ltd
Extension couriersandfreight
Version 10.0.1
Comparing to
See all releases


Version 10.0.1

Files changed (113) hide show
  1. app/code/community/Candf/Customshipping/Block/Adminhtml/Boxes.php +14 -0
  2. app/code/community/Candf/Customshipping/Block/Adminhtml/Boxes/Edit.php +25 -0
  3. app/code/community/Candf/Customshipping/Block/Adminhtml/Boxes/Edit/Form.php +19 -0
  4. app/code/community/Candf/Customshipping/Block/Adminhtml/Boxes/Edit/Tab/Genaral.php +59 -0
  5. app/code/community/Candf/Customshipping/Block/Adminhtml/Boxes/Edit/Tabs.php +25 -0
  6. app/code/community/Candf/Customshipping/Block/Adminhtml/Boxes/Grid.php +70 -0
  7. app/code/community/Candf/Customshipping/Block/Adminhtml/Customshippingbackend.php +5 -0
  8. app/code/community/Candf/Customshipping/Block/Adminhtml/Rule.php +13 -0
  9. app/code/community/Candf/Customshipping/Block/Adminhtml/Rule/Edit.php +33 -0
  10. app/code/community/Candf/Customshipping/Block/Adminhtml/Rule/Edit/Form.php +37 -0
  11. app/code/community/Candf/Customshipping/Block/Adminhtml/Rule/Edit/Tab/Actions.php +134 -0
  12. app/code/community/Candf/Customshipping/Block/Adminhtml/Rule/Edit/Tab/Conditions.php +108 -0
  13. app/code/community/Candf/Customshipping/Block/Adminhtml/Rule/Edit/Tab/Main.php +120 -0
  14. app/code/community/Candf/Customshipping/Block/Adminhtml/Rule/Edit/Tabs.php +11 -0
  15. app/code/community/Candf/Customshipping/Block/Adminhtml/Rule/Grid.php +114 -0
  16. app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment.php +13 -0
  17. app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit.php +57 -0
  18. app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Form.php +22 -0
  19. app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Abstract.php +63 -0
  20. app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form.php +37 -0
  21. app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form/Availableboxes.php +12 -0
  22. app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form/Destination.php +8 -0
  23. app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form/Manualycreatebox.php +83 -0
  24. app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form/Pickup.php +14 -0
  25. app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form/Products.php +12 -0
  26. app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form/Quotes.php +282 -0
  27. app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form/Status.php +19 -0
  28. app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form/Warehouse.php +10 -0
  29. app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tabs.php +14 -0
  30. app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Grid.php +89 -0
  31. app/code/community/Candf/Customshipping/Block/Adminhtml/System/Config/Backend/Form/Field/Required.php +25 -0
  32. app/code/community/Candf/Customshipping/Block/Adminhtml/Warehouse.php +14 -0
  33. app/code/community/Candf/Customshipping/Block/Adminhtml/Warehouse/Edit.php +25 -0
  34. app/code/community/Candf/Customshipping/Block/Adminhtml/Warehouse/Edit/Form.php +19 -0
  35. app/code/community/Candf/Customshipping/Block/Adminhtml/Warehouse/Edit/Tab/Address.php +98 -0
  36. app/code/community/Candf/Customshipping/Block/Adminhtml/Warehouse/Edit/Tab/Form.php +70 -0
  37. app/code/community/Candf/Customshipping/Block/Adminhtml/Warehouse/Edit/Tab/Genaral.php +47 -0
  38. app/code/community/Candf/Customshipping/Block/Adminhtml/Warehouse/Edit/Tabs.php +31 -0
  39. app/code/community/Candf/Customshipping/Block/Adminhtml/Warehouse/Grid.php +76 -0
  40. app/code/community/Candf/Customshipping/Block/Adminhtml/Zone.php +16 -0
  41. app/code/community/Candf/Customshipping/Block/Adminhtml/Zone/Edit.php +25 -0
  42. app/code/community/Candf/Customshipping/Block/Adminhtml/Zone/Edit/Form.php +20 -0
  43. app/code/community/Candf/Customshipping/Block/Adminhtml/Zone/Edit/Tab/Form.php +65 -0
  44. app/code/community/Candf/Customshipping/Block/Adminhtml/Zone/Edit/Tabs.php +25 -0
  45. app/code/community/Candf/Customshipping/Block/Adminhtml/Zone/Grid.php +59 -0
  46. app/code/community/Candf/Customshipping/Block/Cart/Shipping.php +12 -0
  47. app/code/community/Candf/Customshipping/Block/Index.php +8 -0
  48. app/code/community/Candf/Customshipping/Helper/Customshipping.php +28 -0
  49. app/code/community/Candf/Customshipping/Helper/Data.php +28 -0
  50. app/code/community/Candf/Customshipping/Model/Additionalservices.php +11 -0
  51. app/code/community/Candf/Customshipping/Model/Booking.php +11 -0
  52. app/code/community/Candf/Customshipping/Model/Boxes.php +11 -0
  53. app/code/community/Candf/Customshipping/Model/Carrier/Dynamic.php +56 -0
  54. app/code/community/Candf/Customshipping/Model/Carrier/ShippingMethod.php +539 -0
  55. app/code/community/Candf/Customshipping/Model/Mysql4/Additionalservices.php +10 -0
  56. app/code/community/Candf/Customshipping/Model/Mysql4/Additionalservices/Collection.php +12 -0
  57. app/code/community/Candf/Customshipping/Model/Mysql4/Booking.php +11 -0
  58. app/code/community/Candf/Customshipping/Model/Mysql4/Booking/Collection.php +12 -0
  59. app/code/community/Candf/Customshipping/Model/Mysql4/Boxes.php +10 -0
  60. app/code/community/Candf/Customshipping/Model/Mysql4/Boxes/Collection.php +10 -0
  61. app/code/community/Candf/Customshipping/Model/Mysql4/Order.php +11 -0
  62. app/code/community/Candf/Customshipping/Model/Mysql4/Order/Collection.php +12 -0
  63. app/code/community/Candf/Customshipping/Model/Mysql4/Postcode.php +8 -0
  64. app/code/community/Candf/Customshipping/Model/Mysql4/Postcode/Collection.php +9 -0
  65. app/code/community/Candf/Customshipping/Model/Mysql4/Rule.php +9 -0
  66. app/code/community/Candf/Customshipping/Model/Mysql4/Rule/Collection.php +14 -0
  67. app/code/community/Candf/Customshipping/Model/Mysql4/Shipment.php +11 -0
  68. app/code/community/Candf/Customshipping/Model/Mysql4/Shipment/Collection.php +9 -0
  69. app/code/community/Candf/Customshipping/Model/Mysql4/Shipmentadditional.php +10 -0
  70. app/code/community/Candf/Customshipping/Model/Mysql4/Shipmentadditional/Collection.php +12 -0
  71. app/code/community/Candf/Customshipping/Model/Mysql4/Shipmenthistory.php +11 -0
  72. app/code/community/Candf/Customshipping/Model/Mysql4/Shipmenthistory/Collection.php +12 -0
  73. app/code/community/Candf/Customshipping/Model/Mysql4/Warehouse.php +10 -0
  74. app/code/community/Candf/Customshipping/Model/Mysql4/Warehouse/Collection.php +10 -0
  75. app/code/community/Candf/Customshipping/Model/Mysql4/Zone.php +12 -0
  76. app/code/community/Candf/Customshipping/Model/Mysql4/Zone/Collection.php +9 -0
  77. app/code/community/Candf/Customshipping/Model/Observer.php +99 -0
  78. app/code/community/Candf/Customshipping/Model/Order.php +9 -0
  79. app/code/community/Candf/Customshipping/Model/Postcode.php +9 -0
  80. app/code/community/Candf/Customshipping/Model/Quote/Address/Total/Shipping.php +171 -0
  81. app/code/community/Candf/Customshipping/Model/Rule.php +9 -0
  82. app/code/community/Candf/Customshipping/Model/Shipment.php +64 -0
  83. app/code/community/Candf/Customshipping/Model/Shipmentadditional.php +9 -0
  84. app/code/community/Candf/Customshipping/Model/Shipmenthistory.php +9 -0
  85. app/code/community/Candf/Customshipping/Model/Shipping-2015-08-25.php +21 -0
  86. app/code/community/Candf/Customshipping/Model/System/Config/Backend.php +76 -0
  87. app/code/community/Candf/Customshipping/Model/System/Config/Backend/Additionalservices/Carrierslist.php +9 -0
  88. app/code/community/Candf/Customshipping/Model/System/Config/Backend/Extradelivery/Type.php +25 -0
  89. app/code/community/Candf/Customshipping/Model/System/Config/Backend/Handlingfee/Type.php +17 -0
  90. app/code/community/Candf/Customshipping/Model/System/Config/Backend/Insurance.php +19 -0
  91. app/code/community/Candf/Customshipping/Model/System/Config/Backend/Label/Type.php +17 -0
  92. app/code/community/Candf/Customshipping/Model/System/Config/Backend/Markup/Type.php +17 -0
  93. app/code/community/Candf/Customshipping/Model/System/Config/Backend/Packaging/Packagetype.php +44 -0
  94. app/code/community/Candf/Customshipping/Model/System/Config/Backend/Payment/Type.php +15 -0
  95. app/code/community/Candf/Customshipping/Model/System/Config/Backend/Rule/Action/Carrier.php +19 -0
  96. app/code/community/Candf/Customshipping/Model/System/Config/Backend/Rule/Action/Filter.php +21 -0
  97. app/code/community/Candf/Customshipping/Model/System/Config/Backend/Rule/Type.php +21 -0
  98. app/code/community/Candf/Customshipping/Model/System/Config/Backend/Shipment/Status.php +20 -0
  99. app/code/community/Candf/Customshipping/Model/System/Config/Backend/Unit/Measure.php +21 -0
  100. app/code/community/Candf/Customshipping/Model/System/Config/Backend/Unit/Weight.php +23 -0
  101. app/code/community/Candf/Customshipping/Model/Warehouse.php +11 -0
  102. app/code/community/Candf/Customshipping/Model/Zone.php +9 -0
  103. app/code/community/Candf/Customshipping/controllers/Adminhtml/BoxesController.php +83 -0
  104. app/code/community/Candf/Customshipping/controllers/Adminhtml/CustomshippingbackendController.php +10 -0
  105. app/code/community/Candf/Customshipping/controllers/Adminhtml/RuleController.php +181 -0
  106. app/code/community/Candf/Customshipping/controllers/Adminhtml/ShipmentController.php +868 -0
  107. app/code/community/Candf/Customshipping/controllers/Adminhtml/WarehouseController.php +90 -0
  108. app/code/community/Candf/Customshipping/controllers/Adminhtml/ZoneController.php +109 -0
  109. app/code/community/Candf/Customshipping/controllers/CnfcartController.php +115 -0
  110. app/code/community/Candf/Customshipping/controllers/IndexController.php +8 -0
  111. app/code/community/Candf/Customshipping/etc/config.xml +301 -0
  112. app/code/community/Candf/Customshipping/etc/system.xml +613 -0
  113. app/code/community/Candf/Customshipping/sql/customshipping_setup/mysql4-install-0.1.0.php +9410 -0
app/code/community/Candf/Customshipping/Block/Adminhtml/Boxes.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Boxes extends Mage_Adminhtml_Block_Widget_Grid_Container
4
+ {
5
+ public function __construct()
6
+ {
7
+ $this->_controller = 'adminhtml_boxes';
8
+ $this->_blockGroup = 'customshipping';
9
+ $this->_headerText = Mage::helper('customshipping')->__('Manage Boxes');
10
+ $this->_addButtonLabel = Mage::helper('customshipping')->__('Add Item');
11
+ parent::__construct();
12
+ }
13
+
14
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Boxes/Edit.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Boxes_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
4
+ {
5
+ public function __construct()
6
+ {
7
+ parent::__construct();
8
+
9
+ $this->_objectId = 'id';
10
+ $this->_blockGroup = 'customshipping';
11
+ $this->_controller = 'adminhtml_boxes';
12
+
13
+ $this->_updateButton('save', 'label', Mage::helper('customshipping')->__('Save Item'));
14
+ $this->_updateButton('delete', 'label', Mage::helper('customshipping')->__('Delete Item'));
15
+ }
16
+
17
+ public function getHeaderText()
18
+ {
19
+ if( Mage::registry('boxes_data') && Mage::registry('boxes_data')->getId() ) {
20
+ return Mage::helper('customshipping')->__("Edit Item '%s'", $this->htmlEscape(Mage::registry('boxes_data')->getTitle()));
21
+ } else {
22
+ return Mage::helper('customshipping')->__('Add Item');
23
+ }
24
+ }
25
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Boxes/Edit/Form.php ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Boxes_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
4
+ {
5
+ protected function _prepareForm()
6
+ {
7
+ $form = new Varien_Data_Form(array(
8
+ 'id' => 'edit_form',
9
+ 'action' => $this->getUrl('*/*/save', array('id' => $this->getRequest()->getParam('id'))),
10
+ 'method' => 'post',
11
+ )
12
+ );
13
+
14
+ $form->setUseContainer(true);
15
+ $this->setForm($form);
16
+ return parent::_prepareForm();
17
+ }
18
+ }
19
+ ?>
app/code/community/Candf/Customshipping/Block/Adminhtml/Boxes/Edit/Tab/Genaral.php ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Boxes_Edit_Tab_Genaral extends Mage_Adminhtml_Block_Widget_Form
4
+ {
5
+ protected function _prepareForm()
6
+ {
7
+ $form = new Varien_Data_Form();
8
+ $this->setForm($form);
9
+ $fieldset = $form->addFieldset('boxes_genaral', array('legend'=>Mage::helper('customshipping')->__('Genaral Details')));
10
+
11
+
12
+ $fieldset->addField('name', 'text', array(
13
+ 'name' => 'name',
14
+ 'label' => Mage::helper('customshipping')->__('Name'),
15
+ 'title' => Mage::helper('customshipping')->__('Name'),
16
+ 'required' => true,
17
+ ));
18
+
19
+ $fieldset->addField('is_active', 'select', array(
20
+ 'label' => Mage::helper('customshipping')->__('Status'),
21
+ 'title' => Mage::helper('customshipping')->__('Status'),
22
+ 'name' => 'is_active',
23
+ 'required' => true,
24
+ 'options' => array(
25
+ '1' => Mage::helper('customshipping')->__('Enabled'),
26
+ '0' => Mage::helper('customshipping')->__('Disabled'),
27
+ ),
28
+ ));
29
+
30
+ $fieldset->addField('length', 'text', array(
31
+ 'name' => 'length',
32
+ 'label' => Mage::helper('customshipping')->__('Box Length'),
33
+ 'title' => Mage::helper('customshipping')->__('Box Length'),
34
+ 'required' => true,
35
+ ));
36
+ $fieldset->addField('width', 'text', array(
37
+ 'name' => 'width',
38
+ 'label' => Mage::helper('customshipping')->__('Box Width'),
39
+ 'title' => Mage::helper('customshipping')->__('Box Width'),
40
+ 'required' => true,
41
+ ));
42
+ $fieldset->addField('height', 'text', array(
43
+ 'name' => 'height',
44
+ 'label' => Mage::helper('customshipping')->__('Box Height'),
45
+ 'title' => Mage::helper('customshipping')->__('Box Height'),
46
+ 'required' => true,
47
+ ));
48
+
49
+ if ( Mage::getSingleton('adminhtml/session')->getBoxesData() )
50
+ {
51
+ $form->setValues(Mage::getSingleton('adminhtml/session')->getBoxesData());
52
+ Mage::getSingleton('adminhtml/session')->setBoxesData(null);
53
+ } elseif ( Mage::registry('boxes_data') ) {
54
+ $form->setValues(Mage::registry('boxes_data')->getData());
55
+ }
56
+ return parent::_prepareForm();
57
+ }
58
+ }
59
+ ?>
app/code/community/Candf/Customshipping/Block/Adminhtml/Boxes/Edit/Tabs.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Boxes_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
4
+ {
5
+
6
+ public function __construct()
7
+ {
8
+ parent::__construct();
9
+ $this->setId('boxes_id');
10
+ $this->setDestElementId('edit_form');
11
+ $this->setTitle(Mage::helper('customshipping')->__('Boxes Information'));
12
+ }
13
+
14
+ protected function _beforeToHtml()
15
+ {
16
+ $this->addTab('form_general', array(
17
+ 'label' => Mage::helper('customshipping')->__('Genaral Information'),
18
+ 'title' => Mage::helper('customshipping')->__('Genaral Information'),
19
+ 'content' => $this->getLayout()->createBlock('customshipping/adminhtml_boxes_edit_tab_genaral')->toHtml(),
20
+ ));
21
+
22
+ return parent::_beforeToHtml();
23
+ }
24
+ }
25
+ ?>
app/code/community/Candf/Customshipping/Block/Adminhtml/Boxes/Grid.php ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Candf_Customshipping_Block_Adminhtml_Boxes_Grid extends Mage_Adminhtml_Block_Widget_Grid
3
+ {
4
+
5
+ public function __construct()
6
+ {
7
+ parent::__construct();
8
+ $this->setId('boxesGrid');
9
+ // This is the primary key of the database
10
+ $this->setDefaultSort('boxes_id');
11
+ $this->setDefaultDir('ASC');
12
+ $this->setSaveParametersInSession(true);
13
+ }
14
+
15
+ protected function _prepareCollection()
16
+ {
17
+ $collection = Mage::getModel('customshipping/boxes')->getCollection();
18
+ $this->setCollection($collection);
19
+ return parent::_prepareCollection();
20
+ }
21
+
22
+ protected function _prepareColumns()
23
+ {
24
+
25
+ $this->addColumn('boxes_id', array(
26
+ 'header' => Mage::helper('customshipping')->__('Boxes Id'),
27
+ 'width' => '100px',
28
+ 'index' => 'boxes_id',
29
+ ));
30
+
31
+ $this->addColumn('name', array(
32
+ 'header' => Mage::helper('customshipping')->__('Name'),
33
+ 'width' => '160px',
34
+ 'index' => 'name',
35
+ ));
36
+
37
+ $this->addColumn('is_active', array(
38
+ 'header' => Mage::helper('customshipping')->__('Status'),
39
+ 'width' => '160px',
40
+ 'index' => 'is_active',
41
+ ));
42
+
43
+
44
+ $this->addColumn('length', array(
45
+ 'header' => Mage::helper('customshipping')->__('Length'),
46
+ 'align' => 'left',
47
+ 'index' => 'length',
48
+ ));
49
+
50
+
51
+ $this->addColumn('width', array(
52
+ 'header' => Mage::helper('customshipping')->__('Width'),
53
+ 'align' => 'left',
54
+ 'index' => 'width',
55
+ ));
56
+ $this->addColumn('height', array(
57
+ 'header' => Mage::helper('customshipping')->__('Height'),
58
+ 'align' => 'left',
59
+ 'index' => 'height',
60
+ ));
61
+
62
+ return parent::_prepareColumns();
63
+ }
64
+
65
+ public function getRowUrl($row)
66
+ {
67
+ return $this->getUrl('*/*/edit', array('id' => $row->getId()));
68
+ }
69
+
70
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Customshippingbackend.php ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Customshippingbackend extends Mage_Adminhtml_Block_Template {
4
+
5
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Rule.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Rule extends Mage_Adminhtml_Block_Widget_Grid_Container
4
+ {
5
+ public function __construct()
6
+ {
7
+ $this->_blockGroup = 'customshipping';
8
+ $this->_controller = 'adminhtml_rule';
9
+ $this->_headerText = Mage::helper('customshipping')->__('Manage Rules');
10
+ $this->_addButtonLabel = Mage::helper('customshipping')->__('Add New Rule');
11
+ parent::__construct();
12
+ }
13
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Rule/Edit.php ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Rule_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
4
+ {
5
+
6
+ public function __construct()
7
+ {
8
+ $this->_objectId = 'id';
9
+ $this->_blockGroup = 'customshipping';
10
+ $this->_controller = 'adminhtml_rule';
11
+ parent::__construct();
12
+
13
+ $this->_addButton('save_and_continue_edit', array(
14
+ 'class' => 'save',
15
+ 'label' => Mage::helper('customshipping')->__('Save and Continue Edit'),
16
+ 'onclick' => 'editForm.submit($(\'edit_form\').action + \'back/edit/\')',
17
+ ), 10);
18
+ }
19
+
20
+ /**
21
+ * Getter for form header text
22
+ *
23
+ * @return string
24
+ */
25
+ public function getHeaderText()
26
+ {
27
+ if( Mage::registry('rule_data') && Mage::registry('rule_data')->getId()) {
28
+ return Mage::helper('customshipping')->__("Edit Item '%s'", $this->htmlEscape(Mage::registry('rule_data')->getTitle()));
29
+ } else {
30
+ return Mage::helper('customshipping')->__('Add Item');
31
+ }
32
+ }
33
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Rule/Edit/Form.php ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Rule_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
4
+ {
5
+
6
+ public function __construct()
7
+ {
8
+ parent::__construct();
9
+ $this->setId('rule_form');
10
+ $this->setTitle(Mage::helper('customshipping')->__('Rule Configuration'));
11
+ }
12
+
13
+
14
+ protected function _prepareForm()
15
+ {
16
+ $form = new Varien_Data_Form(
17
+ array(
18
+ 'id' => 'edit_form',
19
+ 'action' => $this->getData('action'),
20
+ 'method' => 'post')
21
+ );
22
+
23
+ // $form = new Varien_Data_Form(
24
+ // array(
25
+ // 'id' => 'edit_form',
26
+ // 'action' => $this->getUrl('*/*/save', array('id' => $this->getRequest()->getParam('id'))),
27
+ // 'method' => 'post',
28
+ // 'enctype' => 'multipart/form-data'
29
+ // )
30
+ // );
31
+
32
+ $form->setUseContainer(true);
33
+ $this->setForm($form);
34
+ return parent::_prepareForm();
35
+ }
36
+
37
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Rule/Edit/Tab/Actions.php ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ <?php
4
+
5
+ class Candf_Customshipping_Block_Adminhtml_Rule_Edit_Tab_Actions
6
+ extends Mage_Adminhtml_Block_Widget_Form
7
+ implements Mage_Adminhtml_Block_Widget_Tab_Interface
8
+ {
9
+ /**
10
+ * Prepare content for tab
11
+ *
12
+ * @return string
13
+ */
14
+ public function getTabLabel()
15
+ {
16
+ return Mage::helper('customshipping')->__('Actions');
17
+ }
18
+
19
+ /**
20
+ * Prepare title for tab
21
+ *
22
+ * @return string
23
+ */
24
+ public function getTabTitle()
25
+ {
26
+ return Mage::helper('customshipping')->__('Actions');
27
+ }
28
+
29
+ /**
30
+ * Returns status flag about this tab can be showen or not
31
+ *
32
+ * @return true
33
+ */
34
+ public function canShowTab()
35
+ {
36
+ return true;
37
+ }
38
+
39
+ /**
40
+ * Returns status flag about this tab hidden or not
41
+ *
42
+ * @return true
43
+ */
44
+ public function isHidden()
45
+ {
46
+ return false;
47
+ }
48
+
49
+ protected function _prepareForm()
50
+ {
51
+ $model = Mage::registry('rule_data');
52
+
53
+ $form = new Varien_Data_Form();
54
+ $form->setHtmlIdPrefix('rule_');
55
+
56
+ $fieldset = $form->addFieldset('actions_fieldset', array(
57
+ 'legend'=>Mage::helper('customshipping')->__('Actions Configuration')
58
+ ));
59
+
60
+ $fieldset->addField('action_rate_type', 'select', array(
61
+ 'label' => Mage::helper('customshipping')->__('Shipping Rate Type'),
62
+ 'title' => Mage::helper('customshipping')->__('Shipping Rate Type'),
63
+ 'name' => 'action_rate_type',
64
+ 'required' => true,
65
+ 'options' => Mage::getModel('customshipping/system_config_backend_rule_type')->toOptionArray(),
66
+ 'onchange' => 'checkShippingRateType(this.value)'
67
+ ));
68
+
69
+ $fieldset = $form->addFieldset('actions_static_fieldset', array(
70
+ 'legend' => Mage::helper('customshipping')->__('Static Rate Configuration')
71
+ ));
72
+
73
+ $fieldset->addField('action_static_value', 'text', array(
74
+ 'label' => Mage::helper('customshipping')->__('Static Rate Value'),
75
+ 'title' => Mage::helper('customshipping')->__('Static Rate Value'),
76
+ 'name' => 'action_static_value',
77
+ 'class' => 'validate-number',
78
+ 'note' => 'Applies to free shipping and flat rate.'
79
+ ));
80
+
81
+ $fieldset->addField('action_static_label', 'text', array(
82
+ 'label' => Mage::helper('customshipping')->__('Static Rate Label'),
83
+ 'title' => Mage::helper('customshipping')->__('Static Rate Label'),
84
+ 'name' => 'action_static_label',
85
+ 'note' => Mage::helper('customshipping')->__('As displayed to a customer. Applies to free shipping & flat rate.')
86
+
87
+ ));
88
+
89
+ $fieldset->addField('action_hidden_link', 'hidden', array(
90
+ 'name' => 'action_hidden_link',
91
+ ));
92
+
93
+ $fieldset = $form->addFieldset('actions_dynamic_fieldset', array(
94
+ 'legend' => Mage::helper('customshipping')->__('Dynamic Carriers Configuration')
95
+ ));
96
+
97
+ $fieldset->addField('action_prefered_carrie_type', 'select', array(
98
+ 'name' => 'action_prefered_carrie_type',
99
+ 'onchange' => 'checkSelectedItem(this.value)',
100
+ 'label' => Mage::helper('customshipping')->__('Select Carrier Type'),
101
+ 'title' => Mage::helper('customshipping')->__('Select Carrier Type'),
102
+ 'options' => Mage::getSingleton('customshipping/system_config_backend_rule_action_carrier')->toOptionArray(),
103
+ ));
104
+
105
+ $fieldset->addField('action_dynamic_carriers', 'multiselect', array(
106
+ 'name' => 'action_dynamic_carriers[]',
107
+ 'label' => Mage::helper('customshipping')->__('Carriers'),
108
+ 'title' => Mage::helper('customshipping')->__('Carriers'),
109
+ 'values' => Mage::getSingleton('customshipping/carrier_dynamic')->getCarrierList(true),
110
+ 'note' => Mage::helper('customshipping')->__('Use CTRL + click to select multiple carriers - To show in the Shipment options.'),
111
+ ));
112
+
113
+ $fieldset->addField('action_dynamic_filter', 'select', array(
114
+ 'name' => 'action_dynamic_filter',
115
+ 'label' => Mage::helper('customshipping')->__('Display Filter'),
116
+ 'title' => Mage::helper('customshipping')->__('Display Filter'),
117
+ 'options' => Mage::getSingleton('customshipping/system_config_backend_rule_action_filter')->toOptionArray(),
118
+ ));
119
+
120
+ $fieldset = $form->addFieldset('actions_restrict_fieldset', array(
121
+ 'legend' => Mage::helper('customshipping')->__('Restrict Shipping Configuration')
122
+ ));
123
+ $fieldset->addField('action_restrict_note', 'textarea', array(
124
+ 'name' => 'action_restrict_note',
125
+ 'label' => Mage::helper('customshipping')->__('Note'),
126
+ 'title' => Mage::helper('customshipping')->__('Note'),
127
+ 'note' => Mage::helper('customshipping')->__('Displayed to a customer when shipping is restricted.')
128
+ ));
129
+ $form->setValues($model->getData());
130
+ $this->setForm($form);
131
+ return parent::_prepareForm();
132
+ }
133
+ }
134
+
app/code/community/Candf/Customshipping/Block/Adminhtml/Rule/Edit/Tab/Conditions.php ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Rule_Edit_Tab_Conditions
4
+ extends Mage_Adminhtml_Block_Widget_Form
5
+ implements Mage_Adminhtml_Block_Widget_Tab_Interface
6
+ {
7
+ /**
8
+ * Prepare content for tab
9
+ *
10
+ * @return string
11
+ */
12
+ public function getTabLabel()
13
+ {
14
+ return Mage::helper('customshipping')->__('Conditions');
15
+ }
16
+
17
+ /**
18
+ * Prepare title for tab
19
+ *
20
+ * @return string
21
+ */
22
+ public function getTabTitle()
23
+ {
24
+ return Mage::helper('customshipping')->__('Conditions');
25
+ }
26
+
27
+ /**
28
+ * Returns status flag about this tab can be showen or not
29
+ *
30
+ * @return true
31
+ */
32
+ public function canShowTab()
33
+ {
34
+ return true;
35
+ }
36
+
37
+ /**
38
+ * Returns status flag about this tab hidden or not
39
+ *
40
+ * @return true
41
+ */
42
+ public function isHidden()
43
+ {
44
+ return false;
45
+ }
46
+
47
+ protected function _prepareForm()
48
+ {
49
+ $model = Mage::registry('rule_data');
50
+
51
+ $form = new Varien_Data_Form();
52
+ $form->setHtmlIdPrefix('rule_');
53
+
54
+ $fieldset = $form->addFieldset('conditions_fieldset', array(
55
+ 'legend'=>Mage::helper('customshipping')->__('Conditions Configuration (Leave blank for any. Use colon to enter range, comma to separate ranges).')
56
+ ));
57
+
58
+ $fieldset->addField('condition_weight', 'text', array(
59
+ 'label' => Mage::helper('customshipping')->__('Total Weight'),
60
+ 'title' => Mage::helper('customshipping')->__('Total Weight'),
61
+ 'name' => 'condition_weight',
62
+ 'class' => 'validate-range-multi-decimal',
63
+ 'note' => Mage::helper('customshipping')->__('Units as configured in \'Customshipping Settings\' in System Configuration'),
64
+ ));
65
+
66
+ $fieldset->addField('condition_subtotal', 'text', array(
67
+ 'label' => Mage::helper('customshipping')->__('Cart Subtotal'),
68
+ 'title' => Mage::helper('customshipping')->__('Cart Subtotal'),
69
+ 'name' => 'condition_subtotal',
70
+ 'class' => 'validate-range-multi-decimal',
71
+ 'note' => Mage::helper('customshipping')->__('ie \'0:49.95\' for up to $49.95'),
72
+ ));
73
+
74
+ $fieldset->addField('condition_items', 'text', array(
75
+ 'label' => Mage::helper('customshipping')->__('Cart Total Items'),
76
+ 'title' => Mage::helper('customshipping')->__('Cart Total Items'),
77
+ 'name' => 'condition_items',
78
+ 'class' => 'validate-range-multi',
79
+ 'note' => Mage::helper('customshipping')->__('ie \'1:5\' for 1 to 5 items in the cart'),
80
+ ));
81
+
82
+ $fieldset->addField('condition_zone', 'textarea', array(
83
+ 'label' => Mage::helper('customshipping')->__('Postcode Range'),
84
+ 'title' => Mage::helper('customshipping')->__('Postcode Range'),
85
+ 'name' => 'condition_zone',
86
+ 'class' => 'validate-range-multi',
87
+ 'note' => Mage::helper('customshipping')->__('ie \'2000:2200,3000,2600:2699\'')
88
+ ));
89
+
90
+ $fieldset->addField('condition_time_type', 'select', array(
91
+ 'name' => 'condition_time_type',
92
+ 'label' => Mage::helper('customshipping')->__('Order Placed (time)'),
93
+ 'title' => Mage::helper('customshipping')->__('Order Placed (time)'),
94
+ ));
95
+
96
+ $fieldset->addField('condition_time_value', 'time', array(
97
+ 'name' => 'condition_time_value',
98
+ 'label' => Mage::helper('customshipping')->__('Time'),
99
+ 'title' => Mage::helper('customshipping')->__('Time'),
100
+ 'note' => Mage::helper('customshipping')->__('24HH:MM:SS'),
101
+ ));
102
+
103
+ $form->setValues($model->getData());
104
+ $this->setForm($form);
105
+
106
+ return parent::_prepareForm();
107
+ }
108
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Rule/Edit/Tab/Main.php ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Rule_Edit_Tab_Main
4
+ extends Mage_Adminhtml_Block_Widget_Form
5
+ implements Mage_Adminhtml_Block_Widget_Tab_Interface
6
+ {
7
+ /**
8
+ * Prepare content for tab
9
+ *
10
+ * @return string
11
+ */
12
+ public function getTabLabel()
13
+ {
14
+ return Mage::helper('customshipping')->__('Rule Information');
15
+ }
16
+
17
+ /**
18
+ * Prepare title for tab
19
+ *
20
+ * @return string
21
+ */
22
+ public function getTabTitle()
23
+ {
24
+ return Mage::helper('customshipping')->__('Rule Information');
25
+ }
26
+
27
+ /**
28
+ * Returns status flag about this tab can be showed or not
29
+ *
30
+ * @return true
31
+ */
32
+ public function canShowTab()
33
+ {
34
+ return true;
35
+ }
36
+
37
+ /**
38
+ * Returns status flag about this tab hidden or not
39
+ *
40
+ * @return true
41
+ */
42
+ public function isHidden()
43
+ {
44
+ return false;
45
+ }
46
+
47
+ protected function _prepareForm()
48
+ {
49
+ $model = Mage::registry('rule_data');
50
+
51
+ $form = new Varien_Data_Form();
52
+ $form->setHtmlIdPrefix('rule_');
53
+
54
+ $fieldset = $form->addFieldset('base_fieldset',
55
+ array('legend' => Mage::helper('customshipping')->__('General Information'))
56
+ );
57
+
58
+ if ($model->getId()) {
59
+ $fieldset->addField('id', 'hidden', array(
60
+ 'name' => 'id',
61
+ ));
62
+ }
63
+
64
+ $fieldset->addField('name', 'text', array(
65
+ 'name' => 'name',
66
+ 'label' => Mage::helper('customshipping')->__('Rule Name'),
67
+ 'title' => Mage::helper('customshipping')->__('Rule Name'),
68
+ 'required' => true,
69
+ ));
70
+
71
+ $fieldset->addField('is_active', 'select', array(
72
+ 'label' => Mage::helper('customshipping')->__('Status'),
73
+ 'title' => Mage::helper('customshipping')->__('Status'),
74
+ 'name' => 'is_active',
75
+ 'required' => true,
76
+ 'options' => array(
77
+ '1' => Mage::helper('customshipping')->__('Active'),
78
+ '0' => Mage::helper('customshipping')->__('Inactive'),
79
+ ),
80
+ ));
81
+
82
+ $fieldset->addField('priority', 'select', array(
83
+ 'label' => Mage::helper('customshipping')->__('Priority'),
84
+ 'title' => Mage::helper('customshipping')->__('Priority'),
85
+ 'values' => array('0'=>'Please Select..', '1' => '1', '2' => '2', '3' => '3'),
86
+ 'name' => 'priority',
87
+ 'class' => 'validate-number',
88
+ ));
89
+
90
+ $fieldset->addField('stop_other', 'select', array(
91
+ 'label' => Mage::helper('customshipping')->__('Stop processing of further rules'),
92
+ 'title' => Mage::helper('customshipping')->__('Stop processing of further rules'),
93
+ 'name' => 'stop_other',
94
+ 'options' => array(
95
+ '1' => Mage::helper('customshipping')->__('Yes'),
96
+ '0' => Mage::helper('customshipping')->__('No'),
97
+ ),
98
+ 'note' => Mage::helper('customshipping')->__('Rules with higher number in priority field will not be processed if set to \'Yes\''),
99
+ ));
100
+
101
+ $field = $fieldset->addField('store_ids', 'multiselect', array(
102
+ 'name' => 'store_ids[]',
103
+ 'label' => Mage::helper('customshipping')->__('Stores'),
104
+ 'title' => Mage::helper('customshipping')->__('Stores'),
105
+ 'required' => true,
106
+ 'values' => Mage::getSingleton('adminhtml/system_store')->getStoreValuesForForm()
107
+ ));
108
+ $renderer = $this->getLayout()->createBlock('adminhtml/store_switcher_form_renderer_fieldset_element');
109
+ $field->setRenderer($renderer);
110
+
111
+ if (!$model->getId()) {
112
+ $model->setData('is_active', '1');
113
+ }
114
+
115
+ $form->setValues($model->getData());
116
+ $this->setForm($form);
117
+
118
+ return parent::_prepareForm();
119
+ }
120
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Rule/Edit/Tabs.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Rule_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs {
4
+
5
+ public function __construct() {
6
+ parent::__construct();
7
+ $this->setId('customshipping_rule_edit_tabs');
8
+ $this->setDestElementId('edit_form');
9
+ $this->setTitle(Mage::helper('customshipping')->__('Rule Configuration'));
10
+ }
11
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Rule/Grid.php ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Candf_Customshipping_Block_Adminhtml_Rule_Grid extends Mage_Adminhtml_Block_Widget_Grid
3
+ {
4
+
5
+ public function __construct()
6
+ {
7
+ parent::__construct();
8
+ $this->setId('ruleGrid');
9
+ // This is the primary key of the database
10
+ $this->setDefaultSort('id');
11
+ $this->setDefaultDir('ASC');
12
+ $this->setSaveParametersInSession(true);
13
+ }
14
+
15
+ protected function _prepareCollection()
16
+ {
17
+ $collection = Mage::getModel('customshipping/rule')->getCollection();
18
+ $this->setCollection($collection);
19
+ return parent::_prepareCollection();
20
+ }
21
+
22
+ protected function _prepareColumns()
23
+ {
24
+
25
+ $this->addColumn('id', array(
26
+ 'header' => Mage::helper('customshipping')->__('ID'),
27
+ 'align' =>'right',
28
+ 'width' => '40px',
29
+ 'index' => 'id',
30
+ ));
31
+
32
+ $this->addColumn('name', array(
33
+ 'header' => Mage::helper('customshipping')->__('Rule Name'),
34
+ 'width' => '150px',
35
+ 'index' => 'name',
36
+ ));
37
+
38
+ $this->addColumn('is_active', array(
39
+ 'header' => Mage::helper('customshipping')->__('Status'),
40
+ 'width' => '50px',
41
+ 'index' => 'is_active',
42
+ 'type' => 'options',
43
+ 'options' => array(
44
+ 1 => 'Active',
45
+ 0 => 'Inactive',
46
+ ),
47
+ ));
48
+
49
+ $this->addColumn('action_rate_type', array(
50
+ 'header' => Mage::helper('customshipping')->__('Type'),
51
+ 'index' => 'action_rate_type',
52
+ 'type' => 'options',
53
+ 'width' => '50px',
54
+ 'options' => Mage::getSingleton('customshipping/system_config_backend_rule_type')->toOptionArray(),
55
+ ));
56
+
57
+ $this->addColumn('priority', array(
58
+ 'header' => Mage::helper('customshipping')->__('Priority'),
59
+ 'index' => 'priority',
60
+ 'type' => 'text',
61
+ 'width' => '50px',
62
+ ));
63
+
64
+ $this->addColumn('stop_other', array(
65
+ 'header' => Mage::helper('customshipping')->__('Stop Other Rules'),
66
+ 'index' => 'stop_other',
67
+ 'type' => 'options',
68
+ 'width' => '50px',
69
+ 'options' => array(
70
+ 0 => 'No',
71
+ 1 => 'Yes',
72
+ ),
73
+ ));
74
+
75
+ $this->addColumn('action_static_label', array(
76
+ 'header' => Mage::helper('customshipping')->__('Frontend Title (Static Method)'),
77
+ 'width' => '250px',
78
+ 'index' => 'action_static_label',
79
+ ));
80
+
81
+ return parent::_prepareColumns();
82
+ }
83
+
84
+ protected function _prepareMassaction() {
85
+ parent::_prepareMassaction();
86
+
87
+ $this->getMassactionBlock()->addItem('deactivate_all', array(
88
+ 'label'=> Mage::helper('customshipping')->__('Deactivate Rules'),
89
+ 'url' => $this->getUrl('*/*/massDeactivate'),
90
+ ));
91
+
92
+ $this->getMassactionBlock()->addItem('activate_all', array(
93
+ 'label'=> Mage::helper('customshipping')->__('Activate Rules'),
94
+ 'url' => $this->getUrl('*/*/massActivate'),
95
+ ));
96
+
97
+ $this->getMassactionBlock()->addItem('remove_all', array(
98
+ 'label'=> Mage::helper('customshipping')->__('Delete Rules'),
99
+ 'url' => $this->getUrl('*/*/massRemove'),
100
+ 'confirm' => Mage::helper('customshipping')->__('Are you sure you want to delete selected rules?'),
101
+ ));
102
+
103
+ $this->setMassactionIdField('id');
104
+ $this->getMassactionBlock()->setUseSelectAll(false);
105
+
106
+ return $this;
107
+ }
108
+
109
+ public function getRowUrl($row)
110
+ {
111
+ return $this->getUrl('*/*/edit', array('id' => $row->getId()));
112
+ }
113
+
114
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Shipment extends Mage_Adminhtml_Block_Widget_Grid_Container
4
+ {
5
+ public function __construct() {
6
+ $this->_controller = 'adminhtml_shipment';
7
+ $this->_blockGroup = 'customshipping';
8
+ $this->_headerText = Mage::helper('customshipping')->__('Manage Shipments');
9
+ parent::__construct();
10
+ $this->_removeButton('add');
11
+
12
+ }
13
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Shipment_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
4
+ {
5
+
6
+ protected $_shipment;
7
+
8
+ public function __construct()
9
+ {
10
+ parent::__construct();
11
+ $this->_blockGroup = 'customshipping';
12
+ $this->_controller = 'adminhtml_shipment';
13
+
14
+ if ($this->getShipment()->getStatus() != Candf_Customshipping_Model_System_Config_Backend_Shipment_Status::BOOKED){
15
+ $this->_updateButton('save', 'label', Mage::helper('customshipping')->__('Save and Get Quotes'));
16
+ } else if($this->getShipment()->getStatus() == Candf_Customshipping_Model_System_Config_Backend_Shipment_Status::BOOKED){
17
+ $this->removeButton('save');
18
+ }
19
+
20
+
21
+ $this->removeButton('delete');
22
+ $this->removeButton('reset');
23
+
24
+ $add_button_method = 'addButton';
25
+ if (!method_exists($this, $add_button_method)) {
26
+ $add_button_method = '_addButton';
27
+ }
28
+
29
+ }
30
+
31
+ public function getShipment()
32
+ {
33
+ if (!$this->_shipment) {
34
+ $this->_shipment = Mage::registry('customshipping_shipment_data');
35
+ }
36
+ return $this->_shipment;
37
+ }
38
+
39
+ /**
40
+ * Gets the current order for the shipment being edited.
41
+ *
42
+ * @return Mage_Sales_Model_Order
43
+ */
44
+ public function getOrder()
45
+ {
46
+ if ($this->hasOrder()) {
47
+ return $this->getData('order');
48
+ }
49
+ if (Mage::registry('current_order')) {
50
+ return Mage::registry('current_order');
51
+ }
52
+ if (Mage::registry('order')) {
53
+ return Mage::registry('order');
54
+ }
55
+ Mage::throwException(Mage::helper('sales')->__('Cannot get order instance'));
56
+ }
57
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Form.php ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
4
+ {
5
+
6
+ protected function _prepareForm()
7
+ {
8
+ $form = new Varien_Data_Form(
9
+ array(
10
+ 'id' => 'edit_form',
11
+ 'action' => $this->getUrl('*/*/save', array('id' => $this->getRequest()->getParam('id'))),
12
+ 'method' => 'post',
13
+ 'enctype' => 'multipart/form-data'
14
+ )
15
+ );
16
+
17
+ $form->setUseContainer(true);
18
+ $this->setForm($form);
19
+ return parent::_prepareForm();
20
+ }
21
+
22
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Abstract.php ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ abstract class Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Abstract extends Mage_Adminhtml_Block_Template
4
+ {
5
+
6
+ protected $_helper = null;
7
+
8
+ public function __construct()
9
+ {
10
+ parent::_construct();
11
+ $this->setParentBlock(Mage::getBlockSingleton('customshipping/adminhtml_shipment_edit'));
12
+ }
13
+
14
+ /**
15
+ * Gets the shipment being edited.
16
+ *
17
+ */
18
+ public function getShipment()
19
+ {
20
+ return $this->getParentBlock()->getShipment();
21
+ }
22
+
23
+ /**
24
+ * Gets the saved quotes for this order from the database.
25
+ *
26
+ */
27
+ public function getQuotes()
28
+ {
29
+ //print_r($this->getShipment());
30
+ return $this->getShipment()->getQuotes(true);
31
+ }
32
+
33
+ public function formatCurrency($price)
34
+ {
35
+ return Mage::helper('core')->currency($price);
36
+ }
37
+
38
+ public function getWeightUnitText($unit = null)
39
+ {
40
+ if (!$unit) {
41
+ $unit = $this->getCustomshippingHelper()->getConfigData('units/weight');
42
+ }
43
+ return Mage::getModel('customshipping/system_config_backend_unit_weight')
44
+ ->getBriefOptionLabel($unit);
45
+ }
46
+
47
+ public function getMeasureUnitText($unit = null)
48
+ {
49
+ if (!$unit) {
50
+ $unit = $this->getCustomshippingHelper()->getConfigData('units/measure');
51
+ }
52
+ return Mage::getModel('customshipping/system_config_backend_unit_measure')
53
+ ->getBriefOptionLabel($unit);
54
+ }
55
+
56
+ public function getCustomshippingHelper() {
57
+ if (!$this->_helper) {
58
+ $this->_helper = Mage::helper('customshipping');
59
+ }
60
+ return $this->_helper;
61
+ }
62
+
63
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form.php ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Form
4
+ extends Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Abstract
5
+ implements Mage_Adminhtml_Block_Widget_Tab_Interface
6
+ {
7
+
8
+ protected $_template = 'candf/customshipping/candf_shipment.phtml';
9
+
10
+ public function __construct()
11
+ {
12
+ $this->setTemplate($this->_template);
13
+ parent::__construct();
14
+ $this->setTemplate($this->_template);
15
+ }
16
+
17
+ public function getTabLabel()
18
+ {
19
+ return $this->__('Information');
20
+ }
21
+
22
+ public function getTabTitle()
23
+ {
24
+ return $this->__('Information');
25
+ }
26
+
27
+ public function canShowTab()
28
+ {
29
+ return true;
30
+ }
31
+
32
+ public function isHidden()
33
+ {
34
+ return false;
35
+ }
36
+
37
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form/Availableboxes.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Form_Availableboxes extends Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Abstract
4
+ {
5
+ public function getAvailableboxes() {
6
+ $warehouse = Mage::getModel('customshipping/boxes')->getCollection()->setOrder('width', 'asc');
7
+ $warehouse->addFieldToFilter( 'is_active', '1' );
8
+ $warehouse->getData();
9
+ return $warehouse;
10
+
11
+ }
12
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form/Destination.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Form_Destination extends Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Abstract
4
+ {
5
+
6
+
7
+
8
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form/Manualycreatebox.php ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Form_Manualycreatebox extends Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Abstract
4
+ {
5
+
6
+ protected $_addRowButtonHtml = array();
7
+ protected $_removeRowButtonHtml = array();
8
+ protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
9
+ {
10
+ $this->setElement($element);
11
+ $html = '<div id="code_label_textfields_template" style="display:none">';
12
+ $html .= $this->_getRowTemplateHtml();
13
+ $html .= '</div>';
14
+ $html .= '<ul id="code_label_textfields_container">';
15
+ if ($this->_getValue('method')) {
16
+ foreach ($this->_getValue('method') as $i=>$f) {
17
+ if ($i) {
18
+ $html .= $this->_getRowTemplateHtml($i);
19
+ }
20
+ }
21
+ }
22
+ $html .= '</ul>';
23
+ $html .= $this->_getAddRowButtonHtml('code_label_textfields_container', 'code_label_textfields_template', $this->__('Button Label Here'));
24
+ return $html;
25
+ }
26
+
27
+ protected function _getRowTemplateHtml()
28
+ {
29
+ $html = '<li>';
30
+ $html .= '<div style="margin:5px 0 10px;">';
31
+ $html .= '<input class="input-text" name="'.$this->getElement()->getName().'" value="'.$this->_getValue('price/'.$i).'" '.$this->_getDisabled().'/> ';
32
+ $html .= $this->_getRemoveRowButtonHtml();
33
+ $html .= '</div>';
34
+ $html .= '</li>';
35
+ return $html;
36
+ }
37
+
38
+
39
+
40
+ protected function _getDisabled()
41
+ {
42
+ return $this->getElement()->getDisabled() ? ' disabled' : '';
43
+ }
44
+
45
+ protected function _getValue($key)
46
+ {
47
+ return $this->getElement()->getData('value/'.$key);
48
+ }
49
+
50
+ protected function _getSelected($key, $value)
51
+ {
52
+ return $this->getElement()->getData('value/'.$key)==$value ? 'selected="selected"' : '';
53
+ }
54
+
55
+ protected function _getAddRowButtonHtml($container, $template, $title='Add')
56
+ {
57
+ if (!isset($this->_addRowButtonHtml[$container])) {
58
+ $this->_addRowButtonHtml[$container] = $this->getLayout()->createBlock('adminhtml/widget_button')
59
+ ->setType('button')
60
+ ->setClass('add '.$this->_getDisabled())
61
+ ->setLabel($this->__($title))
62
+ ->setOnClick("Element.insert($('".$container."'), {bottom: $('".$template."').innerHTML})")
63
+ ->setDisabled($this->_getDisabled())
64
+ ->toHtml();
65
+ }
66
+ return $this->_addRowButtonHtml[$container];
67
+ }
68
+
69
+ protected function _getRemoveRowButtonHtml($selector='li', $title='Remove')
70
+ {
71
+ if (!$this->_removeRowButtonHtml) {
72
+ $this->_removeRowButtonHtml = $this->getLayout()->createBlock('adminhtml/widget_button')
73
+ ->setType('button')
74
+ ->setClass('delete v-middle '.$this->_getDisabled())
75
+ ->setLabel($this->__($title))
76
+ ->setOnClick("Element.remove($(this).up('".$selector."'))")
77
+ ->setDisabled($this->_getDisabled())
78
+ ->toHtml();
79
+ }
80
+ return $this->_removeRowButtonHtml;
81
+ }
82
+
83
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form/Pickup.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Form_Pickup extends Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Abstract
4
+ {
5
+ public function isAdminSelect()
6
+ {
7
+ if ($this->getShipment() && !is_null(Mage::getSingleton('adminhtml/session')->getData('pickup_' . $this->getShipment()->getId()))) {
8
+ return true;
9
+ }
10
+
11
+ return false;
12
+ }
13
+
14
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form/Products.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Form_Products extends Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Abstract
4
+ {
5
+
6
+ public function getProductFromItem(Mage_Sales_Model_Order_Item $item)
7
+ {
8
+ return Mage::getModel('catalog/product')
9
+ ->load($item->getProductId());
10
+ }
11
+
12
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form/Quotes.php ADDED
@@ -0,0 +1,282 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ ini_set('soap.wsdl_cache_enabled',0);
3
+ ini_set('soap.wsdl_cache_ttl',0);
4
+ class PickUpAddresses
5
+ {
6
+ public $CountryCode;
7
+ public $Suburb;
8
+ public $PostCode;
9
+ }
10
+ class DeliveryAddresses
11
+ {
12
+ public $CountryCode;
13
+ public $Suburb;
14
+ public $PostCode;
15
+ }
16
+ class CFParam_Rate
17
+ {
18
+ public $key;
19
+ public $rateRequest;
20
+ }
21
+ class AddOnServiceChageList
22
+ {
23
+
24
+ }
25
+ class Parcel
26
+ {
27
+ public $Height;
28
+ public $Length;
29
+ public $Width;
30
+ public $Weight;
31
+ }
32
+ class APIKey
33
+ {
34
+ public $AuthKey;
35
+ public $Password;
36
+ }
37
+ class RateRequest
38
+ {
39
+ public $PickUpAddress;
40
+ public $DeliveryAddress;
41
+ public $Parcel;
42
+ }
43
+
44
+ class Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Form_Quotes extends Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Abstract
45
+ {
46
+ public function getProductFromItem(Mage_Sales_Model_Order_Item $item)
47
+ {
48
+ return Mage::getModel('catalog/product')
49
+ ->load($item->getProductId());
50
+ }
51
+
52
+ public function getSoaprequest()
53
+ {
54
+ $_shipment = $this->getShipment();
55
+ $orderid = $_shipment->getOrderId();
56
+ $order = Mage::getModel('sales/order')->load($orderid);
57
+ $customshipping2 = Mage::getModel('customshipping/shipment')->load($this->getShipment()->getId());
58
+ $incrementid = $order->getIncrementId();
59
+ $candconfig = Mage::getStoreConfig('candf');
60
+ $apikey = $candconfig['general']['api'];
61
+ $password = $candconfig['general']['password'];
62
+
63
+ if($candconfig['general']['active'] == 1)
64
+ {
65
+ if($candconfig['countries']['specificcountry'] == 'AU')
66
+ {
67
+ $cart = Mage::getSingleton('checkout/cart')->getQuote();
68
+ $shippingaddress = $cart->getShippingAddress();
69
+ $k = 0;
70
+ $customshipping = Mage::getModel('customshipping/shipment')->load($this->getShipment()->getId());
71
+ $destinationcity = $customshipping->getDestinationCity();
72
+ $destinationpostcode = $customshipping->getDestinationPostcode();
73
+ $rateRequest = new RateRequest();
74
+ $pickupaddress = new PickUpAddresses();
75
+ $adminselectedLocationId = Mage::getSingleton('core/session')->getSelectedLocation();
76
+
77
+ if($adminselectedLocationId > 0) {
78
+ $adminselectedLocationDetails = Mage::getModel('customshipping/warehouse')->load($adminselectedLocationId)->getData();
79
+ $adminselectedLocationsuburb = $adminselectedLocationDetails['suburb'];
80
+ $adminselectedLocationzip = $adminselectedLocationDetails['zip'];
81
+ $pickupaddress->CountryCode = 'AUS';
82
+ $pickupaddress->PostCode = $adminselectedLocationzip;
83
+ $pickupaddress->Suburb = $adminselectedLocationsuburb;
84
+ $rateRequest->PickUpAddress = $pickupaddress;
85
+ } else {
86
+ $pickupaddress->CountryCode = 'AUS';
87
+ $pickupaddress->PostCode = $candconfig['warehouse']['warehouse_code'];
88
+ $pickupaddress->Suburb = $candconfig['warehouse']['warehouse_suburb'];
89
+ $rateRequest->PickUpAddress = $pickupaddress;
90
+ }
91
+
92
+ $deliveryaddress = new DeliveryAddresses();
93
+ $deliveryaddress->CountryCode = 'AUS';
94
+ $deliveryaddress->PostCode = $destinationpostcode;
95
+ $deliveryaddress->Suburb = $destinationcity;
96
+ $rateRequest->DeliveryAddress = $deliveryaddress;
97
+
98
+ $autoselectedBoxCheck1 = Mage::getSingleton('core/session')->getAutoSelectedBoxCheckStatus();
99
+ $manualyCreateBoxes = Mage::getSingleton('core/session')->getManualyCreateBoxesArray();
100
+
101
+ if(!empty($manualyCreateBoxes)) {
102
+ $manualyCreateBoxes = Mage::getSingleton('core/session')->getManualyCreateBoxesArray();
103
+
104
+ foreach($manualyCreateBoxes as $boxfilledProduct) {
105
+ $qty = $boxfilledProduct['gty'];
106
+ for($c = 1; $c<=$qty; $c++)
107
+ {
108
+ $parcel[$k] = new Parcel1();
109
+ $parcel[$k]->Height = $boxfilledProduct['height'];
110
+ $parcel[$k]->Length = $boxfilledProduct['length'];
111
+ $parcel[$k]->Width = $boxfilledProduct['width'];
112
+ $parcel[$k]->Weight = $boxfilledProduct['weight'];
113
+ $k++;
114
+ }
115
+ }
116
+
117
+ }elseif(!empty($autoselectedBoxCheck1)) {
118
+ $avalableBoxArray = Mage::getSingleton('core/session')->getAvalableBoxArray();
119
+
120
+ foreach($avalableBoxArray as $boxfilledProduct) {
121
+ $parcel[$k] = new Parcel1();
122
+ $parcel[$k]->Height = $boxfilledProduct['BoxDetails']['height'];
123
+ $parcel[$k]->Length = $boxfilledProduct['BoxDetails']['length'];
124
+ $parcel[$k]->Width = $boxfilledProduct['BoxDetails']['width'];
125
+ $parcel[$k]->Weight = $boxfilledProduct['BoxDetails']['NetWeight'];
126
+ $k++;
127
+ }
128
+ }
129
+ else{
130
+ $collection = Mage::getResourceModel('sales/order_collection')
131
+ ->addFieldToFilter('increment_id', $incrementid)
132
+ ->addAttributeToSelect('*');
133
+
134
+ foreach ($collection as $col)
135
+ {
136
+ $customshippingorder = Mage::getModel('customshipping/order')->getCollection()
137
+ ->addFieldToFilter('order_id',$orderid)->getData();
138
+ foreach($customshippingorder as $coll){
139
+ $sku = $coll['product_sku'];
140
+ $qty = $coll['qty'];
141
+ $_product = Mage::getModel('catalog/product')->loadByAttribute('sku', $sku);
142
+ $length = $_product->getResource()->getAttribute('candf_length')->getFrontend()->getValue($_product);
143
+ $height = $_product->getResource()->getAttribute('candf_height')->getFrontend()->getValue($_product);
144
+ $width = $_product->getResource()->getAttribute('candf_width')->getFrontend()->getValue($_product);
145
+ $weight = $_product->getResource()->getAttribute('weight')->getFrontend()->getValue($_product);
146
+
147
+ $proLenght = $length;
148
+ $proHeight =$height;
149
+ $proWidth = $width;
150
+ $proWeight = $weight;
151
+ $proQty = $qty;
152
+ $meterRate = $_product->getResource()->getAttribute('candf_meter_rate')->getFrontend()->getValue($_product);
153
+ $packagedLength = $_product->getResource()->getAttribute('candf_packaged_length')->getFrontend()->getValue($_product);
154
+
155
+ if($meterRate && (bool)$packagedLength) {
156
+ $floatLength = floatval($packagedLength);
157
+ $packageWeight = ($floatLength*$weight)/$length;
158
+ $how_many_parts_make_up_one_product = $floatLength /floatval($length);
159
+ $length = $floatLength;
160
+ $packageQty = $qty/$how_many_parts_make_up_one_product;
161
+ $qty = floor($packageQty);
162
+ $decimalVal = $packageQty - $qty;
163
+
164
+ //calculate simple product
165
+ $additionalQty = round(($packagedLength * $decimalVal)/$proLenght);
166
+ $weight = $packageWeight;
167
+ if($packageQty < 1) {
168
+ $length =$proLenght;
169
+ $height = $proHeight;
170
+ $width = $proWidth;
171
+ $weight = $proWeight;
172
+ $qty = $proQty;
173
+ }
174
+ }
175
+ $k2 = '';
176
+ for ($c = 1; $c <= $qty; $c++) {
177
+ $parcel[$k] = new Parcel();
178
+ $parcel[$k]->Height = $height;
179
+ $parcel[$k]->Length = $length;
180
+ $parcel[$k]->Width = $width;
181
+ $parcel[$k]->Weight = $weight;
182
+ $k++;
183
+ }
184
+ if(!empty($additionalQty)) {
185
+ for ($c = 1; $c <= $additionalQty; $c++) {
186
+ $aditional_parcel[$k2] = new Parcel();
187
+ $aditional_parcel[$k2]->Height = $proHeight;
188
+ $aditional_parcel[$k2]->Length = $proLenght;
189
+ $aditional_parcel[$k2]->Width = $proWidth;
190
+ $aditional_parcel[$k2]->Weight = $proWeight;
191
+ $k2++;
192
+ }
193
+ }
194
+ }
195
+ }
196
+ if(!empty($aditional_parcel)) {
197
+ foreach($aditional_parcel as $aditional_parcelArr) {
198
+ array_push($parcel,$aditional_parcelArr);
199
+ }
200
+ }
201
+ }
202
+
203
+
204
+ if(count($parcel) != 0)
205
+ $k = count($parcel);
206
+ $rateRequest->Parcel = $parcel;
207
+
208
+
209
+
210
+ $key = new APIKey();
211
+ $key->AuthKey = $apikey;
212
+ $key->Password = $password;
213
+
214
+ $auth = array('AuthKey'=>$apikey,'Password'=>$password);
215
+ if($candconfig['general']['sandbox']=='1') {
216
+ $centinelClient = new SoapClient('https://live.couriersandfreight.com.au/CandFAPITest/Service.svc?wsdl',array("soap_version" => SOAP_1_1,"trace"=>1,'exceptions'=>true));
217
+ $header = new SoapHeader("https://live.couriersandfreight.com.au/CandFAPITest/Service.svc?wsdl", "APIKey", $auth,false);
218
+ }else {
219
+ $centinelClient = new SoapClient('https://live.couriersandfreight.com.au/CandFAPILive/Service.svc?wsdl',array("soap_version" => SOAP_1_1,"trace"=>1,'exceptions'=>true));
220
+ $header = new SoapHeader("https://live.couriersandfreight.com.au/CandFAPILive/Service.svc?wsdl", "APIKey", $auth,false);
221
+ }
222
+ $centinelClient->__setSoapHeaders(array($header));
223
+ $ratePara = new CFParam_Rate();
224
+ $ratePara->key = $key;
225
+ $ratePara->rateRequest = $rateRequest;
226
+ $webservice = $centinelClient->Rate($ratePara);
227
+ if($order->getShippingMethod() != ''){
228
+ $getshippingmethod = $order->getShippingMethod();
229
+ } else {
230
+ $getshippingmethod = $order->getShippingMethod();
231
+ }
232
+ $shippingmethod = substr($getshippingmethod,21);
233
+
234
+ $_i = 0;
235
+ for($i = 0; $i< count($webservice->RateResult->RateCollection->Rate); $i++) {
236
+ $requestprice = $webservice->RateResult->RateCollection->Rate[$i]->CurrencyValue;
237
+ if($candconfig['markup']['markup_type'] == 'rate')
238
+ {
239
+ $markup = $candconfig['markup']['markup_price'];
240
+ } else if($candconfig['markup']['markup_type'] == 'percentage')
241
+ {
242
+ $markuppercent = $candconfig['markup']['markup_price'];
243
+ $markup = ($markuppercent/100)*$requestprice;
244
+ }
245
+ $servicename = $webservice->RateResult->RateCollection->Rate[$i]->ServiceName;
246
+ $carriertitle = $webservice->RateResult->RateCollection->Rate[$i]->CarrierName;
247
+ $eta = $webservice->RateResult->RateCollection->Rate[$i]->EtaText;
248
+ $carrierid = $carriertitle."_".$servicename;
249
+ $carriertitle .= " ( ".$servicename." )";
250
+ $price = $markup+$requestprice;
251
+
252
+ if($shippingmethod == $carrierid)
253
+ {
254
+ $customshippinggetmodel = Mage::getModel('customshipping/shipment')->getCollection()
255
+ ->addFieldToFilter('order_id',$orderid);
256
+ foreach($customshippinggetmodel as $coll)
257
+ {
258
+ $shipmenttableid = $coll['id'];
259
+ }
260
+ $tomorrow = mktime(0,0,0,date("m"),date("d")+1,date("Y"));
261
+ if ($this->getShipment()->getStatus() != Candf_Customshipping_Model_System_Config_Backend_Shipment_Status::BOOKED)
262
+ {
263
+ $customshippingmodel = Mage::getModel('customshipping/shipment')->load($shipmenttableid)
264
+ ->setCarrierId($webservice->RateResult->RateCollection->Rate[$i]->CarrierId)
265
+ ->setServiceId($webservice->RateResult->RateCollection->Rate[$i]->ServiceId)
266
+ ->setAdditionalInsurence($webservice->RateResult->RateCollection->Rate[$i]->AdditionalInsurencePremium)
267
+ ->setShippingCost($requestprice)
268
+ ->setMarkupCost($markup)
269
+ ->setEta($eta)
270
+ ->setCarrierName($carrierid)
271
+ ->setServiceName($servicename)
272
+ ->save();
273
+ }
274
+ }
275
+ }
276
+
277
+
278
+ return $webservice;
279
+ }
280
+ }
281
+ }
282
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form/Status.php ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Form_Status extends Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Abstract
4
+ {
5
+
6
+ protected $_customer_selected_quote = null;
7
+
8
+ public function getCustomerSelectedQuoteDescription()
9
+ {
10
+ return $this->getShipment()->getCustomerSelectedQuoteDescription();
11
+ }
12
+
13
+ public function getCandfShipmentStatus()
14
+ {
15
+ return Mage::getModel('customshipping/system_config_backend_shipment_status')
16
+ ->getOptionLabel($this->getShipment()->getStatus());
17
+ }
18
+
19
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tab/Form/Warehouse.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Form_Warehouse extends Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tab_Abstract
4
+ {
5
+ public function getMultipleWarehouse() {
6
+ $warehouse = Mage::getModel('customshipping/warehouse')->getCollection()->getData();
7
+ return $warehouse;
8
+
9
+ }
10
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Edit/Tabs.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Shipment_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
4
+ {
5
+
6
+ public function __construct()
7
+ {
8
+ parent::__construct();
9
+ $this->setId('customshipping_shipment_edit_tabs');
10
+ $this->setDestElementId('edit_form');
11
+ $this->setTitle(Mage::helper('customshipping')->__('Shipment View'));
12
+ }
13
+
14
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Shipment/Grid.php ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Shipment_grid extends Mage_Adminhtml_Block_Widget_Grid
4
+ {
5
+ public function __construct()
6
+ {
7
+ parent::__construct();
8
+ $this->setDefaultSort('created_at');
9
+ $this->setDefaultDir('DESC');
10
+ $this->setSaveParametersInSession(true);
11
+ }
12
+
13
+ protected function _prepareCollection()
14
+ {
15
+ $collection = Mage::getModel('customshipping/shipment')->getCollection();
16
+ $collection->join('sales/order', 'main_table.order_id=`sales/order`.entity_id', array('increment_id', 'created_at', 'shipping_amount','shipping_method'));
17
+ $collection->addFieldToFilter('shipping_method',array('like' => '%candf%'));
18
+
19
+ $this->setCollection($collection);
20
+ return parent::_prepareCollection();
21
+ }
22
+
23
+ protected function _prepareColumns()
24
+ {
25
+
26
+ $this->addColumn('order_number', array(
27
+ 'header' => Mage::helper('customshipping')->__('Order #'),
28
+ 'width' => '100px',
29
+ 'index' => 'increment_id',
30
+ ));
31
+
32
+ $this->addColumn('created_at', array(
33
+ 'header' => Mage::helper('customshipping')->__('Purchased On'),
34
+ 'width' => '160px',
35
+ 'type' => 'datetime',
36
+ 'index' => 'created_at',
37
+ ));
38
+
39
+ $this->addColumn('status', array(
40
+ 'header' => Mage::helper('customshipping')->__('Status'),
41
+ 'index' => 'status',
42
+ 'type' => 'options',
43
+ 'width' => '100px',
44
+ 'filter_index' => 'main_table.status',
45
+ 'options' => Mage::getSingleton('customshipping/system_config_backend_shipment_status')->getOptions(),
46
+ ));
47
+
48
+ $this->addColumn('shipping_paid', array(
49
+ 'header' => Mage::helper('customshipping')->__('Shipping Paid'),
50
+ 'align' => 'left',
51
+ 'type' => 'currency',
52
+ 'currency_code' => Mage::app()->getStore()->getCurrentCurrencyCode(),
53
+ 'index' => 'shipping_amount',
54
+ ));
55
+
56
+ $this->addColumn('selected_quote_description', array(
57
+ 'header' => Mage::helper('customshipping')->__('Selected Quote'),
58
+ 'align' => 'left',
59
+ 'index' => 'customer_selected_quote_description',
60
+ ));
61
+
62
+ $this->addColumn('action', array(
63
+ 'header' => Mage::helper('customshipping')->__('Action'),
64
+ 'width' => '100',
65
+ 'type' => 'action',
66
+ 'getter' => 'getId',
67
+ 'actions' => array(
68
+ 'view' => array(
69
+ 'caption' => Mage::helper('customshipping')->__('View'),
70
+ 'url' => array('base' => '*/*/edit'),
71
+ 'field' => 'id'
72
+ )
73
+ ),
74
+ 'filter' => false,
75
+ 'sortable' => false,
76
+ 'index' => 'stores',
77
+ 'is_system' => true,
78
+ ));
79
+
80
+ return parent::_prepareColumns();
81
+ }
82
+
83
+ public function getRowUrl($row)
84
+ {
85
+ return $this->getUrl('*/*/edit', array('id' => $row->getId()));
86
+ }
87
+
88
+
89
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/System/Config/Backend/Form/Field/Required.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_System_Config_Backend_Form_Field_Required extends Mage_Adminhtml_Block_System_Config_Form_Field {
4
+
5
+ protected $_element;
6
+
7
+ public function render(Varien_Data_Form_Element_Abstract $element) {
8
+
9
+ $this->_element = $element;
10
+
11
+ $html = parent::render($this->_element);
12
+
13
+ $html = $this->_addValidateStar($html);
14
+
15
+ return $html;
16
+ }
17
+
18
+ public function _addValidateStar($html) {
19
+ $search = '<label for="' . $this->_element->getHtmlId() . '">' . $this->_element->getLabel() . '</label>';
20
+ $replacement = '<label for="' . $this->_element->getHtmlId() . '">' . $this->_element->getLabel() . ' <span class="required">*</span></label>';
21
+
22
+ return str_replace($search, $replacement, $html);
23
+ }
24
+
25
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Warehouse.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Warehouse extends Mage_Adminhtml_Block_Widget_Grid_Container
4
+ {
5
+ public function __construct()
6
+ {
7
+ $this->_controller = 'adminhtml_warehouse';
8
+ $this->_blockGroup = 'customshipping';
9
+ $this->_headerText = Mage::helper('customshipping')->__('Manage Warehouse');
10
+ $this->_addButtonLabel = Mage::helper('customshipping')->__('Add Item');
11
+ parent::__construct();
12
+ }
13
+
14
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Warehouse/Edit.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Warehouse_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
4
+ {
5
+ public function __construct()
6
+ {
7
+ parent::__construct();
8
+
9
+ $this->_objectId = 'id';
10
+ $this->_blockGroup = 'customshipping';
11
+ $this->_controller = 'adminhtml_warehouse';
12
+
13
+ $this->_updateButton('save', 'label', Mage::helper('customshipping')->__('Save Item'));
14
+ $this->_updateButton('delete', 'label', Mage::helper('customshipping')->__('Delete Item'));
15
+ }
16
+
17
+ public function getHeaderText()
18
+ {
19
+ if( Mage::registry('warehouse_data') && Mage::registry('warehouse_data')->getId() ) {
20
+ return Mage::helper('customshipping')->__("Edit Item '%s'", $this->htmlEscape(Mage::registry('warehouse_data')->getTitle()));
21
+ } else {
22
+ return Mage::helper('customshipping')->__('Add Item');
23
+ }
24
+ }
25
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Warehouse/Edit/Form.php ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Warehouse_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
4
+ {
5
+ protected function _prepareForm()
6
+ {
7
+ $form = new Varien_Data_Form(array(
8
+ 'id' => 'edit_form',
9
+ 'action' => $this->getUrl('*/*/save', array('id' => $this->getRequest()->getParam('id'))),
10
+ 'method' => 'post',
11
+ )
12
+ );
13
+
14
+ $form->setUseContainer(true);
15
+ $this->setForm($form);
16
+ return parent::_prepareForm();
17
+ }
18
+ }
19
+ ?>
app/code/community/Candf/Customshipping/Block/Adminhtml/Warehouse/Edit/Tab/Address.php ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Warehouse_Edit_Tab_Address extends Mage_Adminhtml_Block_Widget_Form
4
+ {
5
+ protected function _prepareForm()
6
+ {
7
+ $form = new Varien_Data_Form();
8
+ $this->setForm($form);
9
+ $fieldset = $form->addFieldset('warehouse_address', array('legend'=>Mage::helper('customshipping')->__('Address Details')));
10
+
11
+ $fieldset->addField('street_add1', 'text', array(
12
+ 'label' => Mage::helper('customshipping')->__('Street Address 1'),
13
+ 'class' => 'required-entry',
14
+ 'name' => 'street_add1',
15
+ ));
16
+
17
+
18
+ $fieldset->addField('street_add2', 'text', array(
19
+ 'label' => Mage::helper('customshipping')->__('Street Address 2'),
20
+ 'class' => 'required-entry',
21
+ 'name' => 'street_add2',
22
+ ));
23
+
24
+
25
+ $fieldset->addField('zip', 'text', array(
26
+ 'label' => Mage::helper('customshipping')->__('Zip/Post Code'),
27
+ 'class' => 'required-entry',
28
+ 'required' => true,
29
+ 'name' => 'zip',
30
+ ));
31
+
32
+ $fieldset->addField('suburb', 'text', array(
33
+ 'label' => Mage::helper('customshipping')->__('Warehouse Suburb'),
34
+ 'class' => 'required-entry',
35
+ 'required' => true,
36
+ 'name' => 'suburb',
37
+ ));
38
+ $fieldset->addField('state', 'text', array(
39
+ 'label' => Mage::helper('customshipping')->__('State'),
40
+ 'class' => 'required-entry',
41
+ 'required' => true,
42
+ 'name' => 'state',
43
+ ));
44
+ $fieldset->addField('country', 'text', array(
45
+ 'label' => Mage::helper('customshipping')->__('Country'),
46
+ 'class' => 'required-entry',
47
+ 'required' => true,
48
+ 'name' => 'country',
49
+ ));
50
+
51
+ $fieldset = $form->addFieldset('warehouse_contact', array('legend'=>Mage::helper('customshipping')->__('Contact Details')));
52
+
53
+ $fieldset->addField('contact_name', 'text', array(
54
+ 'label' => Mage::helper('customshipping')->__('Contact Name'),
55
+ 'class' => 'required-entry',
56
+ 'required' => true,
57
+ 'name' => 'contact_name',
58
+ ));
59
+
60
+ $fieldset->addField('contact_email', 'text', array(
61
+ 'label' => Mage::helper('customshipping')->__('Contact Email'),
62
+ 'class' => 'required-entry',
63
+ 'required' => true,
64
+ 'name' => 'contact_email',
65
+ ));
66
+
67
+ $fieldset->addField('phone1', 'text', array(
68
+ 'label' => Mage::helper('customshipping')->__('Phone 1'),
69
+ 'class' => 'required-entry',
70
+ 'required' => true,
71
+ 'name' => 'phone1',
72
+ ));
73
+
74
+ $fieldset->addField('phone2', 'text', array(
75
+ 'label' => Mage::helper('customshipping')->__('Phone 2'),
76
+ 'required' => true,
77
+ 'name' => 'phone2',
78
+ ));
79
+
80
+ $fieldset->addField('fax', 'text', array(
81
+ 'label' => Mage::helper('customshipping')->__('Fax'),
82
+ 'required' => true,
83
+ 'name' => 'fax',
84
+ ));
85
+
86
+
87
+
88
+ if ( Mage::getSingleton('adminhtml/session')->getWarehouseData() )
89
+ {
90
+ $form->setValues(Mage::getSingleton('adminhtml/session')->getWarehouseData());
91
+ Mage::getSingleton('adminhtml/session')->setWarehouseData(null);
92
+ } elseif ( Mage::registry('warehouse_data') ) {
93
+ $form->setValues(Mage::registry('warehouse_data')->getData());
94
+ }
95
+ return parent::_prepareForm();
96
+ }
97
+ }
98
+ ?>
app/code/community/Candf/Customshipping/Block/Adminhtml/Warehouse/Edit/Tab/Form.php ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Warehouse_Edit_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
4
+ {
5
+ protected function _prepareForm()
6
+ {
7
+ $form = new Varien_Data_Form();
8
+ $this->setForm($form);
9
+ $fieldset = $form->addFieldset('warehouse_address', array('legend'=>Mage::helper('customshipping')->__('Address Details')));
10
+
11
+
12
+ $fieldset->addField('name', 'text', array(
13
+ 'name' => 'name',
14
+ 'label' => Mage::helper('customshipping')->__('Name'),
15
+ 'title' => Mage::helper('customshipping')->__('Name'),
16
+ 'required' => true,
17
+ ));
18
+
19
+ $fieldset->addField('is_active', 'select', array(
20
+ 'label' => Mage::helper('customshipping')->__('Status'),
21
+ 'title' => Mage::helper('customshipping')->__('Status'),
22
+ 'name' => 'is_active',
23
+ 'required' => true,
24
+ 'options' => array(
25
+ '1' => Mage::helper('customshipping')->__('Enabled'),
26
+ '0' => Mage::helper('customshipping')->__('Disabled'),
27
+ ),
28
+ ));
29
+
30
+ $fieldset->addField('company_name', 'text', array(
31
+ 'name' => 'company_name',
32
+ 'label' => Mage::helper('customshipping')->__('Company Name'),
33
+ 'title' => Mage::helper('customshipping')->__('Company Name'),
34
+ 'required' => true,
35
+ ));
36
+
37
+ $fieldset->addField('location_type', 'select', array(
38
+ 'name' => 'location_type',
39
+ 'label' => Mage::helper('customshipping')->__('Location Type'),
40
+ 'title' => Mage::helper('customshipping')->__('Location Type'),
41
+ 'required' => true,
42
+ // 'values' => Mage::getSingleton('customshipping/system_config_source_origin_type')->getOptions(),
43
+ ));
44
+
45
+ $fieldset->addField('priority', 'text', array(
46
+ 'name' => 'priority',
47
+ 'label' => Mage::helper('customshipping')->__('Priority'),
48
+ 'title' => Mage::helper('customshipping')->__('Priority'),
49
+ 'required' => false,
50
+ 'class' => 'validate-digits',
51
+ ));
52
+
53
+ $field = $fieldset->addField('store_ids', 'multiselect', array(
54
+ 'name' => 'store_ids[]',
55
+ 'label' => Mage::helper('customshipping')->__('Stores'),
56
+ 'title' => Mage::helper('customshipping')->__('Stores'),
57
+ 'required' => true,
58
+ 'values' => Mage::getSingleton('adminhtml/system_store')->getStoreValuesForForm()
59
+ ));
60
+ $renderer = $this->getLayout()->createBlock('adminhtml/store_switcher_form_renderer_fieldset_element');
61
+ $field->setRenderer($renderer);
62
+
63
+
64
+ $form->setValues($model->getData());
65
+ $this->setForm($form);
66
+
67
+ return parent::_prepareForm();
68
+ }
69
+ }
70
+ ?>
app/code/community/Candf/Customshipping/Block/Adminhtml/Warehouse/Edit/Tab/Genaral.php ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Warehouse_Edit_Tab_Genaral extends Mage_Adminhtml_Block_Widget_Form
4
+ {
5
+ protected function _prepareForm()
6
+ {
7
+ $form = new Varien_Data_Form();
8
+ $this->setForm($form);
9
+ $fieldset = $form->addFieldset('warehouse_genaral', array('legend'=>Mage::helper('customshipping')->__('Genaral Details')));
10
+
11
+
12
+ $fieldset->addField('name', 'text', array(
13
+ 'name' => 'name',
14
+ 'label' => Mage::helper('customshipping')->__('Name'),
15
+ 'title' => Mage::helper('customshipping')->__('Name'),
16
+ 'required' => true,
17
+ ));
18
+
19
+ $fieldset->addField('is_active', 'select', array(
20
+ 'label' => Mage::helper('customshipping')->__('Status'),
21
+ 'title' => Mage::helper('customshipping')->__('Status'),
22
+ 'name' => 'is_active',
23
+ 'required' => true,
24
+ 'options' => array(
25
+ '1' => Mage::helper('customshipping')->__('Enabled'),
26
+ '0' => Mage::helper('customshipping')->__('Disabled'),
27
+ ),
28
+ ));
29
+
30
+ $fieldset->addField('company_name', 'text', array(
31
+ 'name' => 'company_name',
32
+ 'label' => Mage::helper('customshipping')->__('Company Name'),
33
+ 'title' => Mage::helper('customshipping')->__('Company Name'),
34
+ 'required' => true,
35
+ ));
36
+
37
+ if ( Mage::getSingleton('adminhtml/session')->getWarehouseData() )
38
+ {
39
+ $form->setValues(Mage::getSingleton('adminhtml/session')->getWarehouseData());
40
+ Mage::getSingleton('adminhtml/session')->setWarehouseData(null);
41
+ } elseif ( Mage::registry('warehouse_data') ) {
42
+ $form->setValues(Mage::registry('warehouse_data')->getData());
43
+ }
44
+ return parent::_prepareForm();
45
+ }
46
+ }
47
+ ?>
app/code/community/Candf/Customshipping/Block/Adminhtml/Warehouse/Edit/Tabs.php ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Warehouse_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
4
+ {
5
+
6
+ public function __construct()
7
+ {
8
+ parent::__construct();
9
+ $this->setId('warehouse_id');
10
+ $this->setDestElementId('edit_form');
11
+ $this->setTitle(Mage::helper('customshipping')->__('Warehouse Information'));
12
+ }
13
+
14
+ protected function _beforeToHtml()
15
+ {
16
+ $this->addTab('form_general', array(
17
+ 'label' => Mage::helper('customshipping')->__('Genaral Information'),
18
+ 'title' => Mage::helper('customshipping')->__('Genaral Information'),
19
+ 'content' => $this->getLayout()->createBlock('customshipping/adminhtml_warehouse_edit_tab_genaral')->toHtml(),
20
+ ));
21
+
22
+ $this->addTab('form_address', array(
23
+ 'label' => Mage::helper('customshipping')->__('Address & Contact'),
24
+ 'title' => Mage::helper('customshipping')->__('Address & Contact'),
25
+ 'content' => $this->getLayout()->createBlock('customshipping/adminhtml_warehouse_edit_tab_address')->toHtml(),
26
+ ));
27
+
28
+ return parent::_beforeToHtml();
29
+ }
30
+ }
31
+ ?>
app/code/community/Candf/Customshipping/Block/Adminhtml/Warehouse/Grid.php ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Candf_Customshipping_Block_Adminhtml_Warehouse_Grid extends Mage_Adminhtml_Block_Widget_Grid
3
+ {
4
+
5
+ public function __construct()
6
+ {
7
+ parent::__construct();
8
+ $this->setId('warehouseGrid');
9
+ // This is the primary key of the database
10
+ $this->setDefaultSort('warehouse_id');
11
+ $this->setDefaultDir('ASC');
12
+ $this->setSaveParametersInSession(true);
13
+ }
14
+
15
+ protected function _prepareCollection()
16
+ {
17
+ $collection = Mage::getModel('customshipping/warehouse')->getCollection();
18
+ $this->setCollection($collection);
19
+ return parent::_prepareCollection();
20
+ }
21
+
22
+ protected function _prepareColumns()
23
+ {
24
+
25
+ $this->addColumn('warehouse_id', array(
26
+ 'header' => Mage::helper('customshipping')->__('Warehouse Id'),
27
+ 'width' => '100px',
28
+ 'index' => 'warehouse_id',
29
+ ));
30
+
31
+ $this->addColumn('name', array(
32
+ 'header' => Mage::helper('customshipping')->__('Name'),
33
+ 'width' => '160px',
34
+ 'index' => 'name',
35
+ ));
36
+
37
+ $this->addColumn('is_active', array(
38
+ 'header' => Mage::helper('customshipping')->__('Status'),
39
+ 'width' => '160px',
40
+ 'index' => 'is_active',
41
+ ));
42
+
43
+
44
+ $this->addColumn('zip', array(
45
+ 'header' => Mage::helper('customshipping')->__('Zip/Post Code'),
46
+ 'align' => 'left',
47
+ 'index' => 'zip',
48
+ ));
49
+
50
+
51
+ $this->addColumn('suburb', array(
52
+ 'header' => Mage::helper('customshipping')->__('Suburb'),
53
+ 'align' => 'left',
54
+ 'index' => 'suburb',
55
+ ));
56
+ $this->addColumn('state', array(
57
+ 'header' => Mage::helper('customshipping')->__('State'),
58
+ 'align' => 'left',
59
+ 'index' => 'state',
60
+ ));
61
+
62
+ $this->addColumn('country', array(
63
+ 'header' => Mage::helper('customshipping')->__('Country'),
64
+ 'align' => 'left',
65
+ 'index' => 'country',
66
+ ));
67
+
68
+ return parent::_prepareColumns();
69
+ }
70
+
71
+ public function getRowUrl($row)
72
+ {
73
+ return $this->getUrl('*/*/edit', array('id' => $row->getId()));
74
+ }
75
+
76
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Zone.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Zone extends Mage_Adminhtml_Block_Widget_Grid_Container
4
+ {
5
+ public function __construct()
6
+ {
7
+ $this->_controller = 'adminhtml_zone';
8
+ $this->_blockGroup = 'customshipping';
9
+ $this->_headerText = Mage::helper('customshipping')->__('Manage Zone');
10
+ $this->_addButtonLabel = Mage::helper('customshipping')->__('Add Item');
11
+ parent::__construct();
12
+ }
13
+
14
+ }
15
+
16
+
app/code/community/Candf/Customshipping/Block/Adminhtml/Zone/Edit.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Zone_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
4
+ {
5
+ public function __construct()
6
+ {
7
+ parent::__construct();
8
+
9
+ $this->_objectId = 'id';
10
+ $this->_blockGroup = 'customshipping';
11
+ $this->_controller = 'adminhtml_zone';
12
+
13
+ $this->_updateButton('save', 'label', Mage::helper('customshipping')->__('Save Item'));
14
+ $this->_updateButton('delete', 'label', Mage::helper('customshipping')->__('Delete Item'));
15
+ }
16
+
17
+ public function getHeaderText()
18
+ {
19
+ if( Mage::registry('warehouse_data') && Mage::registry('zone_data')->getId() ) {
20
+ return Mage::helper('customshipping')->__("Edit Item '%s'", $this->htmlEscape(Mage::registry('zone_data')->getTitle()));
21
+ } else {
22
+ return Mage::helper('customshipping')->__('Add Item');
23
+ }
24
+ }
25
+ }
app/code/community/Candf/Customshipping/Block/Adminhtml/Zone/Edit/Form.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Zone_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
4
+ {
5
+ protected function _prepareForm()
6
+ {
7
+ $form = new Varien_Data_Form(array(
8
+ 'id' => 'edit_form',
9
+ 'action' => $this->getUrl('*/*/save', array('id' => $this->getRequest()->getParam('id'))),
10
+ 'method' => 'post',
11
+ )
12
+ );
13
+
14
+ $form->setUseContainer(true);
15
+ $this->setForm($form);
16
+ return parent::_prepareForm();
17
+ }
18
+ }
19
+ ?>
20
+
app/code/community/Candf/Customshipping/Block/Adminhtml/Zone/Edit/Tab/Form.php ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Zone_Edit_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
4
+ {
5
+ protected function _prepareForm()
6
+ {
7
+ $form = new Varien_Data_Form();
8
+ $this->setForm($form);
9
+ $fieldset = $form->addFieldset('zone_form', array('legend'=>Mage::helper('customshipping')->__('Item information')));
10
+
11
+ $fieldset->addField('name', 'text', array(
12
+ 'label' => Mage::helper('customshipping')->__('Name'),
13
+ 'class' => 'required-entry',
14
+ 'required' => true,
15
+ 'name' => 'name',
16
+ ));
17
+
18
+ $fieldset->addField('street', 'text', array(
19
+ 'label' => Mage::helper('customshipping')->__('Street'),
20
+ 'class' => 'required-entry',
21
+ 'required' => true,
22
+ 'name' => 'street',
23
+ ));
24
+
25
+ $fieldset->addField('city', 'text', array(
26
+ 'label' => Mage::helper('customshipping')->__('City'),
27
+ 'class' => 'required-entry',
28
+ 'required' => true,
29
+ 'name' => 'city',
30
+ ));
31
+
32
+ $fieldset->addField('zip', 'text', array(
33
+ 'label' => Mage::helper('customshipping')->__('Zip/Post Code'),
34
+ 'class' => 'required-entry',
35
+ 'required' => true,
36
+ 'name' => 'zip',
37
+ ));
38
+
39
+ $fieldset->addField('region', 'text', array(
40
+ 'label' => Mage::helper('customshipping')->__('Region'),
41
+ 'class' => 'required-entry',
42
+ 'required' => true,
43
+ 'name' => 'region',
44
+ ));
45
+
46
+ $fieldset->addField('country', 'text', array(
47
+ 'label' => Mage::helper('customshipping')->__('Country'),
48
+ 'class' => 'required-entry',
49
+ 'required' => true,
50
+ 'name' => 'country',
51
+ ));
52
+
53
+
54
+
55
+ if ( Mage::getSingleton('adminhtml/session')->getZoneData() )
56
+ {
57
+ $form->setValues(Mage::getSingleton('adminhtml/session')->getZoneData());
58
+ Mage::getSingleton('adminhtml/session')->setZoneData(null);
59
+ } elseif ( Mage::registry('zone_data') ) {
60
+ $form->setValues(Mage::registry('zone_data')->getData());
61
+ }
62
+ return parent::_prepareForm();
63
+ }
64
+ }
65
+ ?>
app/code/community/Candf/Customshipping/Block/Adminhtml/Zone/Edit/Tabs.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Adminhtml_Zone_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
4
+ {
5
+
6
+ public function __construct()
7
+ {
8
+ parent::__construct();
9
+ $this->setId('zone_id');
10
+ $this->setDestElementId('edit_form');
11
+ $this->setTitle(Mage::helper('customshipping')->__('Zone Information'));
12
+ }
13
+
14
+ protected function _beforeToHtml()
15
+ {
16
+ $this->addTab('form_general', array(
17
+ 'label' => Mage::helper('customshipping')->__('Genaral Information'),
18
+ 'title' => Mage::helper('customshipping')->__('Genaral Information'),
19
+ 'content' => $this->getLayout()->createBlock('customshipping/adminhtml_zone_edit_tab_form')->toHtml(),
20
+ ));
21
+
22
+ return parent::_beforeToHtml();
23
+ }
24
+ }
25
+ ?>
app/code/community/Candf/Customshipping/Block/Adminhtml/Zone/Grid.php ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Candf_Customshipping_Block_Adminhtml_Zone_Grid extends Mage_Adminhtml_Block_Widget_Grid
3
+ {
4
+
5
+ public function __construct()
6
+ {
7
+ parent::__construct();
8
+ $this->setId('zoneGrid');
9
+ // This is the primary key of the database
10
+ $this->setDefaultSort('zone_id');
11
+ $this->setDefaultDir('ASC');
12
+ $this->setSaveParametersInSession(true);
13
+ }
14
+
15
+ protected function _prepareCollection()
16
+ {
17
+ $collection = Mage::getModel('customshipping/zone')->getCollection();
18
+ $this->setCollection($collection);
19
+ return parent::_prepareCollection();
20
+ }
21
+
22
+
23
+ protected function _prepareColumns()
24
+ {
25
+
26
+ $this->addColumn('zone_id', array(
27
+ 'header' => Mage::helper('customshipping')->__('Zone Id'),
28
+ 'width' => '160px',
29
+ 'index' => 'zone_id',
30
+ ));
31
+
32
+ $this->addColumn('name', array(
33
+ 'header' => Mage::helper('customshipping')->__('Name'),
34
+ 'width' => '160px',
35
+ 'index' => 'name',
36
+ ));
37
+
38
+ $this->addColumn('country', array(
39
+ 'header' => Mage::helper('customshipping')->__('Country'),
40
+ 'width' => '160px',
41
+ 'index' => 'country',
42
+ ));
43
+
44
+ $this->addColumn('range', array(
45
+ 'header' => Mage::helper('customshipping')->__('Postal Code Ranges'),
46
+ 'align' => 'left',
47
+ 'width' => '160px',
48
+ 'index' => 'range',
49
+ ));
50
+
51
+ return parent::_prepareColumns();
52
+ }
53
+
54
+ public function getRowUrl($row)
55
+ {
56
+ return $this->getUrl('*/*/edit', array('id' => $row->getId()));
57
+ }
58
+
59
+ }
app/code/community/Candf/Customshipping/Block/Cart/Shipping.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Block_Cart_Shipping extends Mage_Core_Block_Abstract
4
+ {
5
+
6
+ public function getCityActive()
7
+ {
8
+ return (bool)Mage::getStoreConfig('carriers/dhl/active')
9
+ || (bool)Mage::getStoreConfig('carriers/dhlint/active');
10
+ }
11
+
12
+ }
app/code/community/Candf/Customshipping/Block/Index.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Candf_Customshipping_Block_Index extends Mage_Core_Block_Template{
3
+
4
+
5
+
6
+
7
+
8
+ }
app/code/community/Candf/Customshipping/Helper/Customshipping.php ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Candf_Customshipping_Helper_Customshipping extends Mage_Core_Helper_Abstract
3
+ {
4
+
5
+ public function loadConfig()
6
+ {
7
+ $settings = array();
8
+ $items = array(
9
+ 'general/active','general/sandbox','general/merchantid','general/api','general/password','countries/sallowspecific','countries/specificcountry',
10
+ 'rule/rulestatus','insurance/status','insurance/insurance_markup','units/measure','units/weight','packaging/packagetype','packaging/length','packaging/width','packaging/height',
11
+ 'warehouse/warehouse_companyname','warehouse/warehouse_firstname','warehouse/warehouse_lastname','warehouse/warehouse_adrs1','warehouse/warehouse_adrs2',
12
+ 'warehouse/warehouse_code','warehouse/warehouse_suburb','warehouse/warehouse_state','warehouse/warehouse_country','warehouse/warehouse_email','warehouse/warehouse_telephone',
13
+ 'warehouse/warehouse_openhour','warehouse/warehouse_closehour','markup/markup_type','markup/markup_price','markup/shippingmethod_count','payment/payment_type','payment/creditcart_number',
14
+ 'payment/creditcart_type','payment/creditcart_custmername','payment/creditcart_cvv','payment/creditcart_expiry_month',
15
+ 'payment/creditcart_expiry_year','options/careername_caption','options/estimate_shipping_display','options/label_type','options/careername_display',
16
+ 'handlingfee/handlingfee_active','handlingfee/handlingfee_price','handlingfee/handlingfee_type'
17
+
18
+ );
19
+ foreach($items as $config)
20
+ {
21
+ $temp = explode('/', $config);
22
+ $name = $temp[1];
23
+
24
+ $settings[$name] = Mage::getStoreConfig('customshipping/' . $config);
25
+ }
26
+ return $settings;
27
+ }
28
+ }
app/code/community/Candf/Customshipping/Helper/Data.php ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Candf_Customshipping_Helper_Data extends Mage_Core_Helper_Abstract
3
+ {
4
+
5
+ /**
6
+ * Gets the date when a package will be ready to ship. Adjusts dates so
7
+ * that they always fall on a weekday.
8
+ *
9
+ * @param <type> $ready_time timestamp for when the package will be ready
10
+ * to ship, defaults to 10 days from current date
11
+ */
12
+ public function getReadyDate($ready_time = NULL)
13
+ {
14
+ if (is_null($ready_time)) {
15
+ $ready_time = strtotime('+10 days');
16
+ }
17
+ if (is_numeric($ready_time) && $ready_time >= strtotime(date('Y-m-d'))) {
18
+ $weekend_days = array('6', '7');
19
+ while (in_array(date('N', $ready_time), $weekend_days)) {
20
+ $ready_time = strtotime('+1 day', $ready_time);
21
+ }
22
+ return $ready_time;
23
+ }
24
+ }
25
+
26
+
27
+ }
28
+
app/code/community/Candf/Customshipping/Model/Additionalservices.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Additionalservices extends Mage_Core_Model_Abstract
4
+ {
5
+ public function _construct()
6
+ {
7
+ parent::_construct();
8
+ $this->_init('customshipping/additionalservices');
9
+ }
10
+
11
+ }
app/code/community/Candf/Customshipping/Model/Booking.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Booking extends Mage_Core_Model_Abstract
4
+ {
5
+ public function _construct()
6
+ {
7
+ parent::_construct();
8
+ $this->_init('customshipping/booking');
9
+ }
10
+
11
+ }
app/code/community/Candf/Customshipping/Model/Boxes.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Boxes extends Mage_Core_Model_Abstract
4
+ {
5
+ public function _construct()
6
+ {
7
+ parent::_construct();
8
+ $this->_init('customshipping/boxes');
9
+ }
10
+ }
11
+ ?>
app/code/community/Candf/Customshipping/Model/Carrier/Dynamic.php ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Carriers{
4
+ public $customerId;
5
+ public $serviceTypeName;
6
+ }
7
+
8
+ class Candf_Customshipping_Model_Carrier_Dynamic
9
+ {
10
+ /* Get All the Carrier list */
11
+
12
+ public function getCarrierList($enabledOnly = false, $type) {
13
+ $candconfig = Mage::getStoreConfig('candf');
14
+ $apikey = $candconfig['general']['api'];
15
+ $password = $candconfig['general']['password'];
16
+
17
+
18
+ if ($candconfig['general']['active'] == 1) {
19
+
20
+ $auth = array('AuthKey' => $apikey, 'Password' => $password);
21
+
22
+ if($candconfig['general']['sandbox']=='1') {
23
+ $centinelClient = new SoapClient('https://live.couriersandfreight.com.au/CandFAPITest/Service.svc?wsdl', array("soap_version" => SOAP_1_1, "trace" => 1, 'exceptions' => true));
24
+ $header = new SoapHeader("https://live.couriersandfreight.com.au/CandFAPITest/Service.svc?wsdl", "APIKey", $auth, false);
25
+ }else {
26
+ $centinelClient = new SoapClient('https://live.couriersandfreight.com.au/CandFAPILive/Service.svc?wsdl', array("soap_version" => SOAP_1_1, "trace" => 1, 'exceptions' => true));
27
+ $header = new SoapHeader("https://live.couriersandfreight.com.au/CandFAPILive/Service.svc?wsdl", "APIKey", $auth, false);
28
+
29
+ }
30
+ $centinelClient->__setSoapHeaders(array($header));
31
+
32
+ $Carriers = new Carriers();
33
+ $Carriers->customerId = $apikey;
34
+ if(!empty($type))
35
+ {
36
+ $Carriers->serviceTypeName = $type;
37
+ }
38
+ else{
39
+ $Carriers->serviceTypeName = 'All';
40
+ }
41
+
42
+ $curi = $centinelClient->GetCarrierByAPIkey($Carriers);
43
+ $Carriers = array();
44
+ $Carriers = $curi->GetCarrierByAPIkeyResult->CarrierList->Courier;
45
+
46
+ foreach ($Carriers as $carrier) {
47
+ $options[] = array(
48
+ 'label' => $carrier->Name,
49
+ 'value' => $carrier->ID
50
+ );
51
+ }
52
+ }
53
+
54
+ return $options;
55
+ }
56
+ }
app/code/community/Candf/Customshipping/Model/Carrier/ShippingMethod.php ADDED
@@ -0,0 +1,539 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ ini_set('soap.wsdl_cache_enabled', 0);
4
+ ini_set('soap.wsdl_cache_ttl', 0);
5
+
6
+ class PickUpAddress {
7
+
8
+ public $CountryCode;
9
+ public $Suburb;
10
+ public $PostCode;
11
+
12
+ }
13
+
14
+ class DeliveryAddress {
15
+
16
+ public $CountryCode;
17
+ public $Suburb;
18
+ public $PostCode;
19
+
20
+ }
21
+
22
+ class CFParam_Rate {
23
+
24
+ public $key;
25
+ public $rateRequest;
26
+
27
+ }
28
+ class Test1{
29
+ public $customerId;
30
+ public $serviceTypeName;
31
+ }
32
+
33
+ class Parcel {
34
+
35
+ public $Height;
36
+ public $Length;
37
+ public $Width;
38
+ public $Weight;
39
+
40
+ }
41
+
42
+ class APIKey {
43
+
44
+ public $AuthKey;
45
+ public $Password;
46
+
47
+ }
48
+
49
+ class RateRequest {
50
+
51
+ public $PickUpAddress;
52
+ public $DeliveryAddress;
53
+ public $Parcel;
54
+
55
+ }
56
+
57
+ class Candf_Customshipping_Model_Carrier_ShippingMethod extends Mage_Shipping_Model_Carrier_Abstract implements Mage_Shipping_Model_Carrier_Interface {
58
+
59
+ protected $_code = 'candf_customshipping';
60
+ protected $_isFixed = true;
61
+
62
+ public function getAllowedMethods() {
63
+ return array('candf-customshipping' => 'cheapest');
64
+ }
65
+
66
+ public function collectRates(Mage_Shipping_Model_Rate_Request $request) {
67
+ if(isset($_REQUEST['cart-popup-no'])) {
68
+ $checkout_without_cnf = $_REQUEST['cart-popup-no'];
69
+ }
70
+ if(empty($checkout_without_cnf)) {
71
+ // $con = Mage::getSingleton('core/resource')->getConnection('core_write');
72
+ $candconfig = Mage::getStoreConfig('candf');
73
+
74
+ // START RULE ENGINE
75
+ if($candconfig['rule']['rulestatus'] == 1)
76
+ {
77
+ $rules = Mage::getModel('customshipping/rule')->getCollection()
78
+ ->addFieldToFilter('is_active', '1')
79
+ ->getData();
80
+
81
+ foreach($rules as $rule)
82
+ {
83
+ if($rule['stop_other'] == 1)
84
+ {
85
+ if($rule['action_rate_type'] == 4 )
86
+ {
87
+ $error = Mage::getModel('shipping/rate_result_error');
88
+ $error->setCarrier('candf_customshipping');
89
+ $error->setCarrierTitle('CandF Shipping');
90
+ $error->setErrorMessage($rule['action_restrict_note']);
91
+ $result = $error;
92
+ return $result;
93
+ }
94
+ else if($rule['action_rate_type'] == 2)
95
+ {
96
+ $lable = $rule['action_static_label'];
97
+ $price = $rule['action_static_value'];
98
+ if($price != 0)
99
+ {
100
+ $price = "0.00";
101
+ }
102
+ $method = Mage::getModel('shipping/rate_result_method');
103
+ $method->setCarrier('candf_customshipping');
104
+ $method->setCarrierTitle('CandF Shipping');
105
+ $method->setMethod("Free Shipping");
106
+ $method->setMethodTitle('Free Shipping Method');
107
+ $method->setPrice($price);
108
+ $method->setCost($price);
109
+ $result = ($method);
110
+ return $result;
111
+ }
112
+ else if($rule['action_rate_type'] == 1)
113
+ {
114
+ $lable = $rule['action_static_label'];
115
+ $price = $rule['action_static_value'];
116
+ $method = Mage::getModel('shipping/rate_result_method');
117
+ $method->setCarrier('candf_customshipping');
118
+ $method->setCarrierTitle('CandF Shipping');
119
+ $method->setMethod("Flat Rate Shipping");
120
+ $method->setMethodTitle($lable);
121
+ $method->setPrice($price);
122
+ $method->setCost($price);
123
+ $result = ($method);
124
+ return $result;
125
+ }
126
+ else if($rule['action_rate_type'] == 3)
127
+ {
128
+ $CarrierIds = $rule['action_dynamic_carriers'];
129
+ $arrayCarrierIds = explode(",", $CarrierIds);
130
+ $DynamicActive = true;
131
+ }
132
+ }
133
+ else if($rule['priority'] == 1)
134
+ {
135
+ if($rule['action_rate_type'] == 4 )
136
+ {
137
+ $error = Mage::getModel('shipping/rate_result_error');
138
+ $error->setCarrier('candf_customshipping');
139
+ $error->setCarrierTitle('CandF Shipping');
140
+ $error->setErrorMessage($rule['action_restrict_note']);
141
+ $result = $error;
142
+ return $result;
143
+ }
144
+ else if($rule['action_rate_type'] == 2)
145
+ {
146
+ $lable = $rule['action_static_label'];
147
+ $price = $rule['action_static_value'];
148
+ if($price != 0)
149
+ {
150
+ $price = "0.00";
151
+ }
152
+ $method = Mage::getModel('shipping/rate_result_method');
153
+ $method->setCarrier('candf_customshipping');
154
+ $method->setCarrierTitle('CandF Shipping');
155
+ $method->setMethod("Free Shipping");
156
+ $method->setMethodTitle('Free Shipping Method');
157
+ $method->setPrice($price);
158
+ $method->setCost($price);
159
+ $result = ($method);
160
+ return $result;
161
+ }
162
+ else if($rule['action_rate_type'] == 1)
163
+ {
164
+ $lable = $rule['action_static_label'];
165
+ $price = $rule['action_static_value'];
166
+ $method = Mage::getModel('shipping/rate_result_method');
167
+ $method->setCarrier('candf_customshipping');
168
+ $method->setCarrierTitle('CandF Shipping');
169
+ $method->setMethod("Flat Rate Shipping");
170
+ $method->setMethodTitle($lable);
171
+ $method->setPrice($price);
172
+ $method->setCost($price);
173
+ $result = ($method);
174
+ return $result;
175
+ }
176
+ else if($rule['action_rate_type'] == 3)
177
+ {
178
+ $CarrierIds = $rule['action_dynamic_carriers'];
179
+ $arrayCarrierIds = explode(",", $CarrierIds);
180
+ $DynamicActive = true;
181
+ }
182
+ }
183
+ else if($rule['priority'] == 2)
184
+ {
185
+ if($rule['action_rate_type'] == 4 )
186
+ {
187
+ $error = Mage::getModel('shipping/rate_result_error');
188
+ $error->setCarrier('candf_customshipping');
189
+ $error->setCarrierTitle('CandF Shipping');
190
+ $error->setErrorMessage($rule['action_restrict_note']);
191
+ $result = $error;
192
+ return $result;
193
+ }
194
+ else if($rule['action_rate_type'] == 2)
195
+ {
196
+ $lable = $rule['action_static_label'];
197
+ $price = $rule['action_static_value'];
198
+ if($price != 0)
199
+ {
200
+ $price = "0.00";
201
+ }
202
+ $method = Mage::getModel('shipping/rate_result_method');
203
+ $method->setCarrier('candf_customshipping');
204
+ $method->setCarrierTitle('CandF Shipping');
205
+ $method->setMethod("Free Shipping");
206
+ $method->setMethodTitle('Free Shipping Method');
207
+ $method->setPrice($price);
208
+ $method->setCost($price);
209
+ $result = ($method);
210
+ return $result;
211
+ }
212
+ else if($rule['action_rate_type'] == 1)
213
+ {
214
+ $lable = $rule['action_static_label'];
215
+ $price = $rule['action_static_value'];
216
+ $method = Mage::getModel('shipping/rate_result_method');
217
+ $method->setCarrier('candf_customshipping');
218
+ $method->setCarrierTitle('CandF Shipping');
219
+ $method->setMethod("Flat Rate Shipping");
220
+ $method->setMethodTitle($lable);
221
+ $method->setPrice($price);
222
+ $method->setCost($price);
223
+ $result = ($method);
224
+ return $result;
225
+ }
226
+ else if($rule['action_rate_type'] == 3)
227
+ {
228
+ $CarrierIds = $rule['action_dynamic_carriers'];
229
+ $arrayCarrierIds = explode(",", $CarrierIds);
230
+ $DynamicActive = true;
231
+ }
232
+ }
233
+ else if($rule['priority'] == 3)
234
+ {
235
+ if($rule['action_rate_type'] == 4 )
236
+ {
237
+ $error = Mage::getModel('shipping/rate_result_error');
238
+ $error->setCarrier('candf_customshipping');
239
+ $error->setCarrierTitle('CandF Shipping');
240
+ $error->setErrorMessage($rule['action_restrict_note']);
241
+ $result = $error;
242
+ return $result;
243
+ }
244
+ else if($rule['action_rate_type'] == 2)
245
+ {
246
+ $lable = $rule['action_static_label'];
247
+ $price = $rule['action_static_value'];
248
+ if($price != 0)
249
+ {
250
+ $price = "0.00";
251
+ }
252
+ $method = Mage::getModel('shipping/rate_result_method');
253
+ $method->setCarrier('candf_customshipping');
254
+ $method->setCarrierTitle('CandF Shipping');
255
+ $method->setMethod("Free Shipping");
256
+ $method->setMethodTitle('Free Shipping Method');
257
+ $method->setPrice($price);
258
+ $method->setCost($price);
259
+ $result = ($method);
260
+ return $result;
261
+ }
262
+ else if($rule['action_rate_type'] == 1)
263
+ {
264
+ $lable = $rule['action_static_label'];
265
+ $price = $rule['action_static_value'];
266
+ $method = Mage::getModel('shipping/rate_result_method');
267
+ $method->setCarrier('candf_customshipping');
268
+ $method->setCarrierTitle('CandF Shipping');
269
+ $method->setMethod("Flat Rate Shipping");
270
+ $method->setMethodTitle($lable);
271
+ $method->setPrice($price);
272
+ $method->setCost($price);
273
+ $result = ($method);
274
+ return $result;
275
+ }
276
+ else if($rule['action_rate_type'] == 3)
277
+ {
278
+ $CarrierIds = $rule['action_dynamic_carriers'];
279
+ $arrayCarrierIds = explode(",", $CarrierIds);
280
+ $DynamicActive = true;
281
+ }
282
+ }
283
+ }
284
+ }
285
+ // END RULE ENGINE
286
+
287
+ $apikey = $candconfig['general']['api'];
288
+ $password = $candconfig['general']['password'];
289
+ if ($candconfig['general']['active'] == 1) {
290
+ if ($candconfig['countries']['specificcountry'] == 'AU') {
291
+ $cart = Mage::getSingleton('checkout/cart')->getQuote();
292
+ $shippingaddress = $cart->getShippingAddress();
293
+ if ($shippingaddress['country_id'] == 'AU') {
294
+ $k = 0;
295
+ $k2 = 0;
296
+
297
+ $rateRequest = new RateRequest();
298
+
299
+ $pickupaddress = new PickUpAddress();
300
+ $pickupaddress->CountryCode = 'AUS';
301
+ $pickupaddress->PostCode = $candconfig['warehouse']['warehouse_code'];
302
+ $pickupaddress->Suburb = $candconfig['warehouse']['warehouse_suburb'];
303
+ $rateRequest->PickUpAddress = $pickupaddress;
304
+
305
+ $deliveryaddress = new DeliveryAddress();
306
+ $deliveryaddress->CountryCode = 'AUS';
307
+ $deliveryaddress->PostCode = $shippingaddress['postcode'];
308
+ $deliveryaddress->Suburb = $shippingaddress['city'];
309
+ $rateRequest->DeliveryAddress = $deliveryaddress;
310
+
311
+ $key = new APIKey();
312
+ $key->AuthKey = $apikey;
313
+ $key->Password = $password;
314
+
315
+ // $configsetting = $candconfig = Mage::helper('customshipping/customshipping')->loadConfig();
316
+
317
+ $cart = Mage::getModel('checkout/cart')->getQuote();
318
+
319
+ foreach ($cart->getAllItems() as $pitem) {
320
+ if ($pitem->getProductType != 'virtual') {
321
+ $productid = $pitem->getProductId();
322
+ $qty = $pitem->getQty();
323
+ $_product = Mage::getSingleton('catalog/product')->load($productid);
324
+ $length = $_product->getResource()->getAttribute('candf_length')->getFrontend()->getValue($_product);
325
+ $height = $_product->getResource()->getAttribute('candf_height')->getFrontend()->getValue($_product);
326
+ $width = $_product->getResource()->getAttribute('candf_width')->getFrontend()->getValue($_product);
327
+ $weight = $_product->getResource()->getAttribute('weight')->getFrontend()->getValue($_product);
328
+
329
+ $proLenght = $length;
330
+ $proHeight =$height;
331
+ $proWidth = $width;
332
+ $proWeight = $weight;
333
+ $proQty = $qty;
334
+
335
+
336
+ $meterRate = $_product->getResource()->getAttribute('candf_meter_rate')->getFrontend()->getValue($_product);
337
+ $packagedLength = $_product->getResource()->getAttribute('candf_packaged_length')->getFrontend()->getValue($_product);
338
+
339
+ if(($length=='') or ($length =="0" )) {
340
+ $length = $candconfig['packaging']['length'];
341
+ }
342
+ if(($height == '') or ($height == "0")) {
343
+ $height = $candconfig['packaging']['height'];
344
+ }
345
+ if(($width == '') or ($width == "0")) {
346
+ $width = $candconfig['packaging']['width'];
347
+ }
348
+
349
+ if($meterRate && (bool)$packagedLength) {
350
+ $floatLength = floatval($packagedLength);
351
+ $packageWeight = ($floatLength*$weight)/$length;
352
+ $how_many_parts_make_up_one_product = $floatLength /floatval($length);
353
+ $length = $floatLength;
354
+ $packageQty = $qty/$how_many_parts_make_up_one_product;
355
+ $qty = floor($packageQty);
356
+ $decimalVal = $packageQty - $qty;
357
+
358
+ //calculate simple product
359
+
360
+ $additionalQty = round(($packagedLength * $decimalVal)/$proLenght);
361
+ $weight = $packageWeight;
362
+ if($packageQty < 1) {
363
+ $length =$proLenght;
364
+ $height = $proHeight;
365
+ $width = $proWidth;
366
+ $weight = $proWeight;
367
+ $qty = $proQty;
368
+
369
+ }
370
+ }
371
+
372
+
373
+ for ($c = 1; $c <= $qty; $c++) {
374
+ $parcel[$k] = new Parcel();
375
+ $parcel[$k]->Height = $height;
376
+ $parcel[$k]->Length = $length;
377
+ $parcel[$k]->Width = $width;
378
+ $parcel[$k]->Weight = $weight;
379
+ $k++;
380
+ }
381
+
382
+ if(!empty($additionalQty)) {
383
+ for ($c = 1; $c <= $additionalQty; $c++) {
384
+ $aditional_parcel[$k2] = new Parcel();
385
+ $aditional_parcel[$k2]->Height = $proHeight;
386
+ $aditional_parcel[$k2]->Length = $proLenght;
387
+ $aditional_parcel[$k2]->Width = $proWidth;
388
+ $aditional_parcel[$k2]->Weight = $proWeight;
389
+ $k2++;
390
+ }
391
+ }
392
+ }
393
+
394
+ }
395
+
396
+
397
+ if(!empty($aditional_parcel)) {
398
+ foreach($aditional_parcel as $aditional_parcelArr) {
399
+ array_push($parcel,$aditional_parcelArr);
400
+ }
401
+
402
+ }
403
+
404
+ if (count($parcel) != 0)
405
+ $k = count($parcel);
406
+ $rateRequest->Parcel = $parcel;
407
+ $auth = array('AuthKey' => $candconfig['general']['api'], 'Password' => $candconfig['general']['password']);
408
+
409
+ if($candconfig['general']['sandbox']=='1') {
410
+ $centinelClient = new SoapClient('https://live.couriersandfreight.com.au/CandFAPITest/Service.svc?wsdl', array("soap_version" => SOAP_1_1, "trace" => 1, 'exceptions' => true));
411
+ $header = new SoapHeader("https://live.couriersandfreight.com.au/CandFAPITest/Service.svc?wsdl", "APIKey", $auth, false);
412
+
413
+
414
+ }else {
415
+ $centinelClient = new SoapClient('https://live.couriersandfreight.com.au/CandFAPILive/Service.svc?wsdl', array("soap_version" => SOAP_1_1, "trace" => 1, 'exceptions' => true));
416
+ $header = new SoapHeader("https://live.couriersandfreight.com.au/CandFAPILive/Service.svc?wsdl", "APIKey", $auth, false);
417
+ }
418
+
419
+ $centinelClient->__setSoapHeaders(array($header));
420
+ $ratePara = new CFParam_Rate();
421
+ $ratePara->key = $key;
422
+ $ratePara->rateRequest = $rateRequest;
423
+
424
+ $Carriers = new Test1();
425
+ $Carriers->customerId = $candconfig['general']['api'];
426
+ $Carriers->serviceTypeName = 'All';
427
+
428
+ $curi = $centinelClient->GetCarrierByAPIkey($Carriers);
429
+ $webservice = $centinelClient->Rate($ratePara);
430
+
431
+ $methodcount = $candconfig['markup']['shippingmethod_count'];
432
+ if ($webservice->RateResult->Status != "FAIL") {
433
+ $result = Mage::getModel('shipping/rate_result');
434
+ $resultCount = count($webservice->RateResult->RateCollection->Rate);
435
+ if ($methodcount > $resultCount) {
436
+ $methodcount = $resultCount;
437
+ }
438
+ if(isset($DynamicActive) && $DynamicActive == true )
439
+ {
440
+ for ($i = 0; $i < $methodcount; $i++) {
441
+ $carrierId = $webservice->RateResult->RateCollection->Rate[$i]->CarrierId;
442
+ if(false !== $key = array_search($carrierId, $arrayCarrierIds))
443
+ {
444
+ $requestprice = $webservice->RateResult->RateCollection->Rate[$i]->CurrencyValue;
445
+ if ($candconfig['markup']['markup_type'] == 'rate') {
446
+ $markup = $candconfig['markup']['markup_price'];
447
+ } else if ($candconfig['markup']['markup_type'] == 'percentage') {
448
+ $markuppercent = $candconfig['markup']['markup_price'];
449
+ $markup = ($markuppercent / 100) * $requestprice;
450
+ }
451
+ if ($candconfig['handlingfee']['handlingfee_active'] == 1) {
452
+ if ($candconfig['handlingfee']['handlingfee_type'] == 'rate') {
453
+ $handlingFee = $candconfig['handlingfee']['handlingfee_price'];
454
+ } elseif ($candconfig['handlingfee']['handlingfee_type'] == 'percentage') {
455
+ $handlingFeePercent = $candconfig['handlingfee']['handlingfee_price'];
456
+ $handlingFee = ($handlingFeePercent / 100) * $requestprice;
457
+ }
458
+ } else {
459
+ $handlingFee = 0.00;
460
+ }
461
+
462
+ $servicename = $webservice->RateResult->RateCollection->Rate[$i]->ServiceName;
463
+ $carriertitle = $webservice->RateResult->RateCollection->Rate[$i]->CarrierName;
464
+ $cutoff = $webservice->RateResult->RateCollection->Rate[$i]->Cutoff;
465
+ $carrierid = $carriertitle . "_" . $servicename;
466
+ $carriertitle .= " ( " . $servicename . " )";
467
+ $price = $markup + $requestprice + $handlingFee;
468
+
469
+ $method = Mage::getModel('shipping/rate_result_method');
470
+
471
+
472
+
473
+ $method->setCarrier('candf_customshipping');
474
+ $method->setCarrierTitle('');
475
+ $method->setMethod($carrierid);
476
+ $method->setMethodTitle($carriertitle);
477
+ $method->setPrice($price);
478
+ $method->setCost($price);
479
+ $result->append($method);
480
+ }
481
+ }
482
+ }
483
+ else
484
+ {
485
+ for ($i = 0; $i < $methodcount; $i++) {
486
+ $requestprice = $webservice->RateResult->RateCollection->Rate[$i]->CurrencyValue;
487
+ if ($candconfig['markup']['markup_type'] == 'rate') {
488
+ $markup = $candconfig['markup']['markup_price'];
489
+ } else if ($candconfig['markup']['markup_type'] == 'percentage') {
490
+ $markuppercent = $candconfig['markup']['markup_price'];
491
+ $markup = ($markuppercent / 100) * $requestprice;
492
+ }
493
+ if ($candconfig['handlingfee']['handlingfee_active'] == 1) {
494
+ if ($candconfig['handlingfee']['handlingfee_type'] == 'rate') {
495
+ $handlingFee = $candconfig['handlingfee']['handlingfee_price'];
496
+ } elseif ($candconfig['handlingfee']['handlingfee_type'] == 'percentage') {
497
+ $handlingFeePercent = $candconfig['handlingfee']['handlingfee_price'];
498
+ $handlingFee = ($handlingFeePercent / 100) * $requestprice;
499
+ }
500
+ } else {
501
+ $handlingFee = 0.00;
502
+ }
503
+
504
+ $servicename = $webservice->RateResult->RateCollection->Rate[$i]->ServiceName;
505
+ $carriertitle = $webservice->RateResult->RateCollection->Rate[$i]->CarrierName;
506
+ $cutoff = $webservice->RateResult->RateCollection->Rate[$i]->Cutoff;
507
+ $carrierid = $carriertitle . "_" . $servicename;
508
+ $carriertitle .= " ( " . $servicename . " )";
509
+ $price = $markup + $requestprice + $handlingFee;
510
+
511
+ $method = Mage::getModel('shipping/rate_result_method');
512
+
513
+
514
+ $method->setCarrier('candf_customshipping');
515
+ $method->setCarrierTitle('');
516
+ $method->setMethod($carrierid);
517
+ $method->setMethodTitle($carriertitle);
518
+ $method->setPrice($price);
519
+ $method->setCost($price);
520
+ $result->append($method);
521
+ }
522
+ }
523
+ } else {
524
+ $error = Mage::getModel('shipping/rate_result_error');
525
+ $error->setCarrier('candf_customshipping');
526
+ $error->setCarrierTitle('CandF Shipping');
527
+ $error->setErrorMessage('Shipping method not available');
528
+ $result = $error;
529
+ }
530
+ return $result;
531
+ }
532
+ }
533
+ }
534
+
535
+ }
536
+
537
+ }
538
+
539
+ }
app/code/community/Candf/Customshipping/Model/Mysql4/Additionalservices.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Additionalservices extends Mage_Core_Model_Mysql4_Abstract
4
+ {
5
+ public function _construct()
6
+ {
7
+ $this->_init('customshipping/additionalservices', 'id');
8
+ }
9
+ }
10
+ ?>
app/code/community/Candf/Customshipping/Model/Mysql4/Additionalservices/Collection.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Additionalservices_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
4
+ {
5
+
6
+ public function _construct()
7
+ {
8
+ parent::_construct();
9
+ $this->_init('customshipping/additionalservices');
10
+ }
11
+
12
+ }
app/code/community/Candf/Customshipping/Model/Mysql4/Booking.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Booking extends Mage_Core_Model_Mysql4_Abstract
4
+ {
5
+
6
+ public function _construct()
7
+ {
8
+ $this->_init('customshipping/booking', 'id');
9
+ }
10
+
11
+ }
app/code/community/Candf/Customshipping/Model/Mysql4/Booking/Collection.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Booking_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
4
+ {
5
+
6
+ public function _construct()
7
+ {
8
+ parent::_construct();
9
+ $this->_init('customshipping/booking');
10
+ }
11
+
12
+ }
app/code/community/Candf/Customshipping/Model/Mysql4/Boxes.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Boxes extends Mage_Core_Model_Mysql4_Abstract
4
+ {
5
+ public function _construct()
6
+ {
7
+ $this->_init('customshipping/boxes', 'boxes_id');
8
+ }
9
+ }
10
+ ?>
app/code/community/Candf/Customshipping/Model/Mysql4/Boxes/Collection.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Boxes_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
4
+ {
5
+ public function _construct()
6
+ {
7
+ $this->_init('customshipping/boxes');
8
+ }
9
+ }
10
+ ?>
app/code/community/Candf/Customshipping/Model/Mysql4/Order.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Order extends Mage_Core_Model_Mysql4_Abstract
4
+ {
5
+
6
+ public function _construct()
7
+ {
8
+ $this->_init('customshipping/order', 'id');
9
+ }
10
+
11
+ }
app/code/community/Candf/Customshipping/Model/Mysql4/Order/Collection.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Order_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
4
+ {
5
+
6
+ public function _construct()
7
+ {
8
+ parent::_construct();
9
+ $this->_init('customshipping/order');
10
+ }
11
+
12
+ }
app/code/community/Candf/Customshipping/Model/Mysql4/Postcode.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Postcode extends Mage_Core_Model_Mysql4_Abstract
4
+ {
5
+ public function _construct() {
6
+ $this->_init('customshipping/postcode', 'entity_id');
7
+ }
8
+ }
app/code/community/Candf/Customshipping/Model/Mysql4/Postcode/Collection.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Postcode_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
4
+ {
5
+ public function _construct() {
6
+ parent::_construct();
7
+ $this->_init('customshipping/postcode');
8
+ }
9
+ }
app/code/community/Candf/Customshipping/Model/Mysql4/Rule.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Rule extends Mage_Core_Model_Mysql4_Abstract
4
+ {
5
+ public function _construct() {
6
+ $this->_init('customshipping/rule','id');
7
+ }
8
+ }
9
+
app/code/community/Candf/Customshipping/Model/Mysql4/Rule/Collection.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Rule_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
4
+ {
5
+
6
+ public function _construct()
7
+ {
8
+ parent::_construct();
9
+ $this->_init('customshipping/rule');
10
+ }
11
+
12
+ }
13
+
14
+
app/code/community/Candf/Customshipping/Model/Mysql4/Shipment.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Shipment extends Mage_Core_Model_Mysql4_Abstract
4
+ {
5
+
6
+ public function _construct()
7
+ {
8
+ $this->_init('customshipping/shipment', 'id');
9
+ }
10
+
11
+ }
app/code/community/Candf/Customshipping/Model/Mysql4/Shipment/Collection.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Shipment_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
4
+ {
5
+ public function _construct() {
6
+ parent::_construct();
7
+ $this->_init('customshipping/shipment');
8
+ }
9
+ }
app/code/community/Candf/Customshipping/Model/Mysql4/Shipmentadditional.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Shipmentadditional extends Mage_Core_Model_Mysql4_Abstract
4
+ {
5
+ public function _construct()
6
+ {
7
+ $this->_init('customshipping/shipmentadditional', 'id');
8
+ }
9
+ }
10
+ ?>
app/code/community/Candf/Customshipping/Model/Mysql4/Shipmentadditional/Collection.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Shipmentadditional_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
4
+ {
5
+
6
+ public function _construct()
7
+ {
8
+ parent::_construct();
9
+ $this->_init('customshipping/shipmentadditional');
10
+ }
11
+
12
+ }
app/code/community/Candf/Customshipping/Model/Mysql4/Shipmenthistory.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Shipmenthistory extends Mage_Core_Model_Mysql4_Abstract
4
+ {
5
+
6
+ public function _construct()
7
+ {
8
+ $this->_init('customshipping/shipmenthistory', 'id');
9
+ }
10
+
11
+ }
app/code/community/Candf/Customshipping/Model/Mysql4/Shipmenthistory/Collection.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Shipmenthistory_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
4
+ {
5
+
6
+ public function _construct()
7
+ {
8
+ parent::_construct();
9
+ $this->_init('customshipping/shipmenthistory');
10
+ }
11
+
12
+ }
app/code/community/Candf/Customshipping/Model/Mysql4/Warehouse.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Warehouse extends Mage_Core_Model_Mysql4_Abstract
4
+ {
5
+ public function _construct()
6
+ {
7
+ $this->_init('customshipping/warehouse', 'warehouse_id');
8
+ }
9
+ }
10
+ ?>
app/code/community/Candf/Customshipping/Model/Mysql4/Warehouse/Collection.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Warehouse_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
4
+ {
5
+ public function _construct()
6
+ {
7
+ $this->_init('customshipping/warehouse');
8
+ }
9
+ }
10
+ ?>
app/code/community/Candf/Customshipping/Model/Mysql4/Zone.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Zone extends Mage_Core_Model_Mysql4_Abstract
4
+ {
5
+ public function _construct()
6
+ {
7
+ $this->_init('customshipping/zone', 'zone_id');
8
+ }
9
+ }
10
+ ?>
11
+
12
+
app/code/community/Candf/Customshipping/Model/Mysql4/Zone/Collection.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Mysql4_Zone_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
4
+ {
5
+ public function _construct() {
6
+ parent::_construct();
7
+ $this->_init('customshipping/zone');
8
+ }
9
+ }
app/code/community/Candf/Customshipping/Model/Observer.php ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Observer
4
+ {
5
+ public function createCustomshippingShipment(Varien_Event_Observer $observer)
6
+ {
7
+ $order = $observer->getOrder();
8
+ $candconfig = Mage::getStoreConfig('candf');
9
+ if($candconfig['general']['active'] == 1)
10
+ {
11
+ if($candconfig['countries']['specificcountry'] == 'AU')
12
+ {
13
+ if($order->getShippingAddress()->getCountryId() == 'AU')
14
+ {
15
+ $customshipping_shipment = Mage::getModel('customshipping/shipment');
16
+ $email = $order->getShippingAddress()->getEmail();
17
+ if(!$email)
18
+ {
19
+ $email = $order->getCustomerEmail();
20
+ }
21
+ if($order->getShippingMethod() != '')
22
+ {
23
+ $getsaved_shippingmethod = $order->getShippingMethod();
24
+ $getshippingmethodArray = explode('candf_customshipping_',$getsaved_shippingmethod);
25
+ $getshippingmethod = $getshippingmethodArray['1'];
26
+
27
+ } else {
28
+ $getsaved_shippingmethod = $order->getshipping_method();
29
+ $getshippingmethodArray = explode('candf_customshipping_',$getsaved_shippingmethod);
30
+ $getshippingmethod = $getshippingmethodArray['1'];
31
+ }
32
+ $customshipping = Mage::getModel('customshipping/shipment');
33
+ $customshipping->setOrderId($order->getId())
34
+ ->setStatus(Candf_Customshipping_Model_System_Config_Backend_Shipment_Status::PENDING)
35
+ ->setDestinationContactName($order->getShippingAddress()->getName())
36
+ ->setDestinationCompanyName($order->getShippingAddress()->getCompany())
37
+ ->setDestinationStreet($order->getShippingAddress()->getStreetFull())
38
+ ->setDestinationRegion($order->getShippingAddress()->getRegion())
39
+ ->setDestinationPhone($order->getShippingAddress()->getTelephone())
40
+ ->setDestinationEmail($email)
41
+ ->setDestinationCountry($order->getShippingAddress()->getCountryId())
42
+ ->setDestinationPostcode($order->getShippingAddress()->getPostcode())
43
+ ->setDestinationCity($order->getShippingAddress()->getCity())
44
+ ->setCustomerSelectedQuoteDescription($getshippingmethod)
45
+ ->setCustomerSelectedOptions($getshippingmethod)
46
+ ->setCarrierName($getshippingmethod)
47
+ ->save();
48
+
49
+ $customshippingorder = Mage::getModel('customshipping/order');
50
+ foreach($order->getAllItems() as $pitem)
51
+ {
52
+ if($pitem->getProductType != 'virtual')
53
+ {
54
+ $productid = $pitem->getProductId();
55
+ $_product= Mage::getSingleton('catalog/product')->load($productid);
56
+ $length = (int)$_product->getResource()->getAttribute('candf_length')->getFrontend()->getValue($_product);
57
+ $height = (int)$_product->getResource()->getAttribute('candf_height')->getFrontend()->getValue($_product);
58
+ $width = (int)$_product->getResource()->getAttribute('candf_width')->getFrontend()->getValue($_product);
59
+ $weight = (int)$_product->getResource()->getAttribute('weight')->getFrontend()->getValue($_product);
60
+ $customshippingorder->setId()
61
+ ->setOrderId($order->getId())
62
+ ->setProductName($_product->getName())
63
+ ->setProductSku($_product->getSku())
64
+ ->setQty($pitem->getQtyOrdered())
65
+ ->setWeight($weight)
66
+ ->setHeight($height)
67
+ ->setLength($length)
68
+ ->setWidth($width)
69
+ ->save();
70
+ }
71
+ }
72
+ }
73
+ $getAdditionalServiceIds = Mage::getSingleton('core/session')->getAdditionalServiceId();
74
+ if(!empty($getAdditionalServiceIds)) {
75
+
76
+ foreach($getAdditionalServiceIds as $getAdditionalServiceId) {
77
+
78
+ $customshipping_additional_service = Mage::getModel('customshipping/shipmentadditional');
79
+ $customshipping_additional_service->setOrderId($order->getId())
80
+ ->setAdditionalShipmentId($getAdditionalServiceId)
81
+ ->save();
82
+ }
83
+ }
84
+ }
85
+ }
86
+ }
87
+
88
+ public function salesOrderShipmentSaveBefore($observer)
89
+ {
90
+ $additional_services_id = Mage::app()->getRequest()->getParams('additional-services');
91
+
92
+ if(!empty($additional_services_id)) {
93
+
94
+ $request_param = Mage::app()->getRequest()->getParams();
95
+ Mage::getSingleton('core/session')->setAdditionalServiceId($request_param['additional-services']);
96
+ }
97
+ }
98
+
99
+ }
app/code/community/Candf/Customshipping/Model/Order.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Candf_Customshipping_Model_Order extends Mage_Core_Model_Abstract
3
+ {
4
+ public function _construct()
5
+ {
6
+ parent::_construct();
7
+ $this->_init('customshipping/order');
8
+ }
9
+ }
app/code/community/Candf/Customshipping/Model/Postcode.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Postcode extends Mage_Core_Model_Abstract
4
+ {
5
+ public function _construct() {
6
+ parent::_construct();
7
+ $this->_init('customshipping/postcode');
8
+ }
9
+ }
app/code/community/Candf/Customshipping/Model/Quote/Address/Total/Shipping.php ADDED
@@ -0,0 +1,171 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Quote_Address_Total_Shipping extends Mage_Sales_Model_Quote_Address_Total_Shipping
4
+ {
5
+ public function collect(Mage_Sales_Model_Quote_Address $address)
6
+ {
7
+ parent::collect($address);
8
+
9
+ $oldWeight = $address->getWeight();
10
+ $address->setWeight(0);
11
+ $address->setFreeMethodWeight(0);
12
+ $this->_setAmount(0)
13
+ ->_setBaseAmount(0);
14
+
15
+ $items = $this->_getAddressItems($address);
16
+ if (!count($items)) {
17
+ return $this;
18
+ }
19
+
20
+ $method = $address->getShippingMethod();
21
+ $freeAddress= $address->getFreeShipping();
22
+
23
+ $addressWeight = $address->getWeight();
24
+ $freeMethodWeight = $address->getFreeMethodWeight();
25
+
26
+ $addressQty = 0;
27
+
28
+ foreach ($items as $item) {
29
+ /**
30
+ * Skip if this item is virtual
31
+ */
32
+ if ($item->getProduct()->isVirtual()) {
33
+ continue;
34
+ }
35
+
36
+ /**
37
+ * Children weight we calculate for parent
38
+ */
39
+ if ($item->getParentItem()) {
40
+ continue;
41
+ }
42
+
43
+ if ($item->getHasChildren() && $item->isShipSeparately()) {
44
+ foreach ($item->getChildren() as $child) {
45
+ if ($child->getProduct()->isVirtual()) {
46
+ continue;
47
+ }
48
+ $addressQty += $child->getTotalQty();
49
+
50
+ if (!$item->getProduct()->getWeightType()) {
51
+ $itemWeight = $child->getWeight();
52
+ $itemQty = $child->getTotalQty();
53
+ $rowWeight = $itemWeight*$itemQty;
54
+ $addressWeight += $rowWeight;
55
+ if ($freeAddress || $child->getFreeShipping()===true) {
56
+ $rowWeight = 0;
57
+ } elseif (is_numeric($child->getFreeShipping())) {
58
+ $freeQty = $child->getFreeShipping();
59
+ if ($itemQty>$freeQty) {
60
+ $rowWeight = $itemWeight*($itemQty-$freeQty);
61
+ }
62
+ else {
63
+ $rowWeight = 0;
64
+ }
65
+ }
66
+ $freeMethodWeight += $rowWeight;
67
+ $item->setRowWeight($rowWeight);
68
+ }
69
+ }
70
+ if ($item->getProduct()->getWeightType()) {
71
+ $itemWeight = $item->getWeight();
72
+ $rowWeight = $itemWeight*$item->getQty();
73
+ $addressWeight+= $rowWeight;
74
+ if ($freeAddress || $item->getFreeShipping()===true) {
75
+ $rowWeight = 0;
76
+ } elseif (is_numeric($item->getFreeShipping())) {
77
+ $freeQty = $item->getFreeShipping();
78
+ if ($item->getQty()>$freeQty) {
79
+ $rowWeight = $itemWeight*($item->getQty()-$freeQty);
80
+ }
81
+ else {
82
+ $rowWeight = 0;
83
+ }
84
+ }
85
+ $freeMethodWeight+= $rowWeight;
86
+ $item->setRowWeight($rowWeight);
87
+ }
88
+ }
89
+ else {
90
+ if (!$item->getProduct()->isVirtual()) {
91
+ $addressQty += $item->getQty();
92
+ }
93
+ $itemWeight = $item->getWeight();
94
+ $rowWeight = $itemWeight*$item->getQty();
95
+ $addressWeight+= $rowWeight;
96
+ if ($freeAddress || $item->getFreeShipping()===true) {
97
+ $rowWeight = 0;
98
+ } elseif (is_numeric($item->getFreeShipping())) {
99
+ $freeQty = $item->getFreeShipping();
100
+ if ($item->getQty()>$freeQty) {
101
+ $rowWeight = $itemWeight*($item->getQty()-$freeQty);
102
+ }
103
+ else {
104
+ $rowWeight = 0;
105
+ }
106
+ }
107
+ $freeMethodWeight+= $rowWeight;
108
+ $item->setRowWeight($rowWeight);
109
+ }
110
+ }
111
+
112
+ if (isset($addressQty)) {
113
+ $address->setItemQty($addressQty);
114
+ }
115
+
116
+ $address->setWeight($addressWeight);
117
+ $address->setFreeMethodWeight($freeMethodWeight);
118
+
119
+ $address->collectShippingRates();
120
+
121
+ $this->_setAmount(0)
122
+ ->_setBaseAmount(0);
123
+
124
+ $method = $address->getShippingMethod();
125
+
126
+ if ($method) {
127
+ foreach ($address->getAllShippingRates() as $rate) {
128
+ if ($rate->getCode()==$method) {
129
+ $getParam = Mage::app()->getRequest()->getParams();
130
+
131
+ $checkCartPage = Mage::getURL('checkout/cart');
132
+ $getCurrentUrl = Mage::helper('core/url')->getCurrentUrl();
133
+ if($getCurrentUrl != $checkCartPage) {
134
+
135
+ $additional_services = $getParam['additional-services'];
136
+ $collection = Mage::getModel('customshipping/additionalservices')->getCollection();
137
+ $getAdditionalServiceData= $collection->addFieldToFilter('id', array('in' =>array('in' => array($additional_services))))->getData();
138
+
139
+ $additionalservice_charges = 0;
140
+ foreach($getAdditionalServiceData as $getAdditionalServices) {
141
+ $additionalservice_charges+= $getAdditionalServices['Carrier_Basic_Charge'];
142
+ }
143
+
144
+
145
+ $amountPrice = $address->getQuote()->getStore()->convertPrice($rate->getPrice(), false);
146
+ if(!empty($additionalservice_charges)) {
147
+ $amountPrice = $amountPrice + $additionalservice_charges;
148
+ Mage::getSingleton('core/session')->setAdditionalCharge($additionalservice_charges);
149
+
150
+ }elseif(Mage::getSingleton('core/session')->getAdditionalCharge()) {
151
+ $amountPrice = $amountPrice + Mage::getSingleton('core/session')->getAdditionalCharge();
152
+ }else{
153
+ $amountPrice = $address->getQuote()->getStore()->convertPrice($rate->getPrice(), false);
154
+ }
155
+ }else{
156
+ $amountPrice = $address->getQuote()->getStore()->convertPrice($rate->getPrice(), false);
157
+ }
158
+
159
+
160
+ $this->_setAmount($amountPrice);
161
+ $this->_setBaseAmount($rate->getPrice());
162
+ $shippingDescription = $rate->getCarrierTitle() . ' - ' . $rate->getMethodTitle();
163
+ $address->setShippingDescription(trim($shippingDescription, ' -'));
164
+ break;
165
+ }
166
+ }
167
+ }
168
+
169
+ return $this;
170
+ }
171
+ }
app/code/community/Candf/Customshipping/Model/Rule.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Rule extends Mage_Core_Model_Abstract
4
+ {
5
+ public function _construct() {
6
+ parent::_construct();
7
+ $this->_init('customshipping/rule');
8
+ }
9
+ }
app/code/community/Candf/Customshipping/Model/Shipment.php ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class AccountValidationRequest{
3
+ public $CustomerId;
4
+ public $ShipmentCost;
5
+ }
6
+
7
+
8
+ class Candf_Customshipping_Model_Shipment extends Mage_Core_Model_Abstract
9
+ {
10
+ public function _construct() {
11
+ parent::_construct();
12
+ $this->_init('customshipping/shipment');
13
+ }
14
+
15
+ /**
16
+ * Gets the shipping amount the customer paid on this order.
17
+ */
18
+ public function getShippingPaid()
19
+ {
20
+ if ($this->getOrder()) {
21
+ return $this->getOrder()->getShippingAmount();
22
+ }
23
+ return null;
24
+ }
25
+
26
+ function creditLimitExceeded($cost){
27
+ $bVal = false;
28
+
29
+ $candconfig = Mage::getStoreConfig('candf');
30
+ $apikey = $candconfig['general']['api'];
31
+ $password = $candconfig['general']['password'];
32
+
33
+ $auth = array('AuthKey'=>$apikey,'Password'=>$password);
34
+
35
+
36
+
37
+ if($candconfig['general']['sandbox']=='1') {
38
+ $centinelClient = new SoapClient('https://live.couriersandfreight.com.au/CandFAPITest/Service.svc?wsdl',array("soap_version" => SOAP_1_1,"trace"=>1,'exceptions'=>true));
39
+ $header = new SoapHeader("https://live.couriersandfreight.com.au/CandFAPITest/Service.svc?wsdl", "APIKey", $auth,false);
40
+ }else {
41
+ $centinelClient = new SoapClient('https://live.couriersandfreight.com.au/CandFAPILive/Service.svc?wsdl',array("soap_version" => SOAP_1_1,"trace"=>1,'exceptions'=>true));
42
+ $header = new SoapHeader("https://live.couriersandfreight.com.au/CandFAPILive/Service.svc?wsdl", "APIKey", $auth,false);
43
+ }
44
+
45
+
46
+ $centinelClient->__setSoapHeaders(array($header));
47
+
48
+ $av = new AccountValidationRequest();
49
+
50
+ $av->CustomerId =$apikey;
51
+ $av->ShipmentCost =$cost;
52
+
53
+ $webservice = $centinelClient->AccountValidation(array('validationRequst' => $av));
54
+
55
+ if($webservice->AccountValidationResult == ''){
56
+ $bVal = true;
57
+ }
58
+
59
+ return $bVal;
60
+
61
+ }
62
+
63
+
64
+ }
app/code/community/Candf/Customshipping/Model/Shipmentadditional.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Shipmentadditional extends Mage_Core_Model_Abstract
4
+ {
5
+ public function _construct() {
6
+ parent::_construct();
7
+ $this->_init('customshipping/shipmentadditional');
8
+ }
9
+ }
app/code/community/Candf/Customshipping/Model/Shipmenthistory.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Candf_Customshipping_Model_Shipmenthistory extends Mage_Core_Model_Abstract
3
+ {
4
+ public function _construct()
5
+ {
6
+ parent::_construct();
7
+ $this->_init('customshipping/shipmenthistory');
8
+ }
9
+ }
app/code/community/Candf/Customshipping/Model/Shipping-2015-08-25.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class MagePsycho_Shipmentfilter_Model_Shipping extends Mage_Shipping_Model_Shipping
4
+ {
5
+ public function collectCarrierRates($carrierCode, $request) {
6
+ if (!$this->_checkCarrierAvailability($carrierCode, $request)) {
7
+ return $this;
8
+ }
9
+ return parent::collectCarrierRates($carrierCode, $request);
10
+ }
11
+
12
+ protected function _checkCarrierAvailability($carrierCode, $request = null){
13
+ $isLoggedIn = Mage::getSingleton('customer/session')->isLoggedIn();
14
+ if(!$isLoggedIn){
15
+ if($carrierCode == 'flatrate'){ #Hide Flat Rate for non logged in customers
16
+ return false;
17
+ }
18
+ }
19
+ return true;
20
+ }
21
+ }
app/code/community/Candf/Customshipping/Model/System/Config/Backend.php ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ abstract class Candf_Customshipping_Model_System_Config_Backend
4
+ {
5
+
6
+ /**
7
+ * The array of options in the configuration item.
8
+ *
9
+ * This array's keys are the values used in the database etc. and the
10
+ * values of this array are used as labels on the frontend.
11
+ *
12
+ * @var array
13
+ */
14
+ protected $_options;
15
+
16
+ public function __construct()
17
+ {
18
+ $this->_setupOptions();
19
+ }
20
+
21
+
22
+ protected abstract function _setupOptions();
23
+
24
+ /**
25
+ * Gets all the options in the key => value type array.
26
+ *
27
+ * @return array
28
+ */
29
+ public function getOptions($please_select = false)
30
+ {
31
+ $options = $this->_options;
32
+ if ($please_select) {
33
+ $options = array(null => '--Please Select--') + $options;
34
+ }
35
+ return $options;
36
+ }
37
+
38
+ /**
39
+ * Converts the options into a format suitable for use in the admin area.
40
+ *
41
+ * @return array
42
+ */
43
+ public function toOptionArray()
44
+ {
45
+ return $this->_toOptionArray($this->_options);
46
+ }
47
+
48
+ protected function _toOptionArray($input)
49
+ {
50
+ $array = array();
51
+
52
+ foreach ($input as $key => $value) {
53
+ $array[] = array(
54
+ 'value' => $key,
55
+ 'label' => $value,
56
+ );
57
+ }
58
+
59
+ return $array;
60
+ }
61
+
62
+ /**
63
+ * Looks up an option by key and gets the label.
64
+ *
65
+ * @param mixed $value
66
+ * @return mixed
67
+ */
68
+ public function getOptionLabel($value)
69
+ {
70
+ if (array_key_exists($value, $this->_options)) {
71
+ return $this->_options[$value];
72
+ }
73
+ return null;
74
+ }
75
+
76
+ }
app/code/community/Candf/Customshipping/Model/System/Config/Backend/Additionalservices/Carrierslist.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_System_Config_Backend_Additionalservices_Carrierslist {
4
+
5
+ public function toOptionArray() {
6
+ return $this->_options = Mage::getSingleton('customshipping/carrier_dynamic')->getCarrierList(true);
7
+ }
8
+
9
+ }
app/code/community/Candf/Customshipping/Model/System/Config/Backend/Extradelivery/Type.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_System_Config_Backend_Extradelivery_Type {
4
+
5
+ protected $_options;
6
+
7
+ const TAILGATE = 'Tailgate lifter required';
8
+ const DRIVER_TO_HAND_UNLOAD = 'Can you assist the driver to hand unload?';
9
+ const CONTAINER = 'Container swing lifter required';
10
+ const FORKLIFT = 'Forklift already on-site';
11
+ const ORDER_FROM_A_TRANSPORT = 'Will you be able to collect this order from a transport,if required?';
12
+ const LOADING_DOCK = 'Loading dock on-site';
13
+
14
+ public function toOptionArray() {
15
+ return $this->_options = array(
16
+ self::TAILGATE => 'Tailgate lifter required',
17
+ self::DRIVER_TO_HAND_UNLOAD => 'Can you assist the driver to hand unload?',
18
+ self::CONTAINER => 'Container swing lifter required',
19
+ self::FORKLIFT => 'Forklift already on-site',
20
+ self::ORDER_FROM_A_TRANSPORT => 'Will you be able to collect this order from a transport,if required?',
21
+ self::LOADING_DOCK => 'Loading dock on-site',
22
+ );
23
+
24
+ }
25
+ }
app/code/community/Candf/Customshipping/Model/System/Config/Backend/Handlingfee/Type.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_System_Config_Backend_Handlingfee_Type {
4
+
5
+ protected $_options;
6
+
7
+ const ACCOUNT = 'rate';
8
+ const CREDIT = 'percentage';
9
+
10
+ public function toOptionArray()
11
+ {
12
+ return $this->_options = array(
13
+ self::ACCOUNT => 'rate',
14
+ self::CREDIT => 'percentage',
15
+ );
16
+ }
17
+ }
app/code/community/Candf/Customshipping/Model/System/Config/Backend/Insurance.php ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_System_Config_Backend_Insurance {
4
+
5
+ protected $_options;
6
+
7
+ const DISABLED = 'disabled';
8
+ const OPTIONAL = 'optional';
9
+ const MANDATORY = 'mandatory';
10
+
11
+ public function toOptionArray() {
12
+ return $this->_options = array(
13
+ self::DISABLED => 'Disabled',
14
+ self::OPTIONAL => 'Optional',
15
+ self::MANDATORY => 'Mandatory',
16
+ );
17
+ }
18
+
19
+ }
app/code/community/Candf/Customshipping/Model/System/Config/Backend/Label/Type.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_System_Config_Backend_label_Type {
4
+
5
+ protected $_options;
6
+
7
+ const PLAIN = 'Plain';
8
+ const THERMAL = 'Thermal';
9
+
10
+ public function toOptionArray() {
11
+ return $this->_options = array(
12
+ self::PLAIN => 'Plain',
13
+ self::THERMAL => 'Thermal'
14
+ );
15
+
16
+ }
17
+ }
app/code/community/Candf/Customshipping/Model/System/Config/Backend/Markup/Type.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_System_Config_Backend_Markup_Type {
4
+
5
+ protected $_options;
6
+
7
+ const ACCOUNT = 'rate';
8
+ const CREDIT = 'percentage';
9
+
10
+ public function toOptionArray() {
11
+ return $this->_options = array(
12
+ self::ACCOUNT => 'rate',
13
+ self::CREDIT => 'percentage'
14
+ );
15
+ }
16
+ }
17
+
app/code/community/Candf/Customshipping/Model/System/Config/Backend/Packaging/Packagetype.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_System_Config_Backend_Packaging_Packagetype {
4
+
5
+ protected $_options;
6
+
7
+ const BAG = 1;
8
+ const BOX = 2;
9
+ const CARTON = 3;
10
+ const CRATE = 4;
11
+ const DRUM = 5;
12
+ const ENVELOPE = 6;
13
+ const PALLET = 7;
14
+ const ROLL = 8;
15
+ const SATCHELS = 9;
16
+ const ANY = 11;
17
+ const POSTER_TUBE = 15;
18
+ const SKID = 16;
19
+ const PIECES = 17;
20
+ const PARCEL = 18;
21
+ const PACKAGE = 19;
22
+
23
+ public function toOptionArray() {
24
+ return $this->_options = array
25
+ (
26
+ self::BAG => 'Bag',
27
+ self::BOX => 'Box',
28
+ self::CARTON => 'Carton',
29
+ self::CRATE => 'Crate',
30
+ self::DRUM => 'Drum',
31
+ self::ENVELOPE => 'Envelop',
32
+ self::PALLET => 'Pallet',
33
+ self::ROLL => 'Roll',
34
+ self::SATCHELS => 'Satchels',
35
+ self::ANY => 'Any',
36
+ self::POSTER_TUBE => 'Poster Tube',
37
+ self::SKID => 'skid',
38
+ self::PIECES => 'Pieces',
39
+ self::PARCEL => 'Parcel',
40
+ self::PACKAGE => 'Package',
41
+ );
42
+ }
43
+
44
+ }
app/code/community/Candf/Customshipping/Model/System/Config/Backend/Payment/Type.php ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Candf_Customshipping_Model_System_Config_Backend_Payment_Type {
3
+
4
+ protected $_options;
5
+
6
+ const ACCOUNT = 'account';
7
+ const CREDIT = 'credit';
8
+
9
+ public function toOptionArray() {
10
+ return $this->_options = array(
11
+ self::ACCOUNT => 'account',
12
+ self::CREDIT => 'credit',
13
+ );
14
+ }
15
+ }
app/code/community/Candf/Customshipping/Model/System/Config/Backend/Rule/Action/Carrier.php ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_System_Config_Backend_Rule_Action_Carrier
4
+ {
5
+ protected $_options;
6
+
7
+ const PREFERABLE_CARRIERS = "All";
8
+ const EXPRESS_CARRIERS = "Express";
9
+ const SAME_DAY_CARRIERS = "Sameday";
10
+
11
+ public function toOptionArray()
12
+ {
13
+ return $this->_options = array(
14
+ self::PREFERABLE_CARRIERS => 'Preferable Carriers',
15
+ self::EXPRESS_CARRIERS => 'Express Carriers',
16
+ self::SAME_DAY_CARRIERS => 'Same Day Carriers'
17
+ );
18
+ }
19
+ }
app/code/community/Candf/Customshipping/Model/System/Config/Backend/Rule/Action/Filter.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_System_Config_Backend_Rule_Action_filter
4
+ {
5
+ protected $_options;
6
+
7
+ const DYNAMIC_ALL = 1;
8
+ const DYNAMIC_FASTEST = 2;
9
+ const DYNAMIC_CHEAPEST = 3;
10
+ const DYNAMIC_FASTEST_AND_CHEAPEST = 4;
11
+
12
+ public function toOptionArray()
13
+ {
14
+ return $this->_options = array(
15
+ self::DYNAMIC_ALL => 'All Quotes',
16
+ self::DYNAMIC_CHEAPEST => 'Cheapest only',
17
+ self::DYNAMIC_FASTEST => 'Fastest only',
18
+ self::DYNAMIC_FASTEST_AND_CHEAPEST => 'Cheapest and Fastest only',
19
+ );
20
+ }
21
+ }
app/code/community/Candf/Customshipping/Model/System/Config/Backend/Rule/Type.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_System_Config_Backend_Rule_Type
4
+ {
5
+ protected $_options;
6
+
7
+ const FLATRATE = '1';
8
+ const FREE = '2';
9
+ const DYNAMIC = '3';
10
+ const RESTRICT = '4';
11
+
12
+ public function toOptionArray() {
13
+ return $this->_options = array(
14
+ self::FLATRATE => Mage::helper('customshipping')->__('Flat Rate'),
15
+ self::FREE => Mage::helper('customshipping')->__('Free Shipping'),
16
+ self::DYNAMIC => Mage::helper('customshipping')->__('Dynamic'),
17
+ self::RESTRICT => Mage::helper('customshipping')->__('Restrict'),
18
+ );
19
+ }
20
+
21
+ }
app/code/community/Candf/Customshipping/Model/System/Config/Backend/Shipment/Status.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+
4
+ class Candf_Customshipping_Model_System_Config_Backend_Shipment_Status extends Candf_Customshipping_Model_System_Config_Backend
5
+ {
6
+
7
+ const PENDING = '0';
8
+ const BOOKED = '1';
9
+ const CANCELLED = '2';
10
+
11
+ protected function _setupOptions()
12
+ {
13
+ $this->_options = array(
14
+ self::PENDING => Mage::helper('customshipping')->__('Pending'),
15
+ self::BOOKED => Mage::helper('customshipping')->__('Booked'),
16
+ self::CANCELLED => Mage::helper('customshipping')->__('Cancelled'),
17
+ );
18
+ }
19
+
20
+ }
app/code/community/Candf/Customshipping/Model/System/Config/Backend/Unit/Measure.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_System_Config_Backend_Unit_Measure {
4
+
5
+
6
+ protected $_options;
7
+
8
+ const CENTIMETRES = 'Centimetres';
9
+ const METRES = 'Meters';
10
+ const INCHES = 'Inches';
11
+ const FEET = 'Feet';
12
+
13
+ public function toOptionArray() {
14
+ return $this->_options = array(
15
+ self::CENTIMETRES => 'Centimetres',
16
+ self::METRES => 'Meters',
17
+ self::INCHES => 'Inches',
18
+ self::FEET => 'Feet',
19
+ );
20
+ }
21
+ }
app/code/community/Candf/Customshipping/Model/System/Config/Backend/Unit/Weight.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_System_Config_Backend_Unit_Weight {
4
+
5
+ protected $_options;
6
+
7
+ const KILOGRAMS = 'Kilograms';
8
+ const GRAMS = 'Grams';
9
+ const OUNCES = 'Ounces';
10
+ const POUNDS = 'Pounds';
11
+
12
+ function toOptionArray() {
13
+
14
+ return $this->_options = array(
15
+ self::KILOGRAMS => 'Kilograms',
16
+ self::GRAMS => 'Grams',
17
+ self::OUNCES => 'Ounces',
18
+ self::POUNDS => 'Pounds'
19
+ );
20
+ }
21
+
22
+
23
+ }
app/code/community/Candf/Customshipping/Model/Warehouse.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Warehouse extends Mage_Core_Model_Abstract
4
+ {
5
+ public function _construct()
6
+ {
7
+ parent::_construct();
8
+ $this->_init('customshipping/warehouse');
9
+ }
10
+ }
11
+ ?>
app/code/community/Candf/Customshipping/Model/Zone.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Model_Zone extends Mage_Core_Model_Abstract
4
+ {
5
+ public function _construct() {
6
+ parent::_construct();
7
+ $this->_init('customshipping/zone');
8
+ }
9
+ }
app/code/community/Candf/Customshipping/controllers/Adminhtml/BoxesController.php ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Adminhtml_BoxesController extends Mage_Adminhtml_Controller_Action
4
+ {
5
+ protected function _initAction()
6
+ {
7
+ $this->loadLayout()
8
+ ->_setActiveMenu('boxes/items')
9
+ ->_addBreadcrumb(Mage::helper('adminhtml')->__('Boxes Manager'), Mage::helper('adminhtml')->__('Boxes Manager'));
10
+ return $this;
11
+ }
12
+
13
+ public function indexAction() {
14
+ $this->_initAction();
15
+ $this->_addContent($this->getLayout()->createBlock('customshipping/adminhtml_boxes'));
16
+ $this->renderLayout();
17
+ }
18
+
19
+ public function newAction() {
20
+ $this->_forward('edit');
21
+ }
22
+
23
+ public function editAction()
24
+ {
25
+ $boxesId = $this->getRequest()->getParam('id');
26
+ $boxesModel = Mage::getModel('customshipping/boxes')->load($boxesId);
27
+
28
+ if ($boxesModel->getId() || $boxesId == 0) {
29
+
30
+ Mage::register('boxes_data', $boxesModel);
31
+
32
+ $this->loadLayout();
33
+ $this->_setActiveMenu('customshipping/items');
34
+
35
+ $this->_addBreadcrumb(Mage::helper('adminhtml')->__('Boxes Manager'), Mage::helper('adminhtml')->__('Boxes Manager'));
36
+ $this->_addBreadcrumb(Mage::helper('adminhtml')->__('Boxes News'), Mage::helper('adminhtml')->__('Boxes News'));
37
+
38
+ $this->getLayout()->getBlock('head')->setCanLoadExtJs(true);
39
+
40
+ $this->_addContent($this->getLayout()->createBlock('customshipping/adminhtml_boxes_edit'))
41
+ ->_addLeft($this->getLayout()->createBlock('customshipping/adminhtml_boxes_edit_tabs'));
42
+
43
+ $this->renderLayout();
44
+ } else {
45
+ Mage::getSingleton('adminhtml/session')->addError(Mage::helper('customshipping')->__('Item does not exist'));
46
+ $this->_redirect('*/*/');
47
+ }
48
+ }
49
+
50
+ public function saveAction()
51
+ {
52
+
53
+
54
+ if ( $this->getRequest()->getPost() ) {
55
+ try {
56
+ $postData = $this->getRequest()->getPost();
57
+ $warehouseModel = Mage::getModel('customshipping/boxes');
58
+
59
+ $warehouseModel->setId($this->getRequest()->getParam('id'))
60
+ ->setName($postData['name'])
61
+ ->setIsActive($postData['is_active'])
62
+ ->setLength($postData['length'])
63
+ ->setWidth($postData['width'])
64
+ ->setHeight($postData['height'])
65
+ ->save();
66
+
67
+ Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('adminhtml')->__('Item was successfully saved'));
68
+ Mage::getSingleton('adminhtml/session')->setBoxesData(false);
69
+
70
+ $this->_redirect('*/*/');
71
+ return;
72
+ } catch (Exception $e) {
73
+ Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
74
+ Mage::getSingleton('adminhtml/session')->setBoxesData($this->getRequest()->getPost());
75
+ $this->_redirect('*/*/edit', array('id' => $this->getRequest()->getParam('id')));
76
+ return;
77
+ }
78
+ }
79
+ $this->_redirect('*/*/');
80
+ }
81
+
82
+
83
+ }
app/code/community/Candf/Customshipping/controllers/Adminhtml/CustomshippingbackendController.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Candf_Customshipping_Adminhtml_CustomshippingbackendController extends Mage_Adminhtml_Controller_Action
3
+ {
4
+ public function indexAction()
5
+ {
6
+ $this->loadLayout();
7
+ $this->_title($this->__("Backend Page Title"));
8
+ $this->renderLayout();
9
+ }
10
+ }
app/code/community/Candf/Customshipping/controllers/Adminhtml/RuleController.php ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Adminhtml_RuleController extends Mage_Adminhtml_Controller_Action {
4
+
5
+ const MODE_DEACTIVATE = 0;
6
+ const MODE_ACTIVATE = 1;
7
+ const MODE_DELETE = 2;
8
+
9
+
10
+ protected $_allowedModes = array(
11
+ self::MODE_DEACTIVATE => 'deactivated',
12
+ self::MODE_ACTIVATE => 'activated',
13
+ self::MODE_DELETE => 'deleted',
14
+ );
15
+
16
+
17
+ public function indexAction()
18
+ {
19
+ $this->loadLayout()
20
+ ->_setActiveMenu('rule/item')
21
+ ->_addBreadcrumb(Mage::helper('adminhtml')->__('Manage Rules'), Mage::helper('adminhtml')->__('Manage Rules'))
22
+ ->renderLayout();
23
+ }
24
+
25
+ public function newAction() {
26
+ $this->_forward('edit');
27
+ }
28
+
29
+ public function editAction() {
30
+ $ruleId = $this->getRequest()->getParam('id');
31
+ $RuleModel = Mage::getModel('customshipping/rule')->load($ruleId);
32
+
33
+ if ($RuleModel->getId() || $ruleId == 0) {
34
+
35
+ Mage::register('rule_data', $RuleModel);
36
+
37
+ $this->loadLayout();
38
+ $this->_setActiveMenu('customshipping/items');
39
+
40
+ $this->_addBreadcrumb(Mage::helper('adminhtml')->__('Rule Manager'), Mage::helper('adminhtml')->__('Rule Manager'));
41
+ $this->_addBreadcrumb(Mage::helper('adminhtml')->__('Rule News'), Mage::helper('adminhtml')->__('Rule News'));
42
+
43
+ $this->getLayout()->getBlock('head')->setCanLoadExtJs(true);
44
+
45
+ $this->_addContent($this->getLayout()->createBlock('customshipping/adminhtml_rule_edit'))
46
+ ->_addLeft($this->getLayout()->createBlock('customshipping/adminhtml_rule_edit_tabs'));
47
+
48
+ $this->renderLayout();
49
+ } else {
50
+ Mage::getSingleton('adminhtml/session')->addError(Mage::helper('customshipping')->__('Item does not exist'));
51
+ $this->_redirect('*/*/');
52
+ }
53
+
54
+ }
55
+
56
+
57
+ public function saveAction() {
58
+ if ($data = $this->getRequest()->getPost()) {
59
+ $model = Mage::getModel('customshipping/rule');
60
+ $id = $this->getRequest()->getParam('id');
61
+ if ($id) {
62
+ $model->load($id);
63
+ }
64
+
65
+ //convert arrays to string
66
+ foreach($data as $key => $val) {
67
+ if(is_array($val)) {
68
+ $data[$key] = implode(',', $val);
69
+ }
70
+ }
71
+
72
+ $model->setData($data);
73
+
74
+ Mage::getSingleton('adminhtml/session')->setFormData($data);
75
+ try {
76
+ if ($id) {
77
+ $model->setId($id);
78
+ }
79
+ $model->save();
80
+
81
+ if (!$model->getId()) {
82
+ Mage::throwException(Mage::helper('customshipping')->__('Error saving rule'));
83
+ }
84
+
85
+ Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('customshipping')->__('Rule was successfully saved.'));
86
+ Mage::getSingleton('adminhtml/session')->setFormData(false);
87
+
88
+ // The following line decides if it is a "save" or "save and continue"
89
+ if ($this->getRequest()->getParam('back')) {
90
+ $this->_redirect('*/*/edit', array('id' => $model->getId()));
91
+ } else {
92
+ $this->_redirect('*/*/');
93
+ }
94
+ } catch (Exception $e) {
95
+ Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
96
+ if ($model && $model->getId()) {
97
+ $this->_redirect('*/*/edit', array('id' => $model->getId()));
98
+ } else {
99
+ $this->_redirect('*/*/');
100
+ }
101
+ }
102
+ return;
103
+ }
104
+ Mage::getSingleton('adminhtml/session')->addError(Mage::helper('customshipping')->__('No data found to save'));
105
+ $this->_redirect('*/*/');
106
+ }
107
+
108
+
109
+ public function massDeactivateAction() {
110
+ return $this->massStatusAction(self::MODE_DEACTIVATE);
111
+ }
112
+
113
+ public function massActivateAction() {
114
+ return $this->massStatusAction(self::MODE_ACTIVATE);
115
+ }
116
+
117
+ public function massRemoveAction() {
118
+ return $this->massStatusAction(self::MODE_DELETE);
119
+ }
120
+
121
+
122
+ protected function massStatusAction($mode = 0)
123
+ {
124
+ if(!array_key_exists($mode, $this->_allowedModes)) {
125
+ $this->_getSession()->addError('Invalid mode specified for mass status action.');
126
+ $this->_redirect('*/*');
127
+ return;
128
+ }
129
+
130
+ $params = $this->getRequest()->getParams();
131
+
132
+
133
+ if (!isset($params['massaction']) || !is_array($params['massaction']) || empty($params['massaction'])) {
134
+ $this->_getSession()->addError(Mage::helper('customshipping')->__('No rules selected.'));
135
+ $this->_redirect('*/*/');
136
+ }
137
+
138
+ $rule_ids = $params['massaction'];
139
+ $notices = array();
140
+
141
+ $count = 0;
142
+ foreach ($rule_ids as $id) {
143
+ $rule = Mage::getModel('customshipping/rule')->load($id);
144
+
145
+ if (!$rule || !$rule->getId()) {
146
+ $notices[] = "Rule ID $id not found.";
147
+ continue;
148
+ }
149
+
150
+ switch($mode) {
151
+ case self::MODE_DELETE:
152
+ $rule->delete(); break;
153
+ case self::MODE_ACTIVATE:
154
+ case self::MODE_DEACTIVATE:
155
+ $rule->setIsActive($mode);
156
+ $rule->save();
157
+ break;
158
+ }
159
+
160
+ $count++;
161
+ }
162
+
163
+ if (!empty($notices)) {
164
+ foreach ($notices as $notice)
165
+ $this->_getSession()->addError($notice);
166
+ }
167
+
168
+ $successMsg = $this->_allowedModes[$mode];
169
+ $this->_getSession()->addSuccess("Total of $count rules $successMsg.");
170
+
171
+
172
+ $this->_redirect('*/*/');
173
+
174
+ return;
175
+ }
176
+
177
+
178
+
179
+
180
+
181
+ }
app/code/community/Candf/Customshipping/controllers/Adminhtml/ShipmentController.php ADDED
@@ -0,0 +1,868 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+
4
+ ini_set('soap.wsdl_cache_enabled',0);
5
+ ini_set('soap.wsdl_cache_ttl',0);
6
+ ini_set('default_socket_timeout', 100000);
7
+ class PickUpAddress
8
+ {
9
+ public $CompanyName;
10
+ public $CountryCode;
11
+ public $EmailAddress;
12
+ public $FirstName;
13
+ public $LastName;
14
+ public $Line1;
15
+ public $Line2;
16
+ public $Line3;
17
+ public $PostCode;
18
+ public $Residential;
19
+ public $Suburb;
20
+ public $TelephoneNumber;
21
+ }
22
+
23
+ class DeliveryAddress
24
+ {
25
+ public $CompanyName;
26
+ public $CountryCode;
27
+ public $EmailAddress;
28
+ public $FirstName;
29
+ public $LastName;
30
+ public $Line1;
31
+ public $Line2;
32
+ public $Line3;
33
+ public $PostCode;
34
+ public $Residential;
35
+ public $Suburb;
36
+ public $TelephoneNumber;
37
+ }
38
+
39
+ class CFParam_Rate1
40
+ {
41
+ public $key;
42
+ public $shipmentRequest;
43
+ }
44
+
45
+ class Parcel1
46
+ {
47
+ public $Height;
48
+ public $Length;
49
+ public $Width;
50
+ public $Weight;
51
+ public $Type;
52
+ public $GoodsDescriptionId;
53
+ }
54
+
55
+ class APIKey1
56
+ {
57
+ public $AuthKey;
58
+ public $Password;
59
+ }
60
+
61
+ class CreditCardInfo
62
+ {
63
+ public $CardNumber;
64
+ public $CardType;
65
+ public $CustomerNameOnTheCard;
66
+ public $Cvv;
67
+ public $ExpiryDate;
68
+ }
69
+
70
+ class Type
71
+ {
72
+ public $Type;
73
+ }
74
+ class AddtionalServiceandCharges
75
+ {
76
+ public $CFserviceID;
77
+ public $CarrierId;
78
+ public $CarrierName;
79
+ public $Cost;
80
+ public $ServiceCode;
81
+ public $ServiceDescription;
82
+ }
83
+
84
+ class PaymentInfo
85
+ {
86
+ public $CreditCard;
87
+ public $Type;
88
+ }
89
+
90
+ class ShipmentRequest
91
+ {
92
+ public $AdditionalInsuranceCover;
93
+ public $AuthorityToLeave;
94
+ public $CarrierId;
95
+ public $CurrencyCode;
96
+ public $DeliveryAddress;
97
+ public $Parcel;
98
+ public $PickUpAddress;
99
+ public $PriceScheduleId;
100
+ public $PromoCode;
101
+ public $RateFilterOption;
102
+ public $ServiceId;
103
+ public $DescriptionOfGoods;
104
+ public $Payment;
105
+ public $PickupCloseAt;
106
+ public $PickupDate;
107
+ public $PickupTime;
108
+ public $PickupStartAt;
109
+ public $ShipmentValue;
110
+ public $Special_Instructions_For_Delivery;
111
+ public $AdditionalService;
112
+ }
113
+
114
+
115
+
116
+ class Candf_Customshipping_Adminhtml_ShipmentController extends Mage_Adminhtml_Controller_Action
117
+ {
118
+ public function indexAction()
119
+ {
120
+ $this->loadLayout()
121
+ ->_setActiveMenu('customshipping/shipment')
122
+ ->_addBreadcrumb(Mage::helper('adminhtml')->__('Shipment Manager'), Mage::helper('adminhtml')->__('Shipment Manager'))
123
+ ->renderLayout();
124
+ }
125
+
126
+ public function editAction()
127
+ {
128
+ $id = $this->getRequest()->getParam('id');
129
+ $shipment = Mage::getModel('customshipping/shipment')->load($id);
130
+ if ($shipment->getId())
131
+ {
132
+ $notices = array();
133
+ Mage::register('customshipping_shipment_data', $shipment);
134
+ $this->loadLayout()
135
+ ->_setActiveMenu('customshipping/shipment');
136
+ $this->getLayout()->getBlock('head')->setCanLoadExtJs(true);
137
+ $this->renderLayout();
138
+ } else {
139
+ Mage::getSingleton('adminhtml/session')->addError(Mage::helper('customshipping')->__('Shipment does not exist.'));
140
+ $this->_redirect('*/*/');
141
+ }
142
+ }
143
+
144
+ public function saveAction()
145
+ {
146
+ $manualyCreateBoxArray = $this->getRequest()->getPost('createmanualbox');
147
+
148
+ if(isset($manualyCreateBoxArray)) {
149
+ foreach($manualyCreateBoxArray as $manualyCreateBox) {
150
+
151
+ $boxWaight = $manualyCreateBox['weight'];
152
+ $boxLength = $manualyCreateBox['length'];
153
+ $boxWidth = $manualyCreateBox['width'];
154
+ $boxHeight = $manualyCreateBox['height'];
155
+ $boxQty = $manualyCreateBox['gty'];
156
+ $type = $manualyCreateBox['type'];
157
+ $paper = $manualyCreateBox['paper'];
158
+
159
+
160
+ if(!empty($boxWaight) && !empty($boxLength) && !empty($boxWidth) && !empty($boxHeight) ){
161
+
162
+ $productArray[] = array('type'=>$type,
163
+ 'paper'=> $paper,
164
+ 'weight'=>$boxLength,
165
+ 'length'=>$boxWaight,
166
+ 'width'=>$boxWidth,
167
+ 'weight'=>$boxWaight,
168
+ 'height'=>$boxHeight,
169
+ 'gty'=>$boxQty
170
+ );
171
+
172
+ }
173
+
174
+ }
175
+
176
+ $customBoxArray = $productArray;
177
+
178
+ }
179
+
180
+ $manualyCreateBoxesArray = Mage::getSingleton('core/session')->setManualyCreateBoxesArray($customBoxArray);
181
+
182
+ $manualyCreateBoxes = $this->getRequest()->getPost('manualy_create_boxes');
183
+ $avalableBoxArray = Mage::getSingleton('core/session')->getAvalableBoxArray();
184
+ $getPostParam = $this->getRequest()->getPost();
185
+ $autoselectedBox = $getPostParam['check_auto_selected_box'];
186
+ if(isset($manualyCreateBoxes)) {
187
+ $manualyCreateBoxes = Mage::getSingleton('core/session')->setManualyCreateBoxes($manualyCreateBoxes);
188
+
189
+
190
+ }else {
191
+ $manualyCreateBoxesArray = Mage::getSingleton('core/session')->setManualyCreateBoxesArray('');
192
+ }
193
+
194
+
195
+ if(isset($autoselectedBox)) {
196
+ $autoselectedBoxCheck = Mage::getSingleton('core/session')->setAutoSelectedBoxCheckStatus($autoselectedBox);
197
+ }else {
198
+ $autoselectedBoxCheck = Mage::getSingleton('core/session')->setAutoSelectedBoxCheckStatus('');
199
+ }
200
+
201
+
202
+ /* set admin selected wahehouse for shipment*/
203
+ $adminselectedlocation = $this->getRequest()->getPost('selected-wahehouseid');
204
+ if(isset($adminselectedlocation)) {
205
+ Mage::getSingleton('core/session')->setSelectedLocation($adminselectedlocation);
206
+ }else {
207
+ Mage::getSingleton('core/session')->setSelectedLocation('');
208
+ }
209
+
210
+
211
+
212
+ $candfordertableid = $this->getRequest()->getPost('id');
213
+ $weight = $this->getRequest()->getPost('weight');
214
+ $height = $this->getRequest()->getPost('height');
215
+ $length = $this->getRequest()->getPost('length');
216
+ $width = $this->getRequest()->getPost('width');
217
+ $type = $this->getRequest()->getPost('type');
218
+
219
+
220
+
221
+
222
+ $newrequestquote = $this->getRequest()->getPost('requestquote');
223
+ $customshippingorder = Mage::getModel('customshipping/order');
224
+ // $custompickupaddress = Mage::getModel('customshipping/pickupaddress');
225
+
226
+ $customshippinggetmodel = Mage::getModel('customshipping/shipment')->getCollection()
227
+ ->addFieldToFilter('order_id',$this->getRequest()->getPost('orderid'));
228
+ foreach($customshippinggetmodel as $coll)
229
+ {
230
+ $shipmenttableid = $coll['id'];
231
+ }
232
+
233
+ if ( $this->getRequest()->getPost() )
234
+ {
235
+ try
236
+ {
237
+ $postData = $this->getRequest()->getPost();
238
+ $customshippingmodel = Mage::getModel('customshipping/shipment')->load($shipmenttableid)
239
+ ->setDestinationContactName($postData['destination_contact_name'])
240
+ ->setDestinationCompanyName($postData['destination_company_name'])
241
+ ->setDestinationStreet($postData['destination_street'])
242
+ ->setDestinationCity($postData['destination_city'])
243
+ ->setDestinationRegion($postData['destination_region'])
244
+ ->setDestinationPostcode($postData['destination_postcode'])
245
+ ->setDestinationCountry($postData['destination_country'])
246
+ ->setDestinationPhone($postData['destination_phone'])
247
+ ->setSpecialinstructions($postData['specialinstructions'])
248
+ ->setDestinationEmail($postData['destination_email']);
249
+ if($postData['ready'] == 1){
250
+ $customshippingmodel->setReadyDate($postData['ready_date']);
251
+ } else {
252
+ $customshippingmodel->setAsap(1);
253
+ $customshippingmodel->setReadyDate($postData['ready']);
254
+ }
255
+ $pickuptime = $postData['pickuptime'].$postData['pickuptimenote'];
256
+ $pickupstarttime = $postData['pickupstarttime'];
257
+ $pickupclosetime = $postData['pickupclosetime'];
258
+ $customshippingmodel->setDestinationCountry($postData['destination_country'])
259
+ ->setPickupstarttime($postData['pickupstarttime']);
260
+ if($postData['pickupclosetime'] != ''){
261
+ $customshippingmodel->setPickupclosetime($postData['pickupclosetime']);
262
+ }
263
+ $customshippingmodel->setPickupStart($newrequestquote)
264
+ ->save();
265
+
266
+
267
+ foreach($candfordertableid as $key => $id){
268
+ $customshippingorder->setId($id)
269
+ ->setWeight($weight[$key])
270
+ ->setHeight($height[$key])
271
+ ->setLength($length[$key])
272
+ ->setWidth($width[$key])
273
+ ->setType($type[$key])
274
+ ->save();
275
+ }
276
+
277
+ Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('adminhtml')->__('The shipment data has been saved. You can place booking using the below "Make Booking" link'));
278
+ Mage::getSingleton('adminhtml/session')->setCustomshippingData(false);
279
+ $this->_redirect('*/*/edit', array('id' => $this->getRequest()->getParam('id')));
280
+ return;
281
+ } catch (Exception $e)
282
+ {
283
+ Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
284
+ Mage::getSingleton('adminhtml/session')->setCustomshippingData($this->getRequest()->getPost());
285
+ $this->_redirect('*/*/edit', array('id' => $this->getRequest()->getParam('id')));
286
+ return;
287
+ }
288
+ }
289
+ $this->_redirect('*/*/');
290
+ }
291
+
292
+
293
+ public function validatebookAction()
294
+ {
295
+ $shipment_id = $this->getRequest()->getParam('shipment');
296
+
297
+ $shipment = Mage::getModel('customshipping/shipment')
298
+ ->load($shipment_id);
299
+ $this->_getSession()->addError('Please click Save and Get Quotes button and click make Booking link');
300
+ $this->_redirect('*/*/edit', array('id' => $shipment_id));
301
+ }
302
+
303
+ public function bookAction()
304
+ {
305
+
306
+ $shipment_id = $this->getRequest()->getParam('shipment');
307
+ //print_r($shipment_id);
308
+ $shipment = Mage::getModel('customshipping/shipment')
309
+ ->load($shipment_id);
310
+
311
+ $quote_id = $this->getRequest()->getParam('quote');
312
+ $newcarrierid = $this->getRequest()->getParam('carrierid');
313
+ $newserviceid = $this->getRequest()->getParam('serviceid');
314
+ $newcost = $this->getRequest()->getParam('cost');
315
+ $newcarriername = $this->getRequest()->getParam('carriername');
316
+ $neweta = $this->getRequest()->getParam('eta');
317
+
318
+ //getting selected additional servicess
319
+ $orderid = $shipment['order_id'];
320
+ //$additionalServiceId = $this->getRequest()->getParam('additional-servicess');
321
+
322
+
323
+
324
+
325
+
326
+ try
327
+ {
328
+ $booking_result = $this->_makeBooking($shipment, $quote_id, $shipment_id, $newcarrierid, $newserviceid, $newcost, $newcarriername, $neweta,$orderid);
329
+ } catch (Exception $ex)
330
+ {
331
+ $error = $ex->getMessage();
332
+ }
333
+
334
+ if($booking_result['passed']==0){
335
+ $this->_getSession()->addError($this->__($booking_result['reply']));
336
+
337
+ }else{
338
+
339
+ $booking_result_new = $booking_result['reply'];
340
+
341
+ $shipment
342
+ ->setAdminSelectedQuoteId($quote_id)
343
+ ->setBookingRequestId();
344
+ if($newcarrierid == ''){
345
+ $shipment->setBookingNumber($booking_result_new);
346
+ }
347
+ $shipment->setConsignmentNumber()
348
+ ->setConsignmentDocument()
349
+ ->setConsignmentDocumentType()
350
+ ->setLabelDocument()
351
+ ->setLabelDocumentType()
352
+ ->setStatus(Candf_Customshipping_Model_System_Config_Backend_Shipment_Status::BOOKED)
353
+ ->setAnticipatedCost()
354
+ ->save();
355
+
356
+
357
+ $OrderId = $shipment->getOrderId();
358
+ $getorder = Mage::getModel('sales/order')->load($OrderId);
359
+
360
+ $magento_shipment = Mage::getModel('sales/convert_order')
361
+ ->toShipment($getorder);
362
+
363
+
364
+ $totalQty = 0;
365
+
366
+
367
+ foreach ($getorder->getAllItems() as $item)
368
+ {
369
+ if ($item->getQtyToShip() && !$item->getIsVirtual())
370
+ {
371
+ $magento_shipment_item = Mage::getModel('sales/convert_order')
372
+ ->itemToShipmentItem($item);
373
+ $qty = $item->getQtyToShip();
374
+ $magento_shipment_item->setQty($qty);
375
+ $magento_shipment->addItem($magento_shipment_item);
376
+ $totalQty += $qty;
377
+ }
378
+ }
379
+ $magento_shipment->setTotalQty($totalQty);
380
+ $track = Mage::getModel('sales/order_shipment_track');
381
+ $number = '';
382
+ if ($booking_result_new->consignmentNumber)
383
+ {
384
+ $number .= 'Consignment Number: ' . $booking_result_new->consignmentNumber;
385
+ }
386
+ if ($booking_result_new->requestId)
387
+ {
388
+ if ($number)
389
+ {
390
+ $number .= "\n<br />";
391
+ }
392
+ $number .= 'Request Id: ' . $booking_result_new->requestId;
393
+ }
394
+ //$getorder = $shipment->getOrder();
395
+ if($getorder->getShippingMethod() != '')
396
+ {
397
+ $getshippingmethod = $getorder->getShippingMethod();
398
+ } else {
399
+ $getshippingmethod = $getorder->getshipping_method();
400
+ }
401
+ $getshippingmethods = explode("_",$getshippingmethod);
402
+ $shippingmethod = implode(" ",array_slice($getshippingmethods, 2));
403
+ $track
404
+ ->setCarrierCode()
405
+ ->setTitle($shippingmethod)
406
+ ->setNumber($booking_result);
407
+
408
+ $magento_shipment
409
+ ->addTrack($track)
410
+ ->register();
411
+
412
+ try
413
+ {
414
+ $magento_shipment->getOrder()->setIsInProcess(true)->setCustomerNoteNotify(true);
415
+ Mage::getModel('core/resource_transaction')
416
+ ->addObject($shipment)
417
+ ->addObject($magento_shipment)
418
+ ->addObject($magento_shipment->getOrder())
419
+ ->save();
420
+ $magento_shipment->sendEmail();
421
+ } catch (Mage_Core_Exception $e)
422
+ {
423
+ $error = $e->getMessage();
424
+ }
425
+ $this->_getSession()->addSuccess($this->__('Shipment booked.'));
426
+ if ($error)
427
+ {
428
+ $this->_getSession()
429
+ ->addError($this->__($error));
430
+ }
431
+ }
432
+
433
+ $this->_redirect('*/*/edit', array('id' => $shipment_id));
434
+ }
435
+
436
+
437
+ public function _makeBooking($shipment,$quote,$shipment_id,$newcarrierid,$newserviceid,$newcost,$newcarriername,$neweta,$orderid)
438
+ {
439
+ $shipRequest = new ShipmentRequest();
440
+ $requestaa = $this->getRequest();
441
+
442
+ $order = Mage::getModel('sales/order')->load($orderid);
443
+
444
+ $order = Mage::getModel('sales/order')->load($orderid);
445
+ $incrementid = $order->getIncrementId();
446
+
447
+
448
+ $deliveryfirstname = $order->getShippingAddress()->getFirstname();
449
+ $deliverylastname = $order->getShippingAddress()->getLastname();
450
+ $deliverycompany = $order->getShippingAddress()->getCompany();
451
+ $deliverystreet = $order->getShippingAddress()->getStreetFull();
452
+ $deliveryregion = $order->getShippingAddress()->getRegion();
453
+ $deliverycity = $order->getShippingAddress()->getCity();
454
+ $deliverypostcode = $order->getShippingAddress()->getPostcode();
455
+ $deliverycountry = $order->getShippingAddress()->getCountry_id().'S';
456
+ // $deliveryemail = $order->getShippingAddress()->getDestinationEmail();
457
+ // $deliverytelephone = $order->getShippingAddress()->getDestinationPhone();
458
+ $deliveryemail = $order->getShippingAddress()->getEmail();
459
+ $deliverytelephone = $order->getShippingAddress()->getTelephone();
460
+
461
+ $deliveryaddress = new DeliveryAddress();
462
+ $deliveryaddress->CompanyName = $deliverycompany;
463
+ $deliveryaddress->CountryCode = 'AUS';
464
+ $deliveryaddress->FirstName = $deliveryfirstname;
465
+ $deliveryaddress->LastName = $deliverylastname;
466
+ $deliveryaddress->Line1 = $deliverystreet;
467
+ $deliveryaddress->PostCode = $deliverypostcode;
468
+ $deliveryaddress->Suburb = $deliverycity;
469
+ $deliveryaddress->EmailAddress = $deliveryemail;
470
+ $deliveryaddress->TelephoneNumber = $deliverytelephone;
471
+ $shipRequest->DeliveryAddress = $deliveryaddress;
472
+
473
+ //$this->settings = Mage::helper('customshipping/customshipping')->loadConfig();
474
+ $candconfig = Mage::getStoreConfig('candf');
475
+
476
+ $apikey = $candconfig['general']['api'];
477
+ $password = $candconfig['general']['password'];
478
+ $pickupcompanyname = $candconfig['warehouse']['warehouse_companyname'];
479
+ $pickupfirstname = $candconfig['warehouse']['warehouse_firstname'];
480
+ $pickuplastname = $candconfig['warehouse']['warehouse_lastname'];
481
+ $pickupemail = $candconfig['warehouse']['warehouse_email'];
482
+ $pickuptelephone = $candconfig['warehouse']['warehouse_telephone'];
483
+ $pickupstreet1 = $candconfig['warehouse']['warehouse_adrs1'];
484
+ $pickupstreet2 = $candconfig['warehouse']['warehouse_adrs2'];
485
+
486
+ $pickuppostcode = $candconfig['warehouse']['warehouse_code'];
487
+ $pickupregion = $candconfig['warehouse']['warehouse_suburb'];
488
+ $pickupstate = $candconfig['warehouse']['warehouse_state'];
489
+ $pickupcountry = $candconfig['warehouse']['warehouse_country'].'S';
490
+
491
+ $pickupaddress = new PickUpAddress();
492
+
493
+ $adminselectedLocationId = Mage::getSingleton('core/session')->getSelectedLocation();
494
+
495
+ if($adminselectedLocationId > 0) {
496
+ $adminselectedLocationDetails = Mage::getModel('customshipping/warehouse')->load($adminselectedLocationId)->getData();
497
+
498
+
499
+
500
+ $pickupaddress->CountryCode = 'AUS';
501
+ $pickupaddress->CompanyName = $adminselectedLocationDetails['company_name'];
502
+ $pickupaddress->FirstName = $adminselectedLocationDetails['contact_name'];
503
+ $pickupaddress->LastName = $adminselectedLocationDetails['contact_name'];
504
+ $pickupaddress->EmailAddress = $adminselectedLocationDetails['contact_email'];
505
+ $pickupaddress->TelephoneNumber = $adminselectedLocationDetails['phone1'];
506
+ $pickupaddress->CountryCode = 'AUS';
507
+ $pickupaddress->Line1 = $adminselectedLocationDetails['line1'];
508
+ $pickupaddress->Line2 = $adminselectedLocationDetails['line2'];
509
+ $pickupaddress->PostCode = $adminselectedLocationDetails['zip'];
510
+ $pickupaddress->Suburb = $adminselectedLocationDetails['suburb'];
511
+
512
+ } else{
513
+ $pickupaddress->CompanyName = $pickupcompanyname;
514
+ $pickupaddress->FirstName = $pickupfirstname;
515
+ $pickupaddress->LastName = $pickuplastname;
516
+ $pickupaddress->EmailAddress = $pickupemail;
517
+ $pickupaddress->TelephoneNumber = $pickuptelephone;
518
+ $pickupaddress->CountryCode = 'AUS';
519
+ $pickupaddress->Line1 = $pickupstreet1;
520
+ $pickupaddress->Line2 = $pickupstreet2;
521
+ $pickupaddress->PostCode = $pickuppostcode;
522
+ $pickupaddress->Suburb = $pickupregion;
523
+
524
+ }
525
+
526
+ $shipRequest->PickUpAddress = $pickupaddress;
527
+ $api = new APIKey1();
528
+ $api->AuthKey = $apikey;
529
+ $api->Password = $password;
530
+
531
+ $creditcardno = $candconfig['payment']['creditcart_number'];
532
+ $creditcardtype = $candconfig['payment']['creditcart_type'];
533
+ $creditcardcustomername = $candconfig['payment']['creditcart_custmername'];
534
+ $creditcardcvv = $candconfig['payment']['creditcart_cvv'];
535
+ $creditcardexmonth = $candconfig['payment']['creditcart_expiry_month'];
536
+ $creditcardexyear = $candconfig['payment']['creditcart_expiry_year'];
537
+ $type = 'PayAsYouGo';
538
+
539
+ $creditcardinfo = new CreditCardInfo();
540
+
541
+ $creditcardinfo->CardNumber = $creditcardno;
542
+ $creditcardinfo->CardType = $creditcardtype;
543
+ $creditcardinfo->CustomerNameOnTheCard = $creditcardcustomername;
544
+ $creditcardinfo->Cvv = $creditcardcvv;
545
+ $creditcardinfo->ExpiryDate = $creditcardexmonth.'/'.$creditcardexyear;
546
+
547
+ $paymentinfo = new PaymentInfo();
548
+ $paymentinfo->CreditCard = $creditcardinfo;
549
+ $paymentinfo->Type = 'PayAsYouGo';
550
+ $shipRequest->Payment = $paymentinfo;
551
+ //$shipRequest->Payment = $accounttype;
552
+
553
+ $customshipping = Mage::getModel('customshipping/shipment')->load($shipment_id);
554
+
555
+
556
+
557
+ $additionalinsurance = $customshipping->getAdditionalInsurence();
558
+ $authoritytoleave = true;
559
+ $carrierid = $customshipping->getCarrierId();
560
+ $serviceid = $customshipping->getServiceId();
561
+ $shippingcost = $customshipping->getShippingCost();
562
+ $pickupreversedate = $customshipping->getReadyDate();
563
+ if($pickupreversedate != '')
564
+ {
565
+ $datestring = explode("-",$pickupreversedate);
566
+ $pickupdate = $datestring[2].'-'.$datestring[1].'-'.$datestring[0];
567
+ } else
568
+ {
569
+ $tomorrow = mktime(0,0,0,date("m"),date("d")+1,date("Y"));
570
+ $pickupdate = date("Y-m-d", $tomorrow);
571
+ }
572
+ $pickuptime = $customshipping->getReadyTime().$customshipping->getReadyTimenote();
573
+ $pickupstarttime = $customshipping->getPickupstarttime();
574
+ $pickupclosetime = $customshipping->getPickupclosetime();
575
+ $customshipping->setReadyDate($pickupdate)
576
+ ->setPickupstarttime($pickupstarttime)
577
+ ->setPickupclosetime($pickupclosetime)
578
+ ->save();
579
+ $shipRequest->AdditionalInsuranceCover = $additionalinsurance;
580
+ $shipRequest->AuthorityToLeave = $authoritytoleave;
581
+ if($newcarrierid == ''){
582
+ $shipRequest->CarrierId = $carrierid;
583
+ $shipRequest->ServiceId = $serviceid;
584
+ $shipRequest->ShipmentValue = $shippingcost;
585
+ } else {
586
+ $shipRequest->CarrierId = $newcarrierid;
587
+ $shipRequest->ServiceId = $newserviceid;
588
+ $shipRequest->ShipmentValue = $newcost;
589
+ }
590
+ $shipRequest->CurrencyCode = 'AUD';
591
+ $shipRequest->PickupCloseAt = $pickupclosetime;
592
+ //$shipRequest->PickupCloseAt = '1600';
593
+ $shipRequest->PickupDate = $pickupdate;
594
+ $shipRequest->PickupStartAt = $pickupstarttime;
595
+ //$shipRequest->PickupStartAt = '1000';
596
+ $shipRequest->Special_Instructions_For_Delivery = $customshipping->getSpecialinstruction();
597
+ $shipRequest->BookingSource = 'magento';
598
+
599
+
600
+ $autoselectedBoxCheck1 = Mage::getSingleton('core/session')->getAutoSelectedBoxCheckStatus();
601
+ $manualyCreateBoxes = Mage::getSingleton('core/session')->getManualyCreateBoxesArray();
602
+
603
+
604
+ $autoselectedBoxCheck1 = Mage::getSingleton('core/session')->getAutoSelectedBoxCheckStatus();
605
+ $manualyCreateBoxes = Mage::getSingleton('core/session')->getManualyCreateBoxesArray();
606
+
607
+ $k =0;
608
+ if(!empty($manualyCreateBoxes)) {
609
+ $manualyCreateBoxes = Mage::getSingleton('core/session')->getManualyCreateBoxesArray();
610
+
611
+ foreach($manualyCreateBoxes as $boxfilledProduct) {
612
+ $qty = $boxfilledProduct['gty'];
613
+ for($c = 1; $c<=$qty; $c++)
614
+ {
615
+ $parcel[$k] = new Parcel1();
616
+ $parcel[$k]->Height = $boxfilledProduct['height'];
617
+ $parcel[$k]->Length = $boxfilledProduct['length'];
618
+ $parcel[$k]->Width = $boxfilledProduct['width'];
619
+ $parcel[$k]->Weight = $boxfilledProduct['weight'];
620
+ $k++;
621
+ }
622
+ }
623
+
624
+ }elseif(!empty($autoselectedBoxCheck1)) {
625
+ $avalableBoxArray = Mage::getSingleton('core/session')->getAvalableBoxArray();
626
+
627
+ foreach($avalableBoxArray as $boxfilledProduct) {
628
+ $parcel[$k] = new Parcel1();
629
+ $parcel[$k]->Height = $boxfilledProduct['BoxDetails']['height'];
630
+ $parcel[$k]->Length = $boxfilledProduct['BoxDetails']['length'];
631
+ $parcel[$k]->Width = $boxfilledProduct['BoxDetails']['width'];
632
+ $parcel[$k]->Weight = $boxfilledProduct['BoxDetails']['NetWeight'];
633
+ $k++;
634
+ }
635
+ }
636
+ else{
637
+
638
+ $collection = Mage::getResourceModel('sales/order_collection')
639
+ ->addFieldToFilter('increment_id', $incrementid)
640
+ ->addAttributeToSelect('*');
641
+
642
+ foreach ($collection as $col)
643
+ {
644
+
645
+ $customshippingorder = Mage::getModel('customshipping/order')->getCollection()
646
+ ->addFieldToFilter('order_id',$orderid)->getData();
647
+
648
+
649
+ foreach($customshippingorder as $coll){
650
+
651
+
652
+ $sku = $coll['product_sku'];
653
+ $qty = $coll['qty'];
654
+
655
+
656
+ $_product = Mage::getModel('catalog/product')->loadByAttribute('sku', $sku);
657
+ $length = $_product->getResource()->getAttribute('candf_length')->getFrontend()->getValue($_product);
658
+ $height = $_product->getResource()->getAttribute('candf_height')->getFrontend()->getValue($_product);
659
+ $width = $_product->getResource()->getAttribute('candf_width')->getFrontend()->getValue($_product);
660
+ $weight = $_product->getResource()->getAttribute('weight')->getFrontend()->getValue($_product);
661
+
662
+ $proLenght = $length;
663
+ $proHeight =$height;
664
+ $proWidth = $width;
665
+ $proWeight = $weight;
666
+ $proQty = $qty;
667
+ $k = '';
668
+
669
+
670
+ $meterRate = $_product->getResource()->getAttribute('candf_meter_rate')->getFrontend()->getValue($_product);
671
+ $packagedLength = $_product->getResource()->getAttribute('candf_packaged_length')->getFrontend()->getValue($_product);
672
+
673
+ if($meterRate && (bool)$packagedLength) {
674
+ $floatLength = floatval($packagedLength);
675
+
676
+ $packageWeight = ($floatLength*$weight)/$length;
677
+
678
+ $how_many_parts_make_up_one_product = $floatLength /floatval($length);
679
+ $length = $floatLength;
680
+
681
+ $packageQty = $qty/$how_many_parts_make_up_one_product;
682
+
683
+ $qty = floor($packageQty);
684
+
685
+ $decimalVal = $packageQty - $qty;
686
+
687
+ //calculate simple product
688
+
689
+ $additionalQty = round(($packagedLength * $decimalVal)/$proLenght);
690
+
691
+ $weight = $packageWeight;
692
+
693
+ if($packageQty < 1) {
694
+ $length =$proLenght;
695
+ $height = $proHeight;
696
+ $width = $proWidth;
697
+ $weight = $proWeight;
698
+ $qty = $proQty;
699
+
700
+ }
701
+ }
702
+
703
+ $parcel = array();
704
+ for ($c = 1; $c <= $qty; $c++) {
705
+
706
+
707
+ $arr_main = new Parcel1();
708
+ $arr_main->GoodsDescriptionId= '0';
709
+ //$parcel[$k]->Type = (string)$coll['product_name'];
710
+ $arr_main->Height = $height;
711
+ $arr_main->Length = $length;
712
+ $arr_main->Width = $width;
713
+ $arr_main->Weight = $weight;
714
+ //$k++;
715
+
716
+ $parcel[] = $arr_main;
717
+
718
+ }
719
+
720
+ $additinalParcel = array();
721
+ if(!empty($additionalQty)) {
722
+ for ($c = 1; $c <= $additionalQty; $c++) {
723
+ $aditional_parcel = new Parcel1();
724
+ $aditional_parcel->GoodsDescriptionId = '0';
725
+ //$parcel[$k]->Type = (string)$coll['product_name'];
726
+ $aditional_parcel->Height = $proHeight;
727
+ $aditional_parcel->Length = $proLenght;
728
+ $aditional_parcel->Width = $proWidth;
729
+ $aditional_parcel->Weight = $proWeight;
730
+ $additinalParcel[] = $aditional_parcel;
731
+ }
732
+ }
733
+
734
+ }
735
+
736
+
737
+ }
738
+ if(!empty($additinalParcel)) {
739
+ foreach($additinalParcel as $aditional_parcelArr) {
740
+
741
+
742
+ array_push($parcel,$aditional_parcelArr);
743
+ }
744
+
745
+ }
746
+
747
+ }
748
+
749
+
750
+
751
+ $shipRequest->Parcel = $parcel;
752
+
753
+ $collection = Mage::getModel('customshipping/shipmentadditional')->getCollection();
754
+ $getAdditionalServiceData= $collection->addFieldToFilter('order_id', array('in' =>array('in' => array($orderid))))->getData();
755
+ if(!empty($getAdditionalServiceData)) {
756
+
757
+ $collection = Mage::getModel('customshipping/additionalservices')->getCollection();
758
+ $getAdditionalServiceDataArry= $collection->addFieldToFilter('id', array('in' =>array('in' => array($getAdditionalServiceData))))->getData();
759
+
760
+ $arrAdditionalService = array();
761
+ foreach($getAdditionalServiceDataArry as $selectedAdditinalService) {
762
+ $addtionalServiceandCharges = new AddtionalServiceandCharges();
763
+ $addtionalServiceandCharges->CFserviceID = $selectedAdditinalService['Mapping_CF_Service_Id'];
764
+ $addtionalServiceandCharges->CarrierId = $selectedAdditinalService['Carrier_Id'];
765
+ $addtionalServiceandCharges->CarrierName = $selectedAdditinalService['Carrier_Name'];
766
+ $addtionalServiceandCharges->Cost = $selectedAdditinalService['Carrier_Basic_Charge'];
767
+ $addtionalServiceandCharges->ServiceCode = $selectedAdditinalService['Carrier_Service_Code'];
768
+ $addtionalServiceandCharges->ServiceDescription = $selectedAdditinalService['Carrier_Service_Description'];
769
+ $arrAdditionalService[] = $addtionalServiceandCharges;
770
+ }
771
+
772
+ $shipRequest->AdditionalService = $arrAdditionalService;
773
+ }
774
+
775
+
776
+ $auth = array('AuthKey'=>$candconfig['general']['api'],'Password'=>$candconfig['general']['password']);
777
+
778
+
779
+ if($candconfig['general']['sandbox']=='1') {
780
+ $centinelClient = new SoapClient('https://live.couriersandfreight.com.au/CandFAPITest/Service.svc?wsdl',array("soap_version" => SOAP_1_1,"trace"=>1,'exceptions'=>true));
781
+ $header = new SoapHeader("https://live.couriersandfreight.com.au/CandFAPITest/Service.svc?wsdl", "APIKey", $auth,false);
782
+
783
+ }else {
784
+ $centinelClient = new SoapClient('https://live.couriersandfreight.com.au/CandFAPILive/Service.svc?wsdl',array("soap_version" => SOAP_1_1,"trace"=>1,'exceptions'=>true));
785
+ $header = new SoapHeader("https://live.couriersandfreight.com.au/CandFAPILive/Service.svc?wsdl", "APIKey", $auth,false);
786
+ }
787
+
788
+ $centinelClient->__setSoapHeaders(array($header));
789
+ $shipPara = new CFParam_Rate1();
790
+ $shipPara->key = $api;
791
+
792
+
793
+
794
+ $shipPara->shipmentRequest = $shipRequest;
795
+
796
+
797
+ $webservice = $centinelClient->CreateBooking($shipPara);
798
+
799
+ if($webservice->CreateBookingResult->Status == 'FAIL'){
800
+
801
+ $errorMsg = $webservice->CreateBookingResult->Message;
802
+
803
+ if (strpos($errorMsg, "expired") !== NULL) {
804
+ list($errorMsg, $b) = explode(' at ', $errorMsg);
805
+ }
806
+
807
+ return array( 'passed'=>0, 'reply'=> $errorMsg);
808
+ }else{
809
+ $custombooking = Mage::getModel('customshipping/booking')
810
+ ->setBookingNumber($webservice->CreateBookingResult->BookingCode)
811
+ ->setOrderId($order->getId());
812
+ if($newcarrierid == ''){
813
+ $custombooking->setShippingCost($shippingcost)
814
+ ->setCarrierId($carrierid)
815
+ ->setServiceId($serviceid);
816
+ } else {
817
+ $custombooking->setShippingCost($newcost)
818
+ ->setCarrierId($newcarrierid)
819
+ ->setServiceId($newserviceid);
820
+ }
821
+ $custombooking->save();
822
+
823
+ if($candconfig['markup']['markup_type'] == 'rate')
824
+ {
825
+ $markup = $candconfig['markup']['markup_price'];
826
+ } else if($candconfig['markup']['markup_type'] == 'percentage')
827
+ {
828
+ $markuppercent = $candconfig['markup']['markup_price'];
829
+ $markup = ($markuppercent/100)*$requestprice;
830
+ }
831
+ if($candconfig['handlingfee']['handlingfee_active'] == 1)
832
+ {
833
+ if($candconfig['handlingfee']['handlingfee_type'] == 'rate'){
834
+ $handlingFee = $candconfig['handlingfee']['handlingfee_price'];
835
+ }elseif($candconfig['handlingfee']['handlingfee_type'] == 'percentage'){
836
+ $handlingFeePercent = $candconfig['handlingfee']['handlingfee_price'];
837
+ $handlingFee = ($handlingFeePercent/100)*$requestprice;
838
+ }
839
+ }else{
840
+ $handlingFee=0.00;
841
+ }
842
+
843
+ if($candconfig['insurance']['status'] == 'mandatory'){
844
+ $insuranceMarkup = $candconfig['insurance']['insurance_markup'];
845
+ }else{
846
+ $insuranceMarkup = 0.00;
847
+ }
848
+ $newcarrierfullname = explode('_',$newcarriername);
849
+
850
+ if($newcarrierid != ''){
851
+ $custombooking = Mage::getModel('customshipping/shipmenthistory')
852
+ ->setBookingNumber($webservice->CreateBookingResult->BookingCode)
853
+ ->setOrderId($order->getId())
854
+ ->setCarrierId($newcarrierid)
855
+ ->setServiceId($newserviceid)
856
+ ->setShippingCost($newcost)
857
+ ->setMarkupCost($markup)
858
+ ->setEta($neweta)
859
+ ->setCarrierName($newcarrierfullname[0])
860
+ ->setServiceName($newcarrierfullname[1])
861
+ ->setNotes('Admin Selected')
862
+ ->save();
863
+ }
864
+
865
+ return array( 'passed'=>1, 'reply'=> $webservice->CreateBookingResult->BookingCode);
866
+ }
867
+ }
868
+ }
app/code/community/Candf/Customshipping/controllers/Adminhtml/WarehouseController.php ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Adminhtml_WarehouseController extends Mage_Adminhtml_Controller_Action
4
+ {
5
+ protected function _initAction()
6
+ {
7
+ $this->loadLayout()
8
+ ->_setActiveMenu('warehouse/items')
9
+ ->_addBreadcrumb(Mage::helper('adminhtml')->__('Warehouse Manager'), Mage::helper('adminhtml')->__('Warehouse Manager'));
10
+ return $this;
11
+ }
12
+
13
+ public function indexAction() {
14
+ $this->_initAction();
15
+ $this->_addContent($this->getLayout()->createBlock('customshipping/adminhtml_warehouse'));
16
+ $this->renderLayout();
17
+ }
18
+
19
+ public function newAction() {
20
+ $this->_forward('edit');
21
+ }
22
+
23
+ public function editAction()
24
+ {
25
+ $warehouseId = $this->getRequest()->getParam('id');
26
+ $warehouseModel = Mage::getModel('customshipping/warehouse')->load($warehouseId);
27
+
28
+ if ($warehouseModel->getId() || $warehouseId == 0) {
29
+
30
+ Mage::register('warehouse_data', $warehouseModel);
31
+
32
+ $this->loadLayout();
33
+ $this->_setActiveMenu('customshipping/items');
34
+
35
+ $this->_addBreadcrumb(Mage::helper('adminhtml')->__('Warehouse Manager'), Mage::helper('adminhtml')->__('Warehouse Manager'));
36
+ $this->_addBreadcrumb(Mage::helper('adminhtml')->__('Warehouse News'), Mage::helper('adminhtml')->__('Warehouse News'));
37
+
38
+ $this->getLayout()->getBlock('head')->setCanLoadExtJs(true);
39
+
40
+ $this->_addContent($this->getLayout()->createBlock('customshipping/adminhtml_warehouse_edit'))
41
+ ->_addLeft($this->getLayout()->createBlock('customshipping/adminhtml_warehouse_edit_tabs'));
42
+
43
+ $this->renderLayout();
44
+ } else {
45
+ Mage::getSingleton('adminhtml/session')->addError(Mage::helper('customshipping')->__('Item does not exist'));
46
+ $this->_redirect('*/*/');
47
+ }
48
+ }
49
+
50
+ public function saveAction()
51
+ {
52
+ if ( $this->getRequest()->getPost() ) {
53
+ try {
54
+ $postData = $this->getRequest()->getPost();
55
+ $warehouseModel = Mage::getModel('customshipping/warehouse');
56
+
57
+ $warehouseModel->setId($this->getRequest()->getParam('id'))
58
+ ->setName($postData['name'])
59
+ ->setIsActive($postData['is_active'])
60
+ ->setCompanyName($postData['company_name'])
61
+ ->setLine1($postData['street_add1'])
62
+ ->setLine2($postData['street_add2'])
63
+ ->setZip($postData['zip'])
64
+ ->setSuburb($postData['suburb'])
65
+ ->setState($postData['state'])
66
+ ->setCountry($postData['country'])
67
+ ->setContactName($postData['contact_name'])
68
+ ->setContactEmail($postData['contact_email'])
69
+ ->setPhone1($postData['phone1'])
70
+ ->setPhone2($postData['phone2'])
71
+ ->setFax($postData['fax'])
72
+ ->save();
73
+
74
+ Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('adminhtml')->__('Item was successfully saved'));
75
+ Mage::getSingleton('adminhtml/session')->setWarehouseData(false);
76
+
77
+ $this->_redirect('*/*/');
78
+ return;
79
+ } catch (Exception $e) {
80
+ Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
81
+ Mage::getSingleton('adminhtml/session')->setWarehouseData($this->getRequest()->getPost());
82
+ $this->_redirect('*/*/edit', array('id' => $this->getRequest()->getParam('id')));
83
+ return;
84
+ }
85
+ }
86
+ $this->_redirect('*/*/');
87
+ }
88
+
89
+
90
+ }
app/code/community/Candf/Customshipping/controllers/Adminhtml/ZoneController.php ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_Adminhtml_ZoneController extends Mage_Adminhtml_Controller_Action
4
+ {
5
+
6
+ protected function _initAction()
7
+ {
8
+ $this->loadLayout()
9
+ ->_setActiveMenu('zone/items')
10
+ ->_addBreadcrumb(Mage::helper('adminhtml')->__('Zone Manager'), Mage::helper('adminhtml')->__('Zone Manager'));
11
+ return $this;
12
+ }
13
+
14
+ public function indexAction() {
15
+ $this->_initAction();
16
+ $this->_addContent($this->getLayout()->createBlock('customshipping/adminhtml_zone'));
17
+ $this->renderLayout();
18
+ }
19
+
20
+ public function editAction()
21
+ {
22
+ $warehouseId = $this->getRequest()->getParam('id');
23
+ $warehouseModel = Mage::getModel('customshipping/zone')->load($warehouseId);
24
+
25
+ if ($warehouseModel->getId() || $warehouseId == 0) {
26
+
27
+ Mage::register('zone_data', $warehouseModel);
28
+
29
+ $this->loadLayout();
30
+ $this->_setActiveMenu('customshipping/items');
31
+
32
+ $this->_addBreadcrumb(Mage::helper('adminhtml')->__('Zone Manager'), Mage::helper('adminhtml')->__('Zone Manager'));
33
+ $this->_addBreadcrumb(Mage::helper('adminhtml')->__('Zone News'), Mage::helper('adminhtml')->__('Zone News'));
34
+
35
+ $this->getLayout()->getBlock('head')->setCanLoadExtJs(true);
36
+
37
+ $this->_addContent($this->getLayout()->createBlock('customshipping/adminhtml_zone_edit'))
38
+ ->_addLeft($this->getLayout()->createBlock('customshipping/adminhtml_zone_edit_tabs'));
39
+
40
+ $this->renderLayout();
41
+ } else {
42
+ Mage::getSingleton('adminhtml/session')->addError(Mage::helper('customshipping')->__('Item does not exist'));
43
+ $this->_redirect('*/*/');
44
+ }
45
+ }
46
+
47
+ public function newAction()
48
+ {
49
+ $this->_forward('edit');
50
+ }
51
+
52
+ public function saveAction()
53
+ {
54
+ if ( $this->getRequest()->getPost() ) {
55
+ try {
56
+ $postData = $this->getRequest()->getPost();
57
+ $warehouseModel = Mage::getModel('customshipping/zone');
58
+
59
+ $warehouseModel->setId($this->getRequest()->getParam('id'))
60
+ ->setStateName($postData['name'])
61
+ ->setStoreName($postData['name'])
62
+ ->save();
63
+
64
+ Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('adminhtml')->__('Item was successfully saved'));
65
+ Mage::getSingleton('adminhtml/session')->setWarehouseData(false);
66
+
67
+ $this->_redirect('*/*/');
68
+ return;
69
+ } catch (Exception $e) {
70
+ Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
71
+ Mage::getSingleton('adminhtml/session')->setWarehouseData($this->getRequest()->getPost());
72
+ $this->_redirect('*/*/edit', array('id' => $this->getRequest()->getParam('id')));
73
+ return;
74
+ }
75
+ }
76
+ $this->_redirect('*/*/');
77
+ }
78
+
79
+ public function deleteAction()
80
+ {
81
+ if( $this->getRequest()->getParam('id') > 0 ) {
82
+ try {
83
+ $warehouseModel = Mage::getModel('customshipping/zone');
84
+
85
+ $warehouseModel->setId($this->getRequest()->getParam('id'))
86
+ ->delete();
87
+
88
+ Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('adminhtml')->__('Item was successfully deleted'));
89
+ $this->_redirect('*/*/');
90
+ } catch (Exception $e) {
91
+ Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
92
+ $this->_redirect('*/*/edit', array('id' => $this->getRequest()->getParam('id')));
93
+ }
94
+ }
95
+ $this->_redirect('*/*/');
96
+ }
97
+ /**
98
+ * Product grid for AJAX request.
99
+ * Sort and filter result for example.
100
+ */
101
+ public function gridAction()
102
+ {
103
+ $this->loadLayout();
104
+ $this->getResponse()->setBody(
105
+ $this->getLayout()->createBlock('importedit/adminhtml_zone_grid')->toHtml()
106
+ );
107
+ }
108
+
109
+ }
app/code/community/Candf/Customshipping/controllers/CnfcartController.php ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Candf_Customshipping_cnfcartController extends Mage_Core_Controller_Front_Action
4
+ {
5
+
6
+ public function _construct() {
7
+ parent::_construct();
8
+ $this->loadLayout();
9
+ $this->renderLayout();
10
+ }
11
+
12
+
13
+ public function autocompletecartAction() {
14
+ $query = $this->getRequest()->getParam('query');
15
+ echo $this->_makeAutocomplete($query);
16
+ exit;
17
+ }
18
+
19
+ public function popupAction() {
20
+ $post = $this->getRequest()->getPost();
21
+ $popaction = $post['popup-option'];
22
+ echo $popaction;
23
+ die;
24
+
25
+ }
26
+
27
+
28
+
29
+ public function getAdditionalServiceListAction() {
30
+ $getData = $this->getRequest()->getParam('CarrierId');
31
+
32
+ $collection = Mage::getModel('customshipping/additionalservices')->getCollection();
33
+ $getAdditionalServiceData= $collection->addFieldToFilter('Carrier_Id', array('in' =>array('in' => array($getData))))->getData();
34
+ ?>
35
+ <div class="backend-available-additional-servicess">
36
+ <div><p><b>Extra Delivery Options</b></p></div>
37
+ <ul>
38
+ <?php
39
+ foreach($getAdditionalServiceData as $getAdditional) {
40
+ ?>
41
+ <li>
42
+ <input name="additional-services" type="checkbox" value="<?php echo $getAdditional['id'];?>" id="<?php echo $getAdditional['Code'];?>" checked="checked" class="backend-additional"/>
43
+ <label for="s_method_"><?php echo $getAdditional['Carrier_Service_Description'].'- $'.$getAdditional['Carrier_Basic_Charge'];?></label>
44
+ </li>
45
+ <?php
46
+ }
47
+
48
+ ?>
49
+ </ul>
50
+ </div>
51
+ <?php
52
+ die;
53
+ }
54
+
55
+ public function getAdditionalservicesAction() {
56
+
57
+ $getData = $this->getRequest()->getParam('id');
58
+ $getCarrier= explode(" ", $getData);
59
+ $Carrier_Name = $getCarrier['0'];
60
+ $collection = Mage::getModel('customshipping/additionalservices')->getCollection();
61
+ $getAdditionalServiceData= $collection->addFieldToFilter('Code', array('in' =>array('in' => array($Carrier_Name))))->getData();
62
+ ?>
63
+ <div><p><b>Extra Delivery Options</b></p></div>
64
+ <ul>
65
+ <?php
66
+ foreach($getAdditionalServiceData as $getAdditional) {
67
+ ?>
68
+ <li>
69
+ <input name="additional-services[<?php echo $getAdditional['id']?>]" type="checkbox" value="<?php echo $getAdditional['id'];?>" id="<?php echo $getAdditional['Code'];?>" class="radio"/>
70
+ <label for="s_method_"><?php echo $getAdditional['Carrier_Service_Description'].'- $'.$getAdditional['Carrier_Basic_Charge'];?></label>
71
+ </li>
72
+ <?php
73
+ }
74
+ ?>
75
+ </ul>
76
+ <?php
77
+ die;
78
+ }
79
+
80
+ protected function _makeAutocomplete($query)
81
+ {
82
+ $this->_result['query'] = $query;
83
+ $query = preg_replace('/[^a-zA-Z0-9 ]/', ' ', $query);
84
+ $query = trim(preg_replace('/ */', ' ', $query));
85
+ $postcodes = explode(' ', $query);
86
+ if (count($postcodes)) {
87
+ $collection = Mage::getModel('customshipping/postcode')->getCollection();
88
+ foreach ($postcodes as $postcode) {
89
+ $collection->addFieldToFilter('main_table.fulltext', array('like' => '% ' . $postcode . '%'));
90
+ }
91
+ $i = -1;
92
+ if (count($collection) > 0) {
93
+ $this->_result['data'] = array();
94
+ foreach ($collection as $item) {
95
+ $value = $item->getFulltext();
96
+ if (!in_array($value, $this->_result['suggestions'])) {
97
+ $i++;
98
+ $this->_result['suggestions'][$i] = $value;
99
+ $this->_result['data'][$i][] = $item->getData();
100
+ } else {
101
+ $this->_result['data'][$i][] = $item->getData();
102
+ }
103
+ }
104
+ }
105
+ }
106
+
107
+ $core_helper = Mage::helper('core');
108
+ if (method_exists($core_helper, "jsonEncode")) {
109
+ $result = Mage::helper('core')->jsonEncode($this->_result);
110
+ } else {
111
+ $result = Zend_Json::encode($this->_result);
112
+ }
113
+ return $result;
114
+ }
115
+ }
app/code/community/Candf/Customshipping/controllers/IndexController.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Candf_Customshipping_IndexController extends Mage_Core_Controller_Front_Action{
3
+ public function IndexAction() {
4
+ $this->loadLayout();
5
+ $this->renderLayout();
6
+
7
+ }
8
+ }
app/code/community/Candf/Customshipping/etc/config.xml ADDED
@@ -0,0 +1,301 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Candf_Customshipping>
5
+ <version>0.1.0</version>
6
+ </Candf_Customshipping>
7
+ </modules>
8
+ <frontend>
9
+ <routers>
10
+ <customshipping>
11
+ <use>standard</use>
12
+ <args>
13
+ <module>Candf_Customshipping</module>
14
+ <frontName>customshipping</frontName>
15
+ </args>
16
+ </customshipping>
17
+ </routers>
18
+ <layout>
19
+ <updates>
20
+ <customshipping>
21
+ <file>customshipping.xml</file>
22
+ </customshipping>
23
+ </updates>
24
+ </layout>
25
+ </frontend>
26
+ <global>
27
+ <helpers>
28
+ <customshipping>
29
+ <class>Candf_Customshipping_Helper</class>
30
+ </customshipping>
31
+ </helpers>
32
+ <blocks>
33
+ <customshipping>
34
+ <class>Candf_Customshipping_Block</class>
35
+ </customshipping>
36
+ </blocks>
37
+ <models>
38
+ <sales>
39
+ <rewrite>
40
+ <quote_address_total_shipping>Candf_customshipping_Model_Quote_Address_Total_Shipping</quote_address_total_shipping>
41
+ </rewrite>
42
+ </sales>
43
+ <customshipping>
44
+ <class>Candf_Customshipping_Model</class>
45
+ <resourceModel>customshipping_mysql4</resourceModel>
46
+ </customshipping>
47
+ <customshipping_mysql4>
48
+ <class>Candf_Customshipping_Model_Mysql4</class>
49
+ <entities>
50
+ <zone>
51
+ <table>candf_zone</table>
52
+ </zone>
53
+ <rule>
54
+ <table>candf_rule</table>
55
+ </rule>
56
+ <postcode>
57
+ <table>candf_pcs</table>
58
+ </postcode>
59
+ <shipment>
60
+ <table>candf_shipment</table>
61
+ </shipment>
62
+ <booking>
63
+ <table>candf_booking</table>
64
+ </booking>
65
+ <order>
66
+ <table>candf_sales_order_items</table>
67
+ </order>
68
+ <shipmenthistory>
69
+ <table>candf_shipment_adminselected</table>
70
+ </shipmenthistory>
71
+ <warehouse>
72
+ <table>candf_warehouse</table>
73
+ </warehouse>
74
+ <boxes>
75
+ <table>candf_availableboxes</table>
76
+ </boxes>
77
+ <additionalservices>
78
+ <table>candf_additional_services</table>
79
+ </additionalservices>
80
+ <shipmentadditional>
81
+ <table>candf_shipment_additional_services</table>
82
+ </shipmentadditional>
83
+ </entities>
84
+ </customshipping_mysql4>
85
+ </models>
86
+ <events>
87
+ <sales_order_place_after>
88
+ <observers>
89
+ <customshipping>
90
+ <type>singleton</type>
91
+ <class>Candf_Customshipping_Model_Observer</class>
92
+ <method>createCustomshippingShipment</method>
93
+ </customshipping>
94
+ </observers>
95
+ </sales_order_place_after>
96
+
97
+ <checkout_controller_onepage_save_shipping_method>
98
+ <observers>
99
+ <customshipping>
100
+ <type>singleton</type>
101
+ <class>Candf_Customshipping_Model_Observer</class>
102
+ <method>salesOrderShipmentSaveBefore</method>
103
+ </customshipping>
104
+ </observers>
105
+ </checkout_controller_onepage_save_shipping_method>
106
+ </events>
107
+ <resources>
108
+ <customshipping_setup>
109
+ <setup>
110
+ <module>Candf_Customshipping</module>
111
+ <class>Mage_Eav_Model_Entity_Setup</class>
112
+ </setup>
113
+ <connection>
114
+ <use>core_setup</use>
115
+ </connection>
116
+ </customshipping_setup>
117
+ <customshipping_write>
118
+ <connection>
119
+ <use>core_write</use>
120
+ </connection>
121
+ </customshipping_write>
122
+ <customshipping_read>
123
+ <connection>
124
+ <use>core_read</use>
125
+ </connection>
126
+ </customshipping_read>
127
+ </resources>
128
+ </global>
129
+ <default>
130
+ <carriers>
131
+ <candf_customshipping>
132
+ <active>1</active>
133
+ <model>Candf_Customshipping_Model_Carrier_ShippingMethod</model>
134
+ <title>Candf Shipping</title>
135
+ <name>Candf Shipping</name>
136
+ <price></price>
137
+ </candf_customshipping>
138
+ </carriers>
139
+ <candf>
140
+ <general>
141
+ <active><![CDATA[1]]></active>
142
+ <sandbox><![CDATA[1]]></sandbox>
143
+ <merchantid><![CDATA[10147]]></merchantid>
144
+ <api><![CDATA[0f2133b9-8cf9-46ae-b6f5-9aae376854a9]]></api>
145
+ <password><![CDATA[dyn123]]></password>
146
+ </general>
147
+ <countries>
148
+ <sallowspecific><![CDATA[1]]></sallowspecific>
149
+ <specificcountry><![CDATA[AU]]></specificcountry>
150
+ </countries>
151
+ <rule>
152
+ <rulestatus><![CDATA[0]]></rulestatus>
153
+ </rule>
154
+ <insurance>
155
+ <status><![CDATA[optional]]></status>
156
+ <insurance_markup><![CDATA[]]></insurance_markup>
157
+ </insurance>
158
+ <units>
159
+ <measure><![CDATA[Centimetres]]></measure>
160
+ <weight><![CDATA[Kilograms]]></weight>
161
+ </units>
162
+ <packaging>
163
+ <packagetype><![CDATA[1]]></packagetype>
164
+ <length><![CDATA[1]]></length>
165
+ <width><![CDATA[1]]></width>
166
+ <height><![CDATA[1]]></height>
167
+ </packaging>
168
+ <warehouse>
169
+ <warehouse_companyname><![CDATA[cnglobal]]></warehouse_companyname>
170
+ <warehouse_firstname><![CDATA[chathura]]></warehouse_firstname>
171
+ <warehouse_lastname><![CDATA[janaka]]></warehouse_lastname>
172
+ <warehouse_adrs1><![CDATA[no 25 north block]]></warehouse_adrs1>
173
+ <warehouse_adrs2><![CDATA[test]]></warehouse_adrs2>
174
+ <warehouse_code><![CDATA[2000]]></warehouse_code>
175
+ <warehouse_suburb><![CDATA[Sydney]]></warehouse_suburb>
176
+ <warehouse_state><![CDATA[New South Wales]]></warehouse_state>
177
+ <warehouse_country><![CDATA[AU]]></warehouse_country>
178
+ <warehouse_email><![CDATA[chathura@cnglobal.com.au]]></warehouse_email>
179
+ <warehouse_telephone><![CDATA[1231231231]]></warehouse_telephone>
180
+ <warehouse_openhour><![CDATA[08:00]]></warehouse_openhour>
181
+ <warehouse_closehour><![CDATA[17:00]]></warehouse_closehour>
182
+ </warehouse>
183
+ <payment>
184
+ <payment_type><![CDATA[credit]]></payment_type>
185
+ <creditcart_number><![CDATA[4111111111111111]]></creditcart_number>
186
+ <creditcart_type><![CDATA[Visa]]></creditcart_type>
187
+ <creditcart_custmername><![CDATA[chathura]]></creditcart_custmername>
188
+ <creditcart_cvv><![CDATA[123]]></creditcart_cvv>
189
+ <creditcart_expiry_month><![CDATA[12]]></creditcart_expiry_month>
190
+ <creditcart_expiry_year><![CDATA[15]]></creditcart_expiry_year>
191
+ </payment>
192
+ <options>
193
+ <careername_caption><![CDATA[Marchent Store]]></careername_caption>
194
+ <estimate_shipping_display><![CDATA[1]]></estimate_shipping_display>
195
+ <label_type><![CDATA[1]]></label_type>
196
+ <careername_display><![CDATA[2]]></careername_display>
197
+ </options>
198
+ <markup>
199
+ <markup_type><![CDATA[rate]]></markup_type>
200
+ <markup_price><![CDATA[10]]></markup_price>
201
+ <shippingmethod_count><![CDATA[6]]></shippingmethod_count>
202
+ </markup>
203
+ <handlingfee>
204
+ <handlingfee_active><![CDATA[0]]></handlingfee_active>
205
+ <handlingfee_price><![CDATA[]]></handlingfee_price>
206
+ <handlingfee_type><![CDATA[rate]]></handlingfee_type>
207
+ </handlingfee>
208
+ <manualycreateboxes>
209
+ <manualycreatstatus><![CDATA[0]]></manualycreatstatus>
210
+ </manualycreateboxes>
211
+ </candf>
212
+ </default>
213
+ <admin>
214
+ <routers>
215
+ <customshipping>
216
+ <use>admin</use>
217
+ <args>
218
+ <module>Candf_Customshipping</module>
219
+ <frontName>admin_customshipping</frontName>
220
+ </args>
221
+ </customshipping>
222
+ </routers>
223
+ </admin>
224
+ <adminhtml>
225
+ <menu>
226
+ <customshipping module="customshipping">
227
+ <title>CandF</title>
228
+ <sort_order>85</sort_order>
229
+ <children>
230
+ <candfshipment translate="title" module="customshipping">
231
+ <title>Manage Shipments</title>
232
+ <sort_order>5</sort_order>
233
+ <action>customshipping/adminhtml_shipment</action>
234
+ </candfshipment>
235
+ <location translate="title" module="customshipping">
236
+ <title>Location</title>
237
+ <sort_order>10</sort_order>
238
+ <children>
239
+ <warehouse translate="title" module="customshipping">
240
+ <title>Manage Warehouses</title>
241
+ <sort_order>5</sort_order>
242
+ <action>customshipping/adminhtml_warehouse</action>
243
+ </warehouse>
244
+ </children>
245
+ </location>
246
+ <rule translate="title" module="customshipping">
247
+ <title>Rule Engine</title>
248
+ <sort_order>15</sort_order>
249
+ <action>customshipping/adminhtml_rule</action>
250
+ </rule>
251
+ <availableboxes translate="title" module="customshipping">
252
+ <title>Available boxes</title>
253
+ <sort_order>16</sort_order>
254
+ <action>customshipping/adminhtml_boxes</action>
255
+ </availableboxes>
256
+ </children>
257
+ </customshipping>
258
+ </menu>
259
+ <acl>
260
+ <resources>
261
+ <all>
262
+ <title>Allow Everything</title>
263
+ </all>
264
+ <admin>
265
+ <children>
266
+
267
+
268
+ <system>
269
+ <children>
270
+ <config>
271
+ <children>
272
+ <candf>
273
+ <title>Customshipping section</title>
274
+ </candf>
275
+ </children>
276
+ </config>
277
+ </children>
278
+ </system>
279
+
280
+ <customshipping translate="title" module="customshipping">
281
+ <title>Customshipping</title>
282
+ <sort_order>1000</sort_order>
283
+ <children>
284
+ <customshippingbackend translate="title">
285
+ <title>Backend Page Title</title>
286
+ </customshippingbackend>
287
+ </children>
288
+ </customshipping>
289
+ </children>
290
+ </admin>
291
+ </resources>
292
+ </acl>
293
+ <layout>
294
+ <updates>
295
+ <customshipping>
296
+ <file>customshipping.xml</file>
297
+ </customshipping>
298
+ </updates>
299
+ </layout>
300
+ </adminhtml>
301
+ </config>
app/code/community/Candf/Customshipping/etc/system.xml ADDED
@@ -0,0 +1,613 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <config>
3
+ <tabs>
4
+ <candf translate="label" module="customshipping">
5
+ <label>CandF Extensions</label>
6
+ <sort_order>100</sort_order>
7
+ </candf>
8
+ </tabs>
9
+ <sections>
10
+ <candf translate="label" module="customshipping">
11
+ <label>CandF Settings</label>
12
+ <tab>candf</tab>
13
+ <sort_order>1000</sort_order>
14
+ <show_in_default>1</show_in_default>
15
+ <show_in_website>1</show_in_website>
16
+ <show_in_store>1</show_in_store>
17
+ <groups>
18
+ <general translate="label" module="customshipping">
19
+ <label>Configuration Settings</label>
20
+ <frontend_type>text</frontend_type>
21
+ <sort_order>1000</sort_order>
22
+ <show_in_default>1</show_in_default>
23
+ <show_in_website>1</show_in_website>
24
+ <show_in_store>1</show_in_store>
25
+ <fields>
26
+ <active translate="label">
27
+ <label>Enabled</label>
28
+ <frontend_type>select</frontend_type>
29
+ <source_model>adminhtml/system_config_source_yesno</source_model>
30
+ <sort_order>1</sort_order>
31
+ <show_in_default>1</show_in_default>
32
+ <show_in_website>1</show_in_website>
33
+ <show_in_store>1</show_in_store>
34
+ </active>
35
+ <sandbox translate="label">
36
+ <label>Sandbox</label>
37
+ <frontend_type>select</frontend_type>
38
+ <sort_order>2</sort_order>
39
+ <source_model>adminhtml/system_config_source_yesno</source_model>
40
+ <show_in_default>1</show_in_default>
41
+ <show_in_website>1</show_in_website>
42
+ <show_in_store>1</show_in_store>
43
+ <comment><![CDATA[If set to "Yes", the sandbox (testing) service will be used (usually set to "No" on a live site)]]></comment>
44
+ </sandbox>
45
+ <merchantid translate="label">
46
+ <label>Merchant Id</label>
47
+ <frontend_type>text</frontend_type>
48
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
49
+ <sort_order>3</sort_order>
50
+ <show_in_default>1</show_in_default>
51
+ <show_in_website>1</show_in_website>
52
+ <show_in_store>1</show_in_store>
53
+ <validate>required-entry</validate>
54
+ </merchantid>
55
+ <api translate="label">
56
+ <label>Api Key</label>
57
+ <frontend_type>text</frontend_type>
58
+ <sort_order>4</sort_order>
59
+ <show_in_default>1</show_in_default>
60
+ <show_in_website>1</show_in_website>
61
+ <show_in_store>1</show_in_store>
62
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
63
+ <validate>required-entry</validate>
64
+ </api>
65
+ <password translate="label">
66
+ <label>Password</label>
67
+ <frontend_type>text</frontend_type>
68
+ <sort_order>5</sort_order>
69
+ <show_in_default>1</show_in_default>
70
+ <show_in_website>1</show_in_website>
71
+ <show_in_store>1</show_in_store>
72
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
73
+ <validate>required-entry</validate>
74
+ </password>
75
+ </fields>
76
+ </general>
77
+ <countries translate="label" module="customshipping">
78
+ <label>Country option</label>
79
+ <front_type>text</front_type>
80
+ <sort_order>1005</sort_order>
81
+ <show_in_default>1</show_in_default>
82
+ <show_in_website>1</show_in_website>
83
+ <show_in_website>1</show_in_website>
84
+ <fields>
85
+ <sallowspecific translate="label">
86
+ <label>Ship to applicable countries</label>
87
+ <frontend_type>select</frontend_type>
88
+ <sort_order>6</sort_order>
89
+ <frontend_class>shipping-applicable-country</frontend_class>
90
+ <source_model>adminhtml/system_config_source_shipping_allspecificcountries</source_model>
91
+ <show_in_default>1</show_in_default>
92
+ <show_in_website>1</show_in_website>
93
+ <show_in_store>1</show_in_store>
94
+ </sallowspecific>
95
+ <specificcountry translate="label">
96
+ <label>Ship to Specific countries</label>
97
+ <frontend_type>multiselect</frontend_type>
98
+ <sort_order>7</sort_order>
99
+ <source_model>adminhtml/system_config_source_country</source_model>
100
+ <show_in_default>1</show_in_default>
101
+ <show_in_website>1</show_in_website>
102
+ <show_in_store>1</show_in_store>
103
+ </specificcountry>
104
+ </fields>
105
+ </countries>
106
+ <rule translate="label" module="customshipping">
107
+ <label>Rule Engine</label>
108
+ <frontend_type>text</frontend_type>
109
+ <sort_order>1010</sort_order>
110
+ <show_in_default>1</show_in_default>
111
+ <show_in_website>1</show_in_website>
112
+ <show_in_store>1</show_in_store>
113
+ <fields>
114
+ <rulestatus translate="label">
115
+ <label>Enable</label>
116
+ <frontend_type>select</frontend_type>
117
+ <sort_order>1</sort_order>
118
+ <source_model>adminhtml/system_config_source_yesno</source_model>
119
+ <show_in_default>1</show_in_default>
120
+ <show_in_website>1</show_in_website>
121
+ <show_in_store>1</show_in_store>
122
+ <comment>
123
+ <![CDATA[
124
+ <b>Yes</b> - You will be albe to add rules as follows <br/>
125
+ <b>Dynamic Carriers</b><br/>
126
+ - Preferable Carriers<br/>
127
+ - Express Carriers<br/>
128
+ - Sameday Carriers to Manage Shipments<br/>
129
+ <b>Pricing</b><br/>
130
+ - Free Shipping - no charge to customer.<br/>
131
+ - Fixed Price / Flat Rate<br/>
132
+ - Dynamic Pricing<br/>
133
+ &nbsp;* All: All quotes from carriers in "allowed carriers" <br/>&nbsp;&nbsp;above are shown for the customer to choose from.<br/>
134
+ &nbsp;* Cheapest: Only the cheapest quote is shown.<br/>
135
+ &nbsp;* Fastest: Only the fastest quote is shown.<br/>
136
+ &nbsp;* Cheapest and Fastest: The customer can choose<br/>&nbsp;&nbsp; between the cheapest or the fastest quote.<br/>
137
+ <b>To access "rule engine"<br/>
138
+ go to the navigation Candf -> Rule Engine</b>
139
+ ]]>
140
+ </comment>
141
+ </rulestatus>
142
+ </fields>
143
+ </rule>
144
+ <insurance translate="label" module="customshipping">
145
+ <label>Warranty</label>
146
+ <frontend_type>text</frontend_type>
147
+ <sort_order>1015</sort_order>
148
+ <show_in_default>1</show_in_default>
149
+ <show_in_website>1</show_in_website>
150
+ <show_in_store>1</show_in_store>
151
+ <fields>
152
+ <status translate="label">
153
+ <label>Warranty</label>
154
+ <frontend_type>select</frontend_type>
155
+ <sort_order>1</sort_order>
156
+ <source_model>customshipping/System_Config_backend_Insurance</source_model>
157
+ <show_in_default>1</show_in_default>
158
+ <show_in_website>1</show_in_website>
159
+ <show_in_store>1</show_in_store>
160
+ <comment>
161
+ <![CDATA[
162
+ Disabled - This option is unavailable to users.<br/>
163
+ Optional - The option is presented during checkout.<br/>
164
+ Mandatory - Warranty must be added to all orders.
165
+ ]]>
166
+ </comment>
167
+ </status>
168
+ <insurance_markup translate="label">
169
+ <label>Warranty Markup</label>
170
+ <frontend_type>text</frontend_type>
171
+ <sort_order>2</sort_order>
172
+ <show_in_default>1</show_in_default>
173
+ <show_in_website>1</show_in_website>
174
+ <show_in_store>1</show_in_store>
175
+ </insurance_markup>
176
+ </fields>
177
+ </insurance>
178
+ <units translate="label" module="customshipping">
179
+ <label>Units</label>
180
+ <frontend_type>text</frontend_type>
181
+ <sort_order>1020</sort_order>
182
+ <show_in_default>1</show_in_default>
183
+ <show_in_website>1</show_in_website>
184
+ <show_in_store>1</show_in_store>
185
+ <fields>
186
+ <measure translate="label">
187
+ <label>Measure Unit</label>
188
+ <frontend_type>select</frontend_type>
189
+ <source_model>customshipping/system_config_backend_unit_measure</source_model>
190
+ <sort_order>1</sort_order>
191
+ <show_in_default>1</show_in_default>
192
+ <show_in_website>1</show_in_website>
193
+ <show_in_store>1</show_in_store>
194
+ <comment><![CDATA[The units used for product measurements]]></comment>
195
+ </measure>
196
+ <weight translate="label">
197
+ <label>Weight Unit</label>
198
+ <frontend_type>select</frontend_type>
199
+ <source_model>customshipping/system_config_backend_unit_weight</source_model>
200
+ <sort_order>2</sort_order>
201
+ <show_in_default>1</show_in_default>
202
+ <show_in_website>1</show_in_website>
203
+ <show_in_store>1</show_in_store>
204
+ <comment><![CDATA[The units used for product weights]]></comment>
205
+ </weight>
206
+ </fields>
207
+ </units>
208
+ <packaging translate="label" module="customshipping">
209
+ <label>Packaging</label>
210
+ <frontend_type>text</frontend_type>
211
+ <sort_order>1025</sort_order>
212
+ <show_in_default>1</show_in_default>
213
+ <show_in_website>1</show_in_website>
214
+ <show_in_store>1</show_in_store>
215
+ <comment><![CDATA[<div style="padding:10px;background-color:#fff;border:1px solid #EA7601;margin-bottom:7px;">Default values will be used for all products that do not have product specific dimensions configured.</div>]]></comment>
216
+ <fields>
217
+ <packagetype translate="label">
218
+ <label>Package Type</label>
219
+ <frontend_type>select</frontend_type>
220
+ <source_model>customshipping/System_Config_Backend_Packaging_Packagetype</source_model>
221
+ <sort_order>1</sort_order>
222
+ <show_in_default>35</show_in_default>
223
+ <show_in_website>1</show_in_website>
224
+ <show_in_store>1</show_in_store>
225
+ </packagetype>
226
+ <length>
227
+ <label>Length</label>
228
+ <frontend_type>text</frontend_type>
229
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
230
+ <sort_order>10</sort_order>
231
+ <show_in_default>1</show_in_default>
232
+ <show_in_website>1</show_in_website>
233
+ <show_in_store>0</show_in_store>
234
+ <validate>required-entry validate-number</validate>
235
+ </length>
236
+ <width>
237
+ <label>Width</label>
238
+ <frontend_type>text</frontend_type>
239
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
240
+ <sort_order>20</sort_order>
241
+ <show_in_default>1</show_in_default>
242
+ <show_in_website>1</show_in_website>
243
+ <show_in_store>0</show_in_store>
244
+ <validate>required-entry validate-number</validate>
245
+ </width>
246
+ <height>
247
+ <label>Height</label>
248
+ <frontend_type>text</frontend_type>
249
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
250
+ <sort_order>30</sort_order>
251
+ <show_in_default>1</show_in_default>
252
+ <show_in_website>1</show_in_website>
253
+ <show_in_store>0</show_in_store>
254
+ <validate>required-entry validate-number</validate>
255
+ <comment><![CDATA[If unknown use 10x10x10]]></comment>
256
+ </height>
257
+ </fields>
258
+ </packaging>
259
+ <warehouse translate="label" module="customshipping">
260
+ <label>Warehouse Address</label>
261
+ <frontend_type>text</frontend_type>
262
+ <sort_order>1030</sort_order>
263
+ <show_in_default>1</show_in_default>
264
+ <show_in_website>1</show_in_website>
265
+ <show_in_store>1</show_in_store>
266
+ <fields>
267
+ <warehouse_companyname translate="label">
268
+ <label>Company Name</label>
269
+ <frontend_type>text</frontend_type>
270
+ <sort_order>1</sort_order>
271
+ <show_in_default>1</show_in_default>
272
+ <show_in_website>1</show_in_website>
273
+ <show_in_store>1</show_in_store>
274
+ </warehouse_companyname>
275
+ <warehouse_firstname translate="label">
276
+ <label>First Name</label>
277
+ <frontend_type>text</frontend_type>
278
+ <sort_order>2</sort_order>
279
+ <show_in_default>1</show_in_default>
280
+ <show_in_website>1</show_in_website>
281
+ <show_in_store>1</show_in_store>
282
+ </warehouse_firstname>
283
+ <warehouse_lastname translate="label">
284
+ <label>Last Name</label>
285
+ <frontend_type>text</frontend_type>
286
+ <sort_order>3</sort_order>
287
+ <show_in_default>1</show_in_default>
288
+ <show_in_website>1</show_in_website>
289
+ <show_in_store>1</show_in_store>
290
+ </warehouse_lastname>
291
+ <warehouse_adrs1 translate="label">
292
+ <label>Street Address1</label>
293
+ <frontend_type>text</frontend_type>
294
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
295
+ <sort_order>5</sort_order>
296
+ <show_in_default>1</show_in_default>
297
+ <show_in_website>1</show_in_website>
298
+ <show_in_store>1</show_in_store>
299
+ <validate>required-entry</validate>
300
+ </warehouse_adrs1>
301
+ <warehouse_adrs2 translate="label">
302
+ <label>Street Address2</label>
303
+ <frontend_type>text</frontend_type>
304
+ <sort_order>6</sort_order>
305
+ <show_in_default>1</show_in_default>
306
+ <show_in_website>1</show_in_website>
307
+ <show_in_store>1</show_in_store>
308
+ </warehouse_adrs2>
309
+ <warehouse_code translate="label">
310
+ <label>Post Code</label>
311
+ <frontend_type>text</frontend_type>
312
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
313
+ <sort_order>7</sort_order>
314
+ <show_in_default>1</show_in_default>
315
+ <show_in_website>1</show_in_website>
316
+ <show_in_store>1</show_in_store>
317
+ <validate>required-entry</validate>
318
+ </warehouse_code>
319
+ <warehouse_suburb translate="label">
320
+ <label>Warehouse Suburb</label>
321
+ <frontend_type>text</frontend_type>
322
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
323
+ <sort_order>8</sort_order>
324
+ <show_in_default>1</show_in_default>
325
+ <show_in_website>1</show_in_website>
326
+ <show_in_store>1</show_in_store>
327
+ <validate>required-entry</validate>
328
+ </warehouse_suburb>
329
+ <warehouse_state translate="label">
330
+ <label>State</label>
331
+ <frontend_type>text</frontend_type>
332
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
333
+ <sort_order>9</sort_order>
334
+ <show_in_default>1</show_in_default>
335
+ <show_in_website>1</show_in_website>
336
+ <show_in_store>1</show_in_store>
337
+ <validate>required-entry</validate>
338
+ </warehouse_state>
339
+ <warehouse_country translate="label">
340
+ <label>Country</label>
341
+ <frontend_type>select</frontend_type>
342
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
343
+ <sort_order>10</sort_order>
344
+ <source_model>adminhtml/system_config_source_country</source_model>
345
+ <show_in_default>1</show_in_default>
346
+ <show_in_website>1</show_in_website>
347
+ <show_in_store>1</show_in_store>
348
+ </warehouse_country>
349
+ <warehouse_email translate="label">
350
+ <label>Email</label>
351
+ <frontend_type>text</frontend_type>
352
+ <sort_order>11</sort_order>
353
+ <show_in_default>1</show_in_default>
354
+ <show_in_website>1</show_in_website>
355
+ <show_in_store>1</show_in_store>
356
+ <validate>validate-email</validate>
357
+ </warehouse_email>
358
+ <warehouse_telephone translate="label">
359
+ <label>Telephone Number</label>
360
+ <frontend_type>text</frontend_type>
361
+ <sort_order>12</sort_order>
362
+ <show_in_default>1</show_in_default>
363
+ <show_in_website>1</show_in_website>
364
+ <show_in_store>1</show_in_store>
365
+ </warehouse_telephone>
366
+ <warehouse_openhour translate="label">
367
+ <label>Open Hour</label>
368
+ <frontend_type>text</frontend_type>
369
+ <sort_order>13</sort_order>
370
+ <show_in_default>8:00</show_in_default>
371
+ <show_in_website>1</show_in_website>
372
+ <show_in_store>1</show_in_store>
373
+ <comment>
374
+ <![CDATA[For example 08:00]]>
375
+ </comment>
376
+ </warehouse_openhour>
377
+ <warehouse_closehour translate="label">
378
+ <label>Close Hour</label>
379
+ <frontend_type>text</frontend_type>
380
+ <sort_order>14</sort_order>
381
+ <show_in_default>17:00</show_in_default>
382
+ <show_in_website>1</show_in_website>
383
+ <show_in_store>1</show_in_store>
384
+ <comment>
385
+ <![CDATA[For example 17:00]]>
386
+ </comment>
387
+ </warehouse_closehour>
388
+ </fields>
389
+ </warehouse>
390
+ <payment translate="label">
391
+ <label>Payment Methods</label>
392
+ <frontend_type>text</frontend_type>
393
+ <sort_order>1035</sort_order>
394
+ <show_in_default>1</show_in_default>
395
+ <show_in_website>1</show_in_website>
396
+ <show_in_store>1</show_in_store> c
397
+ <fields>
398
+ <payment_type translate="label">
399
+ <label>Payment Type</label>
400
+ <frontend_type>select</frontend_type>
401
+ <source_model>customshipping/System_Config_Backend_Payment_Type</source_model>
402
+ <sort_order>1</sort_order>
403
+ <show_in_default>1</show_in_default>
404
+ <show_in_website>1</show_in_website>
405
+ <show_in_store>1</show_in_store>
406
+ </payment_type>
407
+ <creditcart_number translate="label">
408
+ <label>Credit Card Number</label>
409
+ <frontend_type>text</frontend_type>
410
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
411
+ <sort_order>2</sort_order>
412
+ <show_in_default>1</show_in_default>
413
+ <show_in_website>1</show_in_website>
414
+ <show_in_store>1</show_in_store>
415
+ <validate>required-entry</validate>
416
+ <depends><payment_type>credit</payment_type></depends>
417
+ </creditcart_number>
418
+ <creditcart_type translate="label">
419
+ <label>Credit Card Type</label>
420
+ <frontend_type>text</frontend_type>
421
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
422
+ <sort_order>3</sort_order>
423
+ <show_in_default>1</show_in_default>
424
+ <show_in_website>1</show_in_website>
425
+ <show_in_store>1</show_in_store>
426
+ <validate>required-entry</validate>
427
+ <depends><payment_type>credit</payment_type></depends>
428
+ </creditcart_type>
429
+ <creditcart_custmername translate="label">
430
+ <label>Customer Name on the Card</label>
431
+ <frontend_type>text</frontend_type>
432
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
433
+ <sort_order>4</sort_order>
434
+ <show_in_default>1</show_in_default>
435
+ <show_in_website>1</show_in_website>
436
+ <show_in_store>1</show_in_store>
437
+ <validate>required-entry</validate>
438
+ <depends><payment_type>credit</payment_type></depends>
439
+ </creditcart_custmername>
440
+ <creditcart_cvv translate="label">
441
+ <label>Customer Cvv</label>
442
+ <frontend_type>text</frontend_type>
443
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
444
+ <sort_order>5</sort_order>
445
+ <show_in_default>1</show_in_default>
446
+ <show_in_website>1</show_in_website>
447
+ <show_in_store>1</show_in_store>
448
+ <validate>required-entry</validate>
449
+ <depends><payment_type>credit</payment_type></depends>
450
+ </creditcart_cvv>
451
+ <creditcart_expiry_month translate="label">
452
+ <label>Customer Expiry Month</label>
453
+ <frontend_type>text</frontend_type>
454
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
455
+ <sort_order>6</sort_order>
456
+ <show_in_default>1</show_in_default>
457
+ <show_in_website>1</show_in_website>
458
+ <show_in_store>1</show_in_store>
459
+ <validate>required-entry</validate>
460
+ <depends><payment_type>credit</payment_type></depends>
461
+ </creditcart_expiry_month>
462
+ <creditcart_expiry_year translate="label">
463
+ <label>Customer Expiry Year</label>
464
+ <frontend_type>text</frontend_type>
465
+ <frontend_model>customshipping/adminhtml_system_config_backend_form_field_required</frontend_model>
466
+ <sort_order>7</sort_order>
467
+ <show_in_default>1</show_in_default>
468
+ <show_in_website>1</show_in_website>
469
+ <show_in_store>1</show_in_store>
470
+ <validate>required-entry</validate>
471
+ <depends><payment_type>credit</payment_type></depends>
472
+ </creditcart_expiry_year>
473
+ </fields>
474
+ </payment>
475
+ <options>
476
+ <label>Career Options</label>
477
+ <frontend_type>text</frontend_type>
478
+ <sort_order>1040</sort_order>
479
+ <show_in_default>1</show_in_default>
480
+ <show_in_website>1</show_in_website>
481
+ <show_in_store>1</show_in_store>
482
+ <fields>
483
+ <careername_display translate="label">
484
+ <label>Show Career Names</label>
485
+ <frontend_type>select</frontend_type>
486
+ <source_model>adminhtml/system_config_source_yesno</source_model>
487
+ <sort_order>1</sort_order>
488
+ <show_in_default>1</show_in_default>
489
+ <show_in_website>1</show_in_website>
490
+ <show_in_store>1</show_in_store>
491
+ <comment>
492
+ <![CDATA[
493
+ Yes - Actual career name is diplayed to users.<br/>
494
+ No - Provide caption to display instead of creernames.<br/>
495
+
496
+ ]]>
497
+ </comment>
498
+ </careername_display>
499
+ <careername_caption translate="label">
500
+ <label>Alternative Caption</label>
501
+ <frontend_type>text</frontend_type>
502
+ <sort_order>2</sort_order>
503
+ <show_in_default>1</show_in_default>
504
+ <show_in_website>1</show_in_website>
505
+ <show_in_store>1</show_in_store>
506
+ </careername_caption>
507
+ <label_type translate="label">
508
+ <label>Label Type</label>
509
+ <frontend_type>select</frontend_type>
510
+ <source_model>customshipping/System_Config_Backend_label_Type</source_model>
511
+ <sort_order>1</sort_order>
512
+ <show_in_default>1</show_in_default>
513
+ <show_in_website>1</show_in_website>
514
+ <show_in_store>1</show_in_store>
515
+ </label_type>
516
+ </fields>
517
+ </options>
518
+ <markup translate="label">
519
+ <label>Markup Rates</label>
520
+ <frontend_type>text</frontend_type>
521
+ <sort_order>1045</sort_order>
522
+ <show_in_default>1</show_in_default>
523
+ <show_in_website>1</show_in_website>
524
+ <show_in_store>1</show_in_store>
525
+ <fields>
526
+ <markup_type translate="label">
527
+ <label>Markup Type</label>
528
+ <frontend_type>select</frontend_type>
529
+ <source_model>customshipping/system_config_backend_markup_type</source_model>
530
+ <sort_order>1</sort_order>
531
+ <show_in_default>1</show_in_default>
532
+ <show_in_website>1</show_in_website>
533
+ <show_in_store>1</show_in_store>
534
+ </markup_type>
535
+ <markup_price translate="label">
536
+ <label>Markup Price</label>
537
+ <frontend_type>text</frontend_type>
538
+ <sort_order>2</sort_order>
539
+ <show_in_default>1</show_in_default>
540
+ <show_in_website>1</show_in_website>
541
+ <show_in_store>1</show_in_store>
542
+ </markup_price>
543
+ <shippingmethod_count translate="label">
544
+ <label>Shipping Method Count</label>
545
+ <frontend_type>text</frontend_type>
546
+ <sort_order>3</sort_order>
547
+ <show_in_default>1</show_in_default>
548
+ <show_in_website>1</show_in_website>
549
+ <show_in_store>1</show_in_store>
550
+ </shippingmethod_count>
551
+ </fields>
552
+ </markup>
553
+ <handlingfee translate="label">
554
+ <label>Handling Fee</label>
555
+ <frontend_type>text</frontend_type>
556
+ <sort_order>1050</sort_order>
557
+ <show_in_default>1</show_in_default>
558
+ <show_in_website>1</show_in_website>
559
+ <show_in_store>1</show_in_store>
560
+ <fields>
561
+ <handlingfee_active translate="label">
562
+ <label>Enabled</label>
563
+ <frontend_type>select</frontend_type>
564
+ <source_model>adminhtml/system_config_source_yesno</source_model>
565
+ <sort_order>1</sort_order>
566
+ <show_in_default>1</show_in_default>
567
+ <show_in_website>1</show_in_website>
568
+ <show_in_store>1</show_in_store>
569
+ </handlingfee_active>
570
+ <handlingfee_type translate="label">
571
+ <label>Handling Fee Calculaion</label>
572
+ <frontend_type>select</frontend_type>
573
+ <source_model>customshipping/system_config_backend_handlingfee_type</source_model>
574
+ <sort_order>1</sort_order>
575
+ <show_in_default>1</show_in_default>
576
+ <show_in_website>1</show_in_website>
577
+ <show_in_store>1</show_in_store>
578
+ </handlingfee_type>
579
+ <handlingfee_price translate="label">
580
+ <label>Handling Fee/Markup</label>
581
+ <frontend_type>text</frontend_type>
582
+ <sort_order>2</sort_order>
583
+ <show_in_default>1</show_in_default>
584
+ <show_in_website>1</show_in_website>
585
+ <show_in_store>1</show_in_store>
586
+ </handlingfee_price>
587
+
588
+ </fields>
589
+ </handlingfee>
590
+ <manualycreateboxes translate="label" module="customshipping">
591
+ <label>Manualy Create boxes</label>
592
+ <frontend_type>text</frontend_type>
593
+ <sort_order>1090</sort_order>
594
+ <show_in_default>1</show_in_default>
595
+ <show_in_website>1</show_in_website>
596
+ <show_in_store>1</show_in_store>
597
+ <fields>
598
+ <manualycreatstatus translate="label">
599
+ <label>Enable</label>
600
+ <frontend_type>select</frontend_type>
601
+ <sort_order>1</sort_order>
602
+ <source_model>adminhtml/system_config_source_yesno</source_model>
603
+ <show_in_default>1</show_in_default>
604
+ <show_in_website>1</show_in_website>
605
+ <show_in_store>1</show_in_store>
606
+ </manualycreatstatus>
607
+ </fields>
608
+ </manualycreateboxes>
609
+ </groups>
610
+ </candf>
611
+ </sections>
612
+
613
+ </config>
app/code/community/Candf/Customshipping/sql/customshipping_setup/mysql4-install-0.1.0.php ADDED
@@ -0,0 +1,16573 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ // Add Candf attributes
7
+ $installer->addAttributeGroup('catalog_product', 'Default', 'CandF shipping', 91);
8
+ $installer->addAttribute('catalog_product', 'candf_length',
9
+ array(
10
+ 'type' => 'decimal',
11
+ 'label' => 'Length',
12
+ 'group' => 'CandF shipping',
13
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
14
+ 'visible' => true,
15
+ 'required' => true,
16
+ 'user_defined' => false,
17
+ 'searchable' => false,
18
+ 'filterable' => false,
19
+ 'comparable' => false,
20
+ 'visible_on_front' => false,
21
+ 'unique' => false
22
+ )
23
+ );
24
+
25
+ $installer->addAttribute('catalog_product', 'candf_width',
26
+ array(
27
+ 'type' => 'decimal',
28
+ 'label' => 'Width',
29
+ 'group' => 'CandF shipping',
30
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
31
+ 'visible' => true,
32
+ 'required' => true,
33
+ 'user_defined' => false,
34
+ 'searchable' => false,
35
+ 'filterable' => false,
36
+ 'comparable' => false,
37
+ 'visible_on_front' => false,
38
+ 'unique' => false
39
+ )
40
+ );
41
+
42
+ $installer->addAttribute('catalog_product', 'candf_height',
43
+ array(
44
+ 'type' => 'decimal',
45
+ 'label' => 'Height',
46
+ 'group' => 'CandF shipping',
47
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
48
+ 'visible' => true,
49
+ 'required' => true,
50
+ 'user_defined' => false,
51
+ 'searchable' => false,
52
+ 'filterable' => false,
53
+ 'comparable' => false,
54
+ 'visible_on_front' => false,
55
+ 'unique' => false
56
+ )
57
+ );
58
+ $installer->addAttribute('catalog_product', 'candf_packaged_length',
59
+ array(
60
+ 'type' => 'decimal',
61
+ 'label' => 'Packaged Length',
62
+ 'group' => 'CandF shipping',
63
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
64
+ 'visible' => true,
65
+ 'required' => false,
66
+ 'user_defined' => false,
67
+ 'searchable' => false,
68
+ 'filterable' => false,
69
+ 'comparable' => false,
70
+ 'visible_on_front' => false,
71
+ 'unique' => false
72
+ )
73
+ );
74
+
75
+
76
+ $installer->addAttribute('catalog_product', 'candf_meter_rate',
77
+ array(
78
+ 'type' => 'int',
79
+ 'label' => 'Meter Rate',
80
+ 'group' => 'CandF shipping',
81
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
82
+ 'source' => 'eav/entity_attribute_source_boolean',
83
+ 'input' => 'select',
84
+ 'default' => false,
85
+ 'visible' => true,
86
+ 'required' => false,
87
+ 'user_defined' => false,
88
+ 'searchable' => false,
89
+ 'filterable' => false,
90
+ 'comparable' => false,
91
+ 'visible_on_front' => false,
92
+ 'unique' => false
93
+ )
94
+ );
95
+
96
+ $installer->run("
97
+ DROP TABLE IF EXISTS {$this->getTable('candf_rule')};
98
+ CREATE TABLE IF NOT EXISTS {$this->getTable('candf_rule')} (
99
+ `id` int(11) NOT NULL AUTO_INCREMENT,
100
+ `name` varchar(255) NOT NULL,
101
+ `is_active` tinyint(1) NOT NULL,
102
+ `priority` int(11) DEFAULT NULL,
103
+ `stop_other` tinyint(1) NOT NULL DEFAULT '0',
104
+ `store_ids` text NOT NULL,
105
+ `condition_weight` text,
106
+ `condition_subtotal` text,
107
+ `condition_items` text,
108
+ `condition_zone` mediumtext,
109
+ `condition_time_type` tinyint(4) DEFAULT NULL,
110
+ `condition_time_value` varchar(8) DEFAULT NULL,
111
+ `action_rate_type` tinyint(4) NOT NULL,
112
+ `action_static_value` float DEFAULT NULL,
113
+ `action_static_label` varchar(500) DEFAULT NULL,
114
+ `action_prefered_carrie_type` varchar(45) NOT NULL DEFAULT 'All',
115
+ `action_dynamic_carriers` text,
116
+ `action_dynamic_filter` tinyint(4) DEFAULT NULL,
117
+ `action_dynamic_adjustment_type` tinyint(4) DEFAULT NULL,
118
+ `action_dynamic_adjustment_value` varchar(15) DEFAULT NULL,
119
+ `action_restrict_note` text,
120
+ PRIMARY KEY (`id`)
121
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
122
+
123
+ DROP TABLE IF EXISTS {$this->getTable('candf_shipment_adminselected')};
124
+ CREATE TABLE IF NOT EXISTS {$this->getTable('candf_shipment_adminselected')} (
125
+ `id` int(11) unsigned NOT NULL auto_increment,
126
+ `order_id` int(11) NOT NULL,
127
+ `carrier_id` varchar(255) NOT NULL,
128
+ `service_id` varchar(255) NOT NULL,
129
+ `additional_insurence` varchar(255) NOT NULL,
130
+ `shipping_cost` decimal(10,2) NOT NULL,
131
+ `markup_cost` decimal(10,2) NOT NULL,
132
+ `carrier_name` varchar(255) NOT NULL,
133
+ `service_name` varchar(255) NOT NULL,
134
+ `eta` varchar(255) NOT NULL,
135
+ `booking_number` varchar(255) NOT NULL,
136
+ `notes` varchar(255) NOT NULL,
137
+ PRIMARY KEY(id)
138
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;
139
+
140
+ DROP TABLE IF EXISTS {$this->getTable('candf_zone')};
141
+ CREATE TABLE {$this->getTable('candf_zone')} (
142
+ `id` int(11) NOT NULL AUTO_INCREMENT,
143
+ `order_id` varchar(255) NOT NULL,
144
+ `additional_shipment_id` varchar(255) NOT NULL,
145
+ PRIMARY KEY (`id`)
146
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
147
+
148
+
149
+ DROP TABLE IF EXISTS {$this->getTable('candf_additional_services')};
150
+ CREATE TABLE {$this->getTable('candf_additional_services')} (
151
+
152
+ `id` int(11) NOT NULL AUTO_INCREMENT,
153
+ `Carrier_Id` varchar(255) NOT NULL,
154
+ `Carrier_Name` varchar(100) NOT NULL,
155
+ `Code` varchar(100) NOT NULL,
156
+ `Carrier_Service_Code` varchar(255) NOT NULL,
157
+ `Mapping_CF_Service_Id` varchar(255) NOT NULL,
158
+ `Carrier_Service_Description` varchar(255) NOT NULL,
159
+ `Is_Additional_Service` int(11) NOT NULL,
160
+ `Carrier_Basic_Charge` int(11) NOT NULL,
161
+ PRIMARY KEY (`id`)
162
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
163
+
164
+ DROP TABLE IF EXISTS {$this->getTable('candf_shipment_additional_services')};
165
+ CREATE TABLE {$this->getTable('candf_shipment_additional_services')} (
166
+ `id` int(11) NOT NULL AUTO_INCREMENT,
167
+ `order_id` varchar(100) NOT NULL,
168
+ `additional_shipment_id` varchar(255) NOT NULL,
169
+ PRIMARY KEY (`id`)
170
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
171
+
172
+
173
+ DROP TABLE IF EXISTS {$this->getTable('candf_shipment')};
174
+ CREATE TABLE {$this->getTable('candf_shipment')} (
175
+ `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
176
+ `order_id` int(10) unsigned NOT NULL,
177
+ `customer_selected_quote_id` bigint(20) unsigned DEFAULT NULL,
178
+ `customer_selected_options` text NOT NULL,
179
+ `customer_selected_quote_description` text NOT NULL,
180
+ `admin_selected_quote_id` bigint(20) unsigned DEFAULT NULL,
181
+ `anticipated_cost` decimal(12,4) unsigned NOT NULL,
182
+ `status` int(10) NOT NULL DEFAULT '0',
183
+ `booking_request_id` int(13) unsigned NOT NULL,
184
+ `booking_number` varchar(255) NOT NULL,
185
+ `consignment_number` varchar(255) NOT NULL,
186
+ `consignment_document` mediumtext NOT NULL,
187
+ `consignment_document_type` varchar(255) NOT NULL,
188
+ `destination_contact_name` varchar(255) NOT NULL,
189
+ `destination_company_name` varchar(255) NOT NULL,
190
+ `destination_street` varchar(255) NOT NULL,
191
+ `destination_city` varchar(255) NOT NULL,
192
+ `destination_postcode` varchar(255) NOT NULL,
193
+ `destination_region` varchar(255) NOT NULL,
194
+ `destination_country` varchar(255) NOT NULL,
195
+ `destination_phone` varchar(255) NOT NULL,
196
+ `destination_email` varchar(255) NOT NULL,
197
+ `ready_date` date DEFAULT NULL,
198
+ `label_document` longtext NOT NULL,
199
+ `label_document_type` varchar(32) NOT NULL,
200
+ `carrier_id` varchar(250) NOT NULL,
201
+ `service_id` varchar(250) NOT NULL,
202
+ `additional_insurence` varchar(250) NOT NULL,
203
+ `shipping_cost` decimal(10,2) NOT NULL,
204
+ `markup_cost` int(11) NOT NULL,
205
+ `carrier_name` varchar(250) NOT NULL,
206
+ `service_name` varchar(250) NOT NULL,
207
+ `eta` varchar(250) NOT NULL,
208
+ `pickupstarttime` varchar(256) NOT NULL,
209
+ `pickupclosetime` varchar(256) NOT NULL,
210
+ `pickup_start` int(11) NOT NULL,
211
+ `specialinstructions` varchar(255) NOT NULL,
212
+ PRIMARY KEY (`id`)
213
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
214
+
215
+ DROP TABLE IF EXISTS {$this->getTable('candf_pcs')};
216
+ CREATE TABLE IF NOT EXISTS {$this->getTable('candf_pcs')} (
217
+ `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
218
+ `postcode` varchar(32) NOT NULL DEFAULT '',
219
+ `city` varchar(64) NOT NULL DEFAULT '',
220
+ `state` varchar(8) NOT NULL DEFAULT '',
221
+ `country_id` varchar(2) NOT NULL DEFAULT 'AU',
222
+ `region_id` mediumint(8) NOT NULL DEFAULT '0',
223
+ `fulltext` text NOT NULL,
224
+ PRIMARY KEY (`entity_id`) USING BTREE,
225
+ KEY `pcs` (`postcode`(6),`city`(6),`state`(6))
226
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
227
+
228
+ DROP TABLE IF EXISTS {$this->getTable('candf_sales_order_items')};
229
+ CREATE TABLE IF NOT EXISTS {$this->getTable('candf_sales_order_items')} (
230
+ `id` int(11) unsigned NOT NULL auto_increment,
231
+ `order_id` int(11) NOT NULL,
232
+ `product_name` varchar(255) NOT NULL,
233
+ `product_sku` varchar(255) NOT NULL,
234
+ `qty` int(11) NOT NULL,
235
+ `weight` varchar(255) NOT NULL,
236
+ `height` varchar(255) NOT NULL,
237
+ `length` varchar(255) NOT NULL,
238
+ `width` varchar(255) NOT NULL,
239
+ PRIMARY KEY(id)
240
+ )ENGINE=InnoDB DEFAULT CHARSET=utf8;
241
+
242
+ DROP TABLE IF EXISTS {$this->getTable('candf_booking')};
243
+ CREATE TABLE IF NOT EXISTS {$this->getTable('candf_booking')} (
244
+ `id` int(11) NOT NULL AUTO_INCREMENT,
245
+ `booking_number` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
246
+ `order_id` int(11) NOT NULL,
247
+ `shipping_cost` int(11) NOT NULL,
248
+ `carrier_id` int(11) NOT NULL,
249
+ `service_id` int(11) NOT NULL,
250
+ `active` tinyint(4) NOT NULL,
251
+ PRIMARY KEY (`id`)
252
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
253
+
254
+ DROP TABLE IF EXISTS {$this->getTable('candf_warehouse')};
255
+ CREATE TABLE {$this->getTable('candf_warehouse')} (
256
+ `warehouse_id` int(11) NOT NULL AUTO_INCREMENT,
257
+ `name` varchar(255) NOT NULL,
258
+ `is_active` varchar(255) NOT NULL,
259
+ `company_name` varchar(255) NOT NULL,
260
+ `street` varchar(255) NOT NULL,
261
+ `zip` int(11) NOT NULL,
262
+ `suburb` varchar(225) NOT NULL,
263
+ `state` varchar(225) NOT NULL,
264
+ `country` varchar(255) NOT NULL,
265
+ `contact_name` varchar(255) NOT NULL,
266
+ `contact_email` varchar(64) NOT NULL,
267
+ `phone1` int(11) NOT NULL,
268
+ `phone2` int(11) NOT NULL,
269
+ `fax` varchar(250) NOT NULL,
270
+ `Line1` varchar(100) NOT NULL,
271
+ `Line2` varchar(100) NOT NULL,
272
+ PRIMARY KEY (`warehouse_id`)
273
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
274
+
275
+ DROP TABLE IF EXISTS {$this->getTable('candf_availableboxes')};
276
+ CREATE TABLE {$this->getTable('candf_availableboxes')} (
277
+ `boxes_id` int(11) NOT NULL AUTO_INCREMENT,
278
+ `name` varchar(255) NOT NULL,
279
+ `is_active` varchar(255) NOT NULL,
280
+ `length` varchar(255) NOT NULL,
281
+ `width` varchar(255) NOT NULL,
282
+ `height` varchar(255) NOT NULL,
283
+ PRIMARY KEY (`boxes_id`)
284
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
285
+
286
+
287
+
288
+ --
289
+ -- Dumping data for table `candf_additional_services`
290
+ --
291
+
292
+
293
+ INSERT INTO {$this->getTable('candf_additional_services')} (`id`, `Carrier_Id`, `Carrier_Name`, `Code`, `Carrier_Service_Code`, `Mapping_CF_Service_Id`, `Carrier_Service_Description`, `Is_Additional_Service`, `Carrier_Basic_Charge`) VALUES
294
+ (51, 'Carrier_Id', 'Carrier_Name', 'Code', 'Carrier_Service_Code', 'Mapping_CF_Service_Id', 'Carrier_Service_Description', 0, 0),
295
+ (52, '5A324D20-F10F-4B2A-9BF9-0F4F26AC74F8', 'DHL', 'DHL', 'Tail Lift at Pick up', '1583', 'Tail Lift at Pick up', 1, 150),
296
+ (53, '5A324D20-F10F-4B2A-9BF9-0F4F26AC74F8', 'DHL', 'DHL', 'Tail Lift at Delivery', '1587', 'Tail Lift at Delivery', 1, 150),
297
+ (54, '5A324D20-F10F-4B2A-9BF9-0F4F26AC74F8', 'DHL', 'DHL', 'AL', '1591', 'Authority To Leave', 1, 0),
298
+ (55, 'C6F8A34E-E0F6-432A-B49A-21D5D8BCF143', 'TOLL', 'TOLL', 'Tail Lift at Pick up', '1583', 'Tail Lift at Pick up', 1, 150),
299
+ (56, 'C6F8A34E-E0F6-432A-B49A-21D5D8BCF143', 'TOLL', 'TOLL', 'Tail Lift at Delivery', '1587', 'Tail Lift at Delivery', 1, 150),
300
+ (57, 'C6F8A34E-E0F6-432A-B49A-21D5D8BCF143', 'TOLL', 'TOLL', 'AL', '1591', 'Authority To Leave', 1, 0),
301
+ (58, 'C6F8A34E-E0F6-432A-B49A-21D5D8BCF143', 'TOLL', 'TOLL', 'Delivery - Heavy Lift Help', '123', 'Delivery - Heavy Lift Help', 1, 150),
302
+ (59, 'C29DCB32-9861-4C71-B175-2EC2E84D1189', 'TTL', 'TTL', 'Delivery - Tail Lift', '128', 'Delivery - Tail Lift', 1, 50),
303
+ (60, 'C29DCB32-9861-4C71-B175-2EC2E84D1189', 'TTL', 'TTL', 'Pick-Up - Tail Lift', '136', 'Pick-Up - Tail Lift', 1, 50),
304
+ (61, 'EC0A5563-FC85-4A33-B66F-42100F07C443', 'TOWER', 'TOWER', 'Delivery - Tail Lift', '128', 'Delivery - Tail Lift', 1, 20),
305
+ (62, 'EC0A5563-FC85-4A33-B66F-42100F07C443', 'TOWER', 'TOWER', 'Pick-Up - Tail Lift', '136', 'Pick-Up - Tail Lift', 1, 20),
306
+ (63, '2943F074-02DB-4BFA-B3A8-6156D20EE6ED', 'DYNAMICEXPRESS2', 'DYNAMIC2', 'Heavy Lift Help at Pick up', '131', 'Heavy Lift Help at Pick up', 1, 55),
307
+ (64, '2943F074-02DB-4BFA-B3A8-6156D20EE6ED', 'DYNAMICEXPRESS2', 'DYNAMIC2', 'Trolley Required Pick up', '137', 'Trolley Required Pick up', 1, 55),
308
+ (65, '2943F074-02DB-4BFA-B3A8-6156D20EE6ED', 'DYNAMICEXPRESS2', 'DYNAMIC2', 'Notify before Pick up', '134', 'Notify before Pick up', 1, 3),
309
+ (66, '2943F074-02DB-4BFA-B3A8-6156D20EE6ED', 'DYNAMICEXPRESS2', 'DYNAMIC2', 'Heavy Lift Help at Delivery', '123', 'Heavy Lift Help at Delivery', 1, 55),
310
+ (67, '2943F074-02DB-4BFA-B3A8-6156D20EE6ED', 'DYNAMICEXPRESS2', 'DYNAMIC2', 'Notify before Delivery', '126', 'Notify before Delivery', 1, 3),
311
+ (68, '2943F074-02DB-4BFA-B3A8-6156D20EE6ED', 'DYNAMICEXPRESS2', 'DYNAMIC2', 'Delivery - Tail Lift', '1587', 'Delivery - Tail Lift', 1, 55),
312
+ (69, '2943F074-02DB-4BFA-B3A8-6156D20EE6ED', 'DYNAMICEXPRESS2', 'DYNAMIC2', 'Pick-Up - Tail Lift', '1583', 'Pick-Up - Tail Lift', 1, 55),
313
+ (70, 'C38968CD-106F-4684-84A9-6A6D46718F52', 'TNTDGSS', 'TNTDGSS', 'Tail Lift at Delivery', '1587', 'Tail Lift at Delivery', 1, 150),
314
+ (71, 'C38968CD-106F-4684-84A9-6A6D46718F52', 'TNTDGSS', 'TNTDGSS', 'Tail Lift at Pick up', '1583', 'Tail Lift at Pick up', 1, 150),
315
+ (72, 'EF0ABE32-E8C5-4F60-BE01-75AE24735B3E', 'TasFreightDELETE', 'TasFreight', 'Tail Lift at Pick up', '1583', 'Tail Lift at Pick up', 1, 150),
316
+ (73, 'EF0ABE32-E8C5-4F60-BE01-75AE24735B3E', 'TasFreightDELETE', 'TasFreight', 'Tail Lift at Delivery', '1587', 'Tail Lift at Delivery', 1, 150),
317
+ (74, 'A341BC9C-413E-442C-A2D0-8E6FCF785927', 'Vellex', 'VELLEX', 'Delivery - Tailgate Lifter', '128', 'Delivery - Tailgate Lifter', 1, 0),
318
+ (77, '60753E2F-FC73-4622-BF47-D751993BB81A', 'Shaws', 'SHAWS', 'Hand loading/Un-loading', '1588', 'Hand loading/Un-loading', 1, 0),
319
+ (78, '60753E2F-FC73-4622-BF47-D751993BB81A', 'Shaws', 'SHAWS', 'Delivery - Tailgate Lifter', '128', 'Delivery - Tailgate Lifter', 1, 110),
320
+ (79, '2885D497-3A25-48FD-8D59-DB83341AF2C3', 'Doug Hayes Transport', 'DHT', 'Tail Lift at Delivery', '1587', 'Tail Lift at Delivery', 1, 16),
321
+ (80, '2885D497-3A25-48FD-8D59-DB83341AF2C3', 'Doug Hayes Transport', 'DHT', 'Tail Lift at Pick up', '1583', 'Tail Lift at Pick up', 1, 16),
322
+ (81, '0278171A-8C63-4929-B446-DCAFB8A10FDC', 'TNT', 'TNT', 'Tail Lift at Pick up', '1583', 'Tail Lift at Pick up', 1, 150),
323
+ (82, '0278171A-8C63-4929-B446-DCAFB8A10FDC', 'TNT', 'TNT', 'Tail Lift at Delivery', '1587', 'Tail Lift at Delivery', 1, 150),
324
+ (83, '0278171A-8C63-4929-B446-DCAFB8A10FDC', 'TNT', 'TNT', 'AL', '1591', 'Authority To Leave', 1, 0),
325
+ (84, 'CAFE8C61-944D-43F0-90FE-EBDE27224F30', 'WA freight', 'WAFG', 'Delivery - Tail Lift', '1587', 'Delivery - Tail Lift', 1, 50),
326
+ (85, 'CAFE8C61-944D-43F0-90FE-EBDE27224F30', 'WA freight', 'WAFG', 'Pick-Up - Tail Lift', '1583', 'Pick-Up - Tail Lift', 1, 50),
327
+ (86, '65E3D8CD-083C-4AE2-A68B-60D52C202069', 'Hi-TransDELETEDSERVICE', 'HTEDELET', 'Tail Lift at Pick up', '1583', 'Tail Lift at Pick up', 1, 150),
328
+ (87, '65E3D8CD-083C-4AE2-A68B-60D52C202069', 'Hi-TransDELETEDSERVICE', 'HTEDELET', 'Tail Lift at Delivery', '1587', 'Tail Lift at Delivery', 1, 150),
329
+ (88, '65E3D8CD-083C-4AE2-A68B-60D52C202069', 'Hi-TransDELETEDSERVICE', 'HTEDELET', 'AL', '1591', 'Authority To Leave', 1, 0),
330
+ (89, '70355B52-1671-481B-AEE0-F3B95E367BDD', 'DYNAMIC EXPRESS', 'DYNAMIC', 'AL', '1591', 'Authority To Leave', 1, 0),
331
+ (90, '70355B52-1671-481B-AEE0-F3B95E367BDD', 'DYNAMIC EXPRESS', 'DYNAMIC', 'Notify before Pick up', '134', 'Notify before Pick up', 1, 3),
332
+ (91, '70355B52-1671-481B-AEE0-F3B95E367BDD', 'DYNAMIC EXPRESS', 'DYNAMIC', 'Notify before Delivery', '126', 'Notify before Delivery', 1, 3),
333
+ (92, '70355B52-1671-481B-AEE0-F3B95E367BDD', 'DYNAMIC EXPRESS', 'DYNAMIC', 'PODCBU', '1590', 'POD Call Back Upon Delivery', 1, 4),
334
+ (93, '70355B52-1671-481B-AEE0-F3B95E367BDD', 'DYNAMIC EXPRESS', 'DYNAMIC', 'Trolley Required Pick up', '137', 'Trolley Required Pick up', 1, 0),
335
+ (94, '70355B52-1671-481B-AEE0-F3B95E367BDD', 'DYNAMIC EXPRESS', 'DYNAMIC', 'Trolley Required Delivery', '129', 'Trolley Required Delivery', 1, 0),
336
+ (95, '70355B52-1671-481B-AEE0-F3B95E367BDD', 'DYNAMIC EXPRESS', 'DYNAMIC', 'Un-Attended Pick up', '138', 'Un-Attended Pick up', 1, 0),
337
+ (96, '70355B52-1671-481B-AEE0-F3B95E367BDD', 'DYNAMIC EXPRESS', 'DYNAMIC', 'Heavy Lift Help at Pick up', '131', 'Heavy Lift Help at Pick up', 1, 55),
338
+ (97, '70355B52-1671-481B-AEE0-F3B95E367BDD', 'DYNAMIC EXPRESS', 'DYNAMIC', 'Heavy Lift Help at Delivery', '123', 'Heavy Lift Help at Delivery', 1, 55),
339
+ (98, 'B2C50B42-BC8F-45CB-8A6C-F44BA4996694', 'Northline', 'Northline', 'Delivery - Tailgate Lifter', '128', 'Delivery - Tailgate Lifter', 1, 75),
340
+ (99, 'B2C50B42-BC8F-45CB-8A6C-F44BA4996694', 'Northline', 'Northline', 'Delivery - Tailgate Lifter', '128', 'Delivery - Tailgate Lifter', 1, 150),
341
+ (100, 'B2C50B42-BC8F-45CB-8A6C-F44BA4996694', 'Northline', 'Northline', 'Pick-Up - Tailgate Lifter', '136', 'Pick-Up - Tailgate Lifter', 1, 75),
342
+ (101, 'B2C50B42-BC8F-45CB-8A6C-F44BA4996694', 'Northline', 'Northline', 'Pick-Up - Tailgate Lifter', '136', 'Pick-Up - Tailgate Lifter', 1, 150),
343
+ (102, 'B2C50B42-BC8F-45CB-8A6C-F44BA4996694', 'Northline', 'Northline', 'Tail Lift at Delivery', '1587', 'Tail Lift at Delivery', 1, 0);
344
+
345
+
346
+ --
347
+ -- Dumping data for table `candf_pcs`
348
+ --
349
+
350
+ INSERT INTO {$this->getTable('candf_pcs')} (`entity_id`, `postcode`, `city`, `state`, `country_id`, `region_id`, `fulltext`) VALUES
351
+ (1, '200', 'Australian National University', 'ACT', 'AU', 485, ' 200 Australian National University Australian Capital Territory'),
352
+ (2, '800', 'Darwin', 'NT', 'AU', 487, ' 800 Darwin Northern Territory'),
353
+ (3, '801', 'Darwin', 'NT', 'AU', 487, ' 801 Darwin Northern Territory'),
354
+ (4, '804', 'Parap', 'NT', 'AU', 487, ' 804 Parap Northern Territory'),
355
+ (5, '810', 'Nakara', 'NT', 'AU', 487, ' 810 Nakara Northern Territory'),
356
+ (6, '810', 'Nightcliff', 'NT', 'AU', 487, ' 810 Nightcliff Northern Territory'),
357
+ (7, '810', 'Rapid Creek', 'NT', 'AU', 487, ' 810 Rapid Creek Northern Territory'),
358
+ (8, '810', 'Tiwi', 'NT', 'AU', 487, ' 810 Tiwi Northern Territory'),
359
+ (9, '810', 'Wagaman', 'NT', 'AU', 487, ' 810 Wagaman Northern Territory'),
360
+ (10, '810', 'Wanguri', 'NT', 'AU', 487, ' 810 Wanguri Northern Territory'),
361
+ (11, '810', 'Millner', 'NT', 'AU', 487, ' 810 Millner Northern Territory'),
362
+ (12, '810', 'Moil', 'NT', 'AU', 487, ' 810 Moil Northern Territory'),
363
+ (13, '810', 'Muirhead', 'NT', 'AU', 487, ' 810 Muirhead Northern Territory'),
364
+ (14, '810', 'Coconut Grove', 'NT', 'AU', 487, ' 810 Coconut Grove Northern Territory'),
365
+ (15, '810', 'Jingili', 'NT', 'AU', 487, ' 810 Jingili Northern Territory'),
366
+ (16, '810', 'Lee Point', 'NT', 'AU', 487, ' 810 Lee Point Northern Territory'),
367
+ (17, '810', 'Lyons', 'NT', 'AU', 487, ' 810 Lyons Northern Territory'),
368
+ (18, '810', 'Brinkin', 'NT', 'AU', 487, ' 810 Brinkin Northern Territory'),
369
+ (19, '810', 'Casuarina', 'NT', 'AU', 487, ' 810 Casuarina Northern Territory'),
370
+ (20, '810', 'Alawa', 'NT', 'AU', 487, ' 810 Alawa Northern Territory'),
371
+ (21, '811', 'Casuarina', 'NT', 'AU', 487, ' 811 Casuarina Northern Territory'),
372
+ (22, '812', 'Buffalo Creek', 'NT', 'AU', 487, ' 812 Buffalo Creek Northern Territory'),
373
+ (23, '812', 'Malak', 'NT', 'AU', 487, ' 812 Malak Northern Territory'),
374
+ (24, '812', 'Leanyer', 'NT', 'AU', 487, ' 812 Leanyer Northern Territory'),
375
+ (25, '812', 'Karama', 'NT', 'AU', 487, ' 812 Karama Northern Territory'),
376
+ (26, '812', 'Marrara', 'NT', 'AU', 487, ' 812 Marrara Northern Territory'),
377
+ (27, '812', 'Holmes', 'NT', 'AU', 487, ' 812 Holmes Northern Territory'),
378
+ (28, '812', 'Anula', 'NT', 'AU', 487, ' 812 Anula Northern Territory'),
379
+ (29, '812', 'Sanderson', 'NT', 'AU', 487, ' 812 Sanderson Northern Territory'),
380
+ (30, '812', 'Northlakes', 'NT', 'AU', 487, ' 812 Northlakes Northern Territory'),
381
+ (31, '812', 'Woodleigh Gardens', 'NT', 'AU', 487, ' 812 Woodleigh Gardens Northern Territory'),
382
+ (32, '812', 'Wulagi', 'NT', 'AU', 487, ' 812 Wulagi Northern Territory'),
383
+ (33, '813', 'Karama', 'NT', 'AU', 487, ' 813 Karama Northern Territory'),
384
+ (34, '814', 'Nightcliff', 'NT', 'AU', 487, ' 814 Nightcliff Northern Territory'),
385
+ (35, '815', 'Charles Darwin University', 'NT', 'AU', 487, ' 815 Charles Darwin University Northern Territory'),
386
+ (36, '820', 'Charles Darwin', 'NT', 'AU', 487, ' 820 Charles Darwin Northern Territory'),
387
+ (37, '820', 'Coonawarra', 'NT', 'AU', 487, ' 820 Coonawarra Northern Territory'),
388
+ (38, '820', 'Cullen Bay', 'NT', 'AU', 487, ' 820 Cullen Bay Northern Territory'),
389
+ (39, '820', 'Darwin', 'NT', 'AU', 487, ' 820 Darwin Northern Territory'),
390
+ (40, '820', 'Darwin International Airport', 'NT', 'AU', 487, ' 820 Darwin International Airport Northern Territory'),
391
+ (41, '820', 'East Point', 'NT', 'AU', 487, ' 820 East Point Northern Territory'),
392
+ (42, '820', 'Eaton', 'NT', 'AU', 487, ' 820 Eaton Northern Territory'),
393
+ (43, '820', 'Fannie Bay', 'NT', 'AU', 487, ' 820 Fannie Bay Northern Territory'),
394
+ (44, '820', 'Larrakeyah', 'NT', 'AU', 487, ' 820 Larrakeyah Northern Territory'),
395
+ (45, '820', 'Ludmilla', 'NT', 'AU', 487, ' 820 Ludmilla Northern Territory'),
396
+ (46, '820', 'Bayview', 'NT', 'AU', 487, ' 820 Bayview Northern Territory'),
397
+ (47, '820', 'Bagot', 'NT', 'AU', 487, ' 820 Bagot Northern Territory'),
398
+ (48, '820', 'Parap', 'NT', 'AU', 487, ' 820 Parap Northern Territory'),
399
+ (49, '820', 'Raaf Base Darwin', 'NT', 'AU', 487, ' 820 Raaf Base Darwin Northern Territory'),
400
+ (50, '820', 'Stuart Park', 'NT', 'AU', 487, ' 820 Stuart Park Northern Territory'),
401
+ (51, '820', 'The Gardens', 'NT', 'AU', 487, ' 820 The Gardens Northern Territory'),
402
+ (52, '820', 'The Narrows', 'NT', 'AU', 487, ' 820 The Narrows Northern Territory'),
403
+ (53, '820', 'Woolner', 'NT', 'AU', 487, ' 820 Woolner Northern Territory'),
404
+ (54, '820', 'Winnellie', 'NT', 'AU', 487, ' 820 Winnellie Northern Territory'),
405
+ (55, '821', 'Winnellie', 'NT', 'AU', 487, ' 821 Winnellie Northern Territory'),
406
+ (56, '822', 'Winnellie', 'NT', 'AU', 487, ' 822 Winnellie Northern Territory'),
407
+ (57, '822', 'Wishart', 'NT', 'AU', 487, ' 822 Wishart Northern Territory'),
408
+ (58, '822', 'Woolaning', 'NT', 'AU', 487, ' 822 Woolaning Northern Territory'),
409
+ (59, '822', 'Wurrumiyanga', 'NT', 'AU', 487, ' 822 Wurrumiyanga Northern Territory'),
410
+ (60, '822', 'Southport', 'NT', 'AU', 487, ' 822 Southport Northern Territory'),
411
+ (61, '822', 'Stapleton', 'NT', 'AU', 487, ' 822 Stapleton Northern Territory'),
412
+ (62, '822', 'Tiwi Islands', 'NT', 'AU', 487, ' 822 Tiwi Islands Northern Territory'),
413
+ (63, '822', 'Tipperary', 'NT', 'AU', 487, ' 822 Tipperary Northern Territory'),
414
+ (64, '822', 'Tivendale', 'NT', 'AU', 487, ' 822 Tivendale Northern Territory'),
415
+ (65, '822', 'Tortilla Flats', 'NT', 'AU', 487, ' 822 Tortilla Flats Northern Territory'),
416
+ (66, '822', 'Tumbling Waters', 'NT', 'AU', 487, ' 822 Tumbling Waters Northern Territory'),
417
+ (67, '822', 'Umbakumba', 'NT', 'AU', 487, ' 822 Umbakumba Northern Territory'),
418
+ (68, '822', 'Warruwi', 'NT', 'AU', 487, ' 822 Warruwi Northern Territory'),
419
+ (69, '822', 'Weddell', 'NT', 'AU', 487, ' 822 Weddell Northern Territory'),
420
+ (70, '822', 'West Arnhem', 'NT', 'AU', 487, ' 822 West Arnhem Northern Territory'),
421
+ (71, '822', 'Wickham', 'NT', 'AU', 487, ' 822 Wickham Northern Territory'),
422
+ (72, '822', 'Wak Wak', 'NT', 'AU', 487, ' 822 Wak Wak Northern Territory'),
423
+ (73, '822', 'Wadeye', 'NT', 'AU', 487, ' 822 Wadeye Northern Territory'),
424
+ (74, '822', 'Wagait Beach', 'NT', 'AU', 487, ' 822 Wagait Beach Northern Territory'),
425
+ (75, '822', 'Vernon Islands', 'NT', 'AU', 487, ' 822 Vernon Islands Northern Territory'),
426
+ (76, '822', 'Thamarrurr', 'NT', 'AU', 487, ' 822 Thamarrurr Northern Territory'),
427
+ (77, '822', 'Rakula', 'NT', 'AU', 487, ' 822 Rakula Northern Territory'),
428
+ (78, '822', 'Ramingining', 'NT', 'AU', 487, ' 822 Ramingining Northern Territory'),
429
+ (79, '822', 'Palumpa', 'NT', 'AU', 487, ' 822 Palumpa Northern Territory'),
430
+ (80, '822', 'Pirlangimpi', 'NT', 'AU', 487, ' 822 Pirlangimpi Northern Territory'),
431
+ (81, '822', 'Point Stephens', 'NT', 'AU', 487, ' 822 Point Stephens Northern Territory'),
432
+ (82, '822', 'Point Stuart', 'NT', 'AU', 487, ' 822 Point Stuart Northern Territory'),
433
+ (83, '822', 'Pularumpi', 'NT', 'AU', 487, ' 822 Pularumpi Northern Territory'),
434
+ (84, '822', 'Sandpalms Roadhouse', 'NT', 'AU', 487, ' 822 Sandpalms Roadhouse Northern Territory'),
435
+ (85, '822', 'Rum Jungle', 'NT', 'AU', 487, ' 822 Rum Jungle Northern Territory'),
436
+ (86, '822', 'Robin Falls', 'NT', 'AU', 487, ' 822 Robin Falls Northern Territory'),
437
+ (87, '822', 'Peppimenarti', 'NT', 'AU', 487, ' 822 Peppimenarti Northern Territory'),
438
+ (88, '822', 'Numbulwar', 'NT', 'AU', 487, ' 822 Numbulwar Northern Territory'),
439
+ (89, '822', 'Numburindi', 'NT', 'AU', 487, ' 822 Numburindi Northern Territory'),
440
+ (90, '822', 'Oenpelli', 'NT', 'AU', 487, ' 822 Oenpelli Northern Territory'),
441
+ (91, '822', 'Mount Bundey', 'NT', 'AU', 487, ' 822 Mount Bundey Northern Territory'),
442
+ (92, '822', 'Nauiyu', 'NT', 'AU', 487, ' 822 Nauiyu Northern Territory'),
443
+ (93, '822', 'Nemarluk', 'NT', 'AU', 487, ' 822 Nemarluk Northern Territory'),
444
+ (94, '822', 'Nganmarriyanga', 'NT', 'AU', 487, ' 822 Nganmarriyanga Northern Territory'),
445
+ (95, '822', 'Murrumujuk', 'NT', 'AU', 487, ' 822 Murrumujuk Northern Territory'),
446
+ (96, '822', 'Minjilang', 'NT', 'AU', 487, ' 822 Minjilang Northern Territory'),
447
+ (97, '822', 'Millwood', 'NT', 'AU', 487, ' 822 Millwood Northern Territory'),
448
+ (98, '822', 'Milyakburra', 'NT', 'AU', 487, ' 822 Milyakburra Northern Territory'),
449
+ (99, '822', 'Mickett Creek', 'NT', 'AU', 487, ' 822 Mickett Creek Northern Territory'),
450
+ (100, '822', 'Middle Point', 'NT', 'AU', 487, ' 822 Middle Point Northern Territory'),
451
+ (101, '822', 'Milikapiti', 'NT', 'AU', 487, ' 822 Milikapiti Northern Territory'),
452
+ (102, '822', 'Milingimbi', 'NT', 'AU', 487, ' 822 Milingimbi Northern Territory'),
453
+ (103, '822', 'Bathurst Island', 'NT', 'AU', 487, ' 822 Bathurst Island Northern Territory'),
454
+ (104, '822', 'Belyuen', 'NT', 'AU', 487, ' 822 Belyuen Northern Territory'),
455
+ (105, '822', 'Bees Creek', 'NT', 'AU', 487, ' 822 Bees Creek Northern Territory'),
456
+ (106, '822', 'Black Jungle', 'NT', 'AU', 487, ' 822 Black Jungle Northern Territory'),
457
+ (107, '822', 'Blackmore', 'NT', 'AU', 487, ' 822 Blackmore Northern Territory'),
458
+ (108, '822', 'Border Store', 'NT', 'AU', 487, ' 822 Border Store Northern Territory'),
459
+ (109, '822', 'Channel Island', 'NT', 'AU', 487, ' 822 Channel Island Northern Territory'),
460
+ (110, '822', 'Burrundie', 'NT', 'AU', 487, ' 822 Burrundie Northern Territory'),
461
+ (111, '822', 'Bynoe', 'NT', 'AU', 487, ' 822 Bynoe Northern Territory'),
462
+ (112, '822', 'Bynoe Harbour', 'NT', 'AU', 487, ' 822 Bynoe Harbour Northern Territory'),
463
+ (113, '822', 'Camp Creek', 'NT', 'AU', 487, ' 822 Camp Creek Northern Territory'),
464
+ (114, '822', 'Marrakai', 'NT', 'AU', 487, ' 822 Marrakai Northern Territory'),
465
+ (115, '822', 'Maranunga', 'NT', 'AU', 487, ' 822 Maranunga Northern Territory'),
466
+ (116, '822', 'Margaret River', 'NT', 'AU', 487, ' 822 Margaret River Northern Territory'),
467
+ (117, '822', 'Mcminns Lagoon', 'NT', 'AU', 487, ' 822 Mcminns Lagoon Northern Territory'),
468
+ (118, '822', 'Lake Bennett', 'NT', 'AU', 487, ' 822 Lake Bennett Northern Territory'),
469
+ (119, '822', 'Lambells Lagoon', 'NT', 'AU', 487, ' 822 Lambells Lagoon Northern Territory'),
470
+ (120, '822', 'Litchfield Park', 'NT', 'AU', 487, ' 822 Litchfield Park Northern Territory'),
471
+ (121, '822', 'Livingstone', 'NT', 'AU', 487, ' 822 Livingstone Northern Territory'),
472
+ (122, '822', 'Lloyd Creek', 'NT', 'AU', 487, ' 822 Lloyd Creek Northern Territory'),
473
+ (123, '822', 'Mandorah', 'NT', 'AU', 487, ' 822 Mandorah Northern Territory'),
474
+ (124, '822', 'Maningrida', 'NT', 'AU', 487, ' 822 Maningrida Northern Territory'),
475
+ (125, '822', 'Koolpinyah', 'NT', 'AU', 487, ' 822 Koolpinyah Northern Territory'),
476
+ (126, '822', 'Kakadu', 'NT', 'AU', 487, ' 822 Kakadu Northern Territory'),
477
+ (127, '822', 'Hughes', 'NT', 'AU', 487, ' 822 Hughes Northern Territory'),
478
+ (128, '822', 'Hidden Valley', 'NT', 'AU', 487, ' 822 Hidden Valley Northern Territory'),
479
+ (129, '822', 'Finniss Valley', 'NT', 'AU', 487, ' 822 Finniss Valley Northern Territory'),
480
+ (130, '822', 'Fleming', 'NT', 'AU', 487, ' 822 Fleming Northern Territory'),
481
+ (131, '822', 'Fly Creek', 'NT', 'AU', 487, ' 822 Fly Creek Northern Territory'),
482
+ (132, '822', 'Freds Pass', 'NT', 'AU', 487, ' 822 Freds Pass Northern Territory'),
483
+ (133, '822', 'Galiwinku', 'NT', 'AU', 487, ' 822 Galiwinku Northern Territory'),
484
+ (134, '822', 'East Arm', 'NT', 'AU', 487, ' 822 East Arm Northern Territory'),
485
+ (135, '822', 'East Arnhem', 'NT', 'AU', 487, ' 822 East Arnhem Northern Territory'),
486
+ (136, '822', 'Elrundie', 'NT', 'AU', 487, ' 822 Elrundie Northern Territory'),
487
+ (137, '822', 'Eva Valley', 'NT', 'AU', 487, ' 822 Eva Valley Northern Territory'),
488
+ (138, '822', 'Hotham', 'NT', 'AU', 487, ' 822 Hotham Northern Territory'),
489
+ (139, '822', 'Hayes Creek', 'NT', 'AU', 487, ' 822 Hayes Creek Northern Territory'),
490
+ (140, '822', 'Glyde Point', 'NT', 'AU', 487, ' 822 Glyde Point Northern Territory'),
491
+ (141, '822', 'Goulburn Island', 'NT', 'AU', 487, ' 822 Goulburn Island Northern Territory'),
492
+ (142, '822', 'Gunbalanya', 'NT', 'AU', 487, ' 822 Gunbalanya Northern Territory'),
493
+ (143, '822', 'Gunn Point', 'NT', 'AU', 487, ' 822 Gunn Point Northern Territory'),
494
+ (144, '822', 'Daly', 'NT', 'AU', 487, ' 822 Daly Northern Territory'),
495
+ (145, '822', 'Daly River', 'NT', 'AU', 487, ' 822 Daly River Northern Territory'),
496
+ (146, '822', 'Darwin', 'NT', 'AU', 487, ' 822 Darwin Northern Territory'),
497
+ (147, '822', 'Delissaville', 'NT', 'AU', 487, ' 822 Delissaville Northern Territory'),
498
+ (148, '822', 'Douglas-daly', 'NT', 'AU', 487, ' 822 Douglas-daly Northern Territory'),
499
+ (149, '822', 'Darwin River Dam', 'NT', 'AU', 487, ' 822 Darwin River Dam Northern Territory'),
500
+ (150, '822', 'Croker Island', 'NT', 'AU', 487, ' 822 Croker Island Northern Territory'),
501
+ (151, '822', 'Cox Peninsula', 'NT', 'AU', 487, ' 822 Cox Peninsula Northern Territory'),
502
+ (152, '822', 'Coomalie Creek', 'NT', 'AU', 487, ' 822 Coomalie Creek Northern Territory'),
503
+ (153, '822', 'Charles Darwin', 'NT', 'AU', 487, ' 822 Charles Darwin Northern Territory'),
504
+ (154, '822', 'Collett Creek', 'NT', 'AU', 487, ' 822 Collett Creek Northern Territory'),
505
+ (155, '822', 'Charlotte', 'NT', 'AU', 487, ' 822 Charlotte Northern Territory'),
506
+ (156, '822', 'Claravale', 'NT', 'AU', 487, ' 822 Claravale Northern Territory'),
507
+ (157, '822', 'Cobourg', 'NT', 'AU', 487, ' 822 Cobourg Northern Territory'),
508
+ (158, '822', 'Angurugu', 'NT', 'AU', 487, ' 822 Angurugu Northern Territory'),
509
+ (159, '822', 'Anindilyakwa', 'NT', 'AU', 487, ' 822 Anindilyakwa Northern Territory'),
510
+ (160, '822', 'Annie River', 'NT', 'AU', 487, ' 822 Annie River Northern Territory'),
511
+ (161, '822', 'Acacia Hills', 'NT', 'AU', 487, ' 822 Acacia Hills Northern Territory'),
512
+ (162, '828', 'Knuckey Lagoon', 'NT', 'AU', 487, ' 828 Knuckey Lagoon Northern Territory'),
513
+ (163, '828', 'Berrimah', 'NT', 'AU', 487, ' 828 Berrimah Northern Territory'),
514
+ (164, '829', 'Holtze', 'NT', 'AU', 487, ' 829 Holtze Northern Territory'),
515
+ (165, '829', 'Pinelands', 'NT', 'AU', 487, ' 829 Pinelands Northern Territory'),
516
+ (166, '830', 'Shoal Bay', 'NT', 'AU', 487, ' 830 Shoal Bay Northern Territory'),
517
+ (167, '830', 'Palmerston', 'NT', 'AU', 487, ' 830 Palmerston Northern Territory'),
518
+ (168, '830', 'Yarrawonga', 'NT', 'AU', 487, ' 830 Yarrawonga Northern Territory'),
519
+ (169, '830', 'Woodroffe', 'NT', 'AU', 487, ' 830 Woodroffe Northern Territory'),
520
+ (170, '830', 'Moulden', 'NT', 'AU', 487, ' 830 Moulden Northern Territory'),
521
+ (171, '830', 'Gray', 'NT', 'AU', 487, ' 830 Gray Northern Territory'),
522
+ (172, '830', 'Farrar', 'NT', 'AU', 487, ' 830 Farrar Northern Territory'),
523
+ (173, '830', 'Durack', 'NT', 'AU', 487, ' 830 Durack Northern Territory'),
524
+ (174, '830', 'Driver', 'NT', 'AU', 487, ' 830 Driver Northern Territory'),
525
+ (175, '830', 'Marlow Lagoon', 'NT', 'AU', 487, ' 830 Marlow Lagoon Northern Territory'),
526
+ (176, '830', 'Archer', 'NT', 'AU', 487, ' 830 Archer Northern Territory'),
527
+ (177, '831', 'Palmerston', 'NT', 'AU', 487, ' 831 Palmerston Northern Territory'),
528
+ (178, '832', 'Rosebery', 'NT', 'AU', 487, ' 832 Rosebery Northern Territory'),
529
+ (179, '832', 'Rosebery Heights', 'NT', 'AU', 487, ' 832 Rosebery Heights Northern Territory'),
530
+ (180, '832', 'Zuccoli', 'NT', 'AU', 487, ' 832 Zuccoli Northern Territory'),
531
+ (181, '832', 'Mitchell', 'NT', 'AU', 487, ' 832 Mitchell Northern Territory'),
532
+ (182, '832', 'Johnston', 'NT', 'AU', 487, ' 832 Johnston Northern Territory'),
533
+ (183, '832', 'Gunn', 'NT', 'AU', 487, ' 832 Gunn Northern Territory'),
534
+ (184, '832', 'Bakewell', 'NT', 'AU', 487, ' 832 Bakewell Northern Territory'),
535
+ (185, '832', 'Bellamack', 'NT', 'AU', 487, ' 832 Bellamack Northern Territory'),
536
+ (186, '834', 'Virginia', 'NT', 'AU', 487, ' 834 Virginia Northern Territory'),
537
+ (187, '835', 'Howard Springs', 'NT', 'AU', 487, ' 835 Howard Springs Northern Territory'),
538
+ (188, '836', 'Herbert', 'NT', 'AU', 487, ' 836 Herbert Northern Territory'),
539
+ (189, '836', 'Girraween', 'NT', 'AU', 487, ' 836 Girraween Northern Territory'),
540
+ (190, '836', 'Humpty Doo', 'NT', 'AU', 487, ' 836 Humpty Doo Northern Territory'),
541
+ (191, '837', 'Manton', 'NT', 'AU', 487, ' 837 Manton Northern Territory'),
542
+ (192, '837', 'Noonamah', 'NT', 'AU', 487, ' 837 Noonamah Northern Territory'),
543
+ (193, '838', 'Berry Springs', 'NT', 'AU', 487, ' 838 Berry Springs Northern Territory'),
544
+ (194, '839', 'Coolalinga', 'NT', 'AU', 487, ' 839 Coolalinga Northern Territory'),
545
+ (195, '840', 'Dundee Beach', 'NT', 'AU', 487, ' 840 Dundee Beach Northern Territory'),
546
+ (196, '840', 'Dundee Downs', 'NT', 'AU', 487, ' 840 Dundee Downs Northern Territory'),
547
+ (197, '840', 'Dundee Forest', 'NT', 'AU', 487, ' 840 Dundee Forest Northern Territory'),
548
+ (198, '841', 'Darwin River', 'NT', 'AU', 487, ' 841 Darwin River Northern Territory'),
549
+ (199, '845', 'Batchelor', 'NT', 'AU', 487, ' 845 Batchelor Northern Territory'),
550
+ (200, '846', 'Adelaide River', 'NT', 'AU', 487, ' 846 Adelaide River Northern Territory'),
551
+ (201, '847', 'Pine Creek', 'NT', 'AU', 487, ' 847 Pine Creek Northern Territory'),
552
+ (202, '850', 'Cossack', 'NT', 'AU', 487, ' 850 Cossack Northern Territory'),
553
+ (203, '850', 'Emungalan', 'NT', 'AU', 487, ' 850 Emungalan Northern Territory'),
554
+ (204, '850', 'Lansdowne', 'NT', 'AU', 487, ' 850 Lansdowne Northern Territory'),
555
+ (205, '850', 'Katherine East', 'NT', 'AU', 487, ' 850 Katherine East Northern Territory'),
556
+ (206, '850', 'Katherine South', 'NT', 'AU', 487, ' 850 Katherine South Northern Territory'),
557
+ (207, '850', 'Katherine', 'NT', 'AU', 487, ' 850 Katherine Northern Territory'),
558
+ (208, '851', 'Katherine', 'NT', 'AU', 487, ' 851 Katherine Northern Territory'),
559
+ (209, '852', 'Katherine', 'NT', 'AU', 487, ' 852 Katherine Northern Territory'),
560
+ (210, '852', 'Lajamanu', 'NT', 'AU', 487, ' 852 Lajamanu Northern Territory'),
561
+ (211, '852', 'Jilkminggan', 'NT', 'AU', 487, ' 852 Jilkminggan Northern Territory'),
562
+ (212, '852', 'Kalkarindji', 'NT', 'AU', 487, ' 852 Kalkarindji Northern Territory'),
563
+ (213, '852', 'Larrimah', 'NT', 'AU', 487, ' 852 Larrimah Northern Territory'),
564
+ (214, '852', 'Limmen', 'NT', 'AU', 487, ' 852 Limmen Northern Territory'),
565
+ (215, '852', 'Maranboy', 'NT', 'AU', 487, ' 852 Maranboy Northern Territory'),
566
+ (216, '852', 'Manbulloo', 'NT', 'AU', 487, ' 852 Manbulloo Northern Territory'),
567
+ (217, '852', 'Mataranka', 'NT', 'AU', 487, ' 852 Mataranka Northern Territory'),
568
+ (218, '852', 'Mcarthur', 'NT', 'AU', 487, ' 852 Mcarthur Northern Territory'),
569
+ (219, '852', 'Elsey', 'NT', 'AU', 487, ' 852 Elsey Northern Territory'),
570
+ (220, '852', 'Elsey Station', 'NT', 'AU', 487, ' 852 Elsey Station Northern Territory'),
571
+ (221, '852', 'Edith', 'NT', 'AU', 487, ' 852 Edith Northern Territory'),
572
+ (222, '852', 'Florina', 'NT', 'AU', 487, ' 852 Florina Northern Territory'),
573
+ (223, '852', 'Flying Fox', 'NT', 'AU', 487, ' 852 Flying Fox Northern Territory'),
574
+ (224, '852', 'Gurindji', 'NT', 'AU', 487, ' 852 Gurindji Northern Territory'),
575
+ (225, '852', 'Gregory', 'NT', 'AU', 487, ' 852 Gregory Northern Territory'),
576
+ (226, '852', 'Gulung Mardrulk', 'NT', 'AU', 487, ' 852 Gulung Mardrulk Northern Territory'),
577
+ (227, '852', 'Bradshaw', 'NT', 'AU', 487, ' 852 Bradshaw Northern Territory'),
578
+ (228, '852', 'Creswell', 'NT', 'AU', 487, ' 852 Creswell Northern Territory'),
579
+ (229, '852', 'Daguragu', 'NT', 'AU', 487, ' 852 Daguragu Northern Territory'),
580
+ (230, '852', 'Daly Waters', 'NT', 'AU', 487, ' 852 Daly Waters Northern Territory'),
581
+ (231, '852', 'Dunmarra', 'NT', 'AU', 487, ' 852 Dunmarra Northern Territory'),
582
+ (232, '852', 'Delamere', 'NT', 'AU', 487, ' 852 Delamere Northern Territory'),
583
+ (233, '852', 'Barunga', 'NT', 'AU', 487, ' 852 Barunga Northern Territory'),
584
+ (234, '852', 'Beswick', 'NT', 'AU', 487, ' 852 Beswick Northern Territory'),
585
+ (235, '852', 'Beswick Creek', 'NT', 'AU', 487, ' 852 Beswick Creek Northern Territory'),
586
+ (236, '852', 'Binjari', 'NT', 'AU', 487, ' 852 Binjari Northern Territory'),
587
+ (237, '852', 'Birdum', 'NT', 'AU', 487, ' 852 Birdum Northern Territory'),
588
+ (238, '852', 'Baines', 'NT', 'AU', 487, ' 852 Baines Northern Territory'),
589
+ (239, '852', 'Arnold', 'NT', 'AU', 487, ' 852 Arnold Northern Territory'),
590
+ (240, '852', 'Buchanan', 'NT', 'AU', 487, ' 852 Buchanan Northern Territory'),
591
+ (241, '852', 'Bulman Weemol', 'NT', 'AU', 487, ' 852 Bulman Weemol Northern Territory'),
592
+ (242, '852', 'Robinson River', 'NT', 'AU', 487, ' 852 Robinson River Northern Territory'),
593
+ (243, '852', 'Nitmiluk', 'NT', 'AU', 487, ' 852 Nitmiluk Northern Territory'),
594
+ (244, '852', 'Ngukurr', 'NT', 'AU', 487, ' 852 Ngukurr Northern Territory'),
595
+ (245, '852', 'Pigeon Hole', 'NT', 'AU', 487, ' 852 Pigeon Hole Northern Territory'),
596
+ (246, '852', 'Pellew Islands', 'NT', 'AU', 487, ' 852 Pellew Islands Northern Territory'),
597
+ (247, '852', 'Victoria River', 'NT', 'AU', 487, ' 852 Victoria River Northern Territory'),
598
+ (248, '852', 'Victoria River Downs', 'NT', 'AU', 487, ' 852 Victoria River Downs Northern Territory'),
599
+ (249, '852', 'Wilton', 'NT', 'AU', 487, ' 852 Wilton Northern Territory'),
600
+ (250, '852', 'Warumungu', 'NT', 'AU', 487, ' 852 Warumungu Northern Territory'),
601
+ (251, '852', 'Wave Hill', 'NT', 'AU', 487, ' 852 Wave Hill Northern Territory'),
602
+ (252, '852', 'Uralla', 'NT', 'AU', 487, ' 852 Uralla Northern Territory'),
603
+ (253, '852', 'Venn', 'NT', 'AU', 487, ' 852 Venn Northern Territory'),
604
+ (254, '852', 'Top Springs', 'NT', 'AU', 487, ' 852 Top Springs Northern Territory'),
605
+ (255, '852', 'Sturt Plateau', 'NT', 'AU', 487, ' 852 Sturt Plateau Northern Territory'),
606
+ (256, '852', 'Tanami East', 'NT', 'AU', 487, ' 852 Tanami East Northern Territory'),
607
+ (257, '852', 'Timber Creek', 'NT', 'AU', 487, ' 852 Timber Creek Northern Territory'),
608
+ (258, '852', 'Yarralin', 'NT', 'AU', 487, ' 852 Yarralin Northern Territory'),
609
+ (259, '852', 'Miniyeri', 'NT', 'AU', 487, ' 852 Miniyeri Northern Territory'),
610
+ (260, '853', 'Tindal', 'NT', 'AU', 487, ' 853 Tindal Northern Territory'),
611
+ (261, '854', 'Borroloola', 'NT', 'AU', 487, ' 854 Borroloola Northern Territory'),
612
+ (262, '854', 'King Ash Bay', 'NT', 'AU', 487, ' 854 King Ash Bay Northern Territory'),
613
+ (263, '860', 'Tennant Creek', 'NT', 'AU', 487, ' 860 Tennant Creek Northern Territory'),
614
+ (264, '861', 'Tennant Creek', 'NT', 'AU', 487, ' 861 Tennant Creek Northern Territory'),
615
+ (265, '861', 'Brunchilly', 'NT', 'AU', 487, ' 861 Brunchilly Northern Territory'),
616
+ (266, '862', 'Avon Downs', 'NT', 'AU', 487, ' 862 Avon Downs Northern Territory'),
617
+ (267, '862', 'Calvert', 'NT', 'AU', 487, ' 862 Calvert Northern Territory'),
618
+ (268, '862', 'Cresswell Downs', 'NT', 'AU', 487, ' 862 Cresswell Downs Northern Territory'),
619
+ (269, '862', 'Elliott', 'NT', 'AU', 487, ' 862 Elliott Northern Territory'),
620
+ (270, '862', 'Tennant Creek', 'NT', 'AU', 487, ' 862 Tennant Creek Northern Territory'),
621
+ (271, '862', 'Phillip Creek Station', 'NT', 'AU', 487, ' 862 Phillip Creek Station Northern Territory'),
622
+ (272, '862', 'Renner Springs', 'NT', 'AU', 487, ' 862 Renner Springs Northern Territory'),
623
+ (273, '862', 'Tablelands', 'NT', 'AU', 487, ' 862 Tablelands Northern Territory'),
624
+ (274, '862', 'Three Ways', 'NT', 'AU', 487, ' 862 Three Ways Northern Territory'),
625
+ (275, '862', 'Helen Springs', 'NT', 'AU', 487, ' 862 Helen Springs Northern Territory'),
626
+ (276, '862', 'Muckaty Station', 'NT', 'AU', 487, ' 862 Muckaty Station Northern Territory'),
627
+ (277, '862', 'Newcastle Waters', 'NT', 'AU', 487, ' 862 Newcastle Waters Northern Territory'),
628
+ (278, '862', 'Nicholson', 'NT', 'AU', 487, ' 862 Nicholson Northern Territory'),
629
+ (279, '862', 'Pamayu', 'NT', 'AU', 487, ' 862 Pamayu Northern Territory'),
630
+ (280, '862', 'Wycliffe Well', 'NT', 'AU', 487, ' 862 Wycliffe Well Northern Territory'),
631
+ (281, '862', 'Warrego', 'NT', 'AU', 487, ' 862 Warrego Northern Territory'),
632
+ (282, '862', 'Wollogorang Station', 'NT', 'AU', 487, ' 862 Wollogorang Station Northern Territory'),
633
+ (283, '870', 'Undoolya', 'NT', 'AU', 487, ' 870 Undoolya Northern Territory'),
634
+ (284, '870', 'White Gums', 'NT', 'AU', 487, ' 870 White Gums Northern Territory'),
635
+ (285, '870', 'Ilparpa', 'NT', 'AU', 487, ' 870 Ilparpa Northern Territory'),
636
+ (286, '870', 'Larapinta', 'NT', 'AU', 487, ' 870 Larapinta Northern Territory'),
637
+ (287, '870', 'Mount Johns', 'NT', 'AU', 487, ' 870 Mount Johns Northern Territory'),
638
+ (288, '870', 'Stuart', 'NT', 'AU', 487, ' 870 Stuart Northern Territory'),
639
+ (289, '870', 'The Gap', 'NT', 'AU', 487, ' 870 The Gap Northern Territory'),
640
+ (290, '870', 'Ross', 'NT', 'AU', 487, ' 870 Ross Northern Territory'),
641
+ (291, '870', 'Sadadeen', 'NT', 'AU', 487, ' 870 Sadadeen Northern Territory'),
642
+ (292, '870', 'Desert Springs', 'NT', 'AU', 487, ' 870 Desert Springs Northern Territory'),
643
+ (293, '870', 'Ciccone', 'NT', 'AU', 487, ' 870 Ciccone Northern Territory'),
644
+ (294, '870', 'Connellan', 'NT', 'AU', 487, ' 870 Connellan Northern Territory'),
645
+ (295, '870', 'Braitling', 'NT', 'AU', 487, ' 870 Braitling Northern Territory'),
646
+ (296, '870', 'East Side', 'NT', 'AU', 487, ' 870 East Side Northern Territory'),
647
+ (297, '870', 'Flynn', 'NT', 'AU', 487, ' 870 Flynn Northern Territory'),
648
+ (298, '870', 'Gillen', 'NT', 'AU', 487, ' 870 Gillen Northern Territory'),
649
+ (299, '870', 'Irlpme', 'NT', 'AU', 487, ' 870 Irlpme Northern Territory'),
650
+ (300, '870', 'Alice Springs', 'NT', 'AU', 487, ' 870 Alice Springs Northern Territory'),
651
+ (301, '870', 'Araluen', 'NT', 'AU', 487, ' 870 Araluen Northern Territory'),
652
+ (302, '870', 'Arumbera', 'NT', 'AU', 487, ' 870 Arumbera Northern Territory'),
653
+ (303, '871', 'Alice Springs', 'NT', 'AU', 487, ' 871 Alice Springs Northern Territory'),
654
+ (304, '872', 'Alice Springs', 'NT', 'AU', 487, ' 872 Alice Springs Northern Territory'),
655
+ (305, '872', 'Amoonguna', 'NT', 'AU', 487, ' 872 Amoonguna Northern Territory'),
656
+ (306, '872', 'Ampilatwatja', 'NT', 'AU', 487, ' 872 Ampilatwatja Northern Territory'),
657
+ (307, '872', 'Anatye', 'NT', 'AU', 487, ' 872 Anatye Northern Territory'),
658
+ (308, '872', 'Anmatjere', 'NT', 'AU', 487, ' 872 Anmatjere Northern Territory'),
659
+ (309, '872', 'Antewenegerrde', 'NT', 'AU', 487, ' 872 Antewenegerrde Northern Territory'),
660
+ (310, '872', 'Atitjere', 'NT', 'AU', 487, ' 872 Atitjere Northern Territory'),
661
+ (311, '872', 'Areyonga', 'NT', 'AU', 487, ' 872 Areyonga Northern Territory'),
662
+ (312, '872', 'Aherrenge', 'NT', 'AU', 487, ' 872 Aherrenge Northern Territory'),
663
+ (313, '872', 'Ali Curung', 'NT', 'AU', 487, ' 872 Ali Curung Northern Territory'),
664
+ (314, '872', 'Jay Creek', 'NT', 'AU', 487, ' 872 Jay Creek Northern Territory'),
665
+ (315, '872', 'Kaltukatjara', 'NT', 'AU', 487, ' 872 Kaltukatjara Northern Territory'),
666
+ (316, '872', 'Kintore', 'NT', 'AU', 487, ' 872 Kintore Northern Territory'),
667
+ (317, '872', 'Kulgera', 'NT', 'AU', 487, ' 872 Kulgera Northern Territory'),
668
+ (318, '872', 'Kunparrka', 'NT', 'AU', 487, ' 872 Kunparrka Northern Territory'),
669
+ (319, '872', 'Lake Mackay', 'NT', 'AU', 487, ' 872 Lake Mackay Northern Territory'),
670
+ (320, '872', 'Laramba', 'NT', 'AU', 487, ' 872 Laramba Northern Territory'),
671
+ (321, '872', 'Haasts Bluff', 'NT', 'AU', 487, ' 872 Haasts Bluff Northern Territory'),
672
+ (322, '872', 'Hale', 'NT', 'AU', 487, ' 872 Hale Northern Territory'),
673
+ (323, '872', 'Hart', 'NT', 'AU', 487, ' 872 Hart Northern Territory'),
674
+ (324, '872', 'Hart Range', 'NT', 'AU', 487, ' 872 Hart Range Northern Territory'),
675
+ (325, '872', 'Ghan', 'NT', 'AU', 487, ' 872 Ghan Northern Territory'),
676
+ (326, '872', 'Costello', 'NT', 'AU', 487, ' 872 Costello Northern Territory'),
677
+ (327, '872', 'Canteen Creek', 'NT', 'AU', 487, ' 872 Canteen Creek Northern Territory'),
678
+ (328, '872', 'Chilla Well', 'NT', 'AU', 487, ' 872 Chilla Well Northern Territory'),
679
+ (329, '872', 'Ayers Rock', 'NT', 'AU', 487, ' 872 Ayers Rock Northern Territory'),
680
+ (330, '872', 'Barrow Creek', 'NT', 'AU', 487, ' 872 Barrow Creek Northern Territory'),
681
+ (331, '872', 'Burt Plain', 'NT', 'AU', 487, ' 872 Burt Plain Northern Territory'),
682
+ (332, '872', 'Docker River', 'NT', 'AU', 487, ' 872 Docker River Northern Territory'),
683
+ (333, '872', 'Davenport', 'NT', 'AU', 487, ' 872 Davenport Northern Territory'),
684
+ (334, '872', 'Engawala', 'NT', 'AU', 487, ' 872 Engawala Northern Territory'),
685
+ (335, '872', 'Erldunda', 'NT', 'AU', 487, ' 872 Erldunda Northern Territory'),
686
+ (336, '872', 'Finke', 'NT', 'AU', 487, ' 872 Finke Northern Territory'),
687
+ (337, '872', 'Sandover', 'NT', 'AU', 487, ' 872 Sandover Northern Territory'),
688
+ (338, '872', 'Santa Teresa', 'NT', 'AU', 487, ' 872 Santa Teresa Northern Territory'),
689
+ (339, '872', 'Simpson', 'NT', 'AU', 487, ' 872 Simpson Northern Territory'),
690
+ (340, '872', 'Thangkenharenge', 'NT', 'AU', 487, ' 872 Thangkenharenge Northern Territory'),
691
+ (341, '872', 'Tanami', 'NT', 'AU', 487, ' 872 Tanami Northern Territory'),
692
+ (342, '872', 'Tara', 'NT', 'AU', 487, ' 872 Tara Northern Territory'),
693
+ (343, '872', 'Ti Tree', 'NT', 'AU', 487, ' 872 Ti Tree Northern Territory'),
694
+ (344, '872', 'Titjikala', 'NT', 'AU', 487, ' 872 Titjikala Northern Territory'),
695
+ (345, '872', 'Uluru', 'NT', 'AU', 487, ' 872 Uluru Northern Territory'),
696
+ (346, '872', 'Umpangara', 'NT', 'AU', 487, ' 872 Umpangara Northern Territory'),
697
+ (347, '872', 'Mount Liebig', 'NT', 'AU', 487, ' 872 Mount Liebig Northern Territory'),
698
+ (348, '872', 'Mount Zeil', 'NT', 'AU', 487, ' 872 Mount Zeil Northern Territory'),
699
+ (349, '872', 'Mereenie', 'NT', 'AU', 487, ' 872 Mereenie Northern Territory'),
700
+ (350, '872', 'Imanpa', 'NT', 'AU', 487, ' 872 Imanpa Northern Territory'),
701
+ (351, '872', 'Ininti Store', 'NT', 'AU', 487, ' 872 Ininti Store Northern Territory'),
702
+ (352, '872', 'Hermannsburg', 'NT', 'AU', 487, ' 872 Hermannsburg Northern Territory'),
703
+ (353, '872', 'Hugh', 'NT', 'AU', 487, ' 872 Hugh Northern Territory'),
704
+ (354, '872', 'Papunya', 'NT', 'AU', 487, ' 872 Papunya Northern Territory'),
705
+ (355, '872', 'Petermann', 'NT', 'AU', 487, ' 872 Petermann Northern Territory'),
706
+ (356, '872', 'Nyirripi', 'NT', 'AU', 487, ' 872 Nyirripi Northern Territory'),
707
+ (357, '872', 'Mulga Bore', 'NT', 'AU', 487, ' 872 Mulga Bore Northern Territory'),
708
+ (358, '872', 'Mutitjulu', 'NT', 'AU', 487, ' 872 Mutitjulu Northern Territory'),
709
+ (359, '872', 'Namatjira', 'NT', 'AU', 487, ' 872 Namatjira Northern Territory'),
710
+ (360, '872', 'Willowra', 'NT', 'AU', 487, ' 872 Willowra Northern Territory'),
711
+ (361, '872', 'Wilora', 'NT', 'AU', 487, ' 872 Wilora Northern Territory'),
712
+ (362, '872', 'Urapuntja', 'NT', 'AU', 487, ' 872 Urapuntja Northern Territory'),
713
+ (363, '872', 'Wallace Rockhole', 'NT', 'AU', 487, ' 872 Wallace Rockhole Northern Territory'),
714
+ (364, '872', 'Wutunugurra', 'NT', 'AU', 487, ' 872 Wutunugurra Northern Territory'),
715
+ (365, '872', 'Yuelamu', 'NT', 'AU', 487, ' 872 Yuelamu Northern Territory'),
716
+ (366, '872', 'Yuendumu', 'NT', 'AU', 487, ' 872 Yuendumu Northern Territory'),
717
+ (367, '872', 'Yulara', 'NT', 'AU', 487, ' 872 Yulara Northern Territory'),
718
+ (368, '872', 'Amata', 'SA', 'AU', 489, ' 872 Amata South Australia'),
719
+ (369, '872', 'Ernabella', 'SA', 'AU', 489, ' 872 Ernabella South Australia'),
720
+ (370, '872', 'Fregon', 'SA', 'AU', 489, ' 872 Fregon South Australia'),
721
+ (371, '872', 'Indulkana', 'SA', 'AU', 489, ' 872 Indulkana South Australia'),
722
+ (372, '872', 'Mimili', 'SA', 'AU', 489, ' 872 Mimili South Australia'),
723
+ (373, '872', 'Murputja Homelands', 'SA', 'AU', 489, ' 872 Murputja Homelands South Australia'),
724
+ (374, '872', 'Nyapari', 'SA', 'AU', 489, ' 872 Nyapari South Australia'),
725
+ (375, '872', 'Pitjantjatjara Homelands', 'SA', 'AU', 489, ' 872 Pitjantjatjara Homelands South Australia'),
726
+ (376, '872', 'Gibson Desert North', 'WA', 'AU', 492, ' 872 Gibson Desert North Western Australia'),
727
+ (377, '872', 'Gibson Desert South', 'WA', 'AU', 492, ' 872 Gibson Desert South Western Australia'),
728
+ (378, '872', 'Kiwirrkurra', 'WA', 'AU', 492, ' 872 Kiwirrkurra Western Australia'),
729
+ (379, '872', 'Ngaanyatjarra-giles', 'WA', 'AU', 492, ' 872 Ngaanyatjarra-giles Western Australia'),
730
+ (380, '872', 'Patjarr', 'WA', 'AU', 492, ' 872 Patjarr Western Australia'),
731
+ (381, '872', 'Tjirrkarli', 'WA', 'AU', 492, ' 872 Tjirrkarli Western Australia'),
732
+ (382, '872', 'Tjukurla', 'WA', 'AU', 492, ' 872 Tjukurla Western Australia'),
733
+ (383, '872', 'Wannarn', 'WA', 'AU', 492, ' 872 Wannarn Western Australia'),
734
+ (384, '872', 'Wingellina', 'WA', 'AU', 492, ' 872 Wingellina Western Australia'),
735
+ (385, '880', 'Gove', 'NT', 'AU', 487, ' 880 Gove Northern Territory'),
736
+ (386, '880', 'Gunyangara', 'NT', 'AU', 487, ' 880 Gunyangara Northern Territory'),
737
+ (387, '880', 'Gapuwiyak', 'NT', 'AU', 487, ' 880 Gapuwiyak Northern Territory'),
738
+ (388, '880', 'Nhulunbuy', 'NT', 'AU', 487, ' 880 Nhulunbuy Northern Territory'),
739
+ (389, '880', 'Yirrkala', 'NT', 'AU', 487, ' 880 Yirrkala Northern Territory'),
740
+ (390, '881', 'Nhulunbuy', 'NT', 'AU', 487, ' 881 Nhulunbuy Northern Territory'),
741
+ (391, '885', 'Alyangula', 'NT', 'AU', 487, ' 885 Alyangula Northern Territory'),
742
+ (392, '886', 'Jabiru', 'NT', 'AU', 487, ' 886 Jabiru Northern Territory'),
743
+ (393, '1215', 'Australia Square', 'NSW', 'AU', 486, ' 1215 Australia Square New South Wales'),
744
+ (394, '1220', 'Grosvenor Place', 'NSW', 'AU', 486, ' 1220 Grosvenor Place New South Wales'),
745
+ (395, '1225', 'Royal Exchange', 'NSW', 'AU', 486, ' 1225 Royal Exchange New South Wales'),
746
+ (396, '1230', 'Queen Victoria Building', 'NSW', 'AU', 486, ' 1230 Queen Victoria Building New South Wales'),
747
+ (397, '1235', 'Sydney South', 'NSW', 'AU', 486, ' 1235 Sydney South New South Wales'),
748
+ (398, '1240', 'Haymarket', 'NSW', 'AU', 486, ' 1240 Haymarket New South Wales'),
749
+ (399, '1300', 'Darlinghurst', 'NSW', 'AU', 486, ' 1300 Darlinghurst New South Wales'),
750
+ (400, '1335', 'Potts Point', 'NSW', 'AU', 486, ' 1335 Potts Point New South Wales'),
751
+ (401, '1340', 'Kings Cross', 'NSW', 'AU', 486, ' 1340 Kings Cross New South Wales'),
752
+ (402, '1350', 'Woollahra', 'NSW', 'AU', 486, ' 1350 Woollahra New South Wales'),
753
+ (403, '1355', 'Bondi Junction', 'NSW', 'AU', 486, ' 1355 Bondi Junction New South Wales'),
754
+ (404, '1360', 'Double Bay', 'NSW', 'AU', 486, ' 1360 Double Bay New South Wales'),
755
+ (405, '1435', 'Alexandria', 'NSW', 'AU', 486, ' 1435 Alexandria New South Wales'),
756
+ (406, '1440', 'Waterloo', 'NSW', 'AU', 486, ' 1440 Waterloo New South Wales'),
757
+ (407, '1445', 'Rosebery', 'NSW', 'AU', 486, ' 1445 Rosebery New South Wales'),
758
+ (408, '1450', 'Camperdown', 'NSW', 'AU', 486, ' 1450 Camperdown New South Wales'),
759
+ (409, '1455', 'Botany', 'NSW', 'AU', 486, ' 1455 Botany New South Wales'),
760
+ (410, '1460', 'Mascot', 'NSW', 'AU', 486, ' 1460 Mascot New South Wales'),
761
+ (411, '1465', 'Kensington', 'NSW', 'AU', 486, ' 1465 Kensington New South Wales'),
762
+ (412, '1466', 'University of NSW', 'NSW', 'AU', 486, ' 1466 University of NSW New South Wales'),
763
+ (413, '1470', 'Drummoyne', 'NSW', 'AU', 486, ' 1470 Drummoyne New South Wales'),
764
+ (414, '1475', 'Marrickville', 'NSW', 'AU', 486, ' 1475 Marrickville New South Wales'),
765
+ (415, '1480', 'Kingsgrove', 'NSW', 'AU', 486, ' 1480 Kingsgrove New South Wales'),
766
+ (416, '1481', 'Hurstville', 'NSW', 'AU', 486, ' 1481 Hurstville New South Wales'),
767
+ (417, '1485', 'Kogarah', 'NSW', 'AU', 486, ' 1485 Kogarah New South Wales'),
768
+ (418, '1490', 'Miranda', 'NSW', 'AU', 486, ' 1490 Miranda New South Wales'),
769
+ (419, '1495', 'Caringbah', 'NSW', 'AU', 486, ' 1495 Caringbah New South Wales'),
770
+ (420, '1499', 'Sutherland', 'NSW', 'AU', 486, ' 1499 Sutherland New South Wales'),
771
+ (421, '1515', 'West Chatswood', 'NSW', 'AU', 486, ' 1515 West Chatswood New South Wales'),
772
+ (422, '1560', 'Northbridge', 'NSW', 'AU', 486, ' 1560 Northbridge New South Wales'),
773
+ (423, '1565', 'Milsons Point', 'NSW', 'AU', 486, ' 1565 Milsons Point New South Wales'),
774
+ (424, '1570', 'Artarmon', 'NSW', 'AU', 486, ' 1570 Artarmon New South Wales'),
775
+ (425, '1585', 'Crows Nest', 'NSW', 'AU', 486, ' 1585 Crows Nest New South Wales'),
776
+ (426, '1590', 'St Leonards', 'NSW', 'AU', 486, ' 1590 St Leonards New South Wales'),
777
+ (427, '1595', 'Lane Cove', 'NSW', 'AU', 486, ' 1595 Lane Cove New South Wales'),
778
+ (428, '1630', 'Hornsby', 'NSW', 'AU', 486, ' 1630 Hornsby New South Wales'),
779
+ (429, '1635', 'Hornsby Westfield', 'NSW', 'AU', 486, ' 1635 Hornsby Westfield New South Wales'),
780
+ (430, '1640', 'Frenchs Forest', 'NSW', 'AU', 486, ' 1640 Frenchs Forest New South Wales'),
781
+ (431, '1655', 'Manly', 'NSW', 'AU', 486, ' 1655 Manly New South Wales'),
782
+ (432, '1660', 'Mona Vale', 'NSW', 'AU', 486, ' 1660 Mona Vale New South Wales'),
783
+ (433, '1670', 'North Ryde', 'NSW', 'AU', 486, ' 1670 North Ryde New South Wales'),
784
+ (434, '1675', 'Gladesville', 'NSW', 'AU', 486, ' 1675 Gladesville New South Wales'),
785
+ (435, '1680', 'Ryde', 'NSW', 'AU', 486, ' 1680 Ryde New South Wales'),
786
+ (436, '1685', 'West Ryde', 'NSW', 'AU', 486, ' 1685 West Ryde New South Wales'),
787
+ (437, '1700', 'Ermington', 'NSW', 'AU', 486, ' 1700 Ermington New South Wales'),
788
+ (438, '1701', 'Rydalmere', 'NSW', 'AU', 486, ' 1701 Rydalmere New South Wales'),
789
+ (439, '1710', 'Epping', 'NSW', 'AU', 486, ' 1710 Epping New South Wales'),
790
+ (440, '1715', 'Pennant Hills', 'NSW', 'AU', 486, ' 1715 Pennant Hills New South Wales'),
791
+ (441, '1730', 'Seven Hills', 'NSW', 'AU', 486, ' 1730 Seven Hills New South Wales'),
792
+ (442, '1750', 'North Parramatta', 'NSW', 'AU', 486, ' 1750 North Parramatta New South Wales'),
793
+ (443, '1755', 'Baulkham Hills', 'NSW', 'AU', 486, ' 1755 Baulkham Hills New South Wales'),
794
+ (444, '1765', 'Castle Hill', 'NSW', 'AU', 486, ' 1765 Castle Hill New South Wales'),
795
+ (445, '1790', 'St Marys', 'NSW', 'AU', 486, ' 1790 St Marys New South Wales'),
796
+ (446, '1800', 'Ashfield', 'NSW', 'AU', 486, ' 1800 Ashfield New South Wales'),
797
+ (447, '1805', 'Burwood', 'NSW', 'AU', 486, ' 1805 Burwood New South Wales'),
798
+ (448, '1811', 'Silverwater', 'NSW', 'AU', 486, ' 1811 Silverwater New South Wales'),
799
+ (449, '1825', 'Lidcombe', 'NSW', 'AU', 486, ' 1825 Lidcombe New South Wales'),
800
+ (450, '1835', 'Auburn', 'NSW', 'AU', 486, ' 1835 Auburn New South Wales'),
801
+ (451, '1851', 'Wetherill Park', 'NSW', 'AU', 486, ' 1851 Wetherill Park New South Wales'),
802
+ (452, '1860', 'Fairfield', 'NSW', 'AU', 486, ' 1860 Fairfield New South Wales'),
803
+ (453, '1871', 'Liverpool', 'NSW', 'AU', 486, ' 1871 Liverpool New South Wales'),
804
+ (454, '1875', 'Moorebank', 'NSW', 'AU', 486, ' 1875 Moorebank New South Wales'),
805
+ (455, '1885', 'Bankstown', 'NSW', 'AU', 486, ' 1885 Bankstown New South Wales'),
806
+ (456, '1890', 'Ingleburn', 'NSW', 'AU', 486, ' 1890 Ingleburn New South Wales'),
807
+ (457, '1891', 'Milperra', 'NSW', 'AU', 486, ' 1891 Milperra New South Wales'),
808
+ (458, '2000', 'Barangaroo', 'NSW', 'AU', 486, ' 2000 Barangaroo New South Wales'),
809
+ (459, '2000', 'Haymarket', 'NSW', 'AU', 486, ' 2000 Haymarket New South Wales'),
810
+ (460, '2000', 'Millers Point', 'NSW', 'AU', 486, ' 2000 Millers Point New South Wales'),
811
+ (461, '2000', 'Parliament House', 'NSW', 'AU', 486, ' 2000 Parliament House New South Wales'),
812
+ (462, '2000', 'Sydney', 'NSW', 'AU', 486, ' 2000 Sydney New South Wales'),
813
+ (463, '2000', 'Dawes Point', 'NSW', 'AU', 486, ' 2000 Dawes Point New South Wales'),
814
+ (464, '2000', 'Sydney South', 'NSW', 'AU', 486, ' 2000 Sydney South New South Wales'),
815
+ (465, '2000', 'The Rocks', 'NSW', 'AU', 486, ' 2000 The Rocks New South Wales'),
816
+ (466, '2001', 'Sydney', 'NSW', 'AU', 486, ' 2001 Sydney New South Wales'),
817
+ (467, '2002', 'World Square', 'NSW', 'AU', 486, ' 2002 World Square New South Wales'),
818
+ (468, '2004', 'Eastern Suburbs', 'NSW', 'AU', 486, ' 2004 Eastern Suburbs New South Wales'),
819
+ (469, '2004', 'Alexandria', 'NSW', 'AU', 486, ' 2004 Alexandria New South Wales'),
820
+ (470, '2006', 'The University Of Sydney', 'NSW', 'AU', 486, ' 2006 The University Of Sydney New South Wales'),
821
+ (471, '2007', 'Ultimo', 'NSW', 'AU', 486, ' 2007 Ultimo New South Wales'),
822
+ (472, '2007', 'Broadway', 'NSW', 'AU', 486, ' 2007 Broadway New South Wales'),
823
+ (473, '2008', 'Chippendale', 'NSW', 'AU', 486, ' 2008 Chippendale New South Wales'),
824
+ (474, '2008', 'Darlington', 'NSW', 'AU', 486, ' 2008 Darlington New South Wales'),
825
+ (475, '2009', 'Pyrmont', 'NSW', 'AU', 486, ' 2009 Pyrmont New South Wales'),
826
+ (476, '2010', 'Darlinghurst', 'NSW', 'AU', 486, ' 2010 Darlinghurst New South Wales'),
827
+ (477, '2010', 'Surry Hills', 'NSW', 'AU', 486, ' 2010 Surry Hills New South Wales'),
828
+ (478, '2010', 'East Sydney', 'NSW', 'AU', 486, ' 2010 East Sydney New South Wales'),
829
+ (479, '2011', 'Rushcutters Bay', 'NSW', 'AU', 486, ' 2011 Rushcutters Bay New South Wales'),
830
+ (480, '2011', 'Woolloomooloo', 'NSW', 'AU', 486, ' 2011 Woolloomooloo New South Wales'),
831
+ (481, '2011', 'Elizabeth Bay', 'NSW', 'AU', 486, ' 2011 Elizabeth Bay New South Wales'),
832
+ (482, '2011', 'Hmas Kuttabul', 'NSW', 'AU', 486, ' 2011 Hmas Kuttabul New South Wales'),
833
+ (483, '2011', 'Potts Point', 'NSW', 'AU', 486, ' 2011 Potts Point New South Wales'),
834
+ (484, '2012', 'Strawberry Hills', 'NSW', 'AU', 486, ' 2012 Strawberry Hills New South Wales'),
835
+ (485, '2013', 'Strawberry Hills', 'NSW', 'AU', 486, ' 2013 Strawberry Hills New South Wales'),
836
+ (486, '2015', 'Beaconsfield', 'NSW', 'AU', 486, ' 2015 Beaconsfield New South Wales'),
837
+ (487, '2015', 'Eveleigh', 'NSW', 'AU', 486, ' 2015 Eveleigh New South Wales'),
838
+ (488, '2015', 'Alexandria', 'NSW', 'AU', 486, ' 2015 Alexandria New South Wales'),
839
+ (489, '2016', 'Redfern', 'NSW', 'AU', 486, ' 2016 Redfern New South Wales'),
840
+ (490, '2017', 'Waterloo', 'NSW', 'AU', 486, ' 2017 Waterloo New South Wales'),
841
+ (491, '2017', 'Zetland', 'NSW', 'AU', 486, ' 2017 Zetland New South Wales'),
842
+ (492, '2018', 'Eastlakes', 'NSW', 'AU', 486, ' 2018 Eastlakes New South Wales'),
843
+ (493, '2018', 'Rosebery', 'NSW', 'AU', 486, ' 2018 Rosebery New South Wales'),
844
+ (494, '2019', 'Botany', 'NSW', 'AU', 486, ' 2019 Botany New South Wales'),
845
+ (495, '2019', 'Banksmeadow', 'NSW', 'AU', 486, ' 2019 Banksmeadow New South Wales'),
846
+ (496, '2020', 'Sydney Domestic Airport', 'NSW', 'AU', 486, ' 2020 Sydney Domestic Airport New South Wales'),
847
+ (497, '2020', 'Sydney International Airport', 'NSW', 'AU', 486, ' 2020 Sydney International Airport New South Wales'),
848
+ (498, '2020', 'Mascot', 'NSW', 'AU', 486, ' 2020 Mascot New South Wales'),
849
+ (499, '2021', 'Paddington', 'NSW', 'AU', 486, ' 2021 Paddington New South Wales'),
850
+ (500, '2021', 'Moore Park', 'NSW', 'AU', 486, ' 2021 Moore Park New South Wales'),
851
+ (501, '2021', 'Centennial Park', 'NSW', 'AU', 486, ' 2021 Centennial Park New South Wales'),
852
+ (502, '2022', 'Bondi Junction', 'NSW', 'AU', 486, ' 2022 Bondi Junction New South Wales'),
853
+ (503, '2022', 'Bondi Junction Plaza', 'NSW', 'AU', 486, ' 2022 Bondi Junction Plaza New South Wales'),
854
+ (504, '2022', 'Queens Park', 'NSW', 'AU', 486, ' 2022 Queens Park New South Wales'),
855
+ (505, '2023', 'Bellevue Hill', 'NSW', 'AU', 486, ' 2023 Bellevue Hill New South Wales'),
856
+ (506, '2024', 'Bronte', 'NSW', 'AU', 486, ' 2024 Bronte New South Wales'),
857
+ (507, '2024', 'Waverley', 'NSW', 'AU', 486, ' 2024 Waverley New South Wales'),
858
+ (508, '2025', 'Woollahra', 'NSW', 'AU', 486, ' 2025 Woollahra New South Wales'),
859
+ (509, '2026', 'Tamarama', 'NSW', 'AU', 486, ' 2026 Tamarama New South Wales'),
860
+ (510, '2026', 'North Bondi', 'NSW', 'AU', 486, ' 2026 North Bondi New South Wales'),
861
+ (511, '2026', 'Bondi', 'NSW', 'AU', 486, ' 2026 Bondi New South Wales'),
862
+ (512, '2026', 'Bondi Beach', 'NSW', 'AU', 486, ' 2026 Bondi Beach New South Wales'),
863
+ (513, '2027', 'Hmas Rushcutters', 'NSW', 'AU', 486, ' 2027 Hmas Rushcutters New South Wales'),
864
+ (514, '2027', 'Darling Point', 'NSW', 'AU', 486, ' 2027 Darling Point New South Wales'),
865
+ (515, '2027', 'Edgecliff', 'NSW', 'AU', 486, ' 2027 Edgecliff New South Wales'),
866
+ (516, '2027', 'Point Piper', 'NSW', 'AU', 486, ' 2027 Point Piper New South Wales'),
867
+ (517, '2028', 'Double Bay', 'NSW', 'AU', 486, ' 2028 Double Bay New South Wales'),
868
+ (518, '2029', 'Rose Bay', 'NSW', 'AU', 486, ' 2029 Rose Bay New South Wales'),
869
+ (519, '2030', 'Rose Bay North', 'NSW', 'AU', 486, ' 2030 Rose Bay North New South Wales'),
870
+ (520, '2030', 'Vaucluse', 'NSW', 'AU', 486, ' 2030 Vaucluse New South Wales'),
871
+ (521, '2030', 'Watsons Bay', 'NSW', 'AU', 486, ' 2030 Watsons Bay New South Wales'),
872
+ (522, '2030', 'Dover Heights', 'NSW', 'AU', 486, ' 2030 Dover Heights New South Wales'),
873
+ (523, '2030', 'Hmas Watson', 'NSW', 'AU', 486, ' 2030 Hmas Watson New South Wales'),
874
+ (524, '2031', 'Randwick', 'NSW', 'AU', 486, ' 2031 Randwick New South Wales'),
875
+ (525, '2031', 'St Pauls', 'NSW', 'AU', 486, ' 2031 St Pauls New South Wales'),
876
+ (526, '2031', 'Clovelly', 'NSW', 'AU', 486, ' 2031 Clovelly New South Wales'),
877
+ (527, '2031', 'Clovelly West', 'NSW', 'AU', 486, ' 2031 Clovelly West New South Wales'),
878
+ (528, '2032', 'Kingsford', 'NSW', 'AU', 486, ' 2032 Kingsford New South Wales'),
879
+ (529, '2032', 'Daceyville', 'NSW', 'AU', 486, ' 2032 Daceyville New South Wales'),
880
+ (530, '2033', 'Kensington', 'NSW', 'AU', 486, ' 2033 Kensington New South Wales'),
881
+ (531, '2034', 'South Coogee', 'NSW', 'AU', 486, ' 2034 South Coogee New South Wales'),
882
+ (532, '2034', 'Coogee', 'NSW', 'AU', 486, ' 2034 Coogee New South Wales'),
883
+ (533, '2035', 'Maroubra', 'NSW', 'AU', 486, ' 2035 Maroubra New South Wales'),
884
+ (534, '2035', 'Maroubra South', 'NSW', 'AU', 486, ' 2035 Maroubra South New South Wales'),
885
+ (535, '2035', 'Pagewood', 'NSW', 'AU', 486, ' 2035 Pagewood New South Wales'),
886
+ (536, '2036', 'Phillip Bay', 'NSW', 'AU', 486, ' 2036 Phillip Bay New South Wales'),
887
+ (537, '2036', 'Port Botany', 'NSW', 'AU', 486, ' 2036 Port Botany New South Wales'),
888
+ (538, '2036', 'Little Bay', 'NSW', 'AU', 486, ' 2036 Little Bay New South Wales'),
889
+ (539, '2036', 'Malabar', 'NSW', 'AU', 486, ' 2036 Malabar New South Wales'),
890
+ (540, '2036', 'La Perouse', 'NSW', 'AU', 486, ' 2036 La Perouse New South Wales'),
891
+ (541, '2036', 'Matraville', 'NSW', 'AU', 486, ' 2036 Matraville New South Wales'),
892
+ (542, '2036', 'Chifley', 'NSW', 'AU', 486, ' 2036 Chifley New South Wales'),
893
+ (543, '2036', 'Eastgardens', 'NSW', 'AU', 486, ' 2036 Eastgardens New South Wales'),
894
+ (544, '2036', 'Hillsdale', 'NSW', 'AU', 486, ' 2036 Hillsdale New South Wales'),
895
+ (545, '2037', 'Forest Lodge', 'NSW', 'AU', 486, ' 2037 Forest Lodge New South Wales'),
896
+ (546, '2037', 'Glebe', 'NSW', 'AU', 486, ' 2037 Glebe New South Wales'),
897
+ (547, '2038', 'Annandale', 'NSW', 'AU', 486, ' 2038 Annandale New South Wales'),
898
+ (548, '2039', 'Rozelle', 'NSW', 'AU', 486, ' 2039 Rozelle New South Wales'),
899
+ (549, '2040', 'Lilyfield', 'NSW', 'AU', 486, ' 2040 Lilyfield New South Wales'),
900
+ (550, '2040', 'Leichhardt', 'NSW', 'AU', 486, ' 2040 Leichhardt New South Wales'),
901
+ (551, '2041', 'Balmain', 'NSW', 'AU', 486, ' 2041 Balmain New South Wales'),
902
+ (552, '2041', 'Balmain East', 'NSW', 'AU', 486, ' 2041 Balmain East New South Wales'),
903
+ (553, '2041', 'Birchgrove', 'NSW', 'AU', 486, ' 2041 Birchgrove New South Wales'),
904
+ (554, '2042', 'Enmore', 'NSW', 'AU', 486, ' 2042 Enmore New South Wales'),
905
+ (555, '2042', 'Newtown', 'NSW', 'AU', 486, ' 2042 Newtown New South Wales'),
906
+ (556, '2043', 'Erskineville', 'NSW', 'AU', 486, ' 2043 Erskineville New South Wales'),
907
+ (557, '2044', 'St Peters', 'NSW', 'AU', 486, ' 2044 St Peters New South Wales'),
908
+ (558, '2044', 'Tempe', 'NSW', 'AU', 486, ' 2044 Tempe New South Wales'),
909
+ (559, '2044', 'Sydenham', 'NSW', 'AU', 486, ' 2044 Sydenham New South Wales'),
910
+ (560, '2045', 'Haberfield', 'NSW', 'AU', 486, ' 2045 Haberfield New South Wales'),
911
+ (561, '2046', 'Five Dock', 'NSW', 'AU', 486, ' 2046 Five Dock New South Wales'),
912
+ (562, '2046', 'Rodd Point', 'NSW', 'AU', 486, ' 2046 Rodd Point New South Wales'),
913
+ (563, '2046', 'Russell Lea', 'NSW', 'AU', 486, ' 2046 Russell Lea New South Wales'),
914
+ (564, '2046', 'Wareemba', 'NSW', 'AU', 486, ' 2046 Wareemba New South Wales'),
915
+ (565, '2046', 'Abbotsford', 'NSW', 'AU', 486, ' 2046 Abbotsford New South Wales'),
916
+ (566, '2046', 'Canada Bay', 'NSW', 'AU', 486, ' 2046 Canada Bay New South Wales'),
917
+ (567, '2046', 'Chiswick', 'NSW', 'AU', 486, ' 2046 Chiswick New South Wales'),
918
+ (568, '2047', 'Drummoyne', 'NSW', 'AU', 486, ' 2047 Drummoyne New South Wales'),
919
+ (569, '2048', 'Westgate', 'NSW', 'AU', 486, ' 2048 Westgate New South Wales'),
920
+ (570, '2048', 'Stanmore', 'NSW', 'AU', 486, ' 2048 Stanmore New South Wales'),
921
+ (571, '2049', 'Petersham', 'NSW', 'AU', 486, ' 2049 Petersham New South Wales'),
922
+ (572, '2049', 'Petersham North', 'NSW', 'AU', 486, ' 2049 Petersham North New South Wales'),
923
+ (573, '2049', 'Lewisham', 'NSW', 'AU', 486, ' 2049 Lewisham New South Wales'),
924
+ (574, '2050', 'Missenden Road', 'NSW', 'AU', 486, ' 2050 Missenden Road New South Wales'),
925
+ (575, '2050', 'Camperdown', 'NSW', 'AU', 486, ' 2050 Camperdown New South Wales'),
926
+ (576, '2055', 'North Sydney', 'NSW', 'AU', 486, ' 2055 North Sydney New South Wales'),
927
+ (577, '2057', 'Chatswood', 'NSW', 'AU', 486, ' 2057 Chatswood New South Wales'),
928
+ (578, '2058', 'Northern Suburbs', 'NSW', 'AU', 486, ' 2058 Northern Suburbs New South Wales'),
929
+ (579, '2059', 'North Sydney', 'NSW', 'AU', 486, ' 2059 North Sydney New South Wales'),
930
+ (580, '2060', 'North Sydney', 'NSW', 'AU', 486, ' 2060 North Sydney New South Wales'),
931
+ (581, '2060', 'North Sydney Shoppingworld', 'NSW', 'AU', 486, ' 2060 North Sydney Shoppingworld New South Wales'),
932
+ (582, '2060', 'Waverton', 'NSW', 'AU', 486, ' 2060 Waverton New South Wales'),
933
+ (583, '2060', 'Hmas Platypus', 'NSW', 'AU', 486, ' 2060 Hmas Platypus New South Wales'),
934
+ (584, '2060', 'Hmas Waterhen', 'NSW', 'AU', 486, ' 2060 Hmas Waterhen New South Wales'),
935
+ (585, '2060', 'Lavender Bay', 'NSW', 'AU', 486, ' 2060 Lavender Bay New South Wales'),
936
+ (586, '2060', 'Mcmahons Point', 'NSW', 'AU', 486, ' 2060 Mcmahons Point New South Wales'),
937
+ (587, '2061', 'Milsons Point', 'NSW', 'AU', 486, ' 2061 Milsons Point New South Wales'),
938
+ (588, '2061', 'Kirribilli', 'NSW', 'AU', 486, ' 2061 Kirribilli New South Wales'),
939
+ (589, '2062', 'Cammeray', 'NSW', 'AU', 486, ' 2062 Cammeray New South Wales'),
940
+ (590, '2063', 'Northbridge', 'NSW', 'AU', 486, ' 2063 Northbridge New South Wales'),
941
+ (591, '2064', 'Artarmon', 'NSW', 'AU', 486, ' 2064 Artarmon New South Wales'),
942
+ (592, '2065', 'Crows Nest', 'NSW', 'AU', 486, ' 2065 Crows Nest New South Wales'),
943
+ (593, '2065', 'Royal North Shore Hospital', 'NSW', 'AU', 486, ' 2065 Royal North Shore Hospital New South Wales'),
944
+ (594, '2065', 'St Leonards', 'NSW', 'AU', 486, ' 2065 St Leonards New South Wales'),
945
+ (595, '2065', 'Wollstonecraft', 'NSW', 'AU', 486, ' 2065 Wollstonecraft New South Wales'),
946
+ (596, '2065', 'Greenwich', 'NSW', 'AU', 486, ' 2065 Greenwich New South Wales'),
947
+ (597, '2065', 'Naremburn', 'NSW', 'AU', 486, ' 2065 Naremburn New South Wales'),
948
+ (598, '2066', 'Linley Point', 'NSW', 'AU', 486, ' 2066 Linley Point New South Wales'),
949
+ (599, '2066', 'Longueville', 'NSW', 'AU', 486, ' 2066 Longueville New South Wales'),
950
+ (600, '2066', 'Lane Cove', 'NSW', 'AU', 486, ' 2066 Lane Cove New South Wales'),
951
+ (601, '2066', 'Lane Cove North', 'NSW', 'AU', 486, ' 2066 Lane Cove North New South Wales'),
952
+ (602, '2066', 'Lane Cove West', 'NSW', 'AU', 486, ' 2066 Lane Cove West New South Wales'),
953
+ (603, '2066', 'Northwood', 'NSW', 'AU', 486, ' 2066 Northwood New South Wales'),
954
+ (604, '2066', 'Riverview', 'NSW', 'AU', 486, ' 2066 Riverview New South Wales'),
955
+ (605, '2067', 'Chatswood', 'NSW', 'AU', 486, ' 2067 Chatswood New South Wales'),
956
+ (606, '2067', 'Chatswood West', 'NSW', 'AU', 486, ' 2067 Chatswood West New South Wales'),
957
+ (607, '2068', 'Castlecrag', 'NSW', 'AU', 486, ' 2068 Castlecrag New South Wales'),
958
+ (608, '2068', 'North Willoughby', 'NSW', 'AU', 486, ' 2068 North Willoughby New South Wales'),
959
+ (609, '2068', 'Willoughby', 'NSW', 'AU', 486, ' 2068 Willoughby New South Wales'),
960
+ (610, '2068', 'Willoughby East', 'NSW', 'AU', 486, ' 2068 Willoughby East New South Wales'),
961
+ (611, '2068', 'Willoughby North', 'NSW', 'AU', 486, ' 2068 Willoughby North New South Wales'),
962
+ (612, '2068', 'Middle Cove', 'NSW', 'AU', 486, ' 2068 Middle Cove New South Wales'),
963
+ (613, '2069', 'Roseville', 'NSW', 'AU', 486, ' 2069 Roseville New South Wales'),
964
+ (614, '2069', 'Roseville Chase', 'NSW', 'AU', 486, ' 2069 Roseville Chase New South Wales'),
965
+ (615, '2069', 'Castle Cove', 'NSW', 'AU', 486, ' 2069 Castle Cove New South Wales'),
966
+ (616, '2070', 'Lindfield', 'NSW', 'AU', 486, ' 2070 Lindfield New South Wales');
967
+
968
+ INSERT INTO {$this->getTable('candf_pcs')} (`entity_id`, `postcode`, `city`, `state`, `country_id`, `region_id`, `fulltext`) VALUES
969
+ (617, '2070', 'Lindfield West', 'NSW', 'AU', 486, ' 2070 Lindfield West New South Wales'),
970
+ (618, '2070', 'East Lindfield', 'NSW', 'AU', 486, ' 2070 East Lindfield New South Wales'),
971
+ (619, '2071', 'Killara', 'NSW', 'AU', 486, ' 2071 Killara New South Wales'),
972
+ (620, '2071', 'East Killara', 'NSW', 'AU', 486, ' 2071 East Killara New South Wales'),
973
+ (621, '2072', 'Gordon', 'NSW', 'AU', 486, ' 2072 Gordon New South Wales'),
974
+ (622, '2073', 'West Pymble', 'NSW', 'AU', 486, ' 2073 West Pymble New South Wales'),
975
+ (623, '2073', 'Pymble', 'NSW', 'AU', 486, ' 2073 Pymble New South Wales'),
976
+ (624, '2074', 'Warrawee', 'NSW', 'AU', 486, ' 2074 Warrawee New South Wales'),
977
+ (625, '2074', 'North Turramurra', 'NSW', 'AU', 486, ' 2074 North Turramurra New South Wales'),
978
+ (626, '2074', 'Turramurra', 'NSW', 'AU', 486, ' 2074 Turramurra New South Wales'),
979
+ (627, '2074', 'South Turramurra', 'NSW', 'AU', 486, ' 2074 South Turramurra New South Wales'),
980
+ (628, '2075', 'St Ives', 'NSW', 'AU', 486, ' 2075 St Ives New South Wales'),
981
+ (629, '2075', 'St Ives Chase', 'NSW', 'AU', 486, ' 2075 St Ives Chase New South Wales'),
982
+ (630, '2076', 'Wahroonga', 'NSW', 'AU', 486, ' 2076 Wahroonga New South Wales'),
983
+ (631, '2076', 'North Wahroonga', 'NSW', 'AU', 486, ' 2076 North Wahroonga New South Wales'),
984
+ (632, '2076', 'Normanhurst', 'NSW', 'AU', 486, ' 2076 Normanhurst New South Wales'),
985
+ (633, '2077', 'Hornsby', 'NSW', 'AU', 486, ' 2077 Hornsby New South Wales'),
986
+ (634, '2077', 'Hornsby Heights', 'NSW', 'AU', 486, ' 2077 Hornsby Heights New South Wales'),
987
+ (635, '2077', 'Waitara', 'NSW', 'AU', 486, ' 2077 Waitara New South Wales'),
988
+ (636, '2077', 'Asquith', 'NSW', 'AU', 486, ' 2077 Asquith New South Wales'),
989
+ (637, '2079', 'Mount Colah', 'NSW', 'AU', 486, ' 2079 Mount Colah New South Wales'),
990
+ (638, '2080', 'Mount Kuring-gai', 'NSW', 'AU', 486, ' 2080 Mount Kuring-gai New South Wales'),
991
+ (639, '2081', 'Cowan', 'NSW', 'AU', 486, ' 2081 Cowan New South Wales'),
992
+ (640, '2081', 'Berowra', 'NSW', 'AU', 486, ' 2081 Berowra New South Wales'),
993
+ (641, '2082', 'Berowra Creek', 'NSW', 'AU', 486, ' 2082 Berowra Creek New South Wales'),
994
+ (642, '2082', 'Berowra Heights', 'NSW', 'AU', 486, ' 2082 Berowra Heights New South Wales'),
995
+ (643, '2082', 'Berowra Waters', 'NSW', 'AU', 486, ' 2082 Berowra Waters New South Wales'),
996
+ (644, '2083', 'Dangar Island', 'NSW', 'AU', 486, ' 2083 Dangar Island New South Wales'),
997
+ (645, '2083', 'Cogra Bay', 'NSW', 'AU', 486, ' 2083 Cogra Bay New South Wales'),
998
+ (646, '2083', 'Bar Point', 'NSW', 'AU', 486, ' 2083 Bar Point New South Wales'),
999
+ (647, '2083', 'Cheero Point', 'NSW', 'AU', 486, ' 2083 Cheero Point New South Wales'),
1000
+ (648, '2083', 'Brooklyn', 'NSW', 'AU', 486, ' 2083 Brooklyn New South Wales'),
1001
+ (649, '2083', 'Milsons Passage', 'NSW', 'AU', 486, ' 2083 Milsons Passage New South Wales'),
1002
+ (650, '2083', 'Mooney Mooney', 'NSW', 'AU', 486, ' 2083 Mooney Mooney New South Wales'),
1003
+ (651, '2084', 'Terrey Hills', 'NSW', 'AU', 486, ' 2084 Terrey Hills New South Wales'),
1004
+ (652, '2084', 'Duffys Forest', 'NSW', 'AU', 486, ' 2084 Duffys Forest New South Wales'),
1005
+ (653, '2084', 'Cottage Point', 'NSW', 'AU', 486, ' 2084 Cottage Point New South Wales'),
1006
+ (654, '2085', 'Belrose', 'NSW', 'AU', 486, ' 2085 Belrose New South Wales'),
1007
+ (655, '2085', 'Belrose West', 'NSW', 'AU', 486, ' 2085 Belrose West New South Wales'),
1008
+ (656, '2085', 'Davidson', 'NSW', 'AU', 486, ' 2085 Davidson New South Wales'),
1009
+ (657, '2086', 'Frenchs Forest', 'NSW', 'AU', 486, ' 2086 Frenchs Forest New South Wales'),
1010
+ (658, '2086', 'Frenchs Forest East', 'NSW', 'AU', 486, ' 2086 Frenchs Forest East New South Wales'),
1011
+ (659, '2087', 'Killarney Heights', 'NSW', 'AU', 486, ' 2087 Killarney Heights New South Wales'),
1012
+ (660, '2087', 'Forestville', 'NSW', 'AU', 486, ' 2087 Forestville New South Wales'),
1013
+ (661, '2088', 'Mosman', 'NSW', 'AU', 486, ' 2088 Mosman New South Wales'),
1014
+ (662, '2088', 'Spit Junction', 'NSW', 'AU', 486, ' 2088 Spit Junction New South Wales'),
1015
+ (663, '2089', 'Neutral Bay', 'NSW', 'AU', 486, ' 2089 Neutral Bay New South Wales'),
1016
+ (664, '2089', 'Neutral Bay Junction', 'NSW', 'AU', 486, ' 2089 Neutral Bay Junction New South Wales'),
1017
+ (665, '2089', 'Kurraba Point', 'NSW', 'AU', 486, ' 2089 Kurraba Point New South Wales'),
1018
+ (666, '2090', 'Cremorne', 'NSW', 'AU', 486, ' 2090 Cremorne New South Wales'),
1019
+ (667, '2090', 'Cremorne Junction', 'NSW', 'AU', 486, ' 2090 Cremorne Junction New South Wales'),
1020
+ (668, '2090', 'Cremorne Point', 'NSW', 'AU', 486, ' 2090 Cremorne Point New South Wales'),
1021
+ (669, '2092', 'Seaforth', 'NSW', 'AU', 486, ' 2092 Seaforth New South Wales'),
1022
+ (670, '2093', 'Manly Vale', 'NSW', 'AU', 486, ' 2093 Manly Vale New South Wales'),
1023
+ (671, '2093', 'North Balgowlah', 'NSW', 'AU', 486, ' 2093 North Balgowlah New South Wales'),
1024
+ (672, '2093', 'Balgowlah', 'NSW', 'AU', 486, ' 2093 Balgowlah New South Wales'),
1025
+ (673, '2093', 'Balgowlah Heights', 'NSW', 'AU', 486, ' 2093 Balgowlah Heights New South Wales'),
1026
+ (674, '2093', 'Clontarf', 'NSW', 'AU', 486, ' 2093 Clontarf New South Wales'),
1027
+ (675, '2094', 'Fairlight', 'NSW', 'AU', 486, ' 2094 Fairlight New South Wales'),
1028
+ (676, '2095', 'Manly', 'NSW', 'AU', 486, ' 2095 Manly New South Wales'),
1029
+ (677, '2095', 'Manly East', 'NSW', 'AU', 486, ' 2095 Manly East New South Wales'),
1030
+ (678, '2096', 'Curl Curl', 'NSW', 'AU', 486, ' 2096 Curl Curl New South Wales'),
1031
+ (679, '2096', 'Freshwater', 'NSW', 'AU', 486, ' 2096 Freshwater New South Wales'),
1032
+ (680, '2096', 'Queenscliff', 'NSW', 'AU', 486, ' 2096 Queenscliff New South Wales'),
1033
+ (681, '2097', 'Wheeler Heights', 'NSW', 'AU', 486, ' 2097 Wheeler Heights New South Wales'),
1034
+ (682, '2097', 'Collaroy', 'NSW', 'AU', 486, ' 2097 Collaroy New South Wales'),
1035
+ (683, '2097', 'Collaroy Beach', 'NSW', 'AU', 486, ' 2097 Collaroy Beach New South Wales'),
1036
+ (684, '2099', 'Cromer', 'NSW', 'AU', 486, ' 2099 Cromer New South Wales'),
1037
+ (685, '2099', 'Narraweena', 'NSW', 'AU', 486, ' 2099 Narraweena New South Wales'),
1038
+ (686, '2099', 'North Curl Curl', 'NSW', 'AU', 486, ' 2099 North Curl Curl New South Wales'),
1039
+ (687, '2099', 'Dee Why', 'NSW', 'AU', 486, ' 2099 Dee Why New South Wales'),
1040
+ (688, '2100', 'North Manly', 'NSW', 'AU', 486, ' 2100 North Manly New South Wales'),
1041
+ (689, '2100', 'Oxford Falls', 'NSW', 'AU', 486, ' 2100 Oxford Falls New South Wales'),
1042
+ (690, '2100', 'Warringah Mall', 'NSW', 'AU', 486, ' 2100 Warringah Mall New South Wales'),
1043
+ (691, '2100', 'Brookvale', 'NSW', 'AU', 486, ' 2100 Brookvale New South Wales'),
1044
+ (692, '2100', 'Allambie Heights', 'NSW', 'AU', 486, ' 2100 Allambie Heights New South Wales'),
1045
+ (693, '2100', 'Beacon Hill', 'NSW', 'AU', 486, ' 2100 Beacon Hill New South Wales'),
1046
+ (694, '2101', 'North Narrabeen', 'NSW', 'AU', 486, ' 2101 North Narrabeen New South Wales'),
1047
+ (695, '2101', 'Narrabeen', 'NSW', 'AU', 486, ' 2101 Narrabeen New South Wales'),
1048
+ (696, '2101', 'Elanora Heights', 'NSW', 'AU', 486, ' 2101 Elanora Heights New South Wales'),
1049
+ (697, '2101', 'Ingleside', 'NSW', 'AU', 486, ' 2101 Ingleside New South Wales'),
1050
+ (698, '2102', 'Warriewood', 'NSW', 'AU', 486, ' 2102 Warriewood New South Wales'),
1051
+ (699, '2102', 'Warriewood Shopping Square', 'NSW', 'AU', 486, ' 2102 Warriewood Shopping Square New South Wales'),
1052
+ (700, '2103', 'Mona Vale', 'NSW', 'AU', 486, ' 2103 Mona Vale New South Wales'),
1053
+ (701, '2104', 'Bayview', 'NSW', 'AU', 486, ' 2104 Bayview New South Wales'),
1054
+ (702, '2105', 'Church Point', 'NSW', 'AU', 486, ' 2105 Church Point New South Wales'),
1055
+ (703, '2105', 'Morning Bay', 'NSW', 'AU', 486, ' 2105 Morning Bay New South Wales'),
1056
+ (704, '2105', 'Scotland Island', 'NSW', 'AU', 486, ' 2105 Scotland Island New South Wales'),
1057
+ (705, '2105', 'Lovett Bay', 'NSW', 'AU', 486, ' 2105 Lovett Bay New South Wales'),
1058
+ (706, '2105', 'Elvina Bay', 'NSW', 'AU', 486, ' 2105 Elvina Bay New South Wales'),
1059
+ (707, '2106', 'Newport', 'NSW', 'AU', 486, ' 2106 Newport New South Wales'),
1060
+ (708, '2106', 'Newport Beach', 'NSW', 'AU', 486, ' 2106 Newport Beach New South Wales'),
1061
+ (709, '2107', 'Whale Beach', 'NSW', 'AU', 486, ' 2107 Whale Beach New South Wales'),
1062
+ (710, '2107', 'Clareville', 'NSW', 'AU', 486, ' 2107 Clareville New South Wales'),
1063
+ (711, '2107', 'Avalon', 'NSW', 'AU', 486, ' 2107 Avalon New South Wales'),
1064
+ (712, '2107', 'Avalon Beach', 'NSW', 'AU', 486, ' 2107 Avalon Beach New South Wales'),
1065
+ (713, '2107', 'Bilgola', 'NSW', 'AU', 486, ' 2107 Bilgola New South Wales'),
1066
+ (714, '2108', 'Coasters Retreat', 'NSW', 'AU', 486, ' 2108 Coasters Retreat New South Wales'),
1067
+ (715, '2108', 'Palm Beach', 'NSW', 'AU', 486, ' 2108 Palm Beach New South Wales'),
1068
+ (716, '2108', 'Great Mackerel Beach', 'NSW', 'AU', 486, ' 2108 Great Mackerel Beach New South Wales'),
1069
+ (717, '2110', 'Hunters Hill', 'NSW', 'AU', 486, ' 2110 Hunters Hill New South Wales'),
1070
+ (718, '2110', 'Woolwich', 'NSW', 'AU', 486, ' 2110 Woolwich New South Wales'),
1071
+ (719, '2111', 'Tennyson Point', 'NSW', 'AU', 486, ' 2111 Tennyson Point New South Wales'),
1072
+ (720, '2111', 'Huntleys Cove', 'NSW', 'AU', 486, ' 2111 Huntleys Cove New South Wales'),
1073
+ (721, '2111', 'Huntleys Point', 'NSW', 'AU', 486, ' 2111 Huntleys Point New South Wales'),
1074
+ (722, '2111', 'Henley', 'NSW', 'AU', 486, ' 2111 Henley New South Wales'),
1075
+ (723, '2111', 'Gladesville', 'NSW', 'AU', 486, ' 2111 Gladesville New South Wales'),
1076
+ (724, '2111', 'Monash Park', 'NSW', 'AU', 486, ' 2111 Monash Park New South Wales'),
1077
+ (725, '2111', 'Boronia Park', 'NSW', 'AU', 486, ' 2111 Boronia Park New South Wales'),
1078
+ (726, '2112', 'Ryde', 'NSW', 'AU', 486, ' 2112 Ryde New South Wales'),
1079
+ (727, '2112', 'Putney', 'NSW', 'AU', 486, ' 2112 Putney New South Wales'),
1080
+ (728, '2112', 'Denistone East', 'NSW', 'AU', 486, ' 2112 Denistone East New South Wales'),
1081
+ (729, '2113', 'East Ryde', 'NSW', 'AU', 486, ' 2113 East Ryde New South Wales'),
1082
+ (730, '2113', 'Blenheim Road', 'NSW', 'AU', 486, ' 2113 Blenheim Road New South Wales'),
1083
+ (731, '2113', 'North Ryde', 'NSW', 'AU', 486, ' 2113 North Ryde New South Wales'),
1084
+ (732, '2113', 'Macquarie Centre', 'NSW', 'AU', 486, ' 2113 Macquarie Centre New South Wales'),
1085
+ (733, '2113', 'Macquarie Park', 'NSW', 'AU', 486, ' 2113 Macquarie Park New South Wales'),
1086
+ (734, '2114', 'Meadowbank', 'NSW', 'AU', 486, ' 2114 Meadowbank New South Wales'),
1087
+ (735, '2114', 'Melrose Park', 'NSW', 'AU', 486, ' 2114 Melrose Park New South Wales'),
1088
+ (736, '2114', 'Denistone West', 'NSW', 'AU', 486, ' 2114 Denistone West New South Wales'),
1089
+ (737, '2114', 'Denistone', 'NSW', 'AU', 486, ' 2114 Denistone New South Wales'),
1090
+ (738, '2114', 'West Ryde', 'NSW', 'AU', 486, ' 2114 West Ryde New South Wales'),
1091
+ (739, '2115', 'Ermington', 'NSW', 'AU', 486, ' 2115 Ermington New South Wales'),
1092
+ (740, '2116', 'Rydalmere', 'NSW', 'AU', 486, ' 2116 Rydalmere New South Wales'),
1093
+ (741, '2117', 'Telopea', 'NSW', 'AU', 486, ' 2117 Telopea New South Wales'),
1094
+ (742, '2117', 'Dundas', 'NSW', 'AU', 486, ' 2117 Dundas New South Wales'),
1095
+ (743, '2117', 'Dundas Valley', 'NSW', 'AU', 486, ' 2117 Dundas Valley New South Wales'),
1096
+ (744, '2117', 'Oatlands', 'NSW', 'AU', 486, ' 2117 Oatlands New South Wales'),
1097
+ (745, '2118', 'Carlingford', 'NSW', 'AU', 486, ' 2118 Carlingford New South Wales'),
1098
+ (746, '2118', 'Carlingford Court', 'NSW', 'AU', 486, ' 2118 Carlingford Court New South Wales'),
1099
+ (747, '2118', 'Carlingford North', 'NSW', 'AU', 486, ' 2118 Carlingford North New South Wales'),
1100
+ (748, '2118', 'Kingsdene', 'NSW', 'AU', 486, ' 2118 Kingsdene New South Wales'),
1101
+ (749, '2119', 'Cheltenham', 'NSW', 'AU', 486, ' 2119 Cheltenham New South Wales'),
1102
+ (750, '2119', 'Beecroft', 'NSW', 'AU', 486, ' 2119 Beecroft New South Wales'),
1103
+ (751, '2120', 'Pennant Hills', 'NSW', 'AU', 486, ' 2120 Pennant Hills New South Wales'),
1104
+ (752, '2120', 'Thornleigh', 'NSW', 'AU', 486, ' 2120 Thornleigh New South Wales'),
1105
+ (753, '2120', 'Westleigh', 'NSW', 'AU', 486, ' 2120 Westleigh New South Wales'),
1106
+ (754, '2121', 'Epping', 'NSW', 'AU', 486, ' 2121 Epping New South Wales'),
1107
+ (755, '2121', 'North Epping', 'NSW', 'AU', 486, ' 2121 North Epping New South Wales'),
1108
+ (756, '2122', 'Marsfield', 'NSW', 'AU', 486, ' 2122 Marsfield New South Wales'),
1109
+ (757, '2122', 'Eastwood', 'NSW', 'AU', 486, ' 2122 Eastwood New South Wales'),
1110
+ (758, '2124', 'Parramatta', 'NSW', 'AU', 486, ' 2124 Parramatta New South Wales'),
1111
+ (759, '2125', 'West Pennant Hills', 'NSW', 'AU', 486, ' 2125 West Pennant Hills New South Wales'),
1112
+ (760, '2126', 'Cherrybrook', 'NSW', 'AU', 486, ' 2126 Cherrybrook New South Wales'),
1113
+ (761, '2127', 'Newington', 'NSW', 'AU', 486, ' 2127 Newington New South Wales'),
1114
+ (762, '2127', 'Wentworth Point', 'NSW', 'AU', 486, ' 2127 Wentworth Point New South Wales'),
1115
+ (763, '2127', 'Sydney Olympic Park', 'NSW', 'AU', 486, ' 2127 Sydney Olympic Park New South Wales'),
1116
+ (764, '2128', 'Silverwater', 'NSW', 'AU', 486, ' 2128 Silverwater New South Wales'),
1117
+ (765, '2129', 'Sydney Markets', 'NSW', 'AU', 486, ' 2129 Sydney Markets New South Wales'),
1118
+ (766, '2130', 'Summer Hill', 'NSW', 'AU', 486, ' 2130 Summer Hill New South Wales'),
1119
+ (767, '2131', 'Ashfield', 'NSW', 'AU', 486, ' 2131 Ashfield New South Wales'),
1120
+ (768, '2132', 'Croydon', 'NSW', 'AU', 486, ' 2132 Croydon New South Wales'),
1121
+ (769, '2133', 'Croydon Park', 'NSW', 'AU', 486, ' 2133 Croydon Park New South Wales'),
1122
+ (770, '2133', 'Enfield South', 'NSW', 'AU', 486, ' 2133 Enfield South New South Wales'),
1123
+ (771, '2134', 'Burwood', 'NSW', 'AU', 486, ' 2134 Burwood New South Wales'),
1124
+ (772, '2134', 'Burwood North', 'NSW', 'AU', 486, ' 2134 Burwood North New South Wales'),
1125
+ (773, '2135', 'Strathfield', 'NSW', 'AU', 486, ' 2135 Strathfield New South Wales'),
1126
+ (774, '2136', 'Strathfield South', 'NSW', 'AU', 486, ' 2136 Strathfield South New South Wales'),
1127
+ (775, '2136', 'Enfield', 'NSW', 'AU', 486, ' 2136 Enfield New South Wales'),
1128
+ (776, '2136', 'Burwood Heights', 'NSW', 'AU', 486, ' 2136 Burwood Heights New South Wales'),
1129
+ (777, '2137', 'Cabarita', 'NSW', 'AU', 486, ' 2137 Cabarita New South Wales'),
1130
+ (778, '2137', 'Breakfast Point', 'NSW', 'AU', 486, ' 2137 Breakfast Point New South Wales'),
1131
+ (779, '2137', 'Concord', 'NSW', 'AU', 486, ' 2137 Concord New South Wales'),
1132
+ (780, '2137', 'Mortlake', 'NSW', 'AU', 486, ' 2137 Mortlake New South Wales'),
1133
+ (781, '2137', 'North Strathfield', 'NSW', 'AU', 486, ' 2137 North Strathfield New South Wales'),
1134
+ (782, '2138', 'Rhodes', 'NSW', 'AU', 486, ' 2138 Rhodes New South Wales'),
1135
+ (783, '2138', 'Liberty Grove', 'NSW', 'AU', 486, ' 2138 Liberty Grove New South Wales'),
1136
+ (784, '2138', 'Concord West', 'NSW', 'AU', 486, ' 2138 Concord West New South Wales'),
1137
+ (785, '2140', 'Homebush', 'NSW', 'AU', 486, ' 2140 Homebush New South Wales'),
1138
+ (786, '2140', 'Homebush South', 'NSW', 'AU', 486, ' 2140 Homebush South New South Wales'),
1139
+ (787, '2140', 'Homebush West', 'NSW', 'AU', 486, ' 2140 Homebush West New South Wales'),
1140
+ (788, '2141', 'Lidcombe', 'NSW', 'AU', 486, ' 2141 Lidcombe New South Wales'),
1141
+ (789, '2141', 'Lidcombe North', 'NSW', 'AU', 486, ' 2141 Lidcombe North New South Wales'),
1142
+ (790, '2141', 'Rookwood', 'NSW', 'AU', 486, ' 2141 Rookwood New South Wales'),
1143
+ (791, '2141', 'Berala', 'NSW', 'AU', 486, ' 2141 Berala New South Wales'),
1144
+ (792, '2142', 'Holroyd', 'NSW', 'AU', 486, ' 2142 Holroyd New South Wales'),
1145
+ (793, '2142', 'Rosehill', 'NSW', 'AU', 486, ' 2142 Rosehill New South Wales'),
1146
+ (794, '2142', 'South Granville', 'NSW', 'AU', 486, ' 2142 South Granville New South Wales'),
1147
+ (795, '2142', 'Blaxcell', 'NSW', 'AU', 486, ' 2142 Blaxcell New South Wales'),
1148
+ (796, '2142', 'Granville', 'NSW', 'AU', 486, ' 2142 Granville New South Wales'),
1149
+ (797, '2142', 'Camellia', 'NSW', 'AU', 486, ' 2142 Camellia New South Wales'),
1150
+ (798, '2142', 'Clyde', 'NSW', 'AU', 486, ' 2142 Clyde New South Wales'),
1151
+ (799, '2143', 'Birrong', 'NSW', 'AU', 486, ' 2143 Birrong New South Wales'),
1152
+ (800, '2143', 'Potts Hill', 'NSW', 'AU', 486, ' 2143 Potts Hill New South Wales'),
1153
+ (801, '2143', 'Regents Park', 'NSW', 'AU', 486, ' 2143 Regents Park New South Wales'),
1154
+ (802, '2144', 'Auburn', 'NSW', 'AU', 486, ' 2144 Auburn New South Wales'),
1155
+ (803, '2145', 'Constitution Hill', 'NSW', 'AU', 486, ' 2145 Constitution Hill New South Wales'),
1156
+ (804, '2145', 'Girraween', 'NSW', 'AU', 486, ' 2145 Girraween New South Wales'),
1157
+ (805, '2145', 'Greystanes', 'NSW', 'AU', 486, ' 2145 Greystanes New South Wales'),
1158
+ (806, '2145', 'Westmead', 'NSW', 'AU', 486, ' 2145 Westmead New South Wales'),
1159
+ (807, '2145', 'Wentworthville', 'NSW', 'AU', 486, ' 2145 Wentworthville New South Wales'),
1160
+ (808, '2145', 'South Wentworthville', 'NSW', 'AU', 486, ' 2145 South Wentworthville New South Wales'),
1161
+ (809, '2145', 'Mays Hill', 'NSW', 'AU', 486, ' 2145 Mays Hill New South Wales'),
1162
+ (810, '2145', 'Pemulwuy', 'NSW', 'AU', 486, ' 2145 Pemulwuy New South Wales'),
1163
+ (811, '2145', 'Pendle Hill', 'NSW', 'AU', 486, ' 2145 Pendle Hill New South Wales'),
1164
+ (812, '2146', 'Old Toongabbie', 'NSW', 'AU', 486, ' 2146 Old Toongabbie New South Wales'),
1165
+ (813, '2146', 'Toongabbie', 'NSW', 'AU', 486, ' 2146 Toongabbie New South Wales'),
1166
+ (814, '2146', 'Toongabbie East', 'NSW', 'AU', 486, ' 2146 Toongabbie East New South Wales'),
1167
+ (815, '2147', 'Seven Hills', 'NSW', 'AU', 486, ' 2147 Seven Hills New South Wales'),
1168
+ (816, '2147', 'Seven Hills West', 'NSW', 'AU', 486, ' 2147 Seven Hills West New South Wales'),
1169
+ (817, '2147', 'Kings Langley', 'NSW', 'AU', 486, ' 2147 Kings Langley New South Wales'),
1170
+ (818, '2147', 'Lalor Park', 'NSW', 'AU', 486, ' 2147 Lalor Park New South Wales'),
1171
+ (819, '2148', 'Kings Park', 'NSW', 'AU', 486, ' 2148 Kings Park New South Wales'),
1172
+ (820, '2148', 'Huntingwood', 'NSW', 'AU', 486, ' 2148 Huntingwood New South Wales'),
1173
+ (821, '2148', 'Arndell Park', 'NSW', 'AU', 486, ' 2148 Arndell Park New South Wales'),
1174
+ (822, '2148', 'Blacktown', 'NSW', 'AU', 486, ' 2148 Blacktown New South Wales'),
1175
+ (823, '2148', 'Blacktown Westpoint', 'NSW', 'AU', 486, ' 2148 Blacktown Westpoint New South Wales'),
1176
+ (824, '2148', 'Prospect', 'NSW', 'AU', 486, ' 2148 Prospect New South Wales'),
1177
+ (825, '2148', 'Marayong', 'NSW', 'AU', 486, ' 2148 Marayong New South Wales'),
1178
+ (826, '2150', 'Parramatta', 'NSW', 'AU', 486, ' 2150 Parramatta New South Wales'),
1179
+ (827, '2150', 'Parramatta Westfield', 'NSW', 'AU', 486, ' 2150 Parramatta Westfield New South Wales'),
1180
+ (828, '2150', 'Harris Park', 'NSW', 'AU', 486, ' 2150 Harris Park New South Wales'),
1181
+ (829, '2151', 'North Parramatta', 'NSW', 'AU', 486, ' 2151 North Parramatta New South Wales'),
1182
+ (830, '2151', 'North Rocks', 'NSW', 'AU', 486, ' 2151 North Rocks New South Wales'),
1183
+ (831, '2152', 'Northmead', 'NSW', 'AU', 486, ' 2152 Northmead New South Wales'),
1184
+ (832, '2153', 'Winston Hills', 'NSW', 'AU', 486, ' 2153 Winston Hills New South Wales'),
1185
+ (833, '2153', 'Bella Vista', 'NSW', 'AU', 486, ' 2153 Bella Vista New South Wales'),
1186
+ (834, '2153', 'Baulkham Hills', 'NSW', 'AU', 486, ' 2153 Baulkham Hills New South Wales'),
1187
+ (835, '2154', 'Castle Hill', 'NSW', 'AU', 486, ' 2154 Castle Hill New South Wales'),
1188
+ (836, '2155', 'Kellyville', 'NSW', 'AU', 486, ' 2155 Kellyville New South Wales'),
1189
+ (837, '2155', 'Kellyville Ridge', 'NSW', 'AU', 486, ' 2155 Kellyville Ridge New South Wales'),
1190
+ (838, '2155', 'Beaumont Hills', 'NSW', 'AU', 486, ' 2155 Beaumont Hills New South Wales'),
1191
+ (839, '2155', 'Rouse Hill', 'NSW', 'AU', 486, ' 2155 Rouse Hill New South Wales'),
1192
+ (840, '2156', 'Annangrove', 'NSW', 'AU', 486, ' 2156 Annangrove New South Wales'),
1193
+ (841, '2156', 'Kenthurst', 'NSW', 'AU', 486, ' 2156 Kenthurst New South Wales'),
1194
+ (842, '2156', 'Glenhaven', 'NSW', 'AU', 486, ' 2156 Glenhaven New South Wales'),
1195
+ (843, '2157', 'Glenorie', 'NSW', 'AU', 486, ' 2157 Glenorie New South Wales'),
1196
+ (844, '2157', 'Forest Glen', 'NSW', 'AU', 486, ' 2157 Forest Glen New South Wales'),
1197
+ (845, '2157', 'Canoelands', 'NSW', 'AU', 486, ' 2157 Canoelands New South Wales'),
1198
+ (846, '2158', 'Dural', 'NSW', 'AU', 486, ' 2158 Dural New South Wales'),
1199
+ (847, '2158', 'Round Corner', 'NSW', 'AU', 486, ' 2158 Round Corner New South Wales'),
1200
+ (848, '2158', 'Middle Dural', 'NSW', 'AU', 486, ' 2158 Middle Dural New South Wales'),
1201
+ (849, '2159', 'Galston', 'NSW', 'AU', 486, ' 2159 Galston New South Wales'),
1202
+ (850, '2159', 'Berrilee', 'NSW', 'AU', 486, ' 2159 Berrilee New South Wales'),
1203
+ (851, '2159', 'Arcadia', 'NSW', 'AU', 486, ' 2159 Arcadia New South Wales'),
1204
+ (852, '2159', 'Fiddletown', 'NSW', 'AU', 486, ' 2159 Fiddletown New South Wales'),
1205
+ (853, '2160', 'Merrylands', 'NSW', 'AU', 486, ' 2160 Merrylands New South Wales'),
1206
+ (854, '2160', 'Merrylands West', 'NSW', 'AU', 486, ' 2160 Merrylands West New South Wales'),
1207
+ (855, '2161', 'Old Guildford', 'NSW', 'AU', 486, ' 2161 Old Guildford New South Wales'),
1208
+ (856, '2161', 'Yennora', 'NSW', 'AU', 486, ' 2161 Yennora New South Wales'),
1209
+ (857, '2161', 'Guildford', 'NSW', 'AU', 486, ' 2161 Guildford New South Wales'),
1210
+ (858, '2161', 'Guildford West', 'NSW', 'AU', 486, ' 2161 Guildford West New South Wales'),
1211
+ (859, '2162', 'Chester Hill', 'NSW', 'AU', 486, ' 2162 Chester Hill New South Wales'),
1212
+ (860, '2162', 'Sefton', 'NSW', 'AU', 486, ' 2162 Sefton New South Wales'),
1213
+ (861, '2163', 'Villawood', 'NSW', 'AU', 486, ' 2163 Villawood New South Wales'),
1214
+ (862, '2163', 'Lansdowne', 'NSW', 'AU', 486, ' 2163 Lansdowne New South Wales'),
1215
+ (863, '2163', 'Carramar', 'NSW', 'AU', 486, ' 2163 Carramar New South Wales'),
1216
+ (864, '2164', 'Wetherill Park', 'NSW', 'AU', 486, ' 2164 Wetherill Park New South Wales'),
1217
+ (865, '2164', 'Woodpark', 'NSW', 'AU', 486, ' 2164 Woodpark New South Wales'),
1218
+ (866, '2164', 'Smithfield', 'NSW', 'AU', 486, ' 2164 Smithfield New South Wales'),
1219
+ (867, '2164', 'Smithfield West', 'NSW', 'AU', 486, ' 2164 Smithfield West New South Wales'),
1220
+ (868, '2165', 'Fairfield', 'NSW', 'AU', 486, ' 2165 Fairfield New South Wales'),
1221
+ (869, '2165', 'Fairfield East', 'NSW', 'AU', 486, ' 2165 Fairfield East New South Wales'),
1222
+ (870, '2165', 'Fairfield Heights', 'NSW', 'AU', 486, ' 2165 Fairfield Heights New South Wales'),
1223
+ (871, '2165', 'Fairfield West', 'NSW', 'AU', 486, ' 2165 Fairfield West New South Wales'),
1224
+ (872, '2166', 'Canley Heights', 'NSW', 'AU', 486, ' 2166 Canley Heights New South Wales'),
1225
+ (873, '2166', 'Canley Vale', 'NSW', 'AU', 486, ' 2166 Canley Vale New South Wales'),
1226
+ (874, '2166', 'Cabramatta', 'NSW', 'AU', 486, ' 2166 Cabramatta New South Wales'),
1227
+ (875, '2166', 'Cabramatta West', 'NSW', 'AU', 486, ' 2166 Cabramatta West New South Wales'),
1228
+ (876, '2166', 'Lansvale', 'NSW', 'AU', 486, ' 2166 Lansvale New South Wales'),
1229
+ (877, '2167', 'Glenfield', 'NSW', 'AU', 486, ' 2167 Glenfield New South Wales'),
1230
+ (878, '2168', 'Heckenberg', 'NSW', 'AU', 486, ' 2168 Heckenberg New South Wales'),
1231
+ (879, '2168', 'Hinchinbrook', 'NSW', 'AU', 486, ' 2168 Hinchinbrook New South Wales'),
1232
+ (880, '2168', 'Green Valley', 'NSW', 'AU', 486, ' 2168 Green Valley New South Wales'),
1233
+ (881, '2168', 'Busby', 'NSW', 'AU', 486, ' 2168 Busby New South Wales'),
1234
+ (882, '2168', 'Cartwright', 'NSW', 'AU', 486, ' 2168 Cartwright New South Wales'),
1235
+ (883, '2168', 'Miller', 'NSW', 'AU', 486, ' 2168 Miller New South Wales'),
1236
+ (884, '2168', 'Sadleir', 'NSW', 'AU', 486, ' 2168 Sadleir New South Wales'),
1237
+ (885, '2168', 'Ashcroft', 'NSW', 'AU', 486, ' 2168 Ashcroft New South Wales'),
1238
+ (886, '2170', 'Warwick Farm', 'NSW', 'AU', 486, ' 2170 Warwick Farm New South Wales'),
1239
+ (887, '2170', 'Prestons', 'NSW', 'AU', 486, ' 2170 Prestons New South Wales'),
1240
+ (888, '2170', 'Lurnea', 'NSW', 'AU', 486, ' 2170 Lurnea New South Wales'),
1241
+ (889, '2170', 'Liverpool', 'NSW', 'AU', 486, ' 2170 Liverpool New South Wales'),
1242
+ (890, '2170', 'Liverpool South', 'NSW', 'AU', 486, ' 2170 Liverpool South New South Wales'),
1243
+ (891, '2170', 'Liverpool Westfield', 'NSW', 'AU', 486, ' 2170 Liverpool Westfield New South Wales'),
1244
+ (892, '2170', 'Moorebank', 'NSW', 'AU', 486, ' 2170 Moorebank New South Wales'),
1245
+ (893, '2170', 'Mount Pritchard', 'NSW', 'AU', 486, ' 2170 Mount Pritchard New South Wales'),
1246
+ (894, '2170', 'Casula', 'NSW', 'AU', 486, ' 2170 Casula New South Wales'),
1247
+ (895, '2170', 'Casula Mall', 'NSW', 'AU', 486, ' 2170 Casula Mall New South Wales'),
1248
+ (896, '2170', 'Chipping Norton', 'NSW', 'AU', 486, ' 2170 Chipping Norton New South Wales'),
1249
+ (897, '2170', 'Hammondville', 'NSW', 'AU', 486, ' 2170 Hammondville New South Wales'),
1250
+ (898, '2171', 'Horningsea Park', 'NSW', 'AU', 486, ' 2171 Horningsea Park New South Wales'),
1251
+ (899, '2171', 'Elizabeth Hills', 'NSW', 'AU', 486, ' 2171 Elizabeth Hills New South Wales'),
1252
+ (900, '2171', 'Cecil Hills', 'NSW', 'AU', 486, ' 2171 Cecil Hills New South Wales'),
1253
+ (901, '2171', 'Carnes Hill', 'NSW', 'AU', 486, ' 2171 Carnes Hill New South Wales'),
1254
+ (902, '2171', 'Middleton Grange', 'NSW', 'AU', 486, ' 2171 Middleton Grange New South Wales'),
1255
+ (903, '2171', 'Hoxton Park', 'NSW', 'AU', 486, ' 2171 Hoxton Park New South Wales'),
1256
+ (904, '2171', 'Len Waters Estate', 'NSW', 'AU', 486, ' 2171 Len Waters Estate New South Wales'),
1257
+ (905, '2171', 'West Hoxton', 'NSW', 'AU', 486, ' 2171 West Hoxton New South Wales'),
1258
+ (906, '2172', 'Voyager Point', 'NSW', 'AU', 486, ' 2172 Voyager Point New South Wales'),
1259
+ (907, '2172', 'Sandy Point', 'NSW', 'AU', 486, ' 2172 Sandy Point New South Wales'),
1260
+ (908, '2172', 'Pleasure Point', 'NSW', 'AU', 486, ' 2172 Pleasure Point New South Wales'),
1261
+ (909, '2173', 'Wattle Grove', 'NSW', 'AU', 486, ' 2173 Wattle Grove New South Wales'),
1262
+ (910, '2173', 'Holsworthy', 'NSW', 'AU', 486, ' 2173 Holsworthy New South Wales'),
1263
+ (911, '2174', 'Edmondson Park', 'NSW', 'AU', 486, ' 2174 Edmondson Park New South Wales'),
1264
+ (912, '2174', 'Ingleburn Milpo', 'NSW', 'AU', 486, ' 2174 Ingleburn Milpo New South Wales'),
1265
+ (913, '2175', 'Horsley Park', 'NSW', 'AU', 486, ' 2175 Horsley Park New South Wales'),
1266
+ (914, '2176', 'Abbotsbury', 'NSW', 'AU', 486, ' 2176 Abbotsbury New South Wales'),
1267
+ (915, '2176', 'Bossley Park', 'NSW', 'AU', 486, ' 2176 Bossley Park New South Wales'),
1268
+ (916, '2176', 'Edensor Park', 'NSW', 'AU', 486, ' 2176 Edensor Park New South Wales'),
1269
+ (917, '2176', 'Greenfield Park', 'NSW', 'AU', 486, ' 2176 Greenfield Park New South Wales'),
1270
+ (918, '2176', 'Prairiewood', 'NSW', 'AU', 486, ' 2176 Prairiewood New South Wales'),
1271
+ (919, '2176', 'St Johns Park', 'NSW', 'AU', 486, ' 2176 St Johns Park New South Wales'),
1272
+ (920, '2176', 'Wakeley', 'NSW', 'AU', 486, ' 2176 Wakeley New South Wales'),
1273
+ (921, '2177', 'Bonnyrigg', 'NSW', 'AU', 486, ' 2177 Bonnyrigg New South Wales'),
1274
+ (922, '2177', 'Bonnyrigg Heights', 'NSW', 'AU', 486, ' 2177 Bonnyrigg Heights New South Wales'),
1275
+ (923, '2178', 'Cecil Park', 'NSW', 'AU', 486, ' 2178 Cecil Park New South Wales'),
1276
+ (924, '2178', 'Kemps Creek', 'NSW', 'AU', 486, ' 2178 Kemps Creek New South Wales'),
1277
+ (925, '2178', 'Mount Vernon', 'NSW', 'AU', 486, ' 2178 Mount Vernon New South Wales'),
1278
+ (926, '2179', 'Leppington', 'NSW', 'AU', 486, ' 2179 Leppington New South Wales'),
1279
+ (927, '2179', 'Austral', 'NSW', 'AU', 486, ' 2179 Austral New South Wales'),
1280
+ (928, '2190', 'Greenacre', 'NSW', 'AU', 486, ' 2190 Greenacre New South Wales'),
1281
+ (929, '2190', 'Chullora', 'NSW', 'AU', 486, ' 2190 Chullora New South Wales'),
1282
+ (930, '2190', 'Mount Lewis', 'NSW', 'AU', 486, ' 2190 Mount Lewis New South Wales'),
1283
+ (931, '2191', 'Belfield', 'NSW', 'AU', 486, ' 2191 Belfield New South Wales'),
1284
+ (932, '2192', 'Belmore', 'NSW', 'AU', 486, ' 2192 Belmore New South Wales'),
1285
+ (933, '2193', 'Ashbury', 'NSW', 'AU', 486, ' 2193 Ashbury New South Wales'),
1286
+ (934, '2193', 'Canterbury', 'NSW', 'AU', 486, ' 2193 Canterbury New South Wales'),
1287
+ (935, '2193', 'Hurlstone Park', 'NSW', 'AU', 486, ' 2193 Hurlstone Park New South Wales'),
1288
+ (936, '2194', 'Campsie', 'NSW', 'AU', 486, ' 2194 Campsie New South Wales'),
1289
+ (937, '2195', 'Lakemba', 'NSW', 'AU', 486, ' 2195 Lakemba New South Wales'),
1290
+ (938, '2195', 'Wiley Park', 'NSW', 'AU', 486, ' 2195 Wiley Park New South Wales'),
1291
+ (939, '2196', 'Punchbowl', 'NSW', 'AU', 486, ' 2196 Punchbowl New South Wales'),
1292
+ (940, '2196', 'Roselands', 'NSW', 'AU', 486, ' 2196 Roselands New South Wales'),
1293
+ (941, '2197', 'Bass Hill', 'NSW', 'AU', 486, ' 2197 Bass Hill New South Wales'),
1294
+ (942, '2198', 'Georges Hall', 'NSW', 'AU', 486, ' 2198 Georges Hall New South Wales'),
1295
+ (943, '2199', 'Yagoona', 'NSW', 'AU', 486, ' 2199 Yagoona New South Wales'),
1296
+ (944, '2199', 'Yagoona West', 'NSW', 'AU', 486, ' 2199 Yagoona West New South Wales'),
1297
+ (945, '2200', 'Manahan', 'NSW', 'AU', 486, ' 2200 Manahan New South Wales'),
1298
+ (946, '2200', 'Mount Lewis', 'NSW', 'AU', 486, ' 2200 Mount Lewis New South Wales'),
1299
+ (947, '2200', 'Condell Park', 'NSW', 'AU', 486, ' 2200 Condell Park New South Wales'),
1300
+ (948, '2200', 'Bankstown', 'NSW', 'AU', 486, ' 2200 Bankstown New South Wales'),
1301
+ (949, '2200', 'Bankstown Aerodrome', 'NSW', 'AU', 486, ' 2200 Bankstown Aerodrome New South Wales'),
1302
+ (950, '2200', 'Bankstown North', 'NSW', 'AU', 486, ' 2200 Bankstown North New South Wales'),
1303
+ (951, '2200', 'Bankstown Square', 'NSW', 'AU', 486, ' 2200 Bankstown Square New South Wales'),
1304
+ (952, '2203', 'Dulwich Hill', 'NSW', 'AU', 486, ' 2203 Dulwich Hill New South Wales'),
1305
+ (953, '2204', 'Marrickville', 'NSW', 'AU', 486, ' 2204 Marrickville New South Wales'),
1306
+ (954, '2204', 'Marrickville Metro', 'NSW', 'AU', 486, ' 2204 Marrickville Metro New South Wales'),
1307
+ (955, '2204', 'Marrickville South', 'NSW', 'AU', 486, ' 2204 Marrickville South New South Wales'),
1308
+ (956, '2205', 'Arncliffe', 'NSW', 'AU', 486, ' 2205 Arncliffe New South Wales'),
1309
+ (957, '2205', 'Wolli Creek', 'NSW', 'AU', 486, ' 2205 Wolli Creek New South Wales'),
1310
+ (958, '2205', 'Turrella', 'NSW', 'AU', 486, ' 2205 Turrella New South Wales'),
1311
+ (959, '2206', 'Earlwood', 'NSW', 'AU', 486, ' 2206 Earlwood New South Wales'),
1312
+ (960, '2206', 'Clemton Park', 'NSW', 'AU', 486, ' 2206 Clemton Park New South Wales'),
1313
+ (961, '2207', 'Bardwell Park', 'NSW', 'AU', 486, ' 2207 Bardwell Park New South Wales'),
1314
+ (962, '2207', 'Bardwell Valley', 'NSW', 'AU', 486, ' 2207 Bardwell Valley New South Wales'),
1315
+ (963, '2207', 'Bexley', 'NSW', 'AU', 486, ' 2207 Bexley New South Wales'),
1316
+ (964, '2207', 'Bexley North', 'NSW', 'AU', 486, ' 2207 Bexley North New South Wales'),
1317
+ (965, '2207', 'Bexley South', 'NSW', 'AU', 486, ' 2207 Bexley South New South Wales'),
1318
+ (966, '2208', 'Kingsgrove', 'NSW', 'AU', 486, ' 2208 Kingsgrove New South Wales'),
1319
+ (967, '2208', 'Kingsway West', 'NSW', 'AU', 486, ' 2208 Kingsway West New South Wales'),
1320
+ (968, '2209', 'Beverly Hills', 'NSW', 'AU', 486, ' 2209 Beverly Hills New South Wales'),
1321
+ (969, '2209', 'Narwee', 'NSW', 'AU', 486, ' 2209 Narwee New South Wales'),
1322
+ (970, '2210', 'Lugarno', 'NSW', 'AU', 486, ' 2210 Lugarno New South Wales'),
1323
+ (971, '2210', 'Peakhurst', 'NSW', 'AU', 486, ' 2210 Peakhurst New South Wales'),
1324
+ (972, '2210', 'Peakhurst Heights', 'NSW', 'AU', 486, ' 2210 Peakhurst Heights New South Wales'),
1325
+ (973, '2210', 'Riverwood', 'NSW', 'AU', 486, ' 2210 Riverwood New South Wales'),
1326
+ (974, '2211', 'Padstow', 'NSW', 'AU', 486, ' 2211 Padstow New South Wales'),
1327
+ (975, '2211', 'Padstow Heights', 'NSW', 'AU', 486, ' 2211 Padstow Heights New South Wales'),
1328
+ (976, '2212', 'Revesby', 'NSW', 'AU', 486, ' 2212 Revesby New South Wales'),
1329
+ (977, '2212', 'Revesby Heights', 'NSW', 'AU', 486, ' 2212 Revesby Heights New South Wales'),
1330
+ (978, '2212', 'Revesby North', 'NSW', 'AU', 486, ' 2212 Revesby North New South Wales'),
1331
+ (979, '2213', 'Panania', 'NSW', 'AU', 486, ' 2213 Panania New South Wales'),
1332
+ (980, '2213', 'Picnic Point', 'NSW', 'AU', 486, ' 2213 Picnic Point New South Wales'),
1333
+ (981, '2213', 'East Hills', 'NSW', 'AU', 486, ' 2213 East Hills New South Wales'),
1334
+ (982, '2214', 'Milperra', 'NSW', 'AU', 486, ' 2214 Milperra New South Wales'),
1335
+ (983, '2216', 'Rockdale', 'NSW', 'AU', 486, ' 2216 Rockdale New South Wales'),
1336
+ (984, '2216', 'Brighton-le-sands', 'NSW', 'AU', 486, ' 2216 Brighton-le-sands New South Wales'),
1337
+ (985, '2216', 'Banksia', 'NSW', 'AU', 486, ' 2216 Banksia New South Wales'),
1338
+ (986, '2216', 'Kyeemagh', 'NSW', 'AU', 486, ' 2216 Kyeemagh New South Wales'),
1339
+ (987, '2217', 'Kogarah', 'NSW', 'AU', 486, ' 2217 Kogarah New South Wales'),
1340
+ (988, '2217', 'Kogarah Bay', 'NSW', 'AU', 486, ' 2217 Kogarah Bay New South Wales'),
1341
+ (989, '2217', 'Beverley Park', 'NSW', 'AU', 486, ' 2217 Beverley Park New South Wales'),
1342
+ (990, '2217', 'Ramsgate', 'NSW', 'AU', 486, ' 2217 Ramsgate New South Wales'),
1343
+ (991, '2217', 'Ramsgate Beach', 'NSW', 'AU', 486, ' 2217 Ramsgate Beach New South Wales'),
1344
+ (992, '2217', 'Monterey', 'NSW', 'AU', 486, ' 2217 Monterey New South Wales'),
1345
+ (993, '2218', 'Carlton', 'NSW', 'AU', 486, ' 2218 Carlton New South Wales'),
1346
+ (994, '2218', 'Allawah', 'NSW', 'AU', 486, ' 2218 Allawah New South Wales'),
1347
+ (995, '2219', 'Dolls Point', 'NSW', 'AU', 486, ' 2219 Dolls Point New South Wales'),
1348
+ (996, '2219', 'Sandringham', 'NSW', 'AU', 486, ' 2219 Sandringham New South Wales'),
1349
+ (997, '2219', 'Sans Souci', 'NSW', 'AU', 486, ' 2219 Sans Souci New South Wales'),
1350
+ (998, '2220', 'Hurstville', 'NSW', 'AU', 486, ' 2220 Hurstville New South Wales'),
1351
+ (999, '2220', 'Hurstville Grove', 'NSW', 'AU', 486, ' 2220 Hurstville Grove New South Wales'),
1352
+ (1000, '2220', 'Hurstville Westfield', 'NSW', 'AU', 486, ' 2220 Hurstville Westfield New South Wales'),
1353
+ (1001, '2221', 'Connells Point', 'NSW', 'AU', 486, ' 2221 Connells Point New South Wales'),
1354
+ (1002, '2221', 'Kyle Bay', 'NSW', 'AU', 486, ' 2221 Kyle Bay New South Wales'),
1355
+ (1003, '2221', 'Carss Park', 'NSW', 'AU', 486, ' 2221 Carss Park New South Wales'),
1356
+ (1004, '2221', 'Blakehurst', 'NSW', 'AU', 486, ' 2221 Blakehurst New South Wales'),
1357
+ (1005, '2221', 'South Hurstville', 'NSW', 'AU', 486, ' 2221 South Hurstville New South Wales'),
1358
+ (1006, '2222', 'Penshurst', 'NSW', 'AU', 486, ' 2222 Penshurst New South Wales'),
1359
+ (1007, '2223', 'Mortdale', 'NSW', 'AU', 486, ' 2223 Mortdale New South Wales'),
1360
+ (1008, '2223', 'Oatley', 'NSW', 'AU', 486, ' 2223 Oatley New South Wales'),
1361
+ (1009, '2224', 'Sylvania', 'NSW', 'AU', 486, ' 2224 Sylvania New South Wales'),
1362
+ (1010, '2224', 'Sylvania Southgate', 'NSW', 'AU', 486, ' 2224 Sylvania Southgate New South Wales'),
1363
+ (1011, '2224', 'Sylvania Waters', 'NSW', 'AU', 486, ' 2224 Sylvania Waters New South Wales'),
1364
+ (1012, '2224', 'Kangaroo Point', 'NSW', 'AU', 486, ' 2224 Kangaroo Point New South Wales'),
1365
+ (1013, '2225', 'Oyster Bay', 'NSW', 'AU', 486, ' 2225 Oyster Bay New South Wales'),
1366
+ (1014, '2226', 'Como', 'NSW', 'AU', 486, ' 2226 Como New South Wales'),
1367
+ (1015, '2226', 'Jannali', 'NSW', 'AU', 486, ' 2226 Jannali New South Wales'),
1368
+ (1016, '2226', 'Bonnet Bay', 'NSW', 'AU', 486, ' 2226 Bonnet Bay New South Wales'),
1369
+ (1017, '2227', 'Gymea', 'NSW', 'AU', 486, ' 2227 Gymea New South Wales'),
1370
+ (1018, '2227', 'Gymea Bay', 'NSW', 'AU', 486, ' 2227 Gymea Bay New South Wales'),
1371
+ (1019, '2228', 'Miranda', 'NSW', 'AU', 486, ' 2228 Miranda New South Wales'),
1372
+ (1020, '2228', 'Yowie Bay', 'NSW', 'AU', 486, ' 2228 Yowie Bay New South Wales'),
1373
+ (1021, '2229', 'Taren Point', 'NSW', 'AU', 486, ' 2229 Taren Point New South Wales'),
1374
+ (1022, '2229', 'Port Hacking', 'NSW', 'AU', 486, ' 2229 Port Hacking New South Wales'),
1375
+ (1023, '2229', 'Lilli Pilli', 'NSW', 'AU', 486, ' 2229 Lilli Pilli New South Wales'),
1376
+ (1024, '2229', 'Dolans Bay', 'NSW', 'AU', 486, ' 2229 Dolans Bay New South Wales'),
1377
+ (1025, '2229', 'Caringbah', 'NSW', 'AU', 486, ' 2229 Caringbah New South Wales'),
1378
+ (1026, '2229', 'Caringbah South', 'NSW', 'AU', 486, ' 2229 Caringbah South New South Wales'),
1379
+ (1027, '2230', 'Bundeena', 'NSW', 'AU', 486, ' 2230 Bundeena New South Wales'),
1380
+ (1028, '2230', 'Burraneer', 'NSW', 'AU', 486, ' 2230 Burraneer New South Wales'),
1381
+ (1029, '2230', 'Cronulla', 'NSW', 'AU', 486, ' 2230 Cronulla New South Wales'),
1382
+ (1030, '2230', 'Maianbar', 'NSW', 'AU', 486, ' 2230 Maianbar New South Wales'),
1383
+ (1031, '2230', 'Woolooware', 'NSW', 'AU', 486, ' 2230 Woolooware New South Wales'),
1384
+ (1032, '2231', 'Kurnell', 'NSW', 'AU', 486, ' 2231 Kurnell New South Wales'),
1385
+ (1033, '2232', 'Kirrawee', 'NSW', 'AU', 486, ' 2232 Kirrawee New South Wales'),
1386
+ (1034, '2232', 'Kareela', 'NSW', 'AU', 486, ' 2232 Kareela New South Wales'),
1387
+ (1035, '2232', 'Loftus', 'NSW', 'AU', 486, ' 2232 Loftus New South Wales'),
1388
+ (1036, '2232', 'Garie', 'NSW', 'AU', 486, ' 2232 Garie New South Wales'),
1389
+ (1037, '2232', 'Grays Point', 'NSW', 'AU', 486, ' 2232 Grays Point New South Wales'),
1390
+ (1038, '2232', 'Woronora', 'NSW', 'AU', 486, ' 2232 Woronora New South Wales'),
1391
+ (1039, '2232', 'Sutherland', 'NSW', 'AU', 486, ' 2232 Sutherland New South Wales'),
1392
+ (1040, '2232', 'Audley', 'NSW', 'AU', 486, ' 2232 Audley New South Wales'),
1393
+ (1041, '2233', 'Woronora Heights', 'NSW', 'AU', 486, ' 2233 Woronora Heights New South Wales'),
1394
+ (1042, '2233', 'Waterfall', 'NSW', 'AU', 486, ' 2233 Waterfall New South Wales'),
1395
+ (1043, '2233', 'Yarrawarrah', 'NSW', 'AU', 486, ' 2233 Yarrawarrah New South Wales'),
1396
+ (1044, '2233', 'Engadine', 'NSW', 'AU', 486, ' 2233 Engadine New South Wales'),
1397
+ (1045, '2233', 'Heathcote', 'NSW', 'AU', 486, ' 2233 Heathcote New South Wales'),
1398
+ (1046, '2234', 'Illawong', 'NSW', 'AU', 486, ' 2234 Illawong New South Wales'),
1399
+ (1047, '2234', 'Lucas Heights', 'NSW', 'AU', 486, ' 2234 Lucas Heights New South Wales'),
1400
+ (1048, '2234', 'Menai', 'NSW', 'AU', 486, ' 2234 Menai New South Wales'),
1401
+ (1049, '2234', 'Menai Central', 'NSW', 'AU', 486, ' 2234 Menai Central New South Wales'),
1402
+ (1050, '2234', 'Alfords Point', 'NSW', 'AU', 486, ' 2234 Alfords Point New South Wales'),
1403
+ (1051, '2234', 'Bangor', 'NSW', 'AU', 486, ' 2234 Bangor New South Wales'),
1404
+ (1052, '2234', 'Barden Ridge', 'NSW', 'AU', 486, ' 2234 Barden Ridge New South Wales'),
1405
+ (1053, '2250', 'Kariong', 'NSW', 'AU', 486, ' 2250 Kariong New South Wales'),
1406
+ (1054, '2250', 'Kulnura', 'NSW', 'AU', 486, ' 2250 Kulnura New South Wales'),
1407
+ (1055, '2250', 'East Gosford', 'NSW', 'AU', 486, ' 2250 East Gosford New South Wales'),
1408
+ (1056, '2250', 'Erina', 'NSW', 'AU', 486, ' 2250 Erina New South Wales'),
1409
+ (1057, '2250', 'Erina Fair', 'NSW', 'AU', 486, ' 2250 Erina Fair New South Wales'),
1410
+ (1058, '2250', 'Glenworth Valley', 'NSW', 'AU', 486, ' 2250 Glenworth Valley New South Wales'),
1411
+ (1059, '2250', 'Gosford', 'NSW', 'AU', 486, ' 2250 Gosford New South Wales'),
1412
+ (1060, '2250', 'Greengrove', 'NSW', 'AU', 486, ' 2250 Greengrove New South Wales'),
1413
+ (1061, '2250', 'Holgate', 'NSW', 'AU', 486, ' 2250 Holgate New South Wales'),
1414
+ (1062, '2250', 'Bucketty', 'NSW', 'AU', 486, ' 2250 Bucketty New South Wales'),
1415
+ (1063, '2250', 'Calga', 'NSW', 'AU', 486, ' 2250 Calga New South Wales'),
1416
+ (1064, '2250', 'Central Mangrove', 'NSW', 'AU', 486, ' 2250 Central Mangrove New South Wales'),
1417
+ (1065, '2250', 'Mooney Mooney Creek', 'NSW', 'AU', 486, ' 2250 Mooney Mooney Creek New South Wales'),
1418
+ (1066, '2250', 'Narara', 'NSW', 'AU', 486, ' 2250 Narara New South Wales'),
1419
+ (1067, '2250', 'Niagara Park', 'NSW', 'AU', 486, ' 2250 Niagara Park New South Wales'),
1420
+ (1068, '2250', 'Mount Elliot', 'NSW', 'AU', 486, ' 2250 Mount Elliot New South Wales'),
1421
+ (1069, '2250', 'Mount White', 'NSW', 'AU', 486, ' 2250 Mount White New South Wales'),
1422
+ (1070, '2250', 'North Gosford', 'NSW', 'AU', 486, ' 2250 North Gosford New South Wales'),
1423
+ (1071, '2250', 'Peats Ridge', 'NSW', 'AU', 486, ' 2250 Peats Ridge New South Wales'),
1424
+ (1072, '2250', 'Point Clare', 'NSW', 'AU', 486, ' 2250 Point Clare New South Wales'),
1425
+ (1073, '2250', 'Point Frederick', 'NSW', 'AU', 486, ' 2250 Point Frederick New South Wales'),
1426
+ (1074, '2250', 'Somersby', 'NSW', 'AU', 486, ' 2250 Somersby New South Wales'),
1427
+ (1075, '2250', 'Springfield', 'NSW', 'AU', 486, ' 2250 Springfield New South Wales'),
1428
+ (1076, '2250', 'Tascott', 'NSW', 'AU', 486, ' 2250 Tascott New South Wales'),
1429
+ (1077, '2250', 'Ten Mile Hollow', 'NSW', 'AU', 486, ' 2250 Ten Mile Hollow New South Wales'),
1430
+ (1078, '2250', 'Upper Mangrove', 'NSW', 'AU', 486, ' 2250 Upper Mangrove New South Wales'),
1431
+ (1079, '2250', 'Wendoree Park', 'NSW', 'AU', 486, ' 2250 Wendoree Park New South Wales'),
1432
+ (1080, '2250', 'West Gosford', 'NSW', 'AU', 486, ' 2250 West Gosford New South Wales'),
1433
+ (1081, '2250', 'Wyoming', 'NSW', 'AU', 486, ' 2250 Wyoming New South Wales'),
1434
+ (1082, '2250', 'Lisarow', 'NSW', 'AU', 486, ' 2250 Lisarow New South Wales'),
1435
+ (1083, '2250', 'Lower Mangrove', 'NSW', 'AU', 486, ' 2250 Lower Mangrove New South Wales'),
1436
+ (1084, '2250', 'Mangrove Creek', 'NSW', 'AU', 486, ' 2250 Mangrove Creek New South Wales'),
1437
+ (1085, '2250', 'Mangrove Mountain', 'NSW', 'AU', 486, ' 2250 Mangrove Mountain New South Wales'),
1438
+ (1086, '2250', 'Matcham', 'NSW', 'AU', 486, ' 2250 Matcham New South Wales'),
1439
+ (1087, '2251', 'Macmasters Beach', 'NSW', 'AU', 486, ' 2251 Macmasters Beach New South Wales'),
1440
+ (1088, '2251', 'Yattalunga', 'NSW', 'AU', 486, ' 2251 Yattalunga New South Wales'),
1441
+ (1089, '2251', 'Picketts Valley', 'NSW', 'AU', 486, ' 2251 Picketts Valley New South Wales'),
1442
+ (1090, '2251', 'Saratoga', 'NSW', 'AU', 486, ' 2251 Saratoga New South Wales'),
1443
+ (1091, '2251', 'Bensville', 'NSW', 'AU', 486, ' 2251 Bensville New South Wales'),
1444
+ (1092, '2251', 'Bouddi', 'NSW', 'AU', 486, ' 2251 Bouddi New South Wales'),
1445
+ (1093, '2251', 'Avoca Beach', 'NSW', 'AU', 486, ' 2251 Avoca Beach New South Wales'),
1446
+ (1094, '2251', 'Green Point', 'NSW', 'AU', 486, ' 2251 Green Point New South Wales'),
1447
+ (1095, '2251', 'Copacabana', 'NSW', 'AU', 486, ' 2251 Copacabana New South Wales'),
1448
+ (1096, '2251', 'Davistown', 'NSW', 'AU', 486, ' 2251 Davistown New South Wales'),
1449
+ (1097, '2251', 'Kincumber', 'NSW', 'AU', 486, ' 2251 Kincumber New South Wales'),
1450
+ (1098, '2251', 'Kincumber South', 'NSW', 'AU', 486, ' 2251 Kincumber South New South Wales'),
1451
+ (1099, '2252', 'Central Coast', 'NSW', 'AU', 486, ' 2252 Central Coast New South Wales'),
1452
+ (1100, '2256', 'Blackwall', 'NSW', 'AU', 486, ' 2256 Blackwall New South Wales'),
1453
+ (1101, '2256', 'Koolewong', 'NSW', 'AU', 486, ' 2256 Koolewong New South Wales'),
1454
+ (1102, '2256', 'Horsfield Bay', 'NSW', 'AU', 486, ' 2256 Horsfield Bay New South Wales'),
1455
+ (1103, '2256', 'Phegans Bay', 'NSW', 'AU', 486, ' 2256 Phegans Bay New South Wales'),
1456
+ (1104, '2256', 'Patonga', 'NSW', 'AU', 486, ' 2256 Patonga New South Wales'),
1457
+ (1105, '2256', 'Pearl Beach', 'NSW', 'AU', 486, ' 2256 Pearl Beach New South Wales'),
1458
+ (1106, '2256', 'Woy Woy', 'NSW', 'AU', 486, ' 2256 Woy Woy New South Wales'),
1459
+ (1107, '2256', 'Woy Woy Bay', 'NSW', 'AU', 486, ' 2256 Woy Woy Bay New South Wales'),
1460
+ (1108, '2256', 'Wondabyne', 'NSW', 'AU', 486, ' 2256 Wondabyne New South Wales'),
1461
+ (1109, '2256', 'Little Wobby', 'NSW', 'AU', 486, ' 2256 Little Wobby New South Wales'),
1462
+ (1110, '2257', 'Wagstaffe', 'NSW', 'AU', 486, ' 2257 Wagstaffe New South Wales'),
1463
+ (1111, '2257', 'Pretty Beach', 'NSW', 'AU', 486, ' 2257 Pretty Beach New South Wales'),
1464
+ (1112, '2257', 'Umina Beach', 'NSW', 'AU', 486, ' 2257 Umina Beach New South Wales'),
1465
+ (1113, '2257', 'St Huberts Island', 'NSW', 'AU', 486, ' 2257 St Huberts Island New South Wales'),
1466
+ (1114, '2257', 'Ettalong Beach', 'NSW', 'AU', 486, ' 2257 Ettalong Beach New South Wales'),
1467
+ (1115, '2257', 'Empire Bay', 'NSW', 'AU', 486, ' 2257 Empire Bay New South Wales'),
1468
+ (1116, '2257', 'Daleys Point', 'NSW', 'AU', 486, ' 2257 Daleys Point New South Wales'),
1469
+ (1117, '2257', 'Hardys Bay', 'NSW', 'AU', 486, ' 2257 Hardys Bay New South Wales'),
1470
+ (1118, '2257', 'Killcare', 'NSW', 'AU', 486, ' 2257 Killcare New South Wales'),
1471
+ (1119, '2257', 'Killcare Heights', 'NSW', 'AU', 486, ' 2257 Killcare Heights New South Wales'),
1472
+ (1120, '2257', 'Booker Bay', 'NSW', 'AU', 486, ' 2257 Booker Bay New South Wales'),
1473
+ (1121, '2257', 'Box Head', 'NSW', 'AU', 486, ' 2257 Box Head New South Wales'),
1474
+ (1122, '2258', 'Kangy Angy', 'NSW', 'AU', 486, ' 2258 Kangy Angy New South Wales'),
1475
+ (1123, '2258', 'Fountaindale', 'NSW', 'AU', 486, ' 2258 Fountaindale New South Wales'),
1476
+ (1124, '2258', 'Ourimbah', 'NSW', 'AU', 486, ' 2258 Ourimbah New South Wales'),
1477
+ (1125, '2258', 'Palm Grove', 'NSW', 'AU', 486, ' 2258 Palm Grove New South Wales'),
1478
+ (1126, '2258', 'Palmdale', 'NSW', 'AU', 486, ' 2258 Palmdale New South Wales'),
1479
+ (1127, '2259', 'Ravensdale', 'NSW', 'AU', 486, ' 2259 Ravensdale New South Wales'),
1480
+ (1128, '2259', 'Rocky Point', 'NSW', 'AU', 486, ' 2259 Rocky Point New South Wales'),
1481
+ (1129, '2259', 'Point Wolstoncroft', 'NSW', 'AU', 486, ' 2259 Point Wolstoncroft New South Wales'),
1482
+ (1130, '2259', 'Summerland Point', 'NSW', 'AU', 486, ' 2259 Summerland Point New South Wales'),
1483
+ (1131, '2259', 'Wadalba', 'NSW', 'AU', 486, ' 2259 Wadalba New South Wales'),
1484
+ (1132, '2259', 'Tacoma', 'NSW', 'AU', 486, ' 2259 Tacoma New South Wales'),
1485
+ (1133, '2259', 'Tacoma South', 'NSW', 'AU', 486, ' 2259 Tacoma South New South Wales'),
1486
+ (1134, '2259', 'Tuggerah', 'NSW', 'AU', 486, ' 2259 Tuggerah New South Wales'),
1487
+ (1135, '2259', 'Tuggerawong', 'NSW', 'AU', 486, ' 2259 Tuggerawong New South Wales'),
1488
+ (1136, '2259', 'Wallarah', 'NSW', 'AU', 486, ' 2259 Wallarah New South Wales'),
1489
+ (1137, '2259', 'Warnervale', 'NSW', 'AU', 486, ' 2259 Warnervale New South Wales'),
1490
+ (1138, '2259', 'Watanobbi', 'NSW', 'AU', 486, ' 2259 Watanobbi New South Wales'),
1491
+ (1139, '2259', 'Woongarrah', 'NSW', 'AU', 486, ' 2259 Woongarrah New South Wales'),
1492
+ (1140, '2259', 'Wybung', 'NSW', 'AU', 486, ' 2259 Wybung New South Wales'),
1493
+ (1141, '2259', 'Wyee', 'NSW', 'AU', 486, ' 2259 Wyee New South Wales'),
1494
+ (1142, '2259', 'Wyee Point', 'NSW', 'AU', 486, ' 2259 Wyee Point New South Wales'),
1495
+ (1143, '2259', 'Wyong', 'NSW', 'AU', 486, ' 2259 Wyong New South Wales'),
1496
+ (1144, '2259', 'Wyong Creek', 'NSW', 'AU', 486, ' 2259 Wyong Creek New South Wales'),
1497
+ (1145, '2259', 'Wyongah', 'NSW', 'AU', 486, ' 2259 Wyongah New South Wales'),
1498
+ (1146, '2259', 'Yarramalong', 'NSW', 'AU', 486, ' 2259 Yarramalong New South Wales'),
1499
+ (1147, '2259', 'Mannering Park', 'NSW', 'AU', 486, ' 2259 Mannering Park New South Wales'),
1500
+ (1148, '2259', 'Mardi', 'NSW', 'AU', 486, ' 2259 Mardi New South Wales'),
1501
+ (1149, '2259', 'Moonee', 'NSW', 'AU', 486, ' 2259 Moonee New South Wales'),
1502
+ (1150, '2259', 'Little Jilliby', 'NSW', 'AU', 486, ' 2259 Little Jilliby New South Wales'),
1503
+ (1151, '2259', 'Lemon Tree', 'NSW', 'AU', 486, ' 2259 Lemon Tree New South Wales'),
1504
+ (1152, '2259', 'Frazer Park', 'NSW', 'AU', 486, ' 2259 Frazer Park New South Wales'),
1505
+ (1153, '2259', 'Freemans', 'NSW', 'AU', 486, ' 2259 Freemans New South Wales'),
1506
+ (1154, '2259', 'Jilliby', 'NSW', 'AU', 486, ' 2259 Jilliby New South Wales'),
1507
+ (1155, '2259', 'Halloran', 'NSW', 'AU', 486, ' 2259 Halloran New South Wales'),
1508
+ (1156, '2259', 'Hamlyn Terrace', 'NSW', 'AU', 486, ' 2259 Hamlyn Terrace New South Wales'),
1509
+ (1157, '2259', 'Gwandalan', 'NSW', 'AU', 486, ' 2259 Gwandalan New South Wales'),
1510
+ (1158, '2259', 'Durren Durren', 'NSW', 'AU', 486, ' 2259 Durren Durren New South Wales'),
1511
+ (1159, '2259', 'Dooralong', 'NSW', 'AU', 486, ' 2259 Dooralong New South Wales'),
1512
+ (1160, '2259', 'Crangan Bay', 'NSW', 'AU', 486, ' 2259 Crangan Bay New South Wales'),
1513
+ (1161, '2259', 'Kanwal', 'NSW', 'AU', 486, ' 2259 Kanwal New South Wales'),
1514
+ (1162, '2259', 'Kiar', 'NSW', 'AU', 486, ' 2259 Kiar New South Wales'),
1515
+ (1163, '2259', 'Kingfisher Shores', 'NSW', 'AU', 486, ' 2259 Kingfisher Shores New South Wales'),
1516
+ (1164, '2259', 'Lake Munmorah', 'NSW', 'AU', 486, ' 2259 Lake Munmorah New South Wales'),
1517
+ (1165, '2259', 'Bushells Ridge', 'NSW', 'AU', 486, ' 2259 Bushells Ridge New South Wales'),
1518
+ (1166, '2259', 'Cedar Brush Creek', 'NSW', 'AU', 486, ' 2259 Cedar Brush Creek New South Wales'),
1519
+ (1167, '2259', 'Chain Valley Bay', 'NSW', 'AU', 486, ' 2259 Chain Valley Bay New South Wales'),
1520
+ (1168, '2259', 'Alison', 'NSW', 'AU', 486, ' 2259 Alison New South Wales'),
1521
+ (1169, '2260', 'Erina Heights', 'NSW', 'AU', 486, ' 2260 Erina Heights New South Wales'),
1522
+ (1170, '2260', 'Forresters Beach', 'NSW', 'AU', 486, ' 2260 Forresters Beach New South Wales'),
1523
+ (1171, '2260', 'Wamberal', 'NSW', 'AU', 486, ' 2260 Wamberal New South Wales'),
1524
+ (1172, '2260', 'Terrigal', 'NSW', 'AU', 486, ' 2260 Terrigal New South Wales'),
1525
+ (1173, '2260', 'North Avoca', 'NSW', 'AU', 486, ' 2260 North Avoca New South Wales'),
1526
+ (1174, '2261', 'The Entrance', 'NSW', 'AU', 486, ' 2261 The Entrance New South Wales'),
1527
+ (1175, '2261', 'The Entrance North', 'NSW', 'AU', 486, ' 2261 The Entrance North New South Wales'),
1528
+ (1176, '2261', 'Toowoon Bay', 'NSW', 'AU', 486, ' 2261 Toowoon Bay New South Wales'),
1529
+ (1177, '2261', 'Tumbi Umbi', 'NSW', 'AU', 486, ' 2261 Tumbi Umbi New South Wales'),
1530
+ (1178, '2261', 'Shelly Beach', 'NSW', 'AU', 486, ' 2261 Shelly Beach New South Wales'),
1531
+ (1179, '2261', 'Magenta', 'NSW', 'AU', 486, ' 2261 Magenta New South Wales'),
1532
+ (1180, '2261', 'Long Jetty', 'NSW', 'AU', 486, ' 2261 Long Jetty New South Wales'),
1533
+ (1181, '2261', 'Glenning Valley', 'NSW', 'AU', 486, ' 2261 Glenning Valley New South Wales'),
1534
+ (1182, '2261', 'Chittaway Bay', 'NSW', 'AU', 486, ' 2261 Chittaway Bay New South Wales'),
1535
+ (1183, '2261', 'Chittaway Point', 'NSW', 'AU', 486, ' 2261 Chittaway Point New South Wales'),
1536
+ (1184, '2261', 'Killarney Vale', 'NSW', 'AU', 486, ' 2261 Killarney Vale New South Wales'),
1537
+ (1185, '2261', 'Blue Bay', 'NSW', 'AU', 486, ' 2261 Blue Bay New South Wales'),
1538
+ (1186, '2261', 'Bateau Bay', 'NSW', 'AU', 486, ' 2261 Bateau Bay New South Wales'),
1539
+ (1187, '2261', 'Bay Village', 'NSW', 'AU', 486, ' 2261 Bay Village New South Wales'),
1540
+ (1188, '2261', 'Berkeley Vale', 'NSW', 'AU', 486, ' 2261 Berkeley Vale New South Wales'),
1541
+ (1189, '2262', 'Budgewoi', 'NSW', 'AU', 486, ' 2262 Budgewoi New South Wales'),
1542
+ (1190, '2262', 'Budgewoi Peninsula', 'NSW', 'AU', 486, ' 2262 Budgewoi Peninsula New South Wales'),
1543
+ (1191, '2262', 'Buff Point', 'NSW', 'AU', 486, ' 2262 Buff Point New South Wales'),
1544
+ (1192, '2262', 'Blue Haven', 'NSW', 'AU', 486, ' 2262 Blue Haven New South Wales'),
1545
+ (1193, '2262', 'Colongra', 'NSW', 'AU', 486, ' 2262 Colongra New South Wales'),
1546
+ (1194, '2262', 'Doyalson', 'NSW', 'AU', 486, ' 2262 Doyalson New South Wales'),
1547
+ (1195, '2262', 'Doyalson North', 'NSW', 'AU', 486, ' 2262 Doyalson North New South Wales'),
1548
+ (1196, '2262', 'Halekulani', 'NSW', 'AU', 486, ' 2262 Halekulani New South Wales'),
1549
+ (1197, '2262', 'San Remo', 'NSW', 'AU', 486, ' 2262 San Remo New South Wales'),
1550
+ (1198, '2263', 'Toukley', 'NSW', 'AU', 486, ' 2263 Toukley New South Wales'),
1551
+ (1199, '2263', 'Norah Head', 'NSW', 'AU', 486, ' 2263 Norah Head New South Wales'),
1552
+ (1200, '2263', 'Noraville', 'NSW', 'AU', 486, ' 2263 Noraville New South Wales'),
1553
+ (1201, '2263', 'Gorokan', 'NSW', 'AU', 486, ' 2263 Gorokan New South Wales'),
1554
+ (1202, '2263', 'Lake Haven', 'NSW', 'AU', 486, ' 2263 Lake Haven New South Wales'),
1555
+ (1203, '2263', 'Charmhaven', 'NSW', 'AU', 486, ' 2263 Charmhaven New South Wales'),
1556
+ (1204, '2263', 'Canton Beach', 'NSW', 'AU', 486, ' 2263 Canton Beach New South Wales'),
1557
+ (1205, '2264', 'Brightwaters', 'NSW', 'AU', 486, ' 2264 Brightwaters New South Wales'),
1558
+ (1206, '2264', 'Bonnells Bay', 'NSW', 'AU', 486, ' 2264 Bonnells Bay New South Wales'),
1559
+ (1207, '2264', 'Balcolyn', 'NSW', 'AU', 486, ' 2264 Balcolyn New South Wales'),
1560
+ (1208, '2264', 'Eraring', 'NSW', 'AU', 486, ' 2264 Eraring New South Wales'),
1561
+ (1209, '2264', 'Dora Creek', 'NSW', 'AU', 486, ' 2264 Dora Creek New South Wales'),
1562
+ (1210, '2264', 'Myuna Bay', 'NSW', 'AU', 486, ' 2264 Myuna Bay New South Wales'),
1563
+ (1211, '2264', 'Morisset', 'NSW', 'AU', 486, ' 2264 Morisset New South Wales'),
1564
+ (1212, '2264', 'Morisset Park', 'NSW', 'AU', 486, ' 2264 Morisset Park New South Wales'),
1565
+ (1213, '2264', 'Sunshine', 'NSW', 'AU', 486, ' 2264 Sunshine New South Wales'),
1566
+ (1214, '2264', 'Silverwater', 'NSW', 'AU', 486, ' 2264 Silverwater New South Wales'),
1567
+ (1215, '2264', 'Windermere Park', 'NSW', 'AU', 486, ' 2264 Windermere Park New South Wales'),
1568
+ (1216, '2264', 'Yarrawonga Park', 'NSW', 'AU', 486, ' 2264 Yarrawonga Park New South Wales'),
1569
+ (1217, '2264', 'Mirrabooka', 'NSW', 'AU', 486, ' 2264 Mirrabooka New South Wales');
1570
+ INSERT INTO {$this->getTable('candf_pcs')} (`entity_id`, `postcode`, `city`, `state`, `country_id`, `region_id`, `fulltext`) VALUES
1571
+ (1218, '2264', 'Mandalong', 'NSW', 'AU', 486, ' 2264 Mandalong New South Wales'),
1572
+ (1219, '2265', 'Martinsville', 'NSW', 'AU', 486, ' 2265 Martinsville New South Wales'),
1573
+ (1220, '2265', 'Cooranbong', 'NSW', 'AU', 486, ' 2265 Cooranbong New South Wales'),
1574
+ (1221, '2267', 'Wangi Wangi', 'NSW', 'AU', 486, ' 2267 Wangi Wangi New South Wales'),
1575
+ (1222, '2278', 'Wakefield', 'NSW', 'AU', 486, ' 2278 Wakefield New South Wales'),
1576
+ (1223, '2278', 'Killingworth', 'NSW', 'AU', 486, ' 2278 Killingworth New South Wales'),
1577
+ (1224, '2278', 'Barnsley', 'NSW', 'AU', 486, ' 2278 Barnsley New South Wales'),
1578
+ (1225, '2280', 'Jewells', 'NSW', 'AU', 486, ' 2280 Jewells New South Wales'),
1579
+ (1226, '2280', 'Marks Point', 'NSW', 'AU', 486, ' 2280 Marks Point New South Wales'),
1580
+ (1227, '2280', 'Belmont', 'NSW', 'AU', 486, ' 2280 Belmont New South Wales'),
1581
+ (1228, '2280', 'Belmont North', 'NSW', 'AU', 486, ' 2280 Belmont North New South Wales'),
1582
+ (1229, '2280', 'Belmont South', 'NSW', 'AU', 486, ' 2280 Belmont South New South Wales'),
1583
+ (1230, '2280', 'Croudace Bay', 'NSW', 'AU', 486, ' 2280 Croudace Bay New South Wales'),
1584
+ (1231, '2280', 'Floraville', 'NSW', 'AU', 486, ' 2280 Floraville New South Wales'),
1585
+ (1232, '2280', 'Valentine', 'NSW', 'AU', 486, ' 2280 Valentine New South Wales'),
1586
+ (1233, '2281', 'Swansea', 'NSW', 'AU', 486, ' 2281 Swansea New South Wales'),
1587
+ (1234, '2281', 'Swansea Heads', 'NSW', 'AU', 486, ' 2281 Swansea Heads New South Wales'),
1588
+ (1235, '2281', 'Catherine Hill Bay', 'NSW', 'AU', 486, ' 2281 Catherine Hill Bay New South Wales'),
1589
+ (1236, '2281', 'Caves Beach', 'NSW', 'AU', 486, ' 2281 Caves Beach New South Wales'),
1590
+ (1237, '2281', 'Blacksmiths', 'NSW', 'AU', 486, ' 2281 Blacksmiths New South Wales'),
1591
+ (1238, '2281', 'Cams Wharf', 'NSW', 'AU', 486, ' 2281 Cams Wharf New South Wales'),
1592
+ (1239, '2281', 'Little Pelican', 'NSW', 'AU', 486, ' 2281 Little Pelican New South Wales'),
1593
+ (1240, '2281', 'Murrays Beach', 'NSW', 'AU', 486, ' 2281 Murrays Beach New South Wales'),
1594
+ (1241, '2281', 'Nords Wharf', 'NSW', 'AU', 486, ' 2281 Nords Wharf New South Wales'),
1595
+ (1242, '2281', 'Pelican', 'NSW', 'AU', 486, ' 2281 Pelican New South Wales'),
1596
+ (1243, '2281', 'Pinny Beach', 'NSW', 'AU', 486, ' 2281 Pinny Beach New South Wales'),
1597
+ (1244, '2282', 'Lakelands', 'NSW', 'AU', 486, ' 2282 Lakelands New South Wales'),
1598
+ (1245, '2282', 'Eleebana', 'NSW', 'AU', 486, ' 2282 Eleebana New South Wales'),
1599
+ (1246, '2282', 'Warners Bay', 'NSW', 'AU', 486, ' 2282 Warners Bay New South Wales'),
1600
+ (1247, '2283', 'Toronto', 'NSW', 'AU', 486, ' 2283 Toronto New South Wales'),
1601
+ (1248, '2283', 'Ryhope', 'NSW', 'AU', 486, ' 2283 Ryhope New South Wales'),
1602
+ (1249, '2283', 'Fassifern', 'NSW', 'AU', 486, ' 2283 Fassifern New South Wales'),
1603
+ (1250, '2283', 'Fennell Bay', 'NSW', 'AU', 486, ' 2283 Fennell Bay New South Wales'),
1604
+ (1251, '2283', 'Fishing Point', 'NSW', 'AU', 486, ' 2283 Fishing Point New South Wales'),
1605
+ (1252, '2283', 'Coal Point', 'NSW', 'AU', 486, ' 2283 Coal Point New South Wales'),
1606
+ (1253, '2283', 'Carey Bay', 'NSW', 'AU', 486, ' 2283 Carey Bay New South Wales'),
1607
+ (1254, '2283', 'Buttaba', 'NSW', 'AU', 486, ' 2283 Buttaba New South Wales'),
1608
+ (1255, '2283', 'Blackalls Park', 'NSW', 'AU', 486, ' 2283 Blackalls Park New South Wales'),
1609
+ (1256, '2283', 'Bolton Point', 'NSW', 'AU', 486, ' 2283 Bolton Point New South Wales'),
1610
+ (1257, '2283', 'Kilaben Bay', 'NSW', 'AU', 486, ' 2283 Kilaben Bay New South Wales'),
1611
+ (1258, '2283', 'Rathmines', 'NSW', 'AU', 486, ' 2283 Rathmines New South Wales'),
1612
+ (1259, '2283', 'Awaba', 'NSW', 'AU', 486, ' 2283 Awaba New South Wales'),
1613
+ (1260, '2283', 'Balmoral', 'NSW', 'AU', 486, ' 2283 Balmoral New South Wales'),
1614
+ (1261, '2283', 'Arcadia Vale', 'NSW', 'AU', 486, ' 2283 Arcadia Vale New South Wales'),
1615
+ (1262, '2284', 'Argenton', 'NSW', 'AU', 486, ' 2284 Argenton New South Wales'),
1616
+ (1263, '2284', 'Marmong Point', 'NSW', 'AU', 486, ' 2284 Marmong Point New South Wales'),
1617
+ (1264, '2284', 'Booragul', 'NSW', 'AU', 486, ' 2284 Booragul New South Wales'),
1618
+ (1265, '2284', 'Boolaroo', 'NSW', 'AU', 486, ' 2284 Boolaroo New South Wales'),
1619
+ (1266, '2284', 'Speers Point', 'NSW', 'AU', 486, ' 2284 Speers Point New South Wales'),
1620
+ (1267, '2284', 'Teralba', 'NSW', 'AU', 486, ' 2284 Teralba New South Wales'),
1621
+ (1268, '2284', 'Woodrising', 'NSW', 'AU', 486, ' 2284 Woodrising New South Wales'),
1622
+ (1269, '2285', 'Cardiff', 'NSW', 'AU', 486, ' 2285 Cardiff New South Wales'),
1623
+ (1270, '2285', 'Cardiff Heights', 'NSW', 'AU', 486, ' 2285 Cardiff Heights New South Wales'),
1624
+ (1271, '2285', 'Cardiff South', 'NSW', 'AU', 486, ' 2285 Cardiff South New South Wales'),
1625
+ (1272, '2285', 'Cameron Park', 'NSW', 'AU', 486, ' 2285 Cameron Park New South Wales'),
1626
+ (1273, '2285', 'Edgeworth', 'NSW', 'AU', 486, ' 2285 Edgeworth New South Wales'),
1627
+ (1274, '2285', 'Glendale', 'NSW', 'AU', 486, ' 2285 Glendale New South Wales'),
1628
+ (1275, '2285', 'Macquarie Hills', 'NSW', 'AU', 486, ' 2285 Macquarie Hills New South Wales'),
1629
+ (1276, '2286', 'Holmesville', 'NSW', 'AU', 486, ' 2286 Holmesville New South Wales'),
1630
+ (1277, '2286', 'West Wallsend', 'NSW', 'AU', 486, ' 2286 West Wallsend New South Wales'),
1631
+ (1278, '2286', 'Seahampton', 'NSW', 'AU', 486, ' 2286 Seahampton New South Wales'),
1632
+ (1279, '2287', 'Wallsend', 'NSW', 'AU', 486, ' 2287 Wallsend New South Wales'),
1633
+ (1280, '2287', 'Wallsend South', 'NSW', 'AU', 486, ' 2287 Wallsend South New South Wales'),
1634
+ (1281, '2287', 'Maryland', 'NSW', 'AU', 486, ' 2287 Maryland New South Wales'),
1635
+ (1282, '2287', 'Minmi', 'NSW', 'AU', 486, ' 2287 Minmi New South Wales'),
1636
+ (1283, '2287', 'Rankin Park', 'NSW', 'AU', 486, ' 2287 Rankin Park New South Wales'),
1637
+ (1284, '2287', 'Elermore Vale', 'NSW', 'AU', 486, ' 2287 Elermore Vale New South Wales'),
1638
+ (1285, '2287', 'Fletcher', 'NSW', 'AU', 486, ' 2287 Fletcher New South Wales'),
1639
+ (1286, '2287', 'Birmingham Gardens', 'NSW', 'AU', 486, ' 2287 Birmingham Gardens New South Wales'),
1640
+ (1287, '2289', 'Garden Suburb', 'NSW', 'AU', 486, ' 2289 Garden Suburb New South Wales'),
1641
+ (1288, '2289', 'Highfields', 'NSW', 'AU', 486, ' 2289 Highfields New South Wales'),
1642
+ (1289, '2289', 'Kotara Fair', 'NSW', 'AU', 486, ' 2289 Kotara Fair New South Wales'),
1643
+ (1290, '2289', 'Kotara South', 'NSW', 'AU', 486, ' 2289 Kotara South New South Wales'),
1644
+ (1291, '2289', 'Kotara', 'NSW', 'AU', 486, ' 2289 Kotara New South Wales'),
1645
+ (1292, '2289', 'Adamstown', 'NSW', 'AU', 486, ' 2289 Adamstown New South Wales'),
1646
+ (1293, '2289', 'Adamstown Heights', 'NSW', 'AU', 486, ' 2289 Adamstown Heights New South Wales'),
1647
+ (1294, '2290', 'Kahibah', 'NSW', 'AU', 486, ' 2290 Kahibah New South Wales'),
1648
+ (1295, '2290', 'Hillsborough', 'NSW', 'AU', 486, ' 2290 Hillsborough New South Wales'),
1649
+ (1296, '2290', 'Mount Hutton', 'NSW', 'AU', 486, ' 2290 Mount Hutton New South Wales'),
1650
+ (1297, '2290', 'Gateshead', 'NSW', 'AU', 486, ' 2290 Gateshead New South Wales'),
1651
+ (1298, '2290', 'Charlestown', 'NSW', 'AU', 486, ' 2290 Charlestown New South Wales'),
1652
+ (1299, '2290', 'Dudley', 'NSW', 'AU', 486, ' 2290 Dudley New South Wales'),
1653
+ (1300, '2290', 'Bennetts Green', 'NSW', 'AU', 486, ' 2290 Bennetts Green New South Wales'),
1654
+ (1301, '2290', 'Tingira Heights', 'NSW', 'AU', 486, ' 2290 Tingira Heights New South Wales'),
1655
+ (1302, '2290', 'Whitebridge', 'NSW', 'AU', 486, ' 2290 Whitebridge New South Wales'),
1656
+ (1303, '2290', 'Redhead', 'NSW', 'AU', 486, ' 2290 Redhead New South Wales'),
1657
+ (1304, '2291', 'The Junction', 'NSW', 'AU', 486, ' 2291 The Junction New South Wales'),
1658
+ (1305, '2291', 'Merewether', 'NSW', 'AU', 486, ' 2291 Merewether New South Wales'),
1659
+ (1306, '2291', 'Merewether Heights', 'NSW', 'AU', 486, ' 2291 Merewether Heights New South Wales'),
1660
+ (1307, '2292', 'Hamilton North', 'NSW', 'AU', 486, ' 2292 Hamilton North New South Wales'),
1661
+ (1308, '2292', 'Broadmeadow', 'NSW', 'AU', 486, ' 2292 Broadmeadow New South Wales'),
1662
+ (1309, '2293', 'Maryville', 'NSW', 'AU', 486, ' 2293 Maryville New South Wales'),
1663
+ (1310, '2293', 'Wickham', 'NSW', 'AU', 486, ' 2293 Wickham New South Wales'),
1664
+ (1311, '2294', 'Carrington', 'NSW', 'AU', 486, ' 2294 Carrington New South Wales'),
1665
+ (1312, '2295', 'Fern Bay', 'NSW', 'AU', 486, ' 2295 Fern Bay New South Wales'),
1666
+ (1313, '2295', 'Stockton', 'NSW', 'AU', 486, ' 2295 Stockton New South Wales'),
1667
+ (1314, '2296', 'Islington', 'NSW', 'AU', 486, ' 2296 Islington New South Wales'),
1668
+ (1315, '2297', 'Tighes Hill', 'NSW', 'AU', 486, ' 2297 Tighes Hill New South Wales'),
1669
+ (1316, '2298', 'Waratah', 'NSW', 'AU', 486, ' 2298 Waratah New South Wales'),
1670
+ (1317, '2298', 'Waratah West', 'NSW', 'AU', 486, ' 2298 Waratah West New South Wales'),
1671
+ (1318, '2298', 'Georgetown', 'NSW', 'AU', 486, ' 2298 Georgetown New South Wales'),
1672
+ (1319, '2299', 'Jesmond', 'NSW', 'AU', 486, ' 2299 Jesmond New South Wales'),
1673
+ (1320, '2299', 'Lambton', 'NSW', 'AU', 486, ' 2299 Lambton New South Wales'),
1674
+ (1321, '2299', 'North Lambton', 'NSW', 'AU', 486, ' 2299 North Lambton New South Wales'),
1675
+ (1322, '2300', 'Newcastle', 'NSW', 'AU', 486, ' 2300 Newcastle New South Wales'),
1676
+ (1323, '2300', 'Newcastle East', 'NSW', 'AU', 486, ' 2300 Newcastle East New South Wales'),
1677
+ (1324, '2300', 'Cooks Hill', 'NSW', 'AU', 486, ' 2300 Cooks Hill New South Wales'),
1678
+ (1325, '2300', 'The Hill', 'NSW', 'AU', 486, ' 2300 The Hill New South Wales'),
1679
+ (1326, '2300', 'Bar Beach', 'NSW', 'AU', 486, ' 2300 Bar Beach New South Wales'),
1680
+ (1327, '2302', 'Newcastle West', 'NSW', 'AU', 486, ' 2302 Newcastle West New South Wales'),
1681
+ (1328, '2303', 'Hamilton South', 'NSW', 'AU', 486, ' 2303 Hamilton South New South Wales'),
1682
+ (1329, '2303', 'Hamilton', 'NSW', 'AU', 486, ' 2303 Hamilton New South Wales'),
1683
+ (1330, '2303', 'Hamilton East', 'NSW', 'AU', 486, ' 2303 Hamilton East New South Wales'),
1684
+ (1331, '2304', 'Kooragang', 'NSW', 'AU', 486, ' 2304 Kooragang New South Wales'),
1685
+ (1332, '2304', 'Mayfield', 'NSW', 'AU', 486, ' 2304 Mayfield New South Wales'),
1686
+ (1333, '2304', 'Mayfield East', 'NSW', 'AU', 486, ' 2304 Mayfield East New South Wales'),
1687
+ (1334, '2304', 'Mayfield North', 'NSW', 'AU', 486, ' 2304 Mayfield North New South Wales'),
1688
+ (1335, '2304', 'Mayfield West', 'NSW', 'AU', 486, ' 2304 Mayfield West New South Wales'),
1689
+ (1336, '2304', 'Warabrook', 'NSW', 'AU', 486, ' 2304 Warabrook New South Wales'),
1690
+ (1337, '2304', 'Sandgate', 'NSW', 'AU', 486, ' 2304 Sandgate New South Wales'),
1691
+ (1338, '2305', 'Kotara East', 'NSW', 'AU', 486, ' 2305 Kotara East New South Wales'),
1692
+ (1339, '2305', 'New Lambton', 'NSW', 'AU', 486, ' 2305 New Lambton New South Wales'),
1693
+ (1340, '2305', 'New Lambton Heights', 'NSW', 'AU', 486, ' 2305 New Lambton Heights New South Wales'),
1694
+ (1341, '2306', 'Windale', 'NSW', 'AU', 486, ' 2306 Windale New South Wales'),
1695
+ (1342, '2307', 'Shortland', 'NSW', 'AU', 486, ' 2307 Shortland New South Wales'),
1696
+ (1343, '2308', 'Newcastle University', 'NSW', 'AU', 486, ' 2308 Newcastle University New South Wales'),
1697
+ (1344, '2308', 'Callaghan', 'NSW', 'AU', 486, ' 2308 Callaghan New South Wales'),
1698
+ (1345, '2309', 'Dangar', 'NSW', 'AU', 486, ' 2309 Dangar New South Wales'),
1699
+ (1346, '2310', 'Hunter Region', 'NSW', 'AU', 486, ' 2310 Hunter Region New South Wales'),
1700
+ (1347, '2311', 'Halton', 'NSW', 'AU', 486, ' 2311 Halton New South Wales'),
1701
+ (1348, '2311', 'Lewinsbrook', 'NSW', 'AU', 486, ' 2311 Lewinsbrook New South Wales'),
1702
+ (1349, '2311', 'Lostock', 'NSW', 'AU', 486, ' 2311 Lostock New South Wales'),
1703
+ (1350, '2311', 'Mount Rivers', 'NSW', 'AU', 486, ' 2311 Mount Rivers New South Wales'),
1704
+ (1351, '2311', 'East Gresford', 'NSW', 'AU', 486, ' 2311 East Gresford New South Wales'),
1705
+ (1352, '2311', 'Gresford', 'NSW', 'AU', 486, ' 2311 Gresford New South Wales'),
1706
+ (1353, '2311', 'Eccleston', 'NSW', 'AU', 486, ' 2311 Eccleston New South Wales'),
1707
+ (1354, '2311', 'Carrabolla', 'NSW', 'AU', 486, ' 2311 Carrabolla New South Wales'),
1708
+ (1355, '2311', 'Bingleburra', 'NSW', 'AU', 486, ' 2311 Bingleburra New South Wales'),
1709
+ (1356, '2311', 'Upper Allyn', 'NSW', 'AU', 486, ' 2311 Upper Allyn New South Wales'),
1710
+ (1357, '2311', 'Allynbrook', 'NSW', 'AU', 486, ' 2311 Allynbrook New South Wales'),
1711
+ (1358, '2312', 'Minimbah', 'NSW', 'AU', 486, ' 2312 Minimbah New South Wales'),
1712
+ (1359, '2312', 'Nabiac', 'NSW', 'AU', 486, ' 2312 Nabiac New South Wales'),
1713
+ (1360, '2315', 'Nelson Bay', 'NSW', 'AU', 486, ' 2315 Nelson Bay New South Wales'),
1714
+ (1361, '2315', 'Fingal Bay', 'NSW', 'AU', 486, ' 2315 Fingal Bay New South Wales'),
1715
+ (1362, '2315', 'Corlette', 'NSW', 'AU', 486, ' 2315 Corlette New South Wales'),
1716
+ (1363, '2315', 'Shoal Bay', 'NSW', 'AU', 486, ' 2315 Shoal Bay New South Wales'),
1717
+ (1364, '2316', 'Taylors Beach', 'NSW', 'AU', 486, ' 2316 Taylors Beach New South Wales'),
1718
+ (1365, '2316', 'Fishermans Bay', 'NSW', 'AU', 486, ' 2316 Fishermans Bay New South Wales'),
1719
+ (1366, '2316', 'Boat Harbour', 'NSW', 'AU', 486, ' 2316 Boat Harbour New South Wales'),
1720
+ (1367, '2316', 'Bobs Farm', 'NSW', 'AU', 486, ' 2316 Bobs Farm New South Wales'),
1721
+ (1368, '2316', 'One Mile', 'NSW', 'AU', 486, ' 2316 One Mile New South Wales'),
1722
+ (1369, '2316', 'Anna Bay', 'NSW', 'AU', 486, ' 2316 Anna Bay New South Wales'),
1723
+ (1370, '2317', 'Soldiers Point', 'NSW', 'AU', 486, ' 2317 Soldiers Point New South Wales'),
1724
+ (1371, '2317', 'Salamander Bay', 'NSW', 'AU', 486, ' 2317 Salamander Bay New South Wales'),
1725
+ (1372, '2318', 'Salt Ash', 'NSW', 'AU', 486, ' 2318 Salt Ash New South Wales'),
1726
+ (1373, '2318', 'Williamtown', 'NSW', 'AU', 486, ' 2318 Williamtown New South Wales'),
1727
+ (1374, '2318', 'Oyster Cove', 'NSW', 'AU', 486, ' 2318 Oyster Cove New South Wales'),
1728
+ (1375, '2318', 'Medowie', 'NSW', 'AU', 486, ' 2318 Medowie New South Wales'),
1729
+ (1376, '2318', 'Campvale', 'NSW', 'AU', 486, ' 2318 Campvale New South Wales'),
1730
+ (1377, '2318', 'Ferodale', 'NSW', 'AU', 486, ' 2318 Ferodale New South Wales'),
1731
+ (1378, '2318', 'Fullerton Cove', 'NSW', 'AU', 486, ' 2318 Fullerton Cove New South Wales'),
1732
+ (1379, '2319', 'Lemon Tree Passage', 'NSW', 'AU', 486, ' 2319 Lemon Tree Passage New South Wales'),
1733
+ (1380, '2319', 'Mallabula', 'NSW', 'AU', 486, ' 2319 Mallabula New South Wales'),
1734
+ (1381, '2319', 'Tanilba Bay', 'NSW', 'AU', 486, ' 2319 Tanilba Bay New South Wales'),
1735
+ (1382, '2319', 'Tilligerry Creek', 'NSW', 'AU', 486, ' 2319 Tilligerry Creek New South Wales'),
1736
+ (1383, '2320', 'Telarah', 'NSW', 'AU', 486, ' 2320 Telarah New South Wales'),
1737
+ (1384, '2320', 'Wallalong', 'NSW', 'AU', 486, ' 2320 Wallalong New South Wales'),
1738
+ (1385, '2320', 'Windella', 'NSW', 'AU', 486, ' 2320 Windella New South Wales'),
1739
+ (1386, '2320', 'Rosebrook', 'NSW', 'AU', 486, ' 2320 Rosebrook New South Wales'),
1740
+ (1387, '2320', 'Rothbury', 'NSW', 'AU', 486, ' 2320 Rothbury New South Wales'),
1741
+ (1388, '2320', 'Rutherford', 'NSW', 'AU', 486, ' 2320 Rutherford New South Wales'),
1742
+ (1389, '2320', 'South Maitland', 'NSW', 'AU', 486, ' 2320 South Maitland New South Wales'),
1743
+ (1390, '2320', 'Lorn', 'NSW', 'AU', 486, ' 2320 Lorn New South Wales'),
1744
+ (1391, '2320', 'Maitland', 'NSW', 'AU', 486, ' 2320 Maitland New South Wales'),
1745
+ (1392, '2320', 'Maitland North', 'NSW', 'AU', 486, ' 2320 Maitland North New South Wales'),
1746
+ (1393, '2320', 'Maitland Vale', 'NSW', 'AU', 486, ' 2320 Maitland Vale New South Wales'),
1747
+ (1394, '2320', 'Largs', 'NSW', 'AU', 486, ' 2320 Largs New South Wales'),
1748
+ (1395, '2320', 'Louth Park', 'NSW', 'AU', 486, ' 2320 Louth Park New South Wales'),
1749
+ (1396, '2320', 'Melville', 'NSW', 'AU', 486, ' 2320 Melville New South Wales'),
1750
+ (1397, '2320', 'Mindaribba', 'NSW', 'AU', 486, ' 2320 Mindaribba New South Wales'),
1751
+ (1398, '2320', 'Hillsborough', 'NSW', 'AU', 486, ' 2320 Hillsborough New South Wales'),
1752
+ (1399, '2320', 'Horseshoe Bend', 'NSW', 'AU', 486, ' 2320 Horseshoe Bend New South Wales'),
1753
+ (1400, '2320', 'Keinbah', 'NSW', 'AU', 486, ' 2320 Keinbah New South Wales'),
1754
+ (1401, '2320', 'Oakhampton', 'NSW', 'AU', 486, ' 2320 Oakhampton New South Wales'),
1755
+ (1402, '2320', 'Oakhampton Heights', 'NSW', 'AU', 486, ' 2320 Oakhampton Heights New South Wales'),
1756
+ (1403, '2320', 'Pokolbin', 'NSW', 'AU', 486, ' 2320 Pokolbin New South Wales'),
1757
+ (1404, '2320', 'Mount Dee', 'NSW', 'AU', 486, ' 2320 Mount Dee New South Wales'),
1758
+ (1405, '2320', 'Glen Oak', 'NSW', 'AU', 486, ' 2320 Glen Oak New South Wales'),
1759
+ (1406, '2320', 'Gosforth', 'NSW', 'AU', 486, ' 2320 Gosforth New South Wales'),
1760
+ (1407, '2320', 'Farley', 'NSW', 'AU', 486, ' 2320 Farley New South Wales'),
1761
+ (1408, '2320', 'Bolwarra', 'NSW', 'AU', 486, ' 2320 Bolwarra New South Wales'),
1762
+ (1409, '2320', 'Bolwarra Heights', 'NSW', 'AU', 486, ' 2320 Bolwarra Heights New South Wales'),
1763
+ (1410, '2320', 'Anambah', 'NSW', 'AU', 486, ' 2320 Anambah New South Wales'),
1764
+ (1411, '2320', 'Allandale', 'NSW', 'AU', 486, ' 2320 Allandale New South Wales'),
1765
+ (1412, '2320', 'Aberglasslyn', 'NSW', 'AU', 486, ' 2320 Aberglasslyn New South Wales'),
1766
+ (1413, '2321', 'Butterwick', 'NSW', 'AU', 486, ' 2321 Butterwick New South Wales'),
1767
+ (1414, '2321', 'Berry Park', 'NSW', 'AU', 486, ' 2321 Berry Park New South Wales'),
1768
+ (1415, '2321', 'Glen William', 'NSW', 'AU', 486, ' 2321 Glen William New South Wales'),
1769
+ (1416, '2321', 'Glen Martin', 'NSW', 'AU', 486, ' 2321 Glen Martin New South Wales'),
1770
+ (1417, '2321', 'Gillieston Heights', 'NSW', 'AU', 486, ' 2321 Gillieston Heights New South Wales'),
1771
+ (1418, '2321', 'Clarence Town', 'NSW', 'AU', 486, ' 2321 Clarence Town New South Wales'),
1772
+ (1419, '2321', 'Cliftleigh', 'NSW', 'AU', 486, ' 2321 Cliftleigh New South Wales'),
1773
+ (1420, '2321', 'Duns Creek', 'NSW', 'AU', 486, ' 2321 Duns Creek New South Wales'),
1774
+ (1421, '2321', 'Duckenfield', 'NSW', 'AU', 486, ' 2321 Duckenfield New South Wales'),
1775
+ (1422, '2321', 'Morpeth', 'NSW', 'AU', 486, ' 2321 Morpeth New South Wales'),
1776
+ (1423, '2321', 'Phoenix Park', 'NSW', 'AU', 486, ' 2321 Phoenix Park New South Wales'),
1777
+ (1424, '2321', 'Oswald', 'NSW', 'AU', 486, ' 2321 Oswald New South Wales'),
1778
+ (1425, '2321', 'Raworth', 'NSW', 'AU', 486, ' 2321 Raworth New South Wales'),
1779
+ (1426, '2321', 'Hinton', 'NSW', 'AU', 486, ' 2321 Hinton New South Wales'),
1780
+ (1427, '2321', 'Heddon Greta', 'NSW', 'AU', 486, ' 2321 Heddon Greta New South Wales'),
1781
+ (1428, '2321', 'Harpers Hill', 'NSW', 'AU', 486, ' 2321 Harpers Hill New South Wales'),
1782
+ (1429, '2321', 'Lochinvar', 'NSW', 'AU', 486, ' 2321 Lochinvar New South Wales'),
1783
+ (1430, '2321', 'Luskintyre', 'NSW', 'AU', 486, ' 2321 Luskintyre New South Wales'),
1784
+ (1431, '2321', 'Windermere', 'NSW', 'AU', 486, ' 2321 Windermere New South Wales'),
1785
+ (1432, '2321', 'Woodville', 'NSW', 'AU', 486, ' 2321 Woodville New South Wales'),
1786
+ (1433, '2322', 'Woodberry', 'NSW', 'AU', 486, ' 2322 Woodberry New South Wales'),
1787
+ (1434, '2322', 'Thornton', 'NSW', 'AU', 486, ' 2322 Thornton New South Wales'),
1788
+ (1435, '2322', 'Tarro', 'NSW', 'AU', 486, ' 2322 Tarro New South Wales'),
1789
+ (1436, '2322', 'Tomago', 'NSW', 'AU', 486, ' 2322 Tomago New South Wales'),
1790
+ (1437, '2322', 'Stockrington', 'NSW', 'AU', 486, ' 2322 Stockrington New South Wales'),
1791
+ (1438, '2322', 'Lenaghan', 'NSW', 'AU', 486, ' 2322 Lenaghan New South Wales'),
1792
+ (1439, '2322', 'Hexham', 'NSW', 'AU', 486, ' 2322 Hexham New South Wales'),
1793
+ (1440, '2322', 'Chisholm', 'NSW', 'AU', 486, ' 2322 Chisholm New South Wales'),
1794
+ (1441, '2322', 'Beresfield', 'NSW', 'AU', 486, ' 2322 Beresfield New South Wales'),
1795
+ (1442, '2322', 'Black Hill', 'NSW', 'AU', 486, ' 2322 Black Hill New South Wales'),
1796
+ (1443, '2323', 'Brunkerville', 'NSW', 'AU', 486, ' 2323 Brunkerville New South Wales'),
1797
+ (1444, '2323', 'Buchanan', 'NSW', 'AU', 486, ' 2323 Buchanan New South Wales'),
1798
+ (1445, '2323', 'Buttai', 'NSW', 'AU', 486, ' 2323 Buttai New South Wales'),
1799
+ (1446, '2323', 'East Maitland', 'NSW', 'AU', 486, ' 2323 East Maitland New South Wales'),
1800
+ (1447, '2323', 'Green Hills', 'NSW', 'AU', 486, ' 2323 Green Hills New South Wales'),
1801
+ (1448, '2323', 'Four Mile Creek', 'NSW', 'AU', 486, ' 2323 Four Mile Creek New South Wales'),
1802
+ (1449, '2323', 'Freemans Waterhole', 'NSW', 'AU', 486, ' 2323 Freemans Waterhole New South Wales'),
1803
+ (1450, '2323', 'Metford', 'NSW', 'AU', 486, ' 2323 Metford New South Wales'),
1804
+ (1451, '2323', 'Pitnacree', 'NSW', 'AU', 486, ' 2323 Pitnacree New South Wales'),
1805
+ (1452, '2323', 'Mount Vincent', 'NSW', 'AU', 486, ' 2323 Mount Vincent New South Wales'),
1806
+ (1453, '2323', 'Mulbring', 'NSW', 'AU', 486, ' 2323 Mulbring New South Wales'),
1807
+ (1454, '2323', 'Richmond Vale', 'NSW', 'AU', 486, ' 2323 Richmond Vale New South Wales'),
1808
+ (1455, '2323', 'Tenambit', 'NSW', 'AU', 486, ' 2323 Tenambit New South Wales'),
1809
+ (1456, '2323', 'Ashtonfield', 'NSW', 'AU', 486, ' 2323 Ashtonfield New South Wales'),
1810
+ (1457, '2324', 'Balickera', 'NSW', 'AU', 486, ' 2324 Balickera New South Wales'),
1811
+ (1458, '2324', 'Swan Bay', 'NSW', 'AU', 486, ' 2324 Swan Bay New South Wales'),
1812
+ (1459, '2324', 'Tea Gardens', 'NSW', 'AU', 486, ' 2324 Tea Gardens New South Wales'),
1813
+ (1460, '2324', 'Twelve Mile Creek', 'NSW', 'AU', 486, ' 2324 Twelve Mile Creek New South Wales'),
1814
+ (1461, '2324', 'Raymond Terrace', 'NSW', 'AU', 486, ' 2324 Raymond Terrace New South Wales'),
1815
+ (1462, '2324', 'Raymond Terrace East', 'NSW', 'AU', 486, ' 2324 Raymond Terrace East New South Wales'),
1816
+ (1463, '2324', 'Tahlee', 'NSW', 'AU', 486, ' 2324 Tahlee New South Wales'),
1817
+ (1464, '2324', 'Seaham', 'NSW', 'AU', 486, ' 2324 Seaham New South Wales'),
1818
+ (1465, '2324', 'Nelsons Plains', 'NSW', 'AU', 486, ' 2324 Nelsons Plains New South Wales'),
1819
+ (1466, '2324', 'North Arm Cove', 'NSW', 'AU', 486, ' 2324 North Arm Cove New South Wales'),
1820
+ (1467, '2324', 'Pindimar', 'NSW', 'AU', 486, ' 2324 Pindimar New South Wales'),
1821
+ (1468, '2324', 'Osterley', 'NSW', 'AU', 486, ' 2324 Osterley New South Wales'),
1822
+ (1469, '2324', 'Millers Forest', 'NSW', 'AU', 486, ' 2324 Millers Forest New South Wales'),
1823
+ (1470, '2324', 'Limeburners Creek', 'NSW', 'AU', 486, ' 2324 Limeburners Creek New South Wales'),
1824
+ (1471, '2324', 'Hawks Nest', 'NSW', 'AU', 486, ' 2324 Hawks Nest New South Wales'),
1825
+ (1472, '2324', 'Heatherbrae', 'NSW', 'AU', 486, ' 2324 Heatherbrae New South Wales'),
1826
+ (1473, '2324', 'Karuah', 'NSW', 'AU', 486, ' 2324 Karuah New South Wales'),
1827
+ (1474, '2324', 'East Seaham', 'NSW', 'AU', 486, ' 2324 East Seaham New South Wales'),
1828
+ (1475, '2324', 'Eagleton', 'NSW', 'AU', 486, ' 2324 Eagleton New South Wales'),
1829
+ (1476, '2324', 'Carrington', 'NSW', 'AU', 486, ' 2324 Carrington New South Wales'),
1830
+ (1477, '2324', 'Bundabah', 'NSW', 'AU', 486, ' 2324 Bundabah New South Wales'),
1831
+ (1478, '2324', 'Brandy Hill', 'NSW', 'AU', 486, ' 2324 Brandy Hill New South Wales'),
1832
+ (1479, '2325', 'Bellbird', 'NSW', 'AU', 486, ' 2325 Bellbird New South Wales'),
1833
+ (1480, '2325', 'Bellbird Heights', 'NSW', 'AU', 486, ' 2325 Bellbird Heights New South Wales'),
1834
+ (1481, '2325', 'Cedar Creek', 'NSW', 'AU', 486, ' 2325 Cedar Creek New South Wales'),
1835
+ (1482, '2325', 'Cessnock', 'NSW', 'AU', 486, ' 2325 Cessnock New South Wales'),
1836
+ (1483, '2325', 'Cessnock West', 'NSW', 'AU', 486, ' 2325 Cessnock West New South Wales'),
1837
+ (1484, '2325', 'Congewai', 'NSW', 'AU', 486, ' 2325 Congewai New South Wales'),
1838
+ (1485, '2325', 'Corrabare', 'NSW', 'AU', 486, ' 2325 Corrabare New South Wales'),
1839
+ (1486, '2325', 'Ellalong', 'NSW', 'AU', 486, ' 2325 Ellalong New South Wales'),
1840
+ (1487, '2325', 'Elrington', 'NSW', 'AU', 486, ' 2325 Elrington New South Wales'),
1841
+ (1488, '2325', 'Greta Main', 'NSW', 'AU', 486, ' 2325 Greta Main New South Wales'),
1842
+ (1489, '2325', 'Kearsley', 'NSW', 'AU', 486, ' 2325 Kearsley New South Wales'),
1843
+ (1490, '2325', 'Kitchener', 'NSW', 'AU', 486, ' 2325 Kitchener New South Wales'),
1844
+ (1491, '2325', 'Laguna', 'NSW', 'AU', 486, ' 2325 Laguna New South Wales'),
1845
+ (1492, '2325', 'Lovedale', 'NSW', 'AU', 486, ' 2325 Lovedale New South Wales'),
1846
+ (1493, '2325', 'Millfield', 'NSW', 'AU', 486, ' 2325 Millfield New South Wales'),
1847
+ (1494, '2325', 'Olney', 'NSW', 'AU', 486, ' 2325 Olney New South Wales'),
1848
+ (1495, '2325', 'Nulkaba', 'NSW', 'AU', 486, ' 2325 Nulkaba New South Wales'),
1849
+ (1496, '2325', 'Quorrobolong', 'NSW', 'AU', 486, ' 2325 Quorrobolong New South Wales'),
1850
+ (1497, '2325', 'Pelton', 'NSW', 'AU', 486, ' 2325 Pelton New South Wales'),
1851
+ (1498, '2325', 'Paxton', 'NSW', 'AU', 486, ' 2325 Paxton New South Wales'),
1852
+ (1499, '2325', 'Paynes Crossing', 'NSW', 'AU', 486, ' 2325 Paynes Crossing New South Wales'),
1853
+ (1500, '2325', 'Mount View', 'NSW', 'AU', 486, ' 2325 Mount View New South Wales'),
1854
+ (1501, '2325', 'Moruben', 'NSW', 'AU', 486, ' 2325 Moruben New South Wales'),
1855
+ (1502, '2325', 'Sweetmans Creek', 'NSW', 'AU', 486, ' 2325 Sweetmans Creek New South Wales'),
1856
+ (1503, '2325', 'Wollombi', 'NSW', 'AU', 486, ' 2325 Wollombi New South Wales'),
1857
+ (1504, '2325', 'Abernethy', 'NSW', 'AU', 486, ' 2325 Abernethy New South Wales'),
1858
+ (1505, '2325', 'Aberdare', 'NSW', 'AU', 486, ' 2325 Aberdare New South Wales'),
1859
+ (1506, '2326', 'Abermain', 'NSW', 'AU', 486, ' 2326 Abermain New South Wales'),
1860
+ (1507, '2326', 'Sawyers Gully', 'NSW', 'AU', 486, ' 2326 Sawyers Gully New South Wales'),
1861
+ (1508, '2326', 'Weston', 'NSW', 'AU', 486, ' 2326 Weston New South Wales'),
1862
+ (1509, '2326', 'Neath', 'NSW', 'AU', 486, ' 2326 Neath New South Wales'),
1863
+ (1510, '2326', 'Loxford', 'NSW', 'AU', 486, ' 2326 Loxford New South Wales'),
1864
+ (1511, '2326', 'Bishops Bridge', 'NSW', 'AU', 486, ' 2326 Bishops Bridge New South Wales'),
1865
+ (1512, '2327', 'Kurri Kurri', 'NSW', 'AU', 486, ' 2327 Kurri Kurri New South Wales'),
1866
+ (1513, '2327', 'Pelaw Main', 'NSW', 'AU', 486, ' 2327 Pelaw Main New South Wales'),
1867
+ (1514, '2327', 'Stanford Merthyr', 'NSW', 'AU', 486, ' 2327 Stanford Merthyr New South Wales'),
1868
+ (1515, '2328', 'Widden', 'NSW', 'AU', 486, ' 2328 Widden New South Wales'),
1869
+ (1516, '2328', 'Yarrawa', 'NSW', 'AU', 486, ' 2328 Yarrawa New South Wales'),
1870
+ (1517, '2328', 'Kerrabee', 'NSW', 'AU', 486, ' 2328 Kerrabee New South Wales'),
1871
+ (1518, '2328', 'Hollydeen', 'NSW', 'AU', 486, ' 2328 Hollydeen New South Wales'),
1872
+ (1519, '2328', 'Mangoola', 'NSW', 'AU', 486, ' 2328 Mangoola New South Wales'),
1873
+ (1520, '2328', 'Martindale', 'NSW', 'AU', 486, ' 2328 Martindale New South Wales'),
1874
+ (1521, '2328', 'Bureen', 'NSW', 'AU', 486, ' 2328 Bureen New South Wales'),
1875
+ (1522, '2328', 'Giants Creek', 'NSW', 'AU', 486, ' 2328 Giants Creek New South Wales'),
1876
+ (1523, '2328', 'Dalswinton', 'NSW', 'AU', 486, ' 2328 Dalswinton New South Wales'),
1877
+ (1524, '2328', 'Denman', 'NSW', 'AU', 486, ' 2328 Denman New South Wales'),
1878
+ (1525, '2329', 'Cassilis', 'NSW', 'AU', 486, ' 2329 Cassilis New South Wales'),
1879
+ (1526, '2329', 'Merriwa', 'NSW', 'AU', 486, ' 2329 Merriwa New South Wales'),
1880
+ (1527, '2329', 'Uarbry', 'NSW', 'AU', 486, ' 2329 Uarbry New South Wales'),
1881
+ (1528, '2330', 'Warkworth', 'NSW', 'AU', 486, ' 2330 Warkworth New South Wales'),
1882
+ (1529, '2330', 'Wattle Ponds', 'NSW', 'AU', 486, ' 2330 Wattle Ponds New South Wales'),
1883
+ (1530, '2330', 'Whittingham', 'NSW', 'AU', 486, ' 2330 Whittingham New South Wales'),
1884
+ (1531, '2330', 'Westbrook', 'NSW', 'AU', 486, ' 2330 Westbrook New South Wales'),
1885
+ (1532, '2330', 'Scotts Flat', 'NSW', 'AU', 486, ' 2330 Scotts Flat New South Wales'),
1886
+ (1533, '2330', 'Sedgefield', 'NSW', 'AU', 486, ' 2330 Sedgefield New South Wales'),
1887
+ (1534, '2330', 'St Clair', 'NSW', 'AU', 486, ' 2330 St Clair New South Wales'),
1888
+ (1535, '2330', 'Singleton', 'NSW', 'AU', 486, ' 2330 Singleton New South Wales'),
1889
+ (1536, '2330', 'Singleton Heights', 'NSW', 'AU', 486, ' 2330 Singleton Heights New South Wales'),
1890
+ (1537, '2330', 'Reedy Creek', 'NSW', 'AU', 486, ' 2330 Reedy Creek New South Wales'),
1891
+ (1538, '2330', 'Redbournberry', 'NSW', 'AU', 486, ' 2330 Redbournberry New South Wales'),
1892
+ (1539, '2330', 'Rixs Creek', 'NSW', 'AU', 486, ' 2330 Rixs Creek New South Wales'),
1893
+ (1540, '2330', 'Roughit', 'NSW', 'AU', 486, ' 2330 Roughit New South Wales'),
1894
+ (1541, '2330', 'Wylies Flat', 'NSW', 'AU', 486, ' 2330 Wylies Flat New South Wales'),
1895
+ (1542, '2330', 'Wollemi', 'NSW', 'AU', 486, ' 2330 Wollemi New South Wales'),
1896
+ (1543, '2330', 'Middle Falbrook', 'NSW', 'AU', 486, ' 2330 Middle Falbrook New South Wales'),
1897
+ (1544, '2330', 'Milbrodale', 'NSW', 'AU', 486, ' 2330 Milbrodale New South Wales'),
1898
+ (1545, '2330', 'Mirannie', 'NSW', 'AU', 486, ' 2330 Mirannie New South Wales'),
1899
+ (1546, '2330', 'Mitchells Flat', 'NSW', 'AU', 486, ' 2330 Mitchells Flat New South Wales'),
1900
+ (1547, '2330', 'Mcdougalls Hill', 'NSW', 'AU', 486, ' 2330 Mcdougalls Hill New South Wales'),
1901
+ (1548, '2330', 'Maison Dieu', 'NSW', 'AU', 486, ' 2330 Maison Dieu New South Wales'),
1902
+ (1549, '2330', 'Lemington', 'NSW', 'AU', 486, ' 2330 Lemington New South Wales'),
1903
+ (1550, '2330', 'Long Point', 'NSW', 'AU', 486, ' 2330 Long Point New South Wales'),
1904
+ (1551, '2330', 'Howes Valley', 'NSW', 'AU', 486, ' 2330 Howes Valley New South Wales'),
1905
+ (1552, '2330', 'Howick', 'NSW', 'AU', 486, ' 2330 Howick New South Wales'),
1906
+ (1553, '2330', 'Hunterview', 'NSW', 'AU', 486, ' 2330 Hunterview New South Wales'),
1907
+ (1554, '2330', 'Greenlands', 'NSW', 'AU', 486, ' 2330 Greenlands New South Wales'),
1908
+ (1555, '2330', 'Jerrys Plains', 'NSW', 'AU', 486, ' 2330 Jerrys Plains New South Wales'),
1909
+ (1556, '2330', 'Hebden', 'NSW', 'AU', 486, ' 2330 Hebden New South Wales'),
1910
+ (1557, '2330', 'Hambledon Hill', 'NSW', 'AU', 486, ' 2330 Hambledon Hill New South Wales'),
1911
+ (1558, '2330', 'Obanvale', 'NSW', 'AU', 486, ' 2330 Obanvale New South Wales'),
1912
+ (1559, '2330', 'Mount Olive', 'NSW', 'AU', 486, ' 2330 Mount Olive New South Wales'),
1913
+ (1560, '2330', 'Mount Royal', 'NSW', 'AU', 486, ' 2330 Mount Royal New South Wales'),
1914
+ (1561, '2330', 'Mount Thorley', 'NSW', 'AU', 486, ' 2330 Mount Thorley New South Wales'),
1915
+ (1562, '2330', 'Putty', 'NSW', 'AU', 486, ' 2330 Putty New South Wales'),
1916
+ (1563, '2330', 'Ravensworth', 'NSW', 'AU', 486, ' 2330 Ravensworth New South Wales'),
1917
+ (1564, '2330', 'Carrowbrook', 'NSW', 'AU', 486, ' 2330 Carrowbrook New South Wales'),
1918
+ (1565, '2330', 'Clydesdale', 'NSW', 'AU', 486, ' 2330 Clydesdale New South Wales'),
1919
+ (1566, '2330', 'Combo', 'NSW', 'AU', 486, ' 2330 Combo New South Wales'),
1920
+ (1567, '2330', 'Darlington', 'NSW', 'AU', 486, ' 2330 Darlington New South Wales'),
1921
+ (1568, '2330', 'Dural', 'NSW', 'AU', 486, ' 2330 Dural New South Wales'),
1922
+ (1569, '2330', 'Dunolly', 'NSW', 'AU', 486, ' 2330 Dunolly New South Wales'),
1923
+ (1570, '2330', 'Doyles Creek', 'NSW', 'AU', 486, ' 2330 Doyles Creek New South Wales'),
1924
+ (1571, '2330', 'Garland Valley', 'NSW', 'AU', 486, ' 2330 Garland Valley New South Wales'),
1925
+ (1572, '2330', 'Glendon', 'NSW', 'AU', 486, ' 2330 Glendon New South Wales'),
1926
+ (1573, '2330', 'Glendon Brook', 'NSW', 'AU', 486, ' 2330 Glendon Brook New South Wales'),
1927
+ (1574, '2330', 'Glennies Creek', 'NSW', 'AU', 486, ' 2330 Glennies Creek New South Wales'),
1928
+ (1575, '2330', 'Glenridding', 'NSW', 'AU', 486, ' 2330 Glenridding New South Wales'),
1929
+ (1576, '2330', 'Goorangoola', 'NSW', 'AU', 486, ' 2330 Goorangoola New South Wales'),
1930
+ (1577, '2330', 'Gouldsville', 'NSW', 'AU', 486, ' 2330 Gouldsville New South Wales'),
1931
+ (1578, '2330', 'Gowrie', 'NSW', 'AU', 486, ' 2330 Gowrie New South Wales'),
1932
+ (1579, '2330', 'Falbrook', 'NSW', 'AU', 486, ' 2330 Falbrook New South Wales'),
1933
+ (1580, '2330', 'Dyrring', 'NSW', 'AU', 486, ' 2330 Dyrring New South Wales'),
1934
+ (1581, '2330', 'Fordwich', 'NSW', 'AU', 486, ' 2330 Fordwich New South Wales'),
1935
+ (1582, '2330', 'Fern Gully', 'NSW', 'AU', 486, ' 2330 Fern Gully New South Wales'),
1936
+ (1583, '2330', 'Bulga', 'NSW', 'AU', 486, ' 2330 Bulga New South Wales'),
1937
+ (1584, '2330', 'Broke', 'NSW', 'AU', 486, ' 2330 Broke New South Wales'),
1938
+ (1585, '2330', 'Camberwell', 'NSW', 'AU', 486, ' 2330 Camberwell New South Wales'),
1939
+ (1586, '2330', 'Bowmans Creek', 'NSW', 'AU', 486, ' 2330 Bowmans Creek New South Wales'),
1940
+ (1587, '2330', 'Bridgman', 'NSW', 'AU', 486, ' 2330 Bridgman New South Wales'),
1941
+ (1588, '2330', 'Big Ridge', 'NSW', 'AU', 486, ' 2330 Big Ridge New South Wales'),
1942
+ (1589, '2330', 'Big Yengo', 'NSW', 'AU', 486, ' 2330 Big Yengo New South Wales'),
1943
+ (1590, '2330', 'Appletree Flat', 'NSW', 'AU', 486, ' 2330 Appletree Flat New South Wales'),
1944
+ (1591, '2333', 'Baerami', 'NSW', 'AU', 486, ' 2333 Baerami New South Wales'),
1945
+ (1592, '2333', 'Baerami Creek', 'NSW', 'AU', 486, ' 2333 Baerami Creek New South Wales'),
1946
+ (1593, '2333', 'Bengalla', 'NSW', 'AU', 486, ' 2333 Bengalla New South Wales'),
1947
+ (1594, '2333', 'Edderton', 'NSW', 'AU', 486, ' 2333 Edderton New South Wales'),
1948
+ (1595, '2333', 'Castle Rock', 'NSW', 'AU', 486, ' 2333 Castle Rock New South Wales'),
1949
+ (1596, '2333', 'Muscle Creek', 'NSW', 'AU', 486, ' 2333 Muscle Creek New South Wales'),
1950
+ (1597, '2333', 'Muswellbrook', 'NSW', 'AU', 486, ' 2333 Muswellbrook New South Wales'),
1951
+ (1598, '2333', 'Gungal', 'NSW', 'AU', 486, ' 2333 Gungal New South Wales'),
1952
+ (1599, '2333', 'Kayuga', 'NSW', 'AU', 486, ' 2333 Kayuga New South Wales'),
1953
+ (1600, '2333', 'Liddell', 'NSW', 'AU', 486, ' 2333 Liddell New South Wales'),
1954
+ (1601, '2333', 'Manobalai', 'NSW', 'AU', 486, ' 2333 Manobalai New South Wales'),
1955
+ (1602, '2333', 'Mccullys Gap', 'NSW', 'AU', 486, ' 2333 Mccullys Gap New South Wales'),
1956
+ (1603, '2333', 'Wybong', 'NSW', 'AU', 486, ' 2333 Wybong New South Wales'),
1957
+ (1604, '2333', 'Sandy Hollow', 'NSW', 'AU', 486, ' 2333 Sandy Hollow New South Wales'),
1958
+ (1605, '2334', 'Greta', 'NSW', 'AU', 486, ' 2334 Greta New South Wales'),
1959
+ (1606, '2335', 'Elderslie', 'NSW', 'AU', 486, ' 2335 Elderslie New South Wales'),
1960
+ (1607, '2335', 'East Branxton', 'NSW', 'AU', 486, ' 2335 East Branxton New South Wales'),
1961
+ (1608, '2335', 'Dalwood', 'NSW', 'AU', 486, ' 2335 Dalwood New South Wales'),
1962
+ (1609, '2335', 'Branxton', 'NSW', 'AU', 486, ' 2335 Branxton New South Wales'),
1963
+ (1610, '2335', 'Belford', 'NSW', 'AU', 486, ' 2335 Belford New South Wales'),
1964
+ (1611, '2335', 'Leconfield', 'NSW', 'AU', 486, ' 2335 Leconfield New South Wales'),
1965
+ (1612, '2335', 'Lambs Valley', 'NSW', 'AU', 486, ' 2335 Lambs Valley New South Wales'),
1966
+ (1613, '2335', 'Lower Belford', 'NSW', 'AU', 486, ' 2335 Lower Belford New South Wales'),
1967
+ (1614, '2335', 'North Rothbury', 'NSW', 'AU', 486, ' 2335 North Rothbury New South Wales'),
1968
+ (1615, '2335', 'Stanhope', 'NSW', 'AU', 486, ' 2335 Stanhope New South Wales'),
1969
+ (1616, '2336', 'Rouchel', 'NSW', 'AU', 486, ' 2336 Rouchel New South Wales'),
1970
+ (1617, '2336', 'Rouchel Brook', 'NSW', 'AU', 486, ' 2336 Rouchel Brook New South Wales'),
1971
+ (1618, '2336', 'Rossgole', 'NSW', 'AU', 486, ' 2336 Rossgole New South Wales'),
1972
+ (1619, '2336', 'Upper Dartbrook', 'NSW', 'AU', 486, ' 2336 Upper Dartbrook New South Wales'),
1973
+ (1620, '2336', 'Upper Rouchel', 'NSW', 'AU', 486, ' 2336 Upper Rouchel New South Wales'),
1974
+ (1621, '2336', 'Dartbrook', 'NSW', 'AU', 486, ' 2336 Dartbrook New South Wales'),
1975
+ (1622, '2336', 'Davis Creek', 'NSW', 'AU', 486, ' 2336 Davis Creek New South Wales'),
1976
+ (1623, '2336', 'Aberdeen', 'NSW', 'AU', 486, ' 2336 Aberdeen New South Wales'),
1977
+ (1624, '2337', 'Dry Creek', 'NSW', 'AU', 486, ' 2337 Dry Creek New South Wales'),
1978
+ (1625, '2337', 'Ellerston', 'NSW', 'AU', 486, ' 2337 Ellerston New South Wales'),
1979
+ (1626, '2337', 'Gundy', 'NSW', 'AU', 486, ' 2337 Gundy New South Wales'),
1980
+ (1627, '2337', 'Glenbawn', 'NSW', 'AU', 486, ' 2337 Glenbawn New South Wales'),
1981
+ (1628, '2337', 'Glenrock', 'NSW', 'AU', 486, ' 2337 Glenrock New South Wales'),
1982
+ (1629, '2337', 'Belltrees', 'NSW', 'AU', 486, ' 2337 Belltrees New South Wales'),
1983
+ (1630, '2337', 'Brawboy', 'NSW', 'AU', 486, ' 2337 Brawboy New South Wales'),
1984
+ (1631, '2337', 'Bunnan', 'NSW', 'AU', 486, ' 2337 Bunnan New South Wales'),
1985
+ (1632, '2337', 'Omadale', 'NSW', 'AU', 486, ' 2337 Omadale New South Wales'),
1986
+ (1633, '2337', 'Owens Gap', 'NSW', 'AU', 486, ' 2337 Owens Gap New South Wales'),
1987
+ (1634, '2337', 'Pages Creek', 'NSW', 'AU', 486, ' 2337 Pages Creek New South Wales'),
1988
+ (1635, '2337', 'Parkville', 'NSW', 'AU', 486, ' 2337 Parkville New South Wales'),
1989
+ (1636, '2337', 'Murulla', 'NSW', 'AU', 486, ' 2337 Murulla New South Wales'),
1990
+ (1637, '2337', 'Middle Brook', 'NSW', 'AU', 486, ' 2337 Middle Brook New South Wales'),
1991
+ (1638, '2337', 'Moobi', 'NSW', 'AU', 486, ' 2337 Moobi New South Wales'),
1992
+ (1639, '2337', 'Moonan Brook', 'NSW', 'AU', 486, ' 2337 Moonan Brook New South Wales'),
1993
+ (1640, '2337', 'Moonan Flat', 'NSW', 'AU', 486, ' 2337 Moonan Flat New South Wales'),
1994
+ (1641, '2337', 'Kars Springs', 'NSW', 'AU', 486, ' 2337 Kars Springs New South Wales'),
1995
+ (1642, '2337', 'Waverly', 'NSW', 'AU', 486, ' 2337 Waverly New South Wales'),
1996
+ (1643, '2337', 'Tomalla', 'NSW', 'AU', 486, ' 2337 Tomalla New South Wales'),
1997
+ (1644, '2337', 'Wingen', 'NSW', 'AU', 486, ' 2337 Wingen New South Wales'),
1998
+ (1645, '2337', 'Stewarts Brook', 'NSW', 'AU', 486, ' 2337 Stewarts Brook New South Wales'),
1999
+ (1646, '2337', 'Segenhoe', 'NSW', 'AU', 486, ' 2337 Segenhoe New South Wales'),
2000
+ (1647, '2337', 'Scone', 'NSW', 'AU', 486, ' 2337 Scone New South Wales'),
2001
+ (1648, '2337', 'Woolooma', 'NSW', 'AU', 486, ' 2337 Woolooma New South Wales'),
2002
+ (1649, '2338', 'Scotts Creek', 'NSW', 'AU', 486, ' 2338 Scotts Creek New South Wales'),
2003
+ (1650, '2338', 'Sandy Creek', 'NSW', 'AU', 486, ' 2338 Sandy Creek New South Wales'),
2004
+ (1651, '2338', 'Timor', 'NSW', 'AU', 486, ' 2338 Timor New South Wales'),
2005
+ (1652, '2338', 'Murrurundi', 'NSW', 'AU', 486, ' 2338 Murrurundi New South Wales'),
2006
+ (1653, '2338', 'Pages River', 'NSW', 'AU', 486, ' 2338 Pages River New South Wales'),
2007
+ (1654, '2338', 'Blandford', 'NSW', 'AU', 486, ' 2338 Blandford New South Wales'),
2008
+ (1655, '2338', 'Green Creek', 'NSW', 'AU', 486, ' 2338 Green Creek New South Wales'),
2009
+ (1656, '2338', 'Crawney', 'NSW', 'AU', 486, ' 2338 Crawney New South Wales'),
2010
+ (1657, '2338', 'Ardglen', 'NSW', 'AU', 486, ' 2338 Ardglen New South Wales'),
2011
+ (1658, '2339', 'Warrah', 'NSW', 'AU', 486, ' 2339 Warrah New South Wales'),
2012
+ (1659, '2339', 'Warrah Creek', 'NSW', 'AU', 486, ' 2339 Warrah Creek New South Wales'),
2013
+ (1660, '2339', 'Willow Tree', 'NSW', 'AU', 486, ' 2339 Willow Tree New South Wales'),
2014
+ (1661, '2339', 'Parraweena', 'NSW', 'AU', 486, ' 2339 Parraweena New South Wales'),
2015
+ (1662, '2339', 'Little Jacks Creek', 'NSW', 'AU', 486, ' 2339 Little Jacks Creek New South Wales'),
2016
+ (1663, '2339', 'Macdonalds Creek', 'NSW', 'AU', 486, ' 2339 Macdonalds Creek New South Wales'),
2017
+ (1664, '2339', 'Big Jacks Creek', 'NSW', 'AU', 486, ' 2339 Big Jacks Creek New South Wales'),
2018
+ (1665, '2339', 'Braefield', 'NSW', 'AU', 486, ' 2339 Braefield New South Wales'),
2019
+ (1666, '2339', 'Cattle Creek', 'NSW', 'AU', 486, ' 2339 Cattle Creek New South Wales'),
2020
+ (1667, '2339', 'Chilcotts Creek', 'NSW', 'AU', 486, ' 2339 Chilcotts Creek New South Wales'),
2021
+ (1668, '2340', 'Carroll', 'NSW', 'AU', 486, ' 2340 Carroll New South Wales'),
2022
+ (1669, '2340', 'Daruka', 'NSW', 'AU', 486, ' 2340 Daruka New South Wales'),
2023
+ (1670, '2340', 'Calala', 'NSW', 'AU', 486, ' 2340 Calala New South Wales'),
2024
+ (1671, '2340', 'Bowling Alley Point', 'NSW', 'AU', 486, ' 2340 Bowling Alley Point New South Wales'),
2025
+ (1672, '2340', 'Bithramere', 'NSW', 'AU', 486, ' 2340 Bithramere New South Wales'),
2026
+ (1673, '2340', 'Bective', 'NSW', 'AU', 486, ' 2340 Bective New South Wales'),
2027
+ (1674, '2340', 'Barry', 'NSW', 'AU', 486, ' 2340 Barry New South Wales'),
2028
+ (1675, '2340', 'Duncans Creek', 'NSW', 'AU', 486, ' 2340 Duncans Creek New South Wales'),
2029
+ (1676, '2340', 'Dungowan', 'NSW', 'AU', 486, ' 2340 Dungowan New South Wales'),
2030
+ (1677, '2340', 'East Tamworth', 'NSW', 'AU', 486, ' 2340 East Tamworth New South Wales'),
2031
+ (1678, '2340', 'Garoo', 'NSW', 'AU', 486, ' 2340 Garoo New South Wales'),
2032
+ (1679, '2340', 'Gidley', 'NSW', 'AU', 486, ' 2340 Gidley New South Wales'),
2033
+ (1680, '2340', 'Goonoo Goonoo', 'NSW', 'AU', 486, ' 2340 Goonoo Goonoo New South Wales'),
2034
+ (1681, '2340', 'Gowrie', 'NSW', 'AU', 486, ' 2340 Gowrie New South Wales'),
2035
+ (1682, '2340', 'Hallsville', 'NSW', 'AU', 486, ' 2340 Hallsville New South Wales'),
2036
+ (1683, '2340', 'Hanging Rock', 'NSW', 'AU', 486, ' 2340 Hanging Rock New South Wales'),
2037
+ (1684, '2340', 'Hillvue', 'NSW', 'AU', 486, ' 2340 Hillvue New South Wales'),
2038
+ (1685, '2340', 'Keepit', 'NSW', 'AU', 486, ' 2340 Keepit New South Wales'),
2039
+ (1686, '2340', 'Appleby', 'NSW', 'AU', 486, ' 2340 Appleby New South Wales'),
2040
+ (1687, '2340', 'Loomberah', 'NSW', 'AU', 486, ' 2340 Loomberah New South Wales'),
2041
+ (1688, '2340', 'Moore Creek', 'NSW', 'AU', 486, ' 2340 Moore Creek New South Wales'),
2042
+ (1689, '2340', 'Kingswood', 'NSW', 'AU', 486, ' 2340 Kingswood New South Wales'),
2043
+ (1690, '2340', 'Oxley Vale', 'NSW', 'AU', 486, ' 2340 Oxley Vale New South Wales'),
2044
+ (1691, '2340', 'North Tamworth', 'NSW', 'AU', 486, ' 2340 North Tamworth New South Wales'),
2045
+ (1692, '2340', 'Nundle', 'NSW', 'AU', 486, ' 2340 Nundle New South Wales'),
2046
+ (1693, '2340', 'Ogunbil', 'NSW', 'AU', 486, ' 2340 Ogunbil New South Wales'),
2047
+ (1694, '2340', 'Piallamore', 'NSW', 'AU', 486, ' 2340 Piallamore New South Wales'),
2048
+ (1695, '2340', 'Nemingha', 'NSW', 'AU', 486, ' 2340 Nemingha New South Wales'),
2049
+ (1696, '2340', 'West Tamworth', 'NSW', 'AU', 486, ' 2340 West Tamworth New South Wales'),
2050
+ (1697, '2340', 'Westdale', 'NSW', 'AU', 486, ' 2340 Westdale New South Wales'),
2051
+ (1698, '2340', 'Woolomin', 'NSW', 'AU', 486, ' 2340 Woolomin New South Wales'),
2052
+ (1699, '2340', 'Warral', 'NSW', 'AU', 486, ' 2340 Warral New South Wales'),
2053
+ (1700, '2340', 'Wallamore', 'NSW', 'AU', 486, ' 2340 Wallamore New South Wales'),
2054
+ (1701, '2340', 'Weabonga', 'NSW', 'AU', 486, ' 2340 Weabonga New South Wales'),
2055
+ (1702, '2340', 'Timbumburi', 'NSW', 'AU', 486, ' 2340 Timbumburi New South Wales'),
2056
+ (1703, '2340', 'Somerton', 'NSW', 'AU', 486, ' 2340 Somerton New South Wales'),
2057
+ (1704, '2340', 'South Tamworth', 'NSW', 'AU', 486, ' 2340 South Tamworth New South Wales'),
2058
+ (1705, '2340', 'Taminda', 'NSW', 'AU', 486, ' 2340 Taminda New South Wales'),
2059
+ (1706, '2340', 'Tamworth', 'NSW', 'AU', 486, ' 2340 Tamworth New South Wales'),
2060
+ (1707, '2341', 'Werris Creek', 'NSW', 'AU', 486, ' 2341 Werris Creek New South Wales'),
2061
+ (1708, '2342', 'Piallaway', 'NSW', 'AU', 486, ' 2342 Piallaway New South Wales'),
2062
+ (1709, '2342', 'Currabubula', 'NSW', 'AU', 486, ' 2342 Currabubula New South Wales'),
2063
+ (1710, '2343', 'Colly Blue', 'NSW', 'AU', 486, ' 2343 Colly Blue New South Wales'),
2064
+ (1711, '2343', 'Coomoo Coomoo', 'NSW', 'AU', 486, ' 2343 Coomoo Coomoo New South Wales'),
2065
+ (1712, '2343', 'Bundella', 'NSW', 'AU', 486, ' 2343 Bundella New South Wales'),
2066
+ (1713, '2343', 'Caroona', 'NSW', 'AU', 486, ' 2343 Caroona New South Wales'),
2067
+ (1714, '2343', 'Blackville', 'NSW', 'AU', 486, ' 2343 Blackville New South Wales'),
2068
+ (1715, '2343', 'Borambil', 'NSW', 'AU', 486, ' 2343 Borambil New South Wales'),
2069
+ (1716, '2343', 'Pine Ridge', 'NSW', 'AU', 486, ' 2343 Pine Ridge New South Wales'),
2070
+ (1717, '2343', 'Quipolly', 'NSW', 'AU', 486, ' 2343 Quipolly New South Wales'),
2071
+ (1718, '2343', 'Quirindi', 'NSW', 'AU', 486, ' 2343 Quirindi New South Wales'),
2072
+ (1719, '2343', 'Warrah Ridge', 'NSW', 'AU', 486, ' 2343 Warrah Ridge New South Wales'),
2073
+ (1720, '2343', 'Wallabadah', 'NSW', 'AU', 486, ' 2343 Wallabadah New South Wales'),
2074
+ (1721, '2343', 'Yannergee', 'NSW', 'AU', 486, ' 2343 Yannergee New South Wales'),
2075
+ (1722, '2343', 'Yarraman', 'NSW', 'AU', 486, ' 2343 Yarraman New South Wales'),
2076
+ (1723, '2343', 'Windy', 'NSW', 'AU', 486, ' 2343 Windy New South Wales'),
2077
+ (1724, '2343', 'Spring Ridge', 'NSW', 'AU', 486, ' 2343 Spring Ridge New South Wales'),
2078
+ (1725, '2344', 'Winton', 'NSW', 'AU', 486, ' 2344 Winton New South Wales'),
2079
+ (1726, '2344', 'Duri', 'NSW', 'AU', 486, ' 2344 Duri New South Wales'),
2080
+ (1727, '2345', 'Garthowen', 'NSW', 'AU', 486, ' 2345 Garthowen New South Wales'),
2081
+ (1728, '2345', 'Attunga', 'NSW', 'AU', 486, ' 2345 Attunga New South Wales'),
2082
+ (1729, '2346', 'Halls Creek', 'NSW', 'AU', 486, ' 2346 Halls Creek New South Wales'),
2083
+ (1730, '2346', 'Borah Creek', 'NSW', 'AU', 486, ' 2346 Borah Creek New South Wales'),
2084
+ (1731, '2346', 'Wongo Creek', 'NSW', 'AU', 486, ' 2346 Wongo Creek New South Wales'),
2085
+ (1732, '2346', 'Wimborne', 'NSW', 'AU', 486, ' 2346 Wimborne New South Wales'),
2086
+ (1733, '2346', 'Upper Manilla', 'NSW', 'AU', 486, ' 2346 Upper Manilla New South Wales'),
2087
+ (1734, '2346', 'Warrabah', 'NSW', 'AU', 486, ' 2346 Warrabah New South Wales'),
2088
+ (1735, '2346', 'Rushes Creek', 'NSW', 'AU', 486, ' 2346 Rushes Creek New South Wales'),
2089
+ (1736, '2346', 'New Mexico', 'NSW', 'AU', 486, ' 2346 New Mexico New South Wales'),
2090
+ (1737, '2346', 'Namoi River', 'NSW', 'AU', 486, ' 2346 Namoi River New South Wales'),
2091
+ (1738, '2346', 'Klori', 'NSW', 'AU', 486, ' 2346 Klori New South Wales'),
2092
+ (1739, '2346', 'Manilla', 'NSW', 'AU', 486, ' 2346 Manilla New South Wales'),
2093
+ (1740, '2347', 'Longarm', 'NSW', 'AU', 486, ' 2347 Longarm New South Wales'),
2094
+ (1741, '2347', 'Mayvale', 'NSW', 'AU', 486, ' 2347 Mayvale New South Wales'),
2095
+ (1742, '2347', 'Lindesay', 'NSW', 'AU', 486, ' 2347 Lindesay New South Wales'),
2096
+ (1743, '2347', 'Red Hill', 'NSW', 'AU', 486, ' 2347 Red Hill New South Wales'),
2097
+ (1744, '2347', 'Upper Horton', 'NSW', 'AU', 486, ' 2347 Upper Horton New South Wales'),
2098
+ (1745, '2347', 'Woodsreef', 'NSW', 'AU', 486, ' 2347 Woodsreef New South Wales'),
2099
+ (1746, '2347', 'Thirldene', 'NSW', 'AU', 486, ' 2347 Thirldene New South Wales'),
2100
+ (1747, '2347', 'Thirloene', 'NSW', 'AU', 486, ' 2347 Thirloene New South Wales'),
2101
+ (1748, '2347', 'Barraba', 'NSW', 'AU', 486, ' 2347 Barraba New South Wales'),
2102
+ (1749, '2347', 'Banoon', 'NSW', 'AU', 486, ' 2347 Banoon New South Wales'),
2103
+ (1750, '2347', 'Cobbadah', 'NSW', 'AU', 486, ' 2347 Cobbadah New South Wales'),
2104
+ (1751, '2347', 'Gundamulda', 'NSW', 'AU', 486, ' 2347 Gundamulda New South Wales'),
2105
+ (1752, '2347', 'Ironbark', 'NSW', 'AU', 486, ' 2347 Ironbark New South Wales'),
2106
+ (1753, '2347', 'Gulf Creek', 'NSW', 'AU', 486, ' 2347 Gulf Creek New South Wales'),
2107
+ (1754, '2348', 'New England', 'NSW', 'AU', 486, ' 2348 New England New South Wales'),
2108
+ (1755, '2350', 'Puddledock', 'NSW', 'AU', 486, ' 2350 Puddledock New South Wales'),
2109
+ (1756, '2350', 'Saumarez', 'NSW', 'AU', 486, ' 2350 Saumarez New South Wales'),
2110
+ (1757, '2350', 'Saumarez Ponds', 'NSW', 'AU', 486, ' 2350 Saumarez Ponds New South Wales'),
2111
+ (1758, '2350', 'Lyndhurst', 'NSW', 'AU', 486, ' 2350 Lyndhurst New South Wales'),
2112
+ (1759, '2350', 'Tilbuster', 'NSW', 'AU', 486, ' 2350 Tilbuster New South Wales'),
2113
+ (1760, '2350', 'Thalgarrah', 'NSW', 'AU', 486, ' 2350 Thalgarrah New South Wales'),
2114
+ (1761, '2350', 'Wongwibinda', 'NSW', 'AU', 486, ' 2350 Wongwibinda New South Wales'),
2115
+ (1762, '2350', 'Wollomombi', 'NSW', 'AU', 486, ' 2350 Wollomombi New South Wales'),
2116
+ (1763, '2350', 'Wards Mistake', 'NSW', 'AU', 486, ' 2350 Wards Mistake New South Wales'),
2117
+ (1764, '2350', 'West Armidale', 'NSW', 'AU', 486, ' 2350 West Armidale New South Wales'),
2118
+ (1765, '2350', 'Invergowrie', 'NSW', 'AU', 486, ' 2350 Invergowrie New South Wales'),
2119
+ (1766, '2350', 'Jeogla', 'NSW', 'AU', 486, ' 2350 Jeogla New South Wales'),
2120
+ (1767, '2350', 'Kellys Plains', 'NSW', 'AU', 486, ' 2350 Kellys Plains New South Wales'),
2121
+ (1768, '2350', 'Hillgrove', 'NSW', 'AU', 486, ' 2350 Hillgrove New South Wales'),
2122
+ (1769, '2350', 'Duval', 'NSW', 'AU', 486, ' 2350 Duval New South Wales'),
2123
+ (1770, '2350', 'Dumaresq', 'NSW', 'AU', 486, ' 2350 Dumaresq New South Wales'),
2124
+ (1771, '2350', 'Enmore', 'NSW', 'AU', 486, ' 2350 Enmore New South Wales'),
2125
+ (1772, '2350', 'Dangarsleigh', 'NSW', 'AU', 486, ' 2350 Dangarsleigh New South Wales'),
2126
+ (1773, '2350', 'Donald Creek', 'NSW', 'AU', 486, ' 2350 Donald Creek New South Wales'),
2127
+ (1774, '2350', 'Castle Doyle', 'NSW', 'AU', 486, ' 2350 Castle Doyle New South Wales'),
2128
+ (1775, '2350', 'Boorolong', 'NSW', 'AU', 486, ' 2350 Boorolong New South Wales'),
2129
+ (1776, '2350', 'Argyle', 'NSW', 'AU', 486, ' 2350 Argyle New South Wales'),
2130
+ (1777, '2350', 'Armidale', 'NSW', 'AU', 486, ' 2350 Armidale New South Wales'),
2131
+ (1778, '2350', 'Aberfoyle', 'NSW', 'AU', 486, ' 2350 Aberfoyle New South Wales'),
2132
+ (1779, '2350', 'Abington', 'NSW', 'AU', 486, ' 2350 Abington New South Wales'),
2133
+ (1780, '2352', 'Tintinhull', 'NSW', 'AU', 486, ' 2352 Tintinhull New South Wales'),
2134
+ (1781, '2352', 'Mulla Creek', 'NSW', 'AU', 486, ' 2352 Mulla Creek New South Wales'),
2135
+ (1782, '2352', 'Limbri', 'NSW', 'AU', 486, ' 2352 Limbri New South Wales'),
2136
+ (1783, '2352', 'Kootingal', 'NSW', 'AU', 486, ' 2352 Kootingal New South Wales'),
2137
+ (1784, '2353', 'Moonbi', 'NSW', 'AU', 486, ' 2353 Moonbi New South Wales'),
2138
+ (1785, '2354', 'Kentucky', 'NSW', 'AU', 486, ' 2354 Kentucky New South Wales'),
2139
+ (1786, '2354', 'Kentucky South', 'NSW', 'AU', 486, ' 2354 Kentucky South New South Wales'),
2140
+ (1787, '2354', 'Nowendoc', 'NSW', 'AU', 486, ' 2354 Nowendoc New South Wales'),
2141
+ (1788, '2354', 'Niangala', 'NSW', 'AU', 486, ' 2354 Niangala New South Wales'),
2142
+ (1789, '2354', 'Walcha', 'NSW', 'AU', 486, ' 2354 Walcha New South Wales'),
2143
+ (1790, '2354', 'Walcha Road', 'NSW', 'AU', 486, ' 2354 Walcha Road New South Wales'),
2144
+ (1791, '2354', 'Wollun', 'NSW', 'AU', 486, ' 2354 Wollun New South Wales'),
2145
+ (1792, '2354', 'Woolbrook', 'NSW', 'AU', 486, ' 2354 Woolbrook New South Wales'),
2146
+ (1793, '2354', 'Yarrowitch', 'NSW', 'AU', 486, ' 2354 Yarrowitch New South Wales'),
2147
+ (1794, '2355', 'Watsons Creek', 'NSW', 'AU', 486, ' 2355 Watsons Creek New South Wales'),
2148
+ (1795, '2355', 'Retreat', 'NSW', 'AU', 486, ' 2355 Retreat New South Wales'),
2149
+ (1796, '2355', 'Bendemeer', 'NSW', 'AU', 486, ' 2355 Bendemeer New South Wales'),
2150
+ (1797, '2356', 'Gwabegar', 'NSW', 'AU', 486, ' 2356 Gwabegar New South Wales'),
2151
+ (1798, '2357', 'Gowang', 'NSW', 'AU', 486, ' 2357 Gowang New South Wales'),
2152
+ (1799, '2357', 'Box Ridge', 'NSW', 'AU', 486, ' 2357 Box Ridge New South Wales'),
2153
+ (1800, '2357', 'Bomera', 'NSW', 'AU', 486, ' 2357 Bomera New South Wales'),
2154
+ (1801, '2357', 'Dandry', 'NSW', 'AU', 486, ' 2357 Dandry New South Wales'),
2155
+ (1802, '2357', 'Coonabarabran', 'NSW', 'AU', 486, ' 2357 Coonabarabran New South Wales'),
2156
+ (1803, '2357', 'Bugaldie', 'NSW', 'AU', 486, ' 2357 Bugaldie New South Wales'),
2157
+ (1804, '2357', 'Purlewaugh', 'NSW', 'AU', 486, ' 2357 Purlewaugh New South Wales'),
2158
+ (1805, '2357', 'Rocky Glen', 'NSW', 'AU', 486, ' 2357 Rocky Glen New South Wales'),
2159
+ (1806, '2357', 'Wattle Springs', 'NSW', 'AU', 486, ' 2357 Wattle Springs New South Wales'),
2160
+ (1807, '2357', 'Ulamambri', 'NSW', 'AU', 486, ' 2357 Ulamambri New South Wales'),
2161
+ (1808, '2357', 'Tannabar', 'NSW', 'AU', 486, ' 2357 Tannabar New South Wales'),
2162
+ (1809, '2358', 'Torryburn', 'NSW', 'AU', 486, ' 2358 Torryburn New South Wales'),
2163
+ (1810, '2358', 'Uralla', 'NSW', 'AU', 486, ' 2358 Uralla New South Wales'),
2164
+ (1811, '2358', 'Yarrowyck', 'NSW', 'AU', 486, ' 2358 Yarrowyck New South Wales'),
2165
+ (1812, '2358', 'Rocky River', 'NSW', 'AU', 486, ' 2358 Rocky River New South Wales'),
2166
+ (1813, '2358', 'Salisbury Plains', 'NSW', 'AU', 486, ' 2358 Salisbury Plains New South Wales'),
2167
+ (1814, '2358', 'Kingstown', 'NSW', 'AU', 486, ' 2358 Kingstown New South Wales'),
2168
+ (1815, '2358', 'Mihi', 'NSW', 'AU', 486, ' 2358 Mihi New South Wales'),
2169
+ (1816, '2358', 'Balala', 'NSW', 'AU', 486, ' 2358 Balala New South Wales'),
2170
+ (1817, '2358', 'Gostwyck', 'NSW', 'AU', 486, ' 2358 Gostwyck New South Wales'),
2171
+ (1818, '2358', 'Arding', 'NSW', 'AU', 486, ' 2358 Arding New South Wales'),
2172
+ (1819, '2359', 'Aberdeen', 'NSW', 'AU', 486, ' 2359 Aberdeen New South Wales'),
2173
+ (1820, '2359', 'Bakers Creek', 'NSW', 'AU', 486, ' 2359 Bakers Creek New South Wales'),
2174
+ (1821, '2359', 'Bundarra', 'NSW', 'AU', 486, ' 2359 Bundarra New South Wales'),
2175
+ (1822, '2359', 'Camerons Creek', 'NSW', 'AU', 486, ' 2359 Camerons Creek New South Wales'),
2176
+ (1823, '2360', 'Bukkulla', 'NSW', 'AU', 486, ' 2360 Bukkulla New South Wales'),
2177
+ (1824, '2360', 'Copeton', 'NSW', 'AU', 486, ' 2360 Copeton New South Wales'),
2178
+ (1825, '2360', 'Cherry Tree Hill', 'NSW', 'AU', 486, ' 2360 Cherry Tree Hill New South Wales'),
2179
+ (1826, '2360', 'Brodies Plains', 'NSW', 'AU', 486, ' 2360 Brodies Plains New South Wales'),
2180
+ (1827, '2360', 'Graman', 'NSW', 'AU', 486, ' 2360 Graman New South Wales'),
2181
+ (1828, '2360', 'Gilgai', 'NSW', 'AU', 486, ' 2360 Gilgai New South Wales');
2182
+ INSERT INTO {$this->getTable('candf_pcs')} (`entity_id`, `postcode`, `city`, `state`, `country_id`, `region_id`, `fulltext`) VALUES
2183
+ (1829, '2360', 'Gum Flat', 'NSW', 'AU', 486, ' 2360 Gum Flat New South Wales'),
2184
+ (1830, '2360', 'Howell', 'NSW', 'AU', 486, ' 2360 Howell New South Wales'),
2185
+ (1831, '2360', 'Inverell', 'NSW', 'AU', 486, ' 2360 Inverell New South Wales'),
2186
+ (1832, '2360', 'Elsmore', 'NSW', 'AU', 486, ' 2360 Elsmore New South Wales'),
2187
+ (1833, '2360', 'Auburn Vale', 'NSW', 'AU', 486, ' 2360 Auburn Vale New South Wales'),
2188
+ (1834, '2360', 'Long Plain', 'NSW', 'AU', 486, ' 2360 Long Plain New South Wales'),
2189
+ (1835, '2360', 'Mount Russell', 'NSW', 'AU', 486, ' 2360 Mount Russell New South Wales'),
2190
+ (1836, '2360', 'Kings Plains', 'NSW', 'AU', 486, ' 2360 Kings Plains New South Wales'),
2191
+ (1837, '2360', 'Little Plain', 'NSW', 'AU', 486, ' 2360 Little Plain New South Wales'),
2192
+ (1838, '2360', 'Sapphire', 'NSW', 'AU', 486, ' 2360 Sapphire New South Wales'),
2193
+ (1839, '2360', 'Rob Roy', 'NSW', 'AU', 486, ' 2360 Rob Roy New South Wales'),
2194
+ (1840, '2360', 'Nullamanna', 'NSW', 'AU', 486, ' 2360 Nullamanna New South Wales'),
2195
+ (1841, '2360', 'Oakwood', 'NSW', 'AU', 486, ' 2360 Oakwood New South Wales'),
2196
+ (1842, '2360', 'Paradise', 'NSW', 'AU', 486, ' 2360 Paradise New South Wales'),
2197
+ (1843, '2360', 'Newstead', 'NSW', 'AU', 486, ' 2360 Newstead New South Wales'),
2198
+ (1844, '2360', 'Woodstock', 'NSW', 'AU', 486, ' 2360 Woodstock New South Wales'),
2199
+ (1845, '2360', 'Wallangra', 'NSW', 'AU', 486, ' 2360 Wallangra New South Wales'),
2200
+ (1846, '2360', 'Wandera', 'NSW', 'AU', 486, ' 2360 Wandera New South Wales'),
2201
+ (1847, '2360', 'Swanbrook', 'NSW', 'AU', 486, ' 2360 Swanbrook New South Wales'),
2202
+ (1848, '2360', 'Stanborough', 'NSW', 'AU', 486, ' 2360 Stanborough New South Wales'),
2203
+ (1849, '2360', 'Spring Mountain', 'NSW', 'AU', 486, ' 2360 Spring Mountain New South Wales'),
2204
+ (1850, '2361', 'Pindaroi', 'NSW', 'AU', 486, ' 2361 Pindaroi New South Wales'),
2205
+ (1851, '2361', 'Limestone', 'NSW', 'AU', 486, ' 2361 Limestone New South Wales'),
2206
+ (1852, '2361', 'Ashford', 'NSW', 'AU', 486, ' 2361 Ashford New South Wales'),
2207
+ (1853, '2361', 'Atholwood', 'NSW', 'AU', 486, ' 2361 Atholwood New South Wales'),
2208
+ (1854, '2361', 'Bonshaw', 'NSW', 'AU', 486, ' 2361 Bonshaw New South Wales'),
2209
+ (1855, '2365', 'Black Mountain', 'NSW', 'AU', 486, ' 2365 Black Mountain New South Wales'),
2210
+ (1856, '2365', 'Brockley', 'NSW', 'AU', 486, ' 2365 Brockley New South Wales'),
2211
+ (1857, '2365', 'Briarbrook', 'NSW', 'AU', 486, ' 2365 Briarbrook New South Wales'),
2212
+ (1858, '2365', 'Bald Blair', 'NSW', 'AU', 486, ' 2365 Bald Blair New South Wales'),
2213
+ (1859, '2365', 'Ben Lomond', 'NSW', 'AU', 486, ' 2365 Ben Lomond New South Wales'),
2214
+ (1860, '2365', 'Bassendean', 'NSW', 'AU', 486, ' 2365 Bassendean New South Wales'),
2215
+ (1861, '2365', 'Baldersleigh', 'NSW', 'AU', 486, ' 2365 Baldersleigh New South Wales'),
2216
+ (1862, '2365', 'Brushy Creek', 'NSW', 'AU', 486, ' 2365 Brushy Creek New South Wales'),
2217
+ (1863, '2365', 'Guyra', 'NSW', 'AU', 486, ' 2365 Guyra New South Wales'),
2218
+ (1864, '2365', 'Georges Creek', 'NSW', 'AU', 486, ' 2365 Georges Creek New South Wales'),
2219
+ (1865, '2365', 'Falconer', 'NSW', 'AU', 486, ' 2365 Falconer New South Wales'),
2220
+ (1866, '2365', 'Green Hills', 'NSW', 'AU', 486, ' 2365 Green Hills New South Wales'),
2221
+ (1867, '2365', 'Glen Nevis', 'NSW', 'AU', 486, ' 2365 Glen Nevis New South Wales'),
2222
+ (1868, '2365', 'Glencoe', 'NSW', 'AU', 486, ' 2365 Glencoe New South Wales'),
2223
+ (1869, '2365', 'Backwater', 'NSW', 'AU', 486, ' 2365 Backwater New South Wales'),
2224
+ (1870, '2365', 'Llangothlin', 'NSW', 'AU', 486, ' 2365 Llangothlin New South Wales'),
2225
+ (1871, '2365', 'Mount Mitchell', 'NSW', 'AU', 486, ' 2365 Mount Mitchell New South Wales'),
2226
+ (1872, '2365', 'Maybole', 'NSW', 'AU', 486, ' 2365 Maybole New South Wales'),
2227
+ (1873, '2365', 'Oban', 'NSW', 'AU', 486, ' 2365 Oban New South Wales'),
2228
+ (1874, '2365', 'New Valley', 'NSW', 'AU', 486, ' 2365 New Valley New South Wales'),
2229
+ (1875, '2365', 'South Guyra', 'NSW', 'AU', 486, ' 2365 South Guyra New South Wales'),
2230
+ (1876, '2365', 'The Basin', 'NSW', 'AU', 486, ' 2365 The Basin New South Wales'),
2231
+ (1877, '2365', 'Tenterden', 'NSW', 'AU', 486, ' 2365 Tenterden New South Wales'),
2232
+ (1878, '2365', 'Tubbamurra', 'NSW', 'AU', 486, ' 2365 Tubbamurra New South Wales'),
2233
+ (1879, '2365', 'The Gulf', 'NSW', 'AU', 486, ' 2365 The Gulf New South Wales'),
2234
+ (1880, '2365', 'Wandsworth', 'NSW', 'AU', 486, ' 2365 Wandsworth New South Wales'),
2235
+ (1881, '2369', 'Tingha', 'NSW', 'AU', 486, ' 2369 Tingha New South Wales'),
2236
+ (1882, '2369', 'Stannifer', 'NSW', 'AU', 486, ' 2369 Stannifer New South Wales'),
2237
+ (1883, '2369', 'Old Mill', 'NSW', 'AU', 486, ' 2369 Old Mill New South Wales'),
2238
+ (1884, '2370', 'Pinkett', 'NSW', 'AU', 486, ' 2370 Pinkett New South Wales'),
2239
+ (1885, '2370', 'Red Range', 'NSW', 'AU', 486, ' 2370 Red Range New South Wales'),
2240
+ (1886, '2370', 'Rangers Valley', 'NSW', 'AU', 486, ' 2370 Rangers Valley New South Wales'),
2241
+ (1887, '2370', 'Reddestone', 'NSW', 'AU', 486, ' 2370 Reddestone New South Wales'),
2242
+ (1888, '2370', 'Newton Boyd', 'NSW', 'AU', 486, ' 2370 Newton Boyd New South Wales'),
2243
+ (1889, '2370', 'Shannon Vale', 'NSW', 'AU', 486, ' 2370 Shannon Vale New South Wales'),
2244
+ (1890, '2370', 'Moggs Swamp', 'NSW', 'AU', 486, ' 2370 Moggs Swamp New South Wales'),
2245
+ (1891, '2370', 'Moogem', 'NSW', 'AU', 486, ' 2370 Moogem New South Wales'),
2246
+ (1892, '2370', 'Matheson', 'NSW', 'AU', 486, ' 2370 Matheson New South Wales'),
2247
+ (1893, '2370', 'Morven', 'NSW', 'AU', 486, ' 2370 Morven New South Wales'),
2248
+ (1894, '2370', 'Lambs Valley', 'NSW', 'AU', 486, ' 2370 Lambs Valley New South Wales'),
2249
+ (1895, '2370', 'Kingsgate', 'NSW', 'AU', 486, ' 2370 Kingsgate New South Wales'),
2250
+ (1896, '2370', 'Kookabookra', 'NSW', 'AU', 486, ' 2370 Kookabookra New South Wales'),
2251
+ (1897, '2370', 'Swan Vale', 'NSW', 'AU', 486, ' 2370 Swan Vale New South Wales'),
2252
+ (1898, '2370', 'Stonehenge', 'NSW', 'AU', 486, ' 2370 Stonehenge New South Wales'),
2253
+ (1899, '2370', 'Wellingrove', 'NSW', 'AU', 486, ' 2370 Wellingrove New South Wales'),
2254
+ (1900, '2370', 'Yarrowford', 'NSW', 'AU', 486, ' 2370 Yarrowford New South Wales'),
2255
+ (1901, '2370', 'Glen Elgin', 'NSW', 'AU', 486, ' 2370 Glen Elgin New South Wales'),
2256
+ (1902, '2370', 'Glen Innes', 'NSW', 'AU', 486, ' 2370 Glen Innes New South Wales'),
2257
+ (1903, '2370', 'Furracabad', 'NSW', 'AU', 486, ' 2370 Furracabad New South Wales'),
2258
+ (1904, '2370', 'Gibraltar Range', 'NSW', 'AU', 486, ' 2370 Gibraltar Range New South Wales'),
2259
+ (1905, '2370', 'Dundee', 'NSW', 'AU', 486, ' 2370 Dundee New South Wales'),
2260
+ (1906, '2370', 'Diehard', 'NSW', 'AU', 486, ' 2370 Diehard New South Wales'),
2261
+ (1907, '2370', 'Bald Nob', 'NSW', 'AU', 486, ' 2370 Bald Nob New South Wales'),
2262
+ (1908, '2371', 'Deepwater', 'NSW', 'AU', 486, ' 2371 Deepwater New South Wales'),
2263
+ (1909, '2371', 'Capoompeta', 'NSW', 'AU', 486, ' 2371 Capoompeta New South Wales'),
2264
+ (1910, '2371', 'Emmaville', 'NSW', 'AU', 486, ' 2371 Emmaville New South Wales'),
2265
+ (1911, '2371', 'Yellow Dam', 'NSW', 'AU', 486, ' 2371 Yellow Dam New South Wales'),
2266
+ (1912, '2371', 'Wellington Vale', 'NSW', 'AU', 486, ' 2371 Wellington Vale New South Wales'),
2267
+ (1913, '2371', 'Stannum', 'NSW', 'AU', 486, ' 2371 Stannum New South Wales'),
2268
+ (1914, '2371', 'The Gulf', 'NSW', 'AU', 486, ' 2371 The Gulf New South Wales'),
2269
+ (1915, '2371', 'Torrington', 'NSW', 'AU', 486, ' 2371 Torrington New South Wales'),
2270
+ (1916, '2371', 'Rocky Creek', 'NSW', 'AU', 486, ' 2371 Rocky Creek New South Wales'),
2271
+ (1917, '2372', 'Rivertree', 'NSW', 'AU', 486, ' 2372 Rivertree New South Wales'),
2272
+ (1918, '2372', 'Rocky River', 'NSW', 'AU', 486, ' 2372 Rocky River New South Wales'),
2273
+ (1919, '2372', 'Sandy Flat', 'NSW', 'AU', 486, ' 2372 Sandy Flat New South Wales'),
2274
+ (1920, '2372', 'Sandy Hill', 'NSW', 'AU', 486, ' 2372 Sandy Hill New South Wales'),
2275
+ (1921, '2372', 'Liston', 'NSW', 'AU', 486, ' 2372 Liston New South Wales'),
2276
+ (1922, '2372', 'Mole River', 'NSW', 'AU', 486, ' 2372 Mole River New South Wales'),
2277
+ (1923, '2372', 'Timbarra', 'NSW', 'AU', 486, ' 2372 Timbarra New South Wales'),
2278
+ (1924, '2372', 'Silent Grove', 'NSW', 'AU', 486, ' 2372 Silent Grove New South Wales'),
2279
+ (1925, '2372', 'Tenterfield', 'NSW', 'AU', 486, ' 2372 Tenterfield New South Wales'),
2280
+ (1926, '2372', 'Tarban', 'NSW', 'AU', 486, ' 2372 Tarban New South Wales'),
2281
+ (1927, '2372', 'Wylie Creek', 'NSW', 'AU', 486, ' 2372 Wylie Creek New South Wales'),
2282
+ (1928, '2372', 'Woodside', 'NSW', 'AU', 486, ' 2372 Woodside New South Wales'),
2283
+ (1929, '2372', 'Willsons Downfall', 'NSW', 'AU', 486, ' 2372 Willsons Downfall New South Wales'),
2284
+ (1930, '2372', 'Dumaresq Valley', 'NSW', 'AU', 486, ' 2372 Dumaresq Valley New South Wales'),
2285
+ (1931, '2372', 'Forest Land', 'NSW', 'AU', 486, ' 2372 Forest Land New South Wales'),
2286
+ (1932, '2372', 'Cullendore', 'NSW', 'AU', 486, ' 2372 Cullendore New South Wales'),
2287
+ (1933, '2372', 'Carrolls Creek', 'NSW', 'AU', 486, ' 2372 Carrolls Creek New South Wales'),
2288
+ (1934, '2372', 'Boorook', 'NSW', 'AU', 486, ' 2372 Boorook New South Wales'),
2289
+ (1935, '2372', 'Boonoo Boonoo', 'NSW', 'AU', 486, ' 2372 Boonoo Boonoo New South Wales'),
2290
+ (1936, '2372', 'Bookookoorara', 'NSW', 'AU', 486, ' 2372 Bookookoorara New South Wales'),
2291
+ (1937, '2372', 'Bolivia', 'NSW', 'AU', 486, ' 2372 Bolivia New South Wales'),
2292
+ (1938, '2372', 'Back Creek', 'NSW', 'AU', 486, ' 2372 Back Creek New South Wales'),
2293
+ (1939, '2379', 'Goolhi', 'NSW', 'AU', 486, ' 2379 Goolhi New South Wales'),
2294
+ (1940, '2379', 'Mullaley', 'NSW', 'AU', 486, ' 2379 Mullaley New South Wales'),
2295
+ (1941, '2379', 'Nombi', 'NSW', 'AU', 486, ' 2379 Nombi New South Wales'),
2296
+ (1942, '2379', 'Napier Lane', 'NSW', 'AU', 486, ' 2379 Napier Lane New South Wales'),
2297
+ (1943, '2380', 'Rangari', 'NSW', 'AU', 486, ' 2380 Rangari New South Wales'),
2298
+ (1944, '2380', 'Orange Grove', 'NSW', 'AU', 486, ' 2380 Orange Grove New South Wales'),
2299
+ (1945, '2380', 'Milroy', 'NSW', 'AU', 486, ' 2380 Milroy New South Wales'),
2300
+ (1946, '2380', 'Marys Mount', 'NSW', 'AU', 486, ' 2380 Marys Mount New South Wales'),
2301
+ (1947, '2380', 'Ghoolendaadi', 'NSW', 'AU', 486, ' 2380 Ghoolendaadi New South Wales'),
2302
+ (1948, '2380', 'Gunnedah', 'NSW', 'AU', 486, ' 2380 Gunnedah New South Wales'),
2303
+ (1949, '2380', 'Kelvin', 'NSW', 'AU', 486, ' 2380 Kelvin New South Wales'),
2304
+ (1950, '2380', 'Emerald Hill', 'NSW', 'AU', 486, ' 2380 Emerald Hill New South Wales'),
2305
+ (1951, '2380', 'Blue Vale', 'NSW', 'AU', 486, ' 2380 Blue Vale New South Wales'),
2306
+ (1952, '2381', 'Breeza', 'NSW', 'AU', 486, ' 2381 Breeza New South Wales'),
2307
+ (1953, '2381', 'Curlewis', 'NSW', 'AU', 486, ' 2381 Curlewis New South Wales'),
2308
+ (1954, '2381', 'Premer', 'NSW', 'AU', 486, ' 2381 Premer New South Wales'),
2309
+ (1955, '2381', 'Tambar Springs', 'NSW', 'AU', 486, ' 2381 Tambar Springs New South Wales'),
2310
+ (1956, '2382', 'Willala', 'NSW', 'AU', 486, ' 2382 Willala New South Wales'),
2311
+ (1957, '2382', 'Wean', 'NSW', 'AU', 486, ' 2382 Wean New South Wales'),
2312
+ (1958, '2382', 'Maules Creek', 'NSW', 'AU', 486, ' 2382 Maules Creek New South Wales'),
2313
+ (1959, '2382', 'Boggabri', 'NSW', 'AU', 486, ' 2382 Boggabri New South Wales'),
2314
+ (1960, '2386', 'Burren Junction', 'NSW', 'AU', 486, ' 2386 Burren Junction New South Wales'),
2315
+ (1961, '2386', 'Drildool', 'NSW', 'AU', 486, ' 2386 Drildool New South Wales'),
2316
+ (1962, '2386', 'Nowley', 'NSW', 'AU', 486, ' 2386 Nowley New South Wales'),
2317
+ (1963, '2387', 'Rowena', 'NSW', 'AU', 486, ' 2387 Rowena New South Wales'),
2318
+ (1964, '2387', 'Bulyeroi', 'NSW', 'AU', 486, ' 2387 Bulyeroi New South Wales'),
2319
+ (1965, '2388', 'Cuttabri', 'NSW', 'AU', 486, ' 2388 Cuttabri New South Wales'),
2320
+ (1966, '2388', 'Boolcarroll', 'NSW', 'AU', 486, ' 2388 Boolcarroll New South Wales'),
2321
+ (1967, '2388', 'Jews Lagoon', 'NSW', 'AU', 486, ' 2388 Jews Lagoon New South Wales'),
2322
+ (1968, '2388', 'Pilliga', 'NSW', 'AU', 486, ' 2388 Pilliga New South Wales'),
2323
+ (1969, '2388', 'Merah North', 'NSW', 'AU', 486, ' 2388 Merah North New South Wales'),
2324
+ (1970, '2388', 'Wee Waa', 'NSW', 'AU', 486, ' 2388 Wee Waa New South Wales'),
2325
+ (1971, '2388', 'Yarrie Lake', 'NSW', 'AU', 486, ' 2388 Yarrie Lake New South Wales'),
2326
+ (1972, '2388', 'Spring Plains', 'NSW', 'AU', 486, ' 2388 Spring Plains New South Wales'),
2327
+ (1973, '2388', 'The Pilliga', 'NSW', 'AU', 486, ' 2388 The Pilliga New South Wales'),
2328
+ (1974, '2390', 'Turrawan', 'NSW', 'AU', 486, ' 2390 Turrawan New South Wales'),
2329
+ (1975, '2390', 'Tarriaro', 'NSW', 'AU', 486, ' 2390 Tarriaro New South Wales'),
2330
+ (1976, '2390', 'Rocky Creek', 'NSW', 'AU', 486, ' 2390 Rocky Creek New South Wales'),
2331
+ (1977, '2390', 'Narrabri', 'NSW', 'AU', 486, ' 2390 Narrabri New South Wales'),
2332
+ (1978, '2390', 'Narrabri West', 'NSW', 'AU', 486, ' 2390 Narrabri West New South Wales'),
2333
+ (1979, '2390', 'Jacks Creek', 'NSW', 'AU', 486, ' 2390 Jacks Creek New South Wales'),
2334
+ (1980, '2390', 'Kaputar', 'NSW', 'AU', 486, ' 2390 Kaputar New South Wales'),
2335
+ (1981, '2390', 'Harparary', 'NSW', 'AU', 486, ' 2390 Harparary New South Wales'),
2336
+ (1982, '2390', 'Edgeroi', 'NSW', 'AU', 486, ' 2390 Edgeroi New South Wales'),
2337
+ (1983, '2390', 'Eulah Creek', 'NSW', 'AU', 486, ' 2390 Eulah Creek New South Wales'),
2338
+ (1984, '2390', 'Bohena Creek', 'NSW', 'AU', 486, ' 2390 Bohena Creek New South Wales'),
2339
+ (1985, '2390', 'Berrigal', 'NSW', 'AU', 486, ' 2390 Berrigal New South Wales'),
2340
+ (1986, '2390', 'Couradda', 'NSW', 'AU', 486, ' 2390 Couradda New South Wales'),
2341
+ (1987, '2390', 'Bullawa Creek', 'NSW', 'AU', 486, ' 2390 Bullawa Creek New South Wales'),
2342
+ (1988, '2390', 'Back Creek', 'NSW', 'AU', 486, ' 2390 Back Creek New South Wales'),
2343
+ (1989, '2390', 'Baan Baa', 'NSW', 'AU', 486, ' 2390 Baan Baa New South Wales'),
2344
+ (1990, '2395', 'Binnaway', 'NSW', 'AU', 486, ' 2395 Binnaway New South Wales'),
2345
+ (1991, '2395', 'Ropers Road', 'NSW', 'AU', 486, ' 2395 Ropers Road New South Wales'),
2346
+ (1992, '2395', 'Weetaliba', 'NSW', 'AU', 486, ' 2395 Weetaliba New South Wales'),
2347
+ (1993, '2396', 'Baradine', 'NSW', 'AU', 486, ' 2396 Baradine New South Wales'),
2348
+ (1994, '2396', 'Barwon', 'NSW', 'AU', 486, ' 2396 Barwon New South Wales'),
2349
+ (1995, '2396', 'Kenebri', 'NSW', 'AU', 486, ' 2396 Kenebri New South Wales'),
2350
+ (1996, '2396', 'Goorianawa', 'NSW', 'AU', 486, ' 2396 Goorianawa New South Wales'),
2351
+ (1997, '2397', 'Bellata', 'NSW', 'AU', 486, ' 2397 Bellata New South Wales'),
2352
+ (1998, '2397', 'Millie', 'NSW', 'AU', 486, ' 2397 Millie New South Wales'),
2353
+ (1999, '2398', 'Gurley', 'NSW', 'AU', 486, ' 2398 Gurley New South Wales'),
2354
+ (2000, '2399', 'Biniguy', 'NSW', 'AU', 486, ' 2399 Biniguy New South Wales'),
2355
+ (2001, '2399', 'Pallamallawa', 'NSW', 'AU', 486, ' 2399 Pallamallawa New South Wales'),
2356
+ (2002, '2400', 'Mallowa', 'NSW', 'AU', 486, ' 2400 Mallowa New South Wales'),
2357
+ (2003, '2400', 'Moree', 'NSW', 'AU', 486, ' 2400 Moree New South Wales'),
2358
+ (2004, '2400', 'Moree East', 'NSW', 'AU', 486, ' 2400 Moree East New South Wales'),
2359
+ (2005, '2400', 'Terry Hie Hie', 'NSW', 'AU', 486, ' 2400 Terry Hie Hie New South Wales'),
2360
+ (2006, '2400', 'Tulloona', 'NSW', 'AU', 486, ' 2400 Tulloona New South Wales'),
2361
+ (2007, '2400', 'Bullarah', 'NSW', 'AU', 486, ' 2400 Bullarah New South Wales'),
2362
+ (2008, '2400', 'Crooble', 'NSW', 'AU', 486, ' 2400 Crooble New South Wales'),
2363
+ (2009, '2400', 'Ashley', 'NSW', 'AU', 486, ' 2400 Ashley New South Wales'),
2364
+ (2010, '2401', 'Gravesend', 'NSW', 'AU', 486, ' 2401 Gravesend New South Wales'),
2365
+ (2011, '2402', 'Coolatai', 'NSW', 'AU', 486, ' 2402 Coolatai New South Wales'),
2366
+ (2012, '2402', 'Balfours Peak', 'NSW', 'AU', 486, ' 2402 Balfours Peak New South Wales'),
2367
+ (2013, '2402', 'Warialda', 'NSW', 'AU', 486, ' 2402 Warialda New South Wales'),
2368
+ (2014, '2402', 'Warialda Rail', 'NSW', 'AU', 486, ' 2402 Warialda Rail New South Wales'),
2369
+ (2015, '2403', 'Myall Creek', 'NSW', 'AU', 486, ' 2403 Myall Creek New South Wales'),
2370
+ (2016, '2403', 'Delungra', 'NSW', 'AU', 486, ' 2403 Delungra New South Wales'),
2371
+ (2017, '2403', 'Gragin', 'NSW', 'AU', 486, ' 2403 Gragin New South Wales'),
2372
+ (2018, '2404', 'Gineroi', 'NSW', 'AU', 486, ' 2404 Gineroi New South Wales'),
2373
+ (2019, '2404', 'Keera', 'NSW', 'AU', 486, ' 2404 Keera New South Wales'),
2374
+ (2020, '2404', 'Elcombe', 'NSW', 'AU', 486, ' 2404 Elcombe New South Wales'),
2375
+ (2021, '2404', 'Dinoga', 'NSW', 'AU', 486, ' 2404 Dinoga New South Wales'),
2376
+ (2022, '2404', 'Bangheet', 'NSW', 'AU', 486, ' 2404 Bangheet New South Wales'),
2377
+ (2023, '2404', 'Bingara', 'NSW', 'AU', 486, ' 2404 Bingara New South Wales'),
2378
+ (2024, '2404', 'Pallal', 'NSW', 'AU', 486, ' 2404 Pallal New South Wales'),
2379
+ (2025, '2404', 'Riverview', 'NSW', 'AU', 486, ' 2404 Riverview New South Wales'),
2380
+ (2026, '2404', 'Upper Bingara', 'NSW', 'AU', 486, ' 2404 Upper Bingara New South Wales'),
2381
+ (2027, '2405', 'Boomi', 'NSW', 'AU', 486, ' 2405 Boomi New South Wales'),
2382
+ (2028, '2405', 'Garah', 'NSW', 'AU', 486, ' 2405 Garah New South Wales'),
2383
+ (2029, '2406', 'Weemelah', 'NSW', 'AU', 486, ' 2406 Weemelah New South Wales'),
2384
+ (2030, '2406', 'Mungindi', 'NSW', 'AU', 486, ' 2406 Mungindi New South Wales'),
2385
+ (2031, '2408', 'North Star', 'NSW', 'AU', 486, ' 2408 North Star New South Wales'),
2386
+ (2032, '2408', 'Yallaroi', 'NSW', 'AU', 486, ' 2408 Yallaroi New South Wales'),
2387
+ (2033, '2408', 'Blue Nobby', 'NSW', 'AU', 486, ' 2408 Blue Nobby New South Wales'),
2388
+ (2034, '2409', 'Boggabilla', 'NSW', 'AU', 486, ' 2409 Boggabilla New South Wales'),
2389
+ (2035, '2409', 'Boonal', 'NSW', 'AU', 486, ' 2409 Boonal New South Wales'),
2390
+ (2036, '2410', 'Yetman', 'NSW', 'AU', 486, ' 2410 Yetman New South Wales'),
2391
+ (2037, '2410', 'Twin Rivers', 'NSW', 'AU', 486, ' 2410 Twin Rivers New South Wales'),
2392
+ (2038, '2411', 'Croppa Creek', 'NSW', 'AU', 486, ' 2411 Croppa Creek New South Wales'),
2393
+ (2039, '2415', 'Monkerai', 'NSW', 'AU', 486, ' 2415 Monkerai New South Wales'),
2394
+ (2040, '2415', 'Nooroo', 'NSW', 'AU', 486, ' 2415 Nooroo New South Wales'),
2395
+ (2041, '2415', 'Upper Karuah River', 'NSW', 'AU', 486, ' 2415 Upper Karuah River New South Wales'),
2396
+ (2042, '2415', 'Weismantels', 'NSW', 'AU', 486, ' 2415 Weismantels New South Wales'),
2397
+ (2043, '2415', 'Stroud Road', 'NSW', 'AU', 486, ' 2415 Stroud Road New South Wales'),
2398
+ (2044, '2420', 'Sugarloaf', 'NSW', 'AU', 486, ' 2420 Sugarloaf New South Wales'),
2399
+ (2045, '2420', 'Tabbil Creek', 'NSW', 'AU', 486, ' 2420 Tabbil Creek New South Wales'),
2400
+ (2046, '2420', 'Stroud Hill', 'NSW', 'AU', 486, ' 2420 Stroud Hill New South Wales'),
2401
+ (2047, '2420', 'Salisbury', 'NSW', 'AU', 486, ' 2420 Salisbury New South Wales'),
2402
+ (2048, '2420', 'Wirragulla', 'NSW', 'AU', 486, ' 2420 Wirragulla New South Wales'),
2403
+ (2049, '2420', 'Wallaringa', 'NSW', 'AU', 486, ' 2420 Wallaringa New South Wales'),
2404
+ (2050, '2420', 'Wallarobba', 'NSW', 'AU', 486, ' 2420 Wallarobba New South Wales'),
2405
+ (2051, '2420', 'Underbank', 'NSW', 'AU', 486, ' 2420 Underbank New South Wales'),
2406
+ (2052, '2420', 'Munni', 'NSW', 'AU', 486, ' 2420 Munni New South Wales'),
2407
+ (2053, '2420', 'Hanleys Creek', 'NSW', 'AU', 486, ' 2420 Hanleys Creek New South Wales'),
2408
+ (2054, '2420', 'Hilldale', 'NSW', 'AU', 486, ' 2420 Hilldale New South Wales'),
2409
+ (2055, '2420', 'Martins Creek', 'NSW', 'AU', 486, ' 2420 Martins Creek New South Wales'),
2410
+ (2056, '2420', 'Marshdale', 'NSW', 'AU', 486, ' 2420 Marshdale New South Wales'),
2411
+ (2057, '2420', 'Main Creek', 'NSW', 'AU', 486, ' 2420 Main Creek New South Wales'),
2412
+ (2058, '2420', 'Dungog', 'NSW', 'AU', 486, ' 2420 Dungog New South Wales'),
2413
+ (2059, '2420', 'Chichester', 'NSW', 'AU', 486, ' 2420 Chichester New South Wales'),
2414
+ (2060, '2420', 'Fosterton', 'NSW', 'AU', 486, ' 2420 Fosterton New South Wales'),
2415
+ (2061, '2420', 'Flat Tops', 'NSW', 'AU', 486, ' 2420 Flat Tops New South Wales'),
2416
+ (2062, '2420', 'Brookfield', 'NSW', 'AU', 486, ' 2420 Brookfield New South Wales'),
2417
+ (2063, '2420', 'Cambra', 'NSW', 'AU', 486, ' 2420 Cambra New South Wales'),
2418
+ (2064, '2420', 'Bendolba', 'NSW', 'AU', 486, ' 2420 Bendolba New South Wales'),
2419
+ (2065, '2420', 'Alison', 'NSW', 'AU', 486, ' 2420 Alison New South Wales'),
2420
+ (2066, '2420', 'Bandon Grove', 'NSW', 'AU', 486, ' 2420 Bandon Grove New South Wales'),
2421
+ (2067, '2421', 'Fishers Hill', 'NSW', 'AU', 486, ' 2421 Fishers Hill New South Wales'),
2422
+ (2068, '2421', 'Paterson', 'NSW', 'AU', 486, ' 2421 Paterson New South Wales'),
2423
+ (2069, '2421', 'Torryburn', 'NSW', 'AU', 486, ' 2421 Torryburn New South Wales'),
2424
+ (2070, '2421', 'Vacy', 'NSW', 'AU', 486, ' 2421 Vacy New South Wales'),
2425
+ (2071, '2421', 'Tocal', 'NSW', 'AU', 486, ' 2421 Tocal New South Wales'),
2426
+ (2072, '2421', 'Webbers Creek', 'NSW', 'AU', 486, ' 2421 Webbers Creek New South Wales'),
2427
+ (2073, '2421', 'Summer Hill', 'NSW', 'AU', 486, ' 2421 Summer Hill New South Wales'),
2428
+ (2074, '2422', 'Stratford', 'NSW', 'AU', 486, ' 2422 Stratford New South Wales'),
2429
+ (2075, '2422', 'Rookhurst', 'NSW', 'AU', 486, ' 2422 Rookhurst New South Wales'),
2430
+ (2076, '2422', 'Waukivory', 'NSW', 'AU', 486, ' 2422 Waukivory New South Wales'),
2431
+ (2077, '2422', 'Wallanbah', 'NSW', 'AU', 486, ' 2422 Wallanbah New South Wales'),
2432
+ (2078, '2422', 'Wards River', 'NSW', 'AU', 486, ' 2422 Wards River New South Wales'),
2433
+ (2079, '2422', 'Tugrabakh', 'NSW', 'AU', 486, ' 2422 Tugrabakh New South Wales'),
2434
+ (2080, '2422', 'Titaatee Creek', 'NSW', 'AU', 486, ' 2422 Titaatee Creek New South Wales'),
2435
+ (2081, '2422', 'Terreel', 'NSW', 'AU', 486, ' 2422 Terreel New South Wales'),
2436
+ (2082, '2422', 'Tibbuc', 'NSW', 'AU', 486, ' 2422 Tibbuc New South Wales'),
2437
+ (2083, '2422', 'Woko', 'NSW', 'AU', 486, ' 2422 Woko New South Wales'),
2438
+ (2084, '2422', 'Moppy', 'NSW', 'AU', 486, ' 2422 Moppy New South Wales'),
2439
+ (2085, '2422', 'Rawdon Vale', 'NSW', 'AU', 486, ' 2422 Rawdon Vale New South Wales'),
2440
+ (2086, '2422', 'Mares Run', 'NSW', 'AU', 486, ' 2422 Mares Run New South Wales'),
2441
+ (2087, '2422', 'Mernot', 'NSW', 'AU', 486, ' 2422 Mernot New South Wales'),
2442
+ (2088, '2422', 'Mograni', 'NSW', 'AU', 486, ' 2422 Mograni New South Wales'),
2443
+ (2089, '2422', 'Invergordon', 'NSW', 'AU', 486, ' 2422 Invergordon New South Wales'),
2444
+ (2090, '2422', 'Kia Ora', 'NSW', 'AU', 486, ' 2422 Kia Ora New South Wales'),
2445
+ (2091, '2422', 'Forbesdale', 'NSW', 'AU', 486, ' 2422 Forbesdale New South Wales'),
2446
+ (2092, '2422', 'Faulkland', 'NSW', 'AU', 486, ' 2422 Faulkland New South Wales'),
2447
+ (2093, '2422', 'Gangat', 'NSW', 'AU', 486, ' 2422 Gangat New South Wales'),
2448
+ (2094, '2422', 'Giro', 'NSW', 'AU', 486, ' 2422 Giro New South Wales'),
2449
+ (2095, '2422', 'Glen Ward', 'NSW', 'AU', 486, ' 2422 Glen Ward New South Wales'),
2450
+ (2096, '2422', 'Gloucester', 'NSW', 'AU', 486, ' 2422 Gloucester New South Wales'),
2451
+ (2097, '2422', 'Gloucester Tops', 'NSW', 'AU', 486, ' 2422 Gloucester Tops New South Wales'),
2452
+ (2098, '2422', 'Cobark', 'NSW', 'AU', 486, ' 2422 Cobark New South Wales'),
2453
+ (2099, '2422', 'Craven', 'NSW', 'AU', 486, ' 2422 Craven New South Wales'),
2454
+ (2100, '2422', 'Craven Plateau', 'NSW', 'AU', 486, ' 2422 Craven Plateau New South Wales'),
2455
+ (2101, '2422', 'Coneac', 'NSW', 'AU', 486, ' 2422 Coneac New South Wales'),
2456
+ (2102, '2422', 'Curricabark', 'NSW', 'AU', 486, ' 2422 Curricabark New South Wales'),
2457
+ (2103, '2422', 'Copeland', 'NSW', 'AU', 486, ' 2422 Copeland New South Wales'),
2458
+ (2104, '2422', 'Dewitt', 'NSW', 'AU', 486, ' 2422 Dewitt New South Wales'),
2459
+ (2105, '2422', 'Berrico', 'NSW', 'AU', 486, ' 2422 Berrico New South Wales'),
2460
+ (2106, '2422', 'Bindera', 'NSW', 'AU', 486, ' 2422 Bindera New South Wales'),
2461
+ (2107, '2422', 'Barrington', 'NSW', 'AU', 486, ' 2422 Barrington New South Wales'),
2462
+ (2108, '2422', 'Barrington Tops', 'NSW', 'AU', 486, ' 2422 Barrington Tops New South Wales'),
2463
+ (2109, '2422', 'Baxters Ridge', 'NSW', 'AU', 486, ' 2422 Baxters Ridge New South Wales'),
2464
+ (2110, '2422', 'Belbora', 'NSW', 'AU', 486, ' 2422 Belbora New South Wales'),
2465
+ (2111, '2422', 'Callaghans Creek', 'NSW', 'AU', 486, ' 2422 Callaghans Creek New South Wales'),
2466
+ (2112, '2422', 'Bulliac', 'NSW', 'AU', 486, ' 2422 Bulliac New South Wales'),
2467
+ (2113, '2422', 'Bundook', 'NSW', 'AU', 486, ' 2422 Bundook New South Wales'),
2468
+ (2114, '2422', 'Bretti', 'NSW', 'AU', 486, ' 2422 Bretti New South Wales'),
2469
+ (2115, '2422', 'Bowman', 'NSW', 'AU', 486, ' 2422 Bowman New South Wales'),
2470
+ (2116, '2422', 'Bowman Farm', 'NSW', 'AU', 486, ' 2422 Bowman Farm New South Wales'),
2471
+ (2117, '2422', 'Bakers Creek', 'NSW', 'AU', 486, ' 2422 Bakers Creek New South Wales'),
2472
+ (2118, '2422', 'Back Creek', 'NSW', 'AU', 486, ' 2422 Back Creek New South Wales'),
2473
+ (2119, '2423', 'Bombah Point', 'NSW', 'AU', 486, ' 2423 Bombah Point New South Wales'),
2474
+ (2120, '2423', 'Boolambayte', 'NSW', 'AU', 486, ' 2423 Boolambayte New South Wales'),
2475
+ (2121, '2423', 'Bungwahl', 'NSW', 'AU', 486, ' 2423 Bungwahl New South Wales'),
2476
+ (2122, '2423', 'Bulahdelah', 'NSW', 'AU', 486, ' 2423 Bulahdelah New South Wales'),
2477
+ (2123, '2423', 'Crawford River', 'NSW', 'AU', 486, ' 2423 Crawford River New South Wales'),
2478
+ (2124, '2423', 'Coolongolook', 'NSW', 'AU', 486, ' 2423 Coolongolook New South Wales'),
2479
+ (2125, '2423', 'Mayers Flat', 'NSW', 'AU', 486, ' 2423 Mayers Flat New South Wales'),
2480
+ (2126, '2423', 'Markwell', 'NSW', 'AU', 486, ' 2423 Markwell New South Wales'),
2481
+ (2127, '2423', 'Mungo Brush', 'NSW', 'AU', 486, ' 2423 Mungo Brush New South Wales'),
2482
+ (2128, '2423', 'Myall Lake', 'NSW', 'AU', 486, ' 2423 Myall Lake New South Wales'),
2483
+ (2129, '2423', 'Nerong', 'NSW', 'AU', 486, ' 2423 Nerong New South Wales'),
2484
+ (2130, '2423', 'Wootton', 'NSW', 'AU', 486, ' 2423 Wootton New South Wales'),
2485
+ (2131, '2423', 'Yagon', 'NSW', 'AU', 486, ' 2423 Yagon New South Wales'),
2486
+ (2132, '2423', 'Topi Topi', 'NSW', 'AU', 486, ' 2423 Topi Topi New South Wales'),
2487
+ (2133, '2423', 'Wang Wauk', 'NSW', 'AU', 486, ' 2423 Wang Wauk New South Wales'),
2488
+ (2134, '2423', 'Warranulla', 'NSW', 'AU', 486, ' 2423 Warranulla New South Wales'),
2489
+ (2135, '2423', 'Upper Myall', 'NSW', 'AU', 486, ' 2423 Upper Myall New South Wales'),
2490
+ (2136, '2423', 'Violet Hill', 'NSW', 'AU', 486, ' 2423 Violet Hill New South Wales'),
2491
+ (2137, '2423', 'Willina', 'NSW', 'AU', 486, ' 2423 Willina New South Wales'),
2492
+ (2138, '2423', 'Seal Rocks', 'NSW', 'AU', 486, ' 2423 Seal Rocks New South Wales'),
2493
+ (2139, '2424', 'Tiri', 'NSW', 'AU', 486, ' 2424 Tiri New South Wales'),
2494
+ (2140, '2424', 'Mount George', 'NSW', 'AU', 486, ' 2424 Mount George New South Wales'),
2495
+ (2141, '2424', 'Number One', 'NSW', 'AU', 486, ' 2424 Number One New South Wales'),
2496
+ (2142, '2424', 'Knorrit Flat', 'NSW', 'AU', 486, ' 2424 Knorrit Flat New South Wales'),
2497
+ (2143, '2424', 'Knorrit Forest', 'NSW', 'AU', 486, ' 2424 Knorrit Forest New South Wales'),
2498
+ (2144, '2424', 'Cells River', 'NSW', 'AU', 486, ' 2424 Cells River New South Wales'),
2499
+ (2145, '2424', 'Cooplacurripa', 'NSW', 'AU', 486, ' 2424 Cooplacurripa New South Wales'),
2500
+ (2146, '2424', 'Cundle Flat', 'NSW', 'AU', 486, ' 2424 Cundle Flat New South Wales'),
2501
+ (2147, '2424', 'Caffreys Flat', 'NSW', 'AU', 486, ' 2424 Caffreys Flat New South Wales'),
2502
+ (2148, '2425', 'Booral', 'NSW', 'AU', 486, ' 2425 Booral New South Wales'),
2503
+ (2149, '2425', 'Girvan', 'NSW', 'AU', 486, ' 2425 Girvan New South Wales'),
2504
+ (2150, '2425', 'The Branch', 'NSW', 'AU', 486, ' 2425 The Branch New South Wales'),
2505
+ (2151, '2425', 'Washpool', 'NSW', 'AU', 486, ' 2425 Washpool New South Wales'),
2506
+ (2152, '2425', 'Stroud', 'NSW', 'AU', 486, ' 2425 Stroud New South Wales'),
2507
+ (2153, '2425', 'Allworth', 'NSW', 'AU', 486, ' 2425 Allworth New South Wales'),
2508
+ (2154, '2426', 'Coopernook', 'NSW', 'AU', 486, ' 2426 Coopernook New South Wales'),
2509
+ (2155, '2426', 'Langley Vale', 'NSW', 'AU', 486, ' 2426 Langley Vale New South Wales'),
2510
+ (2156, '2426', 'Moto', 'NSW', 'AU', 486, ' 2426 Moto New South Wales'),
2511
+ (2157, '2427', 'Harrington', 'NSW', 'AU', 486, ' 2427 Harrington New South Wales'),
2512
+ (2158, '2427', 'Crowdy Head', 'NSW', 'AU', 486, ' 2427 Crowdy Head New South Wales'),
2513
+ (2159, '2428', 'Darawank', 'NSW', 'AU', 486, ' 2428 Darawank New South Wales'),
2514
+ (2160, '2428', 'Coomba Bay', 'NSW', 'AU', 486, ' 2428 Coomba Bay New South Wales'),
2515
+ (2161, '2428', 'Coomba Park', 'NSW', 'AU', 486, ' 2428 Coomba Park New South Wales'),
2516
+ (2162, '2428', 'Charlotte Bay', 'NSW', 'AU', 486, ' 2428 Charlotte Bay New South Wales'),
2517
+ (2163, '2428', 'Green Point', 'NSW', 'AU', 486, ' 2428 Green Point New South Wales'),
2518
+ (2164, '2428', 'Elizabeth Beach', 'NSW', 'AU', 486, ' 2428 Elizabeth Beach New South Wales'),
2519
+ (2165, '2428', 'Forster', 'NSW', 'AU', 486, ' 2428 Forster New South Wales'),
2520
+ (2166, '2428', 'Forster Shopping Village', 'NSW', 'AU', 486, ' 2428 Forster Shopping Village New South Wales'),
2521
+ (2167, '2428', 'Boomerang Beach', 'NSW', 'AU', 486, ' 2428 Boomerang Beach New South Wales'),
2522
+ (2168, '2428', 'Booti Booti', 'NSW', 'AU', 486, ' 2428 Booti Booti New South Wales'),
2523
+ (2169, '2428', 'Blueys Beach', 'NSW', 'AU', 486, ' 2428 Blueys Beach New South Wales'),
2524
+ (2170, '2428', 'Pacific Palms', 'NSW', 'AU', 486, ' 2428 Pacific Palms New South Wales'),
2525
+ (2171, '2428', 'Shallow Bay', 'NSW', 'AU', 486, ' 2428 Shallow Bay New South Wales'),
2526
+ (2172, '2428', 'Smiths Lake', 'NSW', 'AU', 486, ' 2428 Smiths Lake New South Wales'),
2527
+ (2173, '2428', 'Sandbar', 'NSW', 'AU', 486, ' 2428 Sandbar New South Wales'),
2528
+ (2174, '2428', 'Wallingat', 'NSW', 'AU', 486, ' 2428 Wallingat New South Wales'),
2529
+ (2175, '2428', 'Wallis Lake', 'NSW', 'AU', 486, ' 2428 Wallis Lake New South Wales'),
2530
+ (2176, '2428', 'Tarbuck Bay', 'NSW', 'AU', 486, ' 2428 Tarbuck Bay New South Wales'),
2531
+ (2177, '2428', 'Tiona', 'NSW', 'AU', 486, ' 2428 Tiona New South Wales'),
2532
+ (2178, '2428', 'Tuncurry', 'NSW', 'AU', 486, ' 2428 Tuncurry New South Wales'),
2533
+ (2179, '2428', 'Whoota', 'NSW', 'AU', 486, ' 2428 Whoota New South Wales'),
2534
+ (2180, '2429', 'Wherrol Flat', 'NSW', 'AU', 486, ' 2429 Wherrol Flat New South Wales'),
2535
+ (2181, '2429', 'Wingham', 'NSW', 'AU', 486, ' 2429 Wingham New South Wales'),
2536
+ (2182, '2429', 'Tipperary', 'NSW', 'AU', 486, ' 2429 Tipperary New South Wales'),
2537
+ (2183, '2429', 'The Bight', 'NSW', 'AU', 486, ' 2429 The Bight New South Wales'),
2538
+ (2184, '2429', 'Warriwillah', 'NSW', 'AU', 486, ' 2429 Warriwillah New South Wales'),
2539
+ (2185, '2429', 'Strathcedar', 'NSW', 'AU', 486, ' 2429 Strathcedar New South Wales'),
2540
+ (2186, '2429', 'Yarratt Forest', 'NSW', 'AU', 486, ' 2429 Yarratt Forest New South Wales'),
2541
+ (2187, '2429', 'Innes View', 'NSW', 'AU', 486, ' 2429 Innes View New South Wales'),
2542
+ (2188, '2429', 'Krambach', 'NSW', 'AU', 486, ' 2429 Krambach New South Wales'),
2543
+ (2189, '2429', 'Kundibakh', 'NSW', 'AU', 486, ' 2429 Kundibakh New South Wales'),
2544
+ (2190, '2429', 'Killabakh', 'NSW', 'AU', 486, ' 2429 Killabakh New South Wales'),
2545
+ (2191, '2429', 'Killawarra', 'NSW', 'AU', 486, ' 2429 Killawarra New South Wales'),
2546
+ (2192, '2429', 'Kimbriki', 'NSW', 'AU', 486, ' 2429 Kimbriki New South Wales'),
2547
+ (2193, '2429', 'Kippaxs', 'NSW', 'AU', 486, ' 2429 Kippaxs New South Wales'),
2548
+ (2194, '2429', 'Karaak Flat', 'NSW', 'AU', 486, ' 2429 Karaak Flat New South Wales'),
2549
+ (2195, '2429', 'Khatambuhl', 'NSW', 'AU', 486, ' 2429 Khatambuhl New South Wales'),
2550
+ (2196, '2429', 'Marlee', 'NSW', 'AU', 486, ' 2429 Marlee New South Wales'),
2551
+ (2197, '2429', 'Mooral Creek', 'NSW', 'AU', 486, ' 2429 Mooral Creek New South Wales'),
2552
+ (2198, '2429', 'Bobin', 'NSW', 'AU', 486, ' 2429 Bobin New South Wales'),
2553
+ (2199, '2429', 'Boorganna', 'NSW', 'AU', 486, ' 2429 Boorganna New South Wales'),
2554
+ (2200, '2429', 'Caparra', 'NSW', 'AU', 486, ' 2429 Caparra New South Wales'),
2555
+ (2201, '2429', 'Bulga Forest', 'NSW', 'AU', 486, ' 2429 Bulga Forest New South Wales'),
2556
+ (2202, '2429', 'Bucca Wauka', 'NSW', 'AU', 486, ' 2429 Bucca Wauka New South Wales'),
2557
+ (2203, '2429', 'Bunyah', 'NSW', 'AU', 486, ' 2429 Bunyah New South Wales'),
2558
+ (2204, '2429', 'Burrell Creek', 'NSW', 'AU', 486, ' 2429 Burrell Creek New South Wales'),
2559
+ (2205, '2429', 'Firefly', 'NSW', 'AU', 486, ' 2429 Firefly New South Wales'),
2560
+ (2206, '2429', 'Elands', 'NSW', 'AU', 486, ' 2429 Elands New South Wales'),
2561
+ (2207, '2429', 'Cedar Party', 'NSW', 'AU', 486, ' 2429 Cedar Party New South Wales'),
2562
+ (2208, '2429', 'Comboyne', 'NSW', 'AU', 486, ' 2429 Comboyne New South Wales'),
2563
+ (2209, '2429', 'Dingo Forest', 'NSW', 'AU', 486, ' 2429 Dingo Forest New South Wales'),
2564
+ (2210, '2429', 'Dollys Flat', 'NSW', 'AU', 486, ' 2429 Dollys Flat New South Wales'),
2565
+ (2211, '2429', 'Dyers Crossing', 'NSW', 'AU', 486, ' 2429 Dyers Crossing New South Wales'),
2566
+ (2212, '2430', 'Dumaresq Island', 'NSW', 'AU', 486, ' 2430 Dumaresq Island New South Wales'),
2567
+ (2213, '2430', 'Diamond Beach', 'NSW', 'AU', 486, ' 2430 Diamond Beach New South Wales'),
2568
+ (2214, '2430', 'Cundletown', 'NSW', 'AU', 486, ' 2430 Cundletown New South Wales'),
2569
+ (2215, '2430', 'Croki', 'NSW', 'AU', 486, ' 2430 Croki New South Wales'),
2570
+ (2216, '2430', 'Chatham', 'NSW', 'AU', 486, ' 2430 Chatham New South Wales'),
2571
+ (2217, '2430', 'Failford', 'NSW', 'AU', 486, ' 2430 Failford New South Wales'),
2572
+ (2218, '2430', 'Glenthorne', 'NSW', 'AU', 486, ' 2430 Glenthorne New South Wales'),
2573
+ (2219, '2430', 'Ghinni Ghinni', 'NSW', 'AU', 486, ' 2430 Ghinni Ghinni New South Wales'),
2574
+ (2220, '2430', 'Cabbage Tree Island', 'NSW', 'AU', 486, ' 2430 Cabbage Tree Island New South Wales'),
2575
+ (2221, '2430', 'Bootawa', 'NSW', 'AU', 486, ' 2430 Bootawa New South Wales'),
2576
+ (2222, '2430', 'Brimbin', 'NSW', 'AU', 486, ' 2430 Brimbin New South Wales'),
2577
+ (2223, '2430', 'Bohnock', 'NSW', 'AU', 486, ' 2430 Bohnock New South Wales'),
2578
+ (2224, '2430', 'Black Head', 'NSW', 'AU', 486, ' 2430 Black Head New South Wales'),
2579
+ (2225, '2430', 'Mondrook', 'NSW', 'AU', 486, ' 2430 Mondrook New South Wales'),
2580
+ (2226, '2430', 'Mitchells Island', 'NSW', 'AU', 486, ' 2430 Mitchells Island New South Wales'),
2581
+ (2227, '2430', 'Melinga', 'NSW', 'AU', 486, ' 2430 Melinga New South Wales'),
2582
+ (2228, '2430', 'Manning Point', 'NSW', 'AU', 486, ' 2430 Manning Point New South Wales'),
2583
+ (2229, '2430', 'Kiwarrak', 'NSW', 'AU', 486, ' 2430 Kiwarrak New South Wales'),
2584
+ (2230, '2430', 'Kundle Kundle', 'NSW', 'AU', 486, ' 2430 Kundle Kundle New South Wales'),
2585
+ (2231, '2430', 'Koorainghat', 'NSW', 'AU', 486, ' 2430 Koorainghat New South Wales'),
2586
+ (2232, '2430', 'Lansdowne', 'NSW', 'AU', 486, ' 2430 Lansdowne New South Wales'),
2587
+ (2233, '2430', 'Lansdowne Forest', 'NSW', 'AU', 486, ' 2430 Lansdowne Forest New South Wales'),
2588
+ (2234, '2430', 'Jones Island', 'NSW', 'AU', 486, ' 2430 Jones Island New South Wales'),
2589
+ (2235, '2430', 'Hillville', 'NSW', 'AU', 486, ' 2430 Hillville New South Wales'),
2590
+ (2236, '2430', 'Hallidays Point', 'NSW', 'AU', 486, ' 2430 Hallidays Point New South Wales'),
2591
+ (2237, '2430', 'Oxley Island', 'NSW', 'AU', 486, ' 2430 Oxley Island New South Wales'),
2592
+ (2238, '2430', 'Old Bar', 'NSW', 'AU', 486, ' 2430 Old Bar New South Wales'),
2593
+ (2239, '2430', 'Pampoolah', 'NSW', 'AU', 486, ' 2430 Pampoolah New South Wales'),
2594
+ (2240, '2430', 'Rainbow Flat', 'NSW', 'AU', 486, ' 2430 Rainbow Flat New South Wales'),
2595
+ (2241, '2430', 'Possum Brush', 'NSW', 'AU', 486, ' 2430 Possum Brush New South Wales'),
2596
+ (2242, '2430', 'Purfleet', 'NSW', 'AU', 486, ' 2430 Purfleet New South Wales'),
2597
+ (2243, '2430', 'Tallwoods Village', 'NSW', 'AU', 486, ' 2430 Tallwoods Village New South Wales'),
2598
+ (2244, '2430', 'Saltwater', 'NSW', 'AU', 486, ' 2430 Saltwater New South Wales'),
2599
+ (2245, '2430', 'Red Head', 'NSW', 'AU', 486, ' 2430 Red Head New South Wales'),
2600
+ (2246, '2430', 'Wallabi Point', 'NSW', 'AU', 486, ' 2430 Wallabi Point New South Wales'),
2601
+ (2247, '2430', 'Upper Lansdowne', 'NSW', 'AU', 486, ' 2430 Upper Lansdowne New South Wales'),
2602
+ (2248, '2430', 'Taree', 'NSW', 'AU', 486, ' 2430 Taree New South Wales'),
2603
+ (2249, '2430', 'Taree South', 'NSW', 'AU', 486, ' 2430 Taree South New South Wales'),
2604
+ (2250, '2430', 'Tinonee', 'NSW', 'AU', 486, ' 2430 Tinonee New South Wales'),
2605
+ (2251, '2431', 'Jerseyville', 'NSW', 'AU', 486, ' 2431 Jerseyville New South Wales'),
2606
+ (2252, '2431', 'Arakoon', 'NSW', 'AU', 486, ' 2431 Arakoon New South Wales'),
2607
+ (2253, '2431', 'South West Rocks', 'NSW', 'AU', 486, ' 2431 South West Rocks New South Wales'),
2608
+ (2254, '2439', 'Swans Crossing', 'NSW', 'AU', 486, ' 2439 Swans Crossing New South Wales'),
2609
+ (2255, '2439', 'Upsalls Creek', 'NSW', 'AU', 486, ' 2439 Upsalls Creek New South Wales'),
2610
+ (2256, '2439', 'Rossglen', 'NSW', 'AU', 486, ' 2439 Rossglen New South Wales'),
2611
+ (2257, '2439', 'Logans Crossing', 'NSW', 'AU', 486, ' 2439 Logans Crossing New South Wales'),
2612
+ (2258, '2439', 'Lorne', 'NSW', 'AU', 486, ' 2439 Lorne New South Wales'),
2613
+ (2259, '2439', 'Kerewong', 'NSW', 'AU', 486, ' 2439 Kerewong New South Wales'),
2614
+ (2260, '2439', 'Kew', 'NSW', 'AU', 486, ' 2439 Kew New South Wales'),
2615
+ (2261, '2439', 'Kendall', 'NSW', 'AU', 486, ' 2439 Kendall New South Wales'),
2616
+ (2262, '2439', 'Black Creek', 'NSW', 'AU', 486, ' 2439 Black Creek New South Wales'),
2617
+ (2263, '2439', 'Batar Creek', 'NSW', 'AU', 486, ' 2439 Batar Creek New South Wales'),
2618
+ (2264, '2440', 'Bellbrook', 'NSW', 'AU', 486, ' 2440 Bellbrook New South Wales'),
2619
+ (2265, '2440', 'Bellimbopinni', 'NSW', 'AU', 486, ' 2440 Bellimbopinni New South Wales'),
2620
+ (2266, '2440', 'Belmore River', 'NSW', 'AU', 486, ' 2440 Belmore River New South Wales'),
2621
+ (2267, '2440', 'Corangula', 'NSW', 'AU', 486, ' 2440 Corangula New South Wales'),
2622
+ (2268, '2440', 'Collombatti', 'NSW', 'AU', 486, ' 2440 Collombatti New South Wales'),
2623
+ (2269, '2440', 'Comara', 'NSW', 'AU', 486, ' 2440 Comara New South Wales'),
2624
+ (2270, '2440', 'Dondingalong', 'NSW', 'AU', 486, ' 2440 Dondingalong New South Wales'),
2625
+ (2271, '2440', 'Crescent Head', 'NSW', 'AU', 486, ' 2440 Crescent Head New South Wales'),
2626
+ (2272, '2440', 'Deep Creek', 'NSW', 'AU', 486, ' 2440 Deep Creek New South Wales'),
2627
+ (2273, '2440', 'Clybucca', 'NSW', 'AU', 486, ' 2440 Clybucca New South Wales'),
2628
+ (2274, '2440', 'Burnt Bridge', 'NSW', 'AU', 486, ' 2440 Burnt Bridge New South Wales'),
2629
+ (2275, '2440', 'Carrai', 'NSW', 'AU', 486, ' 2440 Carrai New South Wales'),
2630
+ (2276, '2440', 'Kempsey', 'NSW', 'AU', 486, ' 2440 Kempsey New South Wales'),
2631
+ (2277, '2440', 'Hampden Hall', 'NSW', 'AU', 486, ' 2440 Hampden Hall New South Wales'),
2632
+ (2278, '2440', 'Hickeys Creek', 'NSW', 'AU', 486, ' 2440 Hickeys Creek New South Wales'),
2633
+ (2279, '2440', 'Hat Head', 'NSW', 'AU', 486, ' 2440 Hat Head New South Wales'),
2634
+ (2280, '2440', 'Frederickton', 'NSW', 'AU', 486, ' 2440 Frederickton New South Wales'),
2635
+ (2281, '2440', 'Greenhill', 'NSW', 'AU', 486, ' 2440 Greenhill New South Wales'),
2636
+ (2282, '2440', 'Gladstone', 'NSW', 'AU', 486, ' 2440 Gladstone New South Wales'),
2637
+ (2283, '2440', 'East Kempsey', 'NSW', 'AU', 486, ' 2440 East Kempsey New South Wales'),
2638
+ (2284, '2440', 'Euroka', 'NSW', 'AU', 486, ' 2440 Euroka New South Wales'),
2639
+ (2285, '2440', 'Aldavilla', 'NSW', 'AU', 486, ' 2440 Aldavilla New South Wales'),
2640
+ (2286, '2440', 'Austral Eden', 'NSW', 'AU', 486, ' 2440 Austral Eden New South Wales'),
2641
+ (2287, '2440', 'Kinchela', 'NSW', 'AU', 486, ' 2440 Kinchela New South Wales'),
2642
+ (2288, '2440', 'Lower Creek', 'NSW', 'AU', 486, ' 2440 Lower Creek New South Wales'),
2643
+ (2289, '2440', 'Mooneba', 'NSW', 'AU', 486, ' 2440 Mooneba New South Wales'),
2644
+ (2290, '2440', 'Millbank', 'NSW', 'AU', 486, ' 2440 Millbank New South Wales'),
2645
+ (2291, '2440', 'Moparrabah', 'NSW', 'AU', 486, ' 2440 Moparrabah New South Wales'),
2646
+ (2292, '2440', 'Old Station', 'NSW', 'AU', 486, ' 2440 Old Station New South Wales'),
2647
+ (2293, '2440', 'Pola Creek', 'NSW', 'AU', 486, ' 2440 Pola Creek New South Wales'),
2648
+ (2294, '2440', 'Rainbow Reach', 'NSW', 'AU', 486, ' 2440 Rainbow Reach New South Wales'),
2649
+ (2295, '2440', 'Mungay Creek', 'NSW', 'AU', 486, ' 2440 Mungay Creek New South Wales'),
2650
+ (2296, '2440', 'Seven Oaks', 'NSW', 'AU', 486, ' 2440 Seven Oaks New South Wales'),
2651
+ (2297, '2440', 'Verges Creek', 'NSW', 'AU', 486, ' 2440 Verges Creek New South Wales'),
2652
+ (2298, '2440', 'Yessabah', 'NSW', 'AU', 486, ' 2440 Yessabah New South Wales'),
2653
+ (2299, '2440', 'Yarravel', 'NSW', 'AU', 486, ' 2440 Yarravel New South Wales'),
2654
+ (2300, '2440', 'Willawarrin', 'NSW', 'AU', 486, ' 2440 Willawarrin New South Wales'),
2655
+ (2301, '2440', 'Willi Willi', 'NSW', 'AU', 486, ' 2440 Willi Willi New South Wales'),
2656
+ (2302, '2440', 'West Kempsey', 'NSW', 'AU', 486, ' 2440 West Kempsey New South Wales'),
2657
+ (2303, '2440', 'Wittitrin', 'NSW', 'AU', 486, ' 2440 Wittitrin New South Wales'),
2658
+ (2304, '2440', 'Smithtown', 'NSW', 'AU', 486, ' 2440 Smithtown New South Wales'),
2659
+ (2305, '2440', 'Summer Island', 'NSW', 'AU', 486, ' 2440 Summer Island New South Wales'),
2660
+ (2306, '2440', 'Temagog', 'NSW', 'AU', 486, ' 2440 Temagog New South Wales'),
2661
+ (2307, '2440', 'South Kempsey', 'NSW', 'AU', 486, ' 2440 South Kempsey New South Wales'),
2662
+ (2308, '2440', 'Sherwood', 'NSW', 'AU', 486, ' 2440 Sherwood New South Wales'),
2663
+ (2309, '2440', 'Skillion Flat', 'NSW', 'AU', 486, ' 2440 Skillion Flat New South Wales'),
2664
+ (2310, '2440', 'Turners Flat', 'NSW', 'AU', 486, ' 2440 Turners Flat New South Wales'),
2665
+ (2311, '2440', 'Toorooka', 'NSW', 'AU', 486, ' 2440 Toorooka New South Wales'),
2666
+ (2312, '2441', 'Tamban', 'NSW', 'AU', 486, ' 2441 Tamban New South Wales'),
2667
+ (2313, '2441', 'Telegraph Point', 'NSW', 'AU', 486, ' 2441 Telegraph Point New South Wales'),
2668
+ (2314, '2441', 'Stuarts Point', 'NSW', 'AU', 486, ' 2441 Stuarts Point New South Wales'),
2669
+ (2315, '2441', 'Yarrahapinni', 'NSW', 'AU', 486, ' 2441 Yarrahapinni New South Wales'),
2670
+ (2316, '2441', 'Upper Rollands Plains', 'NSW', 'AU', 486, ' 2441 Upper Rollands Plains New South Wales'),
2671
+ (2317, '2441', 'Rollands Plains', 'NSW', 'AU', 486, ' 2441 Rollands Plains New South Wales'),
2672
+ (2318, '2441', 'Kippara', 'NSW', 'AU', 486, ' 2441 Kippara New South Wales'),
2673
+ (2319, '2441', 'Kundabung', 'NSW', 'AU', 486, ' 2441 Kundabung New South Wales'),
2674
+ (2320, '2441', 'Allgomera', 'NSW', 'AU', 486, ' 2441 Allgomera New South Wales'),
2675
+ (2321, '2441', 'Eungai Creek', 'NSW', 'AU', 486, ' 2441 Eungai Creek New South Wales'),
2676
+ (2322, '2441', 'Eungai Rail', 'NSW', 'AU', 486, ' 2441 Eungai Rail New South Wales'),
2677
+ (2323, '2441', 'Fishermans Reach', 'NSW', 'AU', 486, ' 2441 Fishermans Reach New South Wales'),
2678
+ (2324, '2441', 'Hacks Ferry', 'NSW', 'AU', 486, ' 2441 Hacks Ferry New South Wales'),
2679
+ (2325, '2441', 'Grassy Head', 'NSW', 'AU', 486, ' 2441 Grassy Head New South Wales'),
2680
+ (2326, '2441', 'Gum Scrub', 'NSW', 'AU', 486, ' 2441 Gum Scrub New South Wales'),
2681
+ (2327, '2441', 'Cooperabung', 'NSW', 'AU', 486, ' 2441 Cooperabung New South Wales'),
2682
+ (2328, '2441', 'Ballengarra', 'NSW', 'AU', 486, ' 2441 Ballengarra New South Wales'),
2683
+ (2329, '2441', 'Barraganyatti', 'NSW', 'AU', 486, ' 2441 Barraganyatti New South Wales'),
2684
+ (2330, '2441', 'Bonville', 'NSW', 'AU', 486, ' 2441 Bonville New South Wales'),
2685
+ (2331, '2441', 'Bril Bril', 'NSW', 'AU', 486, ' 2441 Bril Bril New South Wales'),
2686
+ (2332, '2441', 'Brinerville', 'NSW', 'AU', 486, ' 2441 Brinerville New South Wales'),
2687
+ (2333, '2442', 'Kempsey', 'NSW', 'AU', 486, ' 2442 Kempsey New South Wales'),
2688
+ (2334, '2442', 'Mid North Coast', 'NSW', 'AU', 486, ' 2442 Mid North Coast New South Wales'),
2689
+ (2335, '2443', 'Middle Brother', 'NSW', 'AU', 486, ' 2443 Middle Brother New South Wales'),
2690
+ (2336, '2443', 'Moorland', 'NSW', 'AU', 486, ' 2443 Moorland New South Wales'),
2691
+ (2337, '2443', 'Lakewood', 'NSW', 'AU', 486, ' 2443 Lakewood New South Wales'),
2692
+ (2338, '2443', 'Laurieton', 'NSW', 'AU', 486, ' 2443 Laurieton New South Wales'),
2693
+ (2339, '2443', 'North Brother', 'NSW', 'AU', 486, ' 2443 North Brother New South Wales'),
2694
+ (2340, '2443', 'North Haven', 'NSW', 'AU', 486, ' 2443 North Haven New South Wales'),
2695
+ (2341, '2443', 'Waitui', 'NSW', 'AU', 486, ' 2443 Waitui New South Wales'),
2696
+ (2342, '2443', 'West Haven', 'NSW', 'AU', 486, ' 2443 West Haven New South Wales'),
2697
+ (2343, '2443', 'Stewarts River', 'NSW', 'AU', 486, ' 2443 Stewarts River New South Wales'),
2698
+ (2344, '2443', 'Johns River', 'NSW', 'AU', 486, ' 2443 Johns River New South Wales'),
2699
+ (2345, '2443', 'Hannam Vale', 'NSW', 'AU', 486, ' 2443 Hannam Vale New South Wales'),
2700
+ (2346, '2443', 'Herons Creek', 'NSW', 'AU', 486, ' 2443 Herons Creek New South Wales'),
2701
+ (2347, '2443', 'Dunbogan', 'NSW', 'AU', 486, ' 2443 Dunbogan New South Wales'),
2702
+ (2348, '2443', 'Bobs Creek', 'NSW', 'AU', 486, ' 2443 Bobs Creek New South Wales'),
2703
+ (2349, '2443', 'Coralville', 'NSW', 'AU', 486, ' 2443 Coralville New South Wales'),
2704
+ (2350, '2443', 'Crowdy Bay National Park', 'NSW', 'AU', 486, ' 2443 Crowdy Bay National Park New South Wales'),
2705
+ (2351, '2443', 'Deauville', 'NSW', 'AU', 486, ' 2443 Deauville New South Wales'),
2706
+ (2352, '2443', 'Diamond Head', 'NSW', 'AU', 486, ' 2443 Diamond Head New South Wales'),
2707
+ (2353, '2443', 'Camden Head', 'NSW', 'AU', 486, ' 2443 Camden Head New South Wales'),
2708
+ (2354, '2444', 'Blackmans Point', 'NSW', 'AU', 486, ' 2444 Blackmans Point New South Wales'),
2709
+ (2355, '2444', 'Flynns Beach', 'NSW', 'AU', 486, ' 2444 Flynns Beach New South Wales'),
2710
+ (2356, '2444', 'Fernbank Creek', 'NSW', 'AU', 486, ' 2444 Fernbank Creek New South Wales'),
2711
+ (2357, '2444', 'The Hatch', 'NSW', 'AU', 486, ' 2444 The Hatch New South Wales'),
2712
+ (2358, '2444', 'Thrumster', 'NSW', 'AU', 486, ' 2444 Thrumster New South Wales'),
2713
+ (2359, '2444', 'North Shore', 'NSW', 'AU', 486, ' 2444 North Shore New South Wales'),
2714
+ (2360, '2444', 'Riverside', 'NSW', 'AU', 486, ' 2444 Riverside New South Wales'),
2715
+ (2361, '2444', 'Port Macquarie', 'NSW', 'AU', 486, ' 2444 Port Macquarie New South Wales'),
2716
+ (2362, '2444', 'Settlement City', 'NSW', 'AU', 486, ' 2444 Settlement City New South Wales'),
2717
+ (2363, '2444', 'Limeburners Creek', 'NSW', 'AU', 486, ' 2444 Limeburners Creek New South Wales'),
2718
+ (2364, '2444', 'Lighthouse Beach', 'NSW', 'AU', 486, ' 2444 Lighthouse Beach New South Wales'),
2719
+ (2365, '2445', 'Lake Cathie', 'NSW', 'AU', 486, ' 2445 Lake Cathie New South Wales'),
2720
+ (2366, '2445', 'Grants Beach', 'NSW', 'AU', 486, ' 2445 Grants Beach New South Wales'),
2721
+ (2367, '2445', 'Jolly Nose', 'NSW', 'AU', 486, ' 2445 Jolly Nose New South Wales'),
2722
+ (2368, '2445', 'Bonny Hills', 'NSW', 'AU', 486, ' 2445 Bonny Hills New South Wales'),
2723
+ (2369, '2446', 'Birdwood', 'NSW', 'AU', 486, ' 2446 Birdwood New South Wales'),
2724
+ (2370, '2446', 'Brombin', 'NSW', 'AU', 486, ' 2446 Brombin New South Wales'),
2725
+ (2371, '2446', 'Banda Banda', 'NSW', 'AU', 486, ' 2446 Banda Banda New South Wales'),
2726
+ (2372, '2446', 'Beechwood', 'NSW', 'AU', 486, ' 2446 Beechwood New South Wales'),
2727
+ (2373, '2446', 'Bellangry', 'NSW', 'AU', 486, ' 2446 Bellangry New South Wales'),
2728
+ (2374, '2446', 'Cairncross', 'NSW', 'AU', 486, ' 2446 Cairncross New South Wales'),
2729
+ (2375, '2446', 'Byabarra', 'NSW', 'AU', 486, ' 2446 Byabarra New South Wales'),
2730
+ (2376, '2446', 'Doyles River', 'NSW', 'AU', 486, ' 2446 Doyles River New South Wales'),
2731
+ (2377, '2446', 'Debenham', 'NSW', 'AU', 486, ' 2446 Debenham New South Wales'),
2732
+ (2378, '2446', 'Crosslands', 'NSW', 'AU', 486, ' 2446 Crosslands New South Wales'),
2733
+ (2379, '2446', 'Hyndmans Creek', 'NSW', 'AU', 486, ' 2446 Hyndmans Creek New South Wales'),
2734
+ (2380, '2446', 'Huntingdon', 'NSW', 'AU', 486, ' 2446 Huntingdon New South Wales'),
2735
+ (2381, '2446', 'Hollisdale', 'NSW', 'AU', 486, ' 2446 Hollisdale New South Wales'),
2736
+ (2382, '2446', 'Hartys Plains', 'NSW', 'AU', 486, ' 2446 Hartys Plains New South Wales'),
2737
+ (2383, '2446', 'Forbes River', 'NSW', 'AU', 486, ' 2446 Forbes River New South Wales'),
2738
+ (2384, '2446', 'Frazers Creek', 'NSW', 'AU', 486, ' 2446 Frazers Creek New South Wales'),
2739
+ (2385, '2446', 'Gearys Flat', 'NSW', 'AU', 486, ' 2446 Gearys Flat New South Wales'),
2740
+ (2386, '2446', 'Ellenborough', 'NSW', 'AU', 486, ' 2446 Ellenborough New South Wales'),
2741
+ (2387, '2446', 'Bagnoo', 'NSW', 'AU', 486, ' 2446 Bagnoo New South Wales'),
2742
+ (2388, '2446', 'Bago', 'NSW', 'AU', 486, ' 2446 Bago New South Wales'),
2743
+ (2389, '2446', 'Lake Innes', 'NSW', 'AU', 486, ' 2446 Lake Innes New South Wales'),
2744
+ (2390, '2446', 'Kindee', 'NSW', 'AU', 486, ' 2446 Kindee New South Wales'),
2745
+ (2391, '2446', 'King Creek', 'NSW', 'AU', 486, ' 2446 King Creek New South Wales'),
2746
+ (2392, '2446', 'Lower Pappinbarra', 'NSW', 'AU', 486, ' 2446 Lower Pappinbarra New South Wales'),
2747
+ (2393, '2446', 'Long Flat', 'NSW', 'AU', 486, ' 2446 Long Flat New South Wales'),
2748
+ (2394, '2446', 'Marlo Merrican', 'NSW', 'AU', 486, ' 2446 Marlo Merrican New South Wales'),
2749
+ (2395, '2446', 'Mortons Creek', 'NSW', 'AU', 486, ' 2446 Mortons Creek New South Wales'),
2750
+ (2396, '2446', 'Mount Seaview', 'NSW', 'AU', 486, ' 2446 Mount Seaview New South Wales'),
2751
+ (2397, '2446', 'Pipeclay', 'NSW', 'AU', 486, ' 2446 Pipeclay New South Wales'),
2752
+ (2398, '2446', 'Rawdon Island', 'NSW', 'AU', 486, ' 2446 Rawdon Island New South Wales'),
2753
+ (2399, '2446', 'Redbank', 'NSW', 'AU', 486, ' 2446 Redbank New South Wales'),
2754
+ (2400, '2446', 'Pappinbarra', 'NSW', 'AU', 486, ' 2446 Pappinbarra New South Wales'),
2755
+ (2401, '2446', 'Pembrooke', 'NSW', 'AU', 486, ' 2446 Pembrooke New South Wales'),
2756
+ (2402, '2446', 'Rosewood', 'NSW', 'AU', 486, ' 2446 Rosewood New South Wales'),
2757
+ (2403, '2446', 'Sancrox', 'NSW', 'AU', 486, ' 2446 Sancrox New South Wales'),
2758
+ (2404, '2446', 'Toms Creek', 'NSW', 'AU', 486, ' 2446 Toms Creek New South Wales'),
2759
+ (2405, '2446', 'Yarras', 'NSW', 'AU', 486, ' 2446 Yarras New South Wales'),
2760
+ (2406, '2446', 'Yippin Creek', 'NSW', 'AU', 486, ' 2446 Yippin Creek New South Wales'),
2761
+ (2407, '2446', 'Upper Pappinbarra', 'NSW', 'AU', 486, ' 2446 Upper Pappinbarra New South Wales'),
2762
+ (2408, '2446', 'Wauchope', 'NSW', 'AU', 486, ' 2446 Wauchope New South Wales'),
2763
+ (2409, '2446', 'Werrikimbe', 'NSW', 'AU', 486, ' 2446 Werrikimbe New South Wales'),
2764
+ (2410, '2447', 'Way Way', 'NSW', 'AU', 486, ' 2447 Way Way New South Wales'),
2765
+ (2411, '2447', 'Warrell Creek', 'NSW', 'AU', 486, ' 2447 Warrell Creek New South Wales'),
2766
+ (2412, '2447', 'Utungun', 'NSW', 'AU', 486, ' 2447 Utungun New South Wales'),
2767
+ (2413, '2447', 'Upper Taylors Arm', 'NSW', 'AU', 486, ' 2447 Upper Taylors Arm New South Wales'),
2768
+ (2414, '2447', 'Yarranbella', 'NSW', 'AU', 486, ' 2447 Yarranbella New South Wales'),
2769
+ (2415, '2447', 'Wirrimbi', 'NSW', 'AU', 486, ' 2447 Wirrimbi New South Wales'),
2770
+ (2416, '2447', 'Thumb Creek', 'NSW', 'AU', 486, ' 2447 Thumb Creek New South Wales'),
2771
+ (2417, '2447', 'Talarm', 'NSW', 'AU', 486, ' 2447 Talarm New South Wales'),
2772
+ (2418, '2447', 'Taylors Arm', 'NSW', 'AU', 486, ' 2447 Taylors Arm New South Wales'),
2773
+ (2419, '2447', 'North Macksville', 'NSW', 'AU', 486, ' 2447 North Macksville New South Wales'),
2774
+ (2420, '2447', 'Newee Creek', 'NSW', 'AU', 486, ' 2447 Newee Creek New South Wales'),
2775
+ (2421, '2447', 'Scotts Head', 'NSW', 'AU', 486, ' 2447 Scotts Head New South Wales'),
2776
+ (2422, '2447', 'Macksville', 'NSW', 'AU', 486, ' 2447 Macksville New South Wales'),
2777
+ (2423, '2447', 'Gumma', 'NSW', 'AU', 486, ' 2447 Gumma New South Wales'),
2778
+ (2424, '2447', 'Congarinni', 'NSW', 'AU', 486, ' 2447 Congarinni New South Wales'),
2779
+ (2425, '2447', 'Congarinni North', 'NSW', 'AU', 486, ' 2447 Congarinni North New South Wales'),
2780
+ (2426, '2447', 'Donnellyville', 'NSW', 'AU', 486, ' 2447 Donnellyville New South Wales'),
2781
+ (2427, '2447', 'Burrapine', 'NSW', 'AU', 486, ' 2447 Burrapine New South Wales'),
2782
+ (2428, '2447', 'Bakers Creek', 'NSW', 'AU', 486, ' 2447 Bakers Creek New South Wales'),
2783
+ (2429, '2448', 'Hyland Park', 'NSW', 'AU', 486, ' 2448 Hyland Park New South Wales'),
2784
+ (2430, '2448', 'Nambucca Heads', 'NSW', 'AU', 486, ' 2448 Nambucca Heads New South Wales'),
2785
+ (2431, '2448', 'Valla', 'NSW', 'AU', 486, ' 2448 Valla New South Wales'),
2786
+ (2432, '2448', 'Valla Beach', 'NSW', 'AU', 486, ' 2448 Valla Beach New South Wales'),
2787
+ (2433, '2449', 'South Arm', 'NSW', 'AU', 486, ' 2449 South Arm New South Wales'),
2788
+ (2434, '2449', 'Tewinga', 'NSW', 'AU', 486, ' 2449 Tewinga New South Wales'),
2789
+ (2435, '2449', 'Missabotti', 'NSW', 'AU', 486, ' 2449 Missabotti New South Wales'),
2790
+ (2436, '2449', 'Killiekrankie', 'NSW', 'AU', 486, ' 2449 Killiekrankie New South Wales'),
2791
+ (2437, '2449', 'Kennaicle Creek', 'NSW', 'AU', 486, ' 2449 Kennaicle Creek New South Wales'),
2792
+ (2438, '2449', 'Girralong', 'NSW', 'AU', 486, ' 2449 Girralong New South Wales'),
2793
+ (2439, '2449', 'Bowraville', 'NSW', 'AU', 486, ' 2449 Bowraville New South Wales');
2794
+ INSERT INTO {$this->getTable('candf_pcs')} (`entity_id`, `postcode`, `city`, `state`, `country_id`, `region_id`, `fulltext`) VALUES
2795
+ (2440, '2449', 'Buckra Bendinni', 'NSW', 'AU', 486, ' 2449 Buckra Bendinni New South Wales'),
2796
+ (2441, '2449', 'Argents Hill', 'NSW', 'AU', 486, ' 2449 Argents Hill New South Wales'),
2797
+ (2442, '2450', 'Bucca', 'NSW', 'AU', 486, ' 2450 Bucca New South Wales'),
2798
+ (2443, '2450', 'Coramba', 'NSW', 'AU', 486, ' 2450 Coramba New South Wales'),
2799
+ (2444, '2450', 'Coffs Harbour', 'NSW', 'AU', 486, ' 2450 Coffs Harbour New South Wales'),
2800
+ (2445, '2450', 'Coffs Harbour Jetty', 'NSW', 'AU', 486, ' 2450 Coffs Harbour Jetty New South Wales'),
2801
+ (2446, '2450', 'Coffs Harbour Plaza', 'NSW', 'AU', 486, ' 2450 Coffs Harbour Plaza New South Wales'),
2802
+ (2447, '2450', 'Brooklana', 'NSW', 'AU', 486, ' 2450 Brooklana New South Wales'),
2803
+ (2448, '2450', 'Boambee', 'NSW', 'AU', 486, ' 2450 Boambee New South Wales'),
2804
+ (2449, '2450', 'Glenreagh', 'NSW', 'AU', 486, ' 2450 Glenreagh New South Wales'),
2805
+ (2450, '2450', 'Karangi', 'NSW', 'AU', 486, ' 2450 Karangi New South Wales'),
2806
+ (2451, '2450', 'Korora', 'NSW', 'AU', 486, ' 2450 Korora New South Wales'),
2807
+ (2452, '2450', 'Moonee Beach', 'NSW', 'AU', 486, ' 2450 Moonee Beach New South Wales'),
2808
+ (2453, '2450', 'Lowanna', 'NSW', 'AU', 486, ' 2450 Lowanna New South Wales'),
2809
+ (2454, '2450', 'Nana Glen', 'NSW', 'AU', 486, ' 2450 Nana Glen New South Wales'),
2810
+ (2455, '2450', 'North Boambee Valley', 'NSW', 'AU', 486, ' 2450 North Boambee Valley New South Wales'),
2811
+ (2456, '2450', 'Sapphire Beach', 'NSW', 'AU', 486, ' 2450 Sapphire Beach New South Wales'),
2812
+ (2457, '2450', 'Ulong', 'NSW', 'AU', 486, ' 2450 Ulong New South Wales'),
2813
+ (2458, '2450', 'Sherwood', 'NSW', 'AU', 486, ' 2450 Sherwood New South Wales'),
2814
+ (2459, '2450', 'Upper Orara', 'NSW', 'AU', 486, ' 2450 Upper Orara New South Wales'),
2815
+ (2460, '2452', 'Toormina', 'NSW', 'AU', 486, ' 2452 Toormina New South Wales'),
2816
+ (2461, '2452', 'Sawtell', 'NSW', 'AU', 486, ' 2452 Sawtell New South Wales'),
2817
+ (2462, '2452', 'Boambee East', 'NSW', 'AU', 486, ' 2452 Boambee East New South Wales'),
2818
+ (2463, '2453', 'Bielsdown Hills', 'NSW', 'AU', 486, ' 2453 Bielsdown Hills New South Wales'),
2819
+ (2464, '2453', 'Billys Creek', 'NSW', 'AU', 486, ' 2453 Billys Creek New South Wales'),
2820
+ (2465, '2453', 'Bostobrick', 'NSW', 'AU', 486, ' 2453 Bostobrick New South Wales'),
2821
+ (2466, '2453', 'Clouds Creek', 'NSW', 'AU', 486, ' 2453 Clouds Creek New South Wales'),
2822
+ (2467, '2453', 'Cascade', 'NSW', 'AU', 486, ' 2453 Cascade New South Wales'),
2823
+ (2468, '2453', 'Dorrigo', 'NSW', 'AU', 486, ' 2453 Dorrigo New South Wales'),
2824
+ (2469, '2453', 'Dorrigo Mountain', 'NSW', 'AU', 486, ' 2453 Dorrigo Mountain New South Wales'),
2825
+ (2470, '2453', 'Deer Vale', 'NSW', 'AU', 486, ' 2453 Deer Vale New South Wales'),
2826
+ (2471, '2453', 'Hernani', 'NSW', 'AU', 486, ' 2453 Hernani New South Wales'),
2827
+ (2472, '2453', 'Fernbrook', 'NSW', 'AU', 486, ' 2453 Fernbrook New South Wales'),
2828
+ (2473, '2453', 'Ebor', 'NSW', 'AU', 486, ' 2453 Ebor New South Wales'),
2829
+ (2474, '2453', 'Dundurrabin', 'NSW', 'AU', 486, ' 2453 Dundurrabin New South Wales'),
2830
+ (2475, '2453', 'North Dorrigo', 'NSW', 'AU', 486, ' 2453 North Dorrigo New South Wales'),
2831
+ (2476, '2453', 'Never Never', 'NSW', 'AU', 486, ' 2453 Never Never New South Wales'),
2832
+ (2477, '2453', 'Marengo', 'NSW', 'AU', 486, ' 2453 Marengo New South Wales'),
2833
+ (2478, '2453', 'Moonpar', 'NSW', 'AU', 486, ' 2453 Moonpar New South Wales'),
2834
+ (2479, '2453', 'Megan', 'NSW', 'AU', 486, ' 2453 Megan New South Wales'),
2835
+ (2480, '2453', 'Tyringham', 'NSW', 'AU', 486, ' 2453 Tyringham New South Wales'),
2836
+ (2481, '2453', 'Tallowwood Ridge', 'NSW', 'AU', 486, ' 2453 Tallowwood Ridge New South Wales'),
2837
+ (2482, '2453', 'Wild Cattle Creek', 'NSW', 'AU', 486, ' 2453 Wild Cattle Creek New South Wales'),
2838
+ (2483, '2454', 'Valery', 'NSW', 'AU', 486, ' 2454 Valery New South Wales'),
2839
+ (2484, '2454', 'Spicketts Creek', 'NSW', 'AU', 486, ' 2454 Spicketts Creek New South Wales'),
2840
+ (2485, '2454', 'Thora', 'NSW', 'AU', 486, ' 2454 Thora New South Wales'),
2841
+ (2486, '2454', 'Mylestom', 'NSW', 'AU', 486, ' 2454 Mylestom New South Wales'),
2842
+ (2487, '2454', 'Repton', 'NSW', 'AU', 486, ' 2454 Repton New South Wales'),
2843
+ (2488, '2454', 'Raleigh', 'NSW', 'AU', 486, ' 2454 Raleigh New South Wales'),
2844
+ (2489, '2454', 'Fernmount', 'NSW', 'AU', 486, ' 2454 Fernmount New South Wales'),
2845
+ (2490, '2454', 'Gleniffer', 'NSW', 'AU', 486, ' 2454 Gleniffer New South Wales'),
2846
+ (2491, '2454', 'Kalang', 'NSW', 'AU', 486, ' 2454 Kalang New South Wales'),
2847
+ (2492, '2454', 'Darkwood', 'NSW', 'AU', 486, ' 2454 Darkwood New South Wales'),
2848
+ (2493, '2454', 'Bundagen', 'NSW', 'AU', 486, ' 2454 Bundagen New South Wales'),
2849
+ (2494, '2454', 'Brierfield', 'NSW', 'AU', 486, ' 2454 Brierfield New South Wales'),
2850
+ (2495, '2454', 'Bellingen', 'NSW', 'AU', 486, ' 2454 Bellingen New South Wales'),
2851
+ (2496, '2455', 'Urunga', 'NSW', 'AU', 486, ' 2455 Urunga New South Wales'),
2852
+ (2497, '2456', 'Woolgoolga', 'NSW', 'AU', 486, ' 2456 Woolgoolga New South Wales'),
2853
+ (2498, '2456', 'Upper Corindi', 'NSW', 'AU', 486, ' 2456 Upper Corindi New South Wales'),
2854
+ (2499, '2456', 'Red Rock', 'NSW', 'AU', 486, ' 2456 Red Rock New South Wales'),
2855
+ (2500, '2456', 'Safety Beach', 'NSW', 'AU', 486, ' 2456 Safety Beach New South Wales'),
2856
+ (2501, '2456', 'Sandy Beach', 'NSW', 'AU', 486, ' 2456 Sandy Beach New South Wales'),
2857
+ (2502, '2456', 'Mullaway', 'NSW', 'AU', 486, ' 2456 Mullaway New South Wales'),
2858
+ (2503, '2456', 'Corindi Beach', 'NSW', 'AU', 486, ' 2456 Corindi Beach New South Wales'),
2859
+ (2504, '2456', 'Emerald Beach', 'NSW', 'AU', 486, ' 2456 Emerald Beach New South Wales'),
2860
+ (2505, '2456', 'Arrawarra', 'NSW', 'AU', 486, ' 2456 Arrawarra New South Wales'),
2861
+ (2506, '2456', 'Arrawarra Headland', 'NSW', 'AU', 486, ' 2456 Arrawarra Headland New South Wales'),
2862
+ (2507, '2460', 'Alumy Creek', 'NSW', 'AU', 486, ' 2460 Alumy Creek New South Wales'),
2863
+ (2508, '2460', 'Elland', 'NSW', 'AU', 486, ' 2460 Elland New South Wales'),
2864
+ (2509, '2460', 'Eighteen Mile', 'NSW', 'AU', 486, ' 2460 Eighteen Mile New South Wales'),
2865
+ (2510, '2460', 'Eatonsville', 'NSW', 'AU', 486, ' 2460 Eatonsville New South Wales'),
2866
+ (2511, '2460', 'Dumbudgery', 'NSW', 'AU', 486, ' 2460 Dumbudgery New South Wales'),
2867
+ (2512, '2460', 'Kangaroo Creek', 'NSW', 'AU', 486, ' 2460 Kangaroo Creek New South Wales'),
2868
+ (2513, '2460', 'Junction Hill', 'NSW', 'AU', 486, ' 2460 Junction Hill New South Wales'),
2869
+ (2514, '2460', 'Jackadgery', 'NSW', 'AU', 486, ' 2460 Jackadgery New South Wales'),
2870
+ (2515, '2460', 'Heifer Station', 'NSW', 'AU', 486, ' 2460 Heifer Station New South Wales'),
2871
+ (2516, '2460', 'Gurranang', 'NSW', 'AU', 486, ' 2460 Gurranang New South Wales'),
2872
+ (2517, '2460', 'Halfway Creek', 'NSW', 'AU', 486, ' 2460 Halfway Creek New South Wales'),
2873
+ (2518, '2460', 'Glenugie', 'NSW', 'AU', 486, ' 2460 Glenugie New South Wales'),
2874
+ (2519, '2460', 'Grafton', 'NSW', 'AU', 486, ' 2460 Grafton New South Wales'),
2875
+ (2520, '2460', 'Grafton West', 'NSW', 'AU', 486, ' 2460 Grafton West New South Wales'),
2876
+ (2521, '2460', 'Great Marlow', 'NSW', 'AU', 486, ' 2460 Great Marlow New South Wales'),
2877
+ (2522, '2460', 'Fine Flower', 'NSW', 'AU', 486, ' 2460 Fine Flower New South Wales'),
2878
+ (2523, '2460', 'Fortis Creek', 'NSW', 'AU', 486, ' 2460 Fortis Creek New South Wales'),
2879
+ (2524, '2460', 'Clifden', 'NSW', 'AU', 486, ' 2460 Clifden New South Wales'),
2880
+ (2525, '2460', 'Copmanhurst', 'NSW', 'AU', 486, ' 2460 Copmanhurst New South Wales'),
2881
+ (2526, '2460', 'Crowther Island', 'NSW', 'AU', 486, ' 2460 Crowther Island New South Wales'),
2882
+ (2527, '2460', 'Coutts Crossing', 'NSW', 'AU', 486, ' 2460 Coutts Crossing New South Wales'),
2883
+ (2528, '2460', 'Cowper', 'NSW', 'AU', 486, ' 2460 Cowper New South Wales'),
2884
+ (2529, '2460', 'Collum Collum', 'NSW', 'AU', 486, ' 2460 Collum Collum New South Wales'),
2885
+ (2530, '2460', 'Coombadjha', 'NSW', 'AU', 486, ' 2460 Coombadjha New South Wales'),
2886
+ (2531, '2460', 'Deep Creek', 'NSW', 'AU', 486, ' 2460 Deep Creek New South Wales'),
2887
+ (2532, '2460', 'Dalmorton', 'NSW', 'AU', 486, ' 2460 Dalmorton New South Wales'),
2888
+ (2533, '2460', 'Dirty Creek', 'NSW', 'AU', 486, ' 2460 Dirty Creek New South Wales'),
2889
+ (2534, '2460', 'Dilkoon', 'NSW', 'AU', 486, ' 2460 Dilkoon New South Wales'),
2890
+ (2535, '2460', 'Carrs Creek', 'NSW', 'AU', 486, ' 2460 Carrs Creek New South Wales'),
2891
+ (2536, '2460', 'Carrs Island', 'NSW', 'AU', 486, ' 2460 Carrs Island New South Wales'),
2892
+ (2537, '2460', 'Carrs Peninsular', 'NSW', 'AU', 486, ' 2460 Carrs Peninsular New South Wales'),
2893
+ (2538, '2460', 'Coaldale', 'NSW', 'AU', 486, ' 2460 Coaldale New South Wales'),
2894
+ (2539, '2460', 'Chaelundi', 'NSW', 'AU', 486, ' 2460 Chaelundi New South Wales'),
2895
+ (2540, '2460', 'Chambigne', 'NSW', 'AU', 486, ' 2460 Chambigne New South Wales'),
2896
+ (2541, '2460', 'Clarenza', 'NSW', 'AU', 486, ' 2460 Clarenza New South Wales'),
2897
+ (2542, '2460', 'Buccarumbi', 'NSW', 'AU', 486, ' 2460 Buccarumbi New South Wales'),
2898
+ (2543, '2460', 'Brushgrove', 'NSW', 'AU', 486, ' 2460 Brushgrove New South Wales'),
2899
+ (2544, '2460', 'Calamia', 'NSW', 'AU', 486, ' 2460 Calamia New South Wales'),
2900
+ (2545, '2460', 'Carnham', 'NSW', 'AU', 486, ' 2460 Carnham New South Wales'),
2901
+ (2546, '2460', 'Cangai', 'NSW', 'AU', 486, ' 2460 Cangai New South Wales'),
2902
+ (2547, '2460', 'Barretts Creek', 'NSW', 'AU', 486, ' 2460 Barretts Creek New South Wales'),
2903
+ (2548, '2460', 'Baryulgil', 'NSW', 'AU', 486, ' 2460 Baryulgil New South Wales'),
2904
+ (2549, '2460', 'Barcoongere', 'NSW', 'AU', 486, ' 2460 Barcoongere New South Wales'),
2905
+ (2550, '2460', 'Braunstone', 'NSW', 'AU', 486, ' 2460 Braunstone New South Wales'),
2906
+ (2551, '2460', 'Bookram', 'NSW', 'AU', 486, ' 2460 Bookram New South Wales'),
2907
+ (2552, '2460', 'Blaxlands Creek', 'NSW', 'AU', 486, ' 2460 Blaxlands Creek New South Wales'),
2908
+ (2553, '2460', 'Bom Bom', 'NSW', 'AU', 486, ' 2460 Bom Bom New South Wales'),
2909
+ (2554, '2460', 'Mountain View', 'NSW', 'AU', 486, ' 2460 Mountain View New South Wales'),
2910
+ (2555, '2460', 'Moleville Creek', 'NSW', 'AU', 486, ' 2460 Moleville Creek New South Wales'),
2911
+ (2556, '2460', 'Malabugilmah', 'NSW', 'AU', 486, ' 2460 Malabugilmah New South Wales'),
2912
+ (2557, '2460', 'Lilydale', 'NSW', 'AU', 486, ' 2460 Lilydale New South Wales'),
2913
+ (2558, '2460', 'Lower Southgate', 'NSW', 'AU', 486, ' 2460 Lower Southgate New South Wales'),
2914
+ (2559, '2460', 'Kremnos', 'NSW', 'AU', 486, ' 2460 Kremnos New South Wales'),
2915
+ (2560, '2460', 'Lanitza', 'NSW', 'AU', 486, ' 2460 Lanitza New South Wales'),
2916
+ (2561, '2460', 'Levenstrath', 'NSW', 'AU', 486, ' 2460 Levenstrath New South Wales'),
2917
+ (2562, '2460', 'Lawrence', 'NSW', 'AU', 486, ' 2460 Lawrence New South Wales'),
2918
+ (2563, '2460', 'Lionsville', 'NSW', 'AU', 486, ' 2460 Lionsville New South Wales'),
2919
+ (2564, '2460', 'Koolkhan', 'NSW', 'AU', 486, ' 2460 Koolkhan New South Wales'),
2920
+ (2565, '2460', 'Kungala', 'NSW', 'AU', 486, ' 2460 Kungala New South Wales'),
2921
+ (2566, '2460', 'Kyarran', 'NSW', 'AU', 486, ' 2460 Kyarran New South Wales'),
2922
+ (2567, '2460', 'Sandy Crossing', 'NSW', 'AU', 486, ' 2460 Sandy Crossing New South Wales'),
2923
+ (2568, '2460', 'Rushforth', 'NSW', 'AU', 486, ' 2460 Rushforth New South Wales'),
2924
+ (2569, '2460', 'Pulganbar', 'NSW', 'AU', 486, ' 2460 Pulganbar New South Wales'),
2925
+ (2570, '2460', 'Punchbowl', 'NSW', 'AU', 486, ' 2460 Punchbowl New South Wales'),
2926
+ (2571, '2460', 'Ramornie', 'NSW', 'AU', 486, ' 2460 Ramornie New South Wales'),
2927
+ (2572, '2460', 'Nymboida', 'NSW', 'AU', 486, ' 2460 Nymboida New South Wales'),
2928
+ (2573, '2460', 'Mylneford', 'NSW', 'AU', 486, ' 2460 Mylneford New South Wales'),
2929
+ (2574, '2460', 'Newbold', 'NSW', 'AU', 486, ' 2460 Newbold New South Wales'),
2930
+ (2575, '2460', 'Seelands', 'NSW', 'AU', 486, ' 2460 Seelands New South Wales'),
2931
+ (2576, '2460', 'Shannondale', 'NSW', 'AU', 486, ' 2460 Shannondale New South Wales'),
2932
+ (2577, '2460', 'Upper Copmanhurst', 'NSW', 'AU', 486, ' 2460 Upper Copmanhurst New South Wales'),
2933
+ (2578, '2460', 'Tyndale', 'NSW', 'AU', 486, ' 2460 Tyndale New South Wales'),
2934
+ (2579, '2460', 'The Whiteman', 'NSW', 'AU', 486, ' 2460 The Whiteman New South Wales'),
2935
+ (2580, '2460', 'The Pinnacles', 'NSW', 'AU', 486, ' 2460 The Pinnacles New South Wales'),
2936
+ (2581, '2460', 'Trenayr', 'NSW', 'AU', 486, ' 2460 Trenayr New South Wales'),
2937
+ (2582, '2460', 'Towallum', 'NSW', 'AU', 486, ' 2460 Towallum New South Wales'),
2938
+ (2583, '2460', 'Stockyard Creek', 'NSW', 'AU', 486, ' 2460 Stockyard Creek New South Wales'),
2939
+ (2584, '2460', 'South Grafton', 'NSW', 'AU', 486, ' 2460 South Grafton New South Wales'),
2940
+ (2585, '2460', 'Southampton', 'NSW', 'AU', 486, ' 2460 Southampton New South Wales'),
2941
+ (2586, '2460', 'Southgate', 'NSW', 'AU', 486, ' 2460 Southgate New South Wales'),
2942
+ (2587, '2460', 'South Arm', 'NSW', 'AU', 486, ' 2460 South Arm New South Wales'),
2943
+ (2588, '2460', 'Smiths Creek', 'NSW', 'AU', 486, ' 2460 Smiths Creek New South Wales'),
2944
+ (2589, '2460', 'Whiteman Creek', 'NSW', 'AU', 486, ' 2460 Whiteman Creek New South Wales'),
2945
+ (2590, '2460', 'Winegrove', 'NSW', 'AU', 486, ' 2460 Winegrove New South Wales'),
2946
+ (2591, '2460', 'Wombat Creek', 'NSW', 'AU', 486, ' 2460 Wombat Creek New South Wales'),
2947
+ (2592, '2460', 'Upper Fine Flower', 'NSW', 'AU', 486, ' 2460 Upper Fine Flower New South Wales'),
2948
+ (2593, '2460', 'Washpool', 'NSW', 'AU', 486, ' 2460 Washpool New South Wales'),
2949
+ (2594, '2460', 'Waterview', 'NSW', 'AU', 486, ' 2460 Waterview New South Wales'),
2950
+ (2595, '2460', 'Waterview Heights', 'NSW', 'AU', 486, ' 2460 Waterview Heights New South Wales'),
2951
+ (2596, '2460', 'Warragai Creek', 'NSW', 'AU', 486, ' 2460 Warragai Creek New South Wales'),
2952
+ (2597, '2460', 'Wells Crossing', 'NSW', 'AU', 486, ' 2460 Wells Crossing New South Wales'),
2953
+ (2598, '2462', 'Wooli', 'NSW', 'AU', 486, ' 2462 Wooli New South Wales'),
2954
+ (2599, '2462', 'Swan Creek', 'NSW', 'AU', 486, ' 2462 Swan Creek New South Wales'),
2955
+ (2600, '2462', 'Tucabia', 'NSW', 'AU', 486, ' 2462 Tucabia New South Wales'),
2956
+ (2601, '2462', 'Ulmarra', 'NSW', 'AU', 486, ' 2462 Ulmarra New South Wales'),
2957
+ (2602, '2462', 'Pillar Valley', 'NSW', 'AU', 486, ' 2462 Pillar Valley New South Wales'),
2958
+ (2603, '2462', 'Lavadia', 'NSW', 'AU', 486, ' 2462 Lavadia New South Wales'),
2959
+ (2604, '2462', 'Lake Hiawatha', 'NSW', 'AU', 486, ' 2462 Lake Hiawatha New South Wales'),
2960
+ (2605, '2462', 'Minnie Water', 'NSW', 'AU', 486, ' 2462 Minnie Water New South Wales'),
2961
+ (2606, '2462', 'Calliope', 'NSW', 'AU', 486, ' 2462 Calliope New South Wales'),
2962
+ (2607, '2462', 'Coldstream', 'NSW', 'AU', 486, ' 2462 Coldstream New South Wales'),
2963
+ (2608, '2462', 'Diggers Camp', 'NSW', 'AU', 486, ' 2462 Diggers Camp New South Wales'),
2964
+ (2609, '2462', 'Gilletts Ridge', 'NSW', 'AU', 486, ' 2462 Gilletts Ridge New South Wales'),
2965
+ (2610, '2463', 'Gulmarrad', 'NSW', 'AU', 486, ' 2463 Gulmarrad New South Wales'),
2966
+ (2611, '2463', 'Ilarwill', 'NSW', 'AU', 486, ' 2463 Ilarwill New South Wales'),
2967
+ (2612, '2463', 'Jacky Bulbin Flat', 'NSW', 'AU', 486, ' 2463 Jacky Bulbin Flat New South Wales'),
2968
+ (2613, '2463', 'James Creek', 'NSW', 'AU', 486, ' 2463 James Creek New South Wales'),
2969
+ (2614, '2463', 'Brooms Head', 'NSW', 'AU', 486, ' 2463 Brooms Head New South Wales'),
2970
+ (2615, '2463', 'Ashby', 'NSW', 'AU', 486, ' 2463 Ashby New South Wales'),
2971
+ (2616, '2463', 'Ashby Heights', 'NSW', 'AU', 486, ' 2463 Ashby Heights New South Wales'),
2972
+ (2617, '2463', 'Ashby Island', 'NSW', 'AU', 486, ' 2463 Ashby Island New South Wales'),
2973
+ (2618, '2463', 'Maclean', 'NSW', 'AU', 486, ' 2463 Maclean New South Wales'),
2974
+ (2619, '2463', 'Palmers Channel', 'NSW', 'AU', 486, ' 2463 Palmers Channel New South Wales'),
2975
+ (2620, '2463', 'Palmers Island', 'NSW', 'AU', 486, ' 2463 Palmers Island New South Wales'),
2976
+ (2621, '2463', 'Sandon', 'NSW', 'AU', 486, ' 2463 Sandon New South Wales'),
2977
+ (2622, '2463', 'Shark Creek', 'NSW', 'AU', 486, ' 2463 Shark Creek New South Wales'),
2978
+ (2623, '2463', 'Tullymorgan', 'NSW', 'AU', 486, ' 2463 Tullymorgan New South Wales'),
2979
+ (2624, '2463', 'Townsend', 'NSW', 'AU', 486, ' 2463 Townsend New South Wales'),
2980
+ (2625, '2463', 'The Sandon', 'NSW', 'AU', 486, ' 2463 The Sandon New South Wales'),
2981
+ (2626, '2463', 'Taloumbi', 'NSW', 'AU', 486, ' 2463 Taloumbi New South Wales'),
2982
+ (2627, '2463', 'Woodford Island', 'NSW', 'AU', 486, ' 2463 Woodford Island New South Wales'),
2983
+ (2628, '2464', 'Wooloweyah', 'NSW', 'AU', 486, ' 2464 Wooloweyah New South Wales'),
2984
+ (2629, '2464', 'Yamba', 'NSW', 'AU', 486, ' 2464 Yamba New South Wales'),
2985
+ (2630, '2464', 'Yuraygir', 'NSW', 'AU', 486, ' 2464 Yuraygir New South Wales'),
2986
+ (2631, '2464', 'Micalo Island', 'NSW', 'AU', 486, ' 2464 Micalo Island New South Wales'),
2987
+ (2632, '2464', 'Angourie', 'NSW', 'AU', 486, ' 2464 Angourie New South Wales'),
2988
+ (2633, '2464', 'Freeburn Island', 'NSW', 'AU', 486, ' 2464 Freeburn Island New South Wales'),
2989
+ (2634, '2465', 'Harwood', 'NSW', 'AU', 486, ' 2465 Harwood New South Wales'),
2990
+ (2635, '2466', 'Iluka', 'NSW', 'AU', 486, ' 2466 Iluka New South Wales'),
2991
+ (2636, '2466', 'Woody Head', 'NSW', 'AU', 486, ' 2466 Woody Head New South Wales'),
2992
+ (2637, '2466', 'The Freshwater', 'NSW', 'AU', 486, ' 2466 The Freshwater New South Wales'),
2993
+ (2638, '2469', 'Theresa Creek', 'NSW', 'AU', 486, ' 2469 Theresa Creek New South Wales'),
2994
+ (2639, '2469', 'Tunglebung', 'NSW', 'AU', 486, ' 2469 Tunglebung New South Wales'),
2995
+ (2640, '2469', 'Upper Duck Creek', 'NSW', 'AU', 486, ' 2469 Upper Duck Creek New South Wales'),
2996
+ (2641, '2469', 'Tabulam', 'NSW', 'AU', 486, ' 2469 Tabulam New South Wales'),
2997
+ (2642, '2469', 'Simpkins Creek', 'NSW', 'AU', 486, ' 2469 Simpkins Creek New South Wales'),
2998
+ (2643, '2469', 'Six Mile Swamp', 'NSW', 'AU', 486, ' 2469 Six Mile Swamp New South Wales'),
2999
+ (2644, '2469', 'Wyan', 'NSW', 'AU', 486, ' 2469 Wyan New South Wales'),
3000
+ (2645, '2469', 'Woombah', 'NSW', 'AU', 486, ' 2469 Woombah New South Wales'),
3001
+ (2646, '2469', 'Yabbra', 'NSW', 'AU', 486, ' 2469 Yabbra New South Wales'),
3002
+ (2647, '2469', 'Whiporie', 'NSW', 'AU', 486, ' 2469 Whiporie New South Wales'),
3003
+ (2648, '2469', 'Warregah Island', 'NSW', 'AU', 486, ' 2469 Warregah Island New South Wales'),
3004
+ (2649, '2469', 'Mookima Wybra', 'NSW', 'AU', 486, ' 2469 Mookima Wybra New South Wales'),
3005
+ (2650, '2469', 'Mallanganee', 'NSW', 'AU', 486, ' 2469 Mallanganee New South Wales'),
3006
+ (2651, '2469', 'Lower Peacock', 'NSW', 'AU', 486, ' 2469 Lower Peacock New South Wales'),
3007
+ (2652, '2469', 'Lower Duck Creek', 'NSW', 'AU', 486, ' 2469 Lower Duck Creek New South Wales'),
3008
+ (2653, '2469', 'Lower Bottle Creek', 'NSW', 'AU', 486, ' 2469 Lower Bottle Creek New South Wales'),
3009
+ (2654, '2469', 'Louisa Creek', 'NSW', 'AU', 486, ' 2469 Louisa Creek New South Wales'),
3010
+ (2655, '2469', 'Mount Marsh', 'NSW', 'AU', 486, ' 2469 Mount Marsh New South Wales'),
3011
+ (2656, '2469', 'Mororo', 'NSW', 'AU', 486, ' 2469 Mororo New South Wales'),
3012
+ (2657, '2469', 'Kippenduff', 'NSW', 'AU', 486, ' 2469 Kippenduff New South Wales'),
3013
+ (2658, '2469', 'Keybarbin', 'NSW', 'AU', 486, ' 2469 Keybarbin New South Wales'),
3014
+ (2659, '2469', 'Sandilands', 'NSW', 'AU', 486, ' 2469 Sandilands New South Wales'),
3015
+ (2660, '2469', 'Paddys Flat', 'NSW', 'AU', 486, ' 2469 Paddys Flat New South Wales'),
3016
+ (2661, '2469', 'Pagans Flat', 'NSW', 'AU', 486, ' 2469 Pagans Flat New South Wales'),
3017
+ (2662, '2469', 'Peacock Creek', 'NSW', 'AU', 486, ' 2469 Peacock Creek New South Wales'),
3018
+ (2663, '2469', 'Old Bonalbo', 'NSW', 'AU', 486, ' 2469 Old Bonalbo New South Wales'),
3019
+ (2664, '2469', 'Pikapene', 'NSW', 'AU', 486, ' 2469 Pikapene New South Wales'),
3020
+ (2665, '2469', 'Rappville', 'NSW', 'AU', 486, ' 2469 Rappville New South Wales'),
3021
+ (2666, '2469', 'Myrtle Creek', 'NSW', 'AU', 486, ' 2469 Myrtle Creek New South Wales'),
3022
+ (2667, '2469', 'Mummulgum', 'NSW', 'AU', 486, ' 2469 Mummulgum New South Wales'),
3023
+ (2668, '2469', 'Jacksons Flat', 'NSW', 'AU', 486, ' 2469 Jacksons Flat New South Wales'),
3024
+ (2669, '2469', 'Joes Box', 'NSW', 'AU', 486, ' 2469 Joes Box New South Wales'),
3025
+ (2670, '2469', 'Haystack', 'NSW', 'AU', 486, ' 2469 Haystack New South Wales'),
3026
+ (2671, '2469', 'Hogarth Range', 'NSW', 'AU', 486, ' 2469 Hogarth Range New South Wales'),
3027
+ (2672, '2469', 'Gibberagee', 'NSW', 'AU', 486, ' 2469 Gibberagee New South Wales'),
3028
+ (2673, '2469', 'Gorge Creek', 'NSW', 'AU', 486, ' 2469 Gorge Creek New South Wales'),
3029
+ (2674, '2469', 'Goodwood Island', 'NSW', 'AU', 486, ' 2469 Goodwood Island New South Wales'),
3030
+ (2675, '2469', 'Ewingar', 'NSW', 'AU', 486, ' 2469 Ewingar New South Wales'),
3031
+ (2676, '2469', 'Duck Creek', 'NSW', 'AU', 486, ' 2469 Duck Creek New South Wales'),
3032
+ (2677, '2469', 'Bottle Creek', 'NSW', 'AU', 486, ' 2469 Bottle Creek New South Wales'),
3033
+ (2678, '2469', 'Bonalbo', 'NSW', 'AU', 486, ' 2469 Bonalbo New South Wales'),
3034
+ (2679, '2469', 'Bingeebeebra Creek', 'NSW', 'AU', 486, ' 2469 Bingeebeebra Creek New South Wales'),
3035
+ (2680, '2469', 'Banyabba', 'NSW', 'AU', 486, ' 2469 Banyabba New South Wales'),
3036
+ (2681, '2469', 'Bean Creek', 'NSW', 'AU', 486, ' 2469 Bean Creek New South Wales'),
3037
+ (2682, '2469', 'Drake', 'NSW', 'AU', 486, ' 2469 Drake New South Wales'),
3038
+ (2683, '2469', 'Drake Village', 'NSW', 'AU', 486, ' 2469 Drake Village New South Wales'),
3039
+ (2684, '2469', 'Culmaran Creek', 'NSW', 'AU', 486, ' 2469 Culmaran Creek New South Wales'),
3040
+ (2685, '2469', 'Deep Creek', 'NSW', 'AU', 486, ' 2469 Deep Creek New South Wales'),
3041
+ (2686, '2469', 'Coongbar', 'NSW', 'AU', 486, ' 2469 Coongbar New South Wales'),
3042
+ (2687, '2469', 'Clearfield', 'NSW', 'AU', 486, ' 2469 Clearfield New South Wales'),
3043
+ (2688, '2469', 'Chatsworth', 'NSW', 'AU', 486, ' 2469 Chatsworth New South Wales'),
3044
+ (2689, '2469', 'Cambridge Plateau', 'NSW', 'AU', 486, ' 2469 Cambridge Plateau New South Wales'),
3045
+ (2690, '2469', 'Camira', 'NSW', 'AU', 486, ' 2469 Camira New South Wales'),
3046
+ (2691, '2469', 'Busbys Flat', 'NSW', 'AU', 486, ' 2469 Busbys Flat New South Wales'),
3047
+ (2692, '2469', 'Bulldog', 'NSW', 'AU', 486, ' 2469 Bulldog New South Wales'),
3048
+ (2693, '2469', 'Bungawalbin', 'NSW', 'AU', 486, ' 2469 Bungawalbin New South Wales'),
3049
+ (2694, '2469', 'Capeen Creek', 'NSW', 'AU', 486, ' 2469 Capeen Creek New South Wales'),
3050
+ (2695, '2469', 'Alice', 'NSW', 'AU', 486, ' 2469 Alice New South Wales'),
3051
+ (2696, '2470', 'Babyl Creek', 'NSW', 'AU', 486, ' 2470 Babyl Creek New South Wales'),
3052
+ (2697, '2470', 'Backmede', 'NSW', 'AU', 486, ' 2470 Backmede New South Wales'),
3053
+ (2698, '2470', 'Casino', 'NSW', 'AU', 486, ' 2470 Casino New South Wales'),
3054
+ (2699, '2470', 'Coombell', 'NSW', 'AU', 486, ' 2470 Coombell New South Wales'),
3055
+ (2700, '2470', 'Dobies Bight', 'NSW', 'AU', 486, ' 2470 Dobies Bight New South Wales'),
3056
+ (2701, '2470', 'Doubtful Creek', 'NSW', 'AU', 486, ' 2470 Doubtful Creek New South Wales'),
3057
+ (2702, '2470', 'Dyraaba', 'NSW', 'AU', 486, ' 2470 Dyraaba New South Wales'),
3058
+ (2703, '2470', 'Ellangowan', 'NSW', 'AU', 486, ' 2470 Ellangowan New South Wales'),
3059
+ (2704, '2470', 'Fairy Hill', 'NSW', 'AU', 486, ' 2470 Fairy Hill New South Wales'),
3060
+ (2705, '2470', 'Irvington', 'NSW', 'AU', 486, ' 2470 Irvington New South Wales'),
3061
+ (2706, '2470', 'Naughtons Gap', 'NSW', 'AU', 486, ' 2470 Naughtons Gap New South Wales'),
3062
+ (2707, '2470', 'North Casino', 'NSW', 'AU', 486, ' 2470 North Casino New South Wales'),
3063
+ (2708, '2470', 'Piora', 'NSW', 'AU', 486, ' 2470 Piora New South Wales'),
3064
+ (2709, '2470', 'Sextonville', 'NSW', 'AU', 486, ' 2470 Sextonville New South Wales'),
3065
+ (2710, '2470', 'Shannon Brook', 'NSW', 'AU', 486, ' 2470 Shannon Brook New South Wales'),
3066
+ (2711, '2470', 'Leeville', 'NSW', 'AU', 486, ' 2470 Leeville New South Wales'),
3067
+ (2712, '2470', 'Lower Dyraaba', 'NSW', 'AU', 486, ' 2470 Lower Dyraaba New South Wales'),
3068
+ (2713, '2470', 'Mongogarie', 'NSW', 'AU', 486, ' 2470 Mongogarie New South Wales'),
3069
+ (2714, '2470', 'Upper Mongogarie', 'NSW', 'AU', 486, ' 2470 Upper Mongogarie New South Wales'),
3070
+ (2715, '2470', 'Yorklea', 'NSW', 'AU', 486, ' 2470 Yorklea New South Wales'),
3071
+ (2716, '2470', 'Woolners Arm', 'NSW', 'AU', 486, ' 2470 Woolners Arm New South Wales'),
3072
+ (2717, '2470', 'Woodview', 'NSW', 'AU', 486, ' 2470 Woodview New South Wales'),
3073
+ (2718, '2470', 'Spring Grove', 'NSW', 'AU', 486, ' 2470 Spring Grove New South Wales'),
3074
+ (2719, '2470', 'Stratheden', 'NSW', 'AU', 486, ' 2470 Stratheden New South Wales'),
3075
+ (2720, '2471', 'Swan Bay', 'NSW', 'AU', 486, ' 2471 Swan Bay New South Wales'),
3076
+ (2721, '2471', 'Tatham', 'NSW', 'AU', 486, ' 2471 Tatham New South Wales'),
3077
+ (2722, '2471', 'West Coraki', 'NSW', 'AU', 486, ' 2471 West Coraki New South Wales'),
3078
+ (2723, '2471', 'North Woodburn', 'NSW', 'AU', 486, ' 2471 North Woodburn New South Wales'),
3079
+ (2724, '2471', 'Greenridge', 'NSW', 'AU', 486, ' 2471 Greenridge New South Wales'),
3080
+ (2725, '2471', 'Green Forest', 'NSW', 'AU', 486, ' 2471 Green Forest New South Wales'),
3081
+ (2726, '2471', 'East Coraki', 'NSW', 'AU', 486, ' 2471 East Coraki New South Wales'),
3082
+ (2727, '2471', 'Codrington', 'NSW', 'AU', 486, ' 2471 Codrington New South Wales'),
3083
+ (2728, '2471', 'Coraki', 'NSW', 'AU', 486, ' 2471 Coraki New South Wales'),
3084
+ (2729, '2471', 'Bora Ridge', 'NSW', 'AU', 486, ' 2471 Bora Ridge New South Wales'),
3085
+ (2730, '2472', 'Broadwater', 'NSW', 'AU', 486, ' 2472 Broadwater New South Wales'),
3086
+ (2731, '2472', 'Buckendoon', 'NSW', 'AU', 486, ' 2472 Buckendoon New South Wales'),
3087
+ (2732, '2472', 'Esk', 'NSW', 'AU', 486, ' 2472 Esk New South Wales'),
3088
+ (2733, '2472', 'Rileys Hill', 'NSW', 'AU', 486, ' 2472 Rileys Hill New South Wales'),
3089
+ (2734, '2472', 'New Italy', 'NSW', 'AU', 486, ' 2472 New Italy New South Wales'),
3090
+ (2735, '2472', 'Moonem', 'NSW', 'AU', 486, ' 2472 Moonem New South Wales'),
3091
+ (2736, '2472', 'Kilgin', 'NSW', 'AU', 486, ' 2472 Kilgin New South Wales'),
3092
+ (2737, '2472', 'Woodburn', 'NSW', 'AU', 486, ' 2472 Woodburn New South Wales'),
3093
+ (2738, '2472', 'Tabbimoble', 'NSW', 'AU', 486, ' 2472 Tabbimoble New South Wales'),
3094
+ (2739, '2472', 'The Gap', 'NSW', 'AU', 486, ' 2472 The Gap New South Wales'),
3095
+ (2740, '2472', 'Trustums Hill', 'NSW', 'AU', 486, ' 2472 Trustums Hill New South Wales'),
3096
+ (2741, '2473', 'South Evans Head', 'NSW', 'AU', 486, ' 2473 South Evans Head New South Wales'),
3097
+ (2742, '2473', 'Evans Head', 'NSW', 'AU', 486, ' 2473 Evans Head New South Wales'),
3098
+ (2743, '2473', 'Iron Gates', 'NSW', 'AU', 486, ' 2473 Iron Gates New South Wales'),
3099
+ (2744, '2473', 'Bundjalung', 'NSW', 'AU', 486, ' 2473 Bundjalung New South Wales'),
3100
+ (2745, '2473', 'Doonbah', 'NSW', 'AU', 486, ' 2473 Doonbah New South Wales'),
3101
+ (2746, '2474', 'Dairy Flat', 'NSW', 'AU', 486, ' 2474 Dairy Flat New South Wales'),
3102
+ (2747, '2474', 'Cougal', 'NSW', 'AU', 486, ' 2474 Cougal New South Wales'),
3103
+ (2748, '2474', 'Cawongla', 'NSW', 'AU', 486, ' 2474 Cawongla New South Wales'),
3104
+ (2749, '2474', 'Cedar Point', 'NSW', 'AU', 486, ' 2474 Cedar Point New South Wales'),
3105
+ (2750, '2474', 'Collins Creek', 'NSW', 'AU', 486, ' 2474 Collins Creek New South Wales'),
3106
+ (2751, '2474', 'Border Ranges', 'NSW', 'AU', 486, ' 2474 Border Ranges New South Wales'),
3107
+ (2752, '2474', 'Barkers Vale', 'NSW', 'AU', 486, ' 2474 Barkers Vale New South Wales'),
3108
+ (2753, '2474', 'Iron Pot Creek', 'NSW', 'AU', 486, ' 2474 Iron Pot Creek New South Wales'),
3109
+ (2754, '2474', 'Homeleigh', 'NSW', 'AU', 486, ' 2474 Homeleigh New South Wales'),
3110
+ (2755, '2474', 'Horse Station Creek', 'NSW', 'AU', 486, ' 2474 Horse Station Creek New South Wales'),
3111
+ (2756, '2474', 'Horseshoe Creek', 'NSW', 'AU', 486, ' 2474 Horseshoe Creek New South Wales'),
3112
+ (2757, '2474', 'Green Pigeon', 'NSW', 'AU', 486, ' 2474 Green Pigeon New South Wales'),
3113
+ (2758, '2474', 'Grevillia', 'NSW', 'AU', 486, ' 2474 Grevillia New South Wales'),
3114
+ (2759, '2474', 'Gradys Creek', 'NSW', 'AU', 486, ' 2474 Gradys Creek New South Wales'),
3115
+ (2760, '2474', 'Findon Creek', 'NSW', 'AU', 486, ' 2474 Findon Creek New South Wales'),
3116
+ (2761, '2474', 'Fawcetts Plain', 'NSW', 'AU', 486, ' 2474 Fawcetts Plain New South Wales'),
3117
+ (2762, '2474', 'Ghinni Ghi', 'NSW', 'AU', 486, ' 2474 Ghinni Ghi New South Wales'),
3118
+ (2763, '2474', 'Geneva', 'NSW', 'AU', 486, ' 2474 Geneva New South Wales'),
3119
+ (2764, '2474', 'Ettrick', 'NSW', 'AU', 486, ' 2474 Ettrick New South Wales'),
3120
+ (2765, '2474', 'Eden Creek', 'NSW', 'AU', 486, ' 2474 Eden Creek New South Wales'),
3121
+ (2766, '2474', 'Edenville', 'NSW', 'AU', 486, ' 2474 Edenville New South Wales'),
3122
+ (2767, '2474', 'Afterlee', 'NSW', 'AU', 486, ' 2474 Afterlee New South Wales'),
3123
+ (2768, '2474', 'Smiths Creek', 'NSW', 'AU', 486, ' 2474 Smiths Creek New South Wales'),
3124
+ (2769, '2474', 'Sherwood', 'NSW', 'AU', 486, ' 2474 Sherwood New South Wales'),
3125
+ (2770, '2474', 'Terrace Creek', 'NSW', 'AU', 486, ' 2474 Terrace Creek New South Wales'),
3126
+ (2771, '2474', 'Toonumbar', 'NSW', 'AU', 486, ' 2474 Toonumbar New South Wales'),
3127
+ (2772, '2474', 'The Risk', 'NSW', 'AU', 486, ' 2474 The Risk New South Wales'),
3128
+ (2773, '2474', 'Unumgar', 'NSW', 'AU', 486, ' 2474 Unumgar New South Wales'),
3129
+ (2774, '2474', 'West Wiangaree', 'NSW', 'AU', 486, ' 2474 West Wiangaree New South Wales'),
3130
+ (2775, '2474', 'Wiangaree', 'NSW', 'AU', 486, ' 2474 Wiangaree New South Wales'),
3131
+ (2776, '2474', 'Wyneden', 'NSW', 'AU', 486, ' 2474 Wyneden New South Wales'),
3132
+ (2777, '2474', 'Upper Eden Creek', 'NSW', 'AU', 486, ' 2474 Upper Eden Creek New South Wales'),
3133
+ (2778, '2474', 'Upper Horseshoe Creek', 'NSW', 'AU', 486, ' 2474 Upper Horseshoe Creek New South Wales'),
3134
+ (2779, '2474', 'Wadeville', 'NSW', 'AU', 486, ' 2474 Wadeville New South Wales'),
3135
+ (2780, '2474', 'Warrazambil Creek', 'NSW', 'AU', 486, ' 2474 Warrazambil Creek New South Wales'),
3136
+ (2781, '2474', 'Kilgra', 'NSW', 'AU', 486, ' 2474 Kilgra New South Wales'),
3137
+ (2782, '2474', 'Kyogle', 'NSW', 'AU', 486, ' 2474 Kyogle New South Wales'),
3138
+ (2783, '2474', 'Little Back Creek', 'NSW', 'AU', 486, ' 2474 Little Back Creek New South Wales'),
3139
+ (2784, '2474', 'Loadstone', 'NSW', 'AU', 486, ' 2474 Loadstone New South Wales'),
3140
+ (2785, '2474', 'Lynchs Creek', 'NSW', 'AU', 486, ' 2474 Lynchs Creek New South Wales'),
3141
+ (2786, '2474', 'New Park', 'NSW', 'AU', 486, ' 2474 New Park New South Wales'),
3142
+ (2787, '2474', 'Old Grevillia', 'NSW', 'AU', 486, ' 2474 Old Grevillia New South Wales'),
3143
+ (2788, '2474', 'Rukenvale', 'NSW', 'AU', 486, ' 2474 Rukenvale New South Wales'),
3144
+ (2789, '2474', 'Roseberry', 'NSW', 'AU', 486, ' 2474 Roseberry New South Wales'),
3145
+ (2790, '2474', 'Roseberry Creek', 'NSW', 'AU', 486, ' 2474 Roseberry Creek New South Wales'),
3146
+ (2791, '2474', 'Sawpit Creek', 'NSW', 'AU', 486, ' 2474 Sawpit Creek New South Wales'),
3147
+ (2792, '2475', 'Urbenville', 'NSW', 'AU', 486, ' 2475 Urbenville New South Wales'),
3148
+ (2793, '2475', 'Upper Tooloom', 'NSW', 'AU', 486, ' 2475 Upper Tooloom New South Wales'),
3149
+ (2794, '2475', 'Tooloom', 'NSW', 'AU', 486, ' 2475 Tooloom New South Wales'),
3150
+ (2795, '2476', 'The Glen', 'NSW', 'AU', 486, ' 2476 The Glen New South Wales'),
3151
+ (2796, '2476', 'Woodenbong', 'NSW', 'AU', 486, ' 2476 Woodenbong New South Wales'),
3152
+ (2797, '2476', 'Old Koreelah', 'NSW', 'AU', 486, ' 2476 Old Koreelah New South Wales'),
3153
+ (2798, '2476', 'Lower Acacia Creek', 'NSW', 'AU', 486, ' 2476 Lower Acacia Creek New South Wales'),
3154
+ (2799, '2476', 'Muli Muli', 'NSW', 'AU', 486, ' 2476 Muli Muli New South Wales'),
3155
+ (2800, '2476', 'Lindesay Creek', 'NSW', 'AU', 486, ' 2476 Lindesay Creek New South Wales'),
3156
+ (2801, '2476', 'Legume', 'NSW', 'AU', 486, ' 2476 Legume New South Wales'),
3157
+ (2802, '2476', 'Koreelah', 'NSW', 'AU', 486, ' 2476 Koreelah New South Wales'),
3158
+ (2803, '2476', 'Acacia Creek', 'NSW', 'AU', 486, ' 2476 Acacia Creek New South Wales'),
3159
+ (2804, '2476', 'Boomi Creek', 'NSW', 'AU', 486, ' 2476 Boomi Creek New South Wales'),
3160
+ (2805, '2476', 'Brumby Plains', 'NSW', 'AU', 486, ' 2476 Brumby Plains New South Wales'),
3161
+ (2806, '2477', 'Dalwood', 'NSW', 'AU', 486, ' 2477 Dalwood New South Wales'),
3162
+ (2807, '2477', 'Cabbage Tree Island', 'NSW', 'AU', 486, ' 2477 Cabbage Tree Island New South Wales'),
3163
+ (2808, '2477', 'East Wardell', 'NSW', 'AU', 486, ' 2477 East Wardell New South Wales'),
3164
+ (2809, '2477', 'Goat Island', 'NSW', 'AU', 486, ' 2477 Goat Island New South Wales'),
3165
+ (2810, '2477', 'Alstonvale', 'NSW', 'AU', 486, ' 2477 Alstonvale New South Wales'),
3166
+ (2811, '2477', 'Alstonville', 'NSW', 'AU', 486, ' 2477 Alstonville New South Wales'),
3167
+ (2812, '2477', 'Bagotville', 'NSW', 'AU', 486, ' 2477 Bagotville New South Wales'),
3168
+ (2813, '2477', 'Lynwood', 'NSW', 'AU', 486, ' 2477 Lynwood New South Wales'),
3169
+ (2814, '2477', 'Meerschaum Vale', 'NSW', 'AU', 486, ' 2477 Meerschaum Vale New South Wales'),
3170
+ (2815, '2477', 'Pearces Creek', 'NSW', 'AU', 486, ' 2477 Pearces Creek New South Wales'),
3171
+ (2816, '2477', 'Rous', 'NSW', 'AU', 486, ' 2477 Rous New South Wales'),
3172
+ (2817, '2477', 'Rous Mill', 'NSW', 'AU', 486, ' 2477 Rous Mill New South Wales'),
3173
+ (2818, '2477', 'Wollongbar', 'NSW', 'AU', 486, ' 2477 Wollongbar New South Wales'),
3174
+ (2819, '2477', 'Uralba', 'NSW', 'AU', 486, ' 2477 Uralba New South Wales'),
3175
+ (2820, '2477', 'Wardell', 'NSW', 'AU', 486, ' 2477 Wardell New South Wales'),
3176
+ (2821, '2477', 'Tuckombil', 'NSW', 'AU', 486, ' 2477 Tuckombil New South Wales'),
3177
+ (2822, '2478', 'Tintenbar', 'NSW', 'AU', 486, ' 2478 Tintenbar New South Wales'),
3178
+ (2823, '2478', 'Teven', 'NSW', 'AU', 486, ' 2478 Teven New South Wales'),
3179
+ (2824, '2478', 'Skennars Head', 'NSW', 'AU', 486, ' 2478 Skennars Head New South Wales'),
3180
+ (2825, '2478', 'South Ballina', 'NSW', 'AU', 486, ' 2478 South Ballina New South Wales'),
3181
+ (2826, '2478', 'West Ballina', 'NSW', 'AU', 486, ' 2478 West Ballina New South Wales'),
3182
+ (2827, '2478', 'Patchs Beach', 'NSW', 'AU', 486, ' 2478 Patchs Beach New South Wales'),
3183
+ (2828, '2478', 'Pimlico', 'NSW', 'AU', 486, ' 2478 Pimlico New South Wales'),
3184
+ (2829, '2478', 'Pimlico Island', 'NSW', 'AU', 486, ' 2478 Pimlico Island New South Wales'),
3185
+ (2830, '2478', 'Lennox Head', 'NSW', 'AU', 486, ' 2478 Lennox Head New South Wales'),
3186
+ (2831, '2478', 'Keith Hall', 'NSW', 'AU', 486, ' 2478 Keith Hall New South Wales'),
3187
+ (2832, '2478', 'East Ballina', 'NSW', 'AU', 486, ' 2478 East Ballina New South Wales'),
3188
+ (2833, '2478', 'Empire Vale', 'NSW', 'AU', 486, ' 2478 Empire Vale New South Wales'),
3189
+ (2834, '2478', 'Cumbalum', 'NSW', 'AU', 486, ' 2478 Cumbalum New South Wales'),
3190
+ (2835, '2478', 'Coolgardie', 'NSW', 'AU', 486, ' 2478 Coolgardie New South Wales'),
3191
+ (2836, '2478', 'Ballina', 'NSW', 'AU', 486, ' 2478 Ballina New South Wales'),
3192
+ (2837, '2479', 'Bangalow', 'NSW', 'AU', 486, ' 2479 Bangalow New South Wales'),
3193
+ (2838, '2479', 'Brooklet', 'NSW', 'AU', 486, ' 2479 Brooklet New South Wales'),
3194
+ (2839, '2479', 'Binna Burra', 'NSW', 'AU', 486, ' 2479 Binna Burra New South Wales'),
3195
+ (2840, '2479', 'Coopers Shoot', 'NSW', 'AU', 486, ' 2479 Coopers Shoot New South Wales'),
3196
+ (2841, '2479', 'Coorabell', 'NSW', 'AU', 486, ' 2479 Coorabell New South Wales'),
3197
+ (2842, '2479', 'Fernleigh', 'NSW', 'AU', 486, ' 2479 Fernleigh New South Wales'),
3198
+ (2843, '2479', 'Knockrow', 'NSW', 'AU', 486, ' 2479 Knockrow New South Wales'),
3199
+ (2844, '2479', 'Mcleods Shoot', 'NSW', 'AU', 486, ' 2479 Mcleods Shoot New South Wales'),
3200
+ (2845, '2479', 'Possum Creek', 'NSW', 'AU', 486, ' 2479 Possum Creek New South Wales'),
3201
+ (2846, '2479', 'Nashua', 'NSW', 'AU', 486, ' 2479 Nashua New South Wales'),
3202
+ (2847, '2479', 'Newrybar', 'NSW', 'AU', 486, ' 2479 Newrybar New South Wales'),
3203
+ (2848, '2480', 'Nightcap', 'NSW', 'AU', 486, ' 2480 Nightcap New South Wales'),
3204
+ (2849, '2480', 'Nimbin', 'NSW', 'AU', 486, ' 2480 Nimbin New South Wales'),
3205
+ (2850, '2480', 'North Lismore', 'NSW', 'AU', 486, ' 2480 North Lismore New South Wales'),
3206
+ (2851, '2480', 'Richmond Hill', 'NSW', 'AU', 486, ' 2480 Richmond Hill New South Wales'),
3207
+ (2852, '2480', 'Repentance Creek', 'NSW', 'AU', 486, ' 2480 Repentance Creek New South Wales'),
3208
+ (2853, '2480', 'Numulgi', 'NSW', 'AU', 486, ' 2480 Numulgi New South Wales'),
3209
+ (2854, '2480', 'Ruthven', 'NSW', 'AU', 486, ' 2480 Ruthven New South Wales'),
3210
+ (2855, '2480', 'Rosebank', 'NSW', 'AU', 486, ' 2480 Rosebank New South Wales'),
3211
+ (2856, '2480', 'Rock Valley', 'NSW', 'AU', 486, ' 2480 Rock Valley New South Wales'),
3212
+ (2857, '2480', 'Mckees Hill', 'NSW', 'AU', 486, ' 2480 Mckees Hill New South Wales'),
3213
+ (2858, '2480', 'Mcleans Ridges', 'NSW', 'AU', 486, ' 2480 Mcleans Ridges New South Wales'),
3214
+ (2859, '2480', 'Modanville', 'NSW', 'AU', 486, ' 2480 Modanville New South Wales'),
3215
+ (2860, '2480', 'Monaltrie', 'NSW', 'AU', 486, ' 2480 Monaltrie New South Wales'),
3216
+ (2861, '2480', 'Marom Creek', 'NSW', 'AU', 486, ' 2480 Marom Creek New South Wales'),
3217
+ (2862, '2480', 'Mountain Top', 'NSW', 'AU', 486, ' 2480 Mountain Top New South Wales'),
3218
+ (2863, '2480', 'Lagoon Grass', 'NSW', 'AU', 486, ' 2480 Lagoon Grass New South Wales'),
3219
+ (2864, '2480', 'Koonorigan', 'NSW', 'AU', 486, ' 2480 Koonorigan New South Wales'),
3220
+ (2865, '2480', 'Leycester', 'NSW', 'AU', 486, ' 2480 Leycester New South Wales'),
3221
+ (2866, '2480', 'Larnook', 'NSW', 'AU', 486, ' 2480 Larnook New South Wales'),
3222
+ (2867, '2480', 'Lindendale', 'NSW', 'AU', 486, ' 2480 Lindendale New South Wales'),
3223
+ (2868, '2480', 'Lillian Rock', 'NSW', 'AU', 486, ' 2480 Lillian Rock New South Wales'),
3224
+ (2869, '2480', 'Loftville', 'NSW', 'AU', 486, ' 2480 Loftville New South Wales'),
3225
+ (2870, '2480', 'Lismore', 'NSW', 'AU', 486, ' 2480 Lismore New South Wales'),
3226
+ (2871, '2480', 'Lismore Heights', 'NSW', 'AU', 486, ' 2480 Lismore Heights New South Wales'),
3227
+ (2872, '2480', 'Woodlawn', 'NSW', 'AU', 486, ' 2480 Woodlawn New South Wales'),
3228
+ (2873, '2480', 'Whian Whian', 'NSW', 'AU', 486, ' 2480 Whian Whian New South Wales'),
3229
+ (2874, '2480', 'Wyrallah', 'NSW', 'AU', 486, ' 2480 Wyrallah New South Wales'),
3230
+ (2875, '2480', 'South Gundurimba', 'NSW', 'AU', 486, ' 2480 South Gundurimba New South Wales'),
3231
+ (2876, '2480', 'South Lismore', 'NSW', 'AU', 486, ' 2480 South Lismore New South Wales'),
3232
+ (2877, '2480', 'The Channon', 'NSW', 'AU', 486, ' 2480 The Channon New South Wales'),
3233
+ (2878, '2480', 'Terania Creek', 'NSW', 'AU', 486, ' 2480 Terania Creek New South Wales'),
3234
+ (2879, '2480', 'Stony Chute', 'NSW', 'AU', 486, ' 2480 Stony Chute New South Wales'),
3235
+ (2880, '2480', 'Tucki Tucki', 'NSW', 'AU', 486, ' 2480 Tucki Tucki New South Wales'),
3236
+ (2881, '2480', 'Tregeagle', 'NSW', 'AU', 486, ' 2480 Tregeagle New South Wales'),
3237
+ (2882, '2480', 'Tuckurimba', 'NSW', 'AU', 486, ' 2480 Tuckurimba New South Wales'),
3238
+ (2883, '2480', 'Tullera', 'NSW', 'AU', 486, ' 2480 Tullera New South Wales'),
3239
+ (2884, '2480', 'Tuncester', 'NSW', 'AU', 486, ' 2480 Tuncester New South Wales'),
3240
+ (2885, '2480', 'Tuntable Creek', 'NSW', 'AU', 486, ' 2480 Tuntable Creek New South Wales'),
3241
+ (2886, '2480', 'Federal', 'NSW', 'AU', 486, ' 2480 Federal New South Wales'),
3242
+ (2887, '2480', 'Fernside', 'NSW', 'AU', 486, ' 2480 Fernside New South Wales'),
3243
+ (2888, '2480', 'Georgica', 'NSW', 'AU', 486, ' 2480 Georgica New South Wales'),
3244
+ (2889, '2480', 'Girards Hill', 'NSW', 'AU', 486, ' 2480 Girards Hill New South Wales'),
3245
+ (2890, '2480', 'Goolmangar', 'NSW', 'AU', 486, ' 2480 Goolmangar New South Wales'),
3246
+ (2891, '2480', 'Goonellabah', 'NSW', 'AU', 486, ' 2480 Goonellabah New South Wales'),
3247
+ (2892, '2480', 'Keerrong', 'NSW', 'AU', 486, ' 2480 Keerrong New South Wales'),
3248
+ (2893, '2480', 'Jiggi', 'NSW', 'AU', 486, ' 2480 Jiggi New South Wales'),
3249
+ (2894, '2480', 'Howards Grass', 'NSW', 'AU', 486, ' 2480 Howards Grass New South Wales'),
3250
+ (2895, '2480', 'Eureka', 'NSW', 'AU', 486, ' 2480 Eureka New South Wales'),
3251
+ (2896, '2480', 'Dunoon', 'NSW', 'AU', 486, ' 2480 Dunoon New South Wales'),
3252
+ (2897, '2480', 'Dungarubba', 'NSW', 'AU', 486, ' 2480 Dungarubba New South Wales'),
3253
+ (2898, '2480', 'East Lismore', 'NSW', 'AU', 486, ' 2480 East Lismore New South Wales'),
3254
+ (2899, '2480', 'Eltham', 'NSW', 'AU', 486, ' 2480 Eltham New South Wales'),
3255
+ (2900, '2480', 'Coffee Camp', 'NSW', 'AU', 486, ' 2480 Coffee Camp New South Wales'),
3256
+ (2901, '2480', 'Corndale', 'NSW', 'AU', 486, ' 2480 Corndale New South Wales'),
3257
+ (2902, '2480', 'Dorroughby', 'NSW', 'AU', 486, ' 2480 Dorroughby New South Wales'),
3258
+ (2903, '2480', 'Clovass', 'NSW', 'AU', 486, ' 2480 Clovass New South Wales'),
3259
+ (2904, '2480', 'Clunes', 'NSW', 'AU', 486, ' 2480 Clunes New South Wales'),
3260
+ (2905, '2480', 'Chilcotts Grass', 'NSW', 'AU', 486, ' 2480 Chilcotts Grass New South Wales'),
3261
+ (2906, '2480', 'Bungabbee', 'NSW', 'AU', 486, ' 2480 Bungabbee New South Wales'),
3262
+ (2907, '2480', 'Caniaba', 'NSW', 'AU', 486, ' 2480 Caniaba New South Wales'),
3263
+ (2908, '2480', 'Blue Knob', 'NSW', 'AU', 486, ' 2480 Blue Knob New South Wales'),
3264
+ (2909, '2480', 'Blakebrook', 'NSW', 'AU', 486, ' 2480 Blakebrook New South Wales'),
3265
+ (2910, '2480', 'Booerie Creek', 'NSW', 'AU', 486, ' 2480 Booerie Creek New South Wales'),
3266
+ (2911, '2480', 'Boat Harbour', 'NSW', 'AU', 486, ' 2480 Boat Harbour New South Wales'),
3267
+ (2912, '2480', 'Boorabee Park', 'NSW', 'AU', 486, ' 2480 Boorabee Park New South Wales'),
3268
+ (2913, '2480', 'Booyong', 'NSW', 'AU', 486, ' 2480 Booyong New South Wales'),
3269
+ (2914, '2480', 'Bentley', 'NSW', 'AU', 486, ' 2480 Bentley New South Wales'),
3270
+ (2915, '2480', 'Bexhill', 'NSW', 'AU', 486, ' 2480 Bexhill New South Wales'),
3271
+ (2916, '2481', 'Broken Head', 'NSW', 'AU', 486, ' 2481 Broken Head New South Wales'),
3272
+ (2917, '2481', 'Byron Bay', 'NSW', 'AU', 486, ' 2481 Byron Bay New South Wales'),
3273
+ (2918, '2481', 'Hayters Hill', 'NSW', 'AU', 486, ' 2481 Hayters Hill New South Wales'),
3274
+ (2919, '2481', 'Ewingsdale', 'NSW', 'AU', 486, ' 2481 Ewingsdale New South Wales'),
3275
+ (2920, '2481', 'Tyagarah', 'NSW', 'AU', 486, ' 2481 Tyagarah New South Wales'),
3276
+ (2921, '2481', 'Suffolk Park', 'NSW', 'AU', 486, ' 2481 Suffolk Park New South Wales'),
3277
+ (2922, '2481', 'Talofa', 'NSW', 'AU', 486, ' 2481 Talofa New South Wales'),
3278
+ (2923, '2481', 'Skinners Shoot', 'NSW', 'AU', 486, ' 2481 Skinners Shoot New South Wales'),
3279
+ (2924, '2481', 'Myocum', 'NSW', 'AU', 486, ' 2481 Myocum New South Wales'),
3280
+ (2925, '2482', 'Palmwoods', 'NSW', 'AU', 486, ' 2482 Palmwoods New South Wales'),
3281
+ (2926, '2482', 'Koonyum Range', 'NSW', 'AU', 486, ' 2482 Koonyum Range New South Wales'),
3282
+ (2927, '2482', 'Mullumbimby', 'NSW', 'AU', 486, ' 2482 Mullumbimby New South Wales'),
3283
+ (2928, '2482', 'Mullumbimby Creek', 'NSW', 'AU', 486, ' 2482 Mullumbimby Creek New South Wales'),
3284
+ (2929, '2482', 'Main Arm', 'NSW', 'AU', 486, ' 2482 Main Arm New South Wales'),
3285
+ (2930, '2482', 'Montecollum', 'NSW', 'AU', 486, ' 2482 Montecollum New South Wales'),
3286
+ (2931, '2482', 'Upper Coopers Creek', 'NSW', 'AU', 486, ' 2482 Upper Coopers Creek New South Wales'),
3287
+ (2932, '2482', 'Wilsons Creek', 'NSW', 'AU', 486, ' 2482 Wilsons Creek New South Wales'),
3288
+ (2933, '2482', 'Wanganui', 'NSW', 'AU', 486, ' 2482 Wanganui New South Wales'),
3289
+ (2934, '2482', 'Upper Wilsons Creek', 'NSW', 'AU', 486, ' 2482 Upper Wilsons Creek New South Wales'),
3290
+ (2935, '2482', 'Upper Main Arm', 'NSW', 'AU', 486, ' 2482 Upper Main Arm New South Wales'),
3291
+ (2936, '2482', 'Goonengerry', 'NSW', 'AU', 486, ' 2482 Goonengerry New South Wales'),
3292
+ (2937, '2482', 'Huonbrook', 'NSW', 'AU', 486, ' 2482 Huonbrook New South Wales'),
3293
+ (2938, '2483', 'Burringbar', 'NSW', 'AU', 486, ' 2483 Burringbar New South Wales'),
3294
+ (2939, '2483', 'Crabbes Creek', 'NSW', 'AU', 486, ' 2483 Crabbes Creek New South Wales'),
3295
+ (2940, '2483', 'Brunswick Heads', 'NSW', 'AU', 486, ' 2483 Brunswick Heads New South Wales'),
3296
+ (2941, '2483', 'Billinudgel', 'NSW', 'AU', 486, ' 2483 Billinudgel New South Wales'),
3297
+ (2942, '2483', 'Wooyung', 'NSW', 'AU', 486, ' 2483 Wooyung New South Wales'),
3298
+ (2943, '2483', 'Yelgun', 'NSW', 'AU', 486, ' 2483 Yelgun New South Wales'),
3299
+ (2944, '2483', 'Upper Burringbar', 'NSW', 'AU', 486, ' 2483 Upper Burringbar New South Wales'),
3300
+ (2945, '2483', 'The Pocket', 'NSW', 'AU', 486, ' 2483 The Pocket New South Wales'),
3301
+ (2946, '2483', 'Sleepy Hollow', 'NSW', 'AU', 486, ' 2483 Sleepy Hollow New South Wales'),
3302
+ (2947, '2483', 'South Golden Beach', 'NSW', 'AU', 486, ' 2483 South Golden Beach New South Wales'),
3303
+ (2948, '2483', 'Mooball', 'NSW', 'AU', 486, ' 2483 Mooball New South Wales'),
3304
+ (2949, '2483', 'Middle Pocket', 'NSW', 'AU', 486, ' 2483 Middle Pocket New South Wales'),
3305
+ (2950, '2483', 'Ocean Shores', 'NSW', 'AU', 486, ' 2483 Ocean Shores New South Wales'),
3306
+ (2951, '2483', 'New Brighton', 'NSW', 'AU', 486, ' 2483 New Brighton New South Wales'),
3307
+ (2952, '2484', 'Urliup', 'NSW', 'AU', 486, ' 2484 Urliup New South Wales'),
3308
+ (2953, '2484', 'Wardrop Valley', 'NSW', 'AU', 486, ' 2484 Wardrop Valley New South Wales'),
3309
+ (2954, '2484', 'Zara', 'NSW', 'AU', 486, ' 2484 Zara New South Wales'),
3310
+ (2955, '2484', 'Tyalgum', 'NSW', 'AU', 486, ' 2484 Tyalgum New South Wales'),
3311
+ (2956, '2484', 'Tyalgum Creek', 'NSW', 'AU', 486, ' 2484 Tyalgum Creek New South Wales'),
3312
+ (2957, '2484', 'Tygalgah', 'NSW', 'AU', 486, ' 2484 Tygalgah New South Wales'),
3313
+ (2958, '2484', 'Uki', 'NSW', 'AU', 486, ' 2484 Uki New South Wales'),
3314
+ (2959, '2484', 'Upper Crystal Creek', 'NSW', 'AU', 486, ' 2484 Upper Crystal Creek New South Wales'),
3315
+ (2960, '2484', 'Kunghur', 'NSW', 'AU', 486, ' 2484 Kunghur New South Wales'),
3316
+ (2961, '2484', 'Kunghur Creek', 'NSW', 'AU', 486, ' 2484 Kunghur Creek New South Wales'),
3317
+ (2962, '2484', 'Kynnumboon', 'NSW', 'AU', 486, ' 2484 Kynnumboon New South Wales'),
3318
+ (2963, '2484', 'Limpinwood', 'NSW', 'AU', 486, ' 2484 Limpinwood New South Wales'),
3319
+ (2964, '2484', 'Mebbin', 'NSW', 'AU', 486, ' 2484 Mebbin New South Wales'),
3320
+ (2965, '2484', 'Midginbil', 'NSW', 'AU', 486, ' 2484 Midginbil New South Wales'),
3321
+ (2966, '2484', 'Mount Burrell', 'NSW', 'AU', 486, ' 2484 Mount Burrell New South Wales'),
3322
+ (2967, '2484', 'Mount Warning', 'NSW', 'AU', 486, ' 2484 Mount Warning New South Wales'),
3323
+ (2968, '2484', 'Murwillumbah', 'NSW', 'AU', 486, ' 2484 Murwillumbah New South Wales'),
3324
+ (2969, '2484', 'Murwillumbah South', 'NSW', 'AU', 486, ' 2484 Murwillumbah South New South Wales'),
3325
+ (2970, '2484', 'Nobbys Creek', 'NSW', 'AU', 486, ' 2484 Nobbys Creek New South Wales'),
3326
+ (2971, '2484', 'North Arm', 'NSW', 'AU', 486, ' 2484 North Arm New South Wales'),
3327
+ (2972, '2484', 'Hopkins Creek', 'NSW', 'AU', 486, ' 2484 Hopkins Creek New South Wales'),
3328
+ (2973, '2484', 'Kielvale', 'NSW', 'AU', 486, ' 2484 Kielvale New South Wales'),
3329
+ (2974, '2484', 'Numinbah', 'NSW', 'AU', 486, ' 2484 Numinbah New South Wales'),
3330
+ (2975, '2484', 'Nunderi', 'NSW', 'AU', 486, ' 2484 Nunderi New South Wales'),
3331
+ (2976, '2484', 'Palmvale', 'NSW', 'AU', 486, ' 2484 Palmvale New South Wales'),
3332
+ (2977, '2484', 'Pumpenbil', 'NSW', 'AU', 486, ' 2484 Pumpenbil New South Wales'),
3333
+ (2978, '2484', 'Reserve Creek', 'NSW', 'AU', 486, ' 2484 Reserve Creek New South Wales'),
3334
+ (2979, '2484', 'Round Mountain', 'NSW', 'AU', 486, ' 2484 Round Mountain New South Wales'),
3335
+ (2980, '2484', 'Rowlands Creek', 'NSW', 'AU', 486, ' 2484 Rowlands Creek New South Wales'),
3336
+ (2981, '2484', 'Smiths Creek', 'NSW', 'AU', 486, ' 2484 Smiths Creek New South Wales'),
3337
+ (2982, '2484', 'South Murwillumbah', 'NSW', 'AU', 486, ' 2484 South Murwillumbah New South Wales'),
3338
+ (2983, '2484', 'Stokers Siding', 'NSW', 'AU', 486, ' 2484 Stokers Siding New South Wales'),
3339
+ (2984, '2484', 'Terragon', 'NSW', 'AU', 486, ' 2484 Terragon New South Wales'),
3340
+ (2985, '2484', 'Tomewin', 'NSW', 'AU', 486, ' 2484 Tomewin New South Wales'),
3341
+ (2986, '2484', 'Bray Park', 'NSW', 'AU', 486, ' 2484 Bray Park New South Wales'),
3342
+ (2987, '2484', 'Brays Creek', 'NSW', 'AU', 486, ' 2484 Brays Creek New South Wales'),
3343
+ (2988, '2484', 'Back Creek', 'NSW', 'AU', 486, ' 2484 Back Creek New South Wales'),
3344
+ (2989, '2484', 'Byangum', 'NSW', 'AU', 486, ' 2484 Byangum New South Wales'),
3345
+ (2990, '2484', 'Byrrill Creek', 'NSW', 'AU', 486, ' 2484 Byrrill Creek New South Wales'),
3346
+ (2991, '2484', 'Chowan Creek', 'NSW', 'AU', 486, ' 2484 Chowan Creek New South Wales'),
3347
+ (2992, '2484', 'Clothiers Creek', 'NSW', 'AU', 486, ' 2484 Clothiers Creek New South Wales'),
3348
+ (2993, '2484', 'Cedar Creek', 'NSW', 'AU', 486, ' 2484 Cedar Creek New South Wales'),
3349
+ (2994, '2484', 'Chillingham', 'NSW', 'AU', 486, ' 2484 Chillingham New South Wales'),
3350
+ (2995, '2484', 'Eungella', 'NSW', 'AU', 486, ' 2484 Eungella New South Wales'),
3351
+ (2996, '2484', 'Eviron', 'NSW', 'AU', 486, ' 2484 Eviron New South Wales'),
3352
+ (2997, '2484', 'Farrants Hill', 'NSW', 'AU', 486, ' 2484 Farrants Hill New South Wales'),
3353
+ (2998, '2484', 'Fernvale', 'NSW', 'AU', 486, ' 2484 Fernvale New South Wales'),
3354
+ (2999, '2484', 'Commissioners Creek', 'NSW', 'AU', 486, ' 2484 Commissioners Creek New South Wales'),
3355
+ (3000, '2484', 'Condong', 'NSW', 'AU', 486, ' 2484 Condong New South Wales'),
3356
+ (3001, '2484', 'Crystal Creek', 'NSW', 'AU', 486, ' 2484 Crystal Creek New South Wales'),
3357
+ (3002, '2484', 'Cudgera Creek', 'NSW', 'AU', 486, ' 2484 Cudgera Creek New South Wales'),
3358
+ (3003, '2484', 'Doon Doon', 'NSW', 'AU', 486, ' 2484 Doon Doon New South Wales'),
3359
+ (3004, '2484', 'Dulguigan', 'NSW', 'AU', 486, ' 2484 Dulguigan New South Wales'),
3360
+ (3005, '2484', 'Dum Dum', 'NSW', 'AU', 486, ' 2484 Dum Dum New South Wales'),
3361
+ (3006, '2484', 'Dunbible', 'NSW', 'AU', 486, ' 2484 Dunbible New South Wales'),
3362
+ (3007, '2484', 'Dungay', 'NSW', 'AU', 486, ' 2484 Dungay New South Wales'),
3363
+ (3008, '2485', 'Tweed Heads', 'NSW', 'AU', 486, ' 2485 Tweed Heads New South Wales'),
3364
+ (3009, '2485', 'Tweed Heads West', 'NSW', 'AU', 486, ' 2485 Tweed Heads West New South Wales'),
3365
+ (3010, '2486', 'Upper Duroby', 'NSW', 'AU', 486, ' 2486 Upper Duroby New South Wales'),
3366
+ (3011, '2486', 'Tweed Heads South', 'NSW', 'AU', 486, ' 2486 Tweed Heads South New South Wales'),
3367
+ (3012, '2486', 'Terranora', 'NSW', 'AU', 486, ' 2486 Terranora New South Wales'),
3368
+ (3013, '2486', 'Glengarrie', 'NSW', 'AU', 486, ' 2486 Glengarrie New South Wales'),
3369
+ (3014, '2486', 'Piggabeen', 'NSW', 'AU', 486, ' 2486 Piggabeen New South Wales'),
3370
+ (3015, '2486', 'Duroby', 'NSW', 'AU', 486, ' 2486 Duroby New South Wales'),
3371
+ (3016, '2486', 'Cobaki', 'NSW', 'AU', 486, ' 2486 Cobaki New South Wales'),
3372
+ (3017, '2486', 'Cobaki Lakes', 'NSW', 'AU', 486, ' 2486 Cobaki Lakes New South Wales'),
3373
+ (3018, '2486', 'Carool', 'NSW', 'AU', 486, ' 2486 Carool New South Wales'),
3374
+ (3019, '2486', 'Banora Point', 'NSW', 'AU', 486, ' 2486 Banora Point New South Wales'),
3375
+ (3020, '2486', 'Bilambil', 'NSW', 'AU', 486, ' 2486 Bilambil New South Wales'),
3376
+ (3021, '2486', 'Bilambil Heights', 'NSW', 'AU', 486, ' 2486 Bilambil Heights New South Wales'),
3377
+ (3022, '2486', 'Bungalora', 'NSW', 'AU', 486, ' 2486 Bungalora New South Wales'),
3378
+ (3023, '2487', 'Casuarina', 'NSW', 'AU', 486, ' 2487 Casuarina New South Wales'),
3379
+ (3024, '2487', 'Chinderah', 'NSW', 'AU', 486, ' 2487 Chinderah New South Wales'),
3380
+ (3025, '2487', 'Fingal Head', 'NSW', 'AU', 486, ' 2487 Fingal Head New South Wales'),
3381
+ (3026, '2487', 'Duranbah', 'NSW', 'AU', 486, ' 2487 Duranbah New South Wales'),
3382
+ (3027, '2487', 'Cudgen', 'NSW', 'AU', 486, ' 2487 Cudgen New South Wales'),
3383
+ (3028, '2487', 'Kings Forest', 'NSW', 'AU', 486, ' 2487 Kings Forest New South Wales'),
3384
+ (3029, '2487', 'Kingscliff', 'NSW', 'AU', 486, ' 2487 Kingscliff New South Wales'),
3385
+ (3030, '2487', 'Stotts Creek', 'NSW', 'AU', 486, ' 2487 Stotts Creek New South Wales'),
3386
+ (3031, '2488', 'Tanglewood', 'NSW', 'AU', 486, ' 2488 Tanglewood New South Wales'),
3387
+ (3032, '2488', 'Cabarita Beach', 'NSW', 'AU', 486, ' 2488 Cabarita Beach New South Wales'),
3388
+ (3033, '2488', 'Bogangar', 'NSW', 'AU', 486, ' 2488 Bogangar New South Wales'),
3389
+ (3034, '2489', 'Hastings Point', 'NSW', 'AU', 486, ' 2489 Hastings Point New South Wales'),
3390
+ (3035, '2489', 'Pottsville', 'NSW', 'AU', 486, ' 2489 Pottsville New South Wales'),
3391
+ (3036, '2489', 'Pottsville Beach', 'NSW', 'AU', 486, ' 2489 Pottsville Beach New South Wales'),
3392
+ (3037, '2490', 'North Tumbulgum', 'NSW', 'AU', 486, ' 2490 North Tumbulgum New South Wales'),
3393
+ (3038, '2490', 'Tumbulgum', 'NSW', 'AU', 486, ' 2490 Tumbulgum New South Wales'),
3394
+ (3039, '2500', 'Mangerton', 'NSW', 'AU', 486, ' 2500 Mangerton New South Wales'),
3395
+ (3040, '2500', 'Keiraville', 'NSW', 'AU', 486, ' 2500 Keiraville New South Wales'),
3396
+ (3041, '2500', 'North Wollongong', 'NSW', 'AU', 486, ' 2500 North Wollongong New South Wales');
3397
+ INSERT INTO {$this->getTable('candf_pcs')} (`entity_id`, `postcode`, `city`, `state`, `country_id`, `region_id`, `fulltext`) VALUES
3398
+ (3042, '2500', 'Mount Keira', 'NSW', 'AU', 486, ' 2500 Mount Keira New South Wales'),
3399
+ (3043, '2500', 'Mount Saint Thomas', 'NSW', 'AU', 486, ' 2500 Mount Saint Thomas New South Wales'),
3400
+ (3044, '2500', 'Gwynneville', 'NSW', 'AU', 486, ' 2500 Gwynneville New South Wales'),
3401
+ (3045, '2500', 'Coniston', 'NSW', 'AU', 486, ' 2500 Coniston New South Wales'),
3402
+ (3046, '2500', 'West Wollongong', 'NSW', 'AU', 486, ' 2500 West Wollongong New South Wales'),
3403
+ (3047, '2500', 'Wollongong', 'NSW', 'AU', 486, ' 2500 Wollongong New South Wales'),
3404
+ (3048, '2500', 'Wollongong West', 'NSW', 'AU', 486, ' 2500 Wollongong West New South Wales'),
3405
+ (3049, '2500', 'Spring Hill', 'NSW', 'AU', 486, ' 2500 Spring Hill New South Wales'),
3406
+ (3050, '2502', 'Primbee', 'NSW', 'AU', 486, ' 2502 Primbee New South Wales'),
3407
+ (3051, '2502', 'Warrawong', 'NSW', 'AU', 486, ' 2502 Warrawong New South Wales'),
3408
+ (3052, '2502', 'Cringila', 'NSW', 'AU', 486, ' 2502 Cringila New South Wales'),
3409
+ (3053, '2502', 'Lake Heights', 'NSW', 'AU', 486, ' 2502 Lake Heights New South Wales'),
3410
+ (3054, '2505', 'Port Kembla', 'NSW', 'AU', 486, ' 2505 Port Kembla New South Wales'),
3411
+ (3055, '2506', 'Berkeley', 'NSW', 'AU', 486, ' 2506 Berkeley New South Wales'),
3412
+ (3056, '2508', 'Otford', 'NSW', 'AU', 486, ' 2508 Otford New South Wales'),
3413
+ (3057, '2508', 'Maddens Plains', 'NSW', 'AU', 486, ' 2508 Maddens Plains New South Wales'),
3414
+ (3058, '2508', 'Lilyvale', 'NSW', 'AU', 486, ' 2508 Lilyvale New South Wales'),
3415
+ (3059, '2508', 'Darkes Forest', 'NSW', 'AU', 486, ' 2508 Darkes Forest New South Wales'),
3416
+ (3060, '2508', 'Coalcliff', 'NSW', 'AU', 486, ' 2508 Coalcliff New South Wales'),
3417
+ (3061, '2508', 'Helensburgh', 'NSW', 'AU', 486, ' 2508 Helensburgh New South Wales'),
3418
+ (3062, '2508', 'Stanwell Park', 'NSW', 'AU', 486, ' 2508 Stanwell Park New South Wales'),
3419
+ (3063, '2508', 'Stanwell Tops', 'NSW', 'AU', 486, ' 2508 Stanwell Tops New South Wales'),
3420
+ (3064, '2508', 'Woronora Dam', 'NSW', 'AU', 486, ' 2508 Woronora Dam New South Wales'),
3421
+ (3065, '2515', 'Wombarra', 'NSW', 'AU', 486, ' 2515 Wombarra New South Wales'),
3422
+ (3066, '2515', 'Scarborough', 'NSW', 'AU', 486, ' 2515 Scarborough New South Wales'),
3423
+ (3067, '2515', 'Thirroul', 'NSW', 'AU', 486, ' 2515 Thirroul New South Wales'),
3424
+ (3068, '2515', 'Coledale', 'NSW', 'AU', 486, ' 2515 Coledale New South Wales'),
3425
+ (3069, '2515', 'Clifton', 'NSW', 'AU', 486, ' 2515 Clifton New South Wales'),
3426
+ (3070, '2515', 'Austinmer', 'NSW', 'AU', 486, ' 2515 Austinmer New South Wales'),
3427
+ (3071, '2516', 'Bulli', 'NSW', 'AU', 486, ' 2516 Bulli New South Wales'),
3428
+ (3072, '2517', 'Russell Vale', 'NSW', 'AU', 486, ' 2517 Russell Vale New South Wales'),
3429
+ (3073, '2517', 'Woonona', 'NSW', 'AU', 486, ' 2517 Woonona New South Wales'),
3430
+ (3074, '2517', 'Woonona East', 'NSW', 'AU', 486, ' 2517 Woonona East New South Wales'),
3431
+ (3075, '2518', 'Towradgi', 'NSW', 'AU', 486, ' 2518 Towradgi New South Wales'),
3432
+ (3076, '2518', 'Tarrawanna', 'NSW', 'AU', 486, ' 2518 Tarrawanna New South Wales'),
3433
+ (3077, '2518', 'Corrimal', 'NSW', 'AU', 486, ' 2518 Corrimal New South Wales'),
3434
+ (3078, '2518', 'Corrimal East', 'NSW', 'AU', 486, ' 2518 Corrimal East New South Wales'),
3435
+ (3079, '2518', 'East Corrimal', 'NSW', 'AU', 486, ' 2518 East Corrimal New South Wales'),
3436
+ (3080, '2518', 'Bellambi', 'NSW', 'AU', 486, ' 2518 Bellambi New South Wales'),
3437
+ (3081, '2519', 'Balgownie', 'NSW', 'AU', 486, ' 2519 Balgownie New South Wales'),
3438
+ (3082, '2519', 'Fairy Meadow', 'NSW', 'AU', 486, ' 2519 Fairy Meadow New South Wales'),
3439
+ (3083, '2519', 'Fernhill', 'NSW', 'AU', 486, ' 2519 Fernhill New South Wales'),
3440
+ (3084, '2519', 'Mount Ousley', 'NSW', 'AU', 486, ' 2519 Mount Ousley New South Wales'),
3441
+ (3085, '2519', 'Mount Pleasant', 'NSW', 'AU', 486, ' 2519 Mount Pleasant New South Wales'),
3442
+ (3086, '2520', 'Wollongong', 'NSW', 'AU', 486, ' 2520 Wollongong New South Wales'),
3443
+ (3087, '2525', 'Figtree', 'NSW', 'AU', 486, ' 2525 Figtree New South Wales'),
3444
+ (3088, '2526', 'Farmborough Heights', 'NSW', 'AU', 486, ' 2526 Farmborough Heights New South Wales'),
3445
+ (3089, '2526', 'Cordeaux', 'NSW', 'AU', 486, ' 2526 Cordeaux New South Wales'),
3446
+ (3090, '2526', 'Cordeaux Heights', 'NSW', 'AU', 486, ' 2526 Cordeaux Heights New South Wales'),
3447
+ (3091, '2526', 'Mount Kembla', 'NSW', 'AU', 486, ' 2526 Mount Kembla New South Wales'),
3448
+ (3092, '2526', 'Kembla Grange', 'NSW', 'AU', 486, ' 2526 Kembla Grange New South Wales'),
3449
+ (3093, '2526', 'Kembla Heights', 'NSW', 'AU', 486, ' 2526 Kembla Heights New South Wales'),
3450
+ (3094, '2526', 'Unanderra', 'NSW', 'AU', 486, ' 2526 Unanderra New South Wales'),
3451
+ (3095, '2527', 'Tullimbar', 'NSW', 'AU', 486, ' 2527 Tullimbar New South Wales'),
3452
+ (3096, '2527', 'Tongarra', 'NSW', 'AU', 486, ' 2527 Tongarra New South Wales'),
3453
+ (3097, '2527', 'Yellow Rock', 'NSW', 'AU', 486, ' 2527 Yellow Rock New South Wales'),
3454
+ (3098, '2527', 'North Macquarie', 'NSW', 'AU', 486, ' 2527 North Macquarie New South Wales'),
3455
+ (3099, '2527', 'Croom', 'NSW', 'AU', 486, ' 2527 Croom New South Wales'),
3456
+ (3100, '2527', 'Albion Park', 'NSW', 'AU', 486, ' 2527 Albion Park New South Wales'),
3457
+ (3101, '2527', 'Albion Park Rail', 'NSW', 'AU', 486, ' 2527 Albion Park Rail New South Wales'),
3458
+ (3102, '2527', 'Calderwood', 'NSW', 'AU', 486, ' 2527 Calderwood New South Wales'),
3459
+ (3103, '2528', 'Barrack Heights', 'NSW', 'AU', 486, ' 2528 Barrack Heights New South Wales'),
3460
+ (3104, '2528', 'Barrack Point', 'NSW', 'AU', 486, ' 2528 Barrack Point New South Wales'),
3461
+ (3105, '2528', 'Mount Warrigal', 'NSW', 'AU', 486, ' 2528 Mount Warrigal New South Wales'),
3462
+ (3106, '2528', 'Lake Illawarra', 'NSW', 'AU', 486, ' 2528 Lake Illawarra New South Wales'),
3463
+ (3107, '2528', 'Warilla', 'NSW', 'AU', 486, ' 2528 Warilla New South Wales'),
3464
+ (3108, '2528', 'Windang', 'NSW', 'AU', 486, ' 2528 Windang New South Wales'),
3465
+ (3109, '2529', 'Shell Cove', 'NSW', 'AU', 486, ' 2529 Shell Cove New South Wales'),
3466
+ (3110, '2529', 'Shellharbour', 'NSW', 'AU', 486, ' 2529 Shellharbour New South Wales'),
3467
+ (3111, '2529', 'Shellharbour City Centre', 'NSW', 'AU', 486, ' 2529 Shellharbour City Centre New South Wales'),
3468
+ (3112, '2529', 'Oak Flats', 'NSW', 'AU', 486, ' 2529 Oak Flats New South Wales'),
3469
+ (3113, '2529', 'Dunmore', 'NSW', 'AU', 486, ' 2529 Dunmore New South Wales'),
3470
+ (3114, '2529', 'Flinders', 'NSW', 'AU', 486, ' 2529 Flinders New South Wales'),
3471
+ (3115, '2529', 'Blackbutt', 'NSW', 'AU', 486, ' 2529 Blackbutt New South Wales'),
3472
+ (3116, '2530', 'Brownsville', 'NSW', 'AU', 486, ' 2530 Brownsville New South Wales'),
3473
+ (3117, '2530', 'Cleveland', 'NSW', 'AU', 486, ' 2530 Cleveland New South Wales'),
3474
+ (3118, '2530', 'Avondale', 'NSW', 'AU', 486, ' 2530 Avondale New South Wales'),
3475
+ (3119, '2530', 'Haywards Bay', 'NSW', 'AU', 486, ' 2530 Haywards Bay New South Wales'),
3476
+ (3120, '2530', 'Kanahooka', 'NSW', 'AU', 486, ' 2530 Kanahooka New South Wales'),
3477
+ (3121, '2530', 'Horsley', 'NSW', 'AU', 486, ' 2530 Horsley New South Wales'),
3478
+ (3122, '2530', 'Huntley', 'NSW', 'AU', 486, ' 2530 Huntley New South Wales'),
3479
+ (3123, '2530', 'Dombarton', 'NSW', 'AU', 486, ' 2530 Dombarton New South Wales'),
3480
+ (3124, '2530', 'Dapto', 'NSW', 'AU', 486, ' 2530 Dapto New South Wales'),
3481
+ (3125, '2530', 'Penrose', 'NSW', 'AU', 486, ' 2530 Penrose New South Wales'),
3482
+ (3126, '2530', 'Koonawarra', 'NSW', 'AU', 486, ' 2530 Koonawarra New South Wales'),
3483
+ (3127, '2530', 'Marshall Mount', 'NSW', 'AU', 486, ' 2530 Marshall Mount New South Wales'),
3484
+ (3128, '2530', 'Wongawilli', 'NSW', 'AU', 486, ' 2530 Wongawilli New South Wales'),
3485
+ (3129, '2530', 'Yallah', 'NSW', 'AU', 486, ' 2530 Yallah New South Wales'),
3486
+ (3130, '2533', 'Jamberoo', 'NSW', 'AU', 486, ' 2533 Jamberoo New South Wales'),
3487
+ (3131, '2533', 'Jerrara', 'NSW', 'AU', 486, ' 2533 Jerrara New South Wales'),
3488
+ (3132, '2533', 'Kiama', 'NSW', 'AU', 486, ' 2533 Kiama New South Wales'),
3489
+ (3133, '2533', 'Kiama Downs', 'NSW', 'AU', 486, ' 2533 Kiama Downs New South Wales'),
3490
+ (3134, '2533', 'Kiama Heights', 'NSW', 'AU', 486, ' 2533 Kiama Heights New South Wales'),
3491
+ (3135, '2533', 'Minnamurra', 'NSW', 'AU', 486, ' 2533 Minnamurra New South Wales'),
3492
+ (3136, '2533', 'Saddleback Mountain', 'NSW', 'AU', 486, ' 2533 Saddleback Mountain New South Wales'),
3493
+ (3137, '2533', 'Bombo', 'NSW', 'AU', 486, ' 2533 Bombo New South Wales'),
3494
+ (3138, '2533', 'Curramore', 'NSW', 'AU', 486, ' 2533 Curramore New South Wales'),
3495
+ (3139, '2534', 'Broughton Village', 'NSW', 'AU', 486, ' 2534 Broughton Village New South Wales'),
3496
+ (3140, '2534', 'Rose Valley', 'NSW', 'AU', 486, ' 2534 Rose Valley New South Wales'),
3497
+ (3141, '2534', 'Toolijooa', 'NSW', 'AU', 486, ' 2534 Toolijooa New South Wales'),
3498
+ (3142, '2534', 'Werri Beach', 'NSW', 'AU', 486, ' 2534 Werri Beach New South Wales'),
3499
+ (3143, '2534', 'Foxground', 'NSW', 'AU', 486, ' 2534 Foxground New South Wales'),
3500
+ (3144, '2534', 'Gerringong', 'NSW', 'AU', 486, ' 2534 Gerringong New South Wales'),
3501
+ (3145, '2534', 'Gerroa', 'NSW', 'AU', 486, ' 2534 Gerroa New South Wales'),
3502
+ (3146, '2534', 'Willow Vale', 'NSW', 'AU', 486, ' 2534 Willow Vale New South Wales'),
3503
+ (3147, '2535', 'Woodhill', 'NSW', 'AU', 486, ' 2535 Woodhill New South Wales'),
3504
+ (3148, '2535', 'Far Meadow', 'NSW', 'AU', 486, ' 2535 Far Meadow New South Wales'),
3505
+ (3149, '2535', 'Jaspers Brush', 'NSW', 'AU', 486, ' 2535 Jaspers Brush New South Wales'),
3506
+ (3150, '2535', 'Wattamolla', 'NSW', 'AU', 486, ' 2535 Wattamolla New South Wales'),
3507
+ (3151, '2535', 'Shoalhaven Heads', 'NSW', 'AU', 486, ' 2535 Shoalhaven Heads New South Wales'),
3508
+ (3152, '2535', 'Brogers Creek', 'NSW', 'AU', 486, ' 2535 Brogers Creek New South Wales'),
3509
+ (3153, '2535', 'Broughton', 'NSW', 'AU', 486, ' 2535 Broughton New South Wales'),
3510
+ (3154, '2535', 'Broughton Vale', 'NSW', 'AU', 486, ' 2535 Broughton Vale New South Wales'),
3511
+ (3155, '2535', 'Budderoo', 'NSW', 'AU', 486, ' 2535 Budderoo New South Wales'),
3512
+ (3156, '2535', 'Bundewallah', 'NSW', 'AU', 486, ' 2535 Bundewallah New South Wales'),
3513
+ (3157, '2535', 'Back Forest', 'NSW', 'AU', 486, ' 2535 Back Forest New South Wales'),
3514
+ (3158, '2535', 'Bellawongarah', 'NSW', 'AU', 486, ' 2535 Bellawongarah New South Wales'),
3515
+ (3159, '2535', 'Berry', 'NSW', 'AU', 486, ' 2535 Berry New South Wales'),
3516
+ (3160, '2535', 'Berry Mountain', 'NSW', 'AU', 486, ' 2535 Berry Mountain New South Wales'),
3517
+ (3161, '2535', 'Coolangatta', 'NSW', 'AU', 486, ' 2535 Coolangatta New South Wales'),
3518
+ (3162, '2536', 'Currowan', 'NSW', 'AU', 486, ' 2536 Currowan New South Wales'),
3519
+ (3163, '2536', 'Denhams Beach', 'NSW', 'AU', 486, ' 2536 Denhams Beach New South Wales'),
3520
+ (3164, '2536', 'Depot Beach', 'NSW', 'AU', 486, ' 2536 Depot Beach New South Wales'),
3521
+ (3165, '2536', 'Durras North', 'NSW', 'AU', 486, ' 2536 Durras North New South Wales'),
3522
+ (3166, '2536', 'East Lynne', 'NSW', 'AU', 486, ' 2536 East Lynne New South Wales'),
3523
+ (3167, '2536', 'Catalina', 'NSW', 'AU', 486, ' 2536 Catalina New South Wales'),
3524
+ (3168, '2536', 'Bimbimbie', 'NSW', 'AU', 486, ' 2536 Bimbimbie New South Wales'),
3525
+ (3169, '2536', 'Benandarah', 'NSW', 'AU', 486, ' 2536 Benandarah New South Wales'),
3526
+ (3170, '2536', 'Batehaven', 'NSW', 'AU', 486, ' 2536 Batehaven New South Wales'),
3527
+ (3171, '2536', 'Batemans Bay', 'NSW', 'AU', 486, ' 2536 Batemans Bay New South Wales'),
3528
+ (3172, '2536', 'Buckenbowra', 'NSW', 'AU', 486, ' 2536 Buckenbowra New South Wales'),
3529
+ (3173, '2536', 'Rosedale', 'NSW', 'AU', 486, ' 2536 Rosedale New South Wales'),
3530
+ (3174, '2536', 'Runnyford', 'NSW', 'AU', 486, ' 2536 Runnyford New South Wales'),
3531
+ (3175, '2536', 'Pebbly Beach', 'NSW', 'AU', 486, ' 2536 Pebbly Beach New South Wales'),
3532
+ (3176, '2536', 'Nelligen', 'NSW', 'AU', 486, ' 2536 Nelligen New South Wales'),
3533
+ (3177, '2536', 'North Batemans Bay', 'NSW', 'AU', 486, ' 2536 North Batemans Bay New South Wales'),
3534
+ (3178, '2536', 'South Durras', 'NSW', 'AU', 486, ' 2536 South Durras New South Wales'),
3535
+ (3179, '2536', 'Surf Beach', 'NSW', 'AU', 486, ' 2536 Surf Beach New South Wales'),
3536
+ (3180, '2536', 'Surfside', 'NSW', 'AU', 486, ' 2536 Surfside New South Wales'),
3537
+ (3181, '2536', 'Sunshine Bay', 'NSW', 'AU', 486, ' 2536 Sunshine Bay New South Wales'),
3538
+ (3182, '2536', 'Jeremadra', 'NSW', 'AU', 486, ' 2536 Jeremadra New South Wales'),
3539
+ (3183, '2536', 'Guerilla Bay', 'NSW', 'AU', 486, ' 2536 Guerilla Bay New South Wales'),
3540
+ (3184, '2536', 'Mogo', 'NSW', 'AU', 486, ' 2536 Mogo New South Wales'),
3541
+ (3185, '2536', 'Lilli Pilli', 'NSW', 'AU', 486, ' 2536 Lilli Pilli New South Wales'),
3542
+ (3186, '2536', 'Long Beach', 'NSW', 'AU', 486, ' 2536 Long Beach New South Wales'),
3543
+ (3187, '2536', 'Maloneys Beach', 'NSW', 'AU', 486, ' 2536 Maloneys Beach New South Wales'),
3544
+ (3188, '2536', 'Malua Bay', 'NSW', 'AU', 486, ' 2536 Malua Bay New South Wales'),
3545
+ (3189, '2536', 'Woodlands', 'NSW', 'AU', 486, ' 2536 Woodlands New South Wales'),
3546
+ (3190, '2537', 'Kiora', 'NSW', 'AU', 486, ' 2537 Kiora New South Wales'),
3547
+ (3191, '2537', 'Mogendoura', 'NSW', 'AU', 486, ' 2537 Mogendoura New South Wales'),
3548
+ (3192, '2537', 'Meringo', 'NSW', 'AU', 486, ' 2537 Meringo New South Wales'),
3549
+ (3193, '2537', 'Moruya', 'NSW', 'AU', 486, ' 2537 Moruya New South Wales'),
3550
+ (3194, '2537', 'Moruya Heads', 'NSW', 'AU', 486, ' 2537 Moruya Heads New South Wales'),
3551
+ (3195, '2537', 'Mossy Point', 'NSW', 'AU', 486, ' 2537 Mossy Point New South Wales'),
3552
+ (3196, '2537', 'Tomakin', 'NSW', 'AU', 486, ' 2537 Tomakin New South Wales'),
3553
+ (3197, '2537', 'Wamban', 'NSW', 'AU', 486, ' 2537 Wamban New South Wales'),
3554
+ (3198, '2537', 'Turlinjah', 'NSW', 'AU', 486, ' 2537 Turlinjah New South Wales'),
3555
+ (3199, '2537', 'Tuross Head', 'NSW', 'AU', 486, ' 2537 Tuross Head New South Wales'),
3556
+ (3200, '2537', 'Broulee', 'NSW', 'AU', 486, ' 2537 Broulee New South Wales'),
3557
+ (3201, '2537', 'Bingie', 'NSW', 'AU', 486, ' 2537 Bingie New South Wales'),
3558
+ (3202, '2537', 'Bergalia', 'NSW', 'AU', 486, ' 2537 Bergalia New South Wales'),
3559
+ (3203, '2537', 'Coila', 'NSW', 'AU', 486, ' 2537 Coila New South Wales'),
3560
+ (3204, '2537', 'Congo', 'NSW', 'AU', 486, ' 2537 Congo New South Wales'),
3561
+ (3205, '2537', 'Deua', 'NSW', 'AU', 486, ' 2537 Deua New South Wales'),
3562
+ (3206, '2537', 'Deua River Valley', 'NSW', 'AU', 486, ' 2537 Deua River Valley New South Wales'),
3563
+ (3207, '2538', 'Brooman', 'NSW', 'AU', 486, ' 2538 Brooman New South Wales'),
3564
+ (3208, '2538', 'Porters Creek', 'NSW', 'AU', 486, ' 2538 Porters Creek New South Wales'),
3565
+ (3209, '2538', 'Morton', 'NSW', 'AU', 486, ' 2538 Morton New South Wales'),
3566
+ (3210, '2538', 'Milton', 'NSW', 'AU', 486, ' 2538 Milton New South Wales'),
3567
+ (3211, '2538', 'Mogood', 'NSW', 'AU', 486, ' 2538 Mogood New South Wales'),
3568
+ (3212, '2538', 'Little Forest', 'NSW', 'AU', 486, ' 2538 Little Forest New South Wales'),
3569
+ (3213, '2538', 'Woodstock', 'NSW', 'AU', 486, ' 2538 Woodstock New South Wales'),
3570
+ (3214, '2538', 'Woodburn', 'NSW', 'AU', 486, ' 2538 Woodburn New South Wales'),
3571
+ (3215, '2539', 'Yadboro', 'NSW', 'AU', 486, ' 2539 Yadboro New South Wales'),
3572
+ (3216, '2539', 'Yatte Yattah', 'NSW', 'AU', 486, ' 2539 Yatte Yattah New South Wales'),
3573
+ (3217, '2539', 'Manyana', 'NSW', 'AU', 486, ' 2539 Manyana New South Wales'),
3574
+ (3218, '2539', 'Kioloa', 'NSW', 'AU', 486, ' 2539 Kioloa New South Wales'),
3575
+ (3219, '2539', 'Kings Point', 'NSW', 'AU', 486, ' 2539 Kings Point New South Wales'),
3576
+ (3220, '2539', 'Lake Conjola', 'NSW', 'AU', 486, ' 2539 Lake Conjola New South Wales'),
3577
+ (3221, '2539', 'Lake Tabourie', 'NSW', 'AU', 486, ' 2539 Lake Tabourie New South Wales'),
3578
+ (3222, '2539', 'Mollymook', 'NSW', 'AU', 486, ' 2539 Mollymook New South Wales'),
3579
+ (3223, '2539', 'Mollymook Beach', 'NSW', 'AU', 486, ' 2539 Mollymook Beach New South Wales'),
3580
+ (3224, '2539', 'Mount Kingiman', 'NSW', 'AU', 486, ' 2539 Mount Kingiman New South Wales'),
3581
+ (3225, '2539', 'Fishermans Paradise', 'NSW', 'AU', 486, ' 2539 Fishermans Paradise New South Wales'),
3582
+ (3226, '2539', 'Pointer Mountain', 'NSW', 'AU', 486, ' 2539 Pointer Mountain New South Wales'),
3583
+ (3227, '2539', 'Pretty Beach', 'NSW', 'AU', 486, ' 2539 Pretty Beach New South Wales'),
3584
+ (3228, '2539', 'Narrawallee', 'NSW', 'AU', 486, ' 2539 Narrawallee New South Wales'),
3585
+ (3229, '2539', 'Ulladulla', 'NSW', 'AU', 486, ' 2539 Ulladulla New South Wales'),
3586
+ (3230, '2539', 'Termeil', 'NSW', 'AU', 486, ' 2539 Termeil New South Wales'),
3587
+ (3231, '2539', 'Berringer Lake', 'NSW', 'AU', 486, ' 2539 Berringer Lake New South Wales'),
3588
+ (3232, '2539', 'Bendalong', 'NSW', 'AU', 486, ' 2539 Bendalong New South Wales'),
3589
+ (3233, '2539', 'Bawley Point', 'NSW', 'AU', 486, ' 2539 Bawley Point New South Wales'),
3590
+ (3234, '2539', 'Dolphin Point', 'NSW', 'AU', 486, ' 2539 Dolphin Point New South Wales'),
3591
+ (3235, '2539', 'Croobyar', 'NSW', 'AU', 486, ' 2539 Croobyar New South Wales'),
3592
+ (3236, '2539', 'Cunjurong Point', 'NSW', 'AU', 486, ' 2539 Cunjurong Point New South Wales'),
3593
+ (3237, '2539', 'Conjola', 'NSW', 'AU', 486, ' 2539 Conjola New South Wales'),
3594
+ (3238, '2539', 'Conjola Park', 'NSW', 'AU', 486, ' 2539 Conjola Park New South Wales'),
3595
+ (3239, '2539', 'Cockwhy', 'NSW', 'AU', 486, ' 2539 Cockwhy New South Wales'),
3596
+ (3240, '2539', 'Burrill Lake', 'NSW', 'AU', 486, ' 2539 Burrill Lake New South Wales'),
3597
+ (3241, '2540', 'Cambewarra', 'NSW', 'AU', 486, ' 2540 Cambewarra New South Wales'),
3598
+ (3242, '2540', 'Cambewarra Village', 'NSW', 'AU', 486, ' 2540 Cambewarra Village New South Wales'),
3599
+ (3243, '2540', 'Callala Bay', 'NSW', 'AU', 486, ' 2540 Callala Bay New South Wales'),
3600
+ (3244, '2540', 'Callala Beach', 'NSW', 'AU', 486, ' 2540 Callala Beach New South Wales'),
3601
+ (3245, '2540', 'Burrier', 'NSW', 'AU', 486, ' 2540 Burrier New South Wales'),
3602
+ (3246, '2540', 'Comerong Island', 'NSW', 'AU', 486, ' 2540 Comerong Island New South Wales'),
3603
+ (3247, '2540', 'Comberton', 'NSW', 'AU', 486, ' 2540 Comberton New South Wales'),
3604
+ (3248, '2540', 'Cudmirrah', 'NSW', 'AU', 486, ' 2540 Cudmirrah New South Wales'),
3605
+ (3249, '2540', 'Culburra Beach', 'NSW', 'AU', 486, ' 2540 Culburra Beach New South Wales'),
3606
+ (3250, '2540', 'Currarong', 'NSW', 'AU', 486, ' 2540 Currarong New South Wales'),
3607
+ (3251, '2540', 'Basin View', 'NSW', 'AU', 486, ' 2540 Basin View New South Wales'),
3608
+ (3252, '2540', 'Beecroft Peninsula', 'NSW', 'AU', 486, ' 2540 Beecroft Peninsula New South Wales'),
3609
+ (3253, '2540', 'Berrara', 'NSW', 'AU', 486, ' 2540 Berrara New South Wales'),
3610
+ (3254, '2540', 'Bewong', 'NSW', 'AU', 486, ' 2540 Bewong New South Wales'),
3611
+ (3255, '2540', 'Barringella', 'NSW', 'AU', 486, ' 2540 Barringella New South Wales'),
3612
+ (3256, '2540', 'Bamarang', 'NSW', 'AU', 486, ' 2540 Bamarang New South Wales'),
3613
+ (3257, '2540', 'Browns Mountain', 'NSW', 'AU', 486, ' 2540 Browns Mountain New South Wales'),
3614
+ (3258, '2540', 'Brundee', 'NSW', 'AU', 486, ' 2540 Brundee New South Wales'),
3615
+ (3259, '2540', 'Buangla', 'NSW', 'AU', 486, ' 2540 Buangla New South Wales'),
3616
+ (3260, '2540', 'Boolijah', 'NSW', 'AU', 486, ' 2540 Boolijah New South Wales'),
3617
+ (3261, '2540', 'Bolong', 'NSW', 'AU', 486, ' 2540 Bolong New South Wales'),
3618
+ (3262, '2540', 'Bream Beach', 'NSW', 'AU', 486, ' 2540 Bream Beach New South Wales'),
3619
+ (3263, '2540', 'Terara', 'NSW', 'AU', 486, ' 2540 Terara New South Wales'),
3620
+ (3264, '2540', 'Tapitallee', 'NSW', 'AU', 486, ' 2540 Tapitallee New South Wales'),
3621
+ (3265, '2540', 'Tallowal', 'NSW', 'AU', 486, ' 2540 Tallowal New South Wales'),
3622
+ (3266, '2540', 'Tomerong', 'NSW', 'AU', 486, ' 2540 Tomerong New South Wales'),
3623
+ (3267, '2540', 'Sussex Inlet', 'NSW', 'AU', 486, ' 2540 Sussex Inlet New South Wales'),
3624
+ (3268, '2540', 'Swanhaven', 'NSW', 'AU', 486, ' 2540 Swanhaven New South Wales'),
3625
+ (3269, '2540', 'St Georges Basin', 'NSW', 'AU', 486, ' 2540 St Georges Basin New South Wales'),
3626
+ (3270, '2540', 'Twelve Mile Peg', 'NSW', 'AU', 486, ' 2540 Twelve Mile Peg New South Wales'),
3627
+ (3271, '2540', 'Tullarwalla', 'NSW', 'AU', 486, ' 2540 Tullarwalla New South Wales'),
3628
+ (3272, '2540', 'Wandandian', 'NSW', 'AU', 486, ' 2540 Wandandian New South Wales'),
3629
+ (3273, '2540', 'Vincentia', 'NSW', 'AU', 486, ' 2540 Vincentia New South Wales'),
3630
+ (3274, '2540', 'Watersleigh', 'NSW', 'AU', 486, ' 2540 Watersleigh New South Wales'),
3631
+ (3275, '2540', 'Myola', 'NSW', 'AU', 486, ' 2540 Myola New South Wales'),
3632
+ (3276, '2540', 'Mundamia', 'NSW', 'AU', 486, ' 2540 Mundamia New South Wales'),
3633
+ (3277, '2540', 'Nowra Hill', 'NSW', 'AU', 486, ' 2540 Nowra Hill New South Wales'),
3634
+ (3278, '2540', 'Nowra Naval Po', 'NSW', 'AU', 486, ' 2540 Nowra Naval Po New South Wales'),
3635
+ (3279, '2540', 'Numbaa', 'NSW', 'AU', 486, ' 2540 Numbaa New South Wales'),
3636
+ (3280, '2540', 'Old Erowal Bay', 'NSW', 'AU', 486, ' 2540 Old Erowal Bay New South Wales'),
3637
+ (3281, '2540', 'Parma', 'NSW', 'AU', 486, ' 2540 Parma New South Wales'),
3638
+ (3282, '2540', 'Orient Point', 'NSW', 'AU', 486, ' 2540 Orient Point New South Wales'),
3639
+ (3283, '2540', 'Sanctuary Point', 'NSW', 'AU', 486, ' 2540 Sanctuary Point New South Wales'),
3640
+ (3284, '2540', 'Pyree', 'NSW', 'AU', 486, ' 2540 Pyree New South Wales'),
3641
+ (3285, '2540', 'Falls Creek', 'NSW', 'AU', 486, ' 2540 Falls Creek New South Wales'),
3642
+ (3286, '2540', 'Erowal Bay', 'NSW', 'AU', 486, ' 2540 Erowal Bay New South Wales'),
3643
+ (3287, '2540', 'Ettrema', 'NSW', 'AU', 486, ' 2540 Ettrema New South Wales'),
3644
+ (3288, '2540', 'Greenwell Point', 'NSW', 'AU', 486, ' 2540 Greenwell Point New South Wales'),
3645
+ (3289, '2540', 'Hmas Albatross', 'NSW', 'AU', 486, ' 2540 Hmas Albatross New South Wales'),
3646
+ (3290, '2540', 'Hmas Creswell', 'NSW', 'AU', 486, ' 2540 Hmas Creswell New South Wales'),
3647
+ (3291, '2540', 'Jerrawangala', 'NSW', 'AU', 486, ' 2540 Jerrawangala New South Wales'),
3648
+ (3292, '2540', 'Jervis Bay', 'NSW', 'AU', 486, ' 2540 Jervis Bay New South Wales'),
3649
+ (3293, '2540', 'Huskisson', 'NSW', 'AU', 486, ' 2540 Huskisson New South Wales'),
3650
+ (3294, '2540', 'Hyams Beach', 'NSW', 'AU', 486, ' 2540 Hyams Beach New South Wales'),
3651
+ (3295, '2540', 'Illaroo', 'NSW', 'AU', 486, ' 2540 Illaroo New South Wales'),
3652
+ (3296, '2540', 'Moollattoo', 'NSW', 'AU', 486, ' 2540 Moollattoo New South Wales'),
3653
+ (3297, '2540', 'Mondayong', 'NSW', 'AU', 486, ' 2540 Mondayong New South Wales'),
3654
+ (3298, '2540', 'Meroo Meadow', 'NSW', 'AU', 486, ' 2540 Meroo Meadow New South Wales'),
3655
+ (3299, '2540', 'Kinghorne', 'NSW', 'AU', 486, ' 2540 Kinghorne New South Wales'),
3656
+ (3300, '2540', 'Mayfield', 'NSW', 'AU', 486, ' 2540 Mayfield New South Wales'),
3657
+ (3301, '2540', 'Longreach', 'NSW', 'AU', 486, ' 2540 Longreach New South Wales'),
3658
+ (3302, '2540', 'Yerriyong', 'NSW', 'AU', 486, ' 2540 Yerriyong New South Wales'),
3659
+ (3303, '2540', 'Yalwal', 'NSW', 'AU', 486, ' 2540 Yalwal New South Wales'),
3660
+ (3304, '2540', 'Worrigee', 'NSW', 'AU', 486, ' 2540 Worrigee New South Wales'),
3661
+ (3305, '2540', 'Worrowing Heights', 'NSW', 'AU', 486, ' 2540 Worrowing Heights New South Wales'),
3662
+ (3306, '2540', 'Wrights Beach', 'NSW', 'AU', 486, ' 2540 Wrights Beach New South Wales'),
3663
+ (3307, '2540', 'Woollamia', 'NSW', 'AU', 486, ' 2540 Woollamia New South Wales'),
3664
+ (3308, '2540', 'Wollumboola', 'NSW', 'AU', 486, ' 2540 Wollumboola New South Wales'),
3665
+ (3309, '2541', 'Nowra North', 'NSW', 'AU', 486, ' 2541 Nowra North New South Wales'),
3666
+ (3310, '2541', 'North Nowra', 'NSW', 'AU', 486, ' 2541 North Nowra New South Wales'),
3667
+ (3311, '2541', 'Nowra', 'NSW', 'AU', 486, ' 2541 Nowra New South Wales'),
3668
+ (3312, '2541', 'Nowra East', 'NSW', 'AU', 486, ' 2541 Nowra East New South Wales'),
3669
+ (3313, '2541', 'West Nowra', 'NSW', 'AU', 486, ' 2541 West Nowra New South Wales'),
3670
+ (3314, '2541', 'South Nowra', 'NSW', 'AU', 486, ' 2541 South Nowra New South Wales'),
3671
+ (3315, '2541', 'Bomaderry', 'NSW', 'AU', 486, ' 2541 Bomaderry New South Wales'),
3672
+ (3316, '2541', 'Bangalee', 'NSW', 'AU', 486, ' 2541 Bangalee New South Wales'),
3673
+ (3317, '2545', 'Belowra', 'NSW', 'AU', 486, ' 2545 Belowra New South Wales'),
3674
+ (3318, '2545', 'Bodalla', 'NSW', 'AU', 486, ' 2545 Bodalla New South Wales'),
3675
+ (3319, '2545', 'Cadgee', 'NSW', 'AU', 486, ' 2545 Cadgee New South Wales'),
3676
+ (3320, '2545', 'Nerrigundah', 'NSW', 'AU', 486, ' 2545 Nerrigundah New South Wales'),
3677
+ (3321, '2545', 'Potato Point', 'NSW', 'AU', 486, ' 2545 Potato Point New South Wales'),
3678
+ (3322, '2545', 'Eurobodalla', 'NSW', 'AU', 486, ' 2545 Eurobodalla New South Wales'),
3679
+ (3323, '2546', 'Kianga', 'NSW', 'AU', 486, ' 2546 Kianga New South Wales'),
3680
+ (3324, '2546', 'Narooma', 'NSW', 'AU', 486, ' 2546 Narooma New South Wales'),
3681
+ (3325, '2546', 'Murrah', 'NSW', 'AU', 486, ' 2546 Murrah New South Wales'),
3682
+ (3326, '2546', 'Mystery Bay', 'NSW', 'AU', 486, ' 2546 Mystery Bay New South Wales'),
3683
+ (3327, '2546', 'North Narooma', 'NSW', 'AU', 486, ' 2546 North Narooma New South Wales'),
3684
+ (3328, '2546', 'Tilba Tilba', 'NSW', 'AU', 486, ' 2546 Tilba Tilba New South Wales'),
3685
+ (3329, '2546', 'Wallaga Lake', 'NSW', 'AU', 486, ' 2546 Wallaga Lake New South Wales'),
3686
+ (3330, '2546', 'Wadbilliga', 'NSW', 'AU', 486, ' 2546 Wadbilliga New South Wales'),
3687
+ (3331, '2546', 'Tinpot', 'NSW', 'AU', 486, ' 2546 Tinpot New South Wales'),
3688
+ (3332, '2546', 'Central Tilba', 'NSW', 'AU', 486, ' 2546 Central Tilba New South Wales'),
3689
+ (3333, '2546', 'Cuttagee', 'NSW', 'AU', 486, ' 2546 Cuttagee New South Wales'),
3690
+ (3334, '2546', 'Dalmeny', 'NSW', 'AU', 486, ' 2546 Dalmeny New South Wales'),
3691
+ (3335, '2546', 'Dignams Creek', 'NSW', 'AU', 486, ' 2546 Dignams Creek New South Wales'),
3692
+ (3336, '2546', 'Corunna', 'NSW', 'AU', 486, ' 2546 Corunna New South Wales'),
3693
+ (3337, '2546', 'Barragga Bay', 'NSW', 'AU', 486, ' 2546 Barragga Bay New South Wales'),
3694
+ (3338, '2546', 'Bermagui', 'NSW', 'AU', 486, ' 2546 Bermagui New South Wales'),
3695
+ (3339, '2546', 'Akolele', 'NSW', 'AU', 486, ' 2546 Akolele New South Wales'),
3696
+ (3340, '2548', 'Berrambool', 'NSW', 'AU', 486, ' 2548 Berrambool New South Wales'),
3697
+ (3341, '2548', 'Bournda', 'NSW', 'AU', 486, ' 2548 Bournda New South Wales'),
3698
+ (3342, '2548', 'Tura Beach', 'NSW', 'AU', 486, ' 2548 Tura Beach New South Wales'),
3699
+ (3343, '2548', 'Merimbula', 'NSW', 'AU', 486, ' 2548 Merimbula New South Wales'),
3700
+ (3344, '2548', 'Mirador', 'NSW', 'AU', 486, ' 2548 Mirador New South Wales'),
3701
+ (3345, '2548', 'Yellow Pinch', 'NSW', 'AU', 486, ' 2548 Yellow Pinch New South Wales'),
3702
+ (3346, '2549', 'Millingandi', 'NSW', 'AU', 486, ' 2549 Millingandi New South Wales'),
3703
+ (3347, '2549', 'Lochiel', 'NSW', 'AU', 486, ' 2549 Lochiel New South Wales'),
3704
+ (3348, '2549', 'Greigs Flat', 'NSW', 'AU', 486, ' 2549 Greigs Flat New South Wales'),
3705
+ (3349, '2549', 'South Pambula', 'NSW', 'AU', 486, ' 2549 South Pambula New South Wales'),
3706
+ (3350, '2549', 'Nethercote', 'NSW', 'AU', 486, ' 2549 Nethercote New South Wales'),
3707
+ (3351, '2549', 'Pambula', 'NSW', 'AU', 486, ' 2549 Pambula New South Wales'),
3708
+ (3352, '2549', 'Pambula Beach', 'NSW', 'AU', 486, ' 2549 Pambula Beach New South Wales'),
3709
+ (3353, '2549', 'Broadwater', 'NSW', 'AU', 486, ' 2549 Broadwater New South Wales'),
3710
+ (3354, '2549', 'Bald Hills', 'NSW', 'AU', 486, ' 2549 Bald Hills New South Wales'),
3711
+ (3355, '2550', 'Angledale', 'NSW', 'AU', 486, ' 2550 Angledale New South Wales'),
3712
+ (3356, '2550', 'Bega', 'NSW', 'AU', 486, ' 2550 Bega New South Wales'),
3713
+ (3357, '2550', 'Bemboka', 'NSW', 'AU', 486, ' 2550 Bemboka New South Wales'),
3714
+ (3358, '2550', 'Black Range', 'NSW', 'AU', 486, ' 2550 Black Range New South Wales'),
3715
+ (3359, '2550', 'Buckajo', 'NSW', 'AU', 486, ' 2550 Buckajo New South Wales'),
3716
+ (3360, '2550', 'Brogo', 'NSW', 'AU', 486, ' 2550 Brogo New South Wales'),
3717
+ (3361, '2550', 'Coolangubra', 'NSW', 'AU', 486, ' 2550 Coolangubra New South Wales'),
3718
+ (3362, '2550', 'Coolagolite', 'NSW', 'AU', 486, ' 2550 Coolagolite New South Wales'),
3719
+ (3363, '2550', 'Coopers Gully', 'NSW', 'AU', 486, ' 2550 Coopers Gully New South Wales'),
3720
+ (3364, '2550', 'Doctor George Mountain', 'NSW', 'AU', 486, ' 2550 Doctor George Mountain New South Wales'),
3721
+ (3365, '2550', 'Devils Hole', 'NSW', 'AU', 486, ' 2550 Devils Hole New South Wales'),
3722
+ (3366, '2550', 'Chinnock', 'NSW', 'AU', 486, ' 2550 Chinnock New South Wales'),
3723
+ (3367, '2550', 'Cobargo', 'NSW', 'AU', 486, ' 2550 Cobargo New South Wales'),
3724
+ (3368, '2550', 'Burragate', 'NSW', 'AU', 486, ' 2550 Burragate New South Wales'),
3725
+ (3369, '2550', 'Candelo', 'NSW', 'AU', 486, ' 2550 Candelo New South Wales'),
3726
+ (3370, '2550', 'Pericoe', 'NSW', 'AU', 486, ' 2550 Pericoe New South Wales'),
3727
+ (3371, '2550', 'Quaama', 'NSW', 'AU', 486, ' 2550 Quaama New South Wales'),
3728
+ (3372, '2550', 'Rocky Hall', 'NSW', 'AU', 486, ' 2550 Rocky Hall New South Wales'),
3729
+ (3373, '2550', 'Reedy Swamp', 'NSW', 'AU', 486, ' 2550 Reedy Swamp New South Wales'),
3730
+ (3374, '2550', 'Nelson', 'NSW', 'AU', 486, ' 2550 Nelson New South Wales'),
3731
+ (3375, '2550', 'Myrtle Mountain', 'NSW', 'AU', 486, ' 2550 Myrtle Mountain New South Wales'),
3732
+ (3376, '2550', 'Mumbulla Mountain', 'NSW', 'AU', 486, ' 2550 Mumbulla Mountain New South Wales'),
3733
+ (3377, '2550', 'New Buildings', 'NSW', 'AU', 486, ' 2550 New Buildings New South Wales'),
3734
+ (3378, '2550', 'Numbugga', 'NSW', 'AU', 486, ' 2550 Numbugga New South Wales'),
3735
+ (3379, '2550', 'South Wolumla', 'NSW', 'AU', 486, ' 2550 South Wolumla New South Wales'),
3736
+ (3380, '2550', 'Stony Creek', 'NSW', 'AU', 486, ' 2550 Stony Creek New South Wales'),
3737
+ (3381, '2550', 'Tantawangalo', 'NSW', 'AU', 486, ' 2550 Tantawangalo New South Wales'),
3738
+ (3382, '2550', 'Tanja', 'NSW', 'AU', 486, ' 2550 Tanja New South Wales'),
3739
+ (3383, '2550', 'Tarraganda', 'NSW', 'AU', 486, ' 2550 Tarraganda New South Wales'),
3740
+ (3384, '2550', 'Tathra', 'NSW', 'AU', 486, ' 2550 Tathra New South Wales'),
3741
+ (3385, '2550', 'Toothdale', 'NSW', 'AU', 486, ' 2550 Toothdale New South Wales'),
3742
+ (3386, '2550', 'Towamba', 'NSW', 'AU', 486, ' 2550 Towamba New South Wales'),
3743
+ (3387, '2550', 'Verona', 'NSW', 'AU', 486, ' 2550 Verona New South Wales'),
3744
+ (3388, '2550', 'Wallagoot', 'NSW', 'AU', 486, ' 2550 Wallagoot New South Wales'),
3745
+ (3389, '2550', 'Wandella', 'NSW', 'AU', 486, ' 2550 Wandella New South Wales'),
3746
+ (3390, '2550', 'Wapengo', 'NSW', 'AU', 486, ' 2550 Wapengo New South Wales'),
3747
+ (3391, '2550', 'Greendale', 'NSW', 'AU', 486, ' 2550 Greendale New South Wales'),
3748
+ (3392, '2550', 'Jellat Jellat', 'NSW', 'AU', 486, ' 2550 Jellat Jellat New South Wales'),
3749
+ (3393, '2550', 'Kalaru', 'NSW', 'AU', 486, ' 2550 Kalaru New South Wales'),
3750
+ (3394, '2550', 'Kameruka', 'NSW', 'AU', 486, ' 2550 Kameruka New South Wales'),
3751
+ (3395, '2550', 'Kanoona', 'NSW', 'AU', 486, ' 2550 Kanoona New South Wales'),
3752
+ (3396, '2550', 'Frogs Hollow', 'NSW', 'AU', 486, ' 2550 Frogs Hollow New South Wales'),
3753
+ (3397, '2550', 'Kingswood', 'NSW', 'AU', 486, ' 2550 Kingswood New South Wales'),
3754
+ (3398, '2550', 'Mogareeka', 'NSW', 'AU', 486, ' 2550 Mogareeka New South Wales'),
3755
+ (3399, '2550', 'Mogilla', 'NSW', 'AU', 486, ' 2550 Mogilla New South Wales'),
3756
+ (3400, '2550', 'Morans Crossing', 'NSW', 'AU', 486, ' 2550 Morans Crossing New South Wales'),
3757
+ (3401, '2550', 'Yowrie', 'NSW', 'AU', 486, ' 2550 Yowrie New South Wales'),
3758
+ (3402, '2550', 'Yambulla', 'NSW', 'AU', 486, ' 2550 Yambulla New South Wales'),
3759
+ (3403, '2550', 'Yankees Creek', 'NSW', 'AU', 486, ' 2550 Yankees Creek New South Wales'),
3760
+ (3404, '2550', 'Wolumla', 'NSW', 'AU', 486, ' 2550 Wolumla New South Wales'),
3761
+ (3405, '2550', 'Wog Wog', 'NSW', 'AU', 486, ' 2550 Wog Wog New South Wales'),
3762
+ (3406, '2550', 'Wyndham', 'NSW', 'AU', 486, ' 2550 Wyndham New South Wales'),
3763
+ (3407, '2551', 'Wonboyn', 'NSW', 'AU', 486, ' 2551 Wonboyn New South Wales'),
3764
+ (3408, '2551', 'Wonboyn Lake', 'NSW', 'AU', 486, ' 2551 Wonboyn Lake New South Wales'),
3765
+ (3409, '2551', 'Wonboyn North', 'NSW', 'AU', 486, ' 2551 Wonboyn North New South Wales'),
3766
+ (3410, '2551', 'Kiah', 'NSW', 'AU', 486, ' 2551 Kiah New South Wales'),
3767
+ (3411, '2551', 'Edrom', 'NSW', 'AU', 486, ' 2551 Edrom New South Wales'),
3768
+ (3412, '2551', 'Green Cape', 'NSW', 'AU', 486, ' 2551 Green Cape New South Wales'),
3769
+ (3413, '2551', 'Timbillica', 'NSW', 'AU', 486, ' 2551 Timbillica New South Wales'),
3770
+ (3414, '2551', 'Nungatta', 'NSW', 'AU', 486, ' 2551 Nungatta New South Wales'),
3771
+ (3415, '2551', 'Nungatta South', 'NSW', 'AU', 486, ' 2551 Nungatta South New South Wales'),
3772
+ (3416, '2551', 'Nullica', 'NSW', 'AU', 486, ' 2551 Nullica New South Wales'),
3773
+ (3417, '2551', 'Nadgee', 'NSW', 'AU', 486, ' 2551 Nadgee New South Wales'),
3774
+ (3418, '2551', 'Narrabarba', 'NSW', 'AU', 486, ' 2551 Narrabarba New South Wales'),
3775
+ (3419, '2551', 'Eden', 'NSW', 'AU', 486, ' 2551 Eden New South Wales'),
3776
+ (3420, '2551', 'Boydtown', 'NSW', 'AU', 486, ' 2551 Boydtown New South Wales'),
3777
+ (3421, '2555', 'Badgerys Creek', 'NSW', 'AU', 486, ' 2555 Badgerys Creek New South Wales'),
3778
+ (3422, '2556', 'Bringelly', 'NSW', 'AU', 486, ' 2556 Bringelly New South Wales'),
3779
+ (3423, '2557', 'Catherine Field', 'NSW', 'AU', 486, ' 2557 Catherine Field New South Wales'),
3780
+ (3424, '2557', 'Gregory Hills', 'NSW', 'AU', 486, ' 2557 Gregory Hills New South Wales'),
3781
+ (3425, '2557', 'Rossmore', 'NSW', 'AU', 486, ' 2557 Rossmore New South Wales'),
3782
+ (3426, '2558', 'Eagle Vale', 'NSW', 'AU', 486, ' 2558 Eagle Vale New South Wales'),
3783
+ (3427, '2558', 'Eschol Park', 'NSW', 'AU', 486, ' 2558 Eschol Park New South Wales'),
3784
+ (3428, '2558', 'Kearns', 'NSW', 'AU', 486, ' 2558 Kearns New South Wales'),
3785
+ (3429, '2559', 'Claymore', 'NSW', 'AU', 486, ' 2559 Claymore New South Wales'),
3786
+ (3430, '2559', 'Blairmount', 'NSW', 'AU', 486, ' 2559 Blairmount New South Wales'),
3787
+ (3431, '2560', 'Ambarvale', 'NSW', 'AU', 486, ' 2560 Ambarvale New South Wales'),
3788
+ (3432, '2560', 'Appin', 'NSW', 'AU', 486, ' 2560 Appin New South Wales'),
3789
+ (3433, '2560', 'Airds', 'NSW', 'AU', 486, ' 2560 Airds New South Wales'),
3790
+ (3434, '2560', 'Blair Athol', 'NSW', 'AU', 486, ' 2560 Blair Athol New South Wales'),
3791
+ (3435, '2560', 'Cataract', 'NSW', 'AU', 486, ' 2560 Cataract New South Wales'),
3792
+ (3436, '2560', 'Bradbury', 'NSW', 'AU', 486, ' 2560 Bradbury New South Wales'),
3793
+ (3437, '2560', 'Campbelltown', 'NSW', 'AU', 486, ' 2560 Campbelltown New South Wales'),
3794
+ (3438, '2560', 'Campbelltown North', 'NSW', 'AU', 486, ' 2560 Campbelltown North New South Wales'),
3795
+ (3439, '2560', 'Gilead', 'NSW', 'AU', 486, ' 2560 Gilead New South Wales'),
3796
+ (3440, '2560', 'Glen Alpine', 'NSW', 'AU', 486, ' 2560 Glen Alpine New South Wales'),
3797
+ (3441, '2560', 'Englorie Park', 'NSW', 'AU', 486, ' 2560 Englorie Park New South Wales'),
3798
+ (3442, '2560', 'Leumeah', 'NSW', 'AU', 486, ' 2560 Leumeah New South Wales'),
3799
+ (3443, '2560', 'Kentlyn', 'NSW', 'AU', 486, ' 2560 Kentlyn New South Wales'),
3800
+ (3444, '2560', 'Macarthur Square', 'NSW', 'AU', 486, ' 2560 Macarthur Square New South Wales'),
3801
+ (3445, '2560', 'Ruse', 'NSW', 'AU', 486, ' 2560 Ruse New South Wales'),
3802
+ (3446, '2560', 'St Helens Park', 'NSW', 'AU', 486, ' 2560 St Helens Park New South Wales'),
3803
+ (3447, '2560', 'Rosemeadow', 'NSW', 'AU', 486, ' 2560 Rosemeadow New South Wales'),
3804
+ (3448, '2560', 'Wedderburn', 'NSW', 'AU', 486, ' 2560 Wedderburn New South Wales'),
3805
+ (3449, '2560', 'Woodbine', 'NSW', 'AU', 486, ' 2560 Woodbine New South Wales'),
3806
+ (3450, '2563', 'Menangle Park', 'NSW', 'AU', 486, ' 2563 Menangle Park New South Wales'),
3807
+ (3451, '2564', 'Macquarie Fields', 'NSW', 'AU', 486, ' 2564 Macquarie Fields New South Wales'),
3808
+ (3452, '2564', 'Long Point', 'NSW', 'AU', 486, ' 2564 Long Point New South Wales'),
3809
+ (3453, '2564', 'Glenquarie', 'NSW', 'AU', 486, ' 2564 Glenquarie New South Wales'),
3810
+ (3454, '2565', 'Ingleburn', 'NSW', 'AU', 486, ' 2565 Ingleburn New South Wales'),
3811
+ (3455, '2565', 'Denham Court', 'NSW', 'AU', 486, ' 2565 Denham Court New South Wales'),
3812
+ (3456, '2565', 'Macquarie Links', 'NSW', 'AU', 486, ' 2565 Macquarie Links New South Wales'),
3813
+ (3457, '2565', 'Bardia', 'NSW', 'AU', 486, ' 2565 Bardia New South Wales'),
3814
+ (3458, '2566', 'Bow Bowing', 'NSW', 'AU', 486, ' 2566 Bow Bowing New South Wales'),
3815
+ (3459, '2566', 'Minto', 'NSW', 'AU', 486, ' 2566 Minto New South Wales'),
3816
+ (3460, '2566', 'Minto Heights', 'NSW', 'AU', 486, ' 2566 Minto Heights New South Wales'),
3817
+ (3461, '2566', 'St Andrews', 'NSW', 'AU', 486, ' 2566 St Andrews New South Wales'),
3818
+ (3462, '2566', 'Varroville', 'NSW', 'AU', 486, ' 2566 Varroville New South Wales'),
3819
+ (3463, '2566', 'Raby', 'NSW', 'AU', 486, ' 2566 Raby New South Wales'),
3820
+ (3464, '2567', 'Smeaton Grange', 'NSW', 'AU', 486, ' 2567 Smeaton Grange New South Wales'),
3821
+ (3465, '2567', 'Mount Annan', 'NSW', 'AU', 486, ' 2567 Mount Annan New South Wales'),
3822
+ (3466, '2567', 'Narellan', 'NSW', 'AU', 486, ' 2567 Narellan New South Wales'),
3823
+ (3467, '2567', 'Narellan Vale', 'NSW', 'AU', 486, ' 2567 Narellan Vale New South Wales'),
3824
+ (3468, '2567', 'Harrington Park', 'NSW', 'AU', 486, ' 2567 Harrington Park New South Wales'),
3825
+ (3469, '2567', 'Currans Hill', 'NSW', 'AU', 486, ' 2567 Currans Hill New South Wales'),
3826
+ (3470, '2568', 'Menangle', 'NSW', 'AU', 486, ' 2568 Menangle New South Wales'),
3827
+ (3471, '2569', 'Douglas Park', 'NSW', 'AU', 486, ' 2569 Douglas Park New South Wales'),
3828
+ (3472, '2570', 'Cobbitty', 'NSW', 'AU', 486, ' 2570 Cobbitty New South Wales'),
3829
+ (3473, '2570', 'Cawdor', 'NSW', 'AU', 486, ' 2570 Cawdor New South Wales'),
3830
+ (3474, '2570', 'Camden', 'NSW', 'AU', 486, ' 2570 Camden New South Wales'),
3831
+ (3475, '2570', 'Camden Park', 'NSW', 'AU', 486, ' 2570 Camden Park New South Wales'),
3832
+ (3476, '2570', 'Camden South', 'NSW', 'AU', 486, ' 2570 Camden South New South Wales'),
3833
+ (3477, '2570', 'Brownlow Hill', 'NSW', 'AU', 486, ' 2570 Brownlow Hill New South Wales'),
3834
+ (3478, '2570', 'Ellis Lane', 'NSW', 'AU', 486, ' 2570 Ellis Lane New South Wales'),
3835
+ (3479, '2570', 'Elderslie', 'NSW', 'AU', 486, ' 2570 Elderslie New South Wales'),
3836
+ (3480, '2570', 'Glenmore', 'NSW', 'AU', 486, ' 2570 Glenmore New South Wales'),
3837
+ (3481, '2570', 'Grasmere', 'NSW', 'AU', 486, ' 2570 Grasmere New South Wales'),
3838
+ (3482, '2570', 'Mount Hunter', 'NSW', 'AU', 486, ' 2570 Mount Hunter New South Wales'),
3839
+ (3483, '2570', 'Nattai', 'NSW', 'AU', 486, ' 2570 Nattai New South Wales'),
3840
+ (3484, '2570', 'Oakdale', 'NSW', 'AU', 486, ' 2570 Oakdale New South Wales'),
3841
+ (3485, '2570', 'Oran Park', 'NSW', 'AU', 486, ' 2570 Oran Park New South Wales'),
3842
+ (3486, '2570', 'Orangeville', 'NSW', 'AU', 486, ' 2570 Orangeville New South Wales'),
3843
+ (3487, '2570', 'Kirkham', 'NSW', 'AU', 486, ' 2570 Kirkham New South Wales'),
3844
+ (3488, '2570', 'Spring Farm', 'NSW', 'AU', 486, ' 2570 Spring Farm New South Wales'),
3845
+ (3489, '2570', 'The Oaks', 'NSW', 'AU', 486, ' 2570 The Oaks New South Wales'),
3846
+ (3490, '2570', 'Theresa Park', 'NSW', 'AU', 486, ' 2570 Theresa Park New South Wales'),
3847
+ (3491, '2570', 'Werombi', 'NSW', 'AU', 486, ' 2570 Werombi New South Wales'),
3848
+ (3492, '2570', 'Bickley Vale', 'NSW', 'AU', 486, ' 2570 Bickley Vale New South Wales'),
3849
+ (3493, '2570', 'Belimbla Park', 'NSW', 'AU', 486, ' 2570 Belimbla Park New South Wales'),
3850
+ (3494, '2571', 'Balmoral', 'NSW', 'AU', 486, ' 2571 Balmoral New South Wales'),
3851
+ (3495, '2571', 'Wilton', 'NSW', 'AU', 486, ' 2571 Wilton New South Wales'),
3852
+ (3496, '2571', 'Picton', 'NSW', 'AU', 486, ' 2571 Picton New South Wales'),
3853
+ (3497, '2571', 'Razorback', 'NSW', 'AU', 486, ' 2571 Razorback New South Wales'),
3854
+ (3498, '2571', 'Maldon', 'NSW', 'AU', 486, ' 2571 Maldon New South Wales'),
3855
+ (3499, '2571', 'Mowbray Park', 'NSW', 'AU', 486, ' 2571 Mowbray Park New South Wales'),
3856
+ (3500, '2571', 'Buxton', 'NSW', 'AU', 486, ' 2571 Buxton New South Wales'),
3857
+ (3501, '2571', 'Couridjah', 'NSW', 'AU', 486, ' 2571 Couridjah New South Wales'),
3858
+ (3502, '2572', 'Lakesland', 'NSW', 'AU', 486, ' 2572 Lakesland New South Wales'),
3859
+ (3503, '2572', 'Thirlmere', 'NSW', 'AU', 486, ' 2572 Thirlmere New South Wales'),
3860
+ (3504, '2573', 'Tahmoor', 'NSW', 'AU', 486, ' 2573 Tahmoor New South Wales'),
3861
+ (3505, '2574', 'Pheasants Nest', 'NSW', 'AU', 486, ' 2574 Pheasants Nest New South Wales'),
3862
+ (3506, '2574', 'Yanderra', 'NSW', 'AU', 486, ' 2574 Yanderra New South Wales'),
3863
+ (3507, '2574', 'Bargo', 'NSW', 'AU', 486, ' 2574 Bargo New South Wales'),
3864
+ (3508, '2574', 'Avon', 'NSW', 'AU', 486, ' 2574 Avon New South Wales'),
3865
+ (3509, '2575', 'Aylmerton', 'NSW', 'AU', 486, ' 2575 Aylmerton New South Wales'),
3866
+ (3510, '2575', 'Balaclava', 'NSW', 'AU', 486, ' 2575 Balaclava New South Wales'),
3867
+ (3511, '2575', 'Alpine', 'NSW', 'AU', 486, ' 2575 Alpine New South Wales'),
3868
+ (3512, '2575', 'Yerrinbool', 'NSW', 'AU', 486, ' 2575 Yerrinbool New South Wales'),
3869
+ (3513, '2575', 'Willow Vale', 'NSW', 'AU', 486, ' 2575 Willow Vale New South Wales'),
3870
+ (3514, '2575', 'Welby', 'NSW', 'AU', 486, ' 2575 Welby New South Wales'),
3871
+ (3515, '2575', 'Wattle Ridge', 'NSW', 'AU', 486, ' 2575 Wattle Ridge New South Wales'),
3872
+ (3516, '2575', 'Woodlands', 'NSW', 'AU', 486, ' 2575 Woodlands New South Wales'),
3873
+ (3517, '2575', 'Mittagong', 'NSW', 'AU', 486, ' 2575 Mittagong New South Wales'),
3874
+ (3518, '2575', 'Mandemar', 'NSW', 'AU', 486, ' 2575 Mandemar New South Wales'),
3875
+ (3519, '2575', 'Joadja', 'NSW', 'AU', 486, ' 2575 Joadja New South Wales'),
3876
+ (3520, '2575', 'Mount Lindsey', 'NSW', 'AU', 486, ' 2575 Mount Lindsey New South Wales'),
3877
+ (3521, '2575', 'Colo Vale', 'NSW', 'AU', 486, ' 2575 Colo Vale New South Wales'),
3878
+ (3522, '2575', 'Braemar', 'NSW', 'AU', 486, ' 2575 Braemar New South Wales'),
3879
+ (3523, '2575', 'Bullio', 'NSW', 'AU', 486, ' 2575 Bullio New South Wales'),
3880
+ (3524, '2575', 'Goodmans Ford', 'NSW', 'AU', 486, ' 2575 Goodmans Ford New South Wales'),
3881
+ (3525, '2575', 'High Range', 'NSW', 'AU', 486, ' 2575 High Range New South Wales'),
3882
+ (3526, '2575', 'Hill Top', 'NSW', 'AU', 486, ' 2575 Hill Top New South Wales'),
3883
+ (3527, '2576', 'Glenquarry', 'NSW', 'AU', 486, ' 2576 Glenquarry New South Wales'),
3884
+ (3528, '2576', 'East Bowral', 'NSW', 'AU', 486, ' 2576 East Bowral New South Wales'),
3885
+ (3529, '2576', 'East Kangaloon', 'NSW', 'AU', 486, ' 2576 East Kangaloon New South Wales'),
3886
+ (3530, '2576', 'Burradoo', 'NSW', 'AU', 486, ' 2576 Burradoo New South Wales'),
3887
+ (3531, '2576', 'Kangaloon', 'NSW', 'AU', 486, ' 2576 Kangaloon New South Wales'),
3888
+ (3532, '2576', 'Bowral', 'NSW', 'AU', 486, ' 2576 Bowral New South Wales'),
3889
+ (3533, '2577', 'Bangadilly', 'NSW', 'AU', 486, ' 2577 Bangadilly New South Wales'),
3890
+ (3534, '2577', 'Berrima', 'NSW', 'AU', 486, ' 2577 Berrima New South Wales'),
3891
+ (3535, '2577', 'Barren Grounds', 'NSW', 'AU', 486, ' 2577 Barren Grounds New South Wales'),
3892
+ (3536, '2577', 'Barrengarry', 'NSW', 'AU', 486, ' 2577 Barrengarry New South Wales'),
3893
+ (3537, '2577', 'Beaumont', 'NSW', 'AU', 486, ' 2577 Beaumont New South Wales'),
3894
+ (3538, '2577', 'Belanglo', 'NSW', 'AU', 486, ' 2577 Belanglo New South Wales'),
3895
+ (3539, '2577', 'Avoca', 'NSW', 'AU', 486, ' 2577 Avoca New South Wales'),
3896
+ (3540, '2577', 'Kangaroo Valley', 'NSW', 'AU', 486, ' 2577 Kangaroo Valley New South Wales'),
3897
+ (3541, '2577', 'Knights Hill', 'NSW', 'AU', 486, ' 2577 Knights Hill New South Wales'),
3898
+ (3542, '2577', 'Manchester Square', 'NSW', 'AU', 486, ' 2577 Manchester Square New South Wales'),
3899
+ (3543, '2577', 'Macquarie Pass', 'NSW', 'AU', 486, ' 2577 Macquarie Pass New South Wales'),
3900
+ (3544, '2577', 'Medway', 'NSW', 'AU', 486, ' 2577 Medway New South Wales'),
3901
+ (3545, '2577', 'Meryla', 'NSW', 'AU', 486, ' 2577 Meryla New South Wales'),
3902
+ (3546, '2577', 'Mount Murray', 'NSW', 'AU', 486, ' 2577 Mount Murray New South Wales'),
3903
+ (3547, '2577', 'Moss Vale', 'NSW', 'AU', 486, ' 2577 Moss Vale New South Wales'),
3904
+ (3548, '2577', 'Paddys River', 'NSW', 'AU', 486, ' 2577 Paddys River New South Wales'),
3905
+ (3549, '2577', 'New Berrima', 'NSW', 'AU', 486, ' 2577 New Berrima New South Wales'),
3906
+ (3550, '2577', 'Burrawang', 'NSW', 'AU', 486, ' 2577 Burrawang New South Wales'),
3907
+ (3551, '2577', 'Budgong', 'NSW', 'AU', 486, ' 2577 Budgong New South Wales'),
3908
+ (3552, '2577', 'Canyonleigh', 'NSW', 'AU', 486, ' 2577 Canyonleigh New South Wales'),
3909
+ (3553, '2577', 'Carrington Falls', 'NSW', 'AU', 486, ' 2577 Carrington Falls New South Wales'),
3910
+ (3554, '2577', 'Fitzroy Falls', 'NSW', 'AU', 486, ' 2577 Fitzroy Falls New South Wales'),
3911
+ (3555, '2577', 'Hanging Rock', 'NSW', 'AU', 486, ' 2577 Hanging Rock New South Wales'),
3912
+ (3556, '2577', 'Wildes Meadow', 'NSW', 'AU', 486, ' 2577 Wildes Meadow New South Wales'),
3913
+ (3557, '2577', 'Werai', 'NSW', 'AU', 486, ' 2577 Werai New South Wales'),
3914
+ (3558, '2577', 'Upper Kangaroo River', 'NSW', 'AU', 486, ' 2577 Upper Kangaroo River New South Wales'),
3915
+ (3559, '2577', 'Upper Kangaroo Valley', 'NSW', 'AU', 486, ' 2577 Upper Kangaroo Valley New South Wales'),
3916
+ (3560, '2577', 'Sutton Forest', 'NSW', 'AU', 486, ' 2577 Sutton Forest New South Wales'),
3917
+ (3561, '2577', 'Red Rocks', 'NSW', 'AU', 486, ' 2577 Red Rocks New South Wales'),
3918
+ (3562, '2577', 'Robertson', 'NSW', 'AU', 486, ' 2577 Robertson New South Wales'),
3919
+ (3563, '2578', 'Bundanoon', 'NSW', 'AU', 486, ' 2578 Bundanoon New South Wales'),
3920
+ (3564, '2579', 'Brayton', 'NSW', 'AU', 486, ' 2579 Brayton New South Wales'),
3921
+ (3565, '2579', 'Exeter', 'NSW', 'AU', 486, ' 2579 Exeter New South Wales'),
3922
+ (3566, '2579', 'Penrose', 'NSW', 'AU', 486, ' 2579 Penrose New South Wales'),
3923
+ (3567, '2579', 'Marulan', 'NSW', 'AU', 486, ' 2579 Marulan New South Wales'),
3924
+ (3568, '2579', 'Tallong', 'NSW', 'AU', 486, ' 2579 Tallong New South Wales'),
3925
+ (3569, '2579', 'Wingello', 'NSW', 'AU', 486, ' 2579 Wingello New South Wales'),
3926
+ (3570, '2579', 'Big Hill', 'NSW', 'AU', 486, ' 2579 Big Hill New South Wales'),
3927
+ (3571, '2580', 'Wayo', 'NSW', 'AU', 486, ' 2580 Wayo New South Wales'),
3928
+ (3572, '2580', 'Tirrannaville', 'NSW', 'AU', 486, ' 2580 Tirrannaville New South Wales'),
3929
+ (3573, '2580', 'Towrang', 'NSW', 'AU', 486, ' 2580 Towrang New South Wales'),
3930
+ (3574, '2580', 'Boxers Creek', 'NSW', 'AU', 486, ' 2580 Boxers Creek New South Wales'),
3931
+ (3575, '2580', 'Brisbane Grove', 'NSW', 'AU', 486, ' 2580 Brisbane Grove New South Wales'),
3932
+ (3576, '2580', 'Bungonia', 'NSW', 'AU', 486, ' 2580 Bungonia New South Wales'),
3933
+ (3577, '2580', 'Carrick', 'NSW', 'AU', 486, ' 2580 Carrick New South Wales'),
3934
+ (3578, '2580', 'Chatsbury', 'NSW', 'AU', 486, ' 2580 Chatsbury New South Wales'),
3935
+ (3579, '2580', 'Currawang', 'NSW', 'AU', 486, ' 2580 Currawang New South Wales'),
3936
+ (3580, '2580', 'Curraweela', 'NSW', 'AU', 486, ' 2580 Curraweela New South Wales'),
3937
+ (3581, '2580', 'Golspie', 'NSW', 'AU', 486, ' 2580 Golspie New South Wales'),
3938
+ (3582, '2580', 'Goulburn', 'NSW', 'AU', 486, ' 2580 Goulburn New South Wales'),
3939
+ (3583, '2580', 'Goulburn North', 'NSW', 'AU', 486, ' 2580 Goulburn North New South Wales'),
3940
+ (3584, '2580', 'Greenwich Park', 'NSW', 'AU', 486, ' 2580 Greenwich Park New South Wales'),
3941
+ (3585, '2580', 'Gundary', 'NSW', 'AU', 486, ' 2580 Gundary New South Wales'),
3942
+ (3586, '2580', 'Jerrong', 'NSW', 'AU', 486, ' 2580 Jerrong New South Wales'),
3943
+ (3587, '2580', 'Kingsdale', 'NSW', 'AU', 486, ' 2580 Kingsdale New South Wales'),
3944
+ (3588, '2580', 'Lake Bathurst', 'NSW', 'AU', 486, ' 2580 Lake Bathurst New South Wales'),
3945
+ (3589, '2580', 'Lower Boro', 'NSW', 'AU', 486, ' 2580 Lower Boro New South Wales'),
3946
+ (3590, '2580', 'Mayfield', 'NSW', 'AU', 486, ' 2580 Mayfield New South Wales'),
3947
+ (3591, '2580', 'Middle Arm', 'NSW', 'AU', 486, ' 2580 Middle Arm New South Wales'),
3948
+ (3592, '2580', 'Mount Fairy', 'NSW', 'AU', 486, ' 2580 Mount Fairy New South Wales'),
3949
+ (3593, '2580', 'Mummel', 'NSW', 'AU', 486, ' 2580 Mummel New South Wales'),
3950
+ (3594, '2580', 'Myrtleville', 'NSW', 'AU', 486, ' 2580 Myrtleville New South Wales'),
3951
+ (3595, '2580', 'Paling Yards', 'NSW', 'AU', 486, ' 2580 Paling Yards New South Wales'),
3952
+ (3596, '2580', 'Parkesbourne', 'NSW', 'AU', 486, ' 2580 Parkesbourne New South Wales'),
3953
+ (3597, '2580', 'Pomeroy', 'NSW', 'AU', 486, ' 2580 Pomeroy New South Wales'),
3954
+ (3598, '2580', 'Quialigo', 'NSW', 'AU', 486, ' 2580 Quialigo New South Wales'),
3955
+ (3599, '2580', 'Richlands', 'NSW', 'AU', 486, ' 2580 Richlands New South Wales'),
3956
+ (3600, '2580', 'Roslyn', 'NSW', 'AU', 486, ' 2580 Roslyn New South Wales'),
3957
+ (3601, '2580', 'Run-o-waters', 'NSW', 'AU', 486, ' 2580 Run-o-waters New South Wales'),
3958
+ (3602, '2580', 'Stonequarry', 'NSW', 'AU', 486, ' 2580 Stonequarry New South Wales'),
3959
+ (3603, '2580', 'Tarago', 'NSW', 'AU', 486, ' 2580 Tarago New South Wales'),
3960
+ (3604, '2580', 'Taralga', 'NSW', 'AU', 486, ' 2580 Taralga New South Wales'),
3961
+ (3605, '2580', 'Tarlo', 'NSW', 'AU', 486, ' 2580 Tarlo New South Wales'),
3962
+ (3606, '2580', 'Wiarborough', 'NSW', 'AU', 486, ' 2580 Wiarborough New South Wales'),
3963
+ (3607, '2580', 'Windellama', 'NSW', 'AU', 486, ' 2580 Windellama New South Wales'),
3964
+ (3608, '2580', 'Wombeyan Caves', 'NSW', 'AU', 486, ' 2580 Wombeyan Caves New South Wales'),
3965
+ (3609, '2580', 'Woodhouselee', 'NSW', 'AU', 486, ' 2580 Woodhouselee New South Wales'),
3966
+ (3610, '2580', 'Yalbraith', 'NSW', 'AU', 486, ' 2580 Yalbraith New South Wales'),
3967
+ (3611, '2580', 'Yarra', 'NSW', 'AU', 486, ' 2580 Yarra New South Wales'),
3968
+ (3612, '2580', 'Bannaby', 'NSW', 'AU', 486, ' 2580 Bannaby New South Wales'),
3969
+ (3613, '2580', 'Bannister', 'NSW', 'AU', 486, ' 2580 Bannister New South Wales'),
3970
+ (3614, '2580', 'Baw Baw', 'NSW', 'AU', 486, ' 2580 Baw Baw New South Wales'),
3971
+ (3615, '2581', 'Bellmount Forest', 'NSW', 'AU', 486, ' 2581 Bellmount Forest New South Wales'),
3972
+ (3616, '2581', 'Wollogorang', 'NSW', 'AU', 486, ' 2581 Wollogorang New South Wales'),
3973
+ (3617, '2581', 'Oolong', 'NSW', 'AU', 486, ' 2581 Oolong New South Wales'),
3974
+ (3618, '2581', 'Merrill', 'NSW', 'AU', 486, ' 2581 Merrill New South Wales'),
3975
+ (3619, '2581', 'Lerida', 'NSW', 'AU', 486, ' 2581 Lerida New South Wales'),
3976
+ (3620, '2581', 'Lake George', 'NSW', 'AU', 486, ' 2581 Lake George New South Wales'),
3977
+ (3621, '2581', 'Lade Vale', 'NSW', 'AU', 486, ' 2581 Lade Vale New South Wales'),
3978
+ (3622, '2581', 'Gunning', 'NSW', 'AU', 486, ' 2581 Gunning New South Wales'),
3979
+ (3623, '2581', 'Gurrundah', 'NSW', 'AU', 486, ' 2581 Gurrundah New South Wales'),
3980
+ (3624, '2581', 'Cullerin', 'NSW', 'AU', 486, ' 2581 Cullerin New South Wales'),
3981
+ (3625, '2581', 'Dalton', 'NSW', 'AU', 486, ' 2581 Dalton New South Wales'),
3982
+ (3626, '2581', 'Collector', 'NSW', 'AU', 486, ' 2581 Collector New South Wales'),
3983
+ (3627, '2581', 'Broadway', 'NSW', 'AU', 486, ' 2581 Broadway New South Wales'),
3984
+ (3628, '2581', 'Breadalbane', 'NSW', 'AU', 486, ' 2581 Breadalbane New South Wales'),
3985
+ (3629, '2581', 'Bevendale', 'NSW', 'AU', 486, ' 2581 Bevendale New South Wales'),
3986
+ (3630, '2581', 'Biala', 'NSW', 'AU', 486, ' 2581 Biala New South Wales'),
3987
+ (3631, '2581', 'Blakney Creek', 'NSW', 'AU', 486, ' 2581 Blakney Creek New South Wales'),
3988
+ (3632, '2582', 'Boambolo', 'NSW', 'AU', 486, ' 2582 Boambolo New South Wales'),
3989
+ (3633, '2582', 'Bookham', 'NSW', 'AU', 486, ' 2582 Bookham New South Wales'),
3990
+ (3634, '2582', 'Bowning', 'NSW', 'AU', 486, ' 2582 Bowning New South Wales'),
3991
+ (3635, '2582', 'Cavan', 'NSW', 'AU', 486, ' 2582 Cavan New South Wales'),
3992
+ (3636, '2582', 'Burrinjuck', 'NSW', 'AU', 486, ' 2582 Burrinjuck New South Wales'),
3993
+ (3637, '2582', 'Good Hope', 'NSW', 'AU', 486, ' 2582 Good Hope New South Wales'),
3994
+ (3638, '2582', 'Jerrawa', 'NSW', 'AU', 486, ' 2582 Jerrawa New South Wales'),
3995
+ (3639, '2582', 'Jeir', 'NSW', 'AU', 486, ' 2582 Jeir New South Wales'),
3996
+ (3640, '2582', 'Kangiara', 'NSW', 'AU', 486, ' 2582 Kangiara New South Wales'),
3997
+ (3641, '2582', 'Laverstock', 'NSW', 'AU', 486, ' 2582 Laverstock New South Wales'),
3998
+ (3642, '2582', 'Manton', 'NSW', 'AU', 486, ' 2582 Manton New South Wales'),
3999
+ (3643, '2582', 'Marchmont', 'NSW', 'AU', 486, ' 2582 Marchmont New South Wales'),
4000
+ (3644, '2582', 'Murrumbateman', 'NSW', 'AU', 486, ' 2582 Murrumbateman New South Wales'),
4001
+ (3645, '2582', 'Mullion', 'NSW', 'AU', 486, ' 2582 Mullion New South Wales'),
4002
+ (3646, '2582', 'Narrangullen', 'NSW', 'AU', 486, ' 2582 Narrangullen New South Wales'),
4003
+ (3647, '2582', 'Woolgarlo', 'NSW', 'AU', 486, ' 2582 Woolgarlo New South Wales'),
4004
+ (3648, '2582', 'Yass', 'NSW', 'AU', 486, ' 2582 Yass New South Wales'),
4005
+ (3649, '2582', 'Yass River', 'NSW', 'AU', 486, ' 2582 Yass River New South Wales'),
4006
+ (3650, '2582', 'Wee Jasper', 'NSW', 'AU', 486, ' 2582 Wee Jasper New South Wales'),
4007
+ (3651, '2582', 'Bango', 'NSW', 'AU', 486, ' 2582 Bango New South Wales'),
4008
+ (3652, '2582', 'Berremangra', 'NSW', 'AU', 486, ' 2582 Berremangra New South Wales'),
4009
+ (3653, '2583', 'Wheeo', 'NSW', 'AU', 486, ' 2583 Wheeo New South Wales');
4010
+ INSERT INTO {$this->getTable('candf_pcs')} (`entity_id`, `postcode`, `city`, `state`, `country_id`, `region_id`, `fulltext`) VALUES
4011
+ (3654, '2583', 'Narrawa', 'NSW', 'AU', 486, ' 2583 Narrawa New South Wales'),
4012
+ (3655, '2583', 'Peelwood', 'NSW', 'AU', 486, ' 2583 Peelwood New South Wales'),
4013
+ (3656, '2583', 'Pejar', 'NSW', 'AU', 486, ' 2583 Pejar New South Wales'),
4014
+ (3657, '2583', 'Rugby', 'NSW', 'AU', 486, ' 2583 Rugby New South Wales'),
4015
+ (3658, '2583', 'Lost River', 'NSW', 'AU', 486, ' 2583 Lost River New South Wales'),
4016
+ (3659, '2583', 'Limerick', 'NSW', 'AU', 486, ' 2583 Limerick New South Wales'),
4017
+ (3660, '2583', 'Laggan', 'NSW', 'AU', 486, ' 2583 Laggan New South Wales'),
4018
+ (3661, '2583', 'Grabben Gullen', 'NSW', 'AU', 486, ' 2583 Grabben Gullen New South Wales'),
4019
+ (3662, '2583', 'Grabine', 'NSW', 'AU', 486, ' 2583 Grabine New South Wales'),
4020
+ (3663, '2583', 'Crooked Corner', 'NSW', 'AU', 486, ' 2583 Crooked Corner New South Wales'),
4021
+ (3664, '2583', 'Crookwell', 'NSW', 'AU', 486, ' 2583 Crookwell New South Wales'),
4022
+ (3665, '2583', 'Fullerton', 'NSW', 'AU', 486, ' 2583 Fullerton New South Wales'),
4023
+ (3666, '2583', 'Binda', 'NSW', 'AU', 486, ' 2583 Binda New South Wales'),
4024
+ (3667, '2583', 'Bigga', 'NSW', 'AU', 486, ' 2583 Bigga New South Wales'),
4025
+ (3668, '2583', 'Tuena', 'NSW', 'AU', 486, ' 2583 Tuena New South Wales'),
4026
+ (3669, '2584', 'Binalong', 'NSW', 'AU', 486, ' 2584 Binalong New South Wales'),
4027
+ (3670, '2585', 'Galong', 'NSW', 'AU', 486, ' 2585 Galong New South Wales'),
4028
+ (3671, '2586', 'Frogmore', 'NSW', 'AU', 486, ' 2586 Frogmore New South Wales'),
4029
+ (3672, '2586', 'Godfreys Creek', 'NSW', 'AU', 486, ' 2586 Godfreys Creek New South Wales'),
4030
+ (3673, '2586', 'Boorowa', 'NSW', 'AU', 486, ' 2586 Boorowa New South Wales'),
4031
+ (3674, '2586', 'Murringo', 'NSW', 'AU', 486, ' 2586 Murringo New South Wales'),
4032
+ (3675, '2586', 'Rye Park', 'NSW', 'AU', 486, ' 2586 Rye Park New South Wales'),
4033
+ (3676, '2586', 'Taylors Flat', 'NSW', 'AU', 486, ' 2586 Taylors Flat New South Wales'),
4034
+ (3677, '2586', 'Reids Flat', 'NSW', 'AU', 486, ' 2586 Reids Flat New South Wales'),
4035
+ (3678, '2587', 'Nubba', 'NSW', 'AU', 486, ' 2587 Nubba New South Wales'),
4036
+ (3679, '2587', 'Murrumburrah', 'NSW', 'AU', 486, ' 2587 Murrumburrah New South Wales'),
4037
+ (3680, '2587', 'Mcmahons Reef', 'NSW', 'AU', 486, ' 2587 Mcmahons Reef New South Wales'),
4038
+ (3681, '2587', 'Kingsvale', 'NSW', 'AU', 486, ' 2587 Kingsvale New South Wales'),
4039
+ (3682, '2587', 'Harden', 'NSW', 'AU', 486, ' 2587 Harden New South Wales'),
4040
+ (3683, '2587', 'Wombat', 'NSW', 'AU', 486, ' 2587 Wombat New South Wales'),
4041
+ (3684, '2588', 'Wallendbeen', 'NSW', 'AU', 486, ' 2588 Wallendbeen New South Wales'),
4042
+ (3685, '2590', 'Illabo', 'NSW', 'AU', 486, ' 2590 Illabo New South Wales'),
4043
+ (3686, '2590', 'Bethungra', 'NSW', 'AU', 486, ' 2590 Bethungra New South Wales'),
4044
+ (3687, '2590', 'Cootamundra', 'NSW', 'AU', 486, ' 2590 Cootamundra New South Wales'),
4045
+ (3688, '2594', 'Burrangong', 'NSW', 'AU', 486, ' 2594 Burrangong New South Wales'),
4046
+ (3689, '2594', 'Bribbaree', 'NSW', 'AU', 486, ' 2594 Bribbaree New South Wales'),
4047
+ (3690, '2594', 'Bulla Creek', 'NSW', 'AU', 486, ' 2594 Bulla Creek New South Wales'),
4048
+ (3691, '2594', 'Kikiamah', 'NSW', 'AU', 486, ' 2594 Kikiamah New South Wales'),
4049
+ (3692, '2594', 'Maimuru', 'NSW', 'AU', 486, ' 2594 Maimuru New South Wales'),
4050
+ (3693, '2594', 'Memagong', 'NSW', 'AU', 486, ' 2594 Memagong New South Wales'),
4051
+ (3694, '2594', 'Milvale', 'NSW', 'AU', 486, ' 2594 Milvale New South Wales'),
4052
+ (3695, '2594', 'Monteagle', 'NSW', 'AU', 486, ' 2594 Monteagle New South Wales'),
4053
+ (3696, '2594', 'Thuddungra', 'NSW', 'AU', 486, ' 2594 Thuddungra New South Wales'),
4054
+ (3697, '2594', 'Tubbul', 'NSW', 'AU', 486, ' 2594 Tubbul New South Wales'),
4055
+ (3698, '2594', 'Young', 'NSW', 'AU', 486, ' 2594 Young New South Wales'),
4056
+ (3699, '2594', 'Weedallion', 'NSW', 'AU', 486, ' 2594 Weedallion New South Wales'),
4057
+ (3700, '2594', 'Berthong', 'NSW', 'AU', 486, ' 2594 Berthong New South Wales'),
4058
+ (3701, '2600', 'Yarralumla', 'ACT', 'AU', 485, ' 2600 Yarralumla Australian Capital Territory'),
4059
+ (3702, '2600', 'Parkes', 'ACT', 'AU', 485, ' 2600 Parkes Australian Capital Territory'),
4060
+ (3703, '2600', 'Parliament House', 'ACT', 'AU', 485, ' 2600 Parliament House Australian Capital Territory'),
4061
+ (3704, '2600', 'Russell', 'ACT', 'AU', 485, ' 2600 Russell Australian Capital Territory'),
4062
+ (3705, '2600', 'Russell Hill', 'ACT', 'AU', 485, ' 2600 Russell Hill Australian Capital Territory'),
4063
+ (3706, '2600', 'Capital Hill', 'ACT', 'AU', 485, ' 2600 Capital Hill Australian Capital Territory'),
4064
+ (3707, '2600', 'Deakin', 'ACT', 'AU', 485, ' 2600 Deakin Australian Capital Territory'),
4065
+ (3708, '2600', 'Deakin West', 'ACT', 'AU', 485, ' 2600 Deakin West Australian Capital Territory'),
4066
+ (3709, '2600', 'Duntroon', 'ACT', 'AU', 485, ' 2600 Duntroon Australian Capital Territory'),
4067
+ (3710, '2600', 'Harman', 'ACT', 'AU', 485, ' 2600 Harman Australian Capital Territory'),
4068
+ (3711, '2600', 'Hmas Harman', 'ACT', 'AU', 485, ' 2600 Hmas Harman Australian Capital Territory'),
4069
+ (3712, '2600', 'Barton', 'ACT', 'AU', 485, ' 2600 Barton Australian Capital Territory'),
4070
+ (3713, '2600', 'Canberra', 'ACT', 'AU', 485, ' 2600 Canberra Australian Capital Territory'),
4071
+ (3714, '2601', 'Canberra', 'ACT', 'AU', 485, ' 2601 Canberra Australian Capital Territory'),
4072
+ (3715, '2601', 'Black Mountain', 'ACT', 'AU', 485, ' 2601 Black Mountain Australian Capital Territory'),
4073
+ (3716, '2601', 'Acton', 'ACT', 'AU', 485, ' 2601 Acton Australian Capital Territory'),
4074
+ (3717, '2601', 'City', 'ACT', 'AU', 485, ' 2601 City Australian Capital Territory'),
4075
+ (3718, '2602', 'Dickson', 'ACT', 'AU', 485, ' 2602 Dickson Australian Capital Territory'),
4076
+ (3719, '2602', 'Downer', 'ACT', 'AU', 485, ' 2602 Downer Australian Capital Territory'),
4077
+ (3720, '2602', 'Hackett', 'ACT', 'AU', 485, ' 2602 Hackett Australian Capital Territory'),
4078
+ (3721, '2602', 'Lyneham', 'ACT', 'AU', 485, ' 2602 Lyneham Australian Capital Territory'),
4079
+ (3722, '2602', 'O''connor', 'ACT', 'AU', 485, ' 2602 O''connor Australian Capital Territory'),
4080
+ (3723, '2602', 'Watson', 'ACT', 'AU', 485, ' 2602 Watson Australian Capital Territory'),
4081
+ (3724, '2602', 'Ainslie', 'ACT', 'AU', 485, ' 2602 Ainslie Australian Capital Territory'),
4082
+ (3725, '2603', 'Red Hill', 'ACT', 'AU', 485, ' 2603 Red Hill Australian Capital Territory'),
4083
+ (3726, '2603', 'Manuka', 'ACT', 'AU', 485, ' 2603 Manuka Australian Capital Territory'),
4084
+ (3727, '2603', 'Griffith', 'ACT', 'AU', 485, ' 2603 Griffith Australian Capital Territory'),
4085
+ (3728, '2603', 'Forrest', 'ACT', 'AU', 485, ' 2603 Forrest Australian Capital Territory'),
4086
+ (3729, '2604', 'Causeway', 'ACT', 'AU', 485, ' 2604 Causeway Australian Capital Territory'),
4087
+ (3730, '2604', 'Kingston', 'ACT', 'AU', 485, ' 2604 Kingston Australian Capital Territory'),
4088
+ (3731, '2604', 'Narrabundah', 'ACT', 'AU', 485, ' 2604 Narrabundah Australian Capital Territory'),
4089
+ (3732, '2605', 'Hughes', 'ACT', 'AU', 485, ' 2605 Hughes Australian Capital Territory'),
4090
+ (3733, '2605', 'Curtin', 'ACT', 'AU', 485, ' 2605 Curtin Australian Capital Territory'),
4091
+ (3734, '2605', 'Garran', 'ACT', 'AU', 485, ' 2605 Garran Australian Capital Territory'),
4092
+ (3735, '2606', 'Chifley', 'ACT', 'AU', 485, ' 2606 Chifley Australian Capital Territory'),
4093
+ (3736, '2606', 'Lyons', 'ACT', 'AU', 485, ' 2606 Lyons Australian Capital Territory'),
4094
+ (3737, '2606', 'Phillip', 'ACT', 'AU', 485, ' 2606 Phillip Australian Capital Territory'),
4095
+ (3738, '2606', 'O''malley', 'ACT', 'AU', 485, ' 2606 O''malley Australian Capital Territory'),
4096
+ (3739, '2606', 'Swinger Hill', 'ACT', 'AU', 485, ' 2606 Swinger Hill Australian Capital Territory'),
4097
+ (3740, '2606', 'Woden', 'ACT', 'AU', 485, ' 2606 Woden Australian Capital Territory'),
4098
+ (3741, '2607', 'Torrens', 'ACT', 'AU', 485, ' 2607 Torrens Australian Capital Territory'),
4099
+ (3742, '2607', 'Pearce', 'ACT', 'AU', 485, ' 2607 Pearce Australian Capital Territory'),
4100
+ (3743, '2607', 'Mawson', 'ACT', 'AU', 485, ' 2607 Mawson Australian Capital Territory'),
4101
+ (3744, '2607', 'Isaacs', 'ACT', 'AU', 485, ' 2607 Isaacs Australian Capital Territory'),
4102
+ (3745, '2607', 'Farrer', 'ACT', 'AU', 485, ' 2607 Farrer Australian Capital Territory'),
4103
+ (3746, '2608', 'Civic Square', 'ACT', 'AU', 485, ' 2608 Civic Square Australian Capital Territory'),
4104
+ (3747, '2609', 'Fyshwick', 'ACT', 'AU', 485, ' 2609 Fyshwick Australian Capital Territory'),
4105
+ (3748, '2609', 'Majura', 'ACT', 'AU', 485, ' 2609 Majura Australian Capital Territory'),
4106
+ (3749, '2609', 'Pialligo', 'ACT', 'AU', 485, ' 2609 Pialligo Australian Capital Territory'),
4107
+ (3750, '2609', 'Symonston', 'ACT', 'AU', 485, ' 2609 Symonston Australian Capital Territory'),
4108
+ (3751, '2609', 'Canberra Airport', 'ACT', 'AU', 485, ' 2609 Canberra Airport Australian Capital Territory'),
4109
+ (3752, '2610', 'Canberra', 'ACT', 'AU', 485, ' 2610 Canberra Australian Capital Territory'),
4110
+ (3753, '2611', 'Stirling', 'ACT', 'AU', 485, ' 2611 Stirling Australian Capital Territory'),
4111
+ (3754, '2611', 'Mount Stromlo', 'ACT', 'AU', 485, ' 2611 Mount Stromlo Australian Capital Territory'),
4112
+ (3755, '2611', 'Rivett', 'ACT', 'AU', 485, ' 2611 Rivett Australian Capital Territory'),
4113
+ (3756, '2611', 'Pierces Creek', 'ACT', 'AU', 485, ' 2611 Pierces Creek Australian Capital Territory'),
4114
+ (3757, '2611', 'Waramanga', 'ACT', 'AU', 485, ' 2611 Waramanga Australian Capital Territory'),
4115
+ (3758, '2611', 'Weston', 'ACT', 'AU', 485, ' 2611 Weston Australian Capital Territory'),
4116
+ (3759, '2611', 'Weston Creek', 'ACT', 'AU', 485, ' 2611 Weston Creek Australian Capital Territory'),
4117
+ (3760, '2611', 'Uriarra', 'ACT', 'AU', 485, ' 2611 Uriarra Australian Capital Territory'),
4118
+ (3761, '2611', 'Uriarra Forest', 'ACT', 'AU', 485, ' 2611 Uriarra Forest Australian Capital Territory'),
4119
+ (3762, '2611', 'Holder', 'ACT', 'AU', 485, ' 2611 Holder Australian Capital Territory'),
4120
+ (3763, '2611', 'Fisher', 'ACT', 'AU', 485, ' 2611 Fisher Australian Capital Territory'),
4121
+ (3764, '2611', 'Chapman', 'ACT', 'AU', 485, ' 2611 Chapman Australian Capital Territory'),
4122
+ (3765, '2611', 'Duffy', 'ACT', 'AU', 485, ' 2611 Duffy Australian Capital Territory'),
4123
+ (3766, '2611', 'Uriarra', 'NSW', 'AU', 486, ' 2611 Uriarra New South Wales'),
4124
+ (3767, '2611', 'Brindabella', 'NSW', 'AU', 486, ' 2611 Brindabella New South Wales'),
4125
+ (3768, '2611', 'Bimberi', 'NSW', 'AU', 486, ' 2611 Bimberi New South Wales'),
4126
+ (3769, '2611', 'Cooleman', 'NSW', 'AU', 486, ' 2611 Cooleman New South Wales'),
4127
+ (3770, '2612', 'Turner', 'ACT', 'AU', 485, ' 2612 Turner Australian Capital Territory'),
4128
+ (3771, '2612', 'Reid', 'ACT', 'AU', 485, ' 2612 Reid Australian Capital Territory'),
4129
+ (3772, '2612', 'Campbell', 'ACT', 'AU', 485, ' 2612 Campbell Australian Capital Territory'),
4130
+ (3773, '2612', 'Braddon', 'ACT', 'AU', 485, ' 2612 Braddon Australian Capital Territory'),
4131
+ (3774, '2614', 'Aranda', 'ACT', 'AU', 485, ' 2614 Aranda Australian Capital Territory'),
4132
+ (3775, '2614', 'Scullin', 'ACT', 'AU', 485, ' 2614 Scullin Australian Capital Territory'),
4133
+ (3776, '2614', 'Page', 'ACT', 'AU', 485, ' 2614 Page Australian Capital Territory'),
4134
+ (3777, '2614', 'Weetangera', 'ACT', 'AU', 485, ' 2614 Weetangera Australian Capital Territory'),
4135
+ (3778, '2614', 'Cook', 'ACT', 'AU', 485, ' 2614 Cook Australian Capital Territory'),
4136
+ (3779, '2614', 'Jamison Centre', 'ACT', 'AU', 485, ' 2614 Jamison Centre Australian Capital Territory'),
4137
+ (3780, '2614', 'Hawker', 'ACT', 'AU', 485, ' 2614 Hawker Australian Capital Territory'),
4138
+ (3781, '2614', 'Macquarie', 'ACT', 'AU', 485, ' 2614 Macquarie Australian Capital Territory'),
4139
+ (3782, '2615', 'Macgregor', 'ACT', 'AU', 485, ' 2615 Macgregor Australian Capital Territory'),
4140
+ (3783, '2615', 'Kippax', 'ACT', 'AU', 485, ' 2615 Kippax Australian Capital Territory'),
4141
+ (3784, '2615', 'Latham', 'ACT', 'AU', 485, ' 2615 Latham Australian Capital Territory'),
4142
+ (3785, '2615', 'Higgins', 'ACT', 'AU', 485, ' 2615 Higgins Australian Capital Territory'),
4143
+ (3786, '2615', 'Holt', 'ACT', 'AU', 485, ' 2615 Holt Australian Capital Territory'),
4144
+ (3787, '2615', 'Dunlop', 'ACT', 'AU', 485, ' 2615 Dunlop Australian Capital Territory'),
4145
+ (3788, '2615', 'Charnwood', 'ACT', 'AU', 485, ' 2615 Charnwood Australian Capital Territory'),
4146
+ (3789, '2615', 'Florey', 'ACT', 'AU', 485, ' 2615 Florey Australian Capital Territory'),
4147
+ (3790, '2615', 'Flynn', 'ACT', 'AU', 485, ' 2615 Flynn Australian Capital Territory'),
4148
+ (3791, '2615', 'Fraser', 'ACT', 'AU', 485, ' 2615 Fraser Australian Capital Territory'),
4149
+ (3792, '2615', 'Melba', 'ACT', 'AU', 485, ' 2615 Melba Australian Capital Territory'),
4150
+ (3793, '2615', 'Spence', 'ACT', 'AU', 485, ' 2615 Spence Australian Capital Territory'),
4151
+ (3794, '2616', 'Belconnen', 'ACT', 'AU', 485, ' 2616 Belconnen Australian Capital Territory'),
4152
+ (3795, '2617', 'Belconnen', 'ACT', 'AU', 485, ' 2617 Belconnen Australian Capital Territory'),
4153
+ (3796, '2617', 'Bruce', 'ACT', 'AU', 485, ' 2617 Bruce Australian Capital Territory'),
4154
+ (3797, '2617', 'University Of Canberra', 'ACT', 'AU', 485, ' 2617 University Of Canberra Australian Capital Territory'),
4155
+ (3798, '2617', 'Giralang', 'ACT', 'AU', 485, ' 2617 Giralang Australian Capital Territory'),
4156
+ (3799, '2617', 'Evatt', 'ACT', 'AU', 485, ' 2617 Evatt Australian Capital Territory'),
4157
+ (3800, '2617', 'Kaleen', 'ACT', 'AU', 485, ' 2617 Kaleen Australian Capital Territory'),
4158
+ (3801, '2617', 'Lawson', 'ACT', 'AU', 485, ' 2617 Lawson Australian Capital Territory'),
4159
+ (3802, '2617', 'Mckellar', 'ACT', 'AU', 485, ' 2617 Mckellar Australian Capital Territory'),
4160
+ (3803, '2618', 'Hall', 'ACT', 'AU', 485, ' 2618 Hall Australian Capital Territory'),
4161
+ (3804, '2618', 'Springrange', 'NSW', 'AU', 486, ' 2618 Springrange New South Wales'),
4162
+ (3805, '2618', 'Nanima', 'NSW', 'AU', 486, ' 2618 Nanima New South Wales'),
4163
+ (3806, '2618', 'Wallaroo', 'NSW', 'AU', 486, ' 2618 Wallaroo New South Wales'),
4164
+ (3807, '2619', 'Jerrabomberra', 'NSW', 'AU', 486, ' 2619 Jerrabomberra New South Wales'),
4165
+ (3808, '2620', 'Gundaroo', 'NSW', 'AU', 486, ' 2620 Gundaroo New South Wales'),
4166
+ (3809, '2620', 'Googong', 'NSW', 'AU', 486, ' 2620 Googong New South Wales'),
4167
+ (3810, '2620', 'Greenleigh', 'NSW', 'AU', 486, ' 2620 Greenleigh New South Wales'),
4168
+ (3811, '2620', 'Environa', 'NSW', 'AU', 486, ' 2620 Environa New South Wales'),
4169
+ (3812, '2620', 'Crestwood', 'NSW', 'AU', 486, ' 2620 Crestwood New South Wales'),
4170
+ (3813, '2620', 'Burra', 'NSW', 'AU', 486, ' 2620 Burra New South Wales'),
4171
+ (3814, '2620', 'Carwoola', 'NSW', 'AU', 486, ' 2620 Carwoola New South Wales'),
4172
+ (3815, '2620', 'Clear Range', 'NSW', 'AU', 486, ' 2620 Clear Range New South Wales'),
4173
+ (3816, '2620', 'Queanbeyan', 'NSW', 'AU', 486, ' 2620 Queanbeyan New South Wales'),
4174
+ (3817, '2620', 'Queanbeyan East', 'NSW', 'AU', 486, ' 2620 Queanbeyan East New South Wales'),
4175
+ (3818, '2620', 'Queanbeyan West', 'NSW', 'AU', 486, ' 2620 Queanbeyan West New South Wales'),
4176
+ (3819, '2620', 'Sutton', 'NSW', 'AU', 486, ' 2620 Sutton New South Wales'),
4177
+ (3820, '2620', 'Tinderry', 'NSW', 'AU', 486, ' 2620 Tinderry New South Wales'),
4178
+ (3821, '2620', 'The Ridgeway', 'NSW', 'AU', 486, ' 2620 The Ridgeway New South Wales'),
4179
+ (3822, '2620', 'The Angle', 'NSW', 'AU', 486, ' 2620 The Angle New South Wales'),
4180
+ (3823, '2620', 'Royalla', 'NSW', 'AU', 486, ' 2620 Royalla New South Wales'),
4181
+ (3824, '2620', 'Michelago', 'NSW', 'AU', 486, ' 2620 Michelago New South Wales'),
4182
+ (3825, '2620', 'Karabar', 'NSW', 'AU', 486, ' 2620 Karabar New South Wales'),
4183
+ (3826, '2620', 'Urila', 'NSW', 'AU', 486, ' 2620 Urila New South Wales'),
4184
+ (3827, '2620', 'Tralee', 'NSW', 'AU', 486, ' 2620 Tralee New South Wales'),
4185
+ (3828, '2620', 'Wamboin', 'NSW', 'AU', 486, ' 2620 Wamboin New South Wales'),
4186
+ (3829, '2620', 'Hume', 'ACT', 'AU', 485, ' 2620 Hume Australian Capital Territory'),
4187
+ (3830, '2620', 'Kowen Forest', 'ACT', 'AU', 485, ' 2620 Kowen Forest Australian Capital Territory'),
4188
+ (3831, '2620', 'Williamsdale', 'ACT', 'AU', 485, ' 2620 Williamsdale Australian Capital Territory'),
4189
+ (3832, '2620', 'Top Naas', 'ACT', 'AU', 485, ' 2620 Top Naas Australian Capital Territory'),
4190
+ (3833, '2620', 'Tharwa', 'ACT', 'AU', 485, ' 2620 Tharwa Australian Capital Territory'),
4191
+ (3834, '2620', 'Oaks Estate', 'ACT', 'AU', 485, ' 2620 Oaks Estate Australian Capital Territory'),
4192
+ (3835, '2620', 'Beard', 'ACT', 'AU', 485, ' 2620 Beard Australian Capital Territory'),
4193
+ (3836, '2620', 'Williamsdale', 'NSW', 'AU', 486, ' 2620 Williamsdale New South Wales'),
4194
+ (3837, '2620', 'Yarrow', 'NSW', 'AU', 486, ' 2620 Yarrow New South Wales'),
4195
+ (3838, '2621', 'Anembo', 'NSW', 'AU', 486, ' 2621 Anembo New South Wales'),
4196
+ (3839, '2621', 'Rossi', 'NSW', 'AU', 486, ' 2621 Rossi New South Wales'),
4197
+ (3840, '2621', 'Primrose Valley', 'NSW', 'AU', 486, ' 2621 Primrose Valley New South Wales'),
4198
+ (3841, '2621', 'Bungendore', 'NSW', 'AU', 486, ' 2621 Bungendore New South Wales'),
4199
+ (3842, '2621', 'Bywong', 'NSW', 'AU', 486, ' 2621 Bywong New South Wales'),
4200
+ (3843, '2621', 'Forbes Creek', 'NSW', 'AU', 486, ' 2621 Forbes Creek New South Wales'),
4201
+ (3844, '2621', 'Hoskinstown', 'NSW', 'AU', 486, ' 2621 Hoskinstown New South Wales'),
4202
+ (3845, '2622', 'Hereford Hall', 'NSW', 'AU', 486, ' 2622 Hereford Hall New South Wales'),
4203
+ (3846, '2622', 'Jembaicumbene', 'NSW', 'AU', 486, ' 2622 Jembaicumbene New South Wales'),
4204
+ (3847, '2622', 'Jerrabattgulla', 'NSW', 'AU', 486, ' 2622 Jerrabattgulla New South Wales'),
4205
+ (3848, '2622', 'Jingera', 'NSW', 'AU', 486, ' 2622 Jingera New South Wales'),
4206
+ (3849, '2622', 'Jinden', 'NSW', 'AU', 486, ' 2622 Jinden New South Wales'),
4207
+ (3850, '2622', 'Harolds Cross', 'NSW', 'AU', 486, ' 2622 Harolds Cross New South Wales'),
4208
+ (3851, '2622', 'Farringdon', 'NSW', 'AU', 486, ' 2622 Farringdon New South Wales'),
4209
+ (3852, '2622', 'Endrick', 'NSW', 'AU', 486, ' 2622 Endrick New South Wales'),
4210
+ (3853, '2622', 'Durran Durra', 'NSW', 'AU', 486, ' 2622 Durran Durra New South Wales'),
4211
+ (3854, '2622', 'Corang', 'NSW', 'AU', 486, ' 2622 Corang New South Wales'),
4212
+ (3855, '2622', 'Coolumburra', 'NSW', 'AU', 486, ' 2622 Coolumburra New South Wales'),
4213
+ (3856, '2622', 'Charleys Forest', 'NSW', 'AU', 486, ' 2622 Charleys Forest New South Wales'),
4214
+ (3857, '2622', 'Bombay', 'NSW', 'AU', 486, ' 2622 Bombay New South Wales'),
4215
+ (3858, '2622', 'Boro', 'NSW', 'AU', 486, ' 2622 Boro New South Wales'),
4216
+ (3859, '2622', 'Bulee', 'NSW', 'AU', 486, ' 2622 Bulee New South Wales'),
4217
+ (3860, '2622', 'Braidwood', 'NSW', 'AU', 486, ' 2622 Braidwood New South Wales'),
4218
+ (3861, '2622', 'Budawang', 'NSW', 'AU', 486, ' 2622 Budawang New South Wales'),
4219
+ (3862, '2622', 'Palerang', 'NSW', 'AU', 486, ' 2622 Palerang New South Wales'),
4220
+ (3863, '2622', 'Quiera', 'NSW', 'AU', 486, ' 2622 Quiera New South Wales'),
4221
+ (3864, '2622', 'Reidsdale', 'NSW', 'AU', 486, ' 2622 Reidsdale New South Wales'),
4222
+ (3865, '2622', 'Neringla', 'NSW', 'AU', 486, ' 2622 Neringla New South Wales'),
4223
+ (3866, '2622', 'Nerriga', 'NSW', 'AU', 486, ' 2622 Nerriga New South Wales'),
4224
+ (3867, '2622', 'Northangera', 'NSW', 'AU', 486, ' 2622 Northangera New South Wales'),
4225
+ (3868, '2622', 'Oallen', 'NSW', 'AU', 486, ' 2622 Oallen New South Wales'),
4226
+ (3869, '2622', 'Sassafras', 'NSW', 'AU', 486, ' 2622 Sassafras New South Wales'),
4227
+ (3870, '2622', 'Snowball', 'NSW', 'AU', 486, ' 2622 Snowball New South Wales'),
4228
+ (3871, '2622', 'Tianjara', 'NSW', 'AU', 486, ' 2622 Tianjara New South Wales'),
4229
+ (3872, '2622', 'St George', 'NSW', 'AU', 486, ' 2622 St George New South Wales'),
4230
+ (3873, '2622', 'Kindervale', 'NSW', 'AU', 486, ' 2622 Kindervale New South Wales'),
4231
+ (3874, '2622', 'Krawarree', 'NSW', 'AU', 486, ' 2622 Krawarree New South Wales'),
4232
+ (3875, '2622', 'Marlowe', 'NSW', 'AU', 486, ' 2622 Marlowe New South Wales'),
4233
+ (3876, '2622', 'Majors Creek', 'NSW', 'AU', 486, ' 2622 Majors Creek New South Wales'),
4234
+ (3877, '2622', 'Manar', 'NSW', 'AU', 486, ' 2622 Manar New South Wales'),
4235
+ (3878, '2622', 'Larbert', 'NSW', 'AU', 486, ' 2622 Larbert New South Wales'),
4236
+ (3879, '2622', 'Monga', 'NSW', 'AU', 486, ' 2622 Monga New South Wales'),
4237
+ (3880, '2622', 'Mongarlowe', 'NSW', 'AU', 486, ' 2622 Mongarlowe New South Wales'),
4238
+ (3881, '2622', 'Merricumbene', 'NSW', 'AU', 486, ' 2622 Merricumbene New South Wales'),
4239
+ (3882, '2622', 'Murrengenburg', 'NSW', 'AU', 486, ' 2622 Murrengenburg New South Wales'),
4240
+ (3883, '2622', 'Mulloon', 'NSW', 'AU', 486, ' 2622 Mulloon New South Wales'),
4241
+ (3884, '2622', 'Warri', 'NSW', 'AU', 486, ' 2622 Warri New South Wales'),
4242
+ (3885, '2622', 'Tolwong', 'NSW', 'AU', 486, ' 2622 Tolwong New South Wales'),
4243
+ (3886, '2622', 'Tomboye', 'NSW', 'AU', 486, ' 2622 Tomboye New South Wales'),
4244
+ (3887, '2622', 'Touga', 'NSW', 'AU', 486, ' 2622 Touga New South Wales'),
4245
+ (3888, '2622', 'Bendoura', 'NSW', 'AU', 486, ' 2622 Bendoura New South Wales'),
4246
+ (3889, '2622', 'Berlang', 'NSW', 'AU', 486, ' 2622 Berlang New South Wales'),
4247
+ (3890, '2622', 'Back Creek', 'NSW', 'AU', 486, ' 2622 Back Creek New South Wales'),
4248
+ (3891, '2622', 'Ballalaba', 'NSW', 'AU', 486, ' 2622 Ballalaba New South Wales'),
4249
+ (3892, '2622', 'Araluen', 'NSW', 'AU', 486, ' 2622 Araluen New South Wales'),
4250
+ (3893, '2622', 'Wog Wog', 'NSW', 'AU', 486, ' 2622 Wog Wog New South Wales'),
4251
+ (3894, '2622', 'Wyanbene', 'NSW', 'AU', 486, ' 2622 Wyanbene New South Wales'),
4252
+ (3895, '2623', 'Captains Flat', 'NSW', 'AU', 486, ' 2623 Captains Flat New South Wales'),
4253
+ (3896, '2624', 'Perisher Valley', 'NSW', 'AU', 486, ' 2624 Perisher Valley New South Wales'),
4254
+ (3897, '2625', 'Thredbo', 'NSW', 'AU', 486, ' 2625 Thredbo New South Wales'),
4255
+ (3898, '2626', 'Colinton', 'NSW', 'AU', 486, ' 2626 Colinton New South Wales'),
4256
+ (3899, '2626', 'Bumbalong', 'NSW', 'AU', 486, ' 2626 Bumbalong New South Wales'),
4257
+ (3900, '2626', 'Bredbo', 'NSW', 'AU', 486, ' 2626 Bredbo New South Wales'),
4258
+ (3901, '2627', 'Crackenback', 'NSW', 'AU', 486, ' 2627 Crackenback New South Wales'),
4259
+ (3902, '2627', 'East Jindabyne', 'NSW', 'AU', 486, ' 2627 East Jindabyne New South Wales'),
4260
+ (3903, '2627', 'Grosses Plain', 'NSW', 'AU', 486, ' 2627 Grosses Plain New South Wales'),
4261
+ (3904, '2627', 'Ingebirah', 'NSW', 'AU', 486, ' 2627 Ingebirah New South Wales'),
4262
+ (3905, '2627', 'Pilot Wilderness', 'NSW', 'AU', 486, ' 2627 Pilot Wilderness New South Wales'),
4263
+ (3906, '2627', 'Moonbah', 'NSW', 'AU', 486, ' 2627 Moonbah New South Wales'),
4264
+ (3907, '2627', 'Kosciuszko', 'NSW', 'AU', 486, ' 2627 Kosciuszko New South Wales'),
4265
+ (3908, '2627', 'Kosciuszko National Park', 'NSW', 'AU', 486, ' 2627 Kosciuszko National Park New South Wales'),
4266
+ (3909, '2627', 'Jindabyne', 'NSW', 'AU', 486, ' 2627 Jindabyne New South Wales'),
4267
+ (3910, '2627', 'Kalkite', 'NSW', 'AU', 486, ' 2627 Kalkite New South Wales'),
4268
+ (3911, '2628', 'Paupong', 'NSW', 'AU', 486, ' 2628 Paupong New South Wales'),
4269
+ (3912, '2628', 'Numbla Vale', 'NSW', 'AU', 486, ' 2628 Numbla Vale New South Wales'),
4270
+ (3913, '2628', 'Nimmo', 'NSW', 'AU', 486, ' 2628 Nimmo New South Wales'),
4271
+ (3914, '2628', 'Snowy Plain', 'NSW', 'AU', 486, ' 2628 Snowy Plain New South Wales'),
4272
+ (3915, '2628', 'Rocky Plain', 'NSW', 'AU', 486, ' 2628 Rocky Plain New South Wales'),
4273
+ (3916, '2628', 'Hill Top', 'NSW', 'AU', 486, ' 2628 Hill Top New South Wales'),
4274
+ (3917, '2628', 'Eucumbene', 'NSW', 'AU', 486, ' 2628 Eucumbene New South Wales'),
4275
+ (3918, '2628', 'Dalgety', 'NSW', 'AU', 486, ' 2628 Dalgety New South Wales'),
4276
+ (3919, '2628', 'Cootralantra', 'NSW', 'AU', 486, ' 2628 Cootralantra New South Wales'),
4277
+ (3920, '2628', 'Byadbo Wilderness', 'NSW', 'AU', 486, ' 2628 Byadbo Wilderness New South Wales'),
4278
+ (3921, '2628', 'Braemar Bay', 'NSW', 'AU', 486, ' 2628 Braemar Bay New South Wales'),
4279
+ (3922, '2628', 'Avonside', 'NSW', 'AU', 486, ' 2628 Avonside New South Wales'),
4280
+ (3923, '2628', 'Berridale', 'NSW', 'AU', 486, ' 2628 Berridale New South Wales'),
4281
+ (3924, '2628', 'Beloka', 'NSW', 'AU', 486, ' 2628 Beloka New South Wales'),
4282
+ (3925, '2629', 'Anglers Reach', 'NSW', 'AU', 486, ' 2629 Anglers Reach New South Wales'),
4283
+ (3926, '2629', 'Adaminaby', 'NSW', 'AU', 486, ' 2629 Adaminaby New South Wales'),
4284
+ (3927, '2629', 'Yaouk', 'NSW', 'AU', 486, ' 2629 Yaouk New South Wales'),
4285
+ (3928, '2629', 'Bolaro', 'NSW', 'AU', 486, ' 2629 Bolaro New South Wales'),
4286
+ (3929, '2629', 'Cabramurra', 'NSW', 'AU', 486, ' 2629 Cabramurra New South Wales'),
4287
+ (3930, '2629', 'Tantangara', 'NSW', 'AU', 486, ' 2629 Tantangara New South Wales'),
4288
+ (3931, '2629', 'Old Adaminaby', 'NSW', 'AU', 486, ' 2629 Old Adaminaby New South Wales'),
4289
+ (3932, '2629', 'Providence Portal', 'NSW', 'AU', 486, ' 2629 Providence Portal New South Wales'),
4290
+ (3933, '2629', 'Long Plain', 'NSW', 'AU', 486, ' 2629 Long Plain New South Wales'),
4291
+ (3934, '2630', 'Middle Flat', 'NSW', 'AU', 486, ' 2630 Middle Flat New South Wales'),
4292
+ (3935, '2630', 'Middlingbank', 'NSW', 'AU', 486, ' 2630 Middlingbank New South Wales'),
4293
+ (3936, '2630', 'Maffra', 'NSW', 'AU', 486, ' 2630 Maffra New South Wales'),
4294
+ (3937, '2630', 'Murrumbucca', 'NSW', 'AU', 486, ' 2630 Murrumbucca New South Wales'),
4295
+ (3938, '2630', 'Myalla', 'NSW', 'AU', 486, ' 2630 Myalla New South Wales'),
4296
+ (3939, '2630', 'Pine Valley', 'NSW', 'AU', 486, ' 2630 Pine Valley New South Wales'),
4297
+ (3940, '2630', 'Peak View', 'NSW', 'AU', 486, ' 2630 Peak View New South Wales'),
4298
+ (3941, '2630', 'Polo Flat', 'NSW', 'AU', 486, ' 2630 Polo Flat New South Wales'),
4299
+ (3942, '2630', 'Rhine Falls', 'NSW', 'AU', 486, ' 2630 Rhine Falls New South Wales'),
4300
+ (3943, '2630', 'Numeralla', 'NSW', 'AU', 486, ' 2630 Numeralla New South Wales'),
4301
+ (3944, '2630', 'The Brothers', 'NSW', 'AU', 486, ' 2630 The Brothers New South Wales'),
4302
+ (3945, '2630', 'Rose Valley', 'NSW', 'AU', 486, ' 2630 Rose Valley New South Wales'),
4303
+ (3946, '2630', 'Rock Flat', 'NSW', 'AU', 486, ' 2630 Rock Flat New South Wales'),
4304
+ (3947, '2630', 'Springfield', 'NSW', 'AU', 486, ' 2630 Springfield New South Wales'),
4305
+ (3948, '2630', 'Shannons Flat', 'NSW', 'AU', 486, ' 2630 Shannons Flat New South Wales'),
4306
+ (3949, '2630', 'Bunyan', 'NSW', 'AU', 486, ' 2630 Bunyan New South Wales'),
4307
+ (3950, '2630', 'Carlaminda', 'NSW', 'AU', 486, ' 2630 Carlaminda New South Wales'),
4308
+ (3951, '2630', 'Chakola', 'NSW', 'AU', 486, ' 2630 Chakola New South Wales'),
4309
+ (3952, '2630', 'Countegany', 'NSW', 'AU', 486, ' 2630 Countegany New South Wales'),
4310
+ (3953, '2630', 'Cooma', 'NSW', 'AU', 486, ' 2630 Cooma New South Wales'),
4311
+ (3954, '2630', 'Cooma North', 'NSW', 'AU', 486, ' 2630 Cooma North New South Wales'),
4312
+ (3955, '2630', 'Coolringdon', 'NSW', 'AU', 486, ' 2630 Coolringdon New South Wales'),
4313
+ (3956, '2630', 'Bobundara', 'NSW', 'AU', 486, ' 2630 Bobundara New South Wales'),
4314
+ (3957, '2630', 'Binjura', 'NSW', 'AU', 486, ' 2630 Binjura New South Wales'),
4315
+ (3958, '2630', 'Billilingra', 'NSW', 'AU', 486, ' 2630 Billilingra New South Wales'),
4316
+ (3959, '2630', 'Bungarby', 'NSW', 'AU', 486, ' 2630 Bungarby New South Wales'),
4317
+ (3960, '2630', 'Buckenderra', 'NSW', 'AU', 486, ' 2630 Buckenderra New South Wales'),
4318
+ (3961, '2630', 'Dangelong', 'NSW', 'AU', 486, ' 2630 Dangelong New South Wales'),
4319
+ (3962, '2630', 'Dairymans Plains', 'NSW', 'AU', 486, ' 2630 Dairymans Plains New South Wales'),
4320
+ (3963, '2630', 'Dry Plain', 'NSW', 'AU', 486, ' 2630 Dry Plain New South Wales'),
4321
+ (3964, '2630', 'Frying Pan', 'NSW', 'AU', 486, ' 2630 Frying Pan New South Wales'),
4322
+ (3965, '2630', 'Glen Fergus', 'NSW', 'AU', 486, ' 2630 Glen Fergus New South Wales'),
4323
+ (3966, '2630', 'Ironmungy', 'NSW', 'AU', 486, ' 2630 Ironmungy New South Wales'),
4324
+ (3967, '2630', 'Jerangle', 'NSW', 'AU', 486, ' 2630 Jerangle New South Wales'),
4325
+ (3968, '2630', 'Jimenbuen', 'NSW', 'AU', 486, ' 2630 Jimenbuen New South Wales'),
4326
+ (3969, '2630', 'Tuross', 'NSW', 'AU', 486, ' 2630 Tuross New South Wales'),
4327
+ (3970, '2630', 'Wambrook', 'NSW', 'AU', 486, ' 2630 Wambrook New South Wales'),
4328
+ (3971, '2630', 'Arable', 'NSW', 'AU', 486, ' 2630 Arable New South Wales'),
4329
+ (3972, '2630', 'Badja', 'NSW', 'AU', 486, ' 2630 Badja New South Wales'),
4330
+ (3973, '2631', 'Ando', 'NSW', 'AU', 486, ' 2631 Ando New South Wales'),
4331
+ (3974, '2631', 'Winifred', 'NSW', 'AU', 486, ' 2631 Winifred New South Wales'),
4332
+ (3975, '2631', 'Jincumbilly', 'NSW', 'AU', 486, ' 2631 Jincumbilly New South Wales'),
4333
+ (3976, '2631', 'Holts Flat', 'NSW', 'AU', 486, ' 2631 Holts Flat New South Wales'),
4334
+ (3977, '2631', 'Greenlands', 'NSW', 'AU', 486, ' 2631 Greenlands New South Wales'),
4335
+ (3978, '2631', 'Glen Allen', 'NSW', 'AU', 486, ' 2631 Glen Allen New South Wales'),
4336
+ (3979, '2631', 'Boco', 'NSW', 'AU', 486, ' 2631 Boco New South Wales'),
4337
+ (3980, '2631', 'Creewah', 'NSW', 'AU', 486, ' 2631 Creewah New South Wales'),
4338
+ (3981, '2631', 'Steeple Flat', 'NSW', 'AU', 486, ' 2631 Steeple Flat New South Wales'),
4339
+ (3982, '2631', 'Nimmitabel', 'NSW', 'AU', 486, ' 2631 Nimmitabel New South Wales'),
4340
+ (3983, '2631', 'Mount Cooper', 'NSW', 'AU', 486, ' 2631 Mount Cooper New South Wales'),
4341
+ (3984, '2631', 'Kybeyan', 'NSW', 'AU', 486, ' 2631 Kybeyan New South Wales'),
4342
+ (3985, '2632', 'Lords Hill', 'NSW', 'AU', 486, ' 2632 Lords Hill New South Wales'),
4343
+ (3986, '2632', 'Mount Darragh', 'NSW', 'AU', 486, ' 2632 Mount Darragh New South Wales'),
4344
+ (3987, '2632', 'Mila', 'NSW', 'AU', 486, ' 2632 Mila New South Wales'),
4345
+ (3988, '2632', 'Merriangaah', 'NSW', 'AU', 486, ' 2632 Merriangaah New South Wales'),
4346
+ (3989, '2632', 'Paddys Flat', 'NSW', 'AU', 486, ' 2632 Paddys Flat New South Wales'),
4347
+ (3990, '2632', 'Palarang', 'NSW', 'AU', 486, ' 2632 Palarang New South Wales'),
4348
+ (3991, '2632', 'Quidong', 'NSW', 'AU', 486, ' 2632 Quidong New South Wales'),
4349
+ (3992, '2632', 'Rockton', 'NSW', 'AU', 486, ' 2632 Rockton New South Wales'),
4350
+ (3993, '2632', 'Rosemeath', 'NSW', 'AU', 486, ' 2632 Rosemeath New South Wales'),
4351
+ (3994, '2632', 'Craigie', 'NSW', 'AU', 486, ' 2632 Craigie New South Wales'),
4352
+ (3995, '2632', 'Coolumbooka', 'NSW', 'AU', 486, ' 2632 Coolumbooka New South Wales'),
4353
+ (3996, '2632', 'Cathcart', 'NSW', 'AU', 486, ' 2632 Cathcart New South Wales'),
4354
+ (3997, '2632', 'Cambalong', 'NSW', 'AU', 486, ' 2632 Cambalong New South Wales'),
4355
+ (3998, '2632', 'Bombala', 'NSW', 'AU', 486, ' 2632 Bombala New South Wales'),
4356
+ (3999, '2632', 'Bondi Forest', 'NSW', 'AU', 486, ' 2632 Bondi Forest New South Wales'),
4357
+ (4000, '2632', 'Bibbenluke', 'NSW', 'AU', 486, ' 2632 Bibbenluke New South Wales'),
4358
+ (4001, '2632', 'Bukalong', 'NSW', 'AU', 486, ' 2632 Bukalong New South Wales'),
4359
+ (4002, '2632', 'Gunningrah', 'NSW', 'AU', 486, ' 2632 Gunningrah New South Wales'),
4360
+ (4003, '2633', 'Delegate', 'NSW', 'AU', 486, ' 2633 Delegate New South Wales'),
4361
+ (4004, '2633', 'Corrowong', 'NSW', 'AU', 486, ' 2633 Corrowong New South Wales'),
4362
+ (4005, '2633', 'Tombong', 'NSW', 'AU', 486, ' 2633 Tombong New South Wales'),
4363
+ (4006, '2640', 'Bungowannah', 'NSW', 'AU', 486, ' 2640 Bungowannah New South Wales'),
4364
+ (4007, '2640', 'East Albury', 'NSW', 'AU', 486, ' 2640 East Albury New South Wales'),
4365
+ (4008, '2640', 'Ettamogah', 'NSW', 'AU', 486, ' 2640 Ettamogah New South Wales'),
4366
+ (4009, '2640', 'Glenroy', 'NSW', 'AU', 486, ' 2640 Glenroy New South Wales'),
4367
+ (4010, '2640', 'Splitters Creek', 'NSW', 'AU', 486, ' 2640 Splitters Creek New South Wales'),
4368
+ (4011, '2640', 'South Albury', 'NSW', 'AU', 486, ' 2640 South Albury New South Wales'),
4369
+ (4012, '2640', 'Talmalmo', 'NSW', 'AU', 486, ' 2640 Talmalmo New South Wales'),
4370
+ (4013, '2640', 'Table Top', 'NSW', 'AU', 486, ' 2640 Table Top New South Wales'),
4371
+ (4014, '2640', 'Thurgoona', 'NSW', 'AU', 486, ' 2640 Thurgoona New South Wales'),
4372
+ (4015, '2640', 'Ournie', 'NSW', 'AU', 486, ' 2640 Ournie New South Wales'),
4373
+ (4016, '2640', 'North Albury', 'NSW', 'AU', 486, ' 2640 North Albury New South Wales'),
4374
+ (4017, '2640', 'Moorwatha', 'NSW', 'AU', 486, ' 2640 Moorwatha New South Wales'),
4375
+ (4018, '2640', 'Lavington', 'NSW', 'AU', 486, ' 2640 Lavington New South Wales'),
4376
+ (4019, '2640', 'Wirlinga', 'NSW', 'AU', 486, ' 2640 Wirlinga New South Wales'),
4377
+ (4020, '2640', 'Wymah', 'NSW', 'AU', 486, ' 2640 Wymah New South Wales'),
4378
+ (4021, '2640', 'West Albury', 'NSW', 'AU', 486, ' 2640 West Albury New South Wales'),
4379
+ (4022, '2640', 'Albury', 'NSW', 'AU', 486, ' 2640 Albury New South Wales'),
4380
+ (4023, '2641', 'Lavington', 'NSW', 'AU', 486, ' 2641 Lavington New South Wales'),
4381
+ (4024, '2641', 'Springdale Heights', 'NSW', 'AU', 486, ' 2641 Springdale Heights New South Wales'),
4382
+ (4025, '2641', 'Hamilton Valley', 'NSW', 'AU', 486, ' 2641 Hamilton Valley New South Wales'),
4383
+ (4026, '2642', 'Greg Greg', 'NSW', 'AU', 486, ' 2642 Greg Greg New South Wales'),
4384
+ (4027, '2642', 'Jagumba', 'NSW', 'AU', 486, ' 2642 Jagumba New South Wales'),
4385
+ (4028, '2642', 'Jagungal Wilderness', 'NSW', 'AU', 486, ' 2642 Jagungal Wilderness New South Wales'),
4386
+ (4029, '2642', 'Indi', 'NSW', 'AU', 486, ' 2642 Indi New South Wales'),
4387
+ (4030, '2642', 'Jindera', 'NSW', 'AU', 486, ' 2642 Jindera New South Wales'),
4388
+ (4031, '2642', 'Jingellic', 'NSW', 'AU', 486, ' 2642 Jingellic New South Wales'),
4389
+ (4032, '2642', 'Glenellen', 'NSW', 'AU', 486, ' 2642 Glenellen New South Wales'),
4390
+ (4033, '2642', 'Gerogery', 'NSW', 'AU', 486, ' 2642 Gerogery New South Wales'),
4391
+ (4034, '2642', 'Geehi', 'NSW', 'AU', 486, ' 2642 Geehi New South Wales'),
4392
+ (4035, '2642', 'Burrumbuttock', 'NSW', 'AU', 486, ' 2642 Burrumbuttock New South Wales'),
4393
+ (4036, '2642', 'Brocklesby', 'NSW', 'AU', 486, ' 2642 Brocklesby New South Wales'),
4394
+ (4037, '2642', 'Bidgeemia', 'NSW', 'AU', 486, ' 2642 Bidgeemia New South Wales'),
4395
+ (4038, '2642', 'Rand', 'NSW', 'AU', 486, ' 2642 Rand New South Wales'),
4396
+ (4039, '2642', 'Khancoban', 'NSW', 'AU', 486, ' 2642 Khancoban New South Wales'),
4397
+ (4040, '2642', 'Murray Gorge', 'NSW', 'AU', 486, ' 2642 Murray Gorge New South Wales'),
4398
+ (4041, '2642', 'Tooma', 'NSW', 'AU', 486, ' 2642 Tooma New South Wales'),
4399
+ (4042, '2642', 'Walbundrie', 'NSW', 'AU', 486, ' 2642 Walbundrie New South Wales'),
4400
+ (4043, '2642', 'Welaregang', 'NSW', 'AU', 486, ' 2642 Welaregang New South Wales'),
4401
+ (4044, '2642', 'Yerong Creek', 'NSW', 'AU', 486, ' 2642 Yerong Creek New South Wales'),
4402
+ (4045, '2642', 'Wrathall', 'NSW', 'AU', 486, ' 2642 Wrathall New South Wales'),
4403
+ (4046, '2643', 'Howlong', 'NSW', 'AU', 486, ' 2643 Howlong New South Wales'),
4404
+ (4047, '2644', 'Holbrook', 'NSW', 'AU', 486, ' 2644 Holbrook New South Wales'),
4405
+ (4048, '2644', 'Bowna', 'NSW', 'AU', 486, ' 2644 Bowna New South Wales'),
4406
+ (4049, '2644', 'Coppabella', 'NSW', 'AU', 486, ' 2644 Coppabella New South Wales'),
4407
+ (4050, '2644', 'Mountain Creek', 'NSW', 'AU', 486, ' 2644 Mountain Creek New South Wales'),
4408
+ (4051, '2644', 'Mullengandra', 'NSW', 'AU', 486, ' 2644 Mullengandra New South Wales'),
4409
+ (4052, '2644', 'Lankeys Creek', 'NSW', 'AU', 486, ' 2644 Lankeys Creek New South Wales'),
4410
+ (4053, '2644', 'Little Billabong', 'NSW', 'AU', 486, ' 2644 Little Billabong New South Wales'),
4411
+ (4054, '2644', 'Wantagong', 'NSW', 'AU', 486, ' 2644 Wantagong New South Wales'),
4412
+ (4055, '2644', 'Woomargama', 'NSW', 'AU', 486, ' 2644 Woomargama New South Wales'),
4413
+ (4056, '2644', 'Yarara', 'NSW', 'AU', 486, ' 2644 Yarara New South Wales'),
4414
+ (4057, '2645', 'Urana', 'NSW', 'AU', 486, ' 2645 Urana New South Wales'),
4415
+ (4058, '2645', 'Cullivel', 'NSW', 'AU', 486, ' 2645 Cullivel New South Wales'),
4416
+ (4059, '2646', 'Daysdale', 'NSW', 'AU', 486, ' 2646 Daysdale New South Wales'),
4417
+ (4060, '2646', 'Hopefield', 'NSW', 'AU', 486, ' 2646 Hopefield New South Wales'),
4418
+ (4061, '2646', 'Goombargana', 'NSW', 'AU', 486, ' 2646 Goombargana New South Wales'),
4419
+ (4062, '2646', 'Coreen', 'NSW', 'AU', 486, ' 2646 Coreen New South Wales'),
4420
+ (4063, '2646', 'Corowa', 'NSW', 'AU', 486, ' 2646 Corowa New South Wales'),
4421
+ (4064, '2646', 'Collendina', 'NSW', 'AU', 486, ' 2646 Collendina New South Wales'),
4422
+ (4065, '2646', 'Lowesdale', 'NSW', 'AU', 486, ' 2646 Lowesdale New South Wales'),
4423
+ (4066, '2646', 'Redlands', 'NSW', 'AU', 486, ' 2646 Redlands New South Wales'),
4424
+ (4067, '2646', 'Rennie', 'NSW', 'AU', 486, ' 2646 Rennie New South Wales'),
4425
+ (4068, '2646', 'Nyora', 'NSW', 'AU', 486, ' 2646 Nyora New South Wales'),
4426
+ (4069, '2646', 'Oaklands', 'NSW', 'AU', 486, ' 2646 Oaklands New South Wales'),
4427
+ (4070, '2646', 'Savernake', 'NSW', 'AU', 486, ' 2646 Savernake New South Wales'),
4428
+ (4071, '2646', 'Sanger', 'NSW', 'AU', 486, ' 2646 Sanger New South Wales'),
4429
+ (4072, '2646', 'Ringwood', 'NSW', 'AU', 486, ' 2646 Ringwood New South Wales'),
4430
+ (4073, '2646', 'Balldale', 'NSW', 'AU', 486, ' 2646 Balldale New South Wales'),
4431
+ (4074, '2647', 'Mulwala', 'NSW', 'AU', 486, ' 2647 Mulwala New South Wales'),
4432
+ (4075, '2648', 'Wentworth', 'NSW', 'AU', 486, ' 2648 Wentworth New South Wales'),
4433
+ (4076, '2648', 'Moorara', 'NSW', 'AU', 486, ' 2648 Moorara New South Wales'),
4434
+ (4077, '2648', 'Pan Ban', 'NSW', 'AU', 486, ' 2648 Pan Ban New South Wales'),
4435
+ (4078, '2648', 'Para', 'NSW', 'AU', 486, ' 2648 Para New South Wales'),
4436
+ (4079, '2648', 'Pine Camp', 'NSW', 'AU', 486, ' 2648 Pine Camp New South Wales'),
4437
+ (4080, '2648', 'Pomona', 'NSW', 'AU', 486, ' 2648 Pomona New South Wales'),
4438
+ (4081, '2648', 'Pooncarie', 'NSW', 'AU', 486, ' 2648 Pooncarie New South Wales'),
4439
+ (4082, '2648', 'Rufus', 'NSW', 'AU', 486, ' 2648 Rufus New South Wales'),
4440
+ (4083, '2648', 'Scotia', 'NSW', 'AU', 486, ' 2648 Scotia New South Wales'),
4441
+ (4084, '2648', 'Anabranch North', 'NSW', 'AU', 486, ' 2648 Anabranch North New South Wales'),
4442
+ (4085, '2648', 'Anabranch South', 'NSW', 'AU', 486, ' 2648 Anabranch South New South Wales'),
4443
+ (4086, '2648', 'Curlwaa', 'NSW', 'AU', 486, ' 2648 Curlwaa New South Wales'),
4444
+ (4087, '2648', 'Ellerslie', 'NSW', 'AU', 486, ' 2648 Ellerslie New South Wales'),
4445
+ (4088, '2649', 'Laurel Hill', 'NSW', 'AU', 486, ' 2649 Laurel Hill New South Wales'),
4446
+ (4089, '2649', 'Nurenmerenmong', 'NSW', 'AU', 486, ' 2649 Nurenmerenmong New South Wales'),
4447
+ (4090, '2650', 'North Wagga Wagga', 'NSW', 'AU', 486, ' 2650 North Wagga Wagga New South Wales'),
4448
+ (4091, '2650', 'Oberne Creek', 'NSW', 'AU', 486, ' 2650 Oberne Creek New South Wales'),
4449
+ (4092, '2650', 'Oura', 'NSW', 'AU', 486, ' 2650 Oura New South Wales'),
4450
+ (4093, '2650', 'Pulletop', 'NSW', 'AU', 486, ' 2650 Pulletop New South Wales'),
4451
+ (4094, '2650', 'Rowan', 'NSW', 'AU', 486, ' 2650 Rowan New South Wales'),
4452
+ (4095, '2650', 'San Isidore', 'NSW', 'AU', 486, ' 2650 San Isidore New South Wales'),
4453
+ (4096, '2650', 'The Gap', 'NSW', 'AU', 486, ' 2650 The Gap New South Wales'),
4454
+ (4097, '2650', 'Tatton', 'NSW', 'AU', 486, ' 2650 Tatton New South Wales'),
4455
+ (4098, '2650', 'Springvale', 'NSW', 'AU', 486, ' 2650 Springvale New South Wales'),
4456
+ (4099, '2650', 'Lloyd', 'NSW', 'AU', 486, ' 2650 Lloyd New South Wales'),
4457
+ (4100, '2650', 'Kooringal', 'NSW', 'AU', 486, ' 2650 Kooringal New South Wales'),
4458
+ (4101, '2650', 'Kyeamba', 'NSW', 'AU', 486, ' 2650 Kyeamba New South Wales'),
4459
+ (4102, '2650', 'Lake Albert', 'NSW', 'AU', 486, ' 2650 Lake Albert New South Wales'),
4460
+ (4103, '2650', 'Moorong', 'NSW', 'AU', 486, ' 2650 Moorong New South Wales'),
4461
+ (4104, '2650', 'Mount Austin', 'NSW', 'AU', 486, ' 2650 Mount Austin New South Wales'),
4462
+ (4105, '2650', 'Maxwell', 'NSW', 'AU', 486, ' 2650 Maxwell New South Wales'),
4463
+ (4106, '2650', 'Collingullie', 'NSW', 'AU', 486, ' 2650 Collingullie New South Wales'),
4464
+ (4107, '2650', 'Cookardinia', 'NSW', 'AU', 486, ' 2650 Cookardinia New South Wales'),
4465
+ (4108, '2650', 'Burrandana', 'NSW', 'AU', 486, ' 2650 Burrandana New South Wales'),
4466
+ (4109, '2650', 'Carabost', 'NSW', 'AU', 486, ' 2650 Carabost New South Wales'),
4467
+ (4110, '2650', 'Cartwrights Hill', 'NSW', 'AU', 486, ' 2650 Cartwrights Hill New South Wales'),
4468
+ (4111, '2650', 'Bourkelands', 'NSW', 'AU', 486, ' 2650 Bourkelands New South Wales'),
4469
+ (4112, '2650', 'Borambola', 'NSW', 'AU', 486, ' 2650 Borambola New South Wales'),
4470
+ (4113, '2650', 'Boorooma', 'NSW', 'AU', 486, ' 2650 Boorooma New South Wales'),
4471
+ (4114, '2650', 'Brucedale', 'NSW', 'AU', 486, ' 2650 Brucedale New South Wales'),
4472
+ (4115, '2650', 'Bulgary', 'NSW', 'AU', 486, ' 2650 Bulgary New South Wales'),
4473
+ (4116, '2650', 'Big Springs', 'NSW', 'AU', 486, ' 2650 Big Springs New South Wales'),
4474
+ (4117, '2650', 'Book Book', 'NSW', 'AU', 486, ' 2650 Book Book New South Wales'),
4475
+ (4118, '2650', 'Bomen', 'NSW', 'AU', 486, ' 2650 Bomen New South Wales'),
4476
+ (4119, '2650', 'Gregadoo', 'NSW', 'AU', 486, ' 2650 Gregadoo New South Wales'),
4477
+ (4120, '2650', 'Harefield', 'NSW', 'AU', 486, ' 2650 Harefield New South Wales'),
4478
+ (4121, '2650', 'Hillgrove', 'NSW', 'AU', 486, ' 2650 Hillgrove New South Wales'),
4479
+ (4122, '2650', 'Downside', 'NSW', 'AU', 486, ' 2650 Downside New South Wales'),
4480
+ (4123, '2650', 'East Wagga Wagga', 'NSW', 'AU', 486, ' 2650 East Wagga Wagga New South Wales'),
4481
+ (4124, '2650', 'Euberta', 'NSW', 'AU', 486, ' 2650 Euberta New South Wales'),
4482
+ (4125, '2650', 'Eunanoreenya', 'NSW', 'AU', 486, ' 2650 Eunanoreenya New South Wales'),
4483
+ (4126, '2650', 'Currawarna', 'NSW', 'AU', 486, ' 2650 Currawarna New South Wales'),
4484
+ (4127, '2650', 'Gelston Park', 'NSW', 'AU', 486, ' 2650 Gelston Park New South Wales'),
4485
+ (4128, '2650', 'Galore', 'NSW', 'AU', 486, ' 2650 Galore New South Wales'),
4486
+ (4129, '2650', 'Estella', 'NSW', 'AU', 486, ' 2650 Estella New South Wales'),
4487
+ (4130, '2650', 'Glenfield Park', 'NSW', 'AU', 486, ' 2650 Glenfield Park New South Wales'),
4488
+ (4131, '2650', 'Gobbagombalin', 'NSW', 'AU', 486, ' 2650 Gobbagombalin New South Wales'),
4489
+ (4132, '2650', 'Wallacetown', 'NSW', 'AU', 486, ' 2650 Wallacetown New South Wales'),
4490
+ (4133, '2650', 'Turvey Park', 'NSW', 'AU', 486, ' 2650 Turvey Park New South Wales'),
4491
+ (4134, '2650', 'Wagga Wagga', 'NSW', 'AU', 486, ' 2650 Wagga Wagga New South Wales'),
4492
+ (4135, '2650', 'Tolland', 'NSW', 'AU', 486, ' 2650 Tolland New South Wales'),
4493
+ (4136, '2650', 'Wantabadgery', 'NSW', 'AU', 486, ' 2650 Wantabadgery New South Wales'),
4494
+ (4137, '2650', 'Ashmont', 'NSW', 'AU', 486, ' 2650 Ashmont New South Wales'),
4495
+ (4138, '2650', 'Belfrayden', 'NSW', 'AU', 486, ' 2650 Belfrayden New South Wales'),
4496
+ (4139, '2650', 'Alfredtown', 'NSW', 'AU', 486, ' 2650 Alfredtown New South Wales'),
4497
+ (4140, '2650', 'Yarragundry', 'NSW', 'AU', 486, ' 2650 Yarragundry New South Wales'),
4498
+ (4141, '2650', 'Yathella', 'NSW', 'AU', 486, ' 2650 Yathella New South Wales'),
4499
+ (4142, '2651', 'Wagga Wagga Raaf', 'NSW', 'AU', 486, ' 2651 Wagga Wagga Raaf New South Wales'),
4500
+ (4143, '2651', 'Forest Hill', 'NSW', 'AU', 486, ' 2651 Forest Hill New South Wales'),
4501
+ (4144, '2652', 'Humula', 'NSW', 'AU', 486, ' 2652 Humula New South Wales'),
4502
+ (4145, '2652', 'Gumly Gumly', 'NSW', 'AU', 486, ' 2652 Gumly Gumly New South Wales'),
4503
+ (4146, '2652', 'Grong Grong', 'NSW', 'AU', 486, ' 2652 Grong Grong New South Wales'),
4504
+ (4147, '2652', 'Goolgowi', 'NSW', 'AU', 486, ' 2652 Goolgowi New South Wales'),
4505
+ (4148, '2652', 'Boorga', 'NSW', 'AU', 486, ' 2652 Boorga New South Wales'),
4506
+ (4149, '2652', 'Boree Creek', 'NSW', 'AU', 486, ' 2652 Boree Creek New South Wales'),
4507
+ (4150, '2652', 'Cowabbie', 'NSW', 'AU', 486, ' 2652 Cowabbie New South Wales'),
4508
+ (4151, '2652', 'Matong', 'NSW', 'AU', 486, ' 2652 Matong New South Wales'),
4509
+ (4152, '2652', 'Merriwagga', 'NSW', 'AU', 486, ' 2652 Merriwagga New South Wales'),
4510
+ (4153, '2652', 'Murrulebale', 'NSW', 'AU', 486, ' 2652 Murrulebale New South Wales'),
4511
+ (4154, '2652', 'Ladysmith', 'NSW', 'AU', 486, ' 2652 Ladysmith New South Wales'),
4512
+ (4155, '2652', 'Landervale', 'NSW', 'AU', 486, ' 2652 Landervale New South Wales'),
4513
+ (4156, '2652', 'Mangoplah', 'NSW', 'AU', 486, ' 2652 Mangoplah New South Wales'),
4514
+ (4157, '2652', 'Marrar', 'NSW', 'AU', 486, ' 2652 Marrar New South Wales'),
4515
+ (4158, '2652', 'Tabbita', 'NSW', 'AU', 486, ' 2652 Tabbita New South Wales'),
4516
+ (4159, '2652', 'Tarcutta', 'NSW', 'AU', 486, ' 2652 Tarcutta New South Wales'),
4517
+ (4160, '2652', 'Rosewood', 'NSW', 'AU', 486, ' 2652 Rosewood New South Wales'),
4518
+ (4161, '2652', 'Old Junee', 'NSW', 'AU', 486, ' 2652 Old Junee New South Wales'),
4519
+ (4162, '2652', 'Uranquinty', 'NSW', 'AU', 486, ' 2652 Uranquinty New South Wales'),
4520
+ (4163, '2653', 'Tumbarumba', 'NSW', 'AU', 486, ' 2653 Tumbarumba New South Wales'),
4521
+ (4164, '2653', 'Paddys River', 'NSW', 'AU', 486, ' 2653 Paddys River New South Wales'),
4522
+ (4165, '2653', 'Taradale', 'NSW', 'AU', 486, ' 2653 Taradale New South Wales'),
4523
+ (4166, '2653', 'Maragle', 'NSW', 'AU', 486, ' 2653 Maragle New South Wales'),
4524
+ (4167, '2653', 'Mannus', 'NSW', 'AU', 486, ' 2653 Mannus New South Wales'),
4525
+ (4168, '2653', 'Munderoo', 'NSW', 'AU', 486, ' 2653 Munderoo New South Wales'),
4526
+ (4169, '2653', 'Courabyra', 'NSW', 'AU', 486, ' 2653 Courabyra New South Wales'),
4527
+ (4170, '2653', 'Burra', 'NSW', 'AU', 486, ' 2653 Burra New South Wales'),
4528
+ (4171, '2653', 'Glenroy', 'NSW', 'AU', 486, ' 2653 Glenroy New South Wales'),
4529
+ (4172, '2653', 'Westdale', 'NSW', 'AU', 486, ' 2653 Westdale New South Wales'),
4530
+ (4173, '2653', 'Willigobung', 'NSW', 'AU', 486, ' 2653 Willigobung New South Wales'),
4531
+ (4174, '2655', 'French Park', 'NSW', 'AU', 486, ' 2655 French Park New South Wales'),
4532
+ (4175, '2655', 'Kubura', 'NSW', 'AU', 486, ' 2655 Kubura New South Wales'),
4533
+ (4176, '2655', 'The Rock', 'NSW', 'AU', 486, ' 2655 The Rock New South Wales'),
4534
+ (4177, '2655', 'Tootool', 'NSW', 'AU', 486, ' 2655 Tootool New South Wales'),
4535
+ (4178, '2656', 'Urangeline', 'NSW', 'AU', 486, ' 2656 Urangeline New South Wales'),
4536
+ (4179, '2656', 'Urangeline East', 'NSW', 'AU', 486, ' 2656 Urangeline East New South Wales'),
4537
+ (4180, '2656', 'Osborne', 'NSW', 'AU', 486, ' 2656 Osborne New South Wales'),
4538
+ (4181, '2656', 'Lockhart', 'NSW', 'AU', 486, ' 2656 Lockhart New South Wales'),
4539
+ (4182, '2656', 'Milbrulong', 'NSW', 'AU', 486, ' 2656 Milbrulong New South Wales'),
4540
+ (4183, '2656', 'Fargunyah', 'NSW', 'AU', 486, ' 2656 Fargunyah New South Wales'),
4541
+ (4184, '2656', 'Brookdale', 'NSW', 'AU', 486, ' 2656 Brookdale New South Wales'),
4542
+ (4185, '2656', 'Brookong', 'NSW', 'AU', 486, ' 2656 Brookong New South Wales'),
4543
+ (4186, '2658', 'Henty', 'NSW', 'AU', 486, ' 2658 Henty New South Wales'),
4544
+ (4187, '2658', 'Munyabla', 'NSW', 'AU', 486, ' 2658 Munyabla New South Wales'),
4545
+ (4188, '2658', 'Pleasant Hills', 'NSW', 'AU', 486, ' 2658 Pleasant Hills New South Wales'),
4546
+ (4189, '2658', 'Ryan', 'NSW', 'AU', 486, ' 2658 Ryan New South Wales'),
4547
+ (4190, '2659', 'Walla Walla', 'NSW', 'AU', 486, ' 2659 Walla Walla New South Wales'),
4548
+ (4191, '2659', 'Alma Park', 'NSW', 'AU', 486, ' 2659 Alma Park New South Wales'),
4549
+ (4192, '2660', 'Morven', 'NSW', 'AU', 486, ' 2660 Morven New South Wales'),
4550
+ (4193, '2660', 'Culcairn', 'NSW', 'AU', 486, ' 2660 Culcairn New South Wales'),
4551
+ (4194, '2661', 'Kapooka', 'NSW', 'AU', 486, ' 2661 Kapooka New South Wales'),
4552
+ (4195, '2663', 'Marinna', 'NSW', 'AU', 486, ' 2663 Marinna New South Wales'),
4553
+ (4196, '2663', 'Erin Vale', 'NSW', 'AU', 486, ' 2663 Erin Vale New South Wales'),
4554
+ (4197, '2663', 'Eurongilly', 'NSW', 'AU', 486, ' 2663 Eurongilly New South Wales'),
4555
+ (4198, '2663', 'Junee', 'NSW', 'AU', 486, ' 2663 Junee New South Wales'),
4556
+ (4199, '2663', 'Wantiool', 'NSW', 'AU', 486, ' 2663 Wantiool New South Wales'),
4557
+ (4200, '2665', 'Walleroobie', 'NSW', 'AU', 486, ' 2665 Walleroobie New South Wales'),
4558
+ (4201, '2665', 'Binya', 'NSW', 'AU', 486, ' 2665 Binya New South Wales'),
4559
+ (4202, '2665', 'Kamarah', 'NSW', 'AU', 486, ' 2665 Kamarah New South Wales'),
4560
+ (4203, '2665', 'Moombooldool', 'NSW', 'AU', 486, ' 2665 Moombooldool New South Wales'),
4561
+ (4204, '2665', 'Mirrool', 'NSW', 'AU', 486, ' 2665 Mirrool New South Wales'),
4562
+ (4205, '2665', 'Tara', 'NSW', 'AU', 486, ' 2665 Tara New South Wales'),
4563
+ (4206, '2665', 'Quandary', 'NSW', 'AU', 486, ' 2665 Quandary New South Wales'),
4564
+ (4207, '2665', 'Beckom', 'NSW', 'AU', 486, ' 2665 Beckom New South Wales'),
4565
+ (4208, '2665', 'Bectric', 'NSW', 'AU', 486, ' 2665 Bectric New South Wales'),
4566
+ (4209, '2665', 'Ariah Park', 'NSW', 'AU', 486, ' 2665 Ariah Park New South Wales'),
4567
+ (4210, '2665', 'Ardlethan', 'NSW', 'AU', 486, ' 2665 Ardlethan New South Wales'),
4568
+ (4211, '2665', 'Barellan', 'NSW', 'AU', 486, ' 2665 Barellan New South Wales'),
4569
+ (4212, '2666', 'Reefton', 'NSW', 'AU', 486, ' 2666 Reefton New South Wales'),
4570
+ (4213, '2666', 'Pucawan', 'NSW', 'AU', 486, ' 2666 Pucawan New South Wales'),
4571
+ (4214, '2666', 'Narraburra', 'NSW', 'AU', 486, ' 2666 Narraburra New South Wales'),
4572
+ (4215, '2666', 'Temora', 'NSW', 'AU', 486, ' 2666 Temora New South Wales'),
4573
+ (4216, '2666', 'Sebastopol', 'NSW', 'AU', 486, ' 2666 Sebastopol New South Wales'),
4574
+ (4217, '2666', 'Springdale', 'NSW', 'AU', 486, ' 2666 Springdale New South Wales'),
4575
+ (4218, '2666', 'Mimosa', 'NSW', 'AU', 486, ' 2666 Mimosa New South Wales'),
4576
+ (4219, '2666', 'Morangarell', 'NSW', 'AU', 486, ' 2666 Morangarell New South Wales'),
4577
+ (4220, '2666', 'Combaning', 'NSW', 'AU', 486, ' 2666 Combaning New South Wales'),
4578
+ (4221, '2666', 'Junee Reefs', 'NSW', 'AU', 486, ' 2666 Junee Reefs New South Wales'),
4579
+ (4222, '2666', 'Grogan', 'NSW', 'AU', 486, ' 2666 Grogan New South Wales'),
4580
+ (4223, '2666', 'Gidginbung', 'NSW', 'AU', 486, ' 2666 Gidginbung New South Wales'),
4581
+ (4224, '2666', 'Dirnaseer', 'NSW', 'AU', 486, ' 2666 Dirnaseer New South Wales'),
4582
+ (4225, '2666', 'Trungley Hall', 'NSW', 'AU', 486, ' 2666 Trungley Hall New South Wales'),
4583
+ (4226, '2668', 'Barmedman', 'NSW', 'AU', 486, ' 2668 Barmedman New South Wales'),
4584
+ (4227, '2669', 'Weethalle', 'NSW', 'AU', 486, ' 2669 Weethalle New South Wales'),
4585
+ (4228, '2669', 'Tullibigeal', 'NSW', 'AU', 486, ' 2669 Tullibigeal New South Wales'),
4586
+ (4229, '2669', 'Ungarie', 'NSW', 'AU', 486, ' 2669 Ungarie New South Wales'),
4587
+ (4230, '2669', 'Erigolia', 'NSW', 'AU', 486, ' 2669 Erigolia New South Wales'),
4588
+ (4231, '2669', 'Girral', 'NSW', 'AU', 486, ' 2669 Girral New South Wales'),
4589
+ (4232, '2669', 'Melbergen', 'NSW', 'AU', 486, ' 2669 Melbergen New South Wales'),
4590
+ (4233, '2669', 'Kikoira', 'NSW', 'AU', 486, ' 2669 Kikoira New South Wales'),
4591
+ (4234, '2669', 'Tallimba', 'NSW', 'AU', 486, ' 2669 Tallimba New South Wales'),
4592
+ (4235, '2669', 'Naradhan', 'NSW', 'AU', 486, ' 2669 Naradhan New South Wales'),
4593
+ (4236, '2669', 'Rankins Springs', 'NSW', 'AU', 486, ' 2669 Rankins Springs New South Wales'),
4594
+ (4237, '2671', 'North Yalgogrin', 'NSW', 'AU', 486, ' 2671 North Yalgogrin New South Wales'),
4595
+ (4238, '2671', 'Lake Cowal', 'NSW', 'AU', 486, ' 2671 Lake Cowal New South Wales'),
4596
+ (4239, '2671', 'Burcher', 'NSW', 'AU', 486, ' 2671 Burcher New South Wales'),
4597
+ (4240, '2671', 'West Wyalong', 'NSW', 'AU', 486, ' 2671 West Wyalong New South Wales'),
4598
+ (4241, '2671', 'Wyalong', 'NSW', 'AU', 486, ' 2671 Wyalong New South Wales'),
4599
+ (4242, '2671', 'Back Creek', 'NSW', 'AU', 486, ' 2671 Back Creek New South Wales'),
4600
+ (4243, '2671', 'Alleena', 'NSW', 'AU', 486, ' 2671 Alleena New South Wales'),
4601
+ (4244, '2672', 'Curlew Waters', 'NSW', 'AU', 486, ' 2672 Curlew Waters New South Wales'),
4602
+ (4245, '2672', 'Lake Cargelligo', 'NSW', 'AU', 486, ' 2672 Lake Cargelligo New South Wales'),
4603
+ (4246, '2672', 'Murrin Bridge', 'NSW', 'AU', 486, ' 2672 Murrin Bridge New South Wales'),
4604
+ (4247, '2675', 'Monia Gap', 'NSW', 'AU', 486, ' 2675 Monia Gap New South Wales'),
4605
+ (4248, '2675', 'Lake Brewster', 'NSW', 'AU', 486, ' 2675 Lake Brewster New South Wales'),
4606
+ (4249, '2675', 'Roto', 'NSW', 'AU', 486, ' 2675 Roto New South Wales'),
4607
+ (4250, '2675', 'Hillston', 'NSW', 'AU', 486, ' 2675 Hillston New South Wales'),
4608
+ (4251, '2675', 'Wallanthery', 'NSW', 'AU', 486, ' 2675 Wallanthery New South Wales'),
4609
+ (4252, '2678', 'Charles Sturt University', 'NSW', 'AU', 486, ' 2678 Charles Sturt University New South Wales'),
4610
+ (4253, '2678', 'Riverina', 'NSW', 'AU', 486, ' 2678 Riverina New South Wales'),
4611
+ (4254, '2680', 'Tharbogang', 'NSW', 'AU', 486, ' 2680 Tharbogang New South Wales'),
4612
+ (4255, '2680', 'Nericon', 'NSW', 'AU', 486, ' 2680 Nericon New South Wales'),
4613
+ (4256, '2680', 'Lake Wyangan', 'NSW', 'AU', 486, ' 2680 Lake Wyangan New South Wales'),
4614
+ (4257, '2680', 'Kooba', 'NSW', 'AU', 486, ' 2680 Kooba New South Wales'),
4615
+ (4258, '2680', 'Bilbul', 'NSW', 'AU', 486, ' 2680 Bilbul New South Wales'),
4616
+ (4259, '2680', 'Griffith', 'NSW', 'AU', 486, ' 2680 Griffith New South Wales'),
4617
+ (4260, '2680', 'Griffith East', 'NSW', 'AU', 486, ' 2680 Griffith East New South Wales'),
4618
+ (4261, '2680', 'Hanwood', 'NSW', 'AU', 486, ' 2680 Hanwood New South Wales'),
4619
+ (4262, '2680', 'Warrawidgee', 'NSW', 'AU', 486, ' 2680 Warrawidgee New South Wales');
4620
+ INSERT INTO {$this->getTable('candf_pcs')} (`entity_id`, `postcode`, `city`, `state`, `country_id`, `region_id`, `fulltext`) VALUES
4621
+ (4263, '2680', 'Warburn', 'NSW', 'AU', 486, ' 2680 Warburn New South Wales'),
4622
+ (4264, '2680', 'Beelbangera', 'NSW', 'AU', 486, ' 2680 Beelbangera New South Wales'),
4623
+ (4265, '2680', 'Benerembah', 'NSW', 'AU', 486, ' 2680 Benerembah New South Wales'),
4624
+ (4266, '2680', 'Yoogali', 'NSW', 'AU', 486, ' 2680 Yoogali New South Wales'),
4625
+ (4267, '2680', 'Widgelli', 'NSW', 'AU', 486, ' 2680 Widgelli New South Wales'),
4626
+ (4268, '2680', 'Willbriggie', 'NSW', 'AU', 486, ' 2680 Willbriggie New South Wales'),
4627
+ (4269, '2681', 'Yenda', 'NSW', 'AU', 486, ' 2681 Yenda New South Wales'),
4628
+ (4270, '2681', 'Myall Park', 'NSW', 'AU', 486, ' 2681 Myall Park New South Wales'),
4629
+ (4271, '2700', 'Narrandera', 'NSW', 'AU', 486, ' 2700 Narrandera New South Wales'),
4630
+ (4272, '2700', 'Sandigo', 'NSW', 'AU', 486, ' 2700 Sandigo New South Wales'),
4631
+ (4273, '2700', 'Kywong', 'NSW', 'AU', 486, ' 2700 Kywong New South Wales'),
4632
+ (4274, '2700', 'Morundah', 'NSW', 'AU', 486, ' 2700 Morundah New South Wales'),
4633
+ (4275, '2700', 'Cudgel', 'NSW', 'AU', 486, ' 2700 Cudgel New South Wales'),
4634
+ (4276, '2700', 'Euroley', 'NSW', 'AU', 486, ' 2700 Euroley New South Wales'),
4635
+ (4277, '2700', 'Gillenbah', 'NSW', 'AU', 486, ' 2700 Gillenbah New South Wales'),
4636
+ (4278, '2700', 'Bundure', 'NSW', 'AU', 486, ' 2700 Bundure New South Wales'),
4637
+ (4279, '2700', 'Colinroobie', 'NSW', 'AU', 486, ' 2700 Colinroobie New South Wales'),
4638
+ (4280, '2700', 'Corobimilla', 'NSW', 'AU', 486, ' 2700 Corobimilla New South Wales'),
4639
+ (4281, '2701', 'Coolamon', 'NSW', 'AU', 486, ' 2701 Coolamon New South Wales'),
4640
+ (4282, '2701', 'Methul', 'NSW', 'AU', 486, ' 2701 Methul New South Wales'),
4641
+ (4283, '2701', 'Rannock', 'NSW', 'AU', 486, ' 2701 Rannock New South Wales'),
4642
+ (4284, '2701', 'Berry Jerry', 'NSW', 'AU', 486, ' 2701 Berry Jerry New South Wales'),
4643
+ (4285, '2702', 'Ganmain', 'NSW', 'AU', 486, ' 2702 Ganmain New South Wales'),
4644
+ (4286, '2703', 'Yanco', 'NSW', 'AU', 486, ' 2703 Yanco New South Wales'),
4645
+ (4287, '2705', 'Whitton', 'NSW', 'AU', 486, ' 2705 Whitton New South Wales'),
4646
+ (4288, '2705', 'Gogeldrie', 'NSW', 'AU', 486, ' 2705 Gogeldrie New South Wales'),
4647
+ (4289, '2705', 'Corbie Hill', 'NSW', 'AU', 486, ' 2705 Corbie Hill New South Wales'),
4648
+ (4290, '2705', 'Brobenah', 'NSW', 'AU', 486, ' 2705 Brobenah New South Wales'),
4649
+ (4291, '2705', 'Stanbridge', 'NSW', 'AU', 486, ' 2705 Stanbridge New South Wales'),
4650
+ (4292, '2705', 'Merungle Hill', 'NSW', 'AU', 486, ' 2705 Merungle Hill New South Wales'),
4651
+ (4293, '2705', 'Murrami', 'NSW', 'AU', 486, ' 2705 Murrami New South Wales'),
4652
+ (4294, '2705', 'Leeton', 'NSW', 'AU', 486, ' 2705 Leeton New South Wales'),
4653
+ (4295, '2706', 'Darlington Point', 'NSW', 'AU', 486, ' 2706 Darlington Point New South Wales'),
4654
+ (4296, '2707', 'Coleambally', 'NSW', 'AU', 486, ' 2707 Coleambally New South Wales'),
4655
+ (4297, '2707', 'Argoon', 'NSW', 'AU', 486, ' 2707 Argoon New South Wales'),
4656
+ (4298, '2708', 'Albury', 'NSW', 'AU', 486, ' 2708 Albury New South Wales'),
4657
+ (4299, '2708', 'Murray Region', 'NSW', 'AU', 486, ' 2708 Murray Region New South Wales'),
4658
+ (4300, '2710', 'Mayrung', 'NSW', 'AU', 486, ' 2710 Mayrung New South Wales'),
4659
+ (4301, '2710', 'Morago', 'NSW', 'AU', 486, ' 2710 Morago New South Wales'),
4660
+ (4302, '2710', 'Moonbria', 'NSW', 'AU', 486, ' 2710 Moonbria New South Wales'),
4661
+ (4303, '2710', 'Lindifferon', 'NSW', 'AU', 486, ' 2710 Lindifferon New South Wales'),
4662
+ (4304, '2710', 'Mathoura', 'NSW', 'AU', 486, ' 2710 Mathoura New South Wales'),
4663
+ (4305, '2710', 'Steam Plains', 'NSW', 'AU', 486, ' 2710 Steam Plains New South Wales'),
4664
+ (4306, '2710', 'Stud Park', 'NSW', 'AU', 486, ' 2710 Stud Park New South Wales'),
4665
+ (4307, '2710', 'Pretty Pine', 'NSW', 'AU', 486, ' 2710 Pretty Pine New South Wales'),
4666
+ (4308, '2710', 'Calimo', 'NSW', 'AU', 486, ' 2710 Calimo New South Wales'),
4667
+ (4309, '2710', 'Caldwell', 'NSW', 'AU', 486, ' 2710 Caldwell New South Wales'),
4668
+ (4310, '2710', 'Coree', 'NSW', 'AU', 486, ' 2710 Coree New South Wales'),
4669
+ (4311, '2710', 'Conargo', 'NSW', 'AU', 486, ' 2710 Conargo New South Wales'),
4670
+ (4312, '2710', 'Booroorban', 'NSW', 'AU', 486, ' 2710 Booroorban New South Wales'),
4671
+ (4313, '2710', 'Bullatale', 'NSW', 'AU', 486, ' 2710 Bullatale New South Wales'),
4672
+ (4314, '2710', 'Birganbigil', 'NSW', 'AU', 486, ' 2710 Birganbigil New South Wales'),
4673
+ (4315, '2710', 'Deniliquin', 'NSW', 'AU', 486, ' 2710 Deniliquin New South Wales'),
4674
+ (4316, '2710', 'Hartwood', 'NSW', 'AU', 486, ' 2710 Hartwood New South Wales'),
4675
+ (4317, '2710', 'Warragoon', 'NSW', 'AU', 486, ' 2710 Warragoon New South Wales'),
4676
+ (4318, '2710', 'Wandook', 'NSW', 'AU', 486, ' 2710 Wandook New South Wales'),
4677
+ (4319, '2710', 'Wanganella', 'NSW', 'AU', 486, ' 2710 Wanganella New South Wales'),
4678
+ (4320, '2710', 'Wakool', 'NSW', 'AU', 486, ' 2710 Wakool New South Wales'),
4679
+ (4321, '2710', 'Barratta', 'NSW', 'AU', 486, ' 2710 Barratta New South Wales'),
4680
+ (4322, '2710', 'Willurah', 'NSW', 'AU', 486, ' 2710 Willurah New South Wales'),
4681
+ (4323, '2711', 'Yanga', 'NSW', 'AU', 486, ' 2711 Yanga New South Wales'),
4682
+ (4324, '2711', 'Waugorah', 'NSW', 'AU', 486, ' 2711 Waugorah New South Wales'),
4683
+ (4325, '2711', 'Hay', 'NSW', 'AU', 486, ' 2711 Hay New South Wales'),
4684
+ (4326, '2711', 'Hay South', 'NSW', 'AU', 486, ' 2711 Hay South New South Wales'),
4685
+ (4327, '2711', 'Gunbar', 'NSW', 'AU', 486, ' 2711 Gunbar New South Wales'),
4686
+ (4328, '2711', 'Booligal', 'NSW', 'AU', 486, ' 2711 Booligal New South Wales'),
4687
+ (4329, '2711', 'Corrong', 'NSW', 'AU', 486, ' 2711 Corrong New South Wales'),
4688
+ (4330, '2711', 'Carrathool', 'NSW', 'AU', 486, ' 2711 Carrathool New South Wales'),
4689
+ (4331, '2711', 'Clare', 'NSW', 'AU', 486, ' 2711 Clare New South Wales'),
4690
+ (4332, '2711', 'One Tree', 'NSW', 'AU', 486, ' 2711 One Tree New South Wales'),
4691
+ (4333, '2711', 'Oxley', 'NSW', 'AU', 486, ' 2711 Oxley New South Wales'),
4692
+ (4334, '2711', 'Keri Keri', 'NSW', 'AU', 486, ' 2711 Keri Keri New South Wales'),
4693
+ (4335, '2711', 'Maude', 'NSW', 'AU', 486, ' 2711 Maude New South Wales'),
4694
+ (4336, '2712', 'Boomanoomana', 'NSW', 'AU', 486, ' 2712 Boomanoomana New South Wales'),
4695
+ (4337, '2712', 'Berrigan', 'NSW', 'AU', 486, ' 2712 Berrigan New South Wales'),
4696
+ (4338, '2713', 'Blighty', 'NSW', 'AU', 486, ' 2713 Blighty New South Wales'),
4697
+ (4339, '2713', 'Finley', 'NSW', 'AU', 486, ' 2713 Finley New South Wales'),
4698
+ (4340, '2713', 'Myrtle Park', 'NSW', 'AU', 486, ' 2713 Myrtle Park New South Wales'),
4699
+ (4341, '2713', 'Logie Brae', 'NSW', 'AU', 486, ' 2713 Logie Brae New South Wales'),
4700
+ (4342, '2714', 'Pine Lodge', 'NSW', 'AU', 486, ' 2714 Pine Lodge New South Wales'),
4701
+ (4343, '2714', 'Tuppal', 'NSW', 'AU', 486, ' 2714 Tuppal New South Wales'),
4702
+ (4344, '2714', 'Tocumwal', 'NSW', 'AU', 486, ' 2714 Tocumwal New South Wales'),
4703
+ (4345, '2714', 'Aratula', 'NSW', 'AU', 486, ' 2714 Aratula New South Wales'),
4704
+ (4346, '2715', 'Hatfield', 'NSW', 'AU', 486, ' 2715 Hatfield New South Wales'),
4705
+ (4347, '2715', 'Kyalite', 'NSW', 'AU', 486, ' 2715 Kyalite New South Wales'),
4706
+ (4348, '2715', 'Arumpo', 'NSW', 'AU', 486, ' 2715 Arumpo New South Wales'),
4707
+ (4349, '2715', 'Balranald', 'NSW', 'AU', 486, ' 2715 Balranald New South Wales'),
4708
+ (4350, '2715', 'Mungo', 'NSW', 'AU', 486, ' 2715 Mungo New South Wales'),
4709
+ (4351, '2716', 'Mairjimmy', 'NSW', 'AU', 486, ' 2716 Mairjimmy New South Wales'),
4710
+ (4352, '2716', 'Mabins Well', 'NSW', 'AU', 486, ' 2716 Mabins Well New South Wales'),
4711
+ (4353, '2716', 'Four Corners', 'NSW', 'AU', 486, ' 2716 Four Corners New South Wales'),
4712
+ (4354, '2716', 'Gala Vale', 'NSW', 'AU', 486, ' 2716 Gala Vale New South Wales'),
4713
+ (4355, '2716', 'Jerilderie', 'NSW', 'AU', 486, ' 2716 Jerilderie New South Wales'),
4714
+ (4356, '2717', 'Coomealla', 'NSW', 'AU', 486, ' 2717 Coomealla New South Wales'),
4715
+ (4357, '2717', 'Dareton', 'NSW', 'AU', 486, ' 2717 Dareton New South Wales'),
4716
+ (4358, '2720', 'Jones Bridge', 'NSW', 'AU', 486, ' 2720 Jones Bridge New South Wales'),
4717
+ (4359, '2720', 'Gilmore', 'NSW', 'AU', 486, ' 2720 Gilmore New South Wales'),
4718
+ (4360, '2720', 'Goobarragandra', 'NSW', 'AU', 486, ' 2720 Goobarragandra New South Wales'),
4719
+ (4361, '2720', 'Gocup', 'NSW', 'AU', 486, ' 2720 Gocup New South Wales'),
4720
+ (4362, '2720', 'Gadara', 'NSW', 'AU', 486, ' 2720 Gadara New South Wales'),
4721
+ (4363, '2720', 'Blowering', 'NSW', 'AU', 486, ' 2720 Blowering New South Wales'),
4722
+ (4364, '2720', 'Bogong Peaks Wilderness', 'NSW', 'AU', 486, ' 2720 Bogong Peaks Wilderness New South Wales'),
4723
+ (4365, '2720', 'Bombowlee', 'NSW', 'AU', 486, ' 2720 Bombowlee New South Wales'),
4724
+ (4366, '2720', 'Bombowlee Creek', 'NSW', 'AU', 486, ' 2720 Bombowlee Creek New South Wales'),
4725
+ (4367, '2720', 'Buddong', 'NSW', 'AU', 486, ' 2720 Buddong New South Wales'),
4726
+ (4368, '2720', 'Couragago', 'NSW', 'AU', 486, ' 2720 Couragago New South Wales'),
4727
+ (4369, '2720', 'Little River', 'NSW', 'AU', 486, ' 2720 Little River New South Wales'),
4728
+ (4370, '2720', 'Killimicat', 'NSW', 'AU', 486, ' 2720 Killimicat New South Wales'),
4729
+ (4371, '2720', 'Lacmalac', 'NSW', 'AU', 486, ' 2720 Lacmalac New South Wales'),
4730
+ (4372, '2720', 'Mundongo', 'NSW', 'AU', 486, ' 2720 Mundongo New South Wales'),
4731
+ (4373, '2720', 'Minjary', 'NSW', 'AU', 486, ' 2720 Minjary New South Wales'),
4732
+ (4374, '2720', 'Pinbeyan', 'NSW', 'AU', 486, ' 2720 Pinbeyan New South Wales'),
4733
+ (4375, '2720', 'Red Hill', 'NSW', 'AU', 486, ' 2720 Red Hill New South Wales'),
4734
+ (4376, '2720', 'Talbingo', 'NSW', 'AU', 486, ' 2720 Talbingo New South Wales'),
4735
+ (4377, '2720', 'Tumorrama', 'NSW', 'AU', 486, ' 2720 Tumorrama New South Wales'),
4736
+ (4378, '2720', 'Tumut', 'NSW', 'AU', 486, ' 2720 Tumut New South Wales'),
4737
+ (4379, '2720', 'Tumut Plains', 'NSW', 'AU', 486, ' 2720 Tumut Plains New South Wales'),
4738
+ (4380, '2720', 'Argalong', 'NSW', 'AU', 486, ' 2720 Argalong New South Wales'),
4739
+ (4381, '2720', 'Wyangle', 'NSW', 'AU', 486, ' 2720 Wyangle New South Wales'),
4740
+ (4382, '2720', 'Yarrangobilly', 'NSW', 'AU', 486, ' 2720 Yarrangobilly New South Wales'),
4741
+ (4383, '2720', 'Windowie', 'NSW', 'AU', 486, ' 2720 Windowie New South Wales'),
4742
+ (4384, '2720', 'Wereboldera', 'NSW', 'AU', 486, ' 2720 Wereboldera New South Wales'),
4743
+ (4385, '2720', 'Wermatong', 'NSW', 'AU', 486, ' 2720 Wermatong New South Wales'),
4744
+ (4386, '2721', 'Quandialla', 'NSW', 'AU', 486, ' 2721 Quandialla New South Wales'),
4745
+ (4387, '2721', 'Bland', 'NSW', 'AU', 486, ' 2721 Bland New South Wales'),
4746
+ (4388, '2722', 'Brungle', 'NSW', 'AU', 486, ' 2722 Brungle New South Wales'),
4747
+ (4389, '2722', 'Brungle Creek', 'NSW', 'AU', 486, ' 2722 Brungle Creek New South Wales'),
4748
+ (4390, '2722', 'Burra Creek', 'NSW', 'AU', 486, ' 2722 Burra Creek New South Wales'),
4749
+ (4391, '2722', 'Darbalara', 'NSW', 'AU', 486, ' 2722 Darbalara New South Wales'),
4750
+ (4392, '2722', 'Jones Creek', 'NSW', 'AU', 486, ' 2722 Jones Creek New South Wales'),
4751
+ (4393, '2722', 'Gundagai', 'NSW', 'AU', 486, ' 2722 Gundagai New South Wales'),
4752
+ (4394, '2722', 'South Gundagai', 'NSW', 'AU', 486, ' 2722 South Gundagai New South Wales'),
4753
+ (4395, '2722', 'Nangus', 'NSW', 'AU', 486, ' 2722 Nangus New South Wales'),
4754
+ (4396, '2722', 'Muttama', 'NSW', 'AU', 486, ' 2722 Muttama New South Wales'),
4755
+ (4397, '2725', 'Stockinbingal', 'NSW', 'AU', 486, ' 2725 Stockinbingal New South Wales'),
4756
+ (4398, '2726', 'Jugiong', 'NSW', 'AU', 486, ' 2726 Jugiong New South Wales'),
4757
+ (4399, '2727', 'Gobarralong', 'NSW', 'AU', 486, ' 2727 Gobarralong New South Wales'),
4758
+ (4400, '2727', 'Coolac', 'NSW', 'AU', 486, ' 2727 Coolac New South Wales'),
4759
+ (4401, '2727', 'Adjungbilly', 'NSW', 'AU', 486, ' 2727 Adjungbilly New South Wales'),
4760
+ (4402, '2729', 'Adelong', 'NSW', 'AU', 486, ' 2729 Adelong New South Wales'),
4761
+ (4403, '2729', 'Bangadang', 'NSW', 'AU', 486, ' 2729 Bangadang New South Wales'),
4762
+ (4404, '2729', 'Westwood', 'NSW', 'AU', 486, ' 2729 Westwood New South Wales'),
4763
+ (4405, '2729', 'Yaven Creek', 'NSW', 'AU', 486, ' 2729 Yaven Creek New South Wales'),
4764
+ (4406, '2729', 'Wondalga', 'NSW', 'AU', 486, ' 2729 Wondalga New South Wales'),
4765
+ (4407, '2729', 'Cooleys Creek', 'NSW', 'AU', 486, ' 2729 Cooleys Creek New South Wales'),
4766
+ (4408, '2729', 'Califat', 'NSW', 'AU', 486, ' 2729 Califat New South Wales'),
4767
+ (4409, '2729', 'Black Creek', 'NSW', 'AU', 486, ' 2729 Black Creek New South Wales'),
4768
+ (4410, '2729', 'Darlow', 'NSW', 'AU', 486, ' 2729 Darlow New South Wales'),
4769
+ (4411, '2729', 'Ellerslie', 'NSW', 'AU', 486, ' 2729 Ellerslie New South Wales'),
4770
+ (4412, '2729', 'Grahamstown', 'NSW', 'AU', 486, ' 2729 Grahamstown New South Wales'),
4771
+ (4413, '2729', 'Sharps Creek', 'NSW', 'AU', 486, ' 2729 Sharps Creek New South Wales'),
4772
+ (4414, '2729', 'Sandy Gully', 'NSW', 'AU', 486, ' 2729 Sandy Gully New South Wales'),
4773
+ (4415, '2729', 'Mundarlo', 'NSW', 'AU', 486, ' 2729 Mundarlo New South Wales'),
4774
+ (4416, '2729', 'Mount Adrah', 'NSW', 'AU', 486, ' 2729 Mount Adrah New South Wales'),
4775
+ (4417, '2729', 'Mount Horeb', 'NSW', 'AU', 486, ' 2729 Mount Horeb New South Wales'),
4776
+ (4418, '2729', 'Tumblong', 'NSW', 'AU', 486, ' 2729 Tumblong New South Wales'),
4777
+ (4419, '2730', 'Kunama', 'NSW', 'AU', 486, ' 2730 Kunama New South Wales'),
4778
+ (4420, '2730', 'Lower Bago', 'NSW', 'AU', 486, ' 2730 Lower Bago New South Wales'),
4779
+ (4421, '2730', 'Green Hills', 'NSW', 'AU', 486, ' 2730 Green Hills New South Wales'),
4780
+ (4422, '2730', 'Batlow', 'NSW', 'AU', 486, ' 2730 Batlow New South Wales'),
4781
+ (4423, '2731', 'Bunnaloo', 'NSW', 'AU', 486, ' 2731 Bunnaloo New South Wales'),
4782
+ (4424, '2731', 'Moama', 'NSW', 'AU', 486, ' 2731 Moama New South Wales'),
4783
+ (4425, '2731', 'Tantonan', 'NSW', 'AU', 486, ' 2731 Tantonan New South Wales'),
4784
+ (4426, '2731', 'Thyra', 'NSW', 'AU', 486, ' 2731 Thyra New South Wales'),
4785
+ (4427, '2731', 'Womboota', 'NSW', 'AU', 486, ' 2731 Womboota New South Wales'),
4786
+ (4428, '2732', 'Thule', 'NSW', 'AU', 486, ' 2732 Thule New South Wales'),
4787
+ (4429, '2732', 'Tullakool', 'NSW', 'AU', 486, ' 2732 Tullakool New South Wales'),
4788
+ (4430, '2732', 'Noorong', 'NSW', 'AU', 486, ' 2732 Noorong New South Wales'),
4789
+ (4431, '2732', 'Burraboi', 'NSW', 'AU', 486, ' 2732 Burraboi New South Wales'),
4790
+ (4432, '2732', 'Cobramunga', 'NSW', 'AU', 486, ' 2732 Cobramunga New South Wales'),
4791
+ (4433, '2732', 'Barham', 'NSW', 'AU', 486, ' 2732 Barham New South Wales'),
4792
+ (4434, '2732', 'Gonn', 'NSW', 'AU', 486, ' 2732 Gonn New South Wales'),
4793
+ (4435, '2733', 'Dhuragoon', 'NSW', 'AU', 486, ' 2733 Dhuragoon New South Wales'),
4794
+ (4436, '2733', 'Niemur', 'NSW', 'AU', 486, ' 2733 Niemur New South Wales'),
4795
+ (4437, '2733', 'Moulamein', 'NSW', 'AU', 486, ' 2733 Moulamein New South Wales'),
4796
+ (4438, '2734', 'Murray Downs', 'NSW', 'AU', 486, ' 2734 Murray Downs New South Wales'),
4797
+ (4439, '2734', 'Mellool', 'NSW', 'AU', 486, ' 2734 Mellool New South Wales'),
4798
+ (4440, '2734', 'Moolpa', 'NSW', 'AU', 486, ' 2734 Moolpa New South Wales'),
4799
+ (4441, '2734', 'Stony Crossing', 'NSW', 'AU', 486, ' 2734 Stony Crossing New South Wales'),
4800
+ (4442, '2734', 'Tooranie', 'NSW', 'AU', 486, ' 2734 Tooranie New South Wales'),
4801
+ (4443, '2734', 'Wetuppa', 'NSW', 'AU', 486, ' 2734 Wetuppa New South Wales'),
4802
+ (4444, '2734', 'Dilpurra', 'NSW', 'AU', 486, ' 2734 Dilpurra New South Wales'),
4803
+ (4445, '2734', 'Mallan', 'NSW', 'AU', 486, ' 2734 Mallan New South Wales'),
4804
+ (4446, '2734', 'Cunninyeuk', 'NSW', 'AU', 486, ' 2734 Cunninyeuk New South Wales'),
4805
+ (4447, '2735', 'Koraleigh', 'NSW', 'AU', 486, ' 2735 Koraleigh New South Wales'),
4806
+ (4448, '2735', 'Speewa', 'NSW', 'AU', 486, ' 2735 Speewa New South Wales'),
4807
+ (4449, '2736', 'Tooleybuc', 'NSW', 'AU', 486, ' 2736 Tooleybuc New South Wales'),
4808
+ (4450, '2736', 'Goodnight', 'NSW', 'AU', 486, ' 2736 Goodnight New South Wales'),
4809
+ (4451, '2737', 'Euston', 'NSW', 'AU', 486, ' 2737 Euston New South Wales'),
4810
+ (4452, '2738', 'Gol Gol', 'NSW', 'AU', 486, ' 2738 Gol Gol New South Wales'),
4811
+ (4453, '2738', 'Mallee', 'NSW', 'AU', 486, ' 2738 Mallee New South Wales'),
4812
+ (4454, '2738', 'Trentham Cliffs', 'NSW', 'AU', 486, ' 2738 Trentham Cliffs New South Wales'),
4813
+ (4455, '2738', 'Paringi', 'NSW', 'AU', 486, ' 2738 Paringi New South Wales'),
4814
+ (4456, '2738', 'Monak', 'NSW', 'AU', 486, ' 2738 Monak New South Wales'),
4815
+ (4457, '2739', 'Mourquong', 'NSW', 'AU', 486, ' 2739 Mourquong New South Wales'),
4816
+ (4458, '2739', 'Buronga', 'NSW', 'AU', 486, ' 2739 Buronga New South Wales'),
4817
+ (4459, '2739', 'Boeill Creek', 'NSW', 'AU', 486, ' 2739 Boeill Creek New South Wales'),
4818
+ (4460, '2745', 'Regentville', 'NSW', 'AU', 486, ' 2745 Regentville New South Wales'),
4819
+ (4461, '2745', 'Wallacia', 'NSW', 'AU', 486, ' 2745 Wallacia New South Wales'),
4820
+ (4462, '2745', 'Glenmore Park', 'NSW', 'AU', 486, ' 2745 Glenmore Park New South Wales'),
4821
+ (4463, '2745', 'Greendale', 'NSW', 'AU', 486, ' 2745 Greendale New South Wales'),
4822
+ (4464, '2745', 'Luddenham', 'NSW', 'AU', 486, ' 2745 Luddenham New South Wales'),
4823
+ (4465, '2745', 'Mulgoa', 'NSW', 'AU', 486, ' 2745 Mulgoa New South Wales'),
4824
+ (4466, '2747', 'Llandilo', 'NSW', 'AU', 486, ' 2747 Llandilo New South Wales'),
4825
+ (4467, '2747', 'Kingswood', 'NSW', 'AU', 486, ' 2747 Kingswood New South Wales'),
4826
+ (4468, '2747', 'Werrington', 'NSW', 'AU', 486, ' 2747 Werrington New South Wales'),
4827
+ (4469, '2747', 'Werrington County', 'NSW', 'AU', 486, ' 2747 Werrington County New South Wales'),
4828
+ (4470, '2747', 'Werrington Downs', 'NSW', 'AU', 486, ' 2747 Werrington Downs New South Wales'),
4829
+ (4471, '2747', 'Shanes Park', 'NSW', 'AU', 486, ' 2747 Shanes Park New South Wales'),
4830
+ (4472, '2747', 'Cambridge Gardens', 'NSW', 'AU', 486, ' 2747 Cambridge Gardens New South Wales'),
4831
+ (4473, '2747', 'Cambridge Park', 'NSW', 'AU', 486, ' 2747 Cambridge Park New South Wales'),
4832
+ (4474, '2747', 'Claremont Meadows', 'NSW', 'AU', 486, ' 2747 Claremont Meadows New South Wales'),
4833
+ (4475, '2748', 'Orchard Hills', 'NSW', 'AU', 486, ' 2748 Orchard Hills New South Wales'),
4834
+ (4476, '2749', 'Castlereagh', 'NSW', 'AU', 486, ' 2749 Castlereagh New South Wales'),
4835
+ (4477, '2749', 'Cranebrook', 'NSW', 'AU', 486, ' 2749 Cranebrook New South Wales'),
4836
+ (4478, '2750', 'Emu Heights', 'NSW', 'AU', 486, ' 2750 Emu Heights New South Wales'),
4837
+ (4479, '2750', 'Emu Plains', 'NSW', 'AU', 486, ' 2750 Emu Plains New South Wales'),
4838
+ (4480, '2750', 'Penrith', 'NSW', 'AU', 486, ' 2750 Penrith New South Wales'),
4839
+ (4481, '2750', 'Penrith Plaza', 'NSW', 'AU', 486, ' 2750 Penrith Plaza New South Wales'),
4840
+ (4482, '2750', 'Penrith South', 'NSW', 'AU', 486, ' 2750 Penrith South New South Wales'),
4841
+ (4483, '2750', 'Leonay', 'NSW', 'AU', 486, ' 2750 Leonay New South Wales'),
4842
+ (4484, '2750', 'Jamisontown', 'NSW', 'AU', 486, ' 2750 Jamisontown New South Wales'),
4843
+ (4485, '2750', 'South Penrith', 'NSW', 'AU', 486, ' 2750 South Penrith New South Wales'),
4844
+ (4486, '2751', 'Penrith', 'NSW', 'AU', 486, ' 2751 Penrith New South Wales'),
4845
+ (4487, '2752', 'Warragamba', 'NSW', 'AU', 486, ' 2752 Warragamba New South Wales'),
4846
+ (4488, '2752', 'Silverdale', 'NSW', 'AU', 486, ' 2752 Silverdale New South Wales'),
4847
+ (4489, '2753', 'Richmond', 'NSW', 'AU', 486, ' 2753 Richmond New South Wales'),
4848
+ (4490, '2753', 'Richmond Lowlands', 'NSW', 'AU', 486, ' 2753 Richmond Lowlands New South Wales'),
4849
+ (4491, '2753', 'Yarramundi', 'NSW', 'AU', 486, ' 2753 Yarramundi New South Wales'),
4850
+ (4492, '2753', 'Londonderry', 'NSW', 'AU', 486, ' 2753 Londonderry New South Wales'),
4851
+ (4493, '2753', 'Hobartville', 'NSW', 'AU', 486, ' 2753 Hobartville New South Wales'),
4852
+ (4494, '2753', 'Grose Vale', 'NSW', 'AU', 486, ' 2753 Grose Vale New South Wales'),
4853
+ (4495, '2753', 'Grose Wold', 'NSW', 'AU', 486, ' 2753 Grose Wold New South Wales'),
4854
+ (4496, '2753', 'Bowen Mountain', 'NSW', 'AU', 486, ' 2753 Bowen Mountain New South Wales'),
4855
+ (4497, '2753', 'Agnes Banks', 'NSW', 'AU', 486, ' 2753 Agnes Banks New South Wales'),
4856
+ (4498, '2754', 'North Richmond', 'NSW', 'AU', 486, ' 2754 North Richmond New South Wales'),
4857
+ (4499, '2754', 'Tennyson', 'NSW', 'AU', 486, ' 2754 Tennyson New South Wales'),
4858
+ (4500, '2754', 'The Slopes', 'NSW', 'AU', 486, ' 2754 The Slopes New South Wales'),
4859
+ (4501, '2756', 'Upper Colo', 'NSW', 'AU', 486, ' 2756 Upper Colo New South Wales'),
4860
+ (4502, '2756', 'South Windsor', 'NSW', 'AU', 486, ' 2756 South Windsor New South Wales'),
4861
+ (4503, '2756', 'Sackville', 'NSW', 'AU', 486, ' 2756 Sackville New South Wales'),
4862
+ (4504, '2756', 'Sackville North', 'NSW', 'AU', 486, ' 2756 Sackville North New South Wales'),
4863
+ (4505, '2756', 'Scheyville', 'NSW', 'AU', 486, ' 2756 Scheyville New South Wales'),
4864
+ (4506, '2756', 'South Maroota', 'NSW', 'AU', 486, ' 2756 South Maroota New South Wales'),
4865
+ (4507, '2756', 'Wilberforce', 'NSW', 'AU', 486, ' 2756 Wilberforce New South Wales'),
4866
+ (4508, '2756', 'Windsor', 'NSW', 'AU', 486, ' 2756 Windsor New South Wales'),
4867
+ (4509, '2756', 'Windsor Downs', 'NSW', 'AU', 486, ' 2756 Windsor Downs New South Wales'),
4868
+ (4510, '2756', 'Womerah', 'NSW', 'AU', 486, ' 2756 Womerah New South Wales'),
4869
+ (4511, '2756', 'Mulgrave', 'NSW', 'AU', 486, ' 2756 Mulgrave New South Wales'),
4870
+ (4512, '2756', 'Pitt Town', 'NSW', 'AU', 486, ' 2756 Pitt Town New South Wales'),
4871
+ (4513, '2756', 'Pitt Town Bottoms', 'NSW', 'AU', 486, ' 2756 Pitt Town Bottoms New South Wales'),
4872
+ (4514, '2756', 'Lower Portland', 'NSW', 'AU', 486, ' 2756 Lower Portland New South Wales'),
4873
+ (4515, '2756', 'Maroota', 'NSW', 'AU', 486, ' 2756 Maroota New South Wales'),
4874
+ (4516, '2756', 'Mellong', 'NSW', 'AU', 486, ' 2756 Mellong New South Wales'),
4875
+ (4517, '2756', 'Mcgraths Hill', 'NSW', 'AU', 486, ' 2756 Mcgraths Hill New South Wales'),
4876
+ (4518, '2756', 'Glossodia', 'NSW', 'AU', 486, ' 2756 Glossodia New South Wales'),
4877
+ (4519, '2756', 'Freemans Reach', 'NSW', 'AU', 486, ' 2756 Freemans Reach New South Wales'),
4878
+ (4520, '2756', 'Clarendon', 'NSW', 'AU', 486, ' 2756 Clarendon New South Wales'),
4879
+ (4521, '2756', 'Cattai', 'NSW', 'AU', 486, ' 2756 Cattai New South Wales'),
4880
+ (4522, '2756', 'Central Colo', 'NSW', 'AU', 486, ' 2756 Central Colo New South Wales'),
4881
+ (4523, '2756', 'Ebenezer', 'NSW', 'AU', 486, ' 2756 Ebenezer New South Wales'),
4882
+ (4524, '2756', 'Cumberland Reach', 'NSW', 'AU', 486, ' 2756 Cumberland Reach New South Wales'),
4883
+ (4525, '2756', 'Colo', 'NSW', 'AU', 486, ' 2756 Colo New South Wales'),
4884
+ (4526, '2756', 'Colo Heights', 'NSW', 'AU', 486, ' 2756 Colo Heights New South Wales'),
4885
+ (4527, '2756', 'Bligh Park', 'NSW', 'AU', 486, ' 2756 Bligh Park New South Wales'),
4886
+ (4528, '2756', 'Cornwallis', 'NSW', 'AU', 486, ' 2756 Cornwallis New South Wales'),
4887
+ (4529, '2757', 'Kurmond', 'NSW', 'AU', 486, ' 2757 Kurmond New South Wales'),
4888
+ (4530, '2758', 'Kurrajong', 'NSW', 'AU', 486, ' 2758 Kurrajong New South Wales'),
4889
+ (4531, '2758', 'Kurrajong Heights', 'NSW', 'AU', 486, ' 2758 Kurrajong Heights New South Wales'),
4890
+ (4532, '2758', 'Kurrajong Hills', 'NSW', 'AU', 486, ' 2758 Kurrajong Hills New South Wales'),
4891
+ (4533, '2758', 'Mount Tomah', 'NSW', 'AU', 486, ' 2758 Mount Tomah New South Wales'),
4892
+ (4534, '2758', 'Wheeny Creek', 'NSW', 'AU', 486, ' 2758 Wheeny Creek New South Wales'),
4893
+ (4535, '2758', 'Mountain Lagoon', 'NSW', 'AU', 486, ' 2758 Mountain Lagoon New South Wales'),
4894
+ (4536, '2758', 'The Devils Wilderness', 'NSW', 'AU', 486, ' 2758 The Devils Wilderness New South Wales'),
4895
+ (4537, '2758', 'East Kurrajong', 'NSW', 'AU', 486, ' 2758 East Kurrajong New South Wales'),
4896
+ (4538, '2758', 'Blaxlands Ridge', 'NSW', 'AU', 486, ' 2758 Blaxlands Ridge New South Wales'),
4897
+ (4539, '2758', 'Berambing', 'NSW', 'AU', 486, ' 2758 Berambing New South Wales'),
4898
+ (4540, '2758', 'Bilpin', 'NSW', 'AU', 486, ' 2758 Bilpin New South Wales'),
4899
+ (4541, '2759', 'St Clair', 'NSW', 'AU', 486, ' 2759 St Clair New South Wales'),
4900
+ (4542, '2759', 'Erskine Park', 'NSW', 'AU', 486, ' 2759 Erskine Park New South Wales'),
4901
+ (4543, '2760', 'North St Marys', 'NSW', 'AU', 486, ' 2760 North St Marys New South Wales'),
4902
+ (4544, '2760', 'Oxley Park', 'NSW', 'AU', 486, ' 2760 Oxley Park New South Wales'),
4903
+ (4545, '2760', 'Ropes Crossing', 'NSW', 'AU', 486, ' 2760 Ropes Crossing New South Wales'),
4904
+ (4546, '2760', 'St Marys', 'NSW', 'AU', 486, ' 2760 St Marys New South Wales'),
4905
+ (4547, '2760', 'St Marys East', 'NSW', 'AU', 486, ' 2760 St Marys East New South Wales'),
4906
+ (4548, '2760', 'St Marys South', 'NSW', 'AU', 486, ' 2760 St Marys South New South Wales'),
4907
+ (4549, '2760', 'Colyton', 'NSW', 'AU', 486, ' 2760 Colyton New South Wales'),
4908
+ (4550, '2761', 'Dean Park', 'NSW', 'AU', 486, ' 2761 Dean Park New South Wales'),
4909
+ (4551, '2761', 'Colebee', 'NSW', 'AU', 486, ' 2761 Colebee New South Wales'),
4910
+ (4552, '2761', 'Plumpton', 'NSW', 'AU', 486, ' 2761 Plumpton New South Wales'),
4911
+ (4553, '2761', 'Oakhurst', 'NSW', 'AU', 486, ' 2761 Oakhurst New South Wales'),
4912
+ (4554, '2761', 'Glendenning', 'NSW', 'AU', 486, ' 2761 Glendenning New South Wales'),
4913
+ (4555, '2761', 'Hassall Grove', 'NSW', 'AU', 486, ' 2761 Hassall Grove New South Wales'),
4914
+ (4556, '2762', 'Schofields', 'NSW', 'AU', 486, ' 2762 Schofields New South Wales'),
4915
+ (4557, '2763', 'Acacia Gardens', 'NSW', 'AU', 486, ' 2763 Acacia Gardens New South Wales'),
4916
+ (4558, '2763', 'Quakers Hill', 'NSW', 'AU', 486, ' 2763 Quakers Hill New South Wales'),
4917
+ (4559, '2765', 'Riverstone', 'NSW', 'AU', 486, ' 2765 Riverstone New South Wales'),
4918
+ (4560, '2765', 'Vineyard', 'NSW', 'AU', 486, ' 2765 Vineyard New South Wales'),
4919
+ (4561, '2765', 'Oakville', 'NSW', 'AU', 486, ' 2765 Oakville New South Wales'),
4920
+ (4562, '2765', 'Nelson', 'NSW', 'AU', 486, ' 2765 Nelson New South Wales'),
4921
+ (4563, '2765', 'Marsden Park', 'NSW', 'AU', 486, ' 2765 Marsden Park New South Wales'),
4922
+ (4564, '2765', 'Maraylya', 'NSW', 'AU', 486, ' 2765 Maraylya New South Wales'),
4923
+ (4565, '2765', 'Box Hill', 'NSW', 'AU', 486, ' 2765 Box Hill New South Wales'),
4924
+ (4566, '2765', 'Berkshire Park', 'NSW', 'AU', 486, ' 2765 Berkshire Park New South Wales'),
4925
+ (4567, '2766', 'Eastern Creek', 'NSW', 'AU', 486, ' 2766 Eastern Creek New South Wales'),
4926
+ (4568, '2766', 'Rooty Hill', 'NSW', 'AU', 486, ' 2766 Rooty Hill New South Wales'),
4927
+ (4569, '2767', 'Woodcroft', 'NSW', 'AU', 486, ' 2767 Woodcroft New South Wales'),
4928
+ (4570, '2767', 'Doonside', 'NSW', 'AU', 486, ' 2767 Doonside New South Wales'),
4929
+ (4571, '2768', 'Glenwood', 'NSW', 'AU', 486, ' 2768 Glenwood New South Wales'),
4930
+ (4572, '2768', 'Stanhope Gardens', 'NSW', 'AU', 486, ' 2768 Stanhope Gardens New South Wales'),
4931
+ (4573, '2768', 'Parklea', 'NSW', 'AU', 486, ' 2768 Parklea New South Wales'),
4932
+ (4574, '2769', 'The Ponds', 'NSW', 'AU', 486, ' 2769 The Ponds New South Wales'),
4933
+ (4575, '2770', 'Shalvey', 'NSW', 'AU', 486, ' 2770 Shalvey New South Wales'),
4934
+ (4576, '2770', 'Tregear', 'NSW', 'AU', 486, ' 2770 Tregear New South Wales'),
4935
+ (4577, '2770', 'Whalan', 'NSW', 'AU', 486, ' 2770 Whalan New South Wales'),
4936
+ (4578, '2770', 'Willmot', 'NSW', 'AU', 486, ' 2770 Willmot New South Wales'),
4937
+ (4579, '2770', 'Lethbridge Park', 'NSW', 'AU', 486, ' 2770 Lethbridge Park New South Wales'),
4938
+ (4580, '2770', 'Minchinbury', 'NSW', 'AU', 486, ' 2770 Minchinbury New South Wales'),
4939
+ (4581, '2770', 'Mount Druitt', 'NSW', 'AU', 486, ' 2770 Mount Druitt New South Wales'),
4940
+ (4582, '2770', 'Mount Druitt Village', 'NSW', 'AU', 486, ' 2770 Mount Druitt Village New South Wales'),
4941
+ (4583, '2770', 'Hebersham', 'NSW', 'AU', 486, ' 2770 Hebersham New South Wales'),
4942
+ (4584, '2770', 'Emerton', 'NSW', 'AU', 486, ' 2770 Emerton New South Wales'),
4943
+ (4585, '2770', 'Dharruk', 'NSW', 'AU', 486, ' 2770 Dharruk New South Wales'),
4944
+ (4586, '2770', 'Bidwill', 'NSW', 'AU', 486, ' 2770 Bidwill New South Wales'),
4945
+ (4587, '2770', 'Blackett', 'NSW', 'AU', 486, ' 2770 Blackett New South Wales'),
4946
+ (4588, '2773', 'Lapstone', 'NSW', 'AU', 486, ' 2773 Lapstone New South Wales'),
4947
+ (4589, '2773', 'Glenbrook', 'NSW', 'AU', 486, ' 2773 Glenbrook New South Wales'),
4948
+ (4590, '2774', 'Mount Riverview', 'NSW', 'AU', 486, ' 2774 Mount Riverview New South Wales'),
4949
+ (4591, '2774', 'Warrimoo', 'NSW', 'AU', 486, ' 2774 Warrimoo New South Wales'),
4950
+ (4592, '2774', 'Blaxland', 'NSW', 'AU', 486, ' 2774 Blaxland New South Wales'),
4951
+ (4593, '2774', 'Blaxland East', 'NSW', 'AU', 486, ' 2774 Blaxland East New South Wales'),
4952
+ (4594, '2775', 'Spencer', 'NSW', 'AU', 486, ' 2775 Spencer New South Wales'),
4953
+ (4595, '2775', 'St Albans', 'NSW', 'AU', 486, ' 2775 St Albans New South Wales'),
4954
+ (4596, '2775', 'Upper Macdonald', 'NSW', 'AU', 486, ' 2775 Upper Macdonald New South Wales'),
4955
+ (4597, '2775', 'Webbs Creek', 'NSW', 'AU', 486, ' 2775 Webbs Creek New South Wales'),
4956
+ (4598, '2775', 'Singletons Mill', 'NSW', 'AU', 486, ' 2775 Singletons Mill New South Wales'),
4957
+ (4599, '2775', 'Wrights Creek', 'NSW', 'AU', 486, ' 2775 Wrights Creek New South Wales'),
4958
+ (4600, '2775', 'Wisemans Ferry', 'NSW', 'AU', 486, ' 2775 Wisemans Ferry New South Wales'),
4959
+ (4601, '2775', 'Perrys Crossing', 'NSW', 'AU', 486, ' 2775 Perrys Crossing New South Wales'),
4960
+ (4602, '2775', 'Mogo Creek', 'NSW', 'AU', 486, ' 2775 Mogo Creek New South Wales'),
4961
+ (4603, '2775', 'Marlow', 'NSW', 'AU', 486, ' 2775 Marlow New South Wales'),
4962
+ (4604, '2775', 'Central Macdonald', 'NSW', 'AU', 486, ' 2775 Central Macdonald New South Wales'),
4963
+ (4605, '2775', 'Fernances', 'NSW', 'AU', 486, ' 2775 Fernances New South Wales'),
4964
+ (4606, '2775', 'Gunderman', 'NSW', 'AU', 486, ' 2775 Gunderman New South Wales'),
4965
+ (4607, '2775', 'Higher Macdonald', 'NSW', 'AU', 486, ' 2775 Higher Macdonald New South Wales'),
4966
+ (4608, '2775', 'Laughtondale', 'NSW', 'AU', 486, ' 2775 Laughtondale New South Wales'),
4967
+ (4609, '2775', 'Leets Vale', 'NSW', 'AU', 486, ' 2775 Leets Vale New South Wales'),
4968
+ (4610, '2775', 'Lower Macdonald', 'NSW', 'AU', 486, ' 2775 Lower Macdonald New South Wales'),
4969
+ (4611, '2776', 'Faulconbridge', 'NSW', 'AU', 486, ' 2776 Faulconbridge New South Wales'),
4970
+ (4612, '2777', 'Hawkesbury Heights', 'NSW', 'AU', 486, ' 2777 Hawkesbury Heights New South Wales'),
4971
+ (4613, '2777', 'Valley Heights', 'NSW', 'AU', 486, ' 2777 Valley Heights New South Wales'),
4972
+ (4614, '2777', 'Springwood', 'NSW', 'AU', 486, ' 2777 Springwood New South Wales'),
4973
+ (4615, '2777', 'Sun Valley', 'NSW', 'AU', 486, ' 2777 Sun Valley New South Wales'),
4974
+ (4616, '2777', 'Winmalee', 'NSW', 'AU', 486, ' 2777 Winmalee New South Wales'),
4975
+ (4617, '2777', 'Yellow Rock', 'NSW', 'AU', 486, ' 2777 Yellow Rock New South Wales'),
4976
+ (4618, '2778', 'Woodford', 'NSW', 'AU', 486, ' 2778 Woodford New South Wales'),
4977
+ (4619, '2778', 'Linden', 'NSW', 'AU', 486, ' 2778 Linden New South Wales'),
4978
+ (4620, '2779', 'Hazelbrook', 'NSW', 'AU', 486, ' 2779 Hazelbrook New South Wales'),
4979
+ (4621, '2780', 'Katoomba', 'NSW', 'AU', 486, ' 2780 Katoomba New South Wales'),
4980
+ (4622, '2780', 'Medlow Bath', 'NSW', 'AU', 486, ' 2780 Medlow Bath New South Wales'),
4981
+ (4623, '2780', 'Leura', 'NSW', 'AU', 486, ' 2780 Leura New South Wales'),
4982
+ (4624, '2782', 'Wentworth Falls', 'NSW', 'AU', 486, ' 2782 Wentworth Falls New South Wales'),
4983
+ (4625, '2783', 'Lawson', 'NSW', 'AU', 486, ' 2783 Lawson New South Wales'),
4984
+ (4626, '2784', 'Bullaburra', 'NSW', 'AU', 486, ' 2784 Bullaburra New South Wales'),
4985
+ (4627, '2785', 'Blackheath', 'NSW', 'AU', 486, ' 2785 Blackheath New South Wales'),
4986
+ (4628, '2785', 'Megalong', 'NSW', 'AU', 486, ' 2785 Megalong New South Wales'),
4987
+ (4629, '2786', 'Mount Irvine', 'NSW', 'AU', 486, ' 2786 Mount Irvine New South Wales'),
4988
+ (4630, '2786', 'Mount Victoria', 'NSW', 'AU', 486, ' 2786 Mount Victoria New South Wales'),
4989
+ (4631, '2786', 'Mount Wilson', 'NSW', 'AU', 486, ' 2786 Mount Wilson New South Wales'),
4990
+ (4632, '2786', 'Dargan', 'NSW', 'AU', 486, ' 2786 Dargan New South Wales'),
4991
+ (4633, '2786', 'Bell', 'NSW', 'AU', 486, ' 2786 Bell New South Wales'),
4992
+ (4634, '2787', 'Norway', 'NSW', 'AU', 486, ' 2787 Norway New South Wales'),
4993
+ (4635, '2787', 'Oberon', 'NSW', 'AU', 486, ' 2787 Oberon New South Wales'),
4994
+ (4636, '2787', 'Shooters Hill', 'NSW', 'AU', 486, ' 2787 Shooters Hill New South Wales'),
4995
+ (4637, '2787', 'Porters Retreat', 'NSW', 'AU', 486, ' 2787 Porters Retreat New South Wales'),
4996
+ (4638, '2787', 'The Meadows', 'NSW', 'AU', 486, ' 2787 The Meadows New South Wales'),
4997
+ (4639, '2787', 'Tarana', 'NSW', 'AU', 486, ' 2787 Tarana New South Wales'),
4998
+ (4640, '2787', 'Hazelgrove', 'NSW', 'AU', 486, ' 2787 Hazelgrove New South Wales'),
4999
+ (4641, '2787', 'Gurnang', 'NSW', 'AU', 486, ' 2787 Gurnang New South Wales'),
5000
+ (4642, '2787', 'Kanangra', 'NSW', 'AU', 486, ' 2787 Kanangra New South Wales'),
5001
+ (4643, '2787', 'Jaunter', 'NSW', 'AU', 486, ' 2787 Jaunter New South Wales'),
5002
+ (4644, '2787', 'Gingkin', 'NSW', 'AU', 486, ' 2787 Gingkin New South Wales'),
5003
+ (4645, '2787', 'Mayfield', 'NSW', 'AU', 486, ' 2787 Mayfield New South Wales'),
5004
+ (4646, '2787', 'Mount Olive', 'NSW', 'AU', 486, ' 2787 Mount Olive New South Wales'),
5005
+ (4647, '2787', 'Mount Werong', 'NSW', 'AU', 486, ' 2787 Mount Werong New South Wales'),
5006
+ (4648, '2787', 'Mozart', 'NSW', 'AU', 486, ' 2787 Mozart New South Wales'),
5007
+ (4649, '2787', 'Black Springs', 'NSW', 'AU', 486, ' 2787 Black Springs New South Wales'),
5008
+ (4650, '2787', 'Edith', 'NSW', 'AU', 486, ' 2787 Edith New South Wales'),
5009
+ (4651, '2787', 'Duckmaloi', 'NSW', 'AU', 486, ' 2787 Duckmaloi New South Wales'),
5010
+ (4652, '2787', 'Chatham Valley', 'NSW', 'AU', 486, ' 2787 Chatham Valley New South Wales'),
5011
+ (4653, '2790', 'Cobar Park', 'NSW', 'AU', 486, ' 2790 Cobar Park New South Wales'),
5012
+ (4654, '2790', 'Clarence', 'NSW', 'AU', 486, ' 2790 Clarence New South Wales'),
5013
+ (4655, '2790', 'Doctors Gap', 'NSW', 'AU', 486, ' 2790 Doctors Gap New South Wales'),
5014
+ (4656, '2790', 'Cullen Bullen', 'NSW', 'AU', 486, ' 2790 Cullen Bullen New South Wales'),
5015
+ (4657, '2790', 'Corney Town', 'NSW', 'AU', 486, ' 2790 Corney Town New South Wales'),
5016
+ (4658, '2790', 'Blackmans Flat', 'NSW', 'AU', 486, ' 2790 Blackmans Flat New South Wales'),
5017
+ (4659, '2790', 'Bowenfels', 'NSW', 'AU', 486, ' 2790 Bowenfels New South Wales'),
5018
+ (4660, '2790', 'Ben Bullen', 'NSW', 'AU', 486, ' 2790 Ben Bullen New South Wales'),
5019
+ (4661, '2790', 'Mount Lambie', 'NSW', 'AU', 486, ' 2790 Mount Lambie New South Wales'),
5020
+ (4662, '2790', 'Morts Estate', 'NSW', 'AU', 486, ' 2790 Morts Estate New South Wales'),
5021
+ (4663, '2790', 'Mckellars Park', 'NSW', 'AU', 486, ' 2790 Mckellars Park New South Wales'),
5022
+ (4664, '2790', 'Marrangaroo', 'NSW', 'AU', 486, ' 2790 Marrangaroo New South Wales'),
5023
+ (4665, '2790', 'Littleton', 'NSW', 'AU', 486, ' 2790 Littleton New South Wales'),
5024
+ (4666, '2790', 'Little Hartley', 'NSW', 'AU', 486, ' 2790 Little Hartley New South Wales'),
5025
+ (4667, '2790', 'Lowther', 'NSW', 'AU', 486, ' 2790 Lowther New South Wales'),
5026
+ (4668, '2790', 'Lidsdale', 'NSW', 'AU', 486, ' 2790 Lidsdale New South Wales'),
5027
+ (4669, '2790', 'Lithgow', 'NSW', 'AU', 486, ' 2790 Lithgow New South Wales'),
5028
+ (4670, '2790', 'Ganbenang', 'NSW', 'AU', 486, ' 2790 Ganbenang New South Wales'),
5029
+ (4671, '2790', 'Jenolan', 'NSW', 'AU', 486, ' 2790 Jenolan New South Wales'),
5030
+ (4672, '2790', 'Kanimbla', 'NSW', 'AU', 486, ' 2790 Kanimbla New South Wales'),
5031
+ (4673, '2790', 'Hampton', 'NSW', 'AU', 486, ' 2790 Hampton New South Wales'),
5032
+ (4674, '2790', 'Hartley', 'NSW', 'AU', 486, ' 2790 Hartley New South Wales'),
5033
+ (4675, '2790', 'Hartley Vale', 'NSW', 'AU', 486, ' 2790 Hartley Vale New South Wales'),
5034
+ (4676, '2790', 'Hassans Walls', 'NSW', 'AU', 486, ' 2790 Hassans Walls New South Wales'),
5035
+ (4677, '2790', 'Hermitage Flat', 'NSW', 'AU', 486, ' 2790 Hermitage Flat New South Wales'),
5036
+ (4678, '2790', 'State Mine Gully', 'NSW', 'AU', 486, ' 2790 State Mine Gully New South Wales'),
5037
+ (4679, '2790', 'Springvale', 'NSW', 'AU', 486, ' 2790 Springvale New South Wales'),
5038
+ (4680, '2790', 'South Littleton', 'NSW', 'AU', 486, ' 2790 South Littleton New South Wales'),
5039
+ (4681, '2790', 'South Bowenfels', 'NSW', 'AU', 486, ' 2790 South Bowenfels New South Wales'),
5040
+ (4682, '2790', 'Sheedys Gully', 'NSW', 'AU', 486, ' 2790 Sheedys Gully New South Wales'),
5041
+ (4683, '2790', 'Sodwalls', 'NSW', 'AU', 486, ' 2790 Sodwalls New South Wales'),
5042
+ (4684, '2790', 'Vale Of Clwydd', 'NSW', 'AU', 486, ' 2790 Vale Of Clwydd New South Wales'),
5043
+ (4685, '2790', 'Pottery Estate', 'NSW', 'AU', 486, ' 2790 Pottery Estate New South Wales'),
5044
+ (4686, '2790', 'Oaky Park', 'NSW', 'AU', 486, ' 2790 Oaky Park New South Wales'),
5045
+ (4687, '2790', 'Rydal', 'NSW', 'AU', 486, ' 2790 Rydal New South Wales'),
5046
+ (4688, '2790', 'Newnes', 'NSW', 'AU', 486, ' 2790 Newnes New South Wales'),
5047
+ (4689, '2790', 'Newnes Plateau', 'NSW', 'AU', 486, ' 2790 Newnes Plateau New South Wales'),
5048
+ (4690, '2790', 'Wolgan Valley', 'NSW', 'AU', 486, ' 2790 Wolgan Valley New South Wales'),
5049
+ (4691, '2790', 'Wollangambe', 'NSW', 'AU', 486, ' 2790 Wollangambe New South Wales'),
5050
+ (4692, '2791', 'Errowanbang', 'NSW', 'AU', 486, ' 2791 Errowanbang New South Wales'),
5051
+ (4693, '2791', 'Carcoar', 'NSW', 'AU', 486, ' 2791 Carcoar New South Wales'),
5052
+ (4694, '2792', 'Burnt Yards', 'NSW', 'AU', 486, ' 2792 Burnt Yards New South Wales'),
5053
+ (4695, '2792', 'Mandurama', 'NSW', 'AU', 486, ' 2792 Mandurama New South Wales'),
5054
+ (4696, '2793', 'Roseberg', 'NSW', 'AU', 486, ' 2793 Roseberg New South Wales'),
5055
+ (4697, '2793', 'Woodstock', 'NSW', 'AU', 486, ' 2793 Woodstock New South Wales'),
5056
+ (4698, '2793', 'Darbys Falls', 'NSW', 'AU', 486, ' 2793 Darbys Falls New South Wales'),
5057
+ (4699, '2794', 'Cowra', 'NSW', 'AU', 486, ' 2794 Cowra New South Wales'),
5058
+ (4700, '2794', 'Bumbaldry', 'NSW', 'AU', 486, ' 2794 Bumbaldry New South Wales'),
5059
+ (4701, '2794', 'Wattamondara', 'NSW', 'AU', 486, ' 2794 Wattamondara New South Wales'),
5060
+ (4702, '2794', 'Mount Collins', 'NSW', 'AU', 486, ' 2794 Mount Collins New South Wales'),
5061
+ (4703, '2794', 'Hovells Creek', 'NSW', 'AU', 486, ' 2794 Hovells Creek New South Wales'),
5062
+ (4704, '2795', 'Isabella', 'NSW', 'AU', 486, ' 2795 Isabella New South Wales'),
5063
+ (4705, '2795', 'Jeremy', 'NSW', 'AU', 486, ' 2795 Jeremy New South Wales'),
5064
+ (4706, '2795', 'Judds Creek', 'NSW', 'AU', 486, ' 2795 Judds Creek New South Wales'),
5065
+ (4707, '2795', 'Hobbys Yards', 'NSW', 'AU', 486, ' 2795 Hobbys Yards New South Wales'),
5066
+ (4708, '2795', 'Eglinton', 'NSW', 'AU', 486, ' 2795 Eglinton New South Wales'),
5067
+ (4709, '2795', 'Essington', 'NSW', 'AU', 486, ' 2795 Essington New South Wales'),
5068
+ (4710, '2795', 'Evans Plains', 'NSW', 'AU', 486, ' 2795 Evans Plains New South Wales'),
5069
+ (4711, '2795', 'Fitzgeralds Valley', 'NSW', 'AU', 486, ' 2795 Fitzgeralds Valley New South Wales'),
5070
+ (4712, '2795', 'Forest Grove', 'NSW', 'AU', 486, ' 2795 Forest Grove New South Wales'),
5071
+ (4713, '2795', 'Fosters Valley', 'NSW', 'AU', 486, ' 2795 Fosters Valley New South Wales'),
5072
+ (4714, '2795', 'Freemantle', 'NSW', 'AU', 486, ' 2795 Freemantle New South Wales'),
5073
+ (4715, '2795', 'Gemalla', 'NSW', 'AU', 486, ' 2795 Gemalla New South Wales'),
5074
+ (4716, '2795', 'Georges Plains', 'NSW', 'AU', 486, ' 2795 Georges Plains New South Wales'),
5075
+ (4717, '2795', 'Gilmandyke', 'NSW', 'AU', 486, ' 2795 Gilmandyke New South Wales'),
5076
+ (4718, '2795', 'Glanmire', 'NSW', 'AU', 486, ' 2795 Glanmire New South Wales'),
5077
+ (4719, '2795', 'Gormans Hill', 'NSW', 'AU', 486, ' 2795 Gormans Hill New South Wales'),
5078
+ (4720, '2795', 'Gowan', 'NSW', 'AU', 486, ' 2795 Gowan New South Wales'),
5079
+ (4721, '2795', 'Mount David', 'NSW', 'AU', 486, ' 2795 Mount David New South Wales'),
5080
+ (4722, '2795', 'Moorilda', 'NSW', 'AU', 486, ' 2795 Moorilda New South Wales'),
5081
+ (4723, '2795', 'Mount Panorama', 'NSW', 'AU', 486, ' 2795 Mount Panorama New South Wales'),
5082
+ (4724, '2795', 'Mount Rankin', 'NSW', 'AU', 486, ' 2795 Mount Rankin New South Wales'),
5083
+ (4725, '2795', 'Mitchell', 'NSW', 'AU', 486, ' 2795 Mitchell New South Wales'),
5084
+ (4726, '2795', 'Milkers Flat', 'NSW', 'AU', 486, ' 2795 Milkers Flat New South Wales'),
5085
+ (4727, '2795', 'Millah Murrah', 'NSW', 'AU', 486, ' 2795 Millah Murrah New South Wales'),
5086
+ (4728, '2795', 'Meadow Flat', 'NSW', 'AU', 486, ' 2795 Meadow Flat New South Wales'),
5087
+ (4729, '2795', 'Llanarth', 'NSW', 'AU', 486, ' 2795 Llanarth New South Wales'),
5088
+ (4730, '2795', 'Locksley', 'NSW', 'AU', 486, ' 2795 Locksley New South Wales'),
5089
+ (4731, '2795', 'Limekilns', 'NSW', 'AU', 486, ' 2795 Limekilns New South Wales'),
5090
+ (4732, '2795', 'Laffing Waters', 'NSW', 'AU', 486, ' 2795 Laffing Waters New South Wales'),
5091
+ (4733, '2795', 'Killongbutta', 'NSW', 'AU', 486, ' 2795 Killongbutta New South Wales'),
5092
+ (4734, '2795', 'Kirkconnell', 'NSW', 'AU', 486, ' 2795 Kirkconnell New South Wales'),
5093
+ (4735, '2795', 'Kelso', 'NSW', 'AU', 486, ' 2795 Kelso New South Wales'),
5094
+ (4736, '2795', 'Wattle Flat', 'NSW', 'AU', 486, ' 2795 Wattle Flat New South Wales'),
5095
+ (4737, '2795', 'Watton', 'NSW', 'AU', 486, ' 2795 Watton New South Wales'),
5096
+ (4738, '2795', 'West Bathurst', 'NSW', 'AU', 486, ' 2795 West Bathurst New South Wales'),
5097
+ (4739, '2795', 'White Rock', 'NSW', 'AU', 486, ' 2795 White Rock New South Wales'),
5098
+ (4740, '2795', 'Wiagdon', 'NSW', 'AU', 486, ' 2795 Wiagdon New South Wales'),
5099
+ (4741, '2795', 'Wambool', 'NSW', 'AU', 486, ' 2795 Wambool New South Wales'),
5100
+ (4742, '2795', 'Walang', 'NSW', 'AU', 486, ' 2795 Walang New South Wales'),
5101
+ (4743, '2795', 'Upper Turon', 'NSW', 'AU', 486, ' 2795 Upper Turon New South Wales'),
5102
+ (4744, '2795', 'Twenty Forests', 'NSW', 'AU', 486, ' 2795 Twenty Forests New South Wales'),
5103
+ (4745, '2795', 'Turondale', 'NSW', 'AU', 486, ' 2795 Turondale New South Wales'),
5104
+ (4746, '2795', 'Trunkey Creek', 'NSW', 'AU', 486, ' 2795 Trunkey Creek New South Wales'),
5105
+ (4747, '2795', 'Triangle Flat', 'NSW', 'AU', 486, ' 2795 Triangle Flat New South Wales'),
5106
+ (4748, '2795', 'Sofala', 'NSW', 'AU', 486, ' 2795 Sofala New South Wales'),
5107
+ (4749, '2795', 'South Bathurst', 'NSW', 'AU', 486, ' 2795 South Bathurst New South Wales'),
5108
+ (4750, '2795', 'Stewarts Mount', 'NSW', 'AU', 486, ' 2795 Stewarts Mount New South Wales'),
5109
+ (4751, '2795', 'Sunny Corner', 'NSW', 'AU', 486, ' 2795 Sunny Corner New South Wales'),
5110
+ (4752, '2795', 'Tannas Mount', 'NSW', 'AU', 486, ' 2795 Tannas Mount New South Wales'),
5111
+ (4753, '2795', 'Tambaroora', 'NSW', 'AU', 486, ' 2795 Tambaroora New South Wales'),
5112
+ (4754, '2795', 'The Rocks', 'NSW', 'AU', 486, ' 2795 The Rocks New South Wales'),
5113
+ (4755, '2795', 'The Lagoon', 'NSW', 'AU', 486, ' 2795 The Lagoon New South Wales'),
5114
+ (4756, '2795', 'Raglan', 'NSW', 'AU', 486, ' 2795 Raglan New South Wales'),
5115
+ (4757, '2795', 'Robin Hill', 'NSW', 'AU', 486, ' 2795 Robin Hill New South Wales'),
5116
+ (4758, '2795', 'Rock Forest', 'NSW', 'AU', 486, ' 2795 Rock Forest New South Wales'),
5117
+ (4759, '2795', 'Rockley', 'NSW', 'AU', 486, ' 2795 Rockley New South Wales'),
5118
+ (4760, '2795', 'Rockley Mount', 'NSW', 'AU', 486, ' 2795 Rockley Mount New South Wales'),
5119
+ (4761, '2795', 'Perthville', 'NSW', 'AU', 486, ' 2795 Perthville New South Wales'),
5120
+ (4762, '2795', 'Peel', 'NSW', 'AU', 486, ' 2795 Peel New South Wales'),
5121
+ (4763, '2795', 'Orton Park', 'NSW', 'AU', 486, ' 2795 Orton Park New South Wales'),
5122
+ (4764, '2795', 'Paling Yards', 'NSW', 'AU', 486, ' 2795 Paling Yards New South Wales'),
5123
+ (4765, '2795', 'Palmers Oaky', 'NSW', 'AU', 486, ' 2795 Palmers Oaky New South Wales'),
5124
+ (4766, '2795', 'Newbridge', 'NSW', 'AU', 486, ' 2795 Newbridge New South Wales'),
5125
+ (4767, '2795', 'O''connell', 'NSW', 'AU', 486, ' 2795 O''connell New South Wales'),
5126
+ (4768, '2795', 'Napoleon Reef', 'NSW', 'AU', 486, ' 2795 Napoleon Reef New South Wales'),
5127
+ (4769, '2795', 'Wisemans Creek', 'NSW', 'AU', 486, ' 2795 Wisemans Creek New South Wales'),
5128
+ (4770, '2795', 'Windradyne', 'NSW', 'AU', 486, ' 2795 Windradyne New South Wales'),
5129
+ (4771, '2795', 'Wimbledon', 'NSW', 'AU', 486, ' 2795 Wimbledon New South Wales'),
5130
+ (4772, '2795', 'Winburndale', 'NSW', 'AU', 486, ' 2795 Winburndale New South Wales'),
5131
+ (4773, '2795', 'Yetholme', 'NSW', 'AU', 486, ' 2795 Yetholme New South Wales'),
5132
+ (4774, '2795', 'Yarras', 'NSW', 'AU', 486, ' 2795 Yarras New South Wales'),
5133
+ (4775, '2795', 'Brewongle', 'NSW', 'AU', 486, ' 2795 Brewongle New South Wales'),
5134
+ (4776, '2795', 'Bruinbun', 'NSW', 'AU', 486, ' 2795 Bruinbun New South Wales'),
5135
+ (4777, '2795', 'Billywillinga', 'NSW', 'AU', 486, ' 2795 Billywillinga New South Wales'),
5136
+ (4778, '2795', 'Bald Ridge', 'NSW', 'AU', 486, ' 2795 Bald Ridge New South Wales'),
5137
+ (4779, '2795', 'Arkell', 'NSW', 'AU', 486, ' 2795 Arkell New South Wales'),
5138
+ (4780, '2795', 'Arkstone', 'NSW', 'AU', 486, ' 2795 Arkstone New South Wales'),
5139
+ (4781, '2795', 'Ballyroe', 'NSW', 'AU', 486, ' 2795 Ballyroe New South Wales'),
5140
+ (4782, '2795', 'Bathampton', 'NSW', 'AU', 486, ' 2795 Bathampton New South Wales'),
5141
+ (4783, '2795', 'Bathurst', 'NSW', 'AU', 486, ' 2795 Bathurst New South Wales'),
5142
+ (4784, '2795', 'Cow Flat', 'NSW', 'AU', 486, ' 2795 Cow Flat New South Wales'),
5143
+ (4785, '2795', 'Copperhannia', 'NSW', 'AU', 486, ' 2795 Copperhannia New South Wales'),
5144
+ (4786, '2795', 'Crudine', 'NSW', 'AU', 486, ' 2795 Crudine New South Wales'),
5145
+ (4787, '2795', 'Dark Corner', 'NSW', 'AU', 486, ' 2795 Dark Corner New South Wales'),
5146
+ (4788, '2795', 'Dog Rocks', 'NSW', 'AU', 486, ' 2795 Dog Rocks New South Wales'),
5147
+ (4789, '2795', 'Dunkeld', 'NSW', 'AU', 486, ' 2795 Dunkeld New South Wales'),
5148
+ (4790, '2795', 'Curragh', 'NSW', 'AU', 486, ' 2795 Curragh New South Wales'),
5149
+ (4791, '2795', 'Duramana', 'NSW', 'AU', 486, ' 2795 Duramana New South Wales'),
5150
+ (4792, '2795', 'Caloola', 'NSW', 'AU', 486, ' 2795 Caloola New South Wales'),
5151
+ (4793, '2795', 'Burraga', 'NSW', 'AU', 486, ' 2795 Burraga New South Wales'),
5152
+ (4794, '2795', 'Clear Creek', 'NSW', 'AU', 486, ' 2795 Clear Creek New South Wales'),
5153
+ (4795, '2795', 'Charles Sturt University', 'NSW', 'AU', 486, ' 2795 Charles Sturt University New South Wales'),
5154
+ (4796, '2795', 'Charlton', 'NSW', 'AU', 486, ' 2795 Charlton New South Wales'),
5155
+ (4797, '2795', 'Colo', 'NSW', 'AU', 486, ' 2795 Colo New South Wales'),
5156
+ (4798, '2795', 'Abercrombie', 'NSW', 'AU', 486, ' 2795 Abercrombie New South Wales'),
5157
+ (4799, '2795', 'Abercrombie River', 'NSW', 'AU', 486, ' 2795 Abercrombie River New South Wales'),
5158
+ (4800, '2796', 'Bathurst', 'NSW', 'AU', 486, ' 2796 Bathurst New South Wales'),
5159
+ (4801, '2797', 'Lyndhurst', 'NSW', 'AU', 486, ' 2797 Lyndhurst New South Wales'),
5160
+ (4802, '2797', 'Garland', 'NSW', 'AU', 486, ' 2797 Garland New South Wales'),
5161
+ (4803, '2798', 'Forest Reefs', 'NSW', 'AU', 486, ' 2798 Forest Reefs New South Wales'),
5162
+ (4804, '2798', 'Guyong', 'NSW', 'AU', 486, ' 2798 Guyong New South Wales'),
5163
+ (4805, '2798', 'Millthorpe', 'NSW', 'AU', 486, ' 2798 Millthorpe New South Wales'),
5164
+ (4806, '2798', 'Tallwood', 'NSW', 'AU', 486, ' 2798 Tallwood New South Wales'),
5165
+ (4807, '2798', 'Spring Terrace', 'NSW', 'AU', 486, ' 2798 Spring Terrace New South Wales'),
5166
+ (4808, '2799', 'Vittoria', 'NSW', 'AU', 486, ' 2799 Vittoria New South Wales'),
5167
+ (4809, '2799', 'Neville', 'NSW', 'AU', 486, ' 2799 Neville New South Wales'),
5168
+ (4810, '2799', 'Kings Plains', 'NSW', 'AU', 486, ' 2799 Kings Plains New South Wales'),
5169
+ (4811, '2799', 'Fitzgeralds Mount', 'NSW', 'AU', 486, ' 2799 Fitzgeralds Mount New South Wales'),
5170
+ (4812, '2799', 'Barry', 'NSW', 'AU', 486, ' 2799 Barry New South Wales'),
5171
+ (4813, '2799', 'Browns Creek', 'NSW', 'AU', 486, ' 2799 Browns Creek New South Wales'),
5172
+ (4814, '2799', 'Blayney', 'NSW', 'AU', 486, ' 2799 Blayney New South Wales'),
5173
+ (4815, '2800', 'Boree', 'NSW', 'AU', 486, ' 2800 Boree New South Wales'),
5174
+ (4816, '2800', 'Borenore', 'NSW', 'AU', 486, ' 2800 Borenore New South Wales'),
5175
+ (4817, '2800', 'Belgravia', 'NSW', 'AU', 486, ' 2800 Belgravia New South Wales'),
5176
+ (4818, '2800', 'Clergate', 'NSW', 'AU', 486, ' 2800 Clergate New South Wales'),
5177
+ (4819, '2800', 'Clifton Grove', 'NSW', 'AU', 486, ' 2800 Clifton Grove New South Wales'),
5178
+ (4820, '2800', 'Byng', 'NSW', 'AU', 486, ' 2800 Byng New South Wales'),
5179
+ (4821, '2800', 'Cadia', 'NSW', 'AU', 486, ' 2800 Cadia New South Wales'),
5180
+ (4822, '2800', 'Canobolas', 'NSW', 'AU', 486, ' 2800 Canobolas New South Wales'),
5181
+ (4823, '2800', 'Cargo', 'NSW', 'AU', 486, ' 2800 Cargo New South Wales'),
5182
+ (4824, '2800', 'Four Mile Creek', 'NSW', 'AU', 486, ' 2800 Four Mile Creek New South Wales'),
5183
+ (4825, '2800', 'Emu Swamp', 'NSW', 'AU', 486, ' 2800 Emu Swamp New South Wales'),
5184
+ (4826, '2800', 'Kangaroobie', 'NSW', 'AU', 486, ' 2800 Kangaroobie New South Wales'),
5185
+ (4827, '2800', 'Huntley', 'NSW', 'AU', 486, ' 2800 Huntley New South Wales'),
5186
+ (4828, '2800', 'Kerrs Creek', 'NSW', 'AU', 486, ' 2800 Kerrs Creek New South Wales'),
5187
+ (4829, '2800', 'Lewis Ponds', 'NSW', 'AU', 486, ' 2800 Lewis Ponds New South Wales'),
5188
+ (4830, '2800', 'Lidster', 'NSW', 'AU', 486, ' 2800 Lidster New South Wales'),
5189
+ (4831, '2800', 'Lucknow', 'NSW', 'AU', 486, ' 2800 Lucknow New South Wales'),
5190
+ (4832, '2800', 'Lower Lewis Ponds', 'NSW', 'AU', 486, ' 2800 Lower Lewis Ponds New South Wales'),
5191
+ (4833, '2800', 'March', 'NSW', 'AU', 486, ' 2800 March New South Wales'),
5192
+ (4834, '2800', 'Nashdale', 'NSW', 'AU', 486, ' 2800 Nashdale New South Wales'),
5193
+ (4835, '2800', 'Nangar', 'NSW', 'AU', 486, ' 2800 Nangar New South Wales'),
5194
+ (4836, '2800', 'Mullion Creek', 'NSW', 'AU', 486, ' 2800 Mullion Creek New South Wales'),
5195
+ (4837, '2800', 'Ophir', 'NSW', 'AU', 486, ' 2800 Ophir New South Wales'),
5196
+ (4838, '2800', 'Orange', 'NSW', 'AU', 486, ' 2800 Orange New South Wales'),
5197
+ (4839, '2800', 'Orange East', 'NSW', 'AU', 486, ' 2800 Orange East New South Wales'),
5198
+ (4840, '2800', 'Panuara', 'NSW', 'AU', 486, ' 2800 Panuara New South Wales'),
5199
+ (4841, '2800', 'Shadforth', 'NSW', 'AU', 486, ' 2800 Shadforth New South Wales'),
5200
+ (4842, '2800', 'Waldegrave', 'NSW', 'AU', 486, ' 2800 Waldegrave New South Wales'),
5201
+ (4843, '2800', 'Springside', 'NSW', 'AU', 486, ' 2800 Springside New South Wales'),
5202
+ (4844, '2800', 'Spring Creek', 'NSW', 'AU', 486, ' 2800 Spring Creek New South Wales'),
5203
+ (4845, '2800', 'Spring Hill', 'NSW', 'AU', 486, ' 2800 Spring Hill New South Wales'),
5204
+ (4846, '2800', 'Summer Hill Creek', 'NSW', 'AU', 486, ' 2800 Summer Hill Creek New South Wales'),
5205
+ (4847, '2800', 'Windera', 'NSW', 'AU', 486, ' 2800 Windera New South Wales'),
5206
+ (4848, '2803', 'Wirrimah', 'NSW', 'AU', 486, ' 2803 Wirrimah New South Wales'),
5207
+ (4849, '2803', 'Crowther', 'NSW', 'AU', 486, ' 2803 Crowther New South Wales'),
5208
+ (4850, '2803', 'Bendick Murrell', 'NSW', 'AU', 486, ' 2803 Bendick Murrell New South Wales'),
5209
+ (4851, '2804', 'Billimari', 'NSW', 'AU', 486, ' 2804 Billimari New South Wales'),
5210
+ (4852, '2804', 'Canowindra', 'NSW', 'AU', 486, ' 2804 Canowindra New South Wales'),
5211
+ (4853, '2804', 'Nyrang Creek', 'NSW', 'AU', 486, ' 2804 Nyrang Creek New South Wales'),
5212
+ (4854, '2804', 'Moorbel', 'NSW', 'AU', 486, ' 2804 Moorbel New South Wales'),
5213
+ (4855, '2805', 'Gooloogong', 'NSW', 'AU', 486, ' 2805 Gooloogong New South Wales'),
5214
+ (4856, '2806', 'Eugowra', 'NSW', 'AU', 486, ' 2806 Eugowra New South Wales'),
5215
+ (4857, '2807', 'Koorawatha', 'NSW', 'AU', 486, ' 2807 Koorawatha New South Wales'),
5216
+ (4858, '2808', 'Wyangala', 'NSW', 'AU', 486, ' 2808 Wyangala New South Wales'),
5217
+ (4859, '2809', 'Greenethorpe', 'NSW', 'AU', 486, ' 2809 Greenethorpe New South Wales'),
5218
+ (4860, '2810', 'Grenfell', 'NSW', 'AU', 486, ' 2810 Grenfell New South Wales'),
5219
+ (4861, '2810', 'Glenelg', 'NSW', 'AU', 486, ' 2810 Glenelg New South Wales'),
5220
+ (4862, '2810', 'Piney Range', 'NSW', 'AU', 486, ' 2810 Piney Range New South Wales'),
5221
+ (4863, '2810', 'Pinnacle', 'NSW', 'AU', 486, ' 2810 Pinnacle New South Wales'),
5222
+ (4864, '2810', 'Pullabooka', 'NSW', 'AU', 486, ' 2810 Pullabooka New South Wales'),
5223
+ (4865, '2810', 'Warraderry', 'NSW', 'AU', 486, ' 2810 Warraderry New South Wales'),
5224
+ (4866, '2810', 'Caragabal', 'NSW', 'AU', 486, ' 2810 Caragabal New South Wales'),
5225
+ (4867, '2810', 'Bimbi', 'NSW', 'AU', 486, ' 2810 Bimbi New South Wales'),
5226
+ (4868, '2818', 'Geurie', 'NSW', 'AU', 486, ' 2818 Geurie New South Wales'),
5227
+ (4869, '2820', 'Gollan', 'NSW', 'AU', 486, ' 2820 Gollan New South Wales'),
5228
+ (4870, '2820', 'Farnham', 'NSW', 'AU', 486, ' 2820 Farnham New South Wales'),
5229
+ (4871, '2820', 'Lake Burrendong', 'NSW', 'AU', 486, ' 2820 Lake Burrendong New South Wales'),
5230
+ (4872, '2820', 'Medway', 'NSW', 'AU', 486, ' 2820 Medway New South Wales'),
5231
+ (4873, '2820', 'Montefiores', 'NSW', 'AU', 486, ' 2820 Montefiores New South Wales'),
5232
+ (4874, '2820', 'Mookerawa', 'NSW', 'AU', 486, ' 2820 Mookerawa New South Wales'),
5233
+ (4875, '2820', 'Mount Aquila', 'NSW', 'AU', 486, ' 2820 Mount Aquila New South Wales');
5234
+ INSERT INTO {$this->getTable('candf_pcs')} (`entity_id`, `postcode`, `city`, `state`, `country_id`, `region_id`, `fulltext`) VALUES
5235
+ (4876, '2820', 'Mount Arthur', 'NSW', 'AU', 486, ' 2820 Mount Arthur New South Wales'),
5236
+ (4877, '2820', 'Maryvale', 'NSW', 'AU', 486, ' 2820 Maryvale New South Wales'),
5237
+ (4878, '2820', 'Wellington', 'NSW', 'AU', 486, ' 2820 Wellington New South Wales'),
5238
+ (4879, '2820', 'Walmer', 'NSW', 'AU', 486, ' 2820 Walmer New South Wales'),
5239
+ (4880, '2820', 'Stuart Town', 'NSW', 'AU', 486, ' 2820 Stuart Town New South Wales'),
5240
+ (4881, '2820', 'Spicers Creek', 'NSW', 'AU', 486, ' 2820 Spicers Creek New South Wales'),
5241
+ (4882, '2820', 'Suntop', 'NSW', 'AU', 486, ' 2820 Suntop New South Wales'),
5242
+ (4883, '2820', 'Mumbil', 'NSW', 'AU', 486, ' 2820 Mumbil New South Wales'),
5243
+ (4884, '2820', 'Nanima', 'NSW', 'AU', 486, ' 2820 Nanima New South Wales'),
5244
+ (4885, '2820', 'Neurea', 'NSW', 'AU', 486, ' 2820 Neurea New South Wales'),
5245
+ (4886, '2820', 'Wuuluman', 'NSW', 'AU', 486, ' 2820 Wuuluman New South Wales'),
5246
+ (4887, '2820', 'Yarragal', 'NSW', 'AU', 486, ' 2820 Yarragal New South Wales'),
5247
+ (4888, '2820', 'Arthurville', 'NSW', 'AU', 486, ' 2820 Arthurville New South Wales'),
5248
+ (4889, '2820', 'Bakers Swamp', 'NSW', 'AU', 486, ' 2820 Bakers Swamp New South Wales'),
5249
+ (4890, '2820', 'Apsley', 'NSW', 'AU', 486, ' 2820 Apsley New South Wales'),
5250
+ (4891, '2820', 'Bodangora', 'NSW', 'AU', 486, ' 2820 Bodangora New South Wales'),
5251
+ (4892, '2820', 'Comobella', 'NSW', 'AU', 486, ' 2820 Comobella New South Wales'),
5252
+ (4893, '2820', 'Dripstone', 'NSW', 'AU', 486, ' 2820 Dripstone New South Wales'),
5253
+ (4894, '2820', 'Curra Creek', 'NSW', 'AU', 486, ' 2820 Curra Creek New South Wales'),
5254
+ (4895, '2821', 'Burroway', 'NSW', 'AU', 486, ' 2821 Burroway New South Wales'),
5255
+ (4896, '2821', 'Narromine', 'NSW', 'AU', 486, ' 2821 Narromine New South Wales'),
5256
+ (4897, '2823', 'Trangie', 'NSW', 'AU', 486, ' 2823 Trangie New South Wales'),
5257
+ (4898, '2823', 'Gin Gin', 'NSW', 'AU', 486, ' 2823 Gin Gin New South Wales'),
5258
+ (4899, '2823', 'Cathundral', 'NSW', 'AU', 486, ' 2823 Cathundral New South Wales'),
5259
+ (4900, '2823', 'Dandaloo', 'NSW', 'AU', 486, ' 2823 Dandaloo New South Wales'),
5260
+ (4901, '2823', 'Bundemar', 'NSW', 'AU', 486, ' 2823 Bundemar New South Wales'),
5261
+ (4902, '2824', 'Beemunnel', 'NSW', 'AU', 486, ' 2824 Beemunnel New South Wales'),
5262
+ (4903, '2824', 'Eenaweena', 'NSW', 'AU', 486, ' 2824 Eenaweena New South Wales'),
5263
+ (4904, '2824', 'Mount Foster', 'NSW', 'AU', 486, ' 2824 Mount Foster New South Wales'),
5264
+ (4905, '2824', 'Mount Harris', 'NSW', 'AU', 486, ' 2824 Mount Harris New South Wales'),
5265
+ (4906, '2824', 'Marthaguy', 'NSW', 'AU', 486, ' 2824 Marthaguy New South Wales'),
5266
+ (4907, '2824', 'Warren', 'NSW', 'AU', 486, ' 2824 Warren New South Wales'),
5267
+ (4908, '2824', 'Tenandra', 'NSW', 'AU', 486, ' 2824 Tenandra New South Wales'),
5268
+ (4909, '2824', 'Snakes Plain', 'NSW', 'AU', 486, ' 2824 Snakes Plain New South Wales'),
5269
+ (4910, '2824', 'Mumblebone Plain', 'NSW', 'AU', 486, ' 2824 Mumblebone Plain New South Wales'),
5270
+ (4911, '2824', 'Pigeonbah', 'NSW', 'AU', 486, ' 2824 Pigeonbah New South Wales'),
5271
+ (4912, '2824', 'Oxley', 'NSW', 'AU', 486, ' 2824 Oxley New South Wales'),
5272
+ (4913, '2824', 'Red Hill', 'NSW', 'AU', 486, ' 2824 Red Hill New South Wales'),
5273
+ (4914, '2824', 'Ravenswood', 'NSW', 'AU', 486, ' 2824 Ravenswood New South Wales'),
5274
+ (4915, '2825', 'Pangee', 'NSW', 'AU', 486, ' 2825 Pangee New South Wales'),
5275
+ (4916, '2825', 'Mullengudgery', 'NSW', 'AU', 486, ' 2825 Mullengudgery New South Wales'),
5276
+ (4917, '2825', 'Murrawombie', 'NSW', 'AU', 486, ' 2825 Murrawombie New South Wales'),
5277
+ (4918, '2825', 'Nyngan', 'NSW', 'AU', 486, ' 2825 Nyngan New South Wales'),
5278
+ (4919, '2825', 'Mulla', 'NSW', 'AU', 486, ' 2825 Mulla New South Wales'),
5279
+ (4920, '2825', 'Miandetta', 'NSW', 'AU', 486, ' 2825 Miandetta New South Wales'),
5280
+ (4921, '2825', 'Five Ways', 'NSW', 'AU', 486, ' 2825 Five Ways New South Wales'),
5281
+ (4922, '2825', 'Honeybugle', 'NSW', 'AU', 486, ' 2825 Honeybugle New South Wales'),
5282
+ (4923, '2825', 'Babinda', 'NSW', 'AU', 486, ' 2825 Babinda New South Wales'),
5283
+ (4924, '2825', 'Buddabadah', 'NSW', 'AU', 486, ' 2825 Buddabadah New South Wales'),
5284
+ (4925, '2825', 'Bogan', 'NSW', 'AU', 486, ' 2825 Bogan New South Wales'),
5285
+ (4926, '2825', 'Bobadah', 'NSW', 'AU', 486, ' 2825 Bobadah New South Wales'),
5286
+ (4927, '2825', 'Canonba', 'NSW', 'AU', 486, ' 2825 Canonba New South Wales'),
5287
+ (4928, '2827', 'Collie', 'NSW', 'AU', 486, ' 2827 Collie New South Wales'),
5288
+ (4929, '2827', 'Curban', 'NSW', 'AU', 486, ' 2827 Curban New South Wales'),
5289
+ (4930, '2827', 'Breelong', 'NSW', 'AU', 486, ' 2827 Breelong New South Wales'),
5290
+ (4931, '2827', 'Bearbong', 'NSW', 'AU', 486, ' 2827 Bearbong New South Wales'),
5291
+ (4932, '2827', 'Biddon', 'NSW', 'AU', 486, ' 2827 Biddon New South Wales'),
5292
+ (4933, '2827', 'Gilgandra', 'NSW', 'AU', 486, ' 2827 Gilgandra New South Wales'),
5293
+ (4934, '2827', 'Merrigal', 'NSW', 'AU', 486, ' 2827 Merrigal New South Wales'),
5294
+ (4935, '2828', 'Mount Tenandra', 'NSW', 'AU', 486, ' 2828 Mount Tenandra New South Wales'),
5295
+ (4936, '2828', 'Gulargambone', 'NSW', 'AU', 486, ' 2828 Gulargambone New South Wales'),
5296
+ (4937, '2828', 'Quanda', 'NSW', 'AU', 486, ' 2828 Quanda New South Wales'),
5297
+ (4938, '2828', 'Tonderburine', 'NSW', 'AU', 486, ' 2828 Tonderburine New South Wales'),
5298
+ (4939, '2828', 'Warrumbungle', 'NSW', 'AU', 486, ' 2828 Warrumbungle New South Wales'),
5299
+ (4940, '2828', 'Black Hollow', 'NSW', 'AU', 486, ' 2828 Black Hollow New South Wales'),
5300
+ (4941, '2828', 'Bourbah', 'NSW', 'AU', 486, ' 2828 Bourbah New South Wales'),
5301
+ (4942, '2829', 'Billeroy', 'NSW', 'AU', 486, ' 2829 Billeroy New South Wales'),
5302
+ (4943, '2829', 'Coonamble', 'NSW', 'AU', 486, ' 2829 Coonamble New South Wales'),
5303
+ (4944, '2829', 'Combara', 'NSW', 'AU', 486, ' 2829 Combara New South Wales'),
5304
+ (4945, '2829', 'Conimbia', 'NSW', 'AU', 486, ' 2829 Conimbia New South Wales'),
5305
+ (4946, '2829', 'Tooloon', 'NSW', 'AU', 486, ' 2829 Tooloon New South Wales'),
5306
+ (4947, '2829', 'Urawilkie', 'NSW', 'AU', 486, ' 2829 Urawilkie New South Wales'),
5307
+ (4948, '2829', 'Teridgerie', 'NSW', 'AU', 486, ' 2829 Teridgerie New South Wales'),
5308
+ (4949, '2829', 'Pine Grove', 'NSW', 'AU', 486, ' 2829 Pine Grove New South Wales'),
5309
+ (4950, '2829', 'Nebea', 'NSW', 'AU', 486, ' 2829 Nebea New South Wales'),
5310
+ (4951, '2829', 'Gungalman', 'NSW', 'AU', 486, ' 2829 Gungalman New South Wales'),
5311
+ (4952, '2829', 'Gilgooma', 'NSW', 'AU', 486, ' 2829 Gilgooma New South Wales'),
5312
+ (4953, '2829', 'Magometon', 'NSW', 'AU', 486, ' 2829 Magometon New South Wales'),
5313
+ (4954, '2829', 'Wingadee', 'NSW', 'AU', 486, ' 2829 Wingadee New South Wales'),
5314
+ (4955, '2830', 'Yarrabar', 'NSW', 'AU', 486, ' 2830 Yarrabar New South Wales'),
5315
+ (4956, '2830', 'Kickabil', 'NSW', 'AU', 486, ' 2830 Kickabil New South Wales'),
5316
+ (4957, '2830', 'Mountain Creek', 'NSW', 'AU', 486, ' 2830 Mountain Creek New South Wales'),
5317
+ (4958, '2830', 'Minore', 'NSW', 'AU', 486, ' 2830 Minore New South Wales'),
5318
+ (4959, '2830', 'Mogriguy', 'NSW', 'AU', 486, ' 2830 Mogriguy New South Wales'),
5319
+ (4960, '2830', 'Glengerra', 'NSW', 'AU', 486, ' 2830 Glengerra New South Wales'),
5320
+ (4961, '2830', 'Eulomogo', 'NSW', 'AU', 486, ' 2830 Eulomogo New South Wales'),
5321
+ (4962, '2830', 'Eschol', 'NSW', 'AU', 486, ' 2830 Eschol New South Wales'),
5322
+ (4963, '2830', 'Goonoo Forest', 'NSW', 'AU', 486, ' 2830 Goonoo Forest New South Wales'),
5323
+ (4964, '2830', 'Jones Creek', 'NSW', 'AU', 486, ' 2830 Jones Creek New South Wales'),
5324
+ (4965, '2830', 'Muronbung', 'NSW', 'AU', 486, ' 2830 Muronbung New South Wales'),
5325
+ (4966, '2830', 'Murrumbidgerie', 'NSW', 'AU', 486, ' 2830 Murrumbidgerie New South Wales'),
5326
+ (4967, '2830', 'Rawsonville', 'NSW', 'AU', 486, ' 2830 Rawsonville New South Wales'),
5327
+ (4968, '2830', 'Terramungamine', 'NSW', 'AU', 486, ' 2830 Terramungamine New South Wales'),
5328
+ (4969, '2830', 'Toongi', 'NSW', 'AU', 486, ' 2830 Toongi New South Wales'),
5329
+ (4970, '2830', 'Wambangalang', 'NSW', 'AU', 486, ' 2830 Wambangalang New South Wales'),
5330
+ (4971, '2830', 'Butlers Falls', 'NSW', 'AU', 486, ' 2830 Butlers Falls New South Wales'),
5331
+ (4972, '2830', 'Coolbaggie', 'NSW', 'AU', 486, ' 2830 Coolbaggie New South Wales'),
5332
+ (4973, '2830', 'Cumboogle', 'NSW', 'AU', 486, ' 2830 Cumboogle New South Wales'),
5333
+ (4974, '2830', 'Dubbo', 'NSW', 'AU', 486, ' 2830 Dubbo New South Wales'),
5334
+ (4975, '2830', 'Dubbo East', 'NSW', 'AU', 486, ' 2830 Dubbo East New South Wales'),
5335
+ (4976, '2830', 'Dubbo Grove', 'NSW', 'AU', 486, ' 2830 Dubbo Grove New South Wales'),
5336
+ (4977, '2830', 'Dubbo West', 'NSW', 'AU', 486, ' 2830 Dubbo West New South Wales'),
5337
+ (4978, '2830', 'Beni', 'NSW', 'AU', 486, ' 2830 Beni New South Wales'),
5338
+ (4979, '2830', 'Ballimore', 'NSW', 'AU', 486, ' 2830 Ballimore New South Wales'),
5339
+ (4980, '2830', 'Barbigal', 'NSW', 'AU', 486, ' 2830 Barbigal New South Wales'),
5340
+ (4981, '2830', 'Brocklehurst', 'NSW', 'AU', 486, ' 2830 Brocklehurst New South Wales'),
5341
+ (4982, '2830', 'Boothenba', 'NSW', 'AU', 486, ' 2830 Boothenba New South Wales'),
5342
+ (4983, '2830', 'Bunglegumbie', 'NSW', 'AU', 486, ' 2830 Bunglegumbie New South Wales'),
5343
+ (4984, '2830', 'Burrabadine', 'NSW', 'AU', 486, ' 2830 Burrabadine New South Wales'),
5344
+ (4985, '2830', 'Bruah', 'NSW', 'AU', 486, ' 2830 Bruah New South Wales'),
5345
+ (4986, '2831', 'Bullagreen', 'NSW', 'AU', 486, ' 2831 Bullagreen New South Wales'),
5346
+ (4987, '2831', 'Brenda', 'NSW', 'AU', 486, ' 2831 Brenda New South Wales'),
5347
+ (4988, '2831', 'Balladoran', 'NSW', 'AU', 486, ' 2831 Balladoran New South Wales'),
5348
+ (4989, '2831', 'Armatree', 'NSW', 'AU', 486, ' 2831 Armatree New South Wales'),
5349
+ (4990, '2831', 'Coolabah', 'NSW', 'AU', 486, ' 2831 Coolabah New South Wales'),
5350
+ (4991, '2831', 'Byrock', 'NSW', 'AU', 486, ' 2831 Byrock New South Wales'),
5351
+ (4992, '2831', 'Carinda', 'NSW', 'AU', 486, ' 2831 Carinda New South Wales'),
5352
+ (4993, '2831', 'Westella', 'NSW', 'AU', 486, ' 2831 Westella New South Wales'),
5353
+ (4994, '2831', 'Tooraweenah', 'NSW', 'AU', 486, ' 2831 Tooraweenah New South Wales'),
5354
+ (4995, '2831', 'The Marra', 'NSW', 'AU', 486, ' 2831 The Marra New South Wales'),
5355
+ (4996, '2831', 'Terrabella', 'NSW', 'AU', 486, ' 2831 Terrabella New South Wales'),
5356
+ (4997, '2831', 'Quambone', 'NSW', 'AU', 486, ' 2831 Quambone New South Wales'),
5357
+ (4998, '2831', 'Pine Clump', 'NSW', 'AU', 486, ' 2831 Pine Clump New South Wales'),
5358
+ (4999, '2831', 'Ponto', 'NSW', 'AU', 486, ' 2831 Ponto New South Wales'),
5359
+ (5000, '2831', 'Neilrex', 'NSW', 'AU', 486, ' 2831 Neilrex New South Wales'),
5360
+ (5001, '2831', 'Nevertire', 'NSW', 'AU', 486, ' 2831 Nevertire New South Wales'),
5361
+ (5002, '2831', 'Nymagee', 'NSW', 'AU', 486, ' 2831 Nymagee New South Wales'),
5362
+ (5003, '2831', 'Nubingerie', 'NSW', 'AU', 486, ' 2831 Nubingerie New South Wales'),
5363
+ (5004, '2831', 'Hermidale', 'NSW', 'AU', 486, ' 2831 Hermidale New South Wales'),
5364
+ (5005, '2831', 'Eumungerie', 'NSW', 'AU', 486, ' 2831 Eumungerie New South Wales'),
5365
+ (5006, '2831', 'Elong Elong', 'NSW', 'AU', 486, ' 2831 Elong Elong New South Wales'),
5366
+ (5007, '2831', 'Girilambone', 'NSW', 'AU', 486, ' 2831 Girilambone New South Wales'),
5367
+ (5008, '2831', 'Goodooga', 'NSW', 'AU', 486, ' 2831 Goodooga New South Wales'),
5368
+ (5009, '2831', 'Merrygoen', 'NSW', 'AU', 486, ' 2831 Merrygoen New South Wales'),
5369
+ (5010, '2831', 'Macquarie Marshes', 'NSW', 'AU', 486, ' 2831 Macquarie Marshes New South Wales'),
5370
+ (5011, '2831', 'Wongarbon', 'NSW', 'AU', 486, ' 2831 Wongarbon New South Wales'),
5371
+ (5012, '2832', 'Walgett', 'NSW', 'AU', 486, ' 2832 Walgett New South Wales'),
5372
+ (5013, '2832', 'Come By Chance', 'NSW', 'AU', 486, ' 2832 Come By Chance New South Wales'),
5373
+ (5014, '2832', 'Cumborah', 'NSW', 'AU', 486, ' 2832 Cumborah New South Wales'),
5374
+ (5015, '2832', 'Cryon', 'NSW', 'AU', 486, ' 2832 Cryon New South Wales'),
5375
+ (5016, '2833', 'Collarenebri', 'NSW', 'AU', 486, ' 2833 Collarenebri New South Wales'),
5376
+ (5017, '2834', 'Angledool', 'NSW', 'AU', 486, ' 2834 Angledool New South Wales'),
5377
+ (5018, '2834', 'Lightning Ridge', 'NSW', 'AU', 486, ' 2834 Lightning Ridge New South Wales'),
5378
+ (5019, '2835', 'Lerida', 'NSW', 'AU', 486, ' 2835 Lerida New South Wales'),
5379
+ (5020, '2835', 'Kerrigundi', 'NSW', 'AU', 486, ' 2835 Kerrigundi New South Wales'),
5380
+ (5021, '2835', 'Kulwin', 'NSW', 'AU', 486, ' 2835 Kulwin New South Wales'),
5381
+ (5022, '2835', 'Gilgunnia', 'NSW', 'AU', 486, ' 2835 Gilgunnia New South Wales'),
5382
+ (5023, '2835', 'Irymple', 'NSW', 'AU', 486, ' 2835 Irymple New South Wales'),
5383
+ (5024, '2835', 'Tindarey', 'NSW', 'AU', 486, ' 2835 Tindarey New South Wales'),
5384
+ (5025, '2835', 'Noona', 'NSW', 'AU', 486, ' 2835 Noona New South Wales'),
5385
+ (5026, '2835', 'Sandy Creek', 'NSW', 'AU', 486, ' 2835 Sandy Creek New South Wales'),
5386
+ (5027, '2835', 'Bulla', 'NSW', 'AU', 486, ' 2835 Bulla New South Wales'),
5387
+ (5028, '2835', 'Cobar', 'NSW', 'AU', 486, ' 2835 Cobar New South Wales'),
5388
+ (5029, '2835', 'Canbelego', 'NSW', 'AU', 486, ' 2835 Canbelego New South Wales'),
5389
+ (5030, '2835', 'Cubba', 'NSW', 'AU', 486, ' 2835 Cubba New South Wales'),
5390
+ (5031, '2836', 'White Cliffs', 'NSW', 'AU', 486, ' 2836 White Cliffs New South Wales'),
5391
+ (5032, '2836', 'Wilcannia', 'NSW', 'AU', 486, ' 2836 Wilcannia New South Wales'),
5392
+ (5033, '2839', 'Weilmoringle', 'NSW', 'AU', 486, ' 2839 Weilmoringle New South Wales'),
5393
+ (5034, '2839', 'Talawanta', 'NSW', 'AU', 486, ' 2839 Talawanta New South Wales'),
5394
+ (5035, '2839', 'Narran Lake', 'NSW', 'AU', 486, ' 2839 Narran Lake New South Wales'),
5395
+ (5036, '2839', 'Gongolgon', 'NSW', 'AU', 486, ' 2839 Gongolgon New South Wales'),
5396
+ (5037, '2839', 'Collerina', 'NSW', 'AU', 486, ' 2839 Collerina New South Wales'),
5397
+ (5038, '2839', 'Brewarrina', 'NSW', 'AU', 486, ' 2839 Brewarrina New South Wales'),
5398
+ (5039, '2839', 'Bogan', 'NSW', 'AU', 486, ' 2839 Bogan New South Wales'),
5399
+ (5040, '2840', 'Bourke', 'NSW', 'AU', 486, ' 2840 Bourke New South Wales'),
5400
+ (5041, '2840', 'Fords Bridge', 'NSW', 'AU', 486, ' 2840 Fords Bridge New South Wales'),
5401
+ (5042, '2840', 'Enngonia', 'NSW', 'AU', 486, ' 2840 Enngonia New South Wales'),
5402
+ (5043, '2840', 'Gunderbooka', 'NSW', 'AU', 486, ' 2840 Gunderbooka New South Wales'),
5403
+ (5044, '2840', 'Hungerford', 'NSW', 'AU', 486, ' 2840 Hungerford New South Wales'),
5404
+ (5045, '2840', 'Gumbalie', 'NSW', 'AU', 486, ' 2840 Gumbalie New South Wales'),
5405
+ (5046, '2840', 'Louth', 'NSW', 'AU', 486, ' 2840 Louth New South Wales'),
5406
+ (5047, '2840', 'North Bourke', 'NSW', 'AU', 486, ' 2840 North Bourke New South Wales'),
5407
+ (5048, '2840', 'Tilpa', 'NSW', 'AU', 486, ' 2840 Tilpa New South Wales'),
5408
+ (5049, '2840', 'Wanaaring', 'NSW', 'AU', 486, ' 2840 Wanaaring New South Wales'),
5409
+ (5050, '2840', 'Yantabulla', 'NSW', 'AU', 486, ' 2840 Yantabulla New South Wales'),
5410
+ (5051, '2842', 'Yarragrin', 'NSW', 'AU', 486, ' 2842 Yarragrin New South Wales'),
5411
+ (5052, '2842', 'Mendooran', 'NSW', 'AU', 486, ' 2842 Mendooran New South Wales'),
5412
+ (5053, '2842', 'Mollyan', 'NSW', 'AU', 486, ' 2842 Mollyan New South Wales'),
5413
+ (5054, '2843', 'Coolah', 'NSW', 'AU', 486, ' 2843 Coolah New South Wales'),
5414
+ (5055, '2844', 'Dunedoo', 'NSW', 'AU', 486, ' 2844 Dunedoo New South Wales'),
5415
+ (5056, '2844', 'Birriwa', 'NSW', 'AU', 486, ' 2844 Birriwa New South Wales'),
5416
+ (5057, '2844', 'Leadville', 'NSW', 'AU', 486, ' 2844 Leadville New South Wales'),
5417
+ (5058, '2845', 'Wallerawang', 'NSW', 'AU', 486, ' 2845 Wallerawang New South Wales'),
5418
+ (5059, '2846', 'Round Swamp', 'NSW', 'AU', 486, ' 2846 Round Swamp New South Wales'),
5419
+ (5060, '2846', 'Glen Davis', 'NSW', 'AU', 486, ' 2846 Glen Davis New South Wales'),
5420
+ (5061, '2846', 'Capertee', 'NSW', 'AU', 486, ' 2846 Capertee New South Wales'),
5421
+ (5062, '2847', 'Portland', 'NSW', 'AU', 486, ' 2847 Portland New South Wales'),
5422
+ (5063, '2848', 'Kandos', 'NSW', 'AU', 486, ' 2848 Kandos New South Wales'),
5423
+ (5064, '2848', 'Charbon', 'NSW', 'AU', 486, ' 2848 Charbon New South Wales'),
5424
+ (5065, '2848', 'Clandulla', 'NSW', 'AU', 486, ' 2848 Clandulla New South Wales'),
5425
+ (5066, '2848', 'Brogans Creek', 'NSW', 'AU', 486, ' 2848 Brogans Creek New South Wales'),
5426
+ (5067, '2849', 'Breakfast Creek', 'NSW', 'AU', 486, ' 2849 Breakfast Creek New South Wales'),
5427
+ (5068, '2849', 'Bogee', 'NSW', 'AU', 486, ' 2849 Bogee New South Wales'),
5428
+ (5069, '2849', 'Budden', 'NSW', 'AU', 486, ' 2849 Budden New South Wales'),
5429
+ (5070, '2849', 'Carwell', 'NSW', 'AU', 486, ' 2849 Carwell New South Wales'),
5430
+ (5071, '2849', 'Coggan', 'NSW', 'AU', 486, ' 2849 Coggan New South Wales'),
5431
+ (5072, '2849', 'Bylong', 'NSW', 'AU', 486, ' 2849 Bylong New South Wales'),
5432
+ (5073, '2849', 'Camboon', 'NSW', 'AU', 486, ' 2849 Camboon New South Wales'),
5433
+ (5074, '2849', 'Dungeree', 'NSW', 'AU', 486, ' 2849 Dungeree New South Wales'),
5434
+ (5075, '2849', 'Dunville Loop', 'NSW', 'AU', 486, ' 2849 Dunville Loop New South Wales'),
5435
+ (5076, '2849', 'Dabee', 'NSW', 'AU', 486, ' 2849 Dabee New South Wales'),
5436
+ (5077, '2849', 'Coxs Creek', 'NSW', 'AU', 486, ' 2849 Coxs Creek New South Wales'),
5437
+ (5078, '2849', 'Coxs Crown', 'NSW', 'AU', 486, ' 2849 Coxs Crown New South Wales'),
5438
+ (5079, '2849', 'Kelgoola', 'NSW', 'AU', 486, ' 2849 Kelgoola New South Wales'),
5439
+ (5080, '2849', 'Growee', 'NSW', 'AU', 486, ' 2849 Growee New South Wales'),
5440
+ (5081, '2849', 'Glen Alice', 'NSW', 'AU', 486, ' 2849 Glen Alice New South Wales'),
5441
+ (5082, '2849', 'Ginghi', 'NSW', 'AU', 486, ' 2849 Ginghi New South Wales'),
5442
+ (5083, '2849', 'Lee Creek', 'NSW', 'AU', 486, ' 2849 Lee Creek New South Wales'),
5443
+ (5084, '2849', 'Mount Marsden', 'NSW', 'AU', 486, ' 2849 Mount Marsden New South Wales'),
5444
+ (5085, '2849', 'Pinnacle Swamp', 'NSW', 'AU', 486, ' 2849 Pinnacle Swamp New South Wales'),
5445
+ (5086, '2849', 'Rylstone', 'NSW', 'AU', 486, ' 2849 Rylstone New South Wales'),
5446
+ (5087, '2849', 'Pyangle', 'NSW', 'AU', 486, ' 2849 Pyangle New South Wales'),
5447
+ (5088, '2849', 'Reedy Creek', 'NSW', 'AU', 486, ' 2849 Reedy Creek New South Wales'),
5448
+ (5089, '2849', 'Nullo Mountain', 'NSW', 'AU', 486, ' 2849 Nullo Mountain New South Wales'),
5449
+ (5090, '2849', 'Olinda', 'NSW', 'AU', 486, ' 2849 Olinda New South Wales'),
5450
+ (5091, '2849', 'Murrumbo', 'NSW', 'AU', 486, ' 2849 Murrumbo New South Wales'),
5451
+ (5092, '2849', 'Upper Bylong', 'NSW', 'AU', 486, ' 2849 Upper Bylong New South Wales'),
5452
+ (5093, '2849', 'Upper Growee', 'NSW', 'AU', 486, ' 2849 Upper Growee New South Wales'),
5453
+ (5094, '2849', 'Upper Nile', 'NSW', 'AU', 486, ' 2849 Upper Nile New South Wales'),
5454
+ (5095, '2849', 'Wirraba', 'NSW', 'AU', 486, ' 2849 Wirraba New South Wales'),
5455
+ (5096, '2850', 'Wilpinjong', 'NSW', 'AU', 486, ' 2850 Wilpinjong New South Wales'),
5456
+ (5097, '2850', 'Windeyer', 'NSW', 'AU', 486, ' 2850 Windeyer New South Wales'),
5457
+ (5098, '2850', 'Wollar', 'NSW', 'AU', 486, ' 2850 Wollar New South Wales'),
5458
+ (5099, '2850', 'Worlds End', 'NSW', 'AU', 486, ' 2850 Worlds End New South Wales'),
5459
+ (5100, '2850', 'Yarrabin', 'NSW', 'AU', 486, ' 2850 Yarrabin New South Wales'),
5460
+ (5101, '2850', 'Yarrawonga', 'NSW', 'AU', 486, ' 2850 Yarrawonga New South Wales'),
5461
+ (5102, '2850', 'Twelve Mile', 'NSW', 'AU', 486, ' 2850 Twelve Mile New South Wales'),
5462
+ (5103, '2850', 'Ulan', 'NSW', 'AU', 486, ' 2850 Ulan New South Wales'),
5463
+ (5104, '2850', 'Ullamalla', 'NSW', 'AU', 486, ' 2850 Ullamalla New South Wales'),
5464
+ (5105, '2850', 'Totnes Valley', 'NSW', 'AU', 486, ' 2850 Totnes Valley New South Wales'),
5465
+ (5106, '2850', 'Triamble', 'NSW', 'AU', 486, ' 2850 Triamble New South Wales'),
5466
+ (5107, '2850', 'Turill', 'NSW', 'AU', 486, ' 2850 Turill New South Wales'),
5467
+ (5108, '2850', 'Wilbetree', 'NSW', 'AU', 486, ' 2850 Wilbetree New South Wales'),
5468
+ (5109, '2850', 'Tichular', 'NSW', 'AU', 486, ' 2850 Tichular New South Wales'),
5469
+ (5110, '2850', 'Tambaroora', 'NSW', 'AU', 486, ' 2850 Tambaroora New South Wales'),
5470
+ (5111, '2850', 'Stony Creek', 'NSW', 'AU', 486, ' 2850 Stony Creek New South Wales'),
5471
+ (5112, '2850', 'St Fillans', 'NSW', 'AU', 486, ' 2850 St Fillans New South Wales'),
5472
+ (5113, '2850', 'Spring Flat', 'NSW', 'AU', 486, ' 2850 Spring Flat New South Wales'),
5473
+ (5114, '2850', 'Munghorn', 'NSW', 'AU', 486, ' 2850 Munghorn New South Wales'),
5474
+ (5115, '2850', 'Queens Pinch', 'NSW', 'AU', 486, ' 2850 Queens Pinch New South Wales'),
5475
+ (5116, '2850', 'Pyramul', 'NSW', 'AU', 486, ' 2850 Pyramul New South Wales'),
5476
+ (5117, '2850', 'Razorback', 'NSW', 'AU', 486, ' 2850 Razorback New South Wales'),
5477
+ (5118, '2850', 'Running Stream', 'NSW', 'AU', 486, ' 2850 Running Stream New South Wales'),
5478
+ (5119, '2850', 'Riverlea', 'NSW', 'AU', 486, ' 2850 Riverlea New South Wales'),
5479
+ (5120, '2850', 'Sallys Flat', 'NSW', 'AU', 486, ' 2850 Sallys Flat New South Wales'),
5480
+ (5121, '2850', 'Piambong', 'NSW', 'AU', 486, ' 2850 Piambong New South Wales'),
5481
+ (5122, '2850', 'Putta Bucca', 'NSW', 'AU', 486, ' 2850 Putta Bucca New South Wales'),
5482
+ (5123, '2850', 'Mullamuddy', 'NSW', 'AU', 486, ' 2850 Mullamuddy New South Wales'),
5483
+ (5124, '2850', 'Mudgee', 'NSW', 'AU', 486, ' 2850 Mudgee New South Wales'),
5484
+ (5125, '2850', 'Mount Vincent', 'NSW', 'AU', 486, ' 2850 Mount Vincent New South Wales'),
5485
+ (5126, '2850', 'Mount Knowles', 'NSW', 'AU', 486, ' 2850 Mount Knowles New South Wales'),
5486
+ (5127, '2850', 'Mount Frome', 'NSW', 'AU', 486, ' 2850 Mount Frome New South Wales'),
5487
+ (5128, '2850', 'Moolarben', 'NSW', 'AU', 486, ' 2850 Moolarben New South Wales'),
5488
+ (5129, '2850', 'Mogo', 'NSW', 'AU', 486, ' 2850 Mogo New South Wales'),
5489
+ (5130, '2850', 'Monivae', 'NSW', 'AU', 486, ' 2850 Monivae New South Wales'),
5490
+ (5131, '2850', 'Meroo', 'NSW', 'AU', 486, ' 2850 Meroo New South Wales'),
5491
+ (5132, '2850', 'Milroy', 'NSW', 'AU', 486, ' 2850 Milroy New South Wales'),
5492
+ (5133, '2850', 'Linburn', 'NSW', 'AU', 486, ' 2850 Linburn New South Wales'),
5493
+ (5134, '2850', 'Lue', 'NSW', 'AU', 486, ' 2850 Lue New South Wales'),
5494
+ (5135, '2850', 'Maitland Bar', 'NSW', 'AU', 486, ' 2850 Maitland Bar New South Wales'),
5495
+ (5136, '2850', 'Menah', 'NSW', 'AU', 486, ' 2850 Menah New South Wales'),
5496
+ (5137, '2850', 'Frog Rock', 'NSW', 'AU', 486, ' 2850 Frog Rock New South Wales'),
5497
+ (5138, '2850', 'Galambine', 'NSW', 'AU', 486, ' 2850 Galambine New South Wales'),
5498
+ (5139, '2850', 'Glen Ayr', 'NSW', 'AU', 486, ' 2850 Glen Ayr New South Wales'),
5499
+ (5140, '2850', 'Grattai', 'NSW', 'AU', 486, ' 2850 Grattai New South Wales'),
5500
+ (5141, '2850', 'Erudgere', 'NSW', 'AU', 486, ' 2850 Erudgere New South Wales'),
5501
+ (5142, '2850', 'Eurunderee', 'NSW', 'AU', 486, ' 2850 Eurunderee New South Wales'),
5502
+ (5143, '2850', 'Green Gully', 'NSW', 'AU', 486, ' 2850 Green Gully New South Wales'),
5503
+ (5144, '2850', 'Hill End', 'NSW', 'AU', 486, ' 2850 Hill End New South Wales'),
5504
+ (5145, '2850', 'Home Rule', 'NSW', 'AU', 486, ' 2850 Home Rule New South Wales'),
5505
+ (5146, '2850', 'Hargraves', 'NSW', 'AU', 486, ' 2850 Hargraves New South Wales'),
5506
+ (5147, '2850', 'Havilah', 'NSW', 'AU', 486, ' 2850 Havilah New South Wales'),
5507
+ (5148, '2850', 'Hayes Gap', 'NSW', 'AU', 486, ' 2850 Hayes Gap New South Wales'),
5508
+ (5149, '2850', 'Kains Flat', 'NSW', 'AU', 486, ' 2850 Kains Flat New South Wales'),
5509
+ (5150, '2850', 'Ilford', 'NSW', 'AU', 486, ' 2850 Ilford New South Wales'),
5510
+ (5151, '2850', 'Cross Roads', 'NSW', 'AU', 486, ' 2850 Cross Roads New South Wales'),
5511
+ (5152, '2850', 'Cooyal', 'NSW', 'AU', 486, ' 2850 Cooyal New South Wales'),
5512
+ (5153, '2850', 'Cullenbone', 'NSW', 'AU', 486, ' 2850 Cullenbone New South Wales'),
5513
+ (5154, '2850', 'Cudgegong', 'NSW', 'AU', 486, ' 2850 Cudgegong New South Wales'),
5514
+ (5155, '2850', 'Cumbo', 'NSW', 'AU', 486, ' 2850 Cumbo New South Wales'),
5515
+ (5156, '2850', 'Canadian Lead', 'NSW', 'AU', 486, ' 2850 Canadian Lead New South Wales'),
5516
+ (5157, '2850', 'Caerleon', 'NSW', 'AU', 486, ' 2850 Caerleon New South Wales'),
5517
+ (5158, '2850', 'Burrundulla', 'NSW', 'AU', 486, ' 2850 Burrundulla New South Wales'),
5518
+ (5159, '2850', 'Carcalgong', 'NSW', 'AU', 486, ' 2850 Carcalgong New South Wales'),
5519
+ (5160, '2850', 'Collingwood', 'NSW', 'AU', 486, ' 2850 Collingwood New South Wales'),
5520
+ (5161, '2850', 'Cooks Gap', 'NSW', 'AU', 486, ' 2850 Cooks Gap New South Wales'),
5521
+ (5162, '2850', 'Budgee Budgee', 'NSW', 'AU', 486, ' 2850 Budgee Budgee New South Wales'),
5522
+ (5163, '2850', 'Buckaroo', 'NSW', 'AU', 486, ' 2850 Buckaroo New South Wales'),
5523
+ (5164, '2850', 'Bombira', 'NSW', 'AU', 486, ' 2850 Bombira New South Wales'),
5524
+ (5165, '2850', 'Bocoble', 'NSW', 'AU', 486, ' 2850 Bocoble New South Wales'),
5525
+ (5166, '2850', 'Botobolar', 'NSW', 'AU', 486, ' 2850 Botobolar New South Wales'),
5526
+ (5167, '2850', 'Ben Buckley', 'NSW', 'AU', 486, ' 2850 Ben Buckley New South Wales'),
5527
+ (5168, '2850', 'Apple Tree Flat', 'NSW', 'AU', 486, ' 2850 Apple Tree Flat New South Wales'),
5528
+ (5169, '2850', 'Avisford', 'NSW', 'AU', 486, ' 2850 Avisford New South Wales'),
5529
+ (5170, '2850', 'Bara', 'NSW', 'AU', 486, ' 2850 Bara New South Wales'),
5530
+ (5171, '2850', 'Barigan', 'NSW', 'AU', 486, ' 2850 Barigan New South Wales'),
5531
+ (5172, '2850', 'Aarons Pass', 'NSW', 'AU', 486, ' 2850 Aarons Pass New South Wales'),
5532
+ (5173, '2852', 'Barneys Reef', 'NSW', 'AU', 486, ' 2852 Barneys Reef New South Wales'),
5533
+ (5174, '2852', 'Biraganbil', 'NSW', 'AU', 486, ' 2852 Biraganbil New South Wales'),
5534
+ (5175, '2852', 'Beryl', 'NSW', 'AU', 486, ' 2852 Beryl New South Wales'),
5535
+ (5176, '2852', 'Bungaba', 'NSW', 'AU', 486, ' 2852 Bungaba New South Wales'),
5536
+ (5177, '2852', 'Cumbandry', 'NSW', 'AU', 486, ' 2852 Cumbandry New South Wales'),
5537
+ (5178, '2852', 'Cope', 'NSW', 'AU', 486, ' 2852 Cope New South Wales'),
5538
+ (5179, '2852', 'Gulgong', 'NSW', 'AU', 486, ' 2852 Gulgong New South Wales'),
5539
+ (5180, '2852', 'Goolma', 'NSW', 'AU', 486, ' 2852 Goolma New South Wales'),
5540
+ (5181, '2852', 'Mebul', 'NSW', 'AU', 486, ' 2852 Mebul New South Wales'),
5541
+ (5182, '2852', 'Merotherie', 'NSW', 'AU', 486, ' 2852 Merotherie New South Wales'),
5542
+ (5183, '2852', 'Stubbo', 'NSW', 'AU', 486, ' 2852 Stubbo New South Wales'),
5543
+ (5184, '2852', 'Tallawang', 'NSW', 'AU', 486, ' 2852 Tallawang New South Wales'),
5544
+ (5185, '2864', 'Toogong', 'NSW', 'AU', 486, ' 2864 Toogong New South Wales'),
5545
+ (5186, '2864', 'Murga', 'NSW', 'AU', 486, ' 2864 Murga New South Wales'),
5546
+ (5187, '2864', 'Cudal', 'NSW', 'AU', 486, ' 2864 Cudal New South Wales'),
5547
+ (5188, '2864', 'Bowan Park', 'NSW', 'AU', 486, ' 2864 Bowan Park New South Wales'),
5548
+ (5189, '2865', 'Bocobra', 'NSW', 'AU', 486, ' 2865 Bocobra New South Wales'),
5549
+ (5190, '2865', 'Manildra', 'NSW', 'AU', 486, ' 2865 Manildra New South Wales'),
5550
+ (5191, '2865', 'Gumble', 'NSW', 'AU', 486, ' 2865 Gumble New South Wales'),
5551
+ (5192, '2866', 'Garra', 'NSW', 'AU', 486, ' 2866 Garra New South Wales'),
5552
+ (5193, '2866', 'Euchareena', 'NSW', 'AU', 486, ' 2866 Euchareena New South Wales'),
5553
+ (5194, '2866', 'Larras Lee', 'NSW', 'AU', 486, ' 2866 Larras Lee New South Wales'),
5554
+ (5195, '2866', 'Molong', 'NSW', 'AU', 486, ' 2866 Molong New South Wales'),
5555
+ (5196, '2866', 'Boomey', 'NSW', 'AU', 486, ' 2866 Boomey New South Wales'),
5556
+ (5197, '2866', 'Amaroo', 'NSW', 'AU', 486, ' 2866 Amaroo New South Wales'),
5557
+ (5198, '2866', 'Cundumbul', 'NSW', 'AU', 486, ' 2866 Cundumbul New South Wales'),
5558
+ (5199, '2867', 'Cumnock', 'NSW', 'AU', 486, ' 2867 Cumnock New South Wales'),
5559
+ (5200, '2867', 'Baldry', 'NSW', 'AU', 486, ' 2867 Baldry New South Wales'),
5560
+ (5201, '2867', 'Loombah', 'NSW', 'AU', 486, ' 2867 Loombah New South Wales'),
5561
+ (5202, '2867', 'Eurimbla', 'NSW', 'AU', 486, ' 2867 Eurimbla New South Wales'),
5562
+ (5203, '2867', 'Yullundry', 'NSW', 'AU', 486, ' 2867 Yullundry New South Wales'),
5563
+ (5204, '2868', 'Yeoval', 'NSW', 'AU', 486, ' 2868 Yeoval New South Wales'),
5564
+ (5205, '2868', 'Little River', 'NSW', 'AU', 486, ' 2868 Little River New South Wales'),
5565
+ (5206, '2868', 'Obley', 'NSW', 'AU', 486, ' 2868 Obley New South Wales'),
5566
+ (5207, '2868', 'North Yeoval', 'NSW', 'AU', 486, ' 2868 North Yeoval New South Wales'),
5567
+ (5208, '2868', 'Upper Obley', 'NSW', 'AU', 486, ' 2868 Upper Obley New South Wales'),
5568
+ (5209, '2868', 'Bournewood', 'NSW', 'AU', 486, ' 2868 Bournewood New South Wales'),
5569
+ (5210, '2869', 'Trewilga', 'NSW', 'AU', 486, ' 2869 Trewilga New South Wales'),
5570
+ (5211, '2869', 'Tomingley', 'NSW', 'AU', 486, ' 2869 Tomingley New South Wales'),
5571
+ (5212, '2869', 'Peak Hill', 'NSW', 'AU', 486, ' 2869 Peak Hill New South Wales'),
5572
+ (5213, '2870', 'Parkes', 'NSW', 'AU', 486, ' 2870 Parkes New South Wales'),
5573
+ (5214, '2870', 'Tichborne', 'NSW', 'AU', 486, ' 2870 Tichborne New South Wales'),
5574
+ (5215, '2870', 'Mandagery', 'NSW', 'AU', 486, ' 2870 Mandagery New South Wales'),
5575
+ (5216, '2870', 'Goonumbla', 'NSW', 'AU', 486, ' 2870 Goonumbla New South Wales'),
5576
+ (5217, '2870', 'Bumberry', 'NSW', 'AU', 486, ' 2870 Bumberry New South Wales'),
5577
+ (5218, '2870', 'Alectown', 'NSW', 'AU', 486, ' 2870 Alectown New South Wales'),
5578
+ (5219, '2870', 'Cooks Myalls', 'NSW', 'AU', 486, ' 2870 Cooks Myalls New South Wales'),
5579
+ (5220, '2870', 'Cookamidgera', 'NSW', 'AU', 486, ' 2870 Cookamidgera New South Wales'),
5580
+ (5221, '2871', 'Carrawabbity', 'NSW', 'AU', 486, ' 2871 Carrawabbity New South Wales'),
5581
+ (5222, '2871', 'Calarie', 'NSW', 'AU', 486, ' 2871 Calarie New South Wales'),
5582
+ (5223, '2871', 'Cumbijowa', 'NSW', 'AU', 486, ' 2871 Cumbijowa New South Wales'),
5583
+ (5224, '2871', 'Corinella', 'NSW', 'AU', 486, ' 2871 Corinella New South Wales'),
5584
+ (5225, '2871', 'Daroobalgie', 'NSW', 'AU', 486, ' 2871 Daroobalgie New South Wales'),
5585
+ (5226, '2871', 'Bandon', 'NSW', 'AU', 486, ' 2871 Bandon New South Wales'),
5586
+ (5227, '2871', 'Bedgerebong', 'NSW', 'AU', 486, ' 2871 Bedgerebong New South Wales'),
5587
+ (5228, '2871', 'Bundaburrah', 'NSW', 'AU', 486, ' 2871 Bundaburrah New South Wales'),
5588
+ (5229, '2871', 'Gunning Gap', 'NSW', 'AU', 486, ' 2871 Gunning Gap New South Wales'),
5589
+ (5230, '2871', 'Jemalong', 'NSW', 'AU', 486, ' 2871 Jemalong New South Wales'),
5590
+ (5231, '2871', 'Fairholme', 'NSW', 'AU', 486, ' 2871 Fairholme New South Wales'),
5591
+ (5232, '2871', 'Forbes', 'NSW', 'AU', 486, ' 2871 Forbes New South Wales'),
5592
+ (5233, '2871', 'Garema', 'NSW', 'AU', 486, ' 2871 Garema New South Wales'),
5593
+ (5234, '2871', 'Grawlin', 'NSW', 'AU', 486, ' 2871 Grawlin New South Wales'),
5594
+ (5235, '2871', 'Weelong', 'NSW', 'AU', 486, ' 2871 Weelong New South Wales'),
5595
+ (5236, '2871', 'Warroo', 'NSW', 'AU', 486, ' 2871 Warroo New South Wales'),
5596
+ (5237, '2871', 'Ooma', 'NSW', 'AU', 486, ' 2871 Ooma New South Wales'),
5597
+ (5238, '2871', 'Mulyandry', 'NSW', 'AU', 486, ' 2871 Mulyandry New South Wales'),
5598
+ (5239, '2871', 'Yarragong', 'NSW', 'AU', 486, ' 2871 Yarragong New South Wales'),
5599
+ (5240, '2871', 'Wirrinya', 'NSW', 'AU', 486, ' 2871 Wirrinya New South Wales'),
5600
+ (5241, '2873', 'Tottenham', 'NSW', 'AU', 486, ' 2873 Tottenham New South Wales'),
5601
+ (5242, '2873', 'Miamley', 'NSW', 'AU', 486, ' 2873 Miamley New South Wales'),
5602
+ (5243, '2873', 'Albert', 'NSW', 'AU', 486, ' 2873 Albert New South Wales'),
5603
+ (5244, '2874', 'Tullamore', 'NSW', 'AU', 486, ' 2874 Tullamore New South Wales'),
5604
+ (5245, '2875', 'Trundle', 'NSW', 'AU', 486, ' 2875 Trundle New South Wales'),
5605
+ (5246, '2875', 'Ootha', 'NSW', 'AU', 486, ' 2875 Ootha New South Wales'),
5606
+ (5247, '2875', 'Fifield', 'NSW', 'AU', 486, ' 2875 Fifield New South Wales'),
5607
+ (5248, '2875', 'Yarrabandai', 'NSW', 'AU', 486, ' 2875 Yarrabandai New South Wales'),
5608
+ (5249, '2875', 'Bruie Plains', 'NSW', 'AU', 486, ' 2875 Bruie Plains New South Wales'),
5609
+ (5250, '2876', 'Bogan Gate', 'NSW', 'AU', 486, ' 2876 Bogan Gate New South Wales'),
5610
+ (5251, '2876', 'Gunningbland', 'NSW', 'AU', 486, ' 2876 Gunningbland New South Wales'),
5611
+ (5252, '2876', 'Nelungaloo', 'NSW', 'AU', 486, ' 2876 Nelungaloo New South Wales'),
5612
+ (5253, '2877', 'Euabalong', 'NSW', 'AU', 486, ' 2877 Euabalong New South Wales'),
5613
+ (5254, '2877', 'Euabalong West', 'NSW', 'AU', 486, ' 2877 Euabalong West New South Wales'),
5614
+ (5255, '2877', 'Eremerang', 'NSW', 'AU', 486, ' 2877 Eremerang New South Wales'),
5615
+ (5256, '2877', 'Mount Hope', 'NSW', 'AU', 486, ' 2877 Mount Hope New South Wales'),
5616
+ (5257, '2877', 'Mulguthrie', 'NSW', 'AU', 486, ' 2877 Mulguthrie New South Wales'),
5617
+ (5258, '2877', 'Kiacatoo', 'NSW', 'AU', 486, ' 2877 Kiacatoo New South Wales'),
5618
+ (5259, '2877', 'Boona Mount', 'NSW', 'AU', 486, ' 2877 Boona Mount New South Wales'),
5619
+ (5260, '2877', 'Derriwong', 'NSW', 'AU', 486, ' 2877 Derriwong New South Wales'),
5620
+ (5261, '2877', 'Condobolin', 'NSW', 'AU', 486, ' 2877 Condobolin New South Wales'),
5621
+ (5262, '2878', 'Mossgiel', 'NSW', 'AU', 486, ' 2878 Mossgiel New South Wales'),
5622
+ (5263, '2878', 'Ivanhoe', 'NSW', 'AU', 486, ' 2878 Ivanhoe New South Wales'),
5623
+ (5264, '2879', 'Menindee', 'NSW', 'AU', 486, ' 2879 Menindee New South Wales'),
5624
+ (5265, '2879', 'Sunset Strip', 'NSW', 'AU', 486, ' 2879 Sunset Strip New South Wales'),
5625
+ (5266, '2880', 'South Broken Hill', 'NSW', 'AU', 486, ' 2880 South Broken Hill New South Wales'),
5626
+ (5267, '2880', 'Tibooburra', 'NSW', 'AU', 486, ' 2880 Tibooburra New South Wales'),
5627
+ (5268, '2880', 'Mutawintji', 'NSW', 'AU', 486, ' 2880 Mutawintji New South Wales'),
5628
+ (5269, '2880', 'Packsaddle', 'NSW', 'AU', 486, ' 2880 Packsaddle New South Wales'),
5629
+ (5270, '2880', 'Silverton', 'NSW', 'AU', 486, ' 2880 Silverton New South Wales'),
5630
+ (5271, '2880', 'Milparinka', 'NSW', 'AU', 486, ' 2880 Milparinka New South Wales'),
5631
+ (5272, '2880', 'Little Topar', 'NSW', 'AU', 486, ' 2880 Little Topar New South Wales'),
5632
+ (5273, '2880', 'Fowlers Gap', 'NSW', 'AU', 486, ' 2880 Fowlers Gap New South Wales'),
5633
+ (5274, '2880', 'Broken Hill', 'NSW', 'AU', 486, ' 2880 Broken Hill New South Wales'),
5634
+ (5275, '2880', 'Broken Hill North', 'NSW', 'AU', 486, ' 2880 Broken Hill North New South Wales'),
5635
+ (5276, '2880', 'Broken Hill West', 'NSW', 'AU', 486, ' 2880 Broken Hill West New South Wales'),
5636
+ (5277, '2880', 'Broughams Gate', 'NSW', 'AU', 486, ' 2880 Broughams Gate New South Wales'),
5637
+ (5278, '2891', 'Sydney Gateway Facility', 'NSW', 'AU', 486, ' 2891 Sydney Gateway Facility New South Wales'),
5638
+ (5279, '2898', 'Lord Howe Island', 'NSW', 'AU', 486, ' 2898 Lord Howe Island New South Wales'),
5639
+ (5280, '2899', 'Norfolk Island', 'NSW', 'AU', 486, ' 2899 Norfolk Island New South Wales'),
5640
+ (5281, '2900', 'Tuggeranong', 'ACT', 'AU', 485, ' 2900 Tuggeranong Australian Capital Territory'),
5641
+ (5282, '2900', 'Greenway', 'ACT', 'AU', 485, ' 2900 Greenway Australian Capital Territory'),
5642
+ (5283, '2901', 'Tuggeranong', 'ACT', 'AU', 485, ' 2901 Tuggeranong Australian Capital Territory'),
5643
+ (5284, '2902', 'Kambah', 'ACT', 'AU', 485, ' 2902 Kambah Australian Capital Territory'),
5644
+ (5285, '2902', 'Kambah Village', 'ACT', 'AU', 485, ' 2902 Kambah Village Australian Capital Territory'),
5645
+ (5286, '2903', 'Erindale Centre', 'ACT', 'AU', 485, ' 2903 Erindale Centre Australian Capital Territory'),
5646
+ (5287, '2903', 'Oxley', 'ACT', 'AU', 485, ' 2903 Oxley Australian Capital Territory'),
5647
+ (5288, '2903', 'Wanniassa', 'ACT', 'AU', 485, ' 2903 Wanniassa Australian Capital Territory'),
5648
+ (5289, '2904', 'Monash', 'ACT', 'AU', 485, ' 2904 Monash Australian Capital Territory'),
5649
+ (5290, '2904', 'Fadden', 'ACT', 'AU', 485, ' 2904 Fadden Australian Capital Territory'),
5650
+ (5291, '2904', 'Gowrie', 'ACT', 'AU', 485, ' 2904 Gowrie Australian Capital Territory'),
5651
+ (5292, '2904', 'Macarthur', 'ACT', 'AU', 485, ' 2904 Macarthur Australian Capital Territory'),
5652
+ (5293, '2905', 'Isabella Plains', 'ACT', 'AU', 485, ' 2905 Isabella Plains Australian Capital Territory'),
5653
+ (5294, '2905', 'Gilmore', 'ACT', 'AU', 485, ' 2905 Gilmore Australian Capital Territory'),
5654
+ (5295, '2905', 'Chisholm', 'ACT', 'AU', 485, ' 2905 Chisholm Australian Capital Territory'),
5655
+ (5296, '2905', 'Theodore', 'ACT', 'AU', 485, ' 2905 Theodore Australian Capital Territory'),
5656
+ (5297, '2905', 'Richardson', 'ACT', 'AU', 485, ' 2905 Richardson Australian Capital Territory'),
5657
+ (5298, '2905', 'Calwell', 'ACT', 'AU', 485, ' 2905 Calwell Australian Capital Territory'),
5658
+ (5299, '2905', 'Bonython', 'ACT', 'AU', 485, ' 2905 Bonython Australian Capital Territory'),
5659
+ (5300, '2906', 'Banks', 'ACT', 'AU', 485, ' 2906 Banks Australian Capital Territory'),
5660
+ (5301, '2906', 'Conder', 'ACT', 'AU', 485, ' 2906 Conder Australian Capital Territory'),
5661
+ (5302, '2906', 'Gordon', 'ACT', 'AU', 485, ' 2906 Gordon Australian Capital Territory'),
5662
+ (5303, '2911', 'Crace', 'ACT', 'AU', 485, ' 2911 Crace Australian Capital Territory'),
5663
+ (5304, '2911', 'Mitchell', 'ACT', 'AU', 485, ' 2911 Mitchell Australian Capital Territory'),
5664
+ (5305, '2912', 'Gungahlin', 'ACT', 'AU', 485, ' 2912 Gungahlin Australian Capital Territory'),
5665
+ (5306, '2913', 'Kinlyside', 'ACT', 'AU', 485, ' 2913 Kinlyside Australian Capital Territory'),
5666
+ (5307, '2913', 'Casey', 'ACT', 'AU', 485, ' 2913 Casey Australian Capital Territory'),
5667
+ (5308, '2913', 'Ginninderra Village', 'ACT', 'AU', 485, ' 2913 Ginninderra Village Australian Capital Territory'),
5668
+ (5309, '2913', 'Franklin', 'ACT', 'AU', 485, ' 2913 Franklin Australian Capital Territory'),
5669
+ (5310, '2913', 'Palmerston', 'ACT', 'AU', 485, ' 2913 Palmerston Australian Capital Territory'),
5670
+ (5311, '2913', 'Ngunnawal', 'ACT', 'AU', 485, ' 2913 Ngunnawal Australian Capital Territory'),
5671
+ (5312, '2913', 'Nicholls', 'ACT', 'AU', 485, ' 2913 Nicholls Australian Capital Territory'),
5672
+ (5313, '2913', 'Taylor', 'ACT', 'AU', 485, ' 2913 Taylor Australian Capital Territory'),
5673
+ (5314, '2914', 'Moncrieff', 'ACT', 'AU', 485, ' 2914 Moncrieff Australian Capital Territory'),
5674
+ (5315, '2914', 'Forde', 'ACT', 'AU', 485, ' 2914 Forde Australian Capital Territory'),
5675
+ (5316, '2914', 'Harrison', 'ACT', 'AU', 485, ' 2914 Harrison Australian Capital Territory'),
5676
+ (5317, '2914', 'Bonner', 'ACT', 'AU', 485, ' 2914 Bonner Australian Capital Territory'),
5677
+ (5318, '2914', 'Amaroo', 'ACT', 'AU', 485, ' 2914 Amaroo Australian Capital Territory'),
5678
+ (5319, '3000', 'Melbourne', 'VIC', 'AU', 491, ' 3000 Melbourne Victoria'),
5679
+ (5320, '3001', 'Melbourne', 'VIC', 'AU', 491, ' 3001 Melbourne Victoria'),
5680
+ (5321, '3002', 'East Melbourne', 'VIC', 'AU', 491, ' 3002 East Melbourne Victoria'),
5681
+ (5322, '3003', 'West Melbourne', 'VIC', 'AU', 491, ' 3003 West Melbourne Victoria'),
5682
+ (5323, '3004', 'Melbourne', 'VIC', 'AU', 491, ' 3004 Melbourne Victoria'),
5683
+ (5324, '3004', 'St Kilda Road Central', 'VIC', 'AU', 491, ' 3004 St Kilda Road Central Victoria'),
5684
+ (5325, '3005', 'World Trade Centre', 'VIC', 'AU', 491, ' 3005 World Trade Centre Victoria'),
5685
+ (5326, '3006', 'South Wharf', 'VIC', 'AU', 491, ' 3006 South Wharf Victoria'),
5686
+ (5327, '3006', 'Southbank', 'VIC', 'AU', 491, ' 3006 Southbank Victoria'),
5687
+ (5328, '3008', 'Docklands', 'VIC', 'AU', 491, ' 3008 Docklands Victoria'),
5688
+ (5329, '3010', 'University Of Melbourne', 'VIC', 'AU', 491, ' 3010 University Of Melbourne Victoria'),
5689
+ (5330, '3011', 'Footscray', 'VIC', 'AU', 491, ' 3011 Footscray Victoria'),
5690
+ (5331, '3011', 'Seddon', 'VIC', 'AU', 491, ' 3011 Seddon Victoria'),
5691
+ (5332, '3011', 'Seddon West', 'VIC', 'AU', 491, ' 3011 Seddon West Victoria'),
5692
+ (5333, '3012', 'Tottenham', 'VIC', 'AU', 491, ' 3012 Tottenham Victoria'),
5693
+ (5334, '3012', 'West Footscray', 'VIC', 'AU', 491, ' 3012 West Footscray Victoria'),
5694
+ (5335, '3012', 'Kingsville', 'VIC', 'AU', 491, ' 3012 Kingsville Victoria'),
5695
+ (5336, '3012', 'Kingsville West', 'VIC', 'AU', 491, ' 3012 Kingsville West Victoria'),
5696
+ (5337, '3012', 'Maidstone', 'VIC', 'AU', 491, ' 3012 Maidstone Victoria'),
5697
+ (5338, '3012', 'Brooklyn', 'VIC', 'AU', 491, ' 3012 Brooklyn Victoria'),
5698
+ (5339, '3013', 'Yarraville', 'VIC', 'AU', 491, ' 3013 Yarraville Victoria'),
5699
+ (5340, '3013', 'Yarraville West', 'VIC', 'AU', 491, ' 3013 Yarraville West Victoria'),
5700
+ (5341, '3015', 'South Kingsville', 'VIC', 'AU', 491, ' 3015 South Kingsville Victoria'),
5701
+ (5342, '3015', 'Spotswood', 'VIC', 'AU', 491, ' 3015 Spotswood Victoria'),
5702
+ (5343, '3015', 'Newport', 'VIC', 'AU', 491, ' 3015 Newport Victoria'),
5703
+ (5344, '3016', 'Williamstown', 'VIC', 'AU', 491, ' 3016 Williamstown Victoria'),
5704
+ (5345, '3016', 'Williamstown North', 'VIC', 'AU', 491, ' 3016 Williamstown North Victoria'),
5705
+ (5346, '3018', 'Seaholme', 'VIC', 'AU', 491, ' 3018 Seaholme Victoria'),
5706
+ (5347, '3018', 'Altona', 'VIC', 'AU', 491, ' 3018 Altona Victoria'),
5707
+ (5348, '3019', 'Braybrook', 'VIC', 'AU', 491, ' 3019 Braybrook Victoria'),
5708
+ (5349, '3019', 'Braybrook North', 'VIC', 'AU', 491, ' 3019 Braybrook North Victoria'),
5709
+ (5350, '3019', 'Robinson', 'VIC', 'AU', 491, ' 3019 Robinson Victoria'),
5710
+ (5351, '3020', 'Sunshine', 'VIC', 'AU', 491, ' 3020 Sunshine Victoria'),
5711
+ (5352, '3020', 'Sunshine North', 'VIC', 'AU', 491, ' 3020 Sunshine North Victoria'),
5712
+ (5353, '3020', 'Sunshine West', 'VIC', 'AU', 491, ' 3020 Sunshine West Victoria'),
5713
+ (5354, '3020', 'Glengala', 'VIC', 'AU', 491, ' 3020 Glengala Victoria'),
5714
+ (5355, '3020', 'Albion', 'VIC', 'AU', 491, ' 3020 Albion Victoria'),
5715
+ (5356, '3021', 'Albanvale', 'VIC', 'AU', 491, ' 3021 Albanvale Victoria'),
5716
+ (5357, '3021', 'Kealba', 'VIC', 'AU', 491, ' 3021 Kealba Victoria'),
5717
+ (5358, '3021', 'Kings Park', 'VIC', 'AU', 491, ' 3021 Kings Park Victoria'),
5718
+ (5359, '3021', 'St Albans', 'VIC', 'AU', 491, ' 3021 St Albans Victoria'),
5719
+ (5360, '3022', 'Ardeer', 'VIC', 'AU', 491, ' 3022 Ardeer Victoria'),
5720
+ (5361, '3022', 'Deer Park East', 'VIC', 'AU', 491, ' 3022 Deer Park East Victoria'),
5721
+ (5362, '3023', 'Deer Park North', 'VIC', 'AU', 491, ' 3023 Deer Park North Victoria'),
5722
+ (5363, '3023', 'Burnside', 'VIC', 'AU', 491, ' 3023 Burnside Victoria'),
5723
+ (5364, '3023', 'Burnside Heights', 'VIC', 'AU', 491, ' 3023 Burnside Heights Victoria'),
5724
+ (5365, '3023', 'Cairnlea', 'VIC', 'AU', 491, ' 3023 Cairnlea Victoria'),
5725
+ (5366, '3023', 'Caroline Springs', 'VIC', 'AU', 491, ' 3023 Caroline Springs Victoria'),
5726
+ (5367, '3023', 'Deer Park', 'VIC', 'AU', 491, ' 3023 Deer Park Victoria'),
5727
+ (5368, '3023', 'Ravenhall', 'VIC', 'AU', 491, ' 3023 Ravenhall Victoria'),
5728
+ (5369, '3024', 'Mambourin', 'VIC', 'AU', 491, ' 3024 Mambourin Victoria'),
5729
+ (5370, '3024', 'Mount Cottrell', 'VIC', 'AU', 491, ' 3024 Mount Cottrell Victoria'),
5730
+ (5371, '3024', 'Wyndham Vale', 'VIC', 'AU', 491, ' 3024 Wyndham Vale Victoria'),
5731
+ (5372, '3025', 'Altona East', 'VIC', 'AU', 491, ' 3025 Altona East Victoria'),
5732
+ (5373, '3025', 'Altona Gate', 'VIC', 'AU', 491, ' 3025 Altona Gate Victoria'),
5733
+ (5374, '3025', 'Altona North', 'VIC', 'AU', 491, ' 3025 Altona North Victoria'),
5734
+ (5375, '3026', 'Laverton North', 'VIC', 'AU', 491, ' 3026 Laverton North Victoria'),
5735
+ (5376, '3027', 'Williams Landing', 'VIC', 'AU', 491, ' 3027 Williams Landing Victoria'),
5736
+ (5377, '3028', 'Seabrook', 'VIC', 'AU', 491, ' 3028 Seabrook Victoria'),
5737
+ (5378, '3028', 'Laverton', 'VIC', 'AU', 491, ' 3028 Laverton Victoria'),
5738
+ (5379, '3028', 'Altona Meadows', 'VIC', 'AU', 491, ' 3028 Altona Meadows Victoria'),
5739
+ (5380, '3029', 'Hoppers Crossing', 'VIC', 'AU', 491, ' 3029 Hoppers Crossing Victoria'),
5740
+ (5381, '3029', 'Tarneit', 'VIC', 'AU', 491, ' 3029 Tarneit Victoria'),
5741
+ (5382, '3029', 'Truganina', 'VIC', 'AU', 491, ' 3029 Truganina Victoria'),
5742
+ (5383, '3030', 'Werribee', 'VIC', 'AU', 491, ' 3030 Werribee Victoria'),
5743
+ (5384, '3030', 'Werribee South', 'VIC', 'AU', 491, ' 3030 Werribee South Victoria'),
5744
+ (5385, '3030', 'Cocoroc', 'VIC', 'AU', 491, ' 3030 Cocoroc Victoria'),
5745
+ (5386, '3030', 'Derrimut', 'VIC', 'AU', 491, ' 3030 Derrimut Victoria'),
5746
+ (5387, '3030', 'Point Cook', 'VIC', 'AU', 491, ' 3030 Point Cook Victoria'),
5747
+ (5388, '3030', 'Quandong', 'VIC', 'AU', 491, ' 3030 Quandong Victoria'),
5748
+ (5389, '3031', 'Flemington', 'VIC', 'AU', 491, ' 3031 Flemington Victoria'),
5749
+ (5390, '3031', 'Kensington', 'VIC', 'AU', 491, ' 3031 Kensington Victoria'),
5750
+ (5391, '3032', 'Maribyrnong', 'VIC', 'AU', 491, ' 3032 Maribyrnong Victoria'),
5751
+ (5392, '3032', 'Highpoint City', 'VIC', 'AU', 491, ' 3032 Highpoint City Victoria'),
5752
+ (5393, '3032', 'Ascot Vale', 'VIC', 'AU', 491, ' 3032 Ascot Vale Victoria'),
5753
+ (5394, '3032', 'Travancore', 'VIC', 'AU', 491, ' 3032 Travancore Victoria'),
5754
+ (5395, '3033', 'Keilor East', 'VIC', 'AU', 491, ' 3033 Keilor East Victoria'),
5755
+ (5396, '3034', 'Avondale Heights', 'VIC', 'AU', 491, ' 3034 Avondale Heights Victoria'),
5756
+ (5397, '3036', 'Keilor', 'VIC', 'AU', 491, ' 3036 Keilor Victoria'),
5757
+ (5398, '3036', 'Keilor North', 'VIC', 'AU', 491, ' 3036 Keilor North Victoria'),
5758
+ (5399, '3037', 'Sydenham', 'VIC', 'AU', 491, ' 3037 Sydenham Victoria'),
5759
+ (5400, '3037', 'Taylors Hill', 'VIC', 'AU', 491, ' 3037 Taylors Hill Victoria'),
5760
+ (5401, '3037', 'Hillside', 'VIC', 'AU', 491, ' 3037 Hillside Victoria'),
5761
+ (5402, '3037', 'Calder Park', 'VIC', 'AU', 491, ' 3037 Calder Park Victoria'),
5762
+ (5403, '3037', 'Delahey', 'VIC', 'AU', 491, ' 3037 Delahey Victoria'),
5763
+ (5404, '3038', 'Keilor Downs', 'VIC', 'AU', 491, ' 3038 Keilor Downs Victoria'),
5764
+ (5405, '3038', 'Keilor Lodge', 'VIC', 'AU', 491, ' 3038 Keilor Lodge Victoria'),
5765
+ (5406, '3038', 'Taylors Lakes', 'VIC', 'AU', 491, ' 3038 Taylors Lakes Victoria'),
5766
+ (5407, '3038', 'Watergardens', 'VIC', 'AU', 491, ' 3038 Watergardens Victoria'),
5767
+ (5408, '3039', 'Moonee Ponds', 'VIC', 'AU', 491, ' 3039 Moonee Ponds Victoria'),
5768
+ (5409, '3040', 'Essendon West', 'VIC', 'AU', 491, ' 3040 Essendon West Victoria'),
5769
+ (5410, '3040', 'Essendon', 'VIC', 'AU', 491, ' 3040 Essendon Victoria'),
5770
+ (5411, '3040', 'Aberfeldie', 'VIC', 'AU', 491, ' 3040 Aberfeldie Victoria'),
5771
+ (5412, '3041', 'Essendon Fields', 'VIC', 'AU', 491, ' 3041 Essendon Fields Victoria'),
5772
+ (5413, '3041', 'Essendon North', 'VIC', 'AU', 491, ' 3041 Essendon North Victoria'),
5773
+ (5414, '3041', 'Strathmore', 'VIC', 'AU', 491, ' 3041 Strathmore Victoria'),
5774
+ (5415, '3041', 'Strathmore Heights', 'VIC', 'AU', 491, ' 3041 Strathmore Heights Victoria'),
5775
+ (5416, '3042', 'Airport West', 'VIC', 'AU', 491, ' 3042 Airport West Victoria'),
5776
+ (5417, '3042', 'Keilor Park', 'VIC', 'AU', 491, ' 3042 Keilor Park Victoria'),
5777
+ (5418, '3042', 'Niddrie', 'VIC', 'AU', 491, ' 3042 Niddrie Victoria'),
5778
+ (5419, '3043', 'Gladstone Park', 'VIC', 'AU', 491, ' 3043 Gladstone Park Victoria'),
5779
+ (5420, '3043', 'Gowanbrae', 'VIC', 'AU', 491, ' 3043 Gowanbrae Victoria'),
5780
+ (5421, '3043', 'Tullamarine', 'VIC', 'AU', 491, ' 3043 Tullamarine Victoria'),
5781
+ (5422, '3044', 'Pascoe Vale', 'VIC', 'AU', 491, ' 3044 Pascoe Vale Victoria'),
5782
+ (5423, '3044', 'Pascoe Vale South', 'VIC', 'AU', 491, ' 3044 Pascoe Vale South Victoria'),
5783
+ (5424, '3045', 'Melbourne Airport', 'VIC', 'AU', 491, ' 3045 Melbourne Airport Victoria'),
5784
+ (5425, '3046', 'Hadfield', 'VIC', 'AU', 491, ' 3046 Hadfield Victoria'),
5785
+ (5426, '3046', 'Glenroy', 'VIC', 'AU', 491, ' 3046 Glenroy Victoria'),
5786
+ (5427, '3046', 'Oak Park', 'VIC', 'AU', 491, ' 3046 Oak Park Victoria'),
5787
+ (5428, '3047', 'Dallas', 'VIC', 'AU', 491, ' 3047 Dallas Victoria'),
5788
+ (5429, '3047', 'Broadmeadows', 'VIC', 'AU', 491, ' 3047 Broadmeadows Victoria'),
5789
+ (5430, '3047', 'Jacana', 'VIC', 'AU', 491, ' 3047 Jacana Victoria'),
5790
+ (5431, '3048', 'Meadow Heights', 'VIC', 'AU', 491, ' 3048 Meadow Heights Victoria'),
5791
+ (5432, '3048', 'Coolaroo', 'VIC', 'AU', 491, ' 3048 Coolaroo Victoria'),
5792
+ (5433, '3049', 'Attwood', 'VIC', 'AU', 491, ' 3049 Attwood Victoria'),
5793
+ (5434, '3049', 'Westmeadows', 'VIC', 'AU', 491, ' 3049 Westmeadows Victoria'),
5794
+ (5435, '3050', 'Royal Melbourne Hospital', 'VIC', 'AU', 491, ' 3050 Royal Melbourne Hospital Victoria'),
5795
+ (5436, '3051', 'Hotham Hill', 'VIC', 'AU', 491, ' 3051 Hotham Hill Victoria'),
5796
+ (5437, '3051', 'North Melbourne', 'VIC', 'AU', 491, ' 3051 North Melbourne Victoria'),
5797
+ (5438, '3052', 'Melbourne University', 'VIC', 'AU', 491, ' 3052 Melbourne University Victoria'),
5798
+ (5439, '3052', 'Parkville', 'VIC', 'AU', 491, ' 3052 Parkville Victoria'),
5799
+ (5440, '3053', 'Carlton', 'VIC', 'AU', 491, ' 3053 Carlton Victoria'),
5800
+ (5441, '3053', 'Carlton South', 'VIC', 'AU', 491, ' 3053 Carlton South Victoria'),
5801
+ (5442, '3054', 'Carlton North', 'VIC', 'AU', 491, ' 3054 Carlton North Victoria'),
5802
+ (5443, '3054', 'Princes Hill', 'VIC', 'AU', 491, ' 3054 Princes Hill Victoria'),
5803
+ (5444, '3055', 'Moonee Vale', 'VIC', 'AU', 491, ' 3055 Moonee Vale Victoria'),
5804
+ (5445, '3055', 'Moreland West', 'VIC', 'AU', 491, ' 3055 Moreland West Victoria'),
5805
+ (5446, '3055', 'Brunswick South', 'VIC', 'AU', 491, ' 3055 Brunswick South Victoria'),
5806
+ (5447, '3055', 'Brunswick West', 'VIC', 'AU', 491, ' 3055 Brunswick West Victoria'),
5807
+ (5448, '3056', 'Brunswick', 'VIC', 'AU', 491, ' 3056 Brunswick Victoria'),
5808
+ (5449, '3056', 'Brunswick Lower', 'VIC', 'AU', 491, ' 3056 Brunswick Lower Victoria'),
5809
+ (5450, '3056', 'Brunswick North', 'VIC', 'AU', 491, ' 3056 Brunswick North Victoria'),
5810
+ (5451, '3057', 'Brunswick East', 'VIC', 'AU', 491, ' 3057 Brunswick East Victoria'),
5811
+ (5452, '3057', 'Sumner', 'VIC', 'AU', 491, ' 3057 Sumner Victoria'),
5812
+ (5453, '3057', 'Lygon Street North', 'VIC', 'AU', 491, ' 3057 Lygon Street North Victoria'),
5813
+ (5454, '3058', 'Moreland', 'VIC', 'AU', 491, ' 3058 Moreland Victoria'),
5814
+ (5455, '3058', 'Merlynston', 'VIC', 'AU', 491, ' 3058 Merlynston Victoria'),
5815
+ (5456, '3058', 'Batman', 'VIC', 'AU', 491, ' 3058 Batman Victoria'),
5816
+ (5457, '3058', 'Coburg', 'VIC', 'AU', 491, ' 3058 Coburg Victoria'),
5817
+ (5458, '3058', 'Coburg North', 'VIC', 'AU', 491, ' 3058 Coburg North Victoria'),
5818
+ (5459, '3059', 'Greenvale', 'VIC', 'AU', 491, ' 3059 Greenvale Victoria'),
5819
+ (5460, '3060', 'Fawkner', 'VIC', 'AU', 491, ' 3060 Fawkner Victoria'),
5820
+ (5461, '3060', 'Fawkner East', 'VIC', 'AU', 491, ' 3060 Fawkner East Victoria'),
5821
+ (5462, '3060', 'Fawkner North', 'VIC', 'AU', 491, ' 3060 Fawkner North Victoria'),
5822
+ (5463, '3061', 'Campbellfield', 'VIC', 'AU', 491, ' 3061 Campbellfield Victoria'),
5823
+ (5464, '3062', 'Somerton', 'VIC', 'AU', 491, ' 3062 Somerton Victoria'),
5824
+ (5465, '3063', 'Yuroke', 'VIC', 'AU', 491, ' 3063 Yuroke Victoria'),
5825
+ (5466, '3063', 'Oaklands Junction', 'VIC', 'AU', 491, ' 3063 Oaklands Junction Victoria'),
5826
+ (5467, '3064', 'Mickleham', 'VIC', 'AU', 491, ' 3064 Mickleham Victoria'),
5827
+ (5468, '3064', 'Kalkallo', 'VIC', 'AU', 491, ' 3064 Kalkallo Victoria'),
5828
+ (5469, '3064', 'Craigieburn', 'VIC', 'AU', 491, ' 3064 Craigieburn Victoria'),
5829
+ (5470, '3064', 'Donnybrook', 'VIC', 'AU', 491, ' 3064 Donnybrook Victoria'),
5830
+ (5471, '3064', 'Roxburgh Park', 'VIC', 'AU', 491, ' 3064 Roxburgh Park Victoria'),
5831
+ (5472, '3065', 'Fitzroy', 'VIC', 'AU', 491, ' 3065 Fitzroy Victoria'),
5832
+ (5473, '3066', 'Collingwood', 'VIC', 'AU', 491, ' 3066 Collingwood Victoria'),
5833
+ (5474, '3066', 'Collingwood North', 'VIC', 'AU', 491, ' 3066 Collingwood North Victoria'),
5834
+ (5475, '3067', 'Abbotsford', 'VIC', 'AU', 491, ' 3067 Abbotsford Victoria'),
5835
+ (5476, '3068', 'Fitzroy North', 'VIC', 'AU', 491, ' 3068 Fitzroy North Victoria'),
5836
+ (5477, '3068', 'Clifton Hill', 'VIC', 'AU', 491, ' 3068 Clifton Hill Victoria'),
5837
+ (5478, '3070', 'Northcote', 'VIC', 'AU', 491, ' 3070 Northcote Victoria'),
5838
+ (5479, '3070', 'Northcote South', 'VIC', 'AU', 491, ' 3070 Northcote South Victoria'),
5839
+ (5480, '3071', 'Thornbury', 'VIC', 'AU', 491, ' 3071 Thornbury Victoria'),
5840
+ (5481, '3072', 'Regent West', 'VIC', 'AU', 491, ' 3072 Regent West Victoria'),
5841
+ (5482, '3072', 'Northland Centre', 'VIC', 'AU', 491, ' 3072 Northland Centre Victoria'),
5842
+ (5483, '3072', 'Preston', 'VIC', 'AU', 491, ' 3072 Preston Victoria'),
5843
+ (5484, '3072', 'Preston Lower', 'VIC', 'AU', 491, ' 3072 Preston Lower Victoria'),
5844
+ (5485, '3072', 'Preston South', 'VIC', 'AU', 491, ' 3072 Preston South Victoria'),
5845
+ (5486, '3072', 'Preston West', 'VIC', 'AU', 491, ' 3072 Preston West Victoria'),
5846
+ (5487, '3072', 'Gilberton', 'VIC', 'AU', 491, ' 3072 Gilberton Victoria'),
5847
+ (5488, '3073', 'Keon Park', 'VIC', 'AU', 491, ' 3073 Keon Park Victoria'),
5848
+ (5489, '3073', 'Reservoir', 'VIC', 'AU', 491, ' 3073 Reservoir Victoria'),
5849
+ (5490, '3073', 'Reservoir East', 'VIC', 'AU', 491, ' 3073 Reservoir East Victoria'),
5850
+ (5491, '3073', 'Reservoir North', 'VIC', 'AU', 491, ' 3073 Reservoir North Victoria'),
5851
+ (5492, '3073', 'Reservoir South', 'VIC', 'AU', 491, ' 3073 Reservoir South Victoria'),
5852
+ (5493, '3074', 'Thomastown', 'VIC', 'AU', 491, ' 3074 Thomastown Victoria'),
5853
+ (5494, '3075', 'Lalor', 'VIC', 'AU', 491, ' 3075 Lalor Victoria'),
5854
+ (5495, '3075', 'Lalor Plaza', 'VIC', 'AU', 491, ' 3075 Lalor Plaza Victoria'),
5855
+ (5496, '3076', 'Epping', 'VIC', 'AU', 491, ' 3076 Epping Victoria'),
5856
+ (5497, '3078', 'Fairfield', 'VIC', 'AU', 491, ' 3078 Fairfield Victoria'),
5857
+ (5498, '3078', 'Alphington', 'VIC', 'AU', 491, ' 3078 Alphington Victoria'),
5858
+ (5499, '3079', 'Ivanhoe', 'VIC', 'AU', 491, ' 3079 Ivanhoe Victoria'),
5859
+ (5500, '3079', 'Ivanhoe East', 'VIC', 'AU', 491, ' 3079 Ivanhoe East Victoria');
5860
+ INSERT INTO {$this->getTable('candf_pcs')} (`entity_id`, `postcode`, `city`, `state`, `country_id`, `region_id`, `fulltext`) VALUES
5861
+ (5501, '3079', 'Ivanhoe North', 'VIC', 'AU', 491, ' 3079 Ivanhoe North Victoria'),
5862
+ (5502, '3081', 'Heidelberg West', 'VIC', 'AU', 491, ' 3081 Heidelberg West Victoria'),
5863
+ (5503, '3081', 'Bellfield', 'VIC', 'AU', 491, ' 3081 Bellfield Victoria'),
5864
+ (5504, '3081', 'Heidelberg Heights', 'VIC', 'AU', 491, ' 3081 Heidelberg Heights Victoria'),
5865
+ (5505, '3081', 'Heidelberg Rgh', 'VIC', 'AU', 491, ' 3081 Heidelberg Rgh Victoria'),
5866
+ (5506, '3082', 'Mill Park', 'VIC', 'AU', 491, ' 3082 Mill Park Victoria'),
5867
+ (5507, '3083', 'Kingsbury', 'VIC', 'AU', 491, ' 3083 Kingsbury Victoria'),
5868
+ (5508, '3083', 'La Trobe University', 'VIC', 'AU', 491, ' 3083 La Trobe University Victoria'),
5869
+ (5509, '3083', 'Bundoora', 'VIC', 'AU', 491, ' 3083 Bundoora Victoria'),
5870
+ (5510, '3084', 'Heidelberg', 'VIC', 'AU', 491, ' 3084 Heidelberg Victoria'),
5871
+ (5511, '3084', 'Banyule', 'VIC', 'AU', 491, ' 3084 Banyule Victoria'),
5872
+ (5512, '3084', 'Eaglemont', 'VIC', 'AU', 491, ' 3084 Eaglemont Victoria'),
5873
+ (5513, '3084', 'Viewbank', 'VIC', 'AU', 491, ' 3084 Viewbank Victoria'),
5874
+ (5514, '3084', 'Rosanna', 'VIC', 'AU', 491, ' 3084 Rosanna Victoria'),
5875
+ (5515, '3085', 'Macleod', 'VIC', 'AU', 491, ' 3085 Macleod Victoria'),
5876
+ (5516, '3085', 'Macleod West', 'VIC', 'AU', 491, ' 3085 Macleod West Victoria'),
5877
+ (5517, '3085', 'Yallambie', 'VIC', 'AU', 491, ' 3085 Yallambie Victoria'),
5878
+ (5518, '3086', 'La Trobe University', 'VIC', 'AU', 491, ' 3086 La Trobe University Victoria'),
5879
+ (5519, '3087', 'Watsonia', 'VIC', 'AU', 491, ' 3087 Watsonia Victoria'),
5880
+ (5520, '3087', 'Watsonia North', 'VIC', 'AU', 491, ' 3087 Watsonia North Victoria'),
5881
+ (5521, '3088', 'St Helena', 'VIC', 'AU', 491, ' 3088 St Helena Victoria'),
5882
+ (5522, '3088', 'Briar Hill', 'VIC', 'AU', 491, ' 3088 Briar Hill Victoria'),
5883
+ (5523, '3088', 'Greensborough', 'VIC', 'AU', 491, ' 3088 Greensborough Victoria'),
5884
+ (5524, '3089', 'Diamond Creek', 'VIC', 'AU', 491, ' 3089 Diamond Creek Victoria'),
5885
+ (5525, '3090', 'Plenty', 'VIC', 'AU', 491, ' 3090 Plenty Victoria'),
5886
+ (5526, '3091', 'Yarrambat', 'VIC', 'AU', 491, ' 3091 Yarrambat Victoria'),
5887
+ (5527, '3093', 'Lower Plenty', 'VIC', 'AU', 491, ' 3093 Lower Plenty Victoria'),
5888
+ (5528, '3094', 'Montmorency', 'VIC', 'AU', 491, ' 3094 Montmorency Victoria'),
5889
+ (5529, '3095', 'Research', 'VIC', 'AU', 491, ' 3095 Research Victoria'),
5890
+ (5530, '3095', 'Eltham', 'VIC', 'AU', 491, ' 3095 Eltham Victoria'),
5891
+ (5531, '3095', 'Eltham North', 'VIC', 'AU', 491, ' 3095 Eltham North Victoria'),
5892
+ (5532, '3096', 'Wattle Glen', 'VIC', 'AU', 491, ' 3096 Wattle Glen Victoria'),
5893
+ (5533, '3097', 'Watsons Creek', 'VIC', 'AU', 491, ' 3097 Watsons Creek Victoria'),
5894
+ (5534, '3097', 'Bend Of Islands', 'VIC', 'AU', 491, ' 3097 Bend Of Islands Victoria'),
5895
+ (5535, '3097', 'Kangaroo Ground', 'VIC', 'AU', 491, ' 3097 Kangaroo Ground Victoria'),
5896
+ (5536, '3099', 'Hurstbridge', 'VIC', 'AU', 491, ' 3099 Hurstbridge Victoria'),
5897
+ (5537, '3099', 'Nutfield', 'VIC', 'AU', 491, ' 3099 Nutfield Victoria'),
5898
+ (5538, '3099', 'Arthurs Creek', 'VIC', 'AU', 491, ' 3099 Arthurs Creek Victoria'),
5899
+ (5539, '3099', 'Cottles Bridge', 'VIC', 'AU', 491, ' 3099 Cottles Bridge Victoria'),
5900
+ (5540, '3099', 'Strathewen', 'VIC', 'AU', 491, ' 3099 Strathewen Victoria'),
5901
+ (5541, '3101', 'Kew', 'VIC', 'AU', 491, ' 3101 Kew Victoria'),
5902
+ (5542, '3101', 'Cotham', 'VIC', 'AU', 491, ' 3101 Cotham Victoria'),
5903
+ (5543, '3102', 'Kew East', 'VIC', 'AU', 491, ' 3102 Kew East Victoria'),
5904
+ (5544, '3103', 'Deepdene', 'VIC', 'AU', 491, ' 3103 Deepdene Victoria'),
5905
+ (5545, '3103', 'Balwyn', 'VIC', 'AU', 491, ' 3103 Balwyn Victoria'),
5906
+ (5546, '3103', 'Balwyn East', 'VIC', 'AU', 491, ' 3103 Balwyn East Victoria'),
5907
+ (5547, '3104', 'Balwyn North', 'VIC', 'AU', 491, ' 3104 Balwyn North Victoria'),
5908
+ (5548, '3104', 'Greythorn', 'VIC', 'AU', 491, ' 3104 Greythorn Victoria'),
5909
+ (5549, '3105', 'Bulleen', 'VIC', 'AU', 491, ' 3105 Bulleen Victoria'),
5910
+ (5550, '3105', 'Bulleen South', 'VIC', 'AU', 491, ' 3105 Bulleen South Victoria'),
5911
+ (5551, '3106', 'Templestowe', 'VIC', 'AU', 491, ' 3106 Templestowe Victoria'),
5912
+ (5552, '3107', 'Templestowe Lower', 'VIC', 'AU', 491, ' 3107 Templestowe Lower Victoria'),
5913
+ (5553, '3108', 'Doncaster', 'VIC', 'AU', 491, ' 3108 Doncaster Victoria'),
5914
+ (5554, '3109', 'Doncaster East', 'VIC', 'AU', 491, ' 3109 Doncaster East Victoria'),
5915
+ (5555, '3109', 'Doncaster Heights', 'VIC', 'AU', 491, ' 3109 Doncaster Heights Victoria'),
5916
+ (5556, '3109', 'The Pines', 'VIC', 'AU', 491, ' 3109 The Pines Victoria'),
5917
+ (5557, '3109', 'Tunstall Square Po', 'VIC', 'AU', 491, ' 3109 Tunstall Square Po Victoria'),
5918
+ (5558, '3110', 'Nunawading', 'VIC', 'AU', 491, ' 3110 Nunawading Victoria'),
5919
+ (5559, '3111', 'Donvale', 'VIC', 'AU', 491, ' 3111 Donvale Victoria'),
5920
+ (5560, '3113', 'Warrandyte', 'VIC', 'AU', 491, ' 3113 Warrandyte Victoria'),
5921
+ (5561, '3113', 'North Warrandyte', 'VIC', 'AU', 491, ' 3113 North Warrandyte Victoria'),
5922
+ (5562, '3114', 'Park Orchards', 'VIC', 'AU', 491, ' 3114 Park Orchards Victoria'),
5923
+ (5563, '3115', 'Wonga Park', 'VIC', 'AU', 491, ' 3115 Wonga Park Victoria'),
5924
+ (5564, '3116', 'Chirnside Park', 'VIC', 'AU', 491, ' 3116 Chirnside Park Victoria'),
5925
+ (5565, '3121', 'Burnley', 'VIC', 'AU', 491, ' 3121 Burnley Victoria'),
5926
+ (5566, '3121', 'Burnley North', 'VIC', 'AU', 491, ' 3121 Burnley North Victoria'),
5927
+ (5567, '3121', 'Cremorne', 'VIC', 'AU', 491, ' 3121 Cremorne Victoria'),
5928
+ (5568, '3121', 'Richmond', 'VIC', 'AU', 491, ' 3121 Richmond Victoria'),
5929
+ (5569, '3121', 'Richmond East', 'VIC', 'AU', 491, ' 3121 Richmond East Victoria'),
5930
+ (5570, '3121', 'Richmond North', 'VIC', 'AU', 491, ' 3121 Richmond North Victoria'),
5931
+ (5571, '3121', 'Richmond South', 'VIC', 'AU', 491, ' 3121 Richmond South Victoria'),
5932
+ (5572, '3122', 'Hawthorn', 'VIC', 'AU', 491, ' 3122 Hawthorn Victoria'),
5933
+ (5573, '3122', 'Glenferrie South', 'VIC', 'AU', 491, ' 3122 Glenferrie South Victoria'),
5934
+ (5574, '3122', 'Hawthorn North', 'VIC', 'AU', 491, ' 3122 Hawthorn North Victoria'),
5935
+ (5575, '3122', 'Hawthorn West', 'VIC', 'AU', 491, ' 3122 Hawthorn West Victoria'),
5936
+ (5576, '3122', 'Auburn South', 'VIC', 'AU', 491, ' 3122 Auburn South Victoria'),
5937
+ (5577, '3123', 'Hawthorn East', 'VIC', 'AU', 491, ' 3123 Hawthorn East Victoria'),
5938
+ (5578, '3123', 'Auburn', 'VIC', 'AU', 491, ' 3123 Auburn Victoria'),
5939
+ (5579, '3124', 'Hartwell', 'VIC', 'AU', 491, ' 3124 Hartwell Victoria'),
5940
+ (5580, '3124', 'Camberwell', 'VIC', 'AU', 491, ' 3124 Camberwell Victoria'),
5941
+ (5581, '3124', 'Camberwell North', 'VIC', 'AU', 491, ' 3124 Camberwell North Victoria'),
5942
+ (5582, '3124', 'Camberwell South', 'VIC', 'AU', 491, ' 3124 Camberwell South Victoria'),
5943
+ (5583, '3124', 'Camberwell West', 'VIC', 'AU', 491, ' 3124 Camberwell West Victoria'),
5944
+ (5584, '3124', 'Middle Camberwell', 'VIC', 'AU', 491, ' 3124 Middle Camberwell Victoria'),
5945
+ (5585, '3125', 'Surrey Hills South', 'VIC', 'AU', 491, ' 3125 Surrey Hills South Victoria'),
5946
+ (5586, '3125', 'Bennettswood', 'VIC', 'AU', 491, ' 3125 Bennettswood Victoria'),
5947
+ (5587, '3125', 'Burwood', 'VIC', 'AU', 491, ' 3125 Burwood Victoria'),
5948
+ (5588, '3126', 'Camberwell East', 'VIC', 'AU', 491, ' 3126 Camberwell East Victoria'),
5949
+ (5589, '3126', 'Canterbury', 'VIC', 'AU', 491, ' 3126 Canterbury Victoria'),
5950
+ (5590, '3127', 'Mont Albert', 'VIC', 'AU', 491, ' 3127 Mont Albert Victoria'),
5951
+ (5591, '3127', 'Surrey Hills', 'VIC', 'AU', 491, ' 3127 Surrey Hills Victoria'),
5952
+ (5592, '3127', 'Surrey Hills North', 'VIC', 'AU', 491, ' 3127 Surrey Hills North Victoria'),
5953
+ (5593, '3128', 'Wattle Park', 'VIC', 'AU', 491, ' 3128 Wattle Park Victoria'),
5954
+ (5594, '3128', 'Box Hill', 'VIC', 'AU', 491, ' 3128 Box Hill Victoria'),
5955
+ (5595, '3128', 'Box Hill Central', 'VIC', 'AU', 491, ' 3128 Box Hill Central Victoria'),
5956
+ (5596, '3128', 'Box Hill South', 'VIC', 'AU', 491, ' 3128 Box Hill South Victoria'),
5957
+ (5597, '3128', 'Houston', 'VIC', 'AU', 491, ' 3128 Houston Victoria'),
5958
+ (5598, '3129', 'Kerrimuir', 'VIC', 'AU', 491, ' 3129 Kerrimuir Victoria'),
5959
+ (5599, '3129', 'Box Hill North', 'VIC', 'AU', 491, ' 3129 Box Hill North Victoria'),
5960
+ (5600, '3129', 'Mont Albert North', 'VIC', 'AU', 491, ' 3129 Mont Albert North Victoria'),
5961
+ (5601, '3130', 'Blackburn', 'VIC', 'AU', 491, ' 3130 Blackburn Victoria'),
5962
+ (5602, '3130', 'Blackburn North', 'VIC', 'AU', 491, ' 3130 Blackburn North Victoria'),
5963
+ (5603, '3130', 'Blackburn South', 'VIC', 'AU', 491, ' 3130 Blackburn South Victoria'),
5964
+ (5604, '3130', 'Laburnum', 'VIC', 'AU', 491, ' 3130 Laburnum Victoria'),
5965
+ (5605, '3131', 'Brentford Square', 'VIC', 'AU', 491, ' 3131 Brentford Square Victoria'),
5966
+ (5606, '3131', 'Forest Hill', 'VIC', 'AU', 491, ' 3131 Forest Hill Victoria'),
5967
+ (5607, '3131', 'Nunawading', 'VIC', 'AU', 491, ' 3131 Nunawading Victoria'),
5968
+ (5608, '3132', 'Mitcham', 'VIC', 'AU', 491, ' 3132 Mitcham Victoria'),
5969
+ (5609, '3132', 'Mitcham North', 'VIC', 'AU', 491, ' 3132 Mitcham North Victoria'),
5970
+ (5610, '3132', 'Rangeview', 'VIC', 'AU', 491, ' 3132 Rangeview Victoria'),
5971
+ (5611, '3133', 'Vermont', 'VIC', 'AU', 491, ' 3133 Vermont Victoria'),
5972
+ (5612, '3133', 'Vermont South', 'VIC', 'AU', 491, ' 3133 Vermont South Victoria'),
5973
+ (5613, '3134', 'Warrandyte South', 'VIC', 'AU', 491, ' 3134 Warrandyte South Victoria'),
5974
+ (5614, '3134', 'Warranwood', 'VIC', 'AU', 491, ' 3134 Warranwood Victoria'),
5975
+ (5615, '3134', 'Ringwood North', 'VIC', 'AU', 491, ' 3134 Ringwood North Victoria'),
5976
+ (5616, '3134', 'Ringwood', 'VIC', 'AU', 491, ' 3134 Ringwood Victoria'),
5977
+ (5617, '3134', 'Heathwood', 'VIC', 'AU', 491, ' 3134 Heathwood Victoria'),
5978
+ (5618, '3135', 'Ringwood East', 'VIC', 'AU', 491, ' 3135 Ringwood East Victoria'),
5979
+ (5619, '3135', 'Heathmont', 'VIC', 'AU', 491, ' 3135 Heathmont Victoria'),
5980
+ (5620, '3135', 'Bedford Road', 'VIC', 'AU', 491, ' 3135 Bedford Road Victoria'),
5981
+ (5621, '3136', 'Croydon', 'VIC', 'AU', 491, ' 3136 Croydon Victoria'),
5982
+ (5622, '3136', 'Croydon Hills', 'VIC', 'AU', 491, ' 3136 Croydon Hills Victoria'),
5983
+ (5623, '3136', 'Croydon North', 'VIC', 'AU', 491, ' 3136 Croydon North Victoria'),
5984
+ (5624, '3136', 'Croydon South', 'VIC', 'AU', 491, ' 3136 Croydon South Victoria'),
5985
+ (5625, '3137', 'Kilsyth', 'VIC', 'AU', 491, ' 3137 Kilsyth Victoria'),
5986
+ (5626, '3137', 'Kilsyth South', 'VIC', 'AU', 491, ' 3137 Kilsyth South Victoria'),
5987
+ (5627, '3138', 'Mooroolbark', 'VIC', 'AU', 491, ' 3138 Mooroolbark Victoria'),
5988
+ (5628, '3139', 'Hoddles Creek', 'VIC', 'AU', 491, ' 3139 Hoddles Creek Victoria'),
5989
+ (5629, '3139', 'Launching Place', 'VIC', 'AU', 491, ' 3139 Launching Place Victoria'),
5990
+ (5630, '3139', 'Seville', 'VIC', 'AU', 491, ' 3139 Seville Victoria'),
5991
+ (5631, '3139', 'Seville East', 'VIC', 'AU', 491, ' 3139 Seville East Victoria'),
5992
+ (5632, '3139', 'Wandin East', 'VIC', 'AU', 491, ' 3139 Wandin East Victoria'),
5993
+ (5633, '3139', 'Wandin North', 'VIC', 'AU', 491, ' 3139 Wandin North Victoria'),
5994
+ (5634, '3139', 'Woori Yallock', 'VIC', 'AU', 491, ' 3139 Woori Yallock Victoria'),
5995
+ (5635, '3139', 'Yellingbo', 'VIC', 'AU', 491, ' 3139 Yellingbo Victoria'),
5996
+ (5636, '3139', 'Don Valley', 'VIC', 'AU', 491, ' 3139 Don Valley Victoria'),
5997
+ (5637, '3139', 'Beenak', 'VIC', 'AU', 491, ' 3139 Beenak Victoria'),
5998
+ (5638, '3140', 'Lilydale', 'VIC', 'AU', 491, ' 3140 Lilydale Victoria'),
5999
+ (5639, '3141', 'Domain Road Po', 'VIC', 'AU', 491, ' 3141 Domain Road Po Victoria'),
6000
+ (5640, '3141', 'South Yarra', 'VIC', 'AU', 491, ' 3141 South Yarra Victoria'),
6001
+ (5641, '3141', 'Chapel Street North', 'VIC', 'AU', 491, ' 3141 Chapel Street North Victoria'),
6002
+ (5642, '3142', 'Toorak', 'VIC', 'AU', 491, ' 3142 Toorak Victoria'),
6003
+ (5643, '3142', 'Hawksburn', 'VIC', 'AU', 491, ' 3142 Hawksburn Victoria'),
6004
+ (5644, '3143', 'Armadale', 'VIC', 'AU', 491, ' 3143 Armadale Victoria'),
6005
+ (5645, '3143', 'Armadale North', 'VIC', 'AU', 491, ' 3143 Armadale North Victoria'),
6006
+ (5646, '3144', 'Kooyong', 'VIC', 'AU', 491, ' 3144 Kooyong Victoria'),
6007
+ (5647, '3144', 'Malvern', 'VIC', 'AU', 491, ' 3144 Malvern Victoria'),
6008
+ (5648, '3144', 'Malvern North', 'VIC', 'AU', 491, ' 3144 Malvern North Victoria'),
6009
+ (5649, '3145', 'Wattletree Road Po', 'VIC', 'AU', 491, ' 3145 Wattletree Road Po Victoria'),
6010
+ (5650, '3145', 'Caulfield East', 'VIC', 'AU', 491, ' 3145 Caulfield East Victoria'),
6011
+ (5651, '3145', 'Central Park', 'VIC', 'AU', 491, ' 3145 Central Park Victoria'),
6012
+ (5652, '3145', 'Darling', 'VIC', 'AU', 491, ' 3145 Darling Victoria'),
6013
+ (5653, '3145', 'Darling South', 'VIC', 'AU', 491, ' 3145 Darling South Victoria'),
6014
+ (5654, '3145', 'Malvern East', 'VIC', 'AU', 491, ' 3145 Malvern East Victoria'),
6015
+ (5655, '3146', 'Glen Iris', 'VIC', 'AU', 491, ' 3146 Glen Iris Victoria'),
6016
+ (5656, '3147', 'Ashburton', 'VIC', 'AU', 491, ' 3147 Ashburton Victoria'),
6017
+ (5657, '3147', 'Ashwood', 'VIC', 'AU', 491, ' 3147 Ashwood Victoria'),
6018
+ (5658, '3148', 'Jordanville', 'VIC', 'AU', 491, ' 3148 Jordanville Victoria'),
6019
+ (5659, '3148', 'Holmesglen', 'VIC', 'AU', 491, ' 3148 Holmesglen Victoria'),
6020
+ (5660, '3148', 'Chadstone', 'VIC', 'AU', 491, ' 3148 Chadstone Victoria'),
6021
+ (5661, '3148', 'Chadstone Centre', 'VIC', 'AU', 491, ' 3148 Chadstone Centre Victoria'),
6022
+ (5662, '3149', 'Mount Waverley', 'VIC', 'AU', 491, ' 3149 Mount Waverley Victoria'),
6023
+ (5663, '3149', 'Pinewood', 'VIC', 'AU', 491, ' 3149 Pinewood Victoria'),
6024
+ (5664, '3149', 'Syndal', 'VIC', 'AU', 491, ' 3149 Syndal Victoria'),
6025
+ (5665, '3150', 'Wheelers Hill', 'VIC', 'AU', 491, ' 3150 Wheelers Hill Victoria'),
6026
+ (5666, '3150', 'Glen Waverley', 'VIC', 'AU', 491, ' 3150 Glen Waverley Victoria'),
6027
+ (5667, '3150', 'Brandon Park', 'VIC', 'AU', 491, ' 3150 Brandon Park Victoria'),
6028
+ (5668, '3151', 'Burwood East', 'VIC', 'AU', 491, ' 3151 Burwood East Victoria'),
6029
+ (5669, '3151', 'Burwood Heights', 'VIC', 'AU', 491, ' 3151 Burwood Heights Victoria'),
6030
+ (5670, '3152', 'Wantirna', 'VIC', 'AU', 491, ' 3152 Wantirna Victoria'),
6031
+ (5671, '3152', 'Wantirna South', 'VIC', 'AU', 491, ' 3152 Wantirna South Victoria'),
6032
+ (5672, '3152', 'Studfield', 'VIC', 'AU', 491, ' 3152 Studfield Victoria'),
6033
+ (5673, '3152', 'Knox City Centre', 'VIC', 'AU', 491, ' 3152 Knox City Centre Victoria'),
6034
+ (5674, '3153', 'Bayswater', 'VIC', 'AU', 491, ' 3153 Bayswater Victoria'),
6035
+ (5675, '3153', 'Bayswater North', 'VIC', 'AU', 491, ' 3153 Bayswater North Victoria'),
6036
+ (5676, '3154', 'The Basin', 'VIC', 'AU', 491, ' 3154 The Basin Victoria'),
6037
+ (5677, '3155', 'Boronia', 'VIC', 'AU', 491, ' 3155 Boronia Victoria'),
6038
+ (5678, '3156', 'Lysterfield', 'VIC', 'AU', 491, ' 3156 Lysterfield Victoria'),
6039
+ (5679, '3156', 'Lysterfield South', 'VIC', 'AU', 491, ' 3156 Lysterfield South Victoria'),
6040
+ (5680, '3156', 'Ferntree Gully', 'VIC', 'AU', 491, ' 3156 Ferntree Gully Victoria'),
6041
+ (5681, '3156', 'Upper Ferntree Gully', 'VIC', 'AU', 491, ' 3156 Upper Ferntree Gully Victoria'),
6042
+ (5682, '3156', 'Mountain Gate', 'VIC', 'AU', 491, ' 3156 Mountain Gate Victoria'),
6043
+ (5683, '3158', 'Upwey', 'VIC', 'AU', 491, ' 3158 Upwey Victoria'),
6044
+ (5684, '3159', 'Menzies Creek', 'VIC', 'AU', 491, ' 3159 Menzies Creek Victoria'),
6045
+ (5685, '3159', 'Selby', 'VIC', 'AU', 491, ' 3159 Selby Victoria'),
6046
+ (5686, '3160', 'Tecoma', 'VIC', 'AU', 491, ' 3160 Tecoma Victoria'),
6047
+ (5687, '3160', 'Belgrave', 'VIC', 'AU', 491, ' 3160 Belgrave Victoria'),
6048
+ (5688, '3160', 'Belgrave Heights', 'VIC', 'AU', 491, ' 3160 Belgrave Heights Victoria'),
6049
+ (5689, '3160', 'Belgrave South', 'VIC', 'AU', 491, ' 3160 Belgrave South Victoria'),
6050
+ (5690, '3161', 'Caulfield Junction', 'VIC', 'AU', 491, ' 3161 Caulfield Junction Victoria'),
6051
+ (5691, '3161', 'Caulfield North', 'VIC', 'AU', 491, ' 3161 Caulfield North Victoria'),
6052
+ (5692, '3162', 'Caulfield South', 'VIC', 'AU', 491, ' 3162 Caulfield South Victoria'),
6053
+ (5693, '3162', 'Hopetoun Gardens', 'VIC', 'AU', 491, ' 3162 Hopetoun Gardens Victoria'),
6054
+ (5694, '3162', 'Caulfield', 'VIC', 'AU', 491, ' 3162 Caulfield Victoria'),
6055
+ (5695, '3163', 'Booran Road Po', 'VIC', 'AU', 491, ' 3163 Booran Road Po Victoria'),
6056
+ (5696, '3163', 'Carnegie', 'VIC', 'AU', 491, ' 3163 Carnegie Victoria'),
6057
+ (5697, '3163', 'Glen Huntly', 'VIC', 'AU', 491, ' 3163 Glen Huntly Victoria'),
6058
+ (5698, '3163', 'Murrumbeena', 'VIC', 'AU', 491, ' 3163 Murrumbeena Victoria'),
6059
+ (5699, '3164', 'Dandenong South', 'VIC', 'AU', 491, ' 3164 Dandenong South Victoria'),
6060
+ (5700, '3165', 'Coatesville', 'VIC', 'AU', 491, ' 3165 Coatesville Victoria'),
6061
+ (5701, '3165', 'Bentleigh East', 'VIC', 'AU', 491, ' 3165 Bentleigh East Victoria'),
6062
+ (5702, '3166', 'Oakleigh', 'VIC', 'AU', 491, ' 3166 Oakleigh Victoria'),
6063
+ (5703, '3166', 'Oakleigh East', 'VIC', 'AU', 491, ' 3166 Oakleigh East Victoria'),
6064
+ (5704, '3166', 'Hughesdale', 'VIC', 'AU', 491, ' 3166 Hughesdale Victoria'),
6065
+ (5705, '3166', 'Huntingdale', 'VIC', 'AU', 491, ' 3166 Huntingdale Victoria'),
6066
+ (5706, '3167', 'Oakleigh South', 'VIC', 'AU', 491, ' 3167 Oakleigh South Victoria'),
6067
+ (5707, '3168', 'Notting Hill', 'VIC', 'AU', 491, ' 3168 Notting Hill Victoria'),
6068
+ (5708, '3168', 'Clayton', 'VIC', 'AU', 491, ' 3168 Clayton Victoria'),
6069
+ (5709, '3169', 'Clayton South', 'VIC', 'AU', 491, ' 3169 Clayton South Victoria'),
6070
+ (5710, '3169', 'Clarinda', 'VIC', 'AU', 491, ' 3169 Clarinda Victoria'),
6071
+ (5711, '3170', 'Mulgrave', 'VIC', 'AU', 491, ' 3170 Mulgrave Victoria'),
6072
+ (5712, '3170', 'Waverley Gardens', 'VIC', 'AU', 491, ' 3170 Waverley Gardens Victoria'),
6073
+ (5713, '3171', 'Sandown Village', 'VIC', 'AU', 491, ' 3171 Sandown Village Victoria'),
6074
+ (5714, '3171', 'Springvale', 'VIC', 'AU', 491, ' 3171 Springvale Victoria'),
6075
+ (5715, '3172', 'Dingley Village', 'VIC', 'AU', 491, ' 3172 Dingley Village Victoria'),
6076
+ (5716, '3172', 'Springvale South', 'VIC', 'AU', 491, ' 3172 Springvale South Victoria'),
6077
+ (5717, '3173', 'Keysborough', 'VIC', 'AU', 491, ' 3173 Keysborough Victoria'),
6078
+ (5718, '3174', 'Noble Park', 'VIC', 'AU', 491, ' 3174 Noble Park Victoria'),
6079
+ (5719, '3174', 'Noble Park East', 'VIC', 'AU', 491, ' 3174 Noble Park East Victoria'),
6080
+ (5720, '3174', 'Noble Park North', 'VIC', 'AU', 491, ' 3174 Noble Park North Victoria'),
6081
+ (5721, '3175', 'Dandenong South', 'VIC', 'AU', 491, ' 3175 Dandenong South Victoria'),
6082
+ (5722, '3175', 'Dandenong', 'VIC', 'AU', 491, ' 3175 Dandenong Victoria'),
6083
+ (5723, '3175', 'Dandenong East', 'VIC', 'AU', 491, ' 3175 Dandenong East Victoria'),
6084
+ (5724, '3175', 'Dandenong North', 'VIC', 'AU', 491, ' 3175 Dandenong North Victoria'),
6085
+ (5725, '3175', 'Dandenong Plaza', 'VIC', 'AU', 491, ' 3175 Dandenong Plaza Victoria'),
6086
+ (5726, '3175', 'Dunearn', 'VIC', 'AU', 491, ' 3175 Dunearn Victoria'),
6087
+ (5727, '3175', 'Bangholme', 'VIC', 'AU', 491, ' 3175 Bangholme Victoria'),
6088
+ (5728, '3176', 'Scoresby', 'VIC', 'AU', 491, ' 3176 Scoresby Victoria'),
6089
+ (5729, '3177', 'Eumemmerring', 'VIC', 'AU', 491, ' 3177 Eumemmerring Victoria'),
6090
+ (5730, '3177', 'Doveton', 'VIC', 'AU', 491, ' 3177 Doveton Victoria'),
6091
+ (5731, '3178', 'Rowville', 'VIC', 'AU', 491, ' 3178 Rowville Victoria'),
6092
+ (5732, '3179', 'Scoresby', 'VIC', 'AU', 491, ' 3179 Scoresby Victoria'),
6093
+ (5733, '3180', 'Knoxfield', 'VIC', 'AU', 491, ' 3180 Knoxfield Victoria'),
6094
+ (5734, '3181', 'Windsor', 'VIC', 'AU', 491, ' 3181 Windsor Victoria'),
6095
+ (5735, '3181', 'Prahran', 'VIC', 'AU', 491, ' 3181 Prahran Victoria'),
6096
+ (5736, '3181', 'Prahran East', 'VIC', 'AU', 491, ' 3181 Prahran East Victoria'),
6097
+ (5737, '3182', 'St Kilda', 'VIC', 'AU', 491, ' 3182 St Kilda Victoria'),
6098
+ (5738, '3182', 'St Kilda South', 'VIC', 'AU', 491, ' 3182 St Kilda South Victoria'),
6099
+ (5739, '3182', 'St Kilda West', 'VIC', 'AU', 491, ' 3182 St Kilda West Victoria'),
6100
+ (5740, '3183', 'St Kilda East', 'VIC', 'AU', 491, ' 3183 St Kilda East Victoria'),
6101
+ (5741, '3183', 'Balaclava', 'VIC', 'AU', 491, ' 3183 Balaclava Victoria'),
6102
+ (5742, '3184', 'Elwood', 'VIC', 'AU', 491, ' 3184 Elwood Victoria'),
6103
+ (5743, '3184', 'Brighton Road', 'VIC', 'AU', 491, ' 3184 Brighton Road Victoria'),
6104
+ (5744, '3185', 'Gardenvale', 'VIC', 'AU', 491, ' 3185 Gardenvale Victoria'),
6105
+ (5745, '3185', 'Elsternwick', 'VIC', 'AU', 491, ' 3185 Elsternwick Victoria'),
6106
+ (5746, '3185', 'Ripponlea', 'VIC', 'AU', 491, ' 3185 Ripponlea Victoria'),
6107
+ (5747, '3186', 'Dendy', 'VIC', 'AU', 491, ' 3186 Dendy Victoria'),
6108
+ (5748, '3186', 'Were Street Po', 'VIC', 'AU', 491, ' 3186 Were Street Po Victoria'),
6109
+ (5749, '3186', 'Brighton', 'VIC', 'AU', 491, ' 3186 Brighton Victoria'),
6110
+ (5750, '3186', 'Brighton North', 'VIC', 'AU', 491, ' 3186 Brighton North Victoria'),
6111
+ (5751, '3187', 'Brighton East', 'VIC', 'AU', 491, ' 3187 Brighton East Victoria'),
6112
+ (5752, '3187', 'North Road', 'VIC', 'AU', 491, ' 3187 North Road Victoria'),
6113
+ (5753, '3188', 'Hampton', 'VIC', 'AU', 491, ' 3188 Hampton Victoria'),
6114
+ (5754, '3188', 'Hampton East', 'VIC', 'AU', 491, ' 3188 Hampton East Victoria'),
6115
+ (5755, '3188', 'Hampton North', 'VIC', 'AU', 491, ' 3188 Hampton North Victoria'),
6116
+ (5756, '3189', 'Moorabbin', 'VIC', 'AU', 491, ' 3189 Moorabbin Victoria'),
6117
+ (5757, '3189', 'Moorabbin East', 'VIC', 'AU', 491, ' 3189 Moorabbin East Victoria'),
6118
+ (5758, '3189', 'Wishart', 'VIC', 'AU', 491, ' 3189 Wishart Victoria'),
6119
+ (5759, '3190', 'Highett', 'VIC', 'AU', 491, ' 3190 Highett Victoria'),
6120
+ (5760, '3191', 'Sandringham', 'VIC', 'AU', 491, ' 3191 Sandringham Victoria'),
6121
+ (5761, '3192', 'Southland Centre', 'VIC', 'AU', 491, ' 3192 Southland Centre Victoria'),
6122
+ (5762, '3192', 'Cheltenham', 'VIC', 'AU', 491, ' 3192 Cheltenham Victoria'),
6123
+ (5763, '3192', 'Cheltenham East', 'VIC', 'AU', 491, ' 3192 Cheltenham East Victoria'),
6124
+ (5764, '3192', 'Cheltenham North', 'VIC', 'AU', 491, ' 3192 Cheltenham North Victoria'),
6125
+ (5765, '3193', 'Cromer', 'VIC', 'AU', 491, ' 3193 Cromer Victoria'),
6126
+ (5766, '3193', 'Black Rock', 'VIC', 'AU', 491, ' 3193 Black Rock Victoria'),
6127
+ (5767, '3193', 'Black Rock North', 'VIC', 'AU', 491, ' 3193 Black Rock North Victoria'),
6128
+ (5768, '3193', 'Beaumaris', 'VIC', 'AU', 491, ' 3193 Beaumaris Victoria'),
6129
+ (5769, '3194', 'Moorabbin Airport', 'VIC', 'AU', 491, ' 3194 Moorabbin Airport Victoria'),
6130
+ (5770, '3194', 'Mentone', 'VIC', 'AU', 491, ' 3194 Mentone Victoria'),
6131
+ (5771, '3194', 'Mentone East', 'VIC', 'AU', 491, ' 3194 Mentone East Victoria'),
6132
+ (5772, '3195', 'Mordialloc', 'VIC', 'AU', 491, ' 3195 Mordialloc Victoria'),
6133
+ (5773, '3195', 'Mordialloc North', 'VIC', 'AU', 491, ' 3195 Mordialloc North Victoria'),
6134
+ (5774, '3195', 'Parkdale', 'VIC', 'AU', 491, ' 3195 Parkdale Victoria'),
6135
+ (5775, '3195', 'Waterways', 'VIC', 'AU', 491, ' 3195 Waterways Victoria'),
6136
+ (5776, '3195', 'Aspendale', 'VIC', 'AU', 491, ' 3195 Aspendale Victoria'),
6137
+ (5777, '3195', 'Aspendale Gardens', 'VIC', 'AU', 491, ' 3195 Aspendale Gardens Victoria'),
6138
+ (5778, '3195', 'Braeside', 'VIC', 'AU', 491, ' 3195 Braeside Victoria'),
6139
+ (5779, '3196', 'Chelsea', 'VIC', 'AU', 491, ' 3196 Chelsea Victoria'),
6140
+ (5780, '3196', 'Chelsea Heights', 'VIC', 'AU', 491, ' 3196 Chelsea Heights Victoria'),
6141
+ (5781, '3196', 'Bonbeach', 'VIC', 'AU', 491, ' 3196 Bonbeach Victoria'),
6142
+ (5782, '3196', 'Edithvale', 'VIC', 'AU', 491, ' 3196 Edithvale Victoria'),
6143
+ (5783, '3197', 'Patterson Lakes', 'VIC', 'AU', 491, ' 3197 Patterson Lakes Victoria'),
6144
+ (5784, '3197', 'Carrum', 'VIC', 'AU', 491, ' 3197 Carrum Victoria'),
6145
+ (5785, '3198', 'Belvedere Park', 'VIC', 'AU', 491, ' 3198 Belvedere Park Victoria'),
6146
+ (5786, '3198', 'Seaford', 'VIC', 'AU', 491, ' 3198 Seaford Victoria'),
6147
+ (5787, '3199', 'Frankston', 'VIC', 'AU', 491, ' 3199 Frankston Victoria'),
6148
+ (5788, '3199', 'Frankston East', 'VIC', 'AU', 491, ' 3199 Frankston East Victoria'),
6149
+ (5789, '3199', 'Frankston Heights', 'VIC', 'AU', 491, ' 3199 Frankston Heights Victoria'),
6150
+ (5790, '3199', 'Frankston South', 'VIC', 'AU', 491, ' 3199 Frankston South Victoria'),
6151
+ (5791, '3199', 'Karingal', 'VIC', 'AU', 491, ' 3199 Karingal Victoria'),
6152
+ (5792, '3199', 'Karingal Centre', 'VIC', 'AU', 491, ' 3199 Karingal Centre Victoria'),
6153
+ (5793, '3200', 'Frankston North', 'VIC', 'AU', 491, ' 3200 Frankston North Victoria'),
6154
+ (5794, '3200', 'Pines Forest', 'VIC', 'AU', 491, ' 3200 Pines Forest Victoria'),
6155
+ (5795, '3201', 'Carrum Downs', 'VIC', 'AU', 491, ' 3201 Carrum Downs Victoria'),
6156
+ (5796, '3202', 'Heatherton', 'VIC', 'AU', 491, ' 3202 Heatherton Victoria'),
6157
+ (5797, '3204', 'Mckinnon', 'VIC', 'AU', 491, ' 3204 Mckinnon Victoria'),
6158
+ (5798, '3204', 'Patterson', 'VIC', 'AU', 491, ' 3204 Patterson Victoria'),
6159
+ (5799, '3204', 'Ormond', 'VIC', 'AU', 491, ' 3204 Ormond Victoria'),
6160
+ (5800, '3204', 'Bentleigh', 'VIC', 'AU', 491, ' 3204 Bentleigh Victoria'),
6161
+ (5801, '3205', 'South Melbourne', 'VIC', 'AU', 491, ' 3205 South Melbourne Victoria'),
6162
+ (5802, '3206', 'Middle Park', 'VIC', 'AU', 491, ' 3206 Middle Park Victoria'),
6163
+ (5803, '3206', 'Albert Park', 'VIC', 'AU', 491, ' 3206 Albert Park Victoria'),
6164
+ (5804, '3207', 'Port Melbourne', 'VIC', 'AU', 491, ' 3207 Port Melbourne Victoria'),
6165
+ (5805, '3207', 'Garden City', 'VIC', 'AU', 491, ' 3207 Garden City Victoria'),
6166
+ (5806, '3211', 'Little River', 'VIC', 'AU', 491, ' 3211 Little River Victoria'),
6167
+ (5807, '3212', 'Lara', 'VIC', 'AU', 491, ' 3212 Lara Victoria'),
6168
+ (5808, '3212', 'Point Wilson', 'VIC', 'AU', 491, ' 3212 Point Wilson Victoria'),
6169
+ (5809, '3212', 'Avalon', 'VIC', 'AU', 491, ' 3212 Avalon Victoria'),
6170
+ (5810, '3214', 'Norlane', 'VIC', 'AU', 491, ' 3214 Norlane Victoria'),
6171
+ (5811, '3214', 'North Shore', 'VIC', 'AU', 491, ' 3214 North Shore Victoria'),
6172
+ (5812, '3214', 'Corio', 'VIC', 'AU', 491, ' 3214 Corio Victoria'),
6173
+ (5813, '3215', 'Drumcondra', 'VIC', 'AU', 491, ' 3215 Drumcondra Victoria'),
6174
+ (5814, '3215', 'Geelong North', 'VIC', 'AU', 491, ' 3215 Geelong North Victoria'),
6175
+ (5815, '3215', 'Hamlyn Heights', 'VIC', 'AU', 491, ' 3215 Hamlyn Heights Victoria'),
6176
+ (5816, '3215', 'Rippleside', 'VIC', 'AU', 491, ' 3215 Rippleside Victoria'),
6177
+ (5817, '3215', 'North Geelong', 'VIC', 'AU', 491, ' 3215 North Geelong Victoria'),
6178
+ (5818, '3215', 'Bell Park', 'VIC', 'AU', 491, ' 3215 Bell Park Victoria'),
6179
+ (5819, '3215', 'Bell Post Hill', 'VIC', 'AU', 491, ' 3215 Bell Post Hill Victoria'),
6180
+ (5820, '3216', 'Belmont', 'VIC', 'AU', 491, ' 3216 Belmont Victoria'),
6181
+ (5821, '3216', 'Wandana Heights', 'VIC', 'AU', 491, ' 3216 Wandana Heights Victoria'),
6182
+ (5822, '3216', 'Waurn Ponds', 'VIC', 'AU', 491, ' 3216 Waurn Ponds Victoria'),
6183
+ (5823, '3216', 'Highton', 'VIC', 'AU', 491, ' 3216 Highton Victoria'),
6184
+ (5824, '3216', 'Grovedale', 'VIC', 'AU', 491, ' 3216 Grovedale Victoria'),
6185
+ (5825, '3216', 'Grovedale East', 'VIC', 'AU', 491, ' 3216 Grovedale East Victoria'),
6186
+ (5826, '3216', 'Freshwater Creek', 'VIC', 'AU', 491, ' 3216 Freshwater Creek Victoria'),
6187
+ (5827, '3216', 'Marshall', 'VIC', 'AU', 491, ' 3216 Marshall Victoria'),
6188
+ (5828, '3216', 'Mount Duneed', 'VIC', 'AU', 491, ' 3216 Mount Duneed Victoria'),
6189
+ (5829, '3217', 'Deakin University', 'VIC', 'AU', 491, ' 3217 Deakin University Victoria'),
6190
+ (5830, '3218', 'Geelong West', 'VIC', 'AU', 491, ' 3218 Geelong West Victoria'),
6191
+ (5831, '3218', 'Herne Hill', 'VIC', 'AU', 491, ' 3218 Herne Hill Victoria'),
6192
+ (5832, '3218', 'Manifold Heights', 'VIC', 'AU', 491, ' 3218 Manifold Heights Victoria'),
6193
+ (5833, '3219', 'East Geelong', 'VIC', 'AU', 491, ' 3219 East Geelong Victoria'),
6194
+ (5834, '3219', 'Breakwater', 'VIC', 'AU', 491, ' 3219 Breakwater Victoria'),
6195
+ (5835, '3219', 'Thomson', 'VIC', 'AU', 491, ' 3219 Thomson Victoria'),
6196
+ (5836, '3219', 'St Albans Park', 'VIC', 'AU', 491, ' 3219 St Albans Park Victoria'),
6197
+ (5837, '3219', 'Newcomb', 'VIC', 'AU', 491, ' 3219 Newcomb Victoria'),
6198
+ (5838, '3219', 'Whittington', 'VIC', 'AU', 491, ' 3219 Whittington Victoria'),
6199
+ (5839, '3220', 'Newtown', 'VIC', 'AU', 491, ' 3220 Newtown Victoria'),
6200
+ (5840, '3220', 'South Geelong', 'VIC', 'AU', 491, ' 3220 South Geelong Victoria'),
6201
+ (5841, '3220', 'Geelong', 'VIC', 'AU', 491, ' 3220 Geelong Victoria'),
6202
+ (5842, '3220', 'Bareena', 'VIC', 'AU', 491, ' 3220 Bareena Victoria'),
6203
+ (5843, '3221', 'Staughton Vale', 'VIC', 'AU', 491, ' 3221 Staughton Vale Victoria'),
6204
+ (5844, '3221', 'Stonehaven', 'VIC', 'AU', 491, ' 3221 Stonehaven Victoria'),
6205
+ (5845, '3221', 'Sugarloaf', 'VIC', 'AU', 491, ' 3221 Sugarloaf Victoria'),
6206
+ (5846, '3221', 'Wallington', 'VIC', 'AU', 491, ' 3221 Wallington Victoria'),
6207
+ (5847, '3221', 'Moolap', 'VIC', 'AU', 491, ' 3221 Moolap Victoria'),
6208
+ (5848, '3221', 'Moorabool', 'VIC', 'AU', 491, ' 3221 Moorabool Victoria'),
6209
+ (5849, '3221', 'Kennett River', 'VIC', 'AU', 491, ' 3221 Kennett River Victoria'),
6210
+ (5850, '3221', 'Lovely Banks', 'VIC', 'AU', 491, ' 3221 Lovely Banks Victoria'),
6211
+ (5851, '3221', 'Murgheboluc', 'VIC', 'AU', 491, ' 3221 Murgheboluc Victoria'),
6212
+ (5852, '3221', 'Separation Creek', 'VIC', 'AU', 491, ' 3221 Separation Creek Victoria'),
6213
+ (5853, '3221', 'Anakie', 'VIC', 'AU', 491, ' 3221 Anakie Victoria'),
6214
+ (5854, '3221', 'Barrabool', 'VIC', 'AU', 491, ' 3221 Barrabool Victoria'),
6215
+ (5855, '3221', 'Batesford', 'VIC', 'AU', 491, ' 3221 Batesford Victoria'),
6216
+ (5856, '3221', 'Bellarine', 'VIC', 'AU', 491, ' 3221 Bellarine Victoria'),
6217
+ (5857, '3221', 'Wongarra', 'VIC', 'AU', 491, ' 3221 Wongarra Victoria'),
6218
+ (5858, '3221', 'Wye River', 'VIC', 'AU', 491, ' 3221 Wye River Victoria'),
6219
+ (5859, '3221', 'Ceres', 'VIC', 'AU', 491, ' 3221 Ceres Victoria'),
6220
+ (5860, '3221', 'Fyansford', 'VIC', 'AU', 491, ' 3221 Fyansford Victoria'),
6221
+ (5861, '3221', 'Geelong', 'VIC', 'AU', 491, ' 3221 Geelong Victoria'),
6222
+ (5862, '3221', 'Gnarwarre', 'VIC', 'AU', 491, ' 3221 Gnarwarre Victoria'),
6223
+ (5863, '3221', 'Grey River', 'VIC', 'AU', 491, ' 3221 Grey River Victoria'),
6224
+ (5864, '3222', 'Drysdale', 'VIC', 'AU', 491, ' 3222 Drysdale Victoria'),
6225
+ (5865, '3222', 'Clifton Springs', 'VIC', 'AU', 491, ' 3222 Clifton Springs Victoria'),
6226
+ (5866, '3222', 'Curlewis', 'VIC', 'AU', 491, ' 3222 Curlewis Victoria'),
6227
+ (5867, '3222', 'Marcus Hill', 'VIC', 'AU', 491, ' 3222 Marcus Hill Victoria'),
6228
+ (5868, '3222', 'Mannerim', 'VIC', 'AU', 491, ' 3222 Mannerim Victoria'),
6229
+ (5869, '3223', 'St Leonards', 'VIC', 'AU', 491, ' 3223 St Leonards Victoria'),
6230
+ (5870, '3223', 'Portarlington', 'VIC', 'AU', 491, ' 3223 Portarlington Victoria'),
6231
+ (5871, '3223', 'Indented Head', 'VIC', 'AU', 491, ' 3223 Indented Head Victoria'),
6232
+ (5872, '3224', 'Leopold', 'VIC', 'AU', 491, ' 3224 Leopold Victoria'),
6233
+ (5873, '3225', 'Queenscliff', 'VIC', 'AU', 491, ' 3225 Queenscliff Victoria'),
6234
+ (5874, '3225', 'Point Lonsdale', 'VIC', 'AU', 491, ' 3225 Point Lonsdale Victoria'),
6235
+ (5875, '3225', 'Swan Bay', 'VIC', 'AU', 491, ' 3225 Swan Bay Victoria'),
6236
+ (5876, '3225', 'Swan Island', 'VIC', 'AU', 491, ' 3225 Swan Island Victoria'),
6237
+ (5877, '3226', 'Ocean Grove', 'VIC', 'AU', 491, ' 3226 Ocean Grove Victoria'),
6238
+ (5878, '3227', 'Connewarre', 'VIC', 'AU', 491, ' 3227 Connewarre Victoria'),
6239
+ (5879, '3227', 'Breamlea', 'VIC', 'AU', 491, ' 3227 Breamlea Victoria'),
6240
+ (5880, '3227', 'Barwon Heads', 'VIC', 'AU', 491, ' 3227 Barwon Heads Victoria'),
6241
+ (5881, '3228', 'Bellbrae', 'VIC', 'AU', 491, ' 3228 Bellbrae Victoria'),
6242
+ (5882, '3228', 'Bells Beach', 'VIC', 'AU', 491, ' 3228 Bells Beach Victoria'),
6243
+ (5883, '3228', 'Jan Juc', 'VIC', 'AU', 491, ' 3228 Jan Juc Victoria'),
6244
+ (5884, '3228', 'Torquay', 'VIC', 'AU', 491, ' 3228 Torquay Victoria'),
6245
+ (5885, '3230', 'Anglesea', 'VIC', 'AU', 491, ' 3230 Anglesea Victoria'),
6246
+ (5886, '3231', 'Aireys Inlet', 'VIC', 'AU', 491, ' 3231 Aireys Inlet Victoria'),
6247
+ (5887, '3231', 'Big Hill', 'VIC', 'AU', 491, ' 3231 Big Hill Victoria'),
6248
+ (5888, '3231', 'Eastern View', 'VIC', 'AU', 491, ' 3231 Eastern View Victoria'),
6249
+ (5889, '3231', 'Fairhaven', 'VIC', 'AU', 491, ' 3231 Fairhaven Victoria'),
6250
+ (5890, '3231', 'Moggs Creek', 'VIC', 'AU', 491, ' 3231 Moggs Creek Victoria'),
6251
+ (5891, '3232', 'Lorne', 'VIC', 'AU', 491, ' 3232 Lorne Victoria'),
6252
+ (5892, '3233', 'Marengo', 'VIC', 'AU', 491, ' 3233 Marengo Victoria'),
6253
+ (5893, '3233', 'Petticoat Creek', 'VIC', 'AU', 491, ' 3233 Petticoat Creek Victoria'),
6254
+ (5894, '3233', 'Skenes Creek', 'VIC', 'AU', 491, ' 3233 Skenes Creek Victoria'),
6255
+ (5895, '3233', 'Skenes Creek North', 'VIC', 'AU', 491, ' 3233 Skenes Creek North Victoria'),
6256
+ (5896, '3233', 'Cape Otway', 'VIC', 'AU', 491, ' 3233 Cape Otway Victoria'),
6257
+ (5897, '3233', 'Apollo Bay', 'VIC', 'AU', 491, ' 3233 Apollo Bay Victoria'),
6258
+ (5898, '3235', 'Benwerrin', 'VIC', 'AU', 491, ' 3235 Benwerrin Victoria'),
6259
+ (5899, '3235', 'Boonah', 'VIC', 'AU', 491, ' 3235 Boonah Victoria'),
6260
+ (5900, '3235', 'Deans Marsh', 'VIC', 'AU', 491, ' 3235 Deans Marsh Victoria'),
6261
+ (5901, '3235', 'Pennyroyal', 'VIC', 'AU', 491, ' 3235 Pennyroyal Victoria'),
6262
+ (5902, '3236', 'Mount Sabine', 'VIC', 'AU', 491, ' 3236 Mount Sabine Victoria'),
6263
+ (5903, '3236', 'Forrest', 'VIC', 'AU', 491, ' 3236 Forrest Victoria'),
6264
+ (5904, '3237', 'Ferguson', 'VIC', 'AU', 491, ' 3237 Ferguson Victoria'),
6265
+ (5905, '3237', 'Gellibrand Lower', 'VIC', 'AU', 491, ' 3237 Gellibrand Lower Victoria'),
6266
+ (5906, '3237', 'Beech Forest', 'VIC', 'AU', 491, ' 3237 Beech Forest Victoria'),
6267
+ (5907, '3237', 'Aire Valley', 'VIC', 'AU', 491, ' 3237 Aire Valley Victoria'),
6268
+ (5908, '3237', 'Wyelangta', 'VIC', 'AU', 491, ' 3237 Wyelangta Victoria'),
6269
+ (5909, '3237', 'Yuulong', 'VIC', 'AU', 491, ' 3237 Yuulong Victoria'),
6270
+ (5910, '3237', 'Wattle Hill', 'VIC', 'AU', 491, ' 3237 Wattle Hill Victoria'),
6271
+ (5911, '3237', 'Weeaproinah', 'VIC', 'AU', 491, ' 3237 Weeaproinah Victoria'),
6272
+ (5912, '3238', 'Lavers Hill', 'VIC', 'AU', 491, ' 3238 Lavers Hill Victoria'),
6273
+ (5913, '3238', 'Johanna', 'VIC', 'AU', 491, ' 3238 Johanna Victoria'),
6274
+ (5914, '3238', 'Glenaire', 'VIC', 'AU', 491, ' 3238 Glenaire Victoria'),
6275
+ (5915, '3238', 'Hordern Vale', 'VIC', 'AU', 491, ' 3238 Hordern Vale Victoria'),
6276
+ (5916, '3239', 'Gellibrand', 'VIC', 'AU', 491, ' 3239 Gellibrand Victoria'),
6277
+ (5917, '3239', 'Chapple Vale', 'VIC', 'AU', 491, ' 3239 Chapple Vale Victoria'),
6278
+ (5918, '3239', 'Carlisle River', 'VIC', 'AU', 491, ' 3239 Carlisle River Victoria'),
6279
+ (5919, '3239', 'Kennedys Creek', 'VIC', 'AU', 491, ' 3239 Kennedys Creek Victoria'),
6280
+ (5920, '3240', 'Modewarre', 'VIC', 'AU', 491, ' 3240 Modewarre Victoria'),
6281
+ (5921, '3240', 'Moriac', 'VIC', 'AU', 491, ' 3240 Moriac Victoria'),
6282
+ (5922, '3240', 'Mount Moriac', 'VIC', 'AU', 491, ' 3240 Mount Moriac Victoria'),
6283
+ (5923, '3240', 'Paraparap', 'VIC', 'AU', 491, ' 3240 Paraparap Victoria'),
6284
+ (5924, '3240', 'Buckley', 'VIC', 'AU', 491, ' 3240 Buckley Victoria'),
6285
+ (5925, '3240', 'Gherang', 'VIC', 'AU', 491, ' 3240 Gherang Victoria'),
6286
+ (5926, '3241', 'Wurdiboluc', 'VIC', 'AU', 491, ' 3241 Wurdiboluc Victoria'),
6287
+ (5927, '3241', 'Winchelsea South', 'VIC', 'AU', 491, ' 3241 Winchelsea South Victoria'),
6288
+ (5928, '3241', 'Bambra', 'VIC', 'AU', 491, ' 3241 Bambra Victoria'),
6289
+ (5929, '3241', 'Ombersley', 'VIC', 'AU', 491, ' 3241 Ombersley Victoria'),
6290
+ (5930, '3241', 'Wensleydale', 'VIC', 'AU', 491, ' 3241 Wensleydale Victoria'),
6291
+ (5931, '3241', 'Winchelsea', 'VIC', 'AU', 491, ' 3241 Winchelsea Victoria'),
6292
+ (5932, '3242', 'Birregurra', 'VIC', 'AU', 491, ' 3242 Birregurra Victoria'),
6293
+ (5933, '3243', 'Barwon Downs', 'VIC', 'AU', 491, ' 3243 Barwon Downs Victoria'),
6294
+ (5934, '3243', 'Whoorel', 'VIC', 'AU', 491, ' 3243 Whoorel Victoria'),
6295
+ (5935, '3243', 'Warncoort', 'VIC', 'AU', 491, ' 3243 Warncoort Victoria'),
6296
+ (5936, '3243', 'Murroon', 'VIC', 'AU', 491, ' 3243 Murroon Victoria'),
6297
+ (5937, '3249', 'Nalangil', 'VIC', 'AU', 491, ' 3249 Nalangil Victoria'),
6298
+ (5938, '3249', 'Ondit', 'VIC', 'AU', 491, ' 3249 Ondit Victoria'),
6299
+ (5939, '3249', 'Pirron Yallock', 'VIC', 'AU', 491, ' 3249 Pirron Yallock Victoria'),
6300
+ (5940, '3249', 'Pomborneit East', 'VIC', 'AU', 491, ' 3249 Pomborneit East Victoria'),
6301
+ (5941, '3249', 'Kawarren', 'VIC', 'AU', 491, ' 3249 Kawarren Victoria'),
6302
+ (5942, '3249', 'Larpent', 'VIC', 'AU', 491, ' 3249 Larpent Victoria'),
6303
+ (5943, '3249', 'Warrion', 'VIC', 'AU', 491, ' 3249 Warrion Victoria'),
6304
+ (5944, '3249', 'Tanybryn', 'VIC', 'AU', 491, ' 3249 Tanybryn Victoria'),
6305
+ (5945, '3249', 'Swan Marsh', 'VIC', 'AU', 491, ' 3249 Swan Marsh Victoria'),
6306
+ (5946, '3249', 'Barongarook', 'VIC', 'AU', 491, ' 3249 Barongarook Victoria'),
6307
+ (5947, '3249', 'Barongarook West', 'VIC', 'AU', 491, ' 3249 Barongarook West Victoria'),
6308
+ (5948, '3249', 'Barramunga', 'VIC', 'AU', 491, ' 3249 Barramunga Victoria'),
6309
+ (5949, '3249', 'Balintore', 'VIC', 'AU', 491, ' 3249 Balintore Victoria'),
6310
+ (5950, '3249', 'Alvie', 'VIC', 'AU', 491, ' 3249 Alvie Victoria'),
6311
+ (5951, '3249', 'Wool Wool', 'VIC', 'AU', 491, ' 3249 Wool Wool Victoria'),
6312
+ (5952, '3249', 'Yeo', 'VIC', 'AU', 491, ' 3249 Yeo Victoria'),
6313
+ (5953, '3249', 'Yeodene', 'VIC', 'AU', 491, ' 3249 Yeodene Victoria'),
6314
+ (5954, '3249', 'Gerangamete', 'VIC', 'AU', 491, ' 3249 Gerangamete Victoria'),
6315
+ (5955, '3249', 'Irrewarra', 'VIC', 'AU', 491, ' 3249 Irrewarra Victoria'),
6316
+ (5956, '3249', 'Irrewillipe', 'VIC', 'AU', 491, ' 3249 Irrewillipe Victoria'),
6317
+ (5957, '3249', 'Irrewillipe East', 'VIC', 'AU', 491, ' 3249 Irrewillipe East Victoria'),
6318
+ (5958, '3249', 'Dreeite', 'VIC', 'AU', 491, ' 3249 Dreeite Victoria'),
6319
+ (5959, '3249', 'Dreeite South', 'VIC', 'AU', 491, ' 3249 Dreeite South Victoria'),
6320
+ (5960, '3249', 'Coragulac', 'VIC', 'AU', 491, ' 3249 Coragulac Victoria'),
6321
+ (5961, '3249', 'Corunnun', 'VIC', 'AU', 491, ' 3249 Corunnun Victoria'),
6322
+ (5962, '3250', 'Colac', 'VIC', 'AU', 491, ' 3250 Colac Victoria'),
6323
+ (5963, '3250', 'Colac East', 'VIC', 'AU', 491, ' 3250 Colac East Victoria'),
6324
+ (5964, '3250', 'Colac West', 'VIC', 'AU', 491, ' 3250 Colac West Victoria'),
6325
+ (5965, '3250', 'Elliminyt', 'VIC', 'AU', 491, ' 3250 Elliminyt Victoria'),
6326
+ (5966, '3251', 'Eurack', 'VIC', 'AU', 491, ' 3251 Eurack Victoria'),
6327
+ (5967, '3251', 'Cundare', 'VIC', 'AU', 491, ' 3251 Cundare Victoria'),
6328
+ (5968, '3251', 'Cundare North', 'VIC', 'AU', 491, ' 3251 Cundare North Victoria'),
6329
+ (5969, '3251', 'Beeac', 'VIC', 'AU', 491, ' 3251 Beeac Victoria'),
6330
+ (5970, '3251', 'Weering', 'VIC', 'AU', 491, ' 3251 Weering Victoria'),
6331
+ (5971, '3254', 'Cororooke', 'VIC', 'AU', 491, ' 3254 Cororooke Victoria'),
6332
+ (5972, '3260', 'Chocolyn', 'VIC', 'AU', 491, ' 3260 Chocolyn Victoria'),
6333
+ (5973, '3260', 'Carpendeit', 'VIC', 'AU', 491, ' 3260 Carpendeit Victoria'),
6334
+ (5974, '3260', 'Bungador', 'VIC', 'AU', 491, ' 3260 Bungador Victoria'),
6335
+ (5975, '3260', 'Bookaar', 'VIC', 'AU', 491, ' 3260 Bookaar Victoria'),
6336
+ (5976, '3260', 'Bostocks Creek', 'VIC', 'AU', 491, ' 3260 Bostocks Creek Victoria'),
6337
+ (5977, '3260', 'Camperdown', 'VIC', 'AU', 491, ' 3260 Camperdown Victoria'),
6338
+ (5978, '3260', 'Gnotuk', 'VIC', 'AU', 491, ' 3260 Gnotuk Victoria'),
6339
+ (5979, '3260', 'Weerite', 'VIC', 'AU', 491, ' 3260 Weerite Victoria'),
6340
+ (5980, '3260', 'Stonyford', 'VIC', 'AU', 491, ' 3260 Stonyford Victoria'),
6341
+ (5981, '3260', 'Tandarook', 'VIC', 'AU', 491, ' 3260 Tandarook Victoria'),
6342
+ (5982, '3260', 'Tesbury', 'VIC', 'AU', 491, ' 3260 Tesbury Victoria'),
6343
+ (5983, '3260', 'Leslie Manor', 'VIC', 'AU', 491, ' 3260 Leslie Manor Victoria'),
6344
+ (5984, '3260', 'Kariah', 'VIC', 'AU', 491, ' 3260 Kariah Victoria'),
6345
+ (5985, '3260', 'Koallah', 'VIC', 'AU', 491, ' 3260 Koallah Victoria'),
6346
+ (5986, '3260', 'Pomborneit North', 'VIC', 'AU', 491, ' 3260 Pomborneit North Victoria'),
6347
+ (5987, '3260', 'Pomborneit', 'VIC', 'AU', 491, ' 3260 Pomborneit Victoria'),
6348
+ (5988, '3260', 'Skibo', 'VIC', 'AU', 491, ' 3260 Skibo Victoria'),
6349
+ (5989, '3260', 'South Purrumbete', 'VIC', 'AU', 491, ' 3260 South Purrumbete Victoria'),
6350
+ (5990, '3264', 'Terang', 'VIC', 'AU', 491, ' 3264 Terang Victoria'),
6351
+ (5991, '3265', 'Taroon', 'VIC', 'AU', 491, ' 3265 Taroon Victoria'),
6352
+ (5992, '3265', 'The Sisters', 'VIC', 'AU', 491, ' 3265 The Sisters Victoria'),
6353
+ (5993, '3265', 'Panmure', 'VIC', 'AU', 491, ' 3265 Panmure Victoria'),
6354
+ (5994, '3265', 'Noorat', 'VIC', 'AU', 491, ' 3265 Noorat Victoria'),
6355
+ (5995, '3265', 'Noorat East', 'VIC', 'AU', 491, ' 3265 Noorat East Victoria'),
6356
+ (5996, '3265', 'Kolora', 'VIC', 'AU', 491, ' 3265 Kolora Victoria'),
6357
+ (5997, '3265', 'Laang', 'VIC', 'AU', 491, ' 3265 Laang Victoria'),
6358
+ (5998, '3265', 'Glenormiston North', 'VIC', 'AU', 491, ' 3265 Glenormiston North Victoria'),
6359
+ (5999, '3265', 'Glenormiston South', 'VIC', 'AU', 491, ' 3265 Glenormiston South Victoria'),
6360
+ (6000, '3265', 'Garvoc', 'VIC', 'AU', 491, ' 3265 Garvoc Victoria'),
6361
+ (6001, '3265', 'Framlingham', 'VIC', 'AU', 491, ' 3265 Framlingham Victoria'),
6362
+ (6002, '3265', 'Framlingham East', 'VIC', 'AU', 491, ' 3265 Framlingham East Victoria'),
6363
+ (6003, '3265', 'Ellerslie', 'VIC', 'AU', 491, ' 3265 Ellerslie Victoria'),
6364
+ (6004, '3265', 'Ecklin South', 'VIC', 'AU', 491, ' 3265 Ecklin South Victoria'),
6365
+ (6005, '3265', 'Dixie', 'VIC', 'AU', 491, ' 3265 Dixie Victoria'),
6366
+ (6006, '3265', 'Boorcan', 'VIC', 'AU', 491, ' 3265 Boorcan Victoria'),
6367
+ (6007, '3265', 'Cudgee', 'VIC', 'AU', 491, ' 3265 Cudgee Victoria'),
6368
+ (6008, '3266', 'Cobden', 'VIC', 'AU', 491, ' 3266 Cobden Victoria'),
6369
+ (6009, '3266', 'Cobrico', 'VIC', 'AU', 491, ' 3266 Cobrico Victoria'),
6370
+ (6010, '3266', 'Bullaharre', 'VIC', 'AU', 491, ' 3266 Bullaharre Victoria'),
6371
+ (6011, '3266', 'Elingamite', 'VIC', 'AU', 491, ' 3266 Elingamite Victoria'),
6372
+ (6012, '3266', 'Elingamite North', 'VIC', 'AU', 491, ' 3266 Elingamite North Victoria'),
6373
+ (6013, '3266', 'Glenfyne', 'VIC', 'AU', 491, ' 3266 Glenfyne Victoria'),
6374
+ (6014, '3266', 'Jancourt', 'VIC', 'AU', 491, ' 3266 Jancourt Victoria'),
6375
+ (6015, '3266', 'Jancourt East', 'VIC', 'AU', 491, ' 3266 Jancourt East Victoria'),
6376
+ (6016, '3266', 'Naroghid', 'VIC', 'AU', 491, ' 3266 Naroghid Victoria'),
6377
+ (6017, '3266', 'Simpson', 'VIC', 'AU', 491, ' 3266 Simpson Victoria'),
6378
+ (6018, '3267', 'Scotts Creek', 'VIC', 'AU', 491, ' 3267 Scotts Creek Victoria'),
6379
+ (6019, '3268', 'Paaratte', 'VIC', 'AU', 491, ' 3268 Paaratte Victoria'),
6380
+ (6020, '3268', 'Nirranda', 'VIC', 'AU', 491, ' 3268 Nirranda Victoria'),
6381
+ (6021, '3268', 'Nirranda East', 'VIC', 'AU', 491, ' 3268 Nirranda East Victoria'),
6382
+ (6022, '3268', 'Nirranda South', 'VIC', 'AU', 491, ' 3268 Nirranda South Victoria'),
6383
+ (6023, '3268', 'Newfield', 'VIC', 'AU', 491, ' 3268 Newfield Victoria'),
6384
+ (6024, '3268', 'Nullawarre', 'VIC', 'AU', 491, ' 3268 Nullawarre Victoria'),
6385
+ (6025, '3268', 'Nullawarre North', 'VIC', 'AU', 491, ' 3268 Nullawarre North Victoria'),
6386
+ (6026, '3268', 'The Cove', 'VIC', 'AU', 491, ' 3268 The Cove Victoria'),
6387
+ (6027, '3268', 'Timboon', 'VIC', 'AU', 491, ' 3268 Timboon Victoria'),
6388
+ (6028, '3268', 'Timboon West', 'VIC', 'AU', 491, ' 3268 Timboon West Victoria'),
6389
+ (6029, '3268', 'Heytesbury Lower', 'VIC', 'AU', 491, ' 3268 Heytesbury Lower Victoria'),
6390
+ (6030, '3268', 'Brucknell', 'VIC', 'AU', 491, ' 3268 Brucknell Victoria'),
6391
+ (6031, '3268', 'Curdies River', 'VIC', 'AU', 491, ' 3268 Curdies River Victoria'),
6392
+ (6032, '3268', 'Curdievale', 'VIC', 'AU', 491, ' 3268 Curdievale Victoria'),
6393
+ (6033, '3268', 'Cowleys Creek', 'VIC', 'AU', 491, ' 3268 Cowleys Creek Victoria'),
6394
+ (6034, '3268', 'Cooriemungle', 'VIC', 'AU', 491, ' 3268 Cooriemungle Victoria'),
6395
+ (6035, '3268', 'Ayrford', 'VIC', 'AU', 491, ' 3268 Ayrford Victoria'),
6396
+ (6036, '3269', 'Waarre', 'VIC', 'AU', 491, ' 3269 Waarre Victoria'),
6397
+ (6037, '3269', 'Port Campbell', 'VIC', 'AU', 491, ' 3269 Port Campbell Victoria'),
6398
+ (6038, '3269', 'Princetown', 'VIC', 'AU', 491, ' 3269 Princetown Victoria'),
6399
+ (6039, '3270', 'Peterborough', 'VIC', 'AU', 491, ' 3270 Peterborough Victoria'),
6400
+ (6040, '3271', 'Pura Pura', 'VIC', 'AU', 491, ' 3271 Pura Pura Victoria'),
6401
+ (6041, '3271', 'Dundonnell', 'VIC', 'AU', 491, ' 3271 Dundonnell Victoria'),
6402
+ (6042, '3271', 'Darlington', 'VIC', 'AU', 491, ' 3271 Darlington Victoria'),
6403
+ (6043, '3272', 'Woorndoo', 'VIC', 'AU', 491, ' 3272 Woorndoo Victoria'),
6404
+ (6044, '3272', 'Mortlake', 'VIC', 'AU', 491, ' 3272 Mortlake Victoria'),
6405
+ (6045, '3273', 'Hexham', 'VIC', 'AU', 491, ' 3273 Hexham Victoria'),
6406
+ (6046, '3274', 'Caramut', 'VIC', 'AU', 491, ' 3274 Caramut Victoria'),
6407
+ (6047, '3275', 'Mailors Flat', 'VIC', 'AU', 491, ' 3275 Mailors Flat Victoria'),
6408
+ (6048, '3276', 'Minjah', 'VIC', 'AU', 491, ' 3276 Minjah Victoria'),
6409
+ (6049, '3276', 'Woolsthorpe', 'VIC', 'AU', 491, ' 3276 Woolsthorpe Victoria'),
6410
+ (6050, '3277', 'Allansford', 'VIC', 'AU', 491, ' 3277 Allansford Victoria'),
6411
+ (6051, '3277', 'Mepunga', 'VIC', 'AU', 491, ' 3277 Mepunga Victoria'),
6412
+ (6052, '3277', 'Mepunga East', 'VIC', 'AU', 491, ' 3277 Mepunga East Victoria'),
6413
+ (6053, '3277', 'Mepunga West', 'VIC', 'AU', 491, ' 3277 Mepunga West Victoria'),
6414
+ (6054, '3277', 'Naringal', 'VIC', 'AU', 491, ' 3277 Naringal Victoria'),
6415
+ (6055, '3277', 'Naringal East', 'VIC', 'AU', 491, ' 3277 Naringal East Victoria'),
6416
+ (6056, '3278', 'Purnim', 'VIC', 'AU', 491, ' 3278 Purnim Victoria'),
6417
+ (6057, '3278', 'Purnim West', 'VIC', 'AU', 491, ' 3278 Purnim West Victoria'),
6418
+ (6058, '3279', 'Wangoom', 'VIC', 'AU', 491, ' 3279 Wangoom Victoria'),
6419
+ (6059, '3279', 'Ballangeich', 'VIC', 'AU', 491, ' 3279 Ballangeich Victoria'),
6420
+ (6060, '3280', 'Dennington', 'VIC', 'AU', 491, ' 3280 Dennington Victoria'),
6421
+ (6061, '3280', 'Warrnambool', 'VIC', 'AU', 491, ' 3280 Warrnambool Victoria'),
6422
+ (6062, '3280', 'Warrnambool East', 'VIC', 'AU', 491, ' 3280 Warrnambool East Victoria'),
6423
+ (6063, '3280', 'Warrnambool West', 'VIC', 'AU', 491, ' 3280 Warrnambool West Victoria'),
6424
+ (6064, '3281', 'Grassmere', 'VIC', 'AU', 491, ' 3281 Grassmere Victoria'),
6425
+ (6065, '3281', 'Bushfield', 'VIC', 'AU', 491, ' 3281 Bushfield Victoria'),
6426
+ (6066, '3281', 'Woodford', 'VIC', 'AU', 491, ' 3281 Woodford Victoria'),
6427
+ (6067, '3281', 'Winslow', 'VIC', 'AU', 491, ' 3281 Winslow Victoria'),
6428
+ (6068, '3282', 'Illowa', 'VIC', 'AU', 491, ' 3282 Illowa Victoria'),
6429
+ (6069, '3282', 'Koroit', 'VIC', 'AU', 491, ' 3282 Koroit Victoria'),
6430
+ (6070, '3283', 'Kirkstall', 'VIC', 'AU', 491, ' 3283 Kirkstall Victoria'),
6431
+ (6071, '3283', 'Killarney', 'VIC', 'AU', 491, ' 3283 Killarney Victoria'),
6432
+ (6072, '3283', 'Southern Cross', 'VIC', 'AU', 491, ' 3283 Southern Cross Victoria'),
6433
+ (6073, '3283', 'Warrong', 'VIC', 'AU', 491, ' 3283 Warrong Victoria'),
6434
+ (6074, '3283', 'Willatook', 'VIC', 'AU', 491, ' 3283 Willatook Victoria'),
6435
+ (6075, '3283', 'Tower Hill', 'VIC', 'AU', 491, ' 3283 Tower Hill Victoria'),
6436
+ (6076, '3283', 'Tarrone', 'VIC', 'AU', 491, ' 3283 Tarrone Victoria'),
6437
+ (6077, '3283', 'Crossley', 'VIC', 'AU', 491, ' 3283 Crossley Victoria'),
6438
+ (6078, '3283', 'Yarpturk', 'VIC', 'AU', 491, ' 3283 Yarpturk Victoria'),
6439
+ (6079, '3283', 'Yangery', 'VIC', 'AU', 491, ' 3283 Yangery Victoria'),
6440
+ (6080, '3284', 'Port Fairy', 'VIC', 'AU', 491, ' 3284 Port Fairy Victoria'),
6441
+ (6081, '3284', 'Orford', 'VIC', 'AU', 491, ' 3284 Orford Victoria'),
6442
+ (6082, '3285', 'St Helens', 'VIC', 'AU', 491, ' 3285 St Helens Victoria'),
6443
+ (6083, '3285', 'Rosebrook', 'VIC', 'AU', 491, ' 3285 Rosebrook Victoria'),
6444
+ (6084, '3285', 'Narrawong', 'VIC', 'AU', 491, ' 3285 Narrawong Victoria'),
6445
+ (6085, '3285', 'Toolong', 'VIC', 'AU', 491, ' 3285 Toolong Victoria'),
6446
+ (6086, '3285', 'Tyrendarra', 'VIC', 'AU', 491, ' 3285 Tyrendarra Victoria'),
6447
+ (6087, '3285', 'Tyrendarra East', 'VIC', 'AU', 491, ' 3285 Tyrendarra East Victoria'),
6448
+ (6088, '3285', 'Yambuk', 'VIC', 'AU', 491, ' 3285 Yambuk Victoria'),
6449
+ (6089, '3285', 'Codrington', 'VIC', 'AU', 491, ' 3285 Codrington Victoria'),
6450
+ (6090, '3286', 'Condah Swamp', 'VIC', 'AU', 491, ' 3286 Condah Swamp Victoria'),
6451
+ (6091, '3286', 'Warrabkook', 'VIC', 'AU', 491, ' 3286 Warrabkook Victoria'),
6452
+ (6092, '3286', 'Knebsworth', 'VIC', 'AU', 491, ' 3286 Knebsworth Victoria'),
6453
+ (6093, '3286', 'Macarthur', 'VIC', 'AU', 491, ' 3286 Macarthur Victoria'),
6454
+ (6094, '3287', 'Minhamite', 'VIC', 'AU', 491, ' 3287 Minhamite Victoria'),
6455
+ (6095, '3287', 'Hawkesdale', 'VIC', 'AU', 491, ' 3287 Hawkesdale Victoria'),
6456
+ (6096, '3289', 'Gazette', 'VIC', 'AU', 491, ' 3289 Gazette Victoria'),
6457
+ (6097, '3289', 'Gerrigerrup', 'VIC', 'AU', 491, ' 3289 Gerrigerrup Victoria'),
6458
+ (6098, '3289', 'Penshurst', 'VIC', 'AU', 491, ' 3289 Penshurst Victoria'),
6459
+ (6099, '3289', 'Purdeet', 'VIC', 'AU', 491, ' 3289 Purdeet Victoria'),
6460
+ (6100, '3289', 'Tabor', 'VIC', 'AU', 491, ' 3289 Tabor Victoria'),
6461
+ (6101, '3292', 'Nelson', 'VIC', 'AU', 491, ' 3292 Nelson Victoria'),
6462
+ (6102, '3293', 'Narrapumelap South', 'VIC', 'AU', 491, ' 3293 Narrapumelap South Victoria'),
6463
+ (6103, '3293', 'Nareeb', 'VIC', 'AU', 491, ' 3293 Nareeb Victoria'),
6464
+ (6104, '3293', 'Glenthompson', 'VIC', 'AU', 491, ' 3293 Glenthompson Victoria'),
6465
+ (6105, '3294', 'Dunkeld', 'VIC', 'AU', 491, ' 3294 Dunkeld Victoria'),
6466
+ (6106, '3294', 'Woodhouse', 'VIC', 'AU', 491, ' 3294 Woodhouse Victoria'),
6467
+ (6107, '3294', 'Moutajup', 'VIC', 'AU', 491, ' 3294 Moutajup Victoria'),
6468
+ (6108, '3294', 'Mirranatwa', 'VIC', 'AU', 491, ' 3294 Mirranatwa Victoria'),
6469
+ (6109, '3294', 'Karabeal', 'VIC', 'AU', 491, ' 3294 Karabeal Victoria'),
6470
+ (6110, '3294', 'Victoria Point', 'VIC', 'AU', 491, ' 3294 Victoria Point Victoria'),
6471
+ (6111, '3294', 'Victoria Valley', 'VIC', 'AU', 491, ' 3294 Victoria Valley Victoria'),
6472
+ (6112, '3300', 'Hamilton', 'VIC', 'AU', 491, ' 3300 Hamilton Victoria'),
6473
+ (6113, '3300', 'Byaduk North', 'VIC', 'AU', 491, ' 3300 Byaduk North Victoria'),
6474
+ (6114, '3301', 'Byaduk', 'VIC', 'AU', 491, ' 3301 Byaduk Victoria'),
6475
+ (6115, '3301', 'Broadwater', 'VIC', 'AU', 491, ' 3301 Broadwater Victoria'),
6476
+ (6116, '3301', 'Buckley Swamp', 'VIC', 'AU', 491, ' 3301 Buckley Swamp Victoria'),
6477
+ (6117, '3301', 'Bochara', 'VIC', 'AU', 491, ' 3301 Bochara Victoria'),
6478
+ (6118, '3301', 'Croxton East', 'VIC', 'AU', 491, ' 3301 Croxton East Victoria'),
6479
+ (6119, '3301', 'Hensley Park', 'VIC', 'AU', 491, ' 3301 Hensley Park Victoria'),
6480
+ (6120, '3301', 'Yatchaw', 'VIC', 'AU', 491, ' 3301 Yatchaw Victoria'),
6481
+ (6121, '3301', 'Yulecart', 'VIC', 'AU', 491, ' 3301 Yulecart Victoria'),
6482
+ (6122, '3301', 'Tahara', 'VIC', 'AU', 491, ' 3301 Tahara Victoria'),
6483
+ (6123, '3301', 'Tarrington', 'VIC', 'AU', 491, ' 3301 Tarrington Victoria'),
6484
+ (6124, '3301', 'Strathkellar', 'VIC', 'AU', 491, ' 3301 Strathkellar Victoria'),
6485
+ (6125, '3301', 'Warrayure', 'VIC', 'AU', 491, ' 3301 Warrayure Victoria'),
6486
+ (6126, '3301', 'Wannon', 'VIC', 'AU', 491, ' 3301 Wannon Victoria'),
6487
+ (6127, '3301', 'Morgiana', 'VIC', 'AU', 491, ' 3301 Morgiana Victoria'),
6488
+ (6128, '3301', 'Mount Napier', 'VIC', 'AU', 491, ' 3301 Mount Napier Victoria'),
6489
+ (6129, '3302', 'Grassdale', 'VIC', 'AU', 491, ' 3302 Grassdale Victoria'),
6490
+ (6130, '3302', 'Branxholme', 'VIC', 'AU', 491, ' 3302 Branxholme Victoria'),
6491
+ (6131, '3303', 'Breakaway Creek', 'VIC', 'AU', 491, ' 3303 Breakaway Creek Victoria'),
6492
+ (6132, '3303', 'Condah', 'VIC', 'AU', 491, ' 3303 Condah Victoria'),
6493
+ (6133, '3303', 'Hotspur', 'VIC', 'AU', 491, ' 3303 Hotspur Victoria'),
6494
+ (6134, '3303', 'Lake Condah', 'VIC', 'AU', 491, ' 3303 Lake Condah Victoria'),
6495
+ (6135, '3303', 'Wallacedale', 'VIC', 'AU', 491, ' 3303 Wallacedale Victoria'),
6496
+ (6136, '3304', 'Lyons', 'VIC', 'AU', 491, ' 3304 Lyons Victoria'),
6497
+ (6137, '3304', 'Milltown', 'VIC', 'AU', 491, ' 3304 Milltown Victoria'),
6498
+ (6138, '3304', 'Myamyn', 'VIC', 'AU', 491, ' 3304 Myamyn Victoria'),
6499
+ (6139, '3304', 'Mumbannar', 'VIC', 'AU', 491, ' 3304 Mumbannar Victoria'),
6500
+ (6140, '3304', 'Homerton', 'VIC', 'AU', 491, ' 3304 Homerton Victoria'),
6501
+ (6141, '3304', 'Heywood', 'VIC', 'AU', 491, ' 3304 Heywood Victoria'),
6502
+ (6142, '3304', 'Greenwald', 'VIC', 'AU', 491, ' 3304 Greenwald Victoria'),
6503
+ (6143, '3304', 'Drik Drik', 'VIC', 'AU', 491, ' 3304 Drik Drik Victoria'),
6504
+ (6144, '3304', 'Drumborg', 'VIC', 'AU', 491, ' 3304 Drumborg Victoria'),
6505
+ (6145, '3304', 'Dartmoor', 'VIC', 'AU', 491, ' 3304 Dartmoor Victoria'),
6506
+ (6146, '3304', 'Winnap', 'VIC', 'AU', 491, ' 3304 Winnap Victoria'),
6507
+ (6147, '3304', 'Bessiebelle', 'VIC', 'AU', 491, ' 3304 Bessiebelle Victoria'),
6508
+ (6148, '3305', 'Allestree', 'VIC', 'AU', 491, ' 3305 Allestree Victoria'),
6509
+ (6149, '3305', 'Dutton Way', 'VIC', 'AU', 491, ' 3305 Dutton Way Victoria'),
6510
+ (6150, '3305', 'Gorae', 'VIC', 'AU', 491, ' 3305 Gorae Victoria'),
6511
+ (6151, '3305', 'Gorae West', 'VIC', 'AU', 491, ' 3305 Gorae West Victoria'),
6512
+ (6152, '3305', 'Heathmere', 'VIC', 'AU', 491, ' 3305 Heathmere Victoria'),
6513
+ (6153, '3305', 'Cashmore', 'VIC', 'AU', 491, ' 3305 Cashmore Victoria'),
6514
+ (6154, '3305', 'Bolwarra', 'VIC', 'AU', 491, ' 3305 Bolwarra Victoria'),
6515
+ (6155, '3305', 'Cape Bridgewater', 'VIC', 'AU', 491, ' 3305 Cape Bridgewater Victoria'),
6516
+ (6156, '3305', 'Mount Richmond', 'VIC', 'AU', 491, ' 3305 Mount Richmond Victoria'),
6517
+ (6157, '3305', 'Portland', 'VIC', 'AU', 491, ' 3305 Portland Victoria');
6518
+ INSERT INTO {$this->getTable('candf_pcs')} (`entity_id`, `postcode`, `city`, `state`, `country_id`, `region_id`, `fulltext`) VALUES
6519
+ (6158, '3305', 'Portland North', 'VIC', 'AU', 491, ' 3305 Portland North Victoria'),
6520
+ (6159, '3305', 'Portland West', 'VIC', 'AU', 491, ' 3305 Portland West Victoria'),
6521
+ (6160, '3309', 'Digby', 'VIC', 'AU', 491, ' 3309 Digby Victoria'),
6522
+ (6161, '3310', 'Merino', 'VIC', 'AU', 491, ' 3310 Merino Victoria'),
6523
+ (6162, '3310', 'Tahara West', 'VIC', 'AU', 491, ' 3310 Tahara West Victoria'),
6524
+ (6163, '3311', 'Casterton', 'VIC', 'AU', 491, ' 3311 Casterton Victoria'),
6525
+ (6164, '3311', 'Corndale', 'VIC', 'AU', 491, ' 3311 Corndale Victoria'),
6526
+ (6165, '3312', 'Chetwynd', 'VIC', 'AU', 491, ' 3312 Chetwynd Victoria'),
6527
+ (6166, '3312', 'Carapook', 'VIC', 'AU', 491, ' 3312 Carapook Victoria'),
6528
+ (6167, '3312', 'Brimboal', 'VIC', 'AU', 491, ' 3312 Brimboal Victoria'),
6529
+ (6168, '3312', 'Dorodong', 'VIC', 'AU', 491, ' 3312 Dorodong Victoria'),
6530
+ (6169, '3312', 'Dergholm', 'VIC', 'AU', 491, ' 3312 Dergholm Victoria'),
6531
+ (6170, '3312', 'Dunrobin', 'VIC', 'AU', 491, ' 3312 Dunrobin Victoria'),
6532
+ (6171, '3312', 'Henty', 'VIC', 'AU', 491, ' 3312 Henty Victoria'),
6533
+ (6172, '3312', 'Bahgallah', 'VIC', 'AU', 491, ' 3312 Bahgallah Victoria'),
6534
+ (6173, '3312', 'Wando Bridge', 'VIC', 'AU', 491, ' 3312 Wando Bridge Victoria'),
6535
+ (6174, '3312', 'Wando Vale', 'VIC', 'AU', 491, ' 3312 Wando Vale Victoria'),
6536
+ (6175, '3312', 'Strathdownie', 'VIC', 'AU', 491, ' 3312 Strathdownie Victoria'),
6537
+ (6176, '3312', 'Warrock', 'VIC', 'AU', 491, ' 3312 Warrock Victoria'),
6538
+ (6177, '3312', 'Lake Mundi', 'VIC', 'AU', 491, ' 3312 Lake Mundi Victoria'),
6539
+ (6178, '3312', 'Lindsay', 'VIC', 'AU', 491, ' 3312 Lindsay Victoria'),
6540
+ (6179, '3312', 'Killara', 'VIC', 'AU', 491, ' 3312 Killara Victoria'),
6541
+ (6180, '3312', 'Powers Creek', 'VIC', 'AU', 491, ' 3312 Powers Creek Victoria'),
6542
+ (6181, '3312', 'Poolaijelo', 'VIC', 'AU', 491, ' 3312 Poolaijelo Victoria'),
6543
+ (6182, '3312', 'Sandford', 'VIC', 'AU', 491, ' 3312 Sandford Victoria'),
6544
+ (6183, '3312', 'Nangeela', 'VIC', 'AU', 491, ' 3312 Nangeela Victoria'),
6545
+ (6184, '3314', 'Mooralla', 'VIC', 'AU', 491, ' 3314 Mooralla Victoria'),
6546
+ (6185, '3314', 'Grampians', 'VIC', 'AU', 491, ' 3314 Grampians Victoria'),
6547
+ (6186, '3314', 'Glenisla', 'VIC', 'AU', 491, ' 3314 Glenisla Victoria'),
6548
+ (6187, '3314', 'Bulart', 'VIC', 'AU', 491, ' 3314 Bulart Victoria'),
6549
+ (6188, '3314', 'Cavendish', 'VIC', 'AU', 491, ' 3314 Cavendish Victoria'),
6550
+ (6189, '3315', 'Clover Flat', 'VIC', 'AU', 491, ' 3315 Clover Flat Victoria'),
6551
+ (6190, '3315', 'Coleraine', 'VIC', 'AU', 491, ' 3315 Coleraine Victoria'),
6552
+ (6191, '3315', 'Coojar', 'VIC', 'AU', 491, ' 3315 Coojar Victoria'),
6553
+ (6192, '3315', 'Culla', 'VIC', 'AU', 491, ' 3315 Culla Victoria'),
6554
+ (6193, '3315', 'Brit Brit', 'VIC', 'AU', 491, ' 3315 Brit Brit Victoria'),
6555
+ (6194, '3315', 'Gringegalgona', 'VIC', 'AU', 491, ' 3315 Gringegalgona Victoria'),
6556
+ (6195, '3315', 'Gritjurk', 'VIC', 'AU', 491, ' 3315 Gritjurk Victoria'),
6557
+ (6196, '3315', 'Hilgay', 'VIC', 'AU', 491, ' 3315 Hilgay Victoria'),
6558
+ (6197, '3315', 'Wootong Vale', 'VIC', 'AU', 491, ' 3315 Wootong Vale Victoria'),
6559
+ (6198, '3315', 'Melville Forest', 'VIC', 'AU', 491, ' 3315 Melville Forest Victoria'),
6560
+ (6199, '3315', 'Konongwootong', 'VIC', 'AU', 491, ' 3315 Konongwootong Victoria'),
6561
+ (6200, '3315', 'Nareen', 'VIC', 'AU', 491, ' 3315 Nareen Victoria'),
6562
+ (6201, '3315', 'Muntham', 'VIC', 'AU', 491, ' 3315 Muntham Victoria'),
6563
+ (6202, '3315', 'Paschendale', 'VIC', 'AU', 491, ' 3315 Paschendale Victoria'),
6564
+ (6203, '3315', 'Tahara Bridge', 'VIC', 'AU', 491, ' 3315 Tahara Bridge Victoria'),
6565
+ (6204, '3315', 'Tarrenlea', 'VIC', 'AU', 491, ' 3315 Tarrenlea Victoria'),
6566
+ (6205, '3315', 'Tarrayoukyan', 'VIC', 'AU', 491, ' 3315 Tarrayoukyan Victoria'),
6567
+ (6206, '3317', 'Harrow', 'VIC', 'AU', 491, ' 3317 Harrow Victoria'),
6568
+ (6207, '3318', 'Edenhope', 'VIC', 'AU', 491, ' 3318 Edenhope Victoria'),
6569
+ (6208, '3318', 'Connewirricoo', 'VIC', 'AU', 491, ' 3318 Connewirricoo Victoria'),
6570
+ (6209, '3318', 'Charam', 'VIC', 'AU', 491, ' 3318 Charam Victoria'),
6571
+ (6210, '3318', 'Ullswater', 'VIC', 'AU', 491, ' 3318 Ullswater Victoria'),
6572
+ (6211, '3318', 'Patyah', 'VIC', 'AU', 491, ' 3318 Patyah Victoria'),
6573
+ (6212, '3318', 'Langkoop', 'VIC', 'AU', 491, ' 3318 Langkoop Victoria'),
6574
+ (6213, '3318', 'Kadnook', 'VIC', 'AU', 491, ' 3318 Kadnook Victoria'),
6575
+ (6214, '3319', 'Bringalbert', 'VIC', 'AU', 491, ' 3319 Bringalbert Victoria'),
6576
+ (6215, '3319', 'Benayeo', 'VIC', 'AU', 491, ' 3319 Benayeo Victoria'),
6577
+ (6216, '3319', 'Apsley', 'VIC', 'AU', 491, ' 3319 Apsley Victoria'),
6578
+ (6217, '3321', 'Wingeel', 'VIC', 'AU', 491, ' 3321 Wingeel Victoria'),
6579
+ (6218, '3321', 'Hesse', 'VIC', 'AU', 491, ' 3321 Hesse Victoria'),
6580
+ (6219, '3321', 'Inverleigh', 'VIC', 'AU', 491, ' 3321 Inverleigh Victoria'),
6581
+ (6220, '3322', 'Cressy', 'VIC', 'AU', 491, ' 3322 Cressy Victoria'),
6582
+ (6221, '3323', 'Duverney', 'VIC', 'AU', 491, ' 3323 Duverney Victoria'),
6583
+ (6222, '3323', 'Foxhow', 'VIC', 'AU', 491, ' 3323 Foxhow Victoria'),
6584
+ (6223, '3323', 'Berrybank', 'VIC', 'AU', 491, ' 3323 Berrybank Victoria'),
6585
+ (6224, '3324', 'Lismore', 'VIC', 'AU', 491, ' 3324 Lismore Victoria'),
6586
+ (6225, '3324', 'Mount Bute', 'VIC', 'AU', 491, ' 3324 Mount Bute Victoria'),
6587
+ (6226, '3324', 'Mingay', 'VIC', 'AU', 491, ' 3324 Mingay Victoria'),
6588
+ (6227, '3325', 'Larralea', 'VIC', 'AU', 491, ' 3325 Larralea Victoria'),
6589
+ (6228, '3325', 'Vite Vite', 'VIC', 'AU', 491, ' 3325 Vite Vite Victoria'),
6590
+ (6229, '3325', 'Vite Vite North', 'VIC', 'AU', 491, ' 3325 Vite Vite North Victoria'),
6591
+ (6230, '3325', 'Derrinallum', 'VIC', 'AU', 491, ' 3325 Derrinallum Victoria'),
6592
+ (6231, '3328', 'Teesdale', 'VIC', 'AU', 491, ' 3328 Teesdale Victoria'),
6593
+ (6232, '3329', 'Shelford', 'VIC', 'AU', 491, ' 3329 Shelford Victoria'),
6594
+ (6233, '3329', 'Barunah Park', 'VIC', 'AU', 491, ' 3329 Barunah Park Victoria'),
6595
+ (6234, '3329', 'Barunah Plains', 'VIC', 'AU', 491, ' 3329 Barunah Plains Victoria'),
6596
+ (6235, '3330', 'Rokewood', 'VIC', 'AU', 491, ' 3330 Rokewood Victoria'),
6597
+ (6236, '3331', 'She Oaks', 'VIC', 'AU', 491, ' 3331 She Oaks Victoria'),
6598
+ (6237, '3331', 'Russells Bridge', 'VIC', 'AU', 491, ' 3331 Russells Bridge Victoria'),
6599
+ (6238, '3331', 'Maude', 'VIC', 'AU', 491, ' 3331 Maude Victoria'),
6600
+ (6239, '3331', 'Steiglitz', 'VIC', 'AU', 491, ' 3331 Steiglitz Victoria'),
6601
+ (6240, '3331', 'Sutherlands Creek', 'VIC', 'AU', 491, ' 3331 Sutherlands Creek Victoria'),
6602
+ (6241, '3331', 'Bannockburn', 'VIC', 'AU', 491, ' 3331 Bannockburn Victoria'),
6603
+ (6242, '3331', 'Gheringhap', 'VIC', 'AU', 491, ' 3331 Gheringhap Victoria'),
6604
+ (6243, '3332', 'Lethbridge', 'VIC', 'AU', 491, ' 3332 Lethbridge Victoria'),
6605
+ (6244, '3333', 'Meredith', 'VIC', 'AU', 491, ' 3333 Meredith Victoria'),
6606
+ (6245, '3333', 'Bamganie', 'VIC', 'AU', 491, ' 3333 Bamganie Victoria'),
6607
+ (6246, '3334', 'Elaine', 'VIC', 'AU', 491, ' 3334 Elaine Victoria'),
6608
+ (6247, '3334', 'Cargerie', 'VIC', 'AU', 491, ' 3334 Cargerie Victoria'),
6609
+ (6248, '3334', 'Bungal', 'VIC', 'AU', 491, ' 3334 Bungal Victoria'),
6610
+ (6249, '3334', 'Morrisons', 'VIC', 'AU', 491, ' 3334 Morrisons Victoria'),
6611
+ (6250, '3334', 'Mount Doran', 'VIC', 'AU', 491, ' 3334 Mount Doran Victoria'),
6612
+ (6251, '3335', 'Plumpton', 'VIC', 'AU', 491, ' 3335 Plumpton Victoria'),
6613
+ (6252, '3335', 'Rockbank', 'VIC', 'AU', 491, ' 3335 Rockbank Victoria'),
6614
+ (6253, '3337', 'Toolern Vale', 'VIC', 'AU', 491, ' 3337 Toolern Vale Victoria'),
6615
+ (6254, '3337', 'Melton West', 'VIC', 'AU', 491, ' 3337 Melton West Victoria'),
6616
+ (6255, '3337', 'Melton', 'VIC', 'AU', 491, ' 3337 Melton Victoria'),
6617
+ (6256, '3337', 'Kurunjang', 'VIC', 'AU', 491, ' 3337 Kurunjang Victoria'),
6618
+ (6257, '3338', 'Melton South', 'VIC', 'AU', 491, ' 3338 Melton South Victoria'),
6619
+ (6258, '3338', 'Exford', 'VIC', 'AU', 491, ' 3338 Exford Victoria'),
6620
+ (6259, '3338', 'Eynesbury', 'VIC', 'AU', 491, ' 3338 Eynesbury Victoria'),
6621
+ (6260, '3338', 'Brookfield', 'VIC', 'AU', 491, ' 3338 Brookfield Victoria'),
6622
+ (6261, '3340', 'Bacchus Marsh', 'VIC', 'AU', 491, ' 3340 Bacchus Marsh Victoria'),
6623
+ (6262, '3340', 'Balliang', 'VIC', 'AU', 491, ' 3340 Balliang Victoria'),
6624
+ (6263, '3340', 'Balliang East', 'VIC', 'AU', 491, ' 3340 Balliang East Victoria'),
6625
+ (6264, '3340', 'Glenmore', 'VIC', 'AU', 491, ' 3340 Glenmore Victoria'),
6626
+ (6265, '3340', 'Hopetoun Park', 'VIC', 'AU', 491, ' 3340 Hopetoun Park Victoria'),
6627
+ (6266, '3340', 'Coimadai', 'VIC', 'AU', 491, ' 3340 Coimadai Victoria'),
6628
+ (6267, '3340', 'Darley', 'VIC', 'AU', 491, ' 3340 Darley Victoria'),
6629
+ (6268, '3340', 'Long Forest', 'VIC', 'AU', 491, ' 3340 Long Forest Victoria'),
6630
+ (6269, '3340', 'Maddingley', 'VIC', 'AU', 491, ' 3340 Maddingley Victoria'),
6631
+ (6270, '3340', 'Merrimu', 'VIC', 'AU', 491, ' 3340 Merrimu Victoria'),
6632
+ (6271, '3340', 'Parwan', 'VIC', 'AU', 491, ' 3340 Parwan Victoria'),
6633
+ (6272, '3340', 'Rowsley', 'VIC', 'AU', 491, ' 3340 Rowsley Victoria'),
6634
+ (6273, '3341', 'Pentland Hills', 'VIC', 'AU', 491, ' 3341 Pentland Hills Victoria'),
6635
+ (6274, '3341', 'Myrniong', 'VIC', 'AU', 491, ' 3341 Myrniong Victoria'),
6636
+ (6275, '3341', 'Korobeit', 'VIC', 'AU', 491, ' 3341 Korobeit Victoria'),
6637
+ (6276, '3341', 'Dales Creek', 'VIC', 'AU', 491, ' 3341 Dales Creek Victoria'),
6638
+ (6277, '3341', 'Greendale', 'VIC', 'AU', 491, ' 3341 Greendale Victoria'),
6639
+ (6278, '3342', 'Mount Wallace', 'VIC', 'AU', 491, ' 3342 Mount Wallace Victoria'),
6640
+ (6279, '3342', 'Bunding', 'VIC', 'AU', 491, ' 3342 Bunding Victoria'),
6641
+ (6280, '3342', 'Blakeville', 'VIC', 'AU', 491, ' 3342 Blakeville Victoria'),
6642
+ (6281, '3342', 'Colbrook', 'VIC', 'AU', 491, ' 3342 Colbrook Victoria'),
6643
+ (6282, '3342', 'Durdidwarrah', 'VIC', 'AU', 491, ' 3342 Durdidwarrah Victoria'),
6644
+ (6283, '3342', 'Fiskville', 'VIC', 'AU', 491, ' 3342 Fiskville Victoria'),
6645
+ (6284, '3342', 'Ingliston', 'VIC', 'AU', 491, ' 3342 Ingliston Victoria'),
6646
+ (6285, '3342', 'Ballan', 'VIC', 'AU', 491, ' 3342 Ballan Victoria'),
6647
+ (6286, '3342', 'Beremboke', 'VIC', 'AU', 491, ' 3342 Beremboke Victoria'),
6648
+ (6287, '3345', 'Gordon', 'VIC', 'AU', 491, ' 3345 Gordon Victoria'),
6649
+ (6288, '3350', 'Soldiers Hill', 'VIC', 'AU', 491, ' 3350 Soldiers Hill Victoria'),
6650
+ (6289, '3350', 'Newington', 'VIC', 'AU', 491, ' 3350 Newington Victoria'),
6651
+ (6290, '3350', 'Redan', 'VIC', 'AU', 491, ' 3350 Redan Victoria'),
6652
+ (6291, '3350', 'Eureka', 'VIC', 'AU', 491, ' 3350 Eureka Victoria'),
6653
+ (6292, '3350', 'Golden Point', 'VIC', 'AU', 491, ' 3350 Golden Point Victoria'),
6654
+ (6293, '3350', 'Invermay Park', 'VIC', 'AU', 491, ' 3350 Invermay Park Victoria'),
6655
+ (6294, '3350', 'Canadian', 'VIC', 'AU', 491, ' 3350 Canadian Victoria'),
6656
+ (6295, '3350', 'Black Hill', 'VIC', 'AU', 491, ' 3350 Black Hill Victoria'),
6657
+ (6296, '3350', 'Brown Hill', 'VIC', 'AU', 491, ' 3350 Brown Hill Victoria'),
6658
+ (6297, '3350', 'Lake Wendouree', 'VIC', 'AU', 491, ' 3350 Lake Wendouree Victoria'),
6659
+ (6298, '3350', 'Mount Clear', 'VIC', 'AU', 491, ' 3350 Mount Clear Victoria'),
6660
+ (6299, '3350', 'Mount Helen', 'VIC', 'AU', 491, ' 3350 Mount Helen Victoria'),
6661
+ (6300, '3350', 'Mount Pleasant', 'VIC', 'AU', 491, ' 3350 Mount Pleasant Victoria'),
6662
+ (6301, '3350', 'Nerrina', 'VIC', 'AU', 491, ' 3350 Nerrina Victoria'),
6663
+ (6302, '3350', 'Ballarat West', 'VIC', 'AU', 491, ' 3350 Ballarat West Victoria'),
6664
+ (6303, '3350', 'Ballarat Central', 'VIC', 'AU', 491, ' 3350 Ballarat Central Victoria'),
6665
+ (6304, '3350', 'Ballarat East', 'VIC', 'AU', 491, ' 3350 Ballarat East Victoria'),
6666
+ (6305, '3350', 'Ballarat North', 'VIC', 'AU', 491, ' 3350 Ballarat North Victoria'),
6667
+ (6306, '3350', 'Bakery Hill', 'VIC', 'AU', 491, ' 3350 Bakery Hill Victoria'),
6668
+ (6307, '3350', 'Ballarat', 'VIC', 'AU', 491, ' 3350 Ballarat Victoria'),
6669
+ (6308, '3350', 'Alfredton', 'VIC', 'AU', 491, ' 3350 Alfredton Victoria'),
6670
+ (6309, '3351', 'Nerrin Nerrin', 'VIC', 'AU', 491, ' 3351 Nerrin Nerrin Victoria'),
6671
+ (6310, '3351', 'Mount Emu', 'VIC', 'AU', 491, ' 3351 Mount Emu Victoria'),
6672
+ (6311, '3351', 'Mininera', 'VIC', 'AU', 491, ' 3351 Mininera Victoria'),
6673
+ (6312, '3351', 'Bo Peep', 'VIC', 'AU', 491, ' 3351 Bo Peep Victoria'),
6674
+ (6313, '3351', 'Berringa', 'VIC', 'AU', 491, ' 3351 Berringa Victoria'),
6675
+ (6314, '3351', 'Carngham', 'VIC', 'AU', 491, ' 3351 Carngham Victoria'),
6676
+ (6315, '3351', 'Cape Clear', 'VIC', 'AU', 491, ' 3351 Cape Clear Victoria'),
6677
+ (6316, '3351', 'Chepstowe', 'VIC', 'AU', 491, ' 3351 Chepstowe Victoria'),
6678
+ (6317, '3351', 'Hillcrest', 'VIC', 'AU', 491, ' 3351 Hillcrest Victoria'),
6679
+ (6318, '3351', 'Illabarook', 'VIC', 'AU', 491, ' 3351 Illabarook Victoria'),
6680
+ (6319, '3351', 'Lake Bolac', 'VIC', 'AU', 491, ' 3351 Lake Bolac Victoria'),
6681
+ (6320, '3351', 'Haddon', 'VIC', 'AU', 491, ' 3351 Haddon Victoria'),
6682
+ (6321, '3351', 'Piggoreet', 'VIC', 'AU', 491, ' 3351 Piggoreet Victoria'),
6683
+ (6322, '3351', 'Pitfield', 'VIC', 'AU', 491, ' 3351 Pitfield Victoria'),
6684
+ (6323, '3351', 'Newtown', 'VIC', 'AU', 491, ' 3351 Newtown Victoria'),
6685
+ (6324, '3351', 'Nintingbool', 'VIC', 'AU', 491, ' 3351 Nintingbool Victoria'),
6686
+ (6325, '3351', 'Smythes Creek', 'VIC', 'AU', 491, ' 3351 Smythes Creek Victoria'),
6687
+ (6326, '3351', 'Smythesdale', 'VIC', 'AU', 491, ' 3351 Smythesdale Victoria'),
6688
+ (6327, '3351', 'Snake Valley', 'VIC', 'AU', 491, ' 3351 Snake Valley Victoria'),
6689
+ (6328, '3351', 'Rokewood Junction', 'VIC', 'AU', 491, ' 3351 Rokewood Junction Victoria'),
6690
+ (6329, '3351', 'Ross Creek', 'VIC', 'AU', 491, ' 3351 Ross Creek Victoria'),
6691
+ (6330, '3351', 'Scarsdale', 'VIC', 'AU', 491, ' 3351 Scarsdale Victoria'),
6692
+ (6331, '3351', 'Staffordshire Reef', 'VIC', 'AU', 491, ' 3351 Staffordshire Reef Victoria'),
6693
+ (6332, '3351', 'Streatham', 'VIC', 'AU', 491, ' 3351 Streatham Victoria'),
6694
+ (6333, '3351', 'Springdallah', 'VIC', 'AU', 491, ' 3351 Springdallah Victoria'),
6695
+ (6334, '3351', 'Westmere', 'VIC', 'AU', 491, ' 3351 Westmere Victoria'),
6696
+ (6335, '3351', 'Wallinduc', 'VIC', 'AU', 491, ' 3351 Wallinduc Victoria'),
6697
+ (6336, '3352', 'Werneth', 'VIC', 'AU', 491, ' 3352 Werneth Victoria'),
6698
+ (6337, '3352', 'Yendon', 'VIC', 'AU', 491, ' 3352 Yendon Victoria'),
6699
+ (6338, '3352', 'Windermere', 'VIC', 'AU', 491, ' 3352 Windermere Victoria'),
6700
+ (6339, '3352', 'Springbank', 'VIC', 'AU', 491, ' 3352 Springbank Victoria'),
6701
+ (6340, '3352', 'Sulky', 'VIC', 'AU', 491, ' 3352 Sulky Victoria'),
6702
+ (6341, '3352', 'Weatherboard', 'VIC', 'AU', 491, ' 3352 Weatherboard Victoria'),
6703
+ (6342, '3352', 'Warrenheip', 'VIC', 'AU', 491, ' 3352 Warrenheip Victoria'),
6704
+ (6343, '3352', 'Wattle Flat', 'VIC', 'AU', 491, ' 3352 Wattle Flat Victoria'),
6705
+ (6344, '3352', 'Waubra', 'VIC', 'AU', 491, ' 3352 Waubra Victoria'),
6706
+ (6345, '3352', 'Wallace', 'VIC', 'AU', 491, ' 3352 Wallace Victoria'),
6707
+ (6346, '3352', 'Scotchmans Lead', 'VIC', 'AU', 491, ' 3352 Scotchmans Lead Victoria'),
6708
+ (6347, '3352', 'Scotsburn', 'VIC', 'AU', 491, ' 3352 Scotsburn Victoria'),
6709
+ (6348, '3352', 'Pootilla', 'VIC', 'AU', 491, ' 3352 Pootilla Victoria'),
6710
+ (6349, '3352', 'Gong Gong', 'VIC', 'AU', 491, ' 3352 Gong Gong Victoria'),
6711
+ (6350, '3352', 'Grenville', 'VIC', 'AU', 491, ' 3352 Grenville Victoria'),
6712
+ (6351, '3352', 'Invermay', 'VIC', 'AU', 491, ' 3352 Invermay Victoria'),
6713
+ (6352, '3352', 'Garibaldi', 'VIC', 'AU', 491, ' 3352 Garibaldi Victoria'),
6714
+ (6353, '3352', 'Glen Park', 'VIC', 'AU', 491, ' 3352 Glen Park Victoria'),
6715
+ (6354, '3352', 'Glenbrae', 'VIC', 'AU', 491, ' 3352 Glenbrae Victoria'),
6716
+ (6355, '3352', 'Enfield', 'VIC', 'AU', 491, ' 3352 Enfield Victoria'),
6717
+ (6356, '3352', 'Ercildoune', 'VIC', 'AU', 491, ' 3352 Ercildoune Victoria'),
6718
+ (6357, '3352', 'Dunnstown', 'VIC', 'AU', 491, ' 3352 Dunnstown Victoria'),
6719
+ (6358, '3352', 'Durham Lead', 'VIC', 'AU', 491, ' 3352 Durham Lead Victoria'),
6720
+ (6359, '3352', 'Clarendon', 'VIC', 'AU', 491, ' 3352 Clarendon Victoria'),
6721
+ (6360, '3352', 'Claretown', 'VIC', 'AU', 491, ' 3352 Claretown Victoria'),
6722
+ (6361, '3352', 'Clarkes Hill', 'VIC', 'AU', 491, ' 3352 Clarkes Hill Victoria'),
6723
+ (6362, '3352', 'Dereel', 'VIC', 'AU', 491, ' 3352 Dereel Victoria'),
6724
+ (6363, '3352', 'Corindhap', 'VIC', 'AU', 491, ' 3352 Corindhap Victoria'),
6725
+ (6364, '3352', 'Cardigan', 'VIC', 'AU', 491, ' 3352 Cardigan Victoria'),
6726
+ (6365, '3352', 'Cardigan Village', 'VIC', 'AU', 491, ' 3352 Cardigan Village Victoria'),
6727
+ (6366, '3352', 'Brewster', 'VIC', 'AU', 491, ' 3352 Brewster Victoria'),
6728
+ (6367, '3352', 'Cambrian Hill', 'VIC', 'AU', 491, ' 3352 Cambrian Hill Victoria'),
6729
+ (6368, '3352', 'Chapel Flat', 'VIC', 'AU', 491, ' 3352 Chapel Flat Victoria'),
6730
+ (6369, '3352', 'Bolwarrah', 'VIC', 'AU', 491, ' 3352 Bolwarrah Victoria'),
6731
+ (6370, '3352', 'Bonshaw', 'VIC', 'AU', 491, ' 3352 Bonshaw Victoria'),
6732
+ (6371, '3352', 'Blowhard', 'VIC', 'AU', 491, ' 3352 Blowhard Victoria'),
6733
+ (6372, '3352', 'Bullarook', 'VIC', 'AU', 491, ' 3352 Bullarook Victoria'),
6734
+ (6373, '3352', 'Bungaree', 'VIC', 'AU', 491, ' 3352 Bungaree Victoria'),
6735
+ (6374, '3352', 'Bunkers Hill', 'VIC', 'AU', 491, ' 3352 Bunkers Hill Victoria'),
6736
+ (6375, '3352', 'Burrumbeet', 'VIC', 'AU', 491, ' 3352 Burrumbeet Victoria'),
6737
+ (6376, '3352', 'Millbrook', 'VIC', 'AU', 491, ' 3352 Millbrook Victoria'),
6738
+ (6377, '3352', 'Miners Rest', 'VIC', 'AU', 491, ' 3352 Miners Rest Victoria'),
6739
+ (6378, '3352', 'Lal Lal', 'VIC', 'AU', 491, ' 3352 Lal Lal Victoria'),
6740
+ (6379, '3352', 'Lamplough', 'VIC', 'AU', 491, ' 3352 Lamplough Victoria'),
6741
+ (6380, '3352', 'Langi Kal Kal', 'VIC', 'AU', 491, ' 3352 Langi Kal Kal Victoria'),
6742
+ (6381, '3352', 'Learmonth', 'VIC', 'AU', 491, ' 3352 Learmonth Victoria'),
6743
+ (6382, '3352', 'Magpie', 'VIC', 'AU', 491, ' 3352 Magpie Victoria'),
6744
+ (6383, '3352', 'Leigh Creek', 'VIC', 'AU', 491, ' 3352 Leigh Creek Victoria'),
6745
+ (6384, '3352', 'Lexton', 'VIC', 'AU', 491, ' 3352 Lexton Victoria'),
6746
+ (6385, '3352', 'Mount Mercer', 'VIC', 'AU', 491, ' 3352 Mount Mercer Victoria'),
6747
+ (6386, '3352', 'Mount Rowan', 'VIC', 'AU', 491, ' 3352 Mount Rowan Victoria'),
6748
+ (6387, '3352', 'Napoleons', 'VIC', 'AU', 491, ' 3352 Napoleons Victoria'),
6749
+ (6388, '3352', 'Navigators', 'VIC', 'AU', 491, ' 3352 Navigators Victoria'),
6750
+ (6389, '3352', 'Mount Egerton', 'VIC', 'AU', 491, ' 3352 Mount Egerton Victoria'),
6751
+ (6390, '3352', 'Mount Bolton', 'VIC', 'AU', 491, ' 3352 Mount Bolton Victoria'),
6752
+ (6391, '3352', 'Mitchell Park', 'VIC', 'AU', 491, ' 3352 Mitchell Park Victoria'),
6753
+ (6392, '3352', 'Mollongghip', 'VIC', 'AU', 491, ' 3352 Mollongghip Victoria'),
6754
+ (6393, '3352', 'Addington', 'VIC', 'AU', 491, ' 3352 Addington Victoria'),
6755
+ (6394, '3352', 'Ballarat Roadside Delivery', 'VIC', 'AU', 491, ' 3352 Ballarat Roadside Delivery Victoria'),
6756
+ (6395, '3353', 'Ballarat', 'VIC', 'AU', 491, ' 3353 Ballarat Victoria'),
6757
+ (6396, '3354', 'Ballarat', 'VIC', 'AU', 491, ' 3354 Ballarat Victoria'),
6758
+ (6397, '3354', 'Bakery Hill', 'VIC', 'AU', 491, ' 3354 Bakery Hill Victoria'),
6759
+ (6398, '3355', 'Mitchell Park', 'VIC', 'AU', 491, ' 3355 Mitchell Park Victoria'),
6760
+ (6399, '3355', 'Lake Gardens', 'VIC', 'AU', 491, ' 3355 Lake Gardens Victoria'),
6761
+ (6400, '3355', 'Wendouree', 'VIC', 'AU', 491, ' 3355 Wendouree Victoria'),
6762
+ (6401, '3355', 'Wendouree Village', 'VIC', 'AU', 491, ' 3355 Wendouree Village Victoria'),
6763
+ (6402, '3356', 'Sebastopol', 'VIC', 'AU', 491, ' 3356 Sebastopol Victoria'),
6764
+ (6403, '3356', 'Delacombe', 'VIC', 'AU', 491, ' 3356 Delacombe Victoria'),
6765
+ (6404, '3357', 'Buninyong', 'VIC', 'AU', 491, ' 3357 Buninyong Victoria'),
6766
+ (6405, '3360', 'Happy Valley', 'VIC', 'AU', 491, ' 3360 Happy Valley Victoria'),
6767
+ (6406, '3360', 'Willowvale', 'VIC', 'AU', 491, ' 3360 Willowvale Victoria'),
6768
+ (6407, '3360', 'Pittong', 'VIC', 'AU', 491, ' 3360 Pittong Victoria'),
6769
+ (6408, '3360', 'Mannibadar', 'VIC', 'AU', 491, ' 3360 Mannibadar Victoria'),
6770
+ (6409, '3360', 'Linton', 'VIC', 'AU', 491, ' 3360 Linton Victoria'),
6771
+ (6410, '3361', 'Skipton', 'VIC', 'AU', 491, ' 3361 Skipton Victoria'),
6772
+ (6411, '3361', 'Carranballac', 'VIC', 'AU', 491, ' 3361 Carranballac Victoria'),
6773
+ (6412, '3361', 'Bradvale', 'VIC', 'AU', 491, ' 3361 Bradvale Victoria'),
6774
+ (6413, '3363', 'Creswick', 'VIC', 'AU', 491, ' 3363 Creswick Victoria'),
6775
+ (6414, '3363', 'Creswick North', 'VIC', 'AU', 491, ' 3363 Creswick North Victoria'),
6776
+ (6415, '3363', 'Glendaruel', 'VIC', 'AU', 491, ' 3363 Glendaruel Victoria'),
6777
+ (6416, '3363', 'Dean', 'VIC', 'AU', 491, ' 3363 Dean Victoria'),
6778
+ (6417, '3363', 'Langdons Hill', 'VIC', 'AU', 491, ' 3363 Langdons Hill Victoria'),
6779
+ (6418, '3363', 'Mount Beckworth', 'VIC', 'AU', 491, ' 3363 Mount Beckworth Victoria'),
6780
+ (6419, '3363', 'Tourello', 'VIC', 'AU', 491, ' 3363 Tourello Victoria'),
6781
+ (6420, '3364', 'Strathlea', 'VIC', 'AU', 491, ' 3364 Strathlea Victoria'),
6782
+ (6421, '3364', 'Werona', 'VIC', 'AU', 491, ' 3364 Werona Victoria'),
6783
+ (6422, '3364', 'Lawrence', 'VIC', 'AU', 491, ' 3364 Lawrence Victoria'),
6784
+ (6423, '3364', 'Kooroocheang', 'VIC', 'AU', 491, ' 3364 Kooroocheang Victoria'),
6785
+ (6424, '3364', 'Joyces Creek', 'VIC', 'AU', 491, ' 3364 Joyces Creek Victoria'),
6786
+ (6425, '3364', 'Kingston', 'VIC', 'AU', 491, ' 3364 Kingston Victoria'),
6787
+ (6426, '3364', 'Smeaton', 'VIC', 'AU', 491, ' 3364 Smeaton Victoria'),
6788
+ (6427, '3364', 'Smokeytown', 'VIC', 'AU', 491, ' 3364 Smokeytown Victoria'),
6789
+ (6428, '3364', 'Springmount', 'VIC', 'AU', 491, ' 3364 Springmount Victoria'),
6790
+ (6429, '3364', 'Rocklyn', 'VIC', 'AU', 491, ' 3364 Rocklyn Victoria'),
6791
+ (6430, '3364', 'Mount Prospect', 'VIC', 'AU', 491, ' 3364 Mount Prospect Victoria'),
6792
+ (6431, '3364', 'Newlyn', 'VIC', 'AU', 491, ' 3364 Newlyn Victoria'),
6793
+ (6432, '3364', 'Newlyn North', 'VIC', 'AU', 491, ' 3364 Newlyn North Victoria'),
6794
+ (6433, '3364', 'Glendonald', 'VIC', 'AU', 491, ' 3364 Glendonald Victoria'),
6795
+ (6434, '3364', 'Coghills Creek', 'VIC', 'AU', 491, ' 3364 Coghills Creek Victoria'),
6796
+ (6435, '3364', 'Broomfield', 'VIC', 'AU', 491, ' 3364 Broomfield Victoria'),
6797
+ (6436, '3364', 'Campbelltown', 'VIC', 'AU', 491, ' 3364 Campbelltown Victoria'),
6798
+ (6437, '3364', 'Cabbage Tree', 'VIC', 'AU', 491, ' 3364 Cabbage Tree Victoria'),
6799
+ (6438, '3364', 'Blampied', 'VIC', 'AU', 491, ' 3364 Blampied Victoria'),
6800
+ (6439, '3364', 'Allendale', 'VIC', 'AU', 491, ' 3364 Allendale Victoria'),
6801
+ (6440, '3364', 'Bald Hills', 'VIC', 'AU', 491, ' 3364 Bald Hills Victoria'),
6802
+ (6441, '3364', 'Ascot', 'VIC', 'AU', 491, ' 3364 Ascot Victoria'),
6803
+ (6442, '3364', 'Barkstead', 'VIC', 'AU', 491, ' 3364 Barkstead Victoria'),
6804
+ (6443, '3370', 'Clunes', 'VIC', 'AU', 491, ' 3370 Clunes Victoria'),
6805
+ (6444, '3370', 'Glengower', 'VIC', 'AU', 491, ' 3370 Glengower Victoria'),
6806
+ (6445, '3370', 'Mount Cameron', 'VIC', 'AU', 491, ' 3370 Mount Cameron Victoria'),
6807
+ (6446, '3370', 'Ullina', 'VIC', 'AU', 491, ' 3370 Ullina Victoria'),
6808
+ (6447, '3371', 'Talbot', 'VIC', 'AU', 491, ' 3371 Talbot Victoria'),
6809
+ (6448, '3371', 'Stony Creek', 'VIC', 'AU', 491, ' 3371 Stony Creek Victoria'),
6810
+ (6449, '3371', 'Lillicur', 'VIC', 'AU', 491, ' 3371 Lillicur Victoria'),
6811
+ (6450, '3371', 'Mount Glasgow', 'VIC', 'AU', 491, ' 3371 Mount Glasgow Victoria'),
6812
+ (6451, '3371', 'Red Lion', 'VIC', 'AU', 491, ' 3371 Red Lion Victoria'),
6813
+ (6452, '3371', 'Evansford', 'VIC', 'AU', 491, ' 3371 Evansford Victoria'),
6814
+ (6453, '3371', 'Dunach', 'VIC', 'AU', 491, ' 3371 Dunach Victoria'),
6815
+ (6454, '3371', 'Burnbank', 'VIC', 'AU', 491, ' 3371 Burnbank Victoria'),
6816
+ (6455, '3371', 'Caralulup', 'VIC', 'AU', 491, ' 3371 Caralulup Victoria'),
6817
+ (6456, '3371', 'Amherst', 'VIC', 'AU', 491, ' 3371 Amherst Victoria'),
6818
+ (6457, '3373', 'Beaufort', 'VIC', 'AU', 491, ' 3373 Beaufort Victoria'),
6819
+ (6458, '3373', 'Chute', 'VIC', 'AU', 491, ' 3373 Chute Victoria'),
6820
+ (6459, '3373', 'Cross Roads', 'VIC', 'AU', 491, ' 3373 Cross Roads Victoria'),
6821
+ (6460, '3373', 'Raglan', 'VIC', 'AU', 491, ' 3373 Raglan Victoria'),
6822
+ (6461, '3373', 'Nerring', 'VIC', 'AU', 491, ' 3373 Nerring Victoria'),
6823
+ (6462, '3373', 'Lake Wongan', 'VIC', 'AU', 491, ' 3373 Lake Wongan Victoria'),
6824
+ (6463, '3373', 'Lake Goldsmith', 'VIC', 'AU', 491, ' 3373 Lake Goldsmith Victoria'),
6825
+ (6464, '3373', 'Mena Park', 'VIC', 'AU', 491, ' 3373 Mena Park Victoria'),
6826
+ (6465, '3373', 'Main Lead', 'VIC', 'AU', 491, ' 3373 Main Lead Victoria'),
6827
+ (6466, '3373', 'Stoneleigh', 'VIC', 'AU', 491, ' 3373 Stoneleigh Victoria'),
6828
+ (6467, '3373', 'Stockyard Hill', 'VIC', 'AU', 491, ' 3373 Stockyard Hill Victoria'),
6829
+ (6468, '3373', 'Trawalla', 'VIC', 'AU', 491, ' 3373 Trawalla Victoria'),
6830
+ (6469, '3373', 'Waterloo', 'VIC', 'AU', 491, ' 3373 Waterloo Victoria'),
6831
+ (6470, '3374', 'Great Western', 'VIC', 'AU', 491, ' 3374 Great Western Victoria'),
6832
+ (6471, '3375', 'Buangor', 'VIC', 'AU', 491, ' 3375 Buangor Victoria'),
6833
+ (6472, '3375', 'Bayindeen', 'VIC', 'AU', 491, ' 3375 Bayindeen Victoria'),
6834
+ (6473, '3375', 'Ballyrogan', 'VIC', 'AU', 491, ' 3375 Ballyrogan Victoria'),
6835
+ (6474, '3375', 'Middle Creek', 'VIC', 'AU', 491, ' 3375 Middle Creek Victoria'),
6836
+ (6475, '3377', 'Maroona', 'VIC', 'AU', 491, ' 3377 Maroona Victoria'),
6837
+ (6476, '3377', 'Mount Cole', 'VIC', 'AU', 491, ' 3377 Mount Cole Victoria'),
6838
+ (6477, '3377', 'Langi Logan', 'VIC', 'AU', 491, ' 3377 Langi Logan Victoria'),
6839
+ (6478, '3377', 'Mount Cole Creek', 'VIC', 'AU', 491, ' 3377 Mount Cole Creek Victoria'),
6840
+ (6479, '3377', 'Moyston', 'VIC', 'AU', 491, ' 3377 Moyston Victoria'),
6841
+ (6480, '3377', 'Norval', 'VIC', 'AU', 491, ' 3377 Norval Victoria'),
6842
+ (6481, '3377', 'Rhymney', 'VIC', 'AU', 491, ' 3377 Rhymney Victoria'),
6843
+ (6482, '3377', 'Rocky Point', 'VIC', 'AU', 491, ' 3377 Rocky Point Victoria'),
6844
+ (6483, '3377', 'Shays Flat', 'VIC', 'AU', 491, ' 3377 Shays Flat Victoria'),
6845
+ (6484, '3377', 'Rossbridge', 'VIC', 'AU', 491, ' 3377 Rossbridge Victoria'),
6846
+ (6485, '3377', 'Warrak', 'VIC', 'AU', 491, ' 3377 Warrak Victoria'),
6847
+ (6486, '3377', 'Armstrong', 'VIC', 'AU', 491, ' 3377 Armstrong Victoria'),
6848
+ (6487, '3377', 'Ararat', 'VIC', 'AU', 491, ' 3377 Ararat Victoria'),
6849
+ (6488, '3377', 'Bulgana', 'VIC', 'AU', 491, ' 3377 Bulgana Victoria'),
6850
+ (6489, '3377', 'Crowlands', 'VIC', 'AU', 491, ' 3377 Crowlands Victoria'),
6851
+ (6490, '3377', 'Cathcart', 'VIC', 'AU', 491, ' 3377 Cathcart Victoria'),
6852
+ (6491, '3377', 'Dunneworthy', 'VIC', 'AU', 491, ' 3377 Dunneworthy Victoria'),
6853
+ (6492, '3377', 'Eversley', 'VIC', 'AU', 491, ' 3377 Eversley Victoria'),
6854
+ (6493, '3377', 'Denicull Creek', 'VIC', 'AU', 491, ' 3377 Denicull Creek Victoria'),
6855
+ (6494, '3377', 'Dobie', 'VIC', 'AU', 491, ' 3377 Dobie Victoria'),
6856
+ (6495, '3378', 'Yalla-y-poora', 'VIC', 'AU', 491, ' 3378 Yalla-y-poora Victoria'),
6857
+ (6496, '3378', 'Tatyoon', 'VIC', 'AU', 491, ' 3378 Tatyoon Victoria'),
6858
+ (6497, '3379', 'Stavely', 'VIC', 'AU', 491, ' 3379 Stavely Victoria'),
6859
+ (6498, '3379', 'Willaura', 'VIC', 'AU', 491, ' 3379 Willaura Victoria'),
6860
+ (6499, '3379', 'Willaura North', 'VIC', 'AU', 491, ' 3379 Willaura North Victoria'),
6861
+ (6500, '3379', 'Wickliffe', 'VIC', 'AU', 491, ' 3379 Wickliffe Victoria'),
6862
+ (6501, '3379', 'Mafeking', 'VIC', 'AU', 491, ' 3379 Mafeking Victoria'),
6863
+ (6502, '3379', 'Chatsworth', 'VIC', 'AU', 491, ' 3379 Chatsworth Victoria'),
6864
+ (6503, '3379', 'Bornes Hill', 'VIC', 'AU', 491, ' 3379 Bornes Hill Victoria'),
6865
+ (6504, '3380', 'Stawell', 'VIC', 'AU', 491, ' 3380 Stawell Victoria'),
6866
+ (6505, '3380', 'Stawell West', 'VIC', 'AU', 491, ' 3380 Stawell West Victoria'),
6867
+ (6506, '3381', 'Lake Fyans', 'VIC', 'AU', 491, ' 3381 Lake Fyans Victoria'),
6868
+ (6507, '3381', 'Lake Lonsdale', 'VIC', 'AU', 491, ' 3381 Lake Lonsdale Victoria'),
6869
+ (6508, '3381', 'Mokepilly', 'VIC', 'AU', 491, ' 3381 Mokepilly Victoria'),
6870
+ (6509, '3381', 'Pomonal', 'VIC', 'AU', 491, ' 3381 Pomonal Victoria'),
6871
+ (6510, '3381', 'Mount Dryden', 'VIC', 'AU', 491, ' 3381 Mount Dryden Victoria'),
6872
+ (6511, '3381', 'Halls Gap', 'VIC', 'AU', 491, ' 3381 Halls Gap Victoria'),
6873
+ (6512, '3381', 'Fyans Creek', 'VIC', 'AU', 491, ' 3381 Fyans Creek Victoria'),
6874
+ (6513, '3381', 'Illawarra', 'VIC', 'AU', 491, ' 3381 Illawarra Victoria'),
6875
+ (6514, '3381', 'Bellellen', 'VIC', 'AU', 491, ' 3381 Bellellen Victoria'),
6876
+ (6515, '3381', 'Bellfield', 'VIC', 'AU', 491, ' 3381 Bellfield Victoria'),
6877
+ (6516, '3381', 'Black Range', 'VIC', 'AU', 491, ' 3381 Black Range Victoria'),
6878
+ (6517, '3384', 'Barkly', 'VIC', 'AU', 491, ' 3384 Barkly Victoria'),
6879
+ (6518, '3384', 'Frenchmans', 'VIC', 'AU', 491, ' 3384 Frenchmans Victoria'),
6880
+ (6519, '3384', 'Concongella', 'VIC', 'AU', 491, ' 3384 Concongella Victoria'),
6881
+ (6520, '3384', 'Navarre', 'VIC', 'AU', 491, ' 3384 Navarre Victoria'),
6882
+ (6521, '3384', 'Landsborough', 'VIC', 'AU', 491, ' 3384 Landsborough Victoria'),
6883
+ (6522, '3384', 'Landsborough West', 'VIC', 'AU', 491, ' 3384 Landsborough West Victoria'),
6884
+ (6523, '3384', 'Joel Joel', 'VIC', 'AU', 491, ' 3384 Joel Joel Victoria'),
6885
+ (6524, '3384', 'Joel South', 'VIC', 'AU', 491, ' 3384 Joel South Victoria'),
6886
+ (6525, '3384', 'Tulkara', 'VIC', 'AU', 491, ' 3384 Tulkara Victoria'),
6887
+ (6526, '3384', 'Wattle Creek', 'VIC', 'AU', 491, ' 3384 Wattle Creek Victoria'),
6888
+ (6527, '3385', 'Wal Wal', 'VIC', 'AU', 491, ' 3385 Wal Wal Victoria'),
6889
+ (6528, '3385', 'Ledcourt', 'VIC', 'AU', 491, ' 3385 Ledcourt Victoria'),
6890
+ (6529, '3385', 'Lubeck', 'VIC', 'AU', 491, ' 3385 Lubeck Victoria'),
6891
+ (6530, '3385', 'Riachella', 'VIC', 'AU', 491, ' 3385 Riachella Victoria'),
6892
+ (6531, '3385', 'Roses Gap', 'VIC', 'AU', 491, ' 3385 Roses Gap Victoria'),
6893
+ (6532, '3385', 'Dadswells Bridge', 'VIC', 'AU', 491, ' 3385 Dadswells Bridge Victoria'),
6894
+ (6533, '3385', 'Deep Lead', 'VIC', 'AU', 491, ' 3385 Deep Lead Victoria'),
6895
+ (6534, '3385', 'Glenorchy', 'VIC', 'AU', 491, ' 3385 Glenorchy Victoria'),
6896
+ (6535, '3387', 'Greens Creek', 'VIC', 'AU', 491, ' 3387 Greens Creek Victoria'),
6897
+ (6536, '3387', 'Germania', 'VIC', 'AU', 491, ' 3387 Germania Victoria'),
6898
+ (6537, '3387', 'Bolangum', 'VIC', 'AU', 491, ' 3387 Bolangum Victoria'),
6899
+ (6538, '3387', 'Callawadda', 'VIC', 'AU', 491, ' 3387 Callawadda Victoria'),
6900
+ (6539, '3387', 'Campbells Bridge', 'VIC', 'AU', 491, ' 3387 Campbells Bridge Victoria'),
6901
+ (6540, '3387', 'Kanya', 'VIC', 'AU', 491, ' 3387 Kanya Victoria'),
6902
+ (6541, '3387', 'Morrl Morrl', 'VIC', 'AU', 491, ' 3387 Morrl Morrl Victoria'),
6903
+ (6542, '3387', 'Marnoo', 'VIC', 'AU', 491, ' 3387 Marnoo Victoria'),
6904
+ (6543, '3387', 'Marnoo West', 'VIC', 'AU', 491, ' 3387 Marnoo West Victoria'),
6905
+ (6544, '3387', 'Wallaloo', 'VIC', 'AU', 491, ' 3387 Wallaloo Victoria'),
6906
+ (6545, '3387', 'Wallaloo East', 'VIC', 'AU', 491, ' 3387 Wallaloo East Victoria'),
6907
+ (6546, '3388', 'Rupanyup', 'VIC', 'AU', 491, ' 3388 Rupanyup Victoria'),
6908
+ (6547, '3388', 'Banyena', 'VIC', 'AU', 491, ' 3388 Banyena Victoria'),
6909
+ (6548, '3390', 'Murtoa', 'VIC', 'AU', 491, ' 3390 Murtoa Victoria'),
6910
+ (6549, '3390', 'Kewell', 'VIC', 'AU', 491, ' 3390 Kewell Victoria'),
6911
+ (6550, '3391', 'Brim', 'VIC', 'AU', 491, ' 3391 Brim Victoria'),
6912
+ (6551, '3392', 'Boolite', 'VIC', 'AU', 491, ' 3392 Boolite Victoria'),
6913
+ (6552, '3392', 'Minyip', 'VIC', 'AU', 491, ' 3392 Minyip Victoria'),
6914
+ (6553, '3392', 'Sheep Hills', 'VIC', 'AU', 491, ' 3392 Sheep Hills Victoria'),
6915
+ (6554, '3393', 'Kellalac', 'VIC', 'AU', 491, ' 3393 Kellalac Victoria'),
6916
+ (6555, '3393', 'Lah', 'VIC', 'AU', 491, ' 3393 Lah Victoria'),
6917
+ (6556, '3393', 'Warracknabeal', 'VIC', 'AU', 491, ' 3393 Warracknabeal Victoria'),
6918
+ (6557, '3393', 'Wilkur', 'VIC', 'AU', 491, ' 3393 Wilkur Victoria'),
6919
+ (6558, '3393', 'Willenabrina', 'VIC', 'AU', 491, ' 3393 Willenabrina Victoria'),
6920
+ (6559, '3393', 'Cannum', 'VIC', 'AU', 491, ' 3393 Cannum Victoria'),
6921
+ (6560, '3393', 'Crymelon', 'VIC', 'AU', 491, ' 3393 Crymelon Victoria'),
6922
+ (6561, '3393', 'Bangerang', 'VIC', 'AU', 491, ' 3393 Bangerang Victoria'),
6923
+ (6562, '3393', 'Aubrey', 'VIC', 'AU', 491, ' 3393 Aubrey Victoria'),
6924
+ (6563, '3395', 'Beulah', 'VIC', 'AU', 491, ' 3395 Beulah Victoria'),
6925
+ (6564, '3395', 'Kenmare', 'VIC', 'AU', 491, ' 3395 Kenmare Victoria'),
6926
+ (6565, '3395', 'Rosebery', 'VIC', 'AU', 491, ' 3395 Rosebery Victoria'),
6927
+ (6566, '3395', 'Reedy Dam', 'VIC', 'AU', 491, ' 3395 Reedy Dam Victoria'),
6928
+ (6567, '3396', 'Hopetoun', 'VIC', 'AU', 491, ' 3396 Hopetoun Victoria'),
6929
+ (6568, '3400', 'Horsham West', 'VIC', 'AU', 491, ' 3400 Horsham West Victoria'),
6930
+ (6569, '3400', 'Horsham', 'VIC', 'AU', 491, ' 3400 Horsham Victoria'),
6931
+ (6570, '3401', 'Gymbowen', 'VIC', 'AU', 491, ' 3401 Gymbowen Victoria'),
6932
+ (6571, '3401', 'Haven', 'VIC', 'AU', 491, ' 3401 Haven Victoria'),
6933
+ (6572, '3401', 'Dooen', 'VIC', 'AU', 491, ' 3401 Dooen Victoria'),
6934
+ (6573, '3401', 'Drung', 'VIC', 'AU', 491, ' 3401 Drung Victoria'),
6935
+ (6574, '3401', 'Cherrypool', 'VIC', 'AU', 491, ' 3401 Cherrypool Victoria'),
6936
+ (6575, '3401', 'Brimpaen', 'VIC', 'AU', 491, ' 3401 Brimpaen Victoria'),
6937
+ (6576, '3401', 'Bungalally', 'VIC', 'AU', 491, ' 3401 Bungalally Victoria'),
6938
+ (6577, '3401', 'Blackheath', 'VIC', 'AU', 491, ' 3401 Blackheath Victoria'),
6939
+ (6578, '3401', 'Zumsteins', 'VIC', 'AU', 491, ' 3401 Zumsteins Victoria'),
6940
+ (6579, '3401', 'Wonwondah', 'VIC', 'AU', 491, ' 3401 Wonwondah Victoria'),
6941
+ (6580, '3401', 'Riverside', 'VIC', 'AU', 491, ' 3401 Riverside Victoria'),
6942
+ (6581, '3401', 'Rocklands', 'VIC', 'AU', 491, ' 3401 Rocklands Victoria'),
6943
+ (6582, '3401', 'Pimpinio', 'VIC', 'AU', 491, ' 3401 Pimpinio Victoria'),
6944
+ (6583, '3401', 'Quantong', 'VIC', 'AU', 491, ' 3401 Quantong Victoria'),
6945
+ (6584, '3401', 'St Helens Plains', 'VIC', 'AU', 491, ' 3401 St Helens Plains Victoria'),
6946
+ (6585, '3401', 'Murra Warra', 'VIC', 'AU', 491, ' 3401 Murra Warra Victoria'),
6947
+ (6586, '3401', 'Nurcoung', 'VIC', 'AU', 491, ' 3401 Nurcoung Victoria'),
6948
+ (6587, '3401', 'Nurrabiel', 'VIC', 'AU', 491, ' 3401 Nurrabiel Victoria'),
6949
+ (6588, '3401', 'Kanagulk', 'VIC', 'AU', 491, ' 3401 Kanagulk Victoria'),
6950
+ (6589, '3401', 'Karnak', 'VIC', 'AU', 491, ' 3401 Karnak Victoria'),
6951
+ (6590, '3401', 'Jung', 'VIC', 'AU', 491, ' 3401 Jung Victoria'),
6952
+ (6591, '3401', 'Kalkee', 'VIC', 'AU', 491, ' 3401 Kalkee Victoria'),
6953
+ (6592, '3401', 'Laharum', 'VIC', 'AU', 491, ' 3401 Laharum Victoria'),
6954
+ (6593, '3401', 'Lower Norton', 'VIC', 'AU', 491, ' 3401 Lower Norton Victoria'),
6955
+ (6594, '3401', 'Longerenong', 'VIC', 'AU', 491, ' 3401 Longerenong Victoria'),
6956
+ (6595, '3401', 'Mockinya', 'VIC', 'AU', 491, ' 3401 Mockinya Victoria'),
6957
+ (6596, '3401', 'Mckenzie Creek', 'VIC', 'AU', 491, ' 3401 Mckenzie Creek Victoria'),
6958
+ (6597, '3401', 'Wartook', 'VIC', 'AU', 491, ' 3401 Wartook Victoria'),
6959
+ (6598, '3401', 'Wallup', 'VIC', 'AU', 491, ' 3401 Wallup Victoria'),
6960
+ (6599, '3401', 'Wail', 'VIC', 'AU', 491, ' 3401 Wail Victoria'),
6961
+ (6600, '3401', 'Vectis', 'VIC', 'AU', 491, ' 3401 Vectis Victoria'),
6962
+ (6601, '3401', 'Toolondo', 'VIC', 'AU', 491, ' 3401 Toolondo Victoria'),
6963
+ (6602, '3401', 'Telangatuk East', 'VIC', 'AU', 491, ' 3401 Telangatuk East Victoria'),
6964
+ (6603, '3402', 'Horsham', 'VIC', 'AU', 491, ' 3402 Horsham Victoria'),
6965
+ (6604, '3407', 'Gatum', 'VIC', 'AU', 491, ' 3407 Gatum Victoria'),
6966
+ (6605, '3407', 'Englefield', 'VIC', 'AU', 491, ' 3407 Englefield Victoria'),
6967
+ (6606, '3407', 'Balmoral', 'VIC', 'AU', 491, ' 3407 Balmoral Victoria'),
6968
+ (6607, '3407', 'Vasey', 'VIC', 'AU', 491, ' 3407 Vasey Victoria'),
6969
+ (6608, '3407', 'Pigeon Ponds', 'VIC', 'AU', 491, ' 3407 Pigeon Ponds Victoria'),
6970
+ (6609, '3409', 'Natimuk', 'VIC', 'AU', 491, ' 3409 Natimuk Victoria'),
6971
+ (6610, '3409', 'Noradjuha', 'VIC', 'AU', 491, ' 3409 Noradjuha Victoria'),
6972
+ (6611, '3409', 'Miga Lake', 'VIC', 'AU', 491, ' 3409 Miga Lake Victoria'),
6973
+ (6612, '3409', 'Mitre', 'VIC', 'AU', 491, ' 3409 Mitre Victoria'),
6974
+ (6613, '3409', 'Jilpanger', 'VIC', 'AU', 491, ' 3409 Jilpanger Victoria'),
6975
+ (6614, '3409', 'Tooan', 'VIC', 'AU', 491, ' 3409 Tooan Victoria'),
6976
+ (6615, '3409', 'Arapiles', 'VIC', 'AU', 491, ' 3409 Arapiles Victoria'),
6977
+ (6616, '3409', 'Wombelano', 'VIC', 'AU', 491, ' 3409 Wombelano Victoria'),
6978
+ (6617, '3409', 'Duchembegarra', 'VIC', 'AU', 491, ' 3409 Duchembegarra Victoria'),
6979
+ (6618, '3409', 'Douglas', 'VIC', 'AU', 491, ' 3409 Douglas Victoria'),
6980
+ (6619, '3409', 'Grass Flat', 'VIC', 'AU', 491, ' 3409 Grass Flat Victoria'),
6981
+ (6620, '3409', 'Clear Lake', 'VIC', 'AU', 491, ' 3409 Clear Lake Victoria'),
6982
+ (6621, '3412', 'Goroke', 'VIC', 'AU', 491, ' 3412 Goroke Victoria'),
6983
+ (6622, '3413', 'Minimay', 'VIC', 'AU', 491, ' 3413 Minimay Victoria'),
6984
+ (6623, '3413', 'Neuarpurr', 'VIC', 'AU', 491, ' 3413 Neuarpurr Victoria'),
6985
+ (6624, '3413', 'Peronne', 'VIC', 'AU', 491, ' 3413 Peronne Victoria'),
6986
+ (6625, '3413', 'Ozenkadnook', 'VIC', 'AU', 491, ' 3413 Ozenkadnook Victoria'),
6987
+ (6626, '3414', 'Tarranyurk', 'VIC', 'AU', 491, ' 3414 Tarranyurk Victoria'),
6988
+ (6627, '3414', 'Dimboola', 'VIC', 'AU', 491, ' 3414 Dimboola Victoria'),
6989
+ (6628, '3414', 'Antwerp', 'VIC', 'AU', 491, ' 3414 Antwerp Victoria'),
6990
+ (6629, '3415', 'Miram', 'VIC', 'AU', 491, ' 3415 Miram Victoria'),
6991
+ (6630, '3418', 'Kiata', 'VIC', 'AU', 491, ' 3418 Kiata Victoria'),
6992
+ (6631, '3418', 'Little Desert', 'VIC', 'AU', 491, ' 3418 Little Desert Victoria'),
6993
+ (6632, '3418', 'Lorquon', 'VIC', 'AU', 491, ' 3418 Lorquon Victoria'),
6994
+ (6633, '3418', 'Lawloit', 'VIC', 'AU', 491, ' 3418 Lawloit Victoria'),
6995
+ (6634, '3418', 'Netherby', 'VIC', 'AU', 491, ' 3418 Netherby Victoria'),
6996
+ (6635, '3418', 'Nhill', 'VIC', 'AU', 491, ' 3418 Nhill Victoria'),
6997
+ (6636, '3418', 'Yanac', 'VIC', 'AU', 491, ' 3418 Yanac Victoria'),
6998
+ (6637, '3418', 'Gerang Gerung', 'VIC', 'AU', 491, ' 3418 Gerang Gerung Victoria'),
6999
+ (6638, '3418', 'Glenlee', 'VIC', 'AU', 491, ' 3418 Glenlee Victoria'),
7000
+ (6639, '3418', 'Broughton', 'VIC', 'AU', 491, ' 3418 Broughton Victoria'),
7001
+ (6640, '3419', 'Kaniva', 'VIC', 'AU', 491, ' 3419 Kaniva Victoria'),
7002
+ (6641, '3420', 'Lillimur', 'VIC', 'AU', 491, ' 3420 Lillimur Victoria'),
7003
+ (6642, '3420', 'Serviceton', 'VIC', 'AU', 491, ' 3420 Serviceton Victoria'),
7004
+ (6643, '3420', 'Telopea Downs', 'VIC', 'AU', 491, ' 3420 Telopea Downs Victoria'),
7005
+ (6644, '3423', 'Jeparit', 'VIC', 'AU', 491, ' 3423 Jeparit Victoria'),
7006
+ (6645, '3424', 'Yaapeet', 'VIC', 'AU', 491, ' 3424 Yaapeet Victoria'),
7007
+ (6646, '3424', 'Albacutya', 'VIC', 'AU', 491, ' 3424 Albacutya Victoria'),
7008
+ (6647, '3424', 'Rainbow', 'VIC', 'AU', 491, ' 3424 Rainbow Victoria'),
7009
+ (6648, '3427', 'Diggers Rest', 'VIC', 'AU', 491, ' 3427 Diggers Rest Victoria'),
7010
+ (6649, '3428', 'Bulla', 'VIC', 'AU', 491, ' 3428 Bulla Victoria'),
7011
+ (6650, '3429', 'Sunbury', 'VIC', 'AU', 491, ' 3429 Sunbury Victoria'),
7012
+ (6651, '3429', 'Wildwood', 'VIC', 'AU', 491, ' 3429 Wildwood Victoria'),
7013
+ (6652, '3430', 'Clarkefield', 'VIC', 'AU', 491, ' 3430 Clarkefield Victoria'),
7014
+ (6653, '3431', 'Riddells Creek', 'VIC', 'AU', 491, ' 3431 Riddells Creek Victoria'),
7015
+ (6654, '3432', 'Bolinda', 'VIC', 'AU', 491, ' 3432 Bolinda Victoria'),
7016
+ (6655, '3433', 'Monegeetta', 'VIC', 'AU', 491, ' 3433 Monegeetta Victoria'),
7017
+ (6656, '3434', 'Kerrie', 'VIC', 'AU', 491, ' 3434 Kerrie Victoria'),
7018
+ (6657, '3434', 'Cherokee', 'VIC', 'AU', 491, ' 3434 Cherokee Victoria'),
7019
+ (6658, '3434', 'Springfield', 'VIC', 'AU', 491, ' 3434 Springfield Victoria'),
7020
+ (6659, '3434', 'Romsey', 'VIC', 'AU', 491, ' 3434 Romsey Victoria'),
7021
+ (6660, '3435', 'Goldie', 'VIC', 'AU', 491, ' 3435 Goldie Victoria'),
7022
+ (6661, '3435', 'Benloch', 'VIC', 'AU', 491, ' 3435 Benloch Victoria'),
7023
+ (6662, '3435', 'Lancefield', 'VIC', 'AU', 491, ' 3435 Lancefield Victoria'),
7024
+ (6663, '3435', 'Nulla Vale', 'VIC', 'AU', 491, ' 3435 Nulla Vale Victoria'),
7025
+ (6664, '3437', 'Bullengarook', 'VIC', 'AU', 491, ' 3437 Bullengarook Victoria'),
7026
+ (6665, '3437', 'Gisborne', 'VIC', 'AU', 491, ' 3437 Gisborne Victoria'),
7027
+ (6666, '3437', 'Gisborne South', 'VIC', 'AU', 491, ' 3437 Gisborne South Victoria'),
7028
+ (6667, '3438', 'New Gisborne', 'VIC', 'AU', 491, ' 3438 New Gisborne Victoria'),
7029
+ (6668, '3440', 'Macedon', 'VIC', 'AU', 491, ' 3440 Macedon Victoria'),
7030
+ (6669, '3441', 'Mount Macedon', 'VIC', 'AU', 491, ' 3441 Mount Macedon Victoria'),
7031
+ (6670, '3442', 'Newham', 'VIC', 'AU', 491, ' 3442 Newham Victoria'),
7032
+ (6671, '3442', 'Hesket', 'VIC', 'AU', 491, ' 3442 Hesket Victoria'),
7033
+ (6672, '3442', 'Cobaw', 'VIC', 'AU', 491, ' 3442 Cobaw Victoria'),
7034
+ (6673, '3442', 'Cadello', 'VIC', 'AU', 491, ' 3442 Cadello Victoria'),
7035
+ (6674, '3442', 'Carlsruhe', 'VIC', 'AU', 491, ' 3442 Carlsruhe Victoria'),
7036
+ (6675, '3442', 'Ashbourne', 'VIC', 'AU', 491, ' 3442 Ashbourne Victoria'),
7037
+ (6676, '3442', 'Rochford', 'VIC', 'AU', 491, ' 3442 Rochford Victoria'),
7038
+ (6677, '3442', 'Woodend', 'VIC', 'AU', 491, ' 3442 Woodend Victoria'),
7039
+ (6678, '3442', 'Woodend North', 'VIC', 'AU', 491, ' 3442 Woodend North Victoria'),
7040
+ (6679, '3444', 'Tylden', 'VIC', 'AU', 491, ' 3444 Tylden Victoria'),
7041
+ (6680, '3444', 'Tylden South', 'VIC', 'AU', 491, ' 3444 Tylden South Victoria'),
7042
+ (6681, '3444', 'Spring Hill', 'VIC', 'AU', 491, ' 3444 Spring Hill Victoria'),
7043
+ (6682, '3444', 'Sidonia', 'VIC', 'AU', 491, ' 3444 Sidonia Victoria'),
7044
+ (6683, '3444', 'Pipers Creek', 'VIC', 'AU', 491, ' 3444 Pipers Creek Victoria'),
7045
+ (6684, '3444', 'Pastoria', 'VIC', 'AU', 491, ' 3444 Pastoria Victoria'),
7046
+ (6685, '3444', 'Pastoria East', 'VIC', 'AU', 491, ' 3444 Pastoria East Victoria'),
7047
+ (6686, '3444', 'Redesdale', 'VIC', 'AU', 491, ' 3444 Redesdale Victoria'),
7048
+ (6687, '3444', 'Lauriston', 'VIC', 'AU', 491, ' 3444 Lauriston Victoria'),
7049
+ (6688, '3444', 'Langley', 'VIC', 'AU', 491, ' 3444 Langley Victoria'),
7050
+ (6689, '3444', 'Lyal', 'VIC', 'AU', 491, ' 3444 Lyal Victoria'),
7051
+ (6690, '3444', 'Kyneton', 'VIC', 'AU', 491, ' 3444 Kyneton Victoria'),
7052
+ (6691, '3444', 'Kyneton South', 'VIC', 'AU', 491, ' 3444 Kyneton South Victoria'),
7053
+ (6692, '3444', 'Mia Mia', 'VIC', 'AU', 491, ' 3444 Mia Mia Victoria'),
7054
+ (6693, '3444', 'Metcalfe East', 'VIC', 'AU', 491, ' 3444 Metcalfe East Victoria'),
7055
+ (6694, '3444', 'Barfold', 'VIC', 'AU', 491, ' 3444 Barfold Victoria'),
7056
+ (6695, '3444', 'Baynton', 'VIC', 'AU', 491, ' 3444 Baynton Victoria'),
7057
+ (6696, '3444', 'Baynton East', 'VIC', 'AU', 491, ' 3444 Baynton East Victoria'),
7058
+ (6697, '3444', 'Glenhope', 'VIC', 'AU', 491, ' 3444 Glenhope Victoria'),
7059
+ (6698, '3444', 'Greenhill', 'VIC', 'AU', 491, ' 3444 Greenhill Victoria'),
7060
+ (6699, '3444', 'Edgecombe', 'VIC', 'AU', 491, ' 3444 Edgecombe Victoria'),
7061
+ (6700, '3446', 'Drummond North', 'VIC', 'AU', 491, ' 3446 Drummond North Victoria'),
7062
+ (6701, '3446', 'Malmsbury', 'VIC', 'AU', 491, ' 3446 Malmsbury Victoria'),
7063
+ (6702, '3447', 'Taradale', 'VIC', 'AU', 491, ' 3447 Taradale Victoria'),
7064
+ (6703, '3448', 'Sutton Grange', 'VIC', 'AU', 491, ' 3448 Sutton Grange Victoria'),
7065
+ (6704, '3448', 'Metcalfe', 'VIC', 'AU', 491, ' 3448 Metcalfe Victoria'),
7066
+ (6705, '3448', 'Elphinstone', 'VIC', 'AU', 491, ' 3448 Elphinstone Victoria'),
7067
+ (6706, '3450', 'Castlemaine', 'VIC', 'AU', 491, ' 3450 Castlemaine Victoria'),
7068
+ (6707, '3450', 'Moonlight Flat', 'VIC', 'AU', 491, ' 3450 Moonlight Flat Victoria'),
7069
+ (6708, '3451', 'Mckenzie Hill', 'VIC', 'AU', 491, ' 3451 Mckenzie Hill Victoria'),
7070
+ (6709, '3451', 'Muckleford', 'VIC', 'AU', 491, ' 3451 Muckleford Victoria'),
7071
+ (6710, '3451', 'Tarilta', 'VIC', 'AU', 491, ' 3451 Tarilta Victoria'),
7072
+ (6711, '3451', 'Vaughan', 'VIC', 'AU', 491, ' 3451 Vaughan Victoria'),
7073
+ (6712, '3451', 'Chewton', 'VIC', 'AU', 491, ' 3451 Chewton Victoria'),
7074
+ (6713, '3451', 'Chewton Bushlands', 'VIC', 'AU', 491, ' 3451 Chewton Bushlands Victoria'),
7075
+ (6714, '3451', 'Campbells Creek', 'VIC', 'AU', 491, ' 3451 Campbells Creek Victoria'),
7076
+ (6715, '3451', 'Faraday', 'VIC', 'AU', 491, ' 3451 Faraday Victoria'),
7077
+ (6716, '3451', 'Fryerstown', 'VIC', 'AU', 491, ' 3451 Fryerstown Victoria'),
7078
+ (6717, '3451', 'Guildford', 'VIC', 'AU', 491, ' 3451 Guildford Victoria'),
7079
+ (6718, '3451', 'Golden Point', 'VIC', 'AU', 491, ' 3451 Golden Point Victoria'),
7080
+ (6719, '3451', 'Gower', 'VIC', 'AU', 491, ' 3451 Gower Victoria'),
7081
+ (6720, '3451', 'Glenluce', 'VIC', 'AU', 491, ' 3451 Glenluce Victoria'),
7082
+ (6721, '3451', 'Irishtown', 'VIC', 'AU', 491, ' 3451 Irishtown Victoria'),
7083
+ (6722, '3451', 'Barkers Creek', 'VIC', 'AU', 491, ' 3451 Barkers Creek Victoria'),
7084
+ (6723, '3451', 'Yapeen', 'VIC', 'AU', 491, ' 3451 Yapeen Victoria'),
7085
+ (6724, '3453', 'Harcourt', 'VIC', 'AU', 491, ' 3453 Harcourt Victoria'),
7086
+ (6725, '3453', 'Harcourt North', 'VIC', 'AU', 491, ' 3453 Harcourt North Victoria'),
7087
+ (6726, '3453', 'Ravenswood', 'VIC', 'AU', 491, ' 3453 Ravenswood Victoria'),
7088
+ (6727, '3453', 'Ravenswood South', 'VIC', 'AU', 491, ' 3453 Ravenswood South Victoria'),
7089
+ (6728, '3458', 'Newbury', 'VIC', 'AU', 491, ' 3458 Newbury Victoria'),
7090
+ (6729, '3458', 'North Blackwood', 'VIC', 'AU', 491, ' 3458 North Blackwood Victoria'),
7091
+ (6730, '3458', 'Little Hampton', 'VIC', 'AU', 491, ' 3458 Little Hampton Victoria'),
7092
+ (6731, '3458', 'Lerderderg', 'VIC', 'AU', 491, ' 3458 Lerderderg Victoria'),
7093
+ (6732, '3458', 'Trentham', 'VIC', 'AU', 491, ' 3458 Trentham Victoria'),
7094
+ (6733, '3458', 'Trentham East', 'VIC', 'AU', 491, ' 3458 Trentham East Victoria'),
7095
+ (6734, '3458', 'Fern Hill', 'VIC', 'AU', 491, ' 3458 Fern Hill Victoria'),
7096
+ (6735, '3458', 'Barrys Reef', 'VIC', 'AU', 491, ' 3458 Barrys Reef Victoria'),
7097
+ (6736, '3458', 'Blackwood', 'VIC', 'AU', 491, ' 3458 Blackwood Victoria'),
7098
+ (6737, '3460', 'Basalt', 'VIC', 'AU', 491, ' 3460 Basalt Victoria'),
7099
+ (6738, '3460', 'Daylesford', 'VIC', 'AU', 491, ' 3460 Daylesford Victoria'),
7100
+ (6739, '3461', 'Denver', 'VIC', 'AU', 491, ' 3461 Denver Victoria'),
7101
+ (6740, '3461', 'Franklinford', 'VIC', 'AU', 491, ' 3461 Franklinford Victoria'),
7102
+ (6741, '3461', 'Elevated Plains', 'VIC', 'AU', 491, ' 3461 Elevated Plains Victoria'),
7103
+ (6742, '3461', 'Eganstown', 'VIC', 'AU', 491, ' 3461 Eganstown Victoria'),
7104
+ (6743, '3461', 'Dry Diggings', 'VIC', 'AU', 491, ' 3461 Dry Diggings Victoria'),
7105
+ (6744, '3461', 'Drummond', 'VIC', 'AU', 491, ' 3461 Drummond Victoria'),
7106
+ (6745, '3461', 'Glenlyon', 'VIC', 'AU', 491, ' 3461 Glenlyon Victoria'),
7107
+ (6746, '3461', 'Hepburn', 'VIC', 'AU', 491, ' 3461 Hepburn Victoria'),
7108
+ (6747, '3461', 'Hepburn Springs', 'VIC', 'AU', 491, ' 3461 Hepburn Springs Victoria'),
7109
+ (6748, '3461', 'Bullarto', 'VIC', 'AU', 491, ' 3461 Bullarto Victoria'),
7110
+ (6749, '3461', 'Bullarto South', 'VIC', 'AU', 491, ' 3461 Bullarto South Victoria'),
7111
+ (6750, '3461', 'Clydesdale', 'VIC', 'AU', 491, ' 3461 Clydesdale Victoria'),
7112
+ (6751, '3461', 'Coomoora', 'VIC', 'AU', 491, ' 3461 Coomoora Victoria'),
7113
+ (6752, '3461', 'Yandoit', 'VIC', 'AU', 491, ' 3461 Yandoit Victoria'),
7114
+ (6753, '3461', 'Yandoit Hills', 'VIC', 'AU', 491, ' 3461 Yandoit Hills Victoria'),
7115
+ (6754, '3461', 'Strangways', 'VIC', 'AU', 491, ' 3461 Strangways Victoria'),
7116
+ (6755, '3461', 'Wheatsheaf', 'VIC', 'AU', 491, ' 3461 Wheatsheaf Victoria'),
7117
+ (6756, '3461', 'Leonards Hill', 'VIC', 'AU', 491, ' 3461 Leonards Hill Victoria'),
7118
+ (6757, '3461', 'Lyonville', 'VIC', 'AU', 491, ' 3461 Lyonville Victoria'),
7119
+ (6758, '3461', 'Korweinguboora', 'VIC', 'AU', 491, ' 3461 Korweinguboora Victoria'),
7120
+ (6759, '3461', 'Mount Franklin', 'VIC', 'AU', 491, ' 3461 Mount Franklin Victoria'),
7121
+ (6760, '3461', 'Musk', 'VIC', 'AU', 491, ' 3461 Musk Victoria'),
7122
+ (6761, '3461', 'Musk Vale', 'VIC', 'AU', 491, ' 3461 Musk Vale Victoria'),
7123
+ (6762, '3461', 'Porcupine Ridge', 'VIC', 'AU', 491, ' 3461 Porcupine Ridge Victoria'),
7124
+ (6763, '3461', 'Spargo Creek', 'VIC', 'AU', 491, ' 3461 Spargo Creek Victoria'),
7125
+ (6764, '3461', 'Shepherds Flat', 'VIC', 'AU', 491, ' 3461 Shepherds Flat Victoria'),
7126
+ (6765, '3461', 'Sailors Falls', 'VIC', 'AU', 491, ' 3461 Sailors Falls Victoria'),
7127
+ (6766, '3461', 'Sailors Hill', 'VIC', 'AU', 491, ' 3461 Sailors Hill Victoria'),
7128
+ (6767, '3462', 'Sandon', 'VIC', 'AU', 491, ' 3462 Sandon Victoria'),
7129
+ (6768, '3462', 'Muckleford South', 'VIC', 'AU', 491, ' 3462 Muckleford South Victoria'),
7130
+ (6769, '3462', 'Newstead', 'VIC', 'AU', 491, ' 3462 Newstead Victoria'),
7131
+ (6770, '3462', 'Welshmans Reef', 'VIC', 'AU', 491, ' 3462 Welshmans Reef Victoria'),
7132
+ (6771, '3462', 'Green Gully', 'VIC', 'AU', 491, ' 3462 Green Gully Victoria'),
7133
+ (6772, '3463', 'Eastville', 'VIC', 'AU', 491, ' 3463 Eastville Victoria'),
7134
+ (6773, '3463', 'Bradford', 'VIC', 'AU', 491, ' 3463 Bradford Victoria'),
7135
+ (6774, '3463', 'Woodstock West', 'VIC', 'AU', 491, ' 3463 Woodstock West Victoria'),
7136
+ (6775, '3463', 'Baringhup', 'VIC', 'AU', 491, ' 3463 Baringhup Victoria'),
7137
+ (6776, '3463', 'Baringhup West', 'VIC', 'AU', 491, ' 3463 Baringhup West Victoria'),
7138
+ (6777, '3463', 'Walmer', 'VIC', 'AU', 491, ' 3463 Walmer Victoria'),
7139
+ (6778, '3463', 'Tarrengower', 'VIC', 'AU', 491, ' 3463 Tarrengower Victoria'),
7140
+ (6779, '3463', 'Neereman', 'VIC', 'AU', 491, ' 3463 Neereman Victoria'),
7141
+ (6780, '3463', 'Nuggetty', 'VIC', 'AU', 491, ' 3463 Nuggetty Victoria'),
7142
+ (6781, '3463', 'Laanecoorie', 'VIC', 'AU', 491, ' 3463 Laanecoorie Victoria'),
7143
+ (6782, '3463', 'Maldon', 'VIC', 'AU', 491, ' 3463 Maldon Victoria'),
7144
+ (6783, '3464', 'Carisbrook', 'VIC', 'AU', 491, ' 3464 Carisbrook Victoria'),
7145
+ (6784, '3465', 'Cotswold', 'VIC', 'AU', 491, ' 3465 Cotswold Victoria'),
7146
+ (6785, '3465', 'Daisy Hill', 'VIC', 'AU', 491, ' 3465 Daisy Hill Victoria'),
7147
+ (6786, '3465', 'Craigie', 'VIC', 'AU', 491, ' 3465 Craigie Victoria'),
7148
+ (6787, '3465', 'Bowenvale', 'VIC', 'AU', 491, ' 3465 Bowenvale Victoria'),
7149
+ (6788, '3465', 'Bung Bong', 'VIC', 'AU', 491, ' 3465 Bung Bong Victoria'),
7150
+ (6789, '3465', 'Flagstaff', 'VIC', 'AU', 491, ' 3465 Flagstaff Victoria'),
7151
+ (6790, '3465', 'Havelock', 'VIC', 'AU', 491, ' 3465 Havelock Victoria'),
7152
+ (6791, '3465', 'Golden Point', 'VIC', 'AU', 491, ' 3465 Golden Point Victoria'),
7153
+ (6792, '3465', 'Homebush', 'VIC', 'AU', 491, ' 3465 Homebush Victoria'),
7154
+ (6793, '3465', 'Adelaide Lead', 'VIC', 'AU', 491, ' 3465 Adelaide Lead Victoria'),
7155
+ (6794, '3465', 'Alma', 'VIC', 'AU', 491, ' 3465 Alma Victoria'),
7156
+ (6795, '3465', 'Majorca', 'VIC', 'AU', 491, ' 3465 Majorca Victoria'),
7157
+ (6796, '3465', 'Maryborough', 'VIC', 'AU', 491, ' 3465 Maryborough Victoria'),
7158
+ (6797, '3465', 'Moonlight Flat', 'VIC', 'AU', 491, ' 3465 Moonlight Flat Victoria'),
7159
+ (6798, '3465', 'Moolort', 'VIC', 'AU', 491, ' 3465 Moolort Victoria'),
7160
+ (6799, '3465', 'Natte Yallock', 'VIC', 'AU', 491, ' 3465 Natte Yallock Victoria'),
7161
+ (6800, '3465', 'Simson', 'VIC', 'AU', 491, ' 3465 Simson Victoria'),
7162
+ (6801, '3465', 'Rathscar', 'VIC', 'AU', 491, ' 3465 Rathscar Victoria'),
7163
+ (6802, '3465', 'Rathscar West', 'VIC', 'AU', 491, ' 3465 Rathscar West Victoria'),
7164
+ (6803, '3465', 'Timor', 'VIC', 'AU', 491, ' 3465 Timor Victoria'),
7165
+ (6804, '3465', 'Timor West', 'VIC', 'AU', 491, ' 3465 Timor West Victoria'),
7166
+ (6805, '3465', 'Wareek', 'VIC', 'AU', 491, ' 3465 Wareek Victoria'),
7167
+ (6806, '3467', 'Avoca', 'VIC', 'AU', 491, ' 3467 Avoca Victoria'),
7168
+ (6807, '3468', 'Amphitheatre', 'VIC', 'AU', 491, ' 3468 Amphitheatre Victoria'),
7169
+ (6808, '3468', 'Mount Lonarch', 'VIC', 'AU', 491, ' 3468 Mount Lonarch Victoria'),
7170
+ (6809, '3469', 'Nowhere Creek', 'VIC', 'AU', 491, ' 3469 Nowhere Creek Victoria'),
7171
+ (6810, '3469', 'Glenlofty', 'VIC', 'AU', 491, ' 3469 Glenlofty Victoria'),
7172
+ (6811, '3469', 'Glenlogie', 'VIC', 'AU', 491, ' 3469 Glenlogie Victoria'),
7173
+ (6812, '3469', 'Glenpatrick', 'VIC', 'AU', 491, ' 3469 Glenpatrick Victoria'),
7174
+ (6813, '3469', 'Elmhurst', 'VIC', 'AU', 491, ' 3469 Elmhurst Victoria'),
7175
+ (6814, '3472', 'Eddington', 'VIC', 'AU', 491, ' 3472 Eddington Victoria'),
7176
+ (6815, '3472', 'Dunluce', 'VIC', 'AU', 491, ' 3472 Dunluce Victoria'),
7177
+ (6816, '3472', 'Dunolly', 'VIC', 'AU', 491, ' 3472 Dunolly Victoria'),
7178
+ (6817, '3472', 'Goldsborough', 'VIC', 'AU', 491, ' 3472 Goldsborough Victoria'),
7179
+ (6818, '3472', 'Inkerman', 'VIC', 'AU', 491, ' 3472 Inkerman Victoria'),
7180
+ (6819, '3472', 'Bromley', 'VIC', 'AU', 491, ' 3472 Bromley Victoria'),
7181
+ (6820, '3472', 'Betley', 'VIC', 'AU', 491, ' 3472 Betley Victoria'),
7182
+ (6821, '3472', 'Bet Bet', 'VIC', 'AU', 491, ' 3472 Bet Bet Victoria'),
7183
+ (6822, '3472', 'Mount Hooghly', 'VIC', 'AU', 491, ' 3472 Mount Hooghly Victoria'),
7184
+ (6823, '3472', 'Moliagul', 'VIC', 'AU', 491, ' 3472 Moliagul Victoria'),
7185
+ (6824, '3472', 'Mcintyre', 'VIC', 'AU', 491, ' 3472 Mcintyre Victoria'),
7186
+ (6825, '3475', 'Logan', 'VIC', 'AU', 491, ' 3475 Logan Victoria'),
7187
+ (6826, '3475', 'Bealiba', 'VIC', 'AU', 491, ' 3475 Bealiba Victoria'),
7188
+ (6827, '3475', 'Archdale', 'VIC', 'AU', 491, ' 3475 Archdale Victoria'),
7189
+ (6828, '3475', 'Archdale Junction', 'VIC', 'AU', 491, ' 3475 Archdale Junction Victoria'),
7190
+ (6829, '3475', 'Burkes Flat', 'VIC', 'AU', 491, ' 3475 Burkes Flat Victoria'),
7191
+ (6830, '3475', 'Cochranes Creek', 'VIC', 'AU', 491, ' 3475 Cochranes Creek Victoria'),
7192
+ (6831, '3475', 'Emu', 'VIC', 'AU', 491, ' 3475 Emu Victoria'),
7193
+ (6832, '3477', 'Gooroc', 'VIC', 'AU', 491, ' 3477 Gooroc Victoria'),
7194
+ (6833, '3477', 'Gowar East', 'VIC', 'AU', 491, ' 3477 Gowar East Victoria'),
7195
+ (6834, '3477', 'Gre Gre', 'VIC', 'AU', 491, ' 3477 Gre Gre Victoria');
7196
+ INSERT INTO {$this->getTable('candf_pcs')} (`entity_id`, `postcode`, `city`, `state`, `country_id`, `region_id`, `fulltext`) VALUES
7197
+ (6835, '3477', 'Gre Gre North', 'VIC', 'AU', 491, ' 3477 Gre Gre North Victoria'),
7198
+ (6836, '3477', 'Gre Gre South', 'VIC', 'AU', 491, ' 3477 Gre Gre South Victoria'),
7199
+ (6837, '3477', 'Grays Bridge', 'VIC', 'AU', 491, ' 3477 Grays Bridge Victoria'),
7200
+ (6838, '3477', 'Carapooee West', 'VIC', 'AU', 491, ' 3477 Carapooee West Victoria'),
7201
+ (6839, '3477', 'Coonooer Bridge', 'VIC', 'AU', 491, ' 3477 Coonooer Bridge Victoria'),
7202
+ (6840, '3477', 'Coonooer West', 'VIC', 'AU', 491, ' 3477 Coonooer West Victoria'),
7203
+ (6841, '3477', 'Dalyenong', 'VIC', 'AU', 491, ' 3477 Dalyenong Victoria'),
7204
+ (6842, '3477', 'Carapooee', 'VIC', 'AU', 491, ' 3477 Carapooee Victoria'),
7205
+ (6843, '3477', 'Avon Plains', 'VIC', 'AU', 491, ' 3477 Avon Plains Victoria'),
7206
+ (6844, '3477', 'Beazleys Bridge', 'VIC', 'AU', 491, ' 3477 Beazleys Bridge Victoria'),
7207
+ (6845, '3477', 'Winjallok', 'VIC', 'AU', 491, ' 3477 Winjallok Victoria'),
7208
+ (6846, '3477', 'York Plains', 'VIC', 'AU', 491, ' 3477 York Plains Victoria'),
7209
+ (6847, '3477', 'Kooreh', 'VIC', 'AU', 491, ' 3477 Kooreh Victoria'),
7210
+ (6848, '3477', 'Marnoo East', 'VIC', 'AU', 491, ' 3477 Marnoo East Victoria'),
7211
+ (6849, '3477', 'Moolerr', 'VIC', 'AU', 491, ' 3477 Moolerr Victoria'),
7212
+ (6850, '3477', 'Moyreisk', 'VIC', 'AU', 491, ' 3477 Moyreisk Victoria'),
7213
+ (6851, '3477', 'Paradise', 'VIC', 'AU', 491, ' 3477 Paradise Victoria'),
7214
+ (6852, '3477', 'Redbank', 'VIC', 'AU', 491, ' 3477 Redbank Victoria'),
7215
+ (6853, '3477', 'St Arnaud East', 'VIC', 'AU', 491, ' 3477 St Arnaud East Victoria'),
7216
+ (6854, '3477', 'St Arnaud North', 'VIC', 'AU', 491, ' 3477 St Arnaud North Victoria'),
7217
+ (6855, '3477', 'Slaty Creek', 'VIC', 'AU', 491, ' 3477 Slaty Creek Victoria'),
7218
+ (6856, '3477', 'Rostron', 'VIC', 'AU', 491, ' 3477 Rostron Victoria'),
7219
+ (6857, '3477', 'Traynors Lagoon', 'VIC', 'AU', 491, ' 3477 Traynors Lagoon Victoria'),
7220
+ (6858, '3477', 'Tottington', 'VIC', 'AU', 491, ' 3477 Tottington Victoria'),
7221
+ (6859, '3477', 'Swanwater', 'VIC', 'AU', 491, ' 3477 Swanwater Victoria'),
7222
+ (6860, '3477', 'Stuart Mill', 'VIC', 'AU', 491, ' 3477 Stuart Mill Victoria'),
7223
+ (6861, '3477', 'Sutherland', 'VIC', 'AU', 491, ' 3477 Sutherland Victoria'),
7224
+ (6862, '3478', 'Tanwood', 'VIC', 'AU', 491, ' 3478 Tanwood Victoria'),
7225
+ (6863, '3478', 'Warrenmang', 'VIC', 'AU', 491, ' 3478 Warrenmang Victoria'),
7226
+ (6864, '3478', 'St Arnaud', 'VIC', 'AU', 491, ' 3478 St Arnaud Victoria'),
7227
+ (6865, '3478', 'Percydale', 'VIC', 'AU', 491, ' 3478 Percydale Victoria'),
7228
+ (6866, '3478', 'Moonambel', 'VIC', 'AU', 491, ' 3478 Moonambel Victoria'),
7229
+ (6867, '3478', 'Medlyn', 'VIC', 'AU', 491, ' 3478 Medlyn Victoria'),
7230
+ (6868, '3478', 'Yawong Hills', 'VIC', 'AU', 491, ' 3478 Yawong Hills Victoria'),
7231
+ (6869, '3478', 'Dooboobetic', 'VIC', 'AU', 491, ' 3478 Dooboobetic Victoria'),
7232
+ (6870, '3480', 'Donald', 'VIC', 'AU', 491, ' 3480 Donald Victoria'),
7233
+ (6871, '3480', 'Gil Gil', 'VIC', 'AU', 491, ' 3480 Gil Gil Victoria'),
7234
+ (6872, '3480', 'Jeffcott', 'VIC', 'AU', 491, ' 3480 Jeffcott Victoria'),
7235
+ (6873, '3480', 'Jeffcott North', 'VIC', 'AU', 491, ' 3480 Jeffcott North Victoria'),
7236
+ (6874, '3480', 'Cope Cope', 'VIC', 'AU', 491, ' 3480 Cope Cope Victoria'),
7237
+ (6875, '3480', 'Corack', 'VIC', 'AU', 491, ' 3480 Corack Victoria'),
7238
+ (6876, '3480', 'Corack East', 'VIC', 'AU', 491, ' 3480 Corack East Victoria'),
7239
+ (6877, '3480', 'Carron', 'VIC', 'AU', 491, ' 3480 Carron Victoria'),
7240
+ (6878, '3480', 'Areegra', 'VIC', 'AU', 491, ' 3480 Areegra Victoria'),
7241
+ (6879, '3480', 'Laen', 'VIC', 'AU', 491, ' 3480 Laen Victoria'),
7242
+ (6880, '3480', 'Laen East', 'VIC', 'AU', 491, ' 3480 Laen East Victoria'),
7243
+ (6881, '3480', 'Laen North', 'VIC', 'AU', 491, ' 3480 Laen North Victoria'),
7244
+ (6882, '3480', 'Litchfield', 'VIC', 'AU', 491, ' 3480 Litchfield Victoria'),
7245
+ (6883, '3480', 'Lawler', 'VIC', 'AU', 491, ' 3480 Lawler Victoria'),
7246
+ (6884, '3480', 'Lake Buloke', 'VIC', 'AU', 491, ' 3480 Lake Buloke Victoria'),
7247
+ (6885, '3480', 'Rich Avon', 'VIC', 'AU', 491, ' 3480 Rich Avon Victoria'),
7248
+ (6886, '3480', 'Rich Avon East', 'VIC', 'AU', 491, ' 3480 Rich Avon East Victoria'),
7249
+ (6887, '3480', 'Rich Avon West', 'VIC', 'AU', 491, ' 3480 Rich Avon West Victoria'),
7250
+ (6888, '3480', 'Swanwater West', 'VIC', 'AU', 491, ' 3480 Swanwater West Victoria'),
7251
+ (6889, '3482', 'Watchem', 'VIC', 'AU', 491, ' 3482 Watchem Victoria'),
7252
+ (6890, '3482', 'Watchem West', 'VIC', 'AU', 491, ' 3482 Watchem West Victoria'),
7253
+ (6891, '3482', 'Warmur', 'VIC', 'AU', 491, ' 3482 Warmur Victoria'),
7254
+ (6892, '3482', 'Massey', 'VIC', 'AU', 491, ' 3482 Massey Victoria'),
7255
+ (6893, '3482', 'Morton Plains', 'VIC', 'AU', 491, ' 3482 Morton Plains Victoria'),
7256
+ (6894, '3483', 'Marlbed', 'VIC', 'AU', 491, ' 3483 Marlbed Victoria'),
7257
+ (6895, '3483', 'Karyrie', 'VIC', 'AU', 491, ' 3483 Karyrie Victoria'),
7258
+ (6896, '3483', 'Jil Jil', 'VIC', 'AU', 491, ' 3483 Jil Jil Victoria'),
7259
+ (6897, '3483', 'Kinnabulla', 'VIC', 'AU', 491, ' 3483 Kinnabulla Victoria'),
7260
+ (6898, '3483', 'Narraport', 'VIC', 'AU', 491, ' 3483 Narraport Victoria'),
7261
+ (6899, '3483', 'Whirily', 'VIC', 'AU', 491, ' 3483 Whirily Victoria'),
7262
+ (6900, '3483', 'Ballapur', 'VIC', 'AU', 491, ' 3483 Ballapur Victoria'),
7263
+ (6901, '3483', 'Birchip', 'VIC', 'AU', 491, ' 3483 Birchip Victoria'),
7264
+ (6902, '3483', 'Birchip West', 'VIC', 'AU', 491, ' 3483 Birchip West Victoria'),
7265
+ (6903, '3483', 'Curyo', 'VIC', 'AU', 491, ' 3483 Curyo Victoria'),
7266
+ (6904, '3485', 'Banyan', 'VIC', 'AU', 491, ' 3485 Banyan Victoria'),
7267
+ (6905, '3485', 'Woomelang', 'VIC', 'AU', 491, ' 3485 Woomelang Victoria'),
7268
+ (6906, '3485', 'Watchupga', 'VIC', 'AU', 491, ' 3485 Watchupga Victoria'),
7269
+ (6907, '3485', 'Willangie', 'VIC', 'AU', 491, ' 3485 Willangie Victoria'),
7270
+ (6908, '3487', 'Lascelles', 'VIC', 'AU', 491, ' 3487 Lascelles Victoria'),
7271
+ (6909, '3488', 'Speed', 'VIC', 'AU', 491, ' 3488 Speed Victoria'),
7272
+ (6910, '3488', 'Turriff', 'VIC', 'AU', 491, ' 3488 Turriff Victoria'),
7273
+ (6911, '3488', 'Turriff East', 'VIC', 'AU', 491, ' 3488 Turriff East Victoria'),
7274
+ (6912, '3489', 'Tempy', 'VIC', 'AU', 491, ' 3489 Tempy Victoria'),
7275
+ (6913, '3490', 'Torrita', 'VIC', 'AU', 491, ' 3490 Torrita Victoria'),
7276
+ (6914, '3490', 'Tutye', 'VIC', 'AU', 491, ' 3490 Tutye Victoria'),
7277
+ (6915, '3490', 'Ouyen', 'VIC', 'AU', 491, ' 3490 Ouyen Victoria'),
7278
+ (6916, '3490', 'Murray-sunset', 'VIC', 'AU', 491, ' 3490 Murray-sunset Victoria'),
7279
+ (6917, '3490', 'Kulwin', 'VIC', 'AU', 491, ' 3490 Kulwin Victoria'),
7280
+ (6918, '3490', 'Mittyack', 'VIC', 'AU', 491, ' 3490 Mittyack Victoria'),
7281
+ (6919, '3490', 'Big Desert', 'VIC', 'AU', 491, ' 3490 Big Desert Victoria'),
7282
+ (6920, '3490', 'Boinka', 'VIC', 'AU', 491, ' 3490 Boinka Victoria'),
7283
+ (6921, '3491', 'Patchewollock', 'VIC', 'AU', 491, ' 3491 Patchewollock Victoria'),
7284
+ (6922, '3494', 'Nangiloc', 'VIC', 'AU', 491, ' 3494 Nangiloc Victoria'),
7285
+ (6923, '3494', 'Colignan', 'VIC', 'AU', 491, ' 3494 Colignan Victoria'),
7286
+ (6924, '3494', 'Carwarp', 'VIC', 'AU', 491, ' 3494 Carwarp Victoria'),
7287
+ (6925, '3494', 'Iraak', 'VIC', 'AU', 491, ' 3494 Iraak Victoria'),
7288
+ (6926, '3496', 'Cardross', 'VIC', 'AU', 491, ' 3496 Cardross Victoria'),
7289
+ (6927, '3496', 'Cullulleraine', 'VIC', 'AU', 491, ' 3496 Cullulleraine Victoria'),
7290
+ (6928, '3496', 'Neds Corner', 'VIC', 'AU', 491, ' 3496 Neds Corner Victoria'),
7291
+ (6929, '3496', 'Red Cliffs', 'VIC', 'AU', 491, ' 3496 Red Cliffs Victoria'),
7292
+ (6930, '3496', 'Merrinee', 'VIC', 'AU', 491, ' 3496 Merrinee Victoria'),
7293
+ (6931, '3496', 'Meringur', 'VIC', 'AU', 491, ' 3496 Meringur Victoria'),
7294
+ (6932, '3496', 'Lindsay Point', 'VIC', 'AU', 491, ' 3496 Lindsay Point Victoria'),
7295
+ (6933, '3496', 'Sunnycliffs', 'VIC', 'AU', 491, ' 3496 Sunnycliffs Victoria'),
7296
+ (6934, '3496', 'Werrimull', 'VIC', 'AU', 491, ' 3496 Werrimull Victoria'),
7297
+ (6935, '3498', 'Irymple', 'VIC', 'AU', 491, ' 3498 Irymple Victoria'),
7298
+ (6936, '3500', 'Mildura West', 'VIC', 'AU', 491, ' 3500 Mildura West Victoria'),
7299
+ (6937, '3500', 'Mildura', 'VIC', 'AU', 491, ' 3500 Mildura Victoria'),
7300
+ (6938, '3501', 'Mildura Centre Plaza', 'VIC', 'AU', 491, ' 3501 Mildura Centre Plaza Victoria'),
7301
+ (6939, '3501', 'Mildura South', 'VIC', 'AU', 491, ' 3501 Mildura South Victoria'),
7302
+ (6940, '3501', 'Koorlong', 'VIC', 'AU', 491, ' 3501 Koorlong Victoria'),
7303
+ (6941, '3501', 'Nichols Point', 'VIC', 'AU', 491, ' 3501 Nichols Point Victoria'),
7304
+ (6942, '3501', 'Hattah', 'VIC', 'AU', 491, ' 3501 Hattah Victoria'),
7305
+ (6943, '3502', 'Mildura', 'VIC', 'AU', 491, ' 3502 Mildura Victoria'),
7306
+ (6944, '3505', 'Merbein', 'VIC', 'AU', 491, ' 3505 Merbein Victoria'),
7307
+ (6945, '3505', 'Merbein South', 'VIC', 'AU', 491, ' 3505 Merbein South Victoria'),
7308
+ (6946, '3505', 'Merbein West', 'VIC', 'AU', 491, ' 3505 Merbein West Victoria'),
7309
+ (6947, '3505', 'Wargan', 'VIC', 'AU', 491, ' 3505 Wargan Victoria'),
7310
+ (6948, '3505', 'Cabarita', 'VIC', 'AU', 491, ' 3505 Cabarita Victoria'),
7311
+ (6949, '3505', 'Birdwoodton', 'VIC', 'AU', 491, ' 3505 Birdwoodton Victoria'),
7312
+ (6950, '3505', 'Yelta', 'VIC', 'AU', 491, ' 3505 Yelta Victoria'),
7313
+ (6951, '3506', 'Cowangie', 'VIC', 'AU', 491, ' 3506 Cowangie Victoria'),
7314
+ (6952, '3507', 'Walpeup', 'VIC', 'AU', 491, ' 3507 Walpeup Victoria'),
7315
+ (6953, '3509', 'Underbool', 'VIC', 'AU', 491, ' 3509 Underbool Victoria'),
7316
+ (6954, '3509', 'Linga', 'VIC', 'AU', 491, ' 3509 Linga Victoria'),
7317
+ (6955, '3512', 'Murrayville', 'VIC', 'AU', 491, ' 3512 Murrayville Victoria'),
7318
+ (6956, '3512', 'Panitya', 'VIC', 'AU', 491, ' 3512 Panitya Victoria'),
7319
+ (6957, '3512', 'Carina', 'VIC', 'AU', 491, ' 3512 Carina Victoria'),
7320
+ (6958, '3515', 'Shelbourne', 'VIC', 'AU', 491, ' 3515 Shelbourne Victoria'),
7321
+ (6959, '3515', 'Marong', 'VIC', 'AU', 491, ' 3515 Marong Victoria'),
7322
+ (6960, '3515', 'Wilsons Hill', 'VIC', 'AU', 491, ' 3515 Wilsons Hill Victoria'),
7323
+ (6961, '3516', 'Leichardt', 'VIC', 'AU', 491, ' 3516 Leichardt Victoria'),
7324
+ (6962, '3516', 'Bridgewater', 'VIC', 'AU', 491, ' 3516 Bridgewater Victoria'),
7325
+ (6963, '3516', 'Bridgewater North', 'VIC', 'AU', 491, ' 3516 Bridgewater North Victoria'),
7326
+ (6964, '3516', 'Bridgewater On Loddon', 'VIC', 'AU', 491, ' 3516 Bridgewater On Loddon Victoria'),
7327
+ (6965, '3516', 'Derby', 'VIC', 'AU', 491, ' 3516 Derby Victoria'),
7328
+ (6966, '3516', 'Yarraberb', 'VIC', 'AU', 491, ' 3516 Yarraberb Victoria'),
7329
+ (6967, '3517', 'Bears Lagoon', 'VIC', 'AU', 491, ' 3517 Bears Lagoon Victoria'),
7330
+ (6968, '3517', 'Glenalbyn', 'VIC', 'AU', 491, ' 3517 Glenalbyn Victoria'),
7331
+ (6969, '3517', 'Inglewood', 'VIC', 'AU', 491, ' 3517 Inglewood Victoria'),
7332
+ (6970, '3517', 'Jarklin', 'VIC', 'AU', 491, ' 3517 Jarklin Victoria'),
7333
+ (6971, '3517', 'Brenanah', 'VIC', 'AU', 491, ' 3517 Brenanah Victoria'),
7334
+ (6972, '3517', 'Kurting', 'VIC', 'AU', 491, ' 3517 Kurting Victoria'),
7335
+ (6973, '3517', 'Kingower', 'VIC', 'AU', 491, ' 3517 Kingower Victoria'),
7336
+ (6974, '3517', 'Serpentine', 'VIC', 'AU', 491, ' 3517 Serpentine Victoria'),
7337
+ (6975, '3517', 'Salisbury West', 'VIC', 'AU', 491, ' 3517 Salisbury West Victoria'),
7338
+ (6976, '3517', 'Powlett Plains', 'VIC', 'AU', 491, ' 3517 Powlett Plains Victoria'),
7339
+ (6977, '3517', 'Rheola', 'VIC', 'AU', 491, ' 3517 Rheola Victoria'),
7340
+ (6978, '3518', 'Richmond Plains', 'VIC', 'AU', 491, ' 3518 Richmond Plains Victoria'),
7341
+ (6979, '3518', 'Skinners Flat', 'VIC', 'AU', 491, ' 3518 Skinners Flat Victoria'),
7342
+ (6980, '3518', 'Mysia', 'VIC', 'AU', 491, ' 3518 Mysia Victoria'),
7343
+ (6981, '3518', 'Nine Mile', 'VIC', 'AU', 491, ' 3518 Nine Mile Victoria'),
7344
+ (6982, '3518', 'Kurraca', 'VIC', 'AU', 491, ' 3518 Kurraca Victoria'),
7345
+ (6983, '3518', 'Kurraca West', 'VIC', 'AU', 491, ' 3518 Kurraca West Victoria'),
7346
+ (6984, '3518', 'Wedderburn', 'VIC', 'AU', 491, ' 3518 Wedderburn Victoria'),
7347
+ (6985, '3518', 'Wedderburn Junction', 'VIC', 'AU', 491, ' 3518 Wedderburn Junction Victoria'),
7348
+ (6986, '3518', 'Wehla', 'VIC', 'AU', 491, ' 3518 Wehla Victoria'),
7349
+ (6987, '3518', 'Borung', 'VIC', 'AU', 491, ' 3518 Borung Victoria'),
7350
+ (6988, '3518', 'Fentons Creek', 'VIC', 'AU', 491, ' 3518 Fentons Creek Victoria'),
7351
+ (6989, '3518', 'Fernihurst', 'VIC', 'AU', 491, ' 3518 Fernihurst Victoria'),
7352
+ (6990, '3518', 'Fiery Flat', 'VIC', 'AU', 491, ' 3518 Fiery Flat Victoria'),
7353
+ (6991, '3518', 'Berrimal', 'VIC', 'AU', 491, ' 3518 Berrimal Victoria'),
7354
+ (6992, '3518', 'Woosang', 'VIC', 'AU', 491, ' 3518 Woosang Victoria'),
7355
+ (6993, '3518', 'Woolshed Flat', 'VIC', 'AU', 491, ' 3518 Woolshed Flat Victoria'),
7356
+ (6994, '3520', 'Korong Vale', 'VIC', 'AU', 491, ' 3520 Korong Vale Victoria'),
7357
+ (6995, '3520', 'Kinypanial', 'VIC', 'AU', 491, ' 3520 Kinypanial Victoria'),
7358
+ (6996, '3521', 'Pyalong', 'VIC', 'AU', 491, ' 3521 Pyalong Victoria'),
7359
+ (6997, '3522', 'Tooborac', 'VIC', 'AU', 491, ' 3522 Tooborac Victoria'),
7360
+ (6998, '3522', 'Glenhope East', 'VIC', 'AU', 491, ' 3522 Glenhope East Victoria'),
7361
+ (6999, '3523', 'Heathcote', 'VIC', 'AU', 491, ' 3523 Heathcote Victoria'),
7362
+ (7000, '3523', 'Heathcote South', 'VIC', 'AU', 491, ' 3523 Heathcote South Victoria'),
7363
+ (7001, '3523', 'Derrinal', 'VIC', 'AU', 491, ' 3523 Derrinal Victoria'),
7364
+ (7002, '3523', 'Costerfield', 'VIC', 'AU', 491, ' 3523 Costerfield Victoria'),
7365
+ (7003, '3523', 'Argyle', 'VIC', 'AU', 491, ' 3523 Argyle Victoria'),
7366
+ (7004, '3523', 'Redcastle', 'VIC', 'AU', 491, ' 3523 Redcastle Victoria'),
7367
+ (7005, '3523', 'Knowsley', 'VIC', 'AU', 491, ' 3523 Knowsley Victoria'),
7368
+ (7006, '3523', 'Ladys Pass', 'VIC', 'AU', 491, ' 3523 Ladys Pass Victoria'),
7369
+ (7007, '3523', 'Mount Camel', 'VIC', 'AU', 491, ' 3523 Mount Camel Victoria'),
7370
+ (7008, '3523', 'Moormbool West', 'VIC', 'AU', 491, ' 3523 Moormbool West Victoria'),
7371
+ (7009, '3525', 'Lake Marmal', 'VIC', 'AU', 491, ' 3525 Lake Marmal Victoria'),
7372
+ (7010, '3525', 'Nareewillock', 'VIC', 'AU', 491, ' 3525 Nareewillock Victoria'),
7373
+ (7011, '3525', 'Terrappee', 'VIC', 'AU', 491, ' 3525 Terrappee Victoria'),
7374
+ (7012, '3525', 'Barrakee', 'VIC', 'AU', 491, ' 3525 Barrakee Victoria'),
7375
+ (7013, '3525', 'Wooroonook', 'VIC', 'AU', 491, ' 3525 Wooroonook Victoria'),
7376
+ (7014, '3525', 'Yeungroon', 'VIC', 'AU', 491, ' 3525 Yeungroon Victoria'),
7377
+ (7015, '3525', 'Yeungroon East', 'VIC', 'AU', 491, ' 3525 Yeungroon East Victoria'),
7378
+ (7016, '3525', 'Wychitella', 'VIC', 'AU', 491, ' 3525 Wychitella Victoria'),
7379
+ (7017, '3525', 'Wychitella North', 'VIC', 'AU', 491, ' 3525 Wychitella North Victoria'),
7380
+ (7018, '3525', 'Charlton', 'VIC', 'AU', 491, ' 3525 Charlton Victoria'),
7381
+ (7019, '3525', 'Chirrip', 'VIC', 'AU', 491, ' 3525 Chirrip Victoria'),
7382
+ (7020, '3525', 'Buckrabanyule', 'VIC', 'AU', 491, ' 3525 Buckrabanyule Victoria'),
7383
+ (7021, '3525', 'Granite Flat', 'VIC', 'AU', 491, ' 3525 Granite Flat Victoria'),
7384
+ (7022, '3527', 'Glenloth', 'VIC', 'AU', 491, ' 3527 Glenloth Victoria'),
7385
+ (7023, '3527', 'Glenloth East', 'VIC', 'AU', 491, ' 3527 Glenloth East Victoria'),
7386
+ (7024, '3527', 'Jeruk', 'VIC', 'AU', 491, ' 3527 Jeruk Victoria'),
7387
+ (7025, '3527', 'Dumosa', 'VIC', 'AU', 491, ' 3527 Dumosa Victoria'),
7388
+ (7026, '3527', 'Bunguluke', 'VIC', 'AU', 491, ' 3527 Bunguluke Victoria'),
7389
+ (7027, '3527', 'Wycheproof', 'VIC', 'AU', 491, ' 3527 Wycheproof Victoria'),
7390
+ (7028, '3527', 'Wycheproof South', 'VIC', 'AU', 491, ' 3527 Wycheproof South Victoria'),
7391
+ (7029, '3527', 'Teddywaddy', 'VIC', 'AU', 491, ' 3527 Teddywaddy Victoria'),
7392
+ (7030, '3527', 'Teddywaddy West', 'VIC', 'AU', 491, ' 3527 Teddywaddy West Victoria'),
7393
+ (7031, '3527', 'Thalia', 'VIC', 'AU', 491, ' 3527 Thalia Victoria'),
7394
+ (7032, '3527', 'Towaninny', 'VIC', 'AU', 491, ' 3527 Towaninny Victoria'),
7395
+ (7033, '3527', 'Towaninny South', 'VIC', 'AU', 491, ' 3527 Towaninny South Victoria'),
7396
+ (7034, '3527', 'Ninyeunook', 'VIC', 'AU', 491, ' 3527 Ninyeunook Victoria'),
7397
+ (7035, '3529', 'Nullawil', 'VIC', 'AU', 491, ' 3529 Nullawil Victoria'),
7398
+ (7036, '3529', 'Kalpienung', 'VIC', 'AU', 491, ' 3529 Kalpienung Victoria'),
7399
+ (7037, '3530', 'Sutton', 'VIC', 'AU', 491, ' 3530 Sutton Victoria'),
7400
+ (7038, '3530', 'Warne', 'VIC', 'AU', 491, ' 3530 Warne Victoria'),
7401
+ (7039, '3530', 'Wangie', 'VIC', 'AU', 491, ' 3530 Wangie Victoria'),
7402
+ (7040, '3530', 'Culgoa', 'VIC', 'AU', 491, ' 3530 Culgoa Victoria'),
7403
+ (7041, '3531', 'Boigbeat', 'VIC', 'AU', 491, ' 3531 Boigbeat Victoria'),
7404
+ (7042, '3531', 'Berriwillock', 'VIC', 'AU', 491, ' 3531 Berriwillock Victoria'),
7405
+ (7043, '3533', 'Bimbourie', 'VIC', 'AU', 491, ' 3533 Bimbourie Victoria'),
7406
+ (7044, '3533', 'Straten', 'VIC', 'AU', 491, ' 3533 Straten Victoria'),
7407
+ (7045, '3533', 'Tyenna', 'VIC', 'AU', 491, ' 3533 Tyenna Victoria'),
7408
+ (7046, '3533', 'Tyrrell', 'VIC', 'AU', 491, ' 3533 Tyrrell Victoria'),
7409
+ (7047, '3533', 'Tyrrell Downs', 'VIC', 'AU', 491, ' 3533 Tyrrell Downs Victoria'),
7410
+ (7048, '3533', 'Lake Tyrrell', 'VIC', 'AU', 491, ' 3533 Lake Tyrrell Victoria'),
7411
+ (7049, '3533', 'Ninda', 'VIC', 'AU', 491, ' 3533 Ninda Victoria'),
7412
+ (7050, '3533', 'Nandaly', 'VIC', 'AU', 491, ' 3533 Nandaly Victoria'),
7413
+ (7051, '3533', 'Myall', 'VIC', 'AU', 491, ' 3533 Myall Victoria'),
7414
+ (7052, '3533', 'Pier Milan', 'VIC', 'AU', 491, ' 3533 Pier Milan Victoria'),
7415
+ (7053, '3533', 'Nyarrin', 'VIC', 'AU', 491, ' 3533 Nyarrin Victoria'),
7416
+ (7054, '3533', 'Sea Lake', 'VIC', 'AU', 491, ' 3533 Sea Lake Victoria'),
7417
+ (7055, '3537', 'Leaghur', 'VIC', 'AU', 491, ' 3537 Leaghur Victoria'),
7418
+ (7056, '3537', 'Minmindie', 'VIC', 'AU', 491, ' 3537 Minmindie Victoria'),
7419
+ (7057, '3537', 'Barraport', 'VIC', 'AU', 491, ' 3537 Barraport Victoria'),
7420
+ (7058, '3537', 'Barraport West', 'VIC', 'AU', 491, ' 3537 Barraport West Victoria'),
7421
+ (7059, '3537', 'Yando', 'VIC', 'AU', 491, ' 3537 Yando Victoria'),
7422
+ (7060, '3537', 'Boort', 'VIC', 'AU', 491, ' 3537 Boort Victoria'),
7423
+ (7061, '3537', 'Canary Island', 'VIC', 'AU', 491, ' 3537 Canary Island Victoria'),
7424
+ (7062, '3537', 'Catumnal', 'VIC', 'AU', 491, ' 3537 Catumnal Victoria'),
7425
+ (7063, '3537', 'Gredgwin', 'VIC', 'AU', 491, ' 3537 Gredgwin Victoria'),
7426
+ (7064, '3540', 'Cannie', 'VIC', 'AU', 491, ' 3540 Cannie Victoria'),
7427
+ (7065, '3540', 'Oakvale', 'VIC', 'AU', 491, ' 3540 Oakvale Victoria'),
7428
+ (7066, '3540', 'Quambatook', 'VIC', 'AU', 491, ' 3540 Quambatook Victoria'),
7429
+ (7067, '3542', 'Lalbert', 'VIC', 'AU', 491, ' 3542 Lalbert Victoria'),
7430
+ (7068, '3542', 'Tittybong', 'VIC', 'AU', 491, ' 3542 Tittybong Victoria'),
7431
+ (7069, '3542', 'Cokum', 'VIC', 'AU', 491, ' 3542 Cokum Victoria'),
7432
+ (7070, '3544', 'Chinangin', 'VIC', 'AU', 491, ' 3544 Chinangin Victoria'),
7433
+ (7071, '3544', 'Gowanford', 'VIC', 'AU', 491, ' 3544 Gowanford Victoria'),
7434
+ (7072, '3544', 'Ultima', 'VIC', 'AU', 491, ' 3544 Ultima Victoria'),
7435
+ (7073, '3544', 'Ultima East', 'VIC', 'AU', 491, ' 3544 Ultima East Victoria'),
7436
+ (7074, '3544', 'Waitchie', 'VIC', 'AU', 491, ' 3544 Waitchie Victoria'),
7437
+ (7075, '3544', 'Springfield', 'VIC', 'AU', 491, ' 3544 Springfield Victoria'),
7438
+ (7076, '3544', 'Murnungin', 'VIC', 'AU', 491, ' 3544 Murnungin Victoria'),
7439
+ (7077, '3546', 'Manangatang', 'VIC', 'AU', 491, ' 3546 Manangatang Victoria'),
7440
+ (7078, '3546', 'Turoar', 'VIC', 'AU', 491, ' 3546 Turoar Victoria'),
7441
+ (7079, '3546', 'Gerahmin', 'VIC', 'AU', 491, ' 3546 Gerahmin Victoria'),
7442
+ (7080, '3546', 'Chinkapook', 'VIC', 'AU', 491, ' 3546 Chinkapook Victoria'),
7443
+ (7081, '3546', 'Cocamba', 'VIC', 'AU', 491, ' 3546 Cocamba Victoria'),
7444
+ (7082, '3546', 'Bolton', 'VIC', 'AU', 491, ' 3546 Bolton Victoria'),
7445
+ (7083, '3546', 'Winnambool', 'VIC', 'AU', 491, ' 3546 Winnambool Victoria'),
7446
+ (7084, '3549', 'Bannerton', 'VIC', 'AU', 491, ' 3549 Bannerton Victoria'),
7447
+ (7085, '3549', 'Annuello', 'VIC', 'AU', 491, ' 3549 Annuello Victoria'),
7448
+ (7086, '3549', 'Happy Valley', 'VIC', 'AU', 491, ' 3549 Happy Valley Victoria'),
7449
+ (7087, '3549', 'Tol Tol', 'VIC', 'AU', 491, ' 3549 Tol Tol Victoria'),
7450
+ (7088, '3549', 'Wandown', 'VIC', 'AU', 491, ' 3549 Wandown Victoria'),
7451
+ (7089, '3549', 'Wemen', 'VIC', 'AU', 491, ' 3549 Wemen Victoria'),
7452
+ (7090, '3549', 'Liparoo', 'VIC', 'AU', 491, ' 3549 Liparoo Victoria'),
7453
+ (7091, '3549', 'Robinvale', 'VIC', 'AU', 491, ' 3549 Robinvale Victoria'),
7454
+ (7092, '3549', 'Robinvale Irrigation District Section B', 'VIC', 'AU', 491, ' 3549 Robinvale Irrigation District Section B Victoria'),
7455
+ (7093, '3549', 'Robinvale Irrigation District Section C', 'VIC', 'AU', 491, ' 3549 Robinvale Irrigation District Section C Victoria'),
7456
+ (7094, '3549', 'Robinvale Irrigation District Section D', 'VIC', 'AU', 491, ' 3549 Robinvale Irrigation District Section D Victoria'),
7457
+ (7095, '3549', 'Robinvale Irrigation District Section E', 'VIC', 'AU', 491, ' 3549 Robinvale Irrigation District Section E Victoria'),
7458
+ (7096, '3550', 'West Bendigo', 'VIC', 'AU', 491, ' 3550 West Bendigo Victoria'),
7459
+ (7097, '3550', 'White Hills', 'VIC', 'AU', 491, ' 3550 White Hills Victoria'),
7460
+ (7098, '3550', 'Sandhurst East', 'VIC', 'AU', 491, ' 3550 Sandhurst East Victoria'),
7461
+ (7099, '3550', 'Quarry Hill', 'VIC', 'AU', 491, ' 3550 Quarry Hill Victoria'),
7462
+ (7100, '3550', 'North Bendigo', 'VIC', 'AU', 491, ' 3550 North Bendigo Victoria'),
7463
+ (7101, '3550', 'Strathdale', 'VIC', 'AU', 491, ' 3550 Strathdale Victoria'),
7464
+ (7102, '3550', 'Spring Gully', 'VIC', 'AU', 491, ' 3550 Spring Gully Victoria'),
7465
+ (7103, '3550', 'Bendigo South', 'VIC', 'AU', 491, ' 3550 Bendigo South Victoria'),
7466
+ (7104, '3550', 'Bendigo', 'VIC', 'AU', 491, ' 3550 Bendigo Victoria'),
7467
+ (7105, '3550', 'East Bendigo', 'VIC', 'AU', 491, ' 3550 East Bendigo Victoria'),
7468
+ (7106, '3550', 'Flora Hill', 'VIC', 'AU', 491, ' 3550 Flora Hill Victoria'),
7469
+ (7107, '3550', 'Ironbark', 'VIC', 'AU', 491, ' 3550 Ironbark Victoria'),
7470
+ (7108, '3550', 'Kennington', 'VIC', 'AU', 491, ' 3550 Kennington Victoria'),
7471
+ (7109, '3550', 'Long Gully', 'VIC', 'AU', 491, ' 3550 Long Gully Victoria'),
7472
+ (7110, '3551', 'Longlea', 'VIC', 'AU', 491, ' 3551 Longlea Victoria'),
7473
+ (7111, '3551', 'Minto', 'VIC', 'AU', 491, ' 3551 Minto Victoria'),
7474
+ (7112, '3551', 'Maiden Gully', 'VIC', 'AU', 491, ' 3551 Maiden Gully Victoria'),
7475
+ (7113, '3551', 'Mandurang', 'VIC', 'AU', 491, ' 3551 Mandurang Victoria'),
7476
+ (7114, '3551', 'Mandurang South', 'VIC', 'AU', 491, ' 3551 Mandurang South Victoria'),
7477
+ (7115, '3551', 'Llanelly', 'VIC', 'AU', 491, ' 3551 Llanelly Victoria'),
7478
+ (7116, '3551', 'Lockwood', 'VIC', 'AU', 491, ' 3551 Lockwood Victoria'),
7479
+ (7117, '3551', 'Lockwood South', 'VIC', 'AU', 491, ' 3551 Lockwood South Victoria'),
7480
+ (7118, '3551', 'Kimbolton', 'VIC', 'AU', 491, ' 3551 Kimbolton Victoria'),
7481
+ (7119, '3551', 'Lake Eppalock', 'VIC', 'AU', 491, ' 3551 Lake Eppalock Victoria'),
7482
+ (7120, '3551', 'Junortoun', 'VIC', 'AU', 491, ' 3551 Junortoun Victoria'),
7483
+ (7121, '3551', 'Huntly', 'VIC', 'AU', 491, ' 3551 Huntly Victoria'),
7484
+ (7122, '3551', 'Huntly North', 'VIC', 'AU', 491, ' 3551 Huntly North Victoria'),
7485
+ (7123, '3551', 'Eppalock', 'VIC', 'AU', 491, ' 3551 Eppalock Victoria'),
7486
+ (7124, '3551', 'Epsom', 'VIC', 'AU', 491, ' 3551 Epsom Victoria'),
7487
+ (7125, '3551', 'Emu Creek', 'VIC', 'AU', 491, ' 3551 Emu Creek Victoria'),
7488
+ (7126, '3551', 'Bendigo Forward', 'VIC', 'AU', 491, ' 3551 Bendigo Forward Victoria'),
7489
+ (7127, '3551', 'Cornella', 'VIC', 'AU', 491, ' 3551 Cornella Victoria'),
7490
+ (7128, '3551', 'Myola', 'VIC', 'AU', 491, ' 3551 Myola Victoria'),
7491
+ (7129, '3551', 'Myrtle Creek', 'VIC', 'AU', 491, ' 3551 Myrtle Creek Victoria'),
7492
+ (7130, '3551', 'Newbridge', 'VIC', 'AU', 491, ' 3551 Newbridge Victoria'),
7493
+ (7131, '3551', 'Murphys Creek', 'VIC', 'AU', 491, ' 3551 Murphys Creek Victoria'),
7494
+ (7132, '3551', 'Strathfieldsaye', 'VIC', 'AU', 491, ' 3551 Strathfieldsaye Victoria'),
7495
+ (7133, '3551', 'Tarnagulla', 'VIC', 'AU', 491, ' 3551 Tarnagulla Victoria'),
7496
+ (7134, '3551', 'Wellsford', 'VIC', 'AU', 491, ' 3551 Wellsford Victoria'),
7497
+ (7135, '3551', 'Waanyarra', 'VIC', 'AU', 491, ' 3551 Waanyarra Victoria'),
7498
+ (7136, '3551', 'Toolleen', 'VIC', 'AU', 491, ' 3551 Toolleen Victoria'),
7499
+ (7137, '3551', 'Painswick', 'VIC', 'AU', 491, ' 3551 Painswick Victoria'),
7500
+ (7138, '3551', 'Sedgwick', 'VIC', 'AU', 491, ' 3551 Sedgwick Victoria'),
7501
+ (7139, '3551', 'Woodstock On Loddon', 'VIC', 'AU', 491, ' 3551 Woodstock On Loddon Victoria'),
7502
+ (7140, '3551', 'Axe Creek', 'VIC', 'AU', 491, ' 3551 Axe Creek Victoria'),
7503
+ (7141, '3551', 'Axedale', 'VIC', 'AU', 491, ' 3551 Axedale Victoria'),
7504
+ (7142, '3551', 'Bagshot', 'VIC', 'AU', 491, ' 3551 Bagshot Victoria'),
7505
+ (7143, '3551', 'Bagshot North', 'VIC', 'AU', 491, ' 3551 Bagshot North Victoria'),
7506
+ (7144, '3551', 'Arnold', 'VIC', 'AU', 491, ' 3551 Arnold Victoria'),
7507
+ (7145, '3551', 'Arnold West', 'VIC', 'AU', 491, ' 3551 Arnold West Victoria'),
7508
+ (7146, '3551', 'Ascot', 'VIC', 'AU', 491, ' 3551 Ascot Victoria'),
7509
+ (7147, '3552', 'Bendigo', 'VIC', 'AU', 491, ' 3552 Bendigo Victoria'),
7510
+ (7148, '3554', 'Bendigo', 'VIC', 'AU', 491, ' 3554 Bendigo Victoria'),
7511
+ (7149, '3555', 'Big Hill', 'VIC', 'AU', 491, ' 3555 Big Hill Victoria'),
7512
+ (7150, '3555', 'Golden Gully', 'VIC', 'AU', 491, ' 3555 Golden Gully Victoria'),
7513
+ (7151, '3555', 'Kangaroo Flat', 'VIC', 'AU', 491, ' 3555 Kangaroo Flat Victoria'),
7514
+ (7152, '3555', 'Golden Square', 'VIC', 'AU', 491, ' 3555 Golden Square Victoria'),
7515
+ (7153, '3555', 'Lansell Plaza', 'VIC', 'AU', 491, ' 3555 Lansell Plaza Victoria'),
7516
+ (7154, '3556', 'Jackass Flat', 'VIC', 'AU', 491, ' 3556 Jackass Flat Victoria'),
7517
+ (7155, '3556', 'Eaglehawk', 'VIC', 'AU', 491, ' 3556 Eaglehawk Victoria'),
7518
+ (7156, '3556', 'Eaglehawk North', 'VIC', 'AU', 491, ' 3556 Eaglehawk North Victoria'),
7519
+ (7157, '3556', 'California Gully', 'VIC', 'AU', 491, ' 3556 California Gully Victoria'),
7520
+ (7158, '3556', 'Campbells Forest', 'VIC', 'AU', 491, ' 3556 Campbells Forest Victoria'),
7521
+ (7159, '3556', 'Myers Flat', 'VIC', 'AU', 491, ' 3556 Myers Flat Victoria'),
7522
+ (7160, '3556', 'Woodvale', 'VIC', 'AU', 491, ' 3556 Woodvale Victoria'),
7523
+ (7161, '3556', 'Whipstick', 'VIC', 'AU', 491, ' 3556 Whipstick Victoria'),
7524
+ (7162, '3556', 'Sebastian', 'VIC', 'AU', 491, ' 3556 Sebastian Victoria'),
7525
+ (7163, '3556', 'Sailors Gully', 'VIC', 'AU', 491, ' 3556 Sailors Gully Victoria'),
7526
+ (7164, '3557', 'Barnadown', 'VIC', 'AU', 491, ' 3557 Barnadown Victoria'),
7527
+ (7165, '3557', 'Goornong', 'VIC', 'AU', 491, ' 3557 Goornong Victoria'),
7528
+ (7166, '3557', 'Fosterville', 'VIC', 'AU', 491, ' 3557 Fosterville Victoria'),
7529
+ (7167, '3557', 'Muskerry', 'VIC', 'AU', 491, ' 3557 Muskerry Victoria'),
7530
+ (7168, '3558', 'Runnymede', 'VIC', 'AU', 491, ' 3558 Runnymede Victoria'),
7531
+ (7169, '3558', 'Elmore', 'VIC', 'AU', 491, ' 3558 Elmore Victoria'),
7532
+ (7170, '3558', 'Hunter', 'VIC', 'AU', 491, ' 3558 Hunter Victoria'),
7533
+ (7171, '3558', 'Burnewang', 'VIC', 'AU', 491, ' 3558 Burnewang Victoria'),
7534
+ (7172, '3558', 'Corop West', 'VIC', 'AU', 491, ' 3558 Corop West Victoria'),
7535
+ (7173, '3559', 'Corop', 'VIC', 'AU', 491, ' 3559 Corop Victoria'),
7536
+ (7174, '3559', 'Colbinabbin', 'VIC', 'AU', 491, ' 3559 Colbinabbin Victoria'),
7537
+ (7175, '3559', 'Burramboot', 'VIC', 'AU', 491, ' 3559 Burramboot Victoria'),
7538
+ (7176, '3559', 'Gobarup', 'VIC', 'AU', 491, ' 3559 Gobarup Victoria'),
7539
+ (7177, '3559', 'Avonmore', 'VIC', 'AU', 491, ' 3559 Avonmore Victoria'),
7540
+ (7178, '3561', 'Ballendella', 'VIC', 'AU', 491, ' 3561 Ballendella Victoria'),
7541
+ (7179, '3561', 'Bamawm', 'VIC', 'AU', 491, ' 3561 Bamawm Victoria'),
7542
+ (7180, '3561', 'Fairy Dell', 'VIC', 'AU', 491, ' 3561 Fairy Dell Victoria'),
7543
+ (7181, '3561', 'Diggora', 'VIC', 'AU', 491, ' 3561 Diggora Victoria'),
7544
+ (7182, '3561', 'Bonn', 'VIC', 'AU', 491, ' 3561 Bonn Victoria'),
7545
+ (7183, '3561', 'Rochester', 'VIC', 'AU', 491, ' 3561 Rochester Victoria'),
7546
+ (7184, '3561', 'Nanneella', 'VIC', 'AU', 491, ' 3561 Nanneella Victoria'),
7547
+ (7185, '3561', 'Timmering', 'VIC', 'AU', 491, ' 3561 Timmering Victoria'),
7548
+ (7186, '3562', 'Torrumbarry', 'VIC', 'AU', 491, ' 3562 Torrumbarry Victoria'),
7549
+ (7187, '3563', 'Lockington', 'VIC', 'AU', 491, ' 3563 Lockington Victoria'),
7550
+ (7188, '3564', 'Kanyapella', 'VIC', 'AU', 491, ' 3564 Kanyapella Victoria'),
7551
+ (7189, '3564', 'Patho', 'VIC', 'AU', 491, ' 3564 Patho Victoria'),
7552
+ (7190, '3564', 'Roslynmead', 'VIC', 'AU', 491, ' 3564 Roslynmead Victoria'),
7553
+ (7191, '3564', 'Wharparilla', 'VIC', 'AU', 491, ' 3564 Wharparilla Victoria'),
7554
+ (7192, '3564', 'Echuca', 'VIC', 'AU', 491, ' 3564 Echuca Victoria'),
7555
+ (7193, '3564', 'Echuca South', 'VIC', 'AU', 491, ' 3564 Echuca South Victoria'),
7556
+ (7194, '3564', 'Echuca Village', 'VIC', 'AU', 491, ' 3564 Echuca Village Victoria'),
7557
+ (7195, '3564', 'Echuca West', 'VIC', 'AU', 491, ' 3564 Echuca West Victoria'),
7558
+ (7196, '3564', 'Bamawm Extension', 'VIC', 'AU', 491, ' 3564 Bamawm Extension Victoria'),
7559
+ (7197, '3565', 'Kotta', 'VIC', 'AU', 491, ' 3565 Kotta Victoria'),
7560
+ (7198, '3566', 'Gunbower', 'VIC', 'AU', 491, ' 3566 Gunbower Victoria'),
7561
+ (7199, '3567', 'Horfield', 'VIC', 'AU', 491, ' 3567 Horfield Victoria'),
7562
+ (7200, '3567', 'Leitchville', 'VIC', 'AU', 491, ' 3567 Leitchville Victoria'),
7563
+ (7201, '3568', 'Macorna North', 'VIC', 'AU', 491, ' 3568 Macorna North Victoria'),
7564
+ (7202, '3568', 'Keely', 'VIC', 'AU', 491, ' 3568 Keely Victoria'),
7565
+ (7203, '3568', 'Mincha West', 'VIC', 'AU', 491, ' 3568 Mincha West Victoria'),
7566
+ (7204, '3568', 'Mcmillans', 'VIC', 'AU', 491, ' 3568 Mcmillans Victoria'),
7567
+ (7205, '3568', 'Mead', 'VIC', 'AU', 491, ' 3568 Mead Victoria'),
7568
+ (7206, '3568', 'Wee Wee Rup', 'VIC', 'AU', 491, ' 3568 Wee Wee Rup Victoria'),
7569
+ (7207, '3568', 'Gannawarra', 'VIC', 'AU', 491, ' 3568 Gannawarra Victoria'),
7570
+ (7208, '3568', 'Burkes Bridge', 'VIC', 'AU', 491, ' 3568 Burkes Bridge Victoria'),
7571
+ (7209, '3568', 'Cohuna', 'VIC', 'AU', 491, ' 3568 Cohuna Victoria'),
7572
+ (7210, '3568', 'Cullen', 'VIC', 'AU', 491, ' 3568 Cullen Victoria'),
7573
+ (7211, '3568', 'Daltons Bridge', 'VIC', 'AU', 491, ' 3568 Daltons Bridge Victoria'),
7574
+ (7212, '3570', 'Drummartin', 'VIC', 'AU', 491, ' 3570 Drummartin Victoria'),
7575
+ (7213, '3570', 'Auchmore', 'VIC', 'AU', 491, ' 3570 Auchmore Victoria'),
7576
+ (7214, '3570', 'Kamarooka', 'VIC', 'AU', 491, ' 3570 Kamarooka Victoria'),
7577
+ (7215, '3570', 'Raywood', 'VIC', 'AU', 491, ' 3570 Raywood Victoria'),
7578
+ (7216, '3570', 'Neilborough', 'VIC', 'AU', 491, ' 3570 Neilborough Victoria'),
7579
+ (7217, '3571', 'Pompapiel', 'VIC', 'AU', 491, ' 3571 Pompapiel Victoria'),
7580
+ (7218, '3571', 'Kamarooka North', 'VIC', 'AU', 491, ' 3571 Kamarooka North Victoria'),
7581
+ (7219, '3571', 'Tandarra', 'VIC', 'AU', 491, ' 3571 Tandarra Victoria'),
7582
+ (7220, '3571', 'Dingee', 'VIC', 'AU', 491, ' 3571 Dingee Victoria'),
7583
+ (7221, '3572', 'Tennyson', 'VIC', 'AU', 491, ' 3572 Tennyson Victoria'),
7584
+ (7222, '3572', 'Milloo', 'VIC', 'AU', 491, ' 3572 Milloo Victoria'),
7585
+ (7223, '3572', 'Piavella', 'VIC', 'AU', 491, ' 3572 Piavella Victoria'),
7586
+ (7224, '3572', 'Prairie', 'VIC', 'AU', 491, ' 3572 Prairie Victoria'),
7587
+ (7225, '3573', 'Pine Grove', 'VIC', 'AU', 491, ' 3573 Pine Grove Victoria'),
7588
+ (7226, '3573', 'Mitiamo', 'VIC', 'AU', 491, ' 3573 Mitiamo Victoria'),
7589
+ (7227, '3573', 'Terrick Terrick East', 'VIC', 'AU', 491, ' 3573 Terrick Terrick East Victoria'),
7590
+ (7228, '3573', 'Calivil', 'VIC', 'AU', 491, ' 3573 Calivil Victoria'),
7591
+ (7229, '3575', 'Gladfield', 'VIC', 'AU', 491, ' 3575 Gladfield Victoria'),
7592
+ (7230, '3575', 'Yarrawalla', 'VIC', 'AU', 491, ' 3575 Yarrawalla Victoria'),
7593
+ (7231, '3575', 'Terrick Terrick', 'VIC', 'AU', 491, ' 3575 Terrick Terrick Victoria'),
7594
+ (7232, '3575', 'Sylvaterre', 'VIC', 'AU', 491, ' 3575 Sylvaterre Victoria'),
7595
+ (7233, '3575', 'Mincha', 'VIC', 'AU', 491, ' 3575 Mincha Victoria'),
7596
+ (7234, '3575', 'Mologa', 'VIC', 'AU', 491, ' 3575 Mologa Victoria'),
7597
+ (7235, '3575', 'Jungaburra', 'VIC', 'AU', 491, ' 3575 Jungaburra Victoria'),
7598
+ (7236, '3575', 'Loddon Vale', 'VIC', 'AU', 491, ' 3575 Loddon Vale Victoria'),
7599
+ (7237, '3575', 'Pyramid Hill', 'VIC', 'AU', 491, ' 3575 Pyramid Hill Victoria'),
7600
+ (7238, '3576', 'Durham Ox', 'VIC', 'AU', 491, ' 3576 Durham Ox Victoria'),
7601
+ (7239, '3579', 'Fairley', 'VIC', 'AU', 491, ' 3579 Fairley Victoria'),
7602
+ (7240, '3579', 'Dingwall', 'VIC', 'AU', 491, ' 3579 Dingwall Victoria'),
7603
+ (7241, '3579', 'Gonn Crossing', 'VIC', 'AU', 491, ' 3579 Gonn Crossing Victoria'),
7604
+ (7242, '3579', 'Capels Crossing', 'VIC', 'AU', 491, ' 3579 Capels Crossing Victoria'),
7605
+ (7243, '3579', 'Budgerum East', 'VIC', 'AU', 491, ' 3579 Budgerum East Victoria'),
7606
+ (7244, '3579', 'Bael Bael', 'VIC', 'AU', 491, ' 3579 Bael Bael Victoria'),
7607
+ (7245, '3579', 'Benjeroop', 'VIC', 'AU', 491, ' 3579 Benjeroop Victoria'),
7608
+ (7246, '3579', 'Beauchamp', 'VIC', 'AU', 491, ' 3579 Beauchamp Victoria'),
7609
+ (7247, '3579', 'Appin', 'VIC', 'AU', 491, ' 3579 Appin Victoria'),
7610
+ (7248, '3579', 'Appin South', 'VIC', 'AU', 491, ' 3579 Appin South Victoria'),
7611
+ (7249, '3579', 'Pine View', 'VIC', 'AU', 491, ' 3579 Pine View Victoria'),
7612
+ (7250, '3579', 'Reedy Lake', 'VIC', 'AU', 491, ' 3579 Reedy Lake Victoria'),
7613
+ (7251, '3579', 'Sandhill Lake', 'VIC', 'AU', 491, ' 3579 Sandhill Lake Victoria'),
7614
+ (7252, '3579', 'Normanville', 'VIC', 'AU', 491, ' 3579 Normanville Victoria'),
7615
+ (7253, '3579', 'Myall', 'VIC', 'AU', 491, ' 3579 Myall Victoria'),
7616
+ (7254, '3579', 'Mystic Park', 'VIC', 'AU', 491, ' 3579 Mystic Park Victoria'),
7617
+ (7255, '3579', 'Murrabit', 'VIC', 'AU', 491, ' 3579 Murrabit Victoria'),
7618
+ (7256, '3579', 'Murrabit West', 'VIC', 'AU', 491, ' 3579 Murrabit West Victoria'),
7619
+ (7257, '3579', 'Macorna', 'VIC', 'AU', 491, ' 3579 Macorna Victoria'),
7620
+ (7258, '3579', 'Lake Meran', 'VIC', 'AU', 491, ' 3579 Lake Meran Victoria'),
7621
+ (7259, '3579', 'Koroop', 'VIC', 'AU', 491, ' 3579 Koroop Victoria'),
7622
+ (7260, '3579', 'Kerang', 'VIC', 'AU', 491, ' 3579 Kerang Victoria'),
7623
+ (7261, '3579', 'Kerang East', 'VIC', 'AU', 491, ' 3579 Kerang East Victoria'),
7624
+ (7262, '3579', 'Milnes Bridge', 'VIC', 'AU', 491, ' 3579 Milnes Bridge Victoria'),
7625
+ (7263, '3579', 'Meering West', 'VIC', 'AU', 491, ' 3579 Meering West Victoria'),
7626
+ (7264, '3579', 'Teal Point', 'VIC', 'AU', 491, ' 3579 Teal Point Victoria'),
7627
+ (7265, '3579', 'Tragowel', 'VIC', 'AU', 491, ' 3579 Tragowel Victoria'),
7628
+ (7266, '3579', 'Westby', 'VIC', 'AU', 491, ' 3579 Westby Victoria'),
7629
+ (7267, '3579', 'Wandella', 'VIC', 'AU', 491, ' 3579 Wandella Victoria'),
7630
+ (7268, '3580', 'Koondrook', 'VIC', 'AU', 491, ' 3580 Koondrook Victoria'),
7631
+ (7269, '3581', 'Lake Charm', 'VIC', 'AU', 491, ' 3581 Lake Charm Victoria'),
7632
+ (7270, '3583', 'Tresco', 'VIC', 'AU', 491, ' 3583 Tresco Victoria'),
7633
+ (7271, '3584', 'Tresco West', 'VIC', 'AU', 491, ' 3584 Tresco West Victoria'),
7634
+ (7272, '3584', 'Lake Boga', 'VIC', 'AU', 491, ' 3584 Lake Boga Victoria'),
7635
+ (7273, '3585', 'Kunat', 'VIC', 'AU', 491, ' 3585 Kunat Victoria'),
7636
+ (7274, '3585', 'Meatian', 'VIC', 'AU', 491, ' 3585 Meatian Victoria'),
7637
+ (7275, '3585', 'Nowie', 'VIC', 'AU', 491, ' 3585 Nowie Victoria'),
7638
+ (7276, '3585', 'Speewa', 'VIC', 'AU', 491, ' 3585 Speewa Victoria'),
7639
+ (7277, '3585', 'Pira', 'VIC', 'AU', 491, ' 3585 Pira Victoria'),
7640
+ (7278, '3585', 'Polisbet', 'VIC', 'AU', 491, ' 3585 Polisbet Victoria'),
7641
+ (7279, '3585', 'Nyrraby', 'VIC', 'AU', 491, ' 3585 Nyrraby Victoria'),
7642
+ (7280, '3585', 'Swan Hill', 'VIC', 'AU', 491, ' 3585 Swan Hill Victoria'),
7643
+ (7281, '3585', 'Swan Hill Pioneer', 'VIC', 'AU', 491, ' 3585 Swan Hill Pioneer Victoria'),
7644
+ (7282, '3585', 'Swan Hill West', 'VIC', 'AU', 491, ' 3585 Swan Hill West Victoria'),
7645
+ (7283, '3585', 'Winlaton', 'VIC', 'AU', 491, ' 3585 Winlaton Victoria'),
7646
+ (7284, '3585', 'Castle Donnington', 'VIC', 'AU', 491, ' 3585 Castle Donnington Victoria'),
7647
+ (7285, '3585', 'Chillingollah', 'VIC', 'AU', 491, ' 3585 Chillingollah Victoria'),
7648
+ (7286, '3585', 'Goschen', 'VIC', 'AU', 491, ' 3585 Goschen Victoria'),
7649
+ (7287, '3585', 'Fish Point', 'VIC', 'AU', 491, ' 3585 Fish Point Victoria'),
7650
+ (7288, '3586', 'Bulga', 'VIC', 'AU', 491, ' 3586 Bulga Victoria'),
7651
+ (7289, '3586', 'Tyntynder', 'VIC', 'AU', 491, ' 3586 Tyntynder Victoria'),
7652
+ (7290, '3586', 'Tyntynder South', 'VIC', 'AU', 491, ' 3586 Tyntynder South Victoria'),
7653
+ (7291, '3586', 'Pental Island', 'VIC', 'AU', 491, ' 3586 Pental Island Victoria'),
7654
+ (7292, '3586', 'Murrawee', 'VIC', 'AU', 491, ' 3586 Murrawee Victoria'),
7655
+ (7293, '3586', 'Murraydale', 'VIC', 'AU', 491, ' 3586 Murraydale Victoria'),
7656
+ (7294, '3588', 'Woorinen South', 'VIC', 'AU', 491, ' 3588 Woorinen South Victoria'),
7657
+ (7295, '3589', 'Woorinen', 'VIC', 'AU', 491, ' 3589 Woorinen Victoria'),
7658
+ (7296, '3589', 'Woorinen North', 'VIC', 'AU', 491, ' 3589 Woorinen North Victoria'),
7659
+ (7297, '3590', 'Beverford', 'VIC', 'AU', 491, ' 3590 Beverford Victoria'),
7660
+ (7298, '3591', 'Vinifera', 'VIC', 'AU', 491, ' 3591 Vinifera Victoria'),
7661
+ (7299, '3594', 'Nyah', 'VIC', 'AU', 491, ' 3594 Nyah Victoria'),
7662
+ (7300, '3595', 'Nyah West', 'VIC', 'AU', 491, ' 3595 Nyah West Victoria'),
7663
+ (7301, '3596', 'Miralie', 'VIC', 'AU', 491, ' 3596 Miralie Victoria'),
7664
+ (7302, '3596', 'Towan', 'VIC', 'AU', 491, ' 3596 Towan Victoria'),
7665
+ (7303, '3596', 'Wood Wood', 'VIC', 'AU', 491, ' 3596 Wood Wood Victoria'),
7666
+ (7304, '3597', 'Kooloonong', 'VIC', 'AU', 491, ' 3597 Kooloonong Victoria'),
7667
+ (7305, '3597', 'Lake Powell', 'VIC', 'AU', 491, ' 3597 Lake Powell Victoria'),
7668
+ (7306, '3597', 'Kenley', 'VIC', 'AU', 491, ' 3597 Kenley Victoria'),
7669
+ (7307, '3597', 'Piangil', 'VIC', 'AU', 491, ' 3597 Piangil Victoria'),
7670
+ (7308, '3597', 'Narrung', 'VIC', 'AU', 491, ' 3597 Narrung Victoria'),
7671
+ (7309, '3597', 'Natya', 'VIC', 'AU', 491, ' 3597 Natya Victoria'),
7672
+ (7310, '3599', 'Boundary Bend', 'VIC', 'AU', 491, ' 3599 Boundary Bend Victoria'),
7673
+ (7311, '3607', 'Tabilk', 'VIC', 'AU', 491, ' 3607 Tabilk Victoria'),
7674
+ (7312, '3608', 'Wahring', 'VIC', 'AU', 491, ' 3608 Wahring Victoria'),
7675
+ (7313, '3608', 'Nagambie', 'VIC', 'AU', 491, ' 3608 Nagambie Victoria'),
7676
+ (7314, '3608', 'Kirwans Bridge', 'VIC', 'AU', 491, ' 3608 Kirwans Bridge Victoria'),
7677
+ (7315, '3608', 'Mitchellstown', 'VIC', 'AU', 491, ' 3608 Mitchellstown Victoria'),
7678
+ (7316, '3608', 'Goulburn Weir', 'VIC', 'AU', 491, ' 3608 Goulburn Weir Victoria'),
7679
+ (7317, '3608', 'Graytown', 'VIC', 'AU', 491, ' 3608 Graytown Victoria'),
7680
+ (7318, '3608', 'Wirrate', 'VIC', 'AU', 491, ' 3608 Wirrate Victoria'),
7681
+ (7319, '3608', 'Bailieston', 'VIC', 'AU', 491, ' 3608 Bailieston Victoria'),
7682
+ (7320, '3610', 'Dhurringile', 'VIC', 'AU', 491, ' 3610 Dhurringile Victoria'),
7683
+ (7321, '3610', 'Moorilim', 'VIC', 'AU', 491, ' 3610 Moorilim Victoria'),
7684
+ (7322, '3610', 'Murchison', 'VIC', 'AU', 491, ' 3610 Murchison Victoria'),
7685
+ (7323, '3610', 'Murchison East', 'VIC', 'AU', 491, ' 3610 Murchison East Victoria'),
7686
+ (7324, '3610', 'Murchison North', 'VIC', 'AU', 491, ' 3610 Murchison North Victoria'),
7687
+ (7325, '3612', 'Rushworth', 'VIC', 'AU', 491, ' 3612 Rushworth Victoria'),
7688
+ (7326, '3612', 'Moora', 'VIC', 'AU', 491, ' 3612 Moora Victoria'),
7689
+ (7327, '3612', 'Wanalta', 'VIC', 'AU', 491, ' 3612 Wanalta Victoria'),
7690
+ (7328, '3612', 'Waranga Shores', 'VIC', 'AU', 491, ' 3612 Waranga Shores Victoria'),
7691
+ (7329, '3612', 'Whroo', 'VIC', 'AU', 491, ' 3612 Whroo Victoria'),
7692
+ (7330, '3614', 'Toolamba', 'VIC', 'AU', 491, ' 3614 Toolamba Victoria'),
7693
+ (7331, '3614', 'Toolamba West', 'VIC', 'AU', 491, ' 3614 Toolamba West Victoria'),
7694
+ (7332, '3616', 'Tatura', 'VIC', 'AU', 491, ' 3616 Tatura Victoria'),
7695
+ (7333, '3616', 'Tatura East', 'VIC', 'AU', 491, ' 3616 Tatura East Victoria'),
7696
+ (7334, '3616', 'Waranga', 'VIC', 'AU', 491, ' 3616 Waranga Victoria'),
7697
+ (7335, '3616', 'Mooroopna North West', 'VIC', 'AU', 491, ' 3616 Mooroopna North West Victoria'),
7698
+ (7336, '3616', 'Harston', 'VIC', 'AU', 491, ' 3616 Harston Victoria'),
7699
+ (7337, '3616', 'Gillieston', 'VIC', 'AU', 491, ' 3616 Gillieston Victoria'),
7700
+ (7338, '3616', 'Girgarre East', 'VIC', 'AU', 491, ' 3616 Girgarre East Victoria'),
7701
+ (7339, '3616', 'Cooma', 'VIC', 'AU', 491, ' 3616 Cooma Victoria'),
7702
+ (7340, '3617', 'Byrneside', 'VIC', 'AU', 491, ' 3617 Byrneside Victoria'),
7703
+ (7341, '3618', 'Merrigum', 'VIC', 'AU', 491, ' 3618 Merrigum Victoria'),
7704
+ (7342, '3619', 'Kyabram', 'VIC', 'AU', 491, ' 3619 Kyabram Victoria'),
7705
+ (7343, '3620', 'Kyabram', 'VIC', 'AU', 491, ' 3620 Kyabram Victoria'),
7706
+ (7344, '3620', 'Kyabram South', 'VIC', 'AU', 491, ' 3620 Kyabram South Victoria'),
7707
+ (7345, '3620', 'Lancaster', 'VIC', 'AU', 491, ' 3620 Lancaster Victoria'),
7708
+ (7346, '3620', 'St Germains', 'VIC', 'AU', 491, ' 3620 St Germains Victoria'),
7709
+ (7347, '3620', 'Taripta', 'VIC', 'AU', 491, ' 3620 Taripta Victoria'),
7710
+ (7348, '3620', 'Wyuna', 'VIC', 'AU', 491, ' 3620 Wyuna Victoria'),
7711
+ (7349, '3620', 'Wyuna East', 'VIC', 'AU', 491, ' 3620 Wyuna East Victoria'),
7712
+ (7350, '3621', 'Yambuna', 'VIC', 'AU', 491, ' 3621 Yambuna Victoria'),
7713
+ (7351, '3621', 'Tongala', 'VIC', 'AU', 491, ' 3621 Tongala Victoria'),
7714
+ (7352, '3621', 'Kyvalley', 'VIC', 'AU', 491, ' 3621 Kyvalley Victoria'),
7715
+ (7353, '3622', 'Koyuga', 'VIC', 'AU', 491, ' 3622 Koyuga Victoria'),
7716
+ (7354, '3622', 'Strathallan', 'VIC', 'AU', 491, ' 3622 Strathallan Victoria'),
7717
+ (7355, '3623', 'Stanhope', 'VIC', 'AU', 491, ' 3623 Stanhope Victoria'),
7718
+ (7356, '3623', 'Stanhope South', 'VIC', 'AU', 491, ' 3623 Stanhope South Victoria'),
7719
+ (7357, '3623', 'Carag Carag', 'VIC', 'AU', 491, ' 3623 Carag Carag Victoria'),
7720
+ (7358, '3624', 'Girgarre', 'VIC', 'AU', 491, ' 3624 Girgarre Victoria'),
7721
+ (7359, '3629', 'Undera', 'VIC', 'AU', 491, ' 3629 Undera Victoria'),
7722
+ (7360, '3629', 'Mooroopna', 'VIC', 'AU', 491, ' 3629 Mooroopna Victoria'),
7723
+ (7361, '3629', 'Mooroopna North', 'VIC', 'AU', 491, ' 3629 Mooroopna North Victoria'),
7724
+ (7362, '3629', 'Coomboona', 'VIC', 'AU', 491, ' 3629 Coomboona Victoria'),
7725
+ (7363, '3629', 'Ardmona', 'VIC', 'AU', 491, ' 3629 Ardmona Victoria'),
7726
+ (7364, '3630', 'Colliver', 'VIC', 'AU', 491, ' 3630 Colliver Victoria'),
7727
+ (7365, '3630', 'Branditt', 'VIC', 'AU', 491, ' 3630 Branditt Victoria'),
7728
+ (7366, '3630', 'Caniambo', 'VIC', 'AU', 491, ' 3630 Caniambo Victoria'),
7729
+ (7367, '3630', 'Dunkirk', 'VIC', 'AU', 491, ' 3630 Dunkirk Victoria'),
7730
+ (7368, '3630', 'Shepparton South', 'VIC', 'AU', 491, ' 3630 Shepparton South Victoria'),
7731
+ (7369, '3630', 'Shepparton', 'VIC', 'AU', 491, ' 3630 Shepparton Victoria'),
7732
+ (7370, '3631', 'Arcadia', 'VIC', 'AU', 491, ' 3631 Arcadia Victoria'),
7733
+ (7371, '3631', 'Arcadia South', 'VIC', 'AU', 491, ' 3631 Arcadia South Victoria'),
7734
+ (7372, '3631', 'Grahamvale', 'VIC', 'AU', 491, ' 3631 Grahamvale Victoria'),
7735
+ (7373, '3631', 'Cosgrove', 'VIC', 'AU', 491, ' 3631 Cosgrove Victoria'),
7736
+ (7374, '3631', 'Cosgrove South', 'VIC', 'AU', 491, ' 3631 Cosgrove South Victoria'),
7737
+ (7375, '3631', 'Lemnos', 'VIC', 'AU', 491, ' 3631 Lemnos Victoria'),
7738
+ (7376, '3631', 'Kialla', 'VIC', 'AU', 491, ' 3631 Kialla Victoria'),
7739
+ (7377, '3631', 'Kialla East', 'VIC', 'AU', 491, ' 3631 Kialla East Victoria'),
7740
+ (7378, '3631', 'Kialla West', 'VIC', 'AU', 491, ' 3631 Kialla West Victoria'),
7741
+ (7379, '3631', 'Karramomus', 'VIC', 'AU', 491, ' 3631 Karramomus Victoria'),
7742
+ (7380, '3631', 'Shepparton East', 'VIC', 'AU', 491, ' 3631 Shepparton East Victoria'),
7743
+ (7381, '3631', 'Shepparton North', 'VIC', 'AU', 491, ' 3631 Shepparton North Victoria'),
7744
+ (7382, '3631', 'Pine Lodge', 'VIC', 'AU', 491, ' 3631 Pine Lodge Victoria'),
7745
+ (7383, '3631', 'Orrvale', 'VIC', 'AU', 491, ' 3631 Orrvale Victoria'),
7746
+ (7384, '3632', 'Shepparton', 'VIC', 'AU', 491, ' 3632 Shepparton Victoria'),
7747
+ (7385, '3633', 'Congupna', 'VIC', 'AU', 491, ' 3633 Congupna Victoria'),
7748
+ (7386, '3634', 'Bunbartha', 'VIC', 'AU', 491, ' 3634 Bunbartha Victoria'),
7749
+ (7387, '3634', 'Zeerust', 'VIC', 'AU', 491, ' 3634 Zeerust Victoria'),
7750
+ (7388, '3634', 'Katandra', 'VIC', 'AU', 491, ' 3634 Katandra Victoria'),
7751
+ (7389, '3634', 'Katandra West', 'VIC', 'AU', 491, ' 3634 Katandra West Victoria'),
7752
+ (7390, '3634', 'Marungi', 'VIC', 'AU', 491, ' 3634 Marungi Victoria'),
7753
+ (7391, '3634', 'Marionvale', 'VIC', 'AU', 491, ' 3634 Marionvale Victoria'),
7754
+ (7392, '3634', 'Tallygaroopna', 'VIC', 'AU', 491, ' 3634 Tallygaroopna Victoria'),
7755
+ (7393, '3635', 'Kaarimba', 'VIC', 'AU', 491, ' 3635 Kaarimba Victoria'),
7756
+ (7394, '3635', 'Mundoona', 'VIC', 'AU', 491, ' 3635 Mundoona Victoria'),
7757
+ (7395, '3635', 'Wunghnu', 'VIC', 'AU', 491, ' 3635 Wunghnu Victoria'),
7758
+ (7396, '3636', 'Invergordon', 'VIC', 'AU', 491, ' 3636 Invergordon Victoria'),
7759
+ (7397, '3636', 'Drumanure', 'VIC', 'AU', 491, ' 3636 Drumanure Victoria'),
7760
+ (7398, '3636', 'Naring', 'VIC', 'AU', 491, ' 3636 Naring Victoria'),
7761
+ (7399, '3636', 'Numurkah', 'VIC', 'AU', 491, ' 3636 Numurkah Victoria'),
7762
+ (7400, '3637', 'Waaia', 'VIC', 'AU', 491, ' 3637 Waaia Victoria'),
7763
+ (7401, '3637', 'Yalca', 'VIC', 'AU', 491, ' 3637 Yalca Victoria'),
7764
+ (7402, '3638', 'Yielima', 'VIC', 'AU', 491, ' 3638 Yielima Victoria'),
7765
+ (7403, '3638', 'Nathalia', 'VIC', 'AU', 491, ' 3638 Nathalia Victoria'),
7766
+ (7404, '3638', 'Kotupna', 'VIC', 'AU', 491, ' 3638 Kotupna Victoria'),
7767
+ (7405, '3639', 'Lower Moira', 'VIC', 'AU', 491, ' 3639 Lower Moira Victoria'),
7768
+ (7406, '3639', 'Picola', 'VIC', 'AU', 491, ' 3639 Picola Victoria'),
7769
+ (7407, '3639', 'Picola West', 'VIC', 'AU', 491, ' 3639 Picola West Victoria'),
7770
+ (7408, '3639', 'Barmah', 'VIC', 'AU', 491, ' 3639 Barmah Victoria'),
7771
+ (7409, '3640', 'Katunga', 'VIC', 'AU', 491, ' 3640 Katunga Victoria'),
7772
+ (7410, '3641', 'Mywee', 'VIC', 'AU', 491, ' 3641 Mywee Victoria'),
7773
+ (7411, '3641', 'Ulupna', 'VIC', 'AU', 491, ' 3641 Ulupna Victoria'),
7774
+ (7412, '3641', 'Strathmerton', 'VIC', 'AU', 491, ' 3641 Strathmerton Victoria'),
7775
+ (7413, '3641', 'Bearii', 'VIC', 'AU', 491, ' 3641 Bearii Victoria'),
7776
+ (7414, '3643', 'Cobram', 'VIC', 'AU', 491, ' 3643 Cobram Victoria'),
7777
+ (7415, '3644', 'Cobram', 'VIC', 'AU', 491, ' 3644 Cobram Victoria'),
7778
+ (7416, '3644', 'Cobram East', 'VIC', 'AU', 491, ' 3644 Cobram East Victoria'),
7779
+ (7417, '3644', 'Yarroweyah', 'VIC', 'AU', 491, ' 3644 Yarroweyah Victoria'),
7780
+ (7418, '3644', 'Muckatah', 'VIC', 'AU', 491, ' 3644 Muckatah Victoria'),
7781
+ (7419, '3644', 'Koonoomoo', 'VIC', 'AU', 491, ' 3644 Koonoomoo Victoria'),
7782
+ (7420, '3644', 'Barooga', 'NSW', 'AU', 486, ' 3644 Barooga New South Wales'),
7783
+ (7421, '3644', 'Lalalty', 'NSW', 'AU', 486, ' 3644 Lalalty New South Wales'),
7784
+ (7422, '3646', 'Mount Major', 'VIC', 'AU', 491, ' 3646 Mount Major Victoria'),
7785
+ (7423, '3646', 'Nalinga', 'VIC', 'AU', 491, ' 3646 Nalinga Victoria'),
7786
+ (7424, '3646', 'Waggarandall', 'VIC', 'AU', 491, ' 3646 Waggarandall Victoria'),
7787
+ (7425, '3646', 'Youanmite', 'VIC', 'AU', 491, ' 3646 Youanmite Victoria'),
7788
+ (7426, '3646', 'Yabba North', 'VIC', 'AU', 491, ' 3646 Yabba North Victoria'),
7789
+ (7427, '3646', 'Yabba South', 'VIC', 'AU', 491, ' 3646 Yabba South Victoria'),
7790
+ (7428, '3646', 'Dookie', 'VIC', 'AU', 491, ' 3646 Dookie Victoria'),
7791
+ (7429, '3649', 'Katamatite', 'VIC', 'AU', 491, ' 3649 Katamatite Victoria'),
7792
+ (7430, '3649', 'Katamatite East', 'VIC', 'AU', 491, ' 3649 Katamatite East Victoria'),
7793
+ (7431, '3658', 'Reedy Creek', 'VIC', 'AU', 491, ' 3658 Reedy Creek Victoria'),
7794
+ (7432, '3658', 'Tyaak', 'VIC', 'AU', 491, ' 3658 Tyaak Victoria'),
7795
+ (7433, '3658', 'Strath Creek', 'VIC', 'AU', 491, ' 3658 Strath Creek Victoria'),
7796
+ (7434, '3658', 'Sugarloaf Creek', 'VIC', 'AU', 491, ' 3658 Sugarloaf Creek Victoria'),
7797
+ (7435, '3658', 'Sunday Creek', 'VIC', 'AU', 491, ' 3658 Sunday Creek Victoria'),
7798
+ (7436, '3658', 'Waterford Park', 'VIC', 'AU', 491, ' 3658 Waterford Park Victoria'),
7799
+ (7437, '3658', 'Hazeldene', 'VIC', 'AU', 491, ' 3658 Hazeldene Victoria'),
7800
+ (7438, '3658', 'Clonbinane', 'VIC', 'AU', 491, ' 3658 Clonbinane Victoria'),
7801
+ (7439, '3658', 'Broadford', 'VIC', 'AU', 491, ' 3658 Broadford Victoria'),
7802
+ (7440, '3659', 'Tallarook', 'VIC', 'AU', 491, ' 3659 Tallarook Victoria'),
7803
+ (7441, '3660', 'Trawool', 'VIC', 'AU', 491, ' 3660 Trawool Victoria'),
7804
+ (7442, '3660', 'Whiteheads Creek', 'VIC', 'AU', 491, ' 3660 Whiteheads Creek Victoria'),
7805
+ (7443, '3660', 'Seymour', 'VIC', 'AU', 491, ' 3660 Seymour Victoria'),
7806
+ (7444, '3660', 'Seymour South', 'VIC', 'AU', 491, ' 3660 Seymour South Victoria'),
7807
+ (7445, '3660', 'Northwood', 'VIC', 'AU', 491, ' 3660 Northwood Victoria'),
7808
+ (7446, '3660', 'Kerrisdale', 'VIC', 'AU', 491, ' 3660 Kerrisdale Victoria'),
7809
+ (7447, '3660', 'Caveat', 'VIC', 'AU', 491, ' 3660 Caveat Victoria'),
7810
+ (7448, '3660', 'Highlands', 'VIC', 'AU', 491, ' 3660 Highlands Victoria'),
7811
+ (7449, '3660', 'Hilldene', 'VIC', 'AU', 491, ' 3660 Hilldene Victoria'),
7812
+ (7450, '3660', 'Dropmore', 'VIC', 'AU', 491, ' 3660 Dropmore Victoria'),
7813
+ (7451, '3661', 'Seymour', 'VIC', 'AU', 491, ' 3661 Seymour Victoria'),
7814
+ (7452, '3663', 'Mangalore', 'VIC', 'AU', 491, ' 3663 Mangalore Victoria'),
7815
+ (7453, '3664', 'Upton Hill', 'VIC', 'AU', 491, ' 3664 Upton Hill Victoria'),
7816
+ (7454, '3664', 'Avenel', 'VIC', 'AU', 491, ' 3664 Avenel Victoria'),
7817
+ (7455, '3665', 'Longwood', 'VIC', 'AU', 491, ' 3665 Longwood Victoria'),
7818
+ (7456, '3665', 'Locksley', 'VIC', 'AU', 491, ' 3665 Locksley Victoria'),
7819
+ (7457, '3666', 'Longwood East', 'VIC', 'AU', 491, ' 3666 Longwood East Victoria'),
7820
+ (7458, '3666', 'Kelvin View', 'VIC', 'AU', 491, ' 3666 Kelvin View Victoria'),
7821
+ (7459, '3666', 'Kithbrook', 'VIC', 'AU', 491, ' 3666 Kithbrook Victoria'),
7822
+ (7460, '3666', 'Miepoll', 'VIC', 'AU', 491, ' 3666 Miepoll Victoria'),
7823
+ (7461, '3666', 'Molka', 'VIC', 'AU', 491, ' 3666 Molka Victoria'),
7824
+ (7462, '3666', 'Moglonemby', 'VIC', 'AU', 491, ' 3666 Moglonemby Victoria'),
7825
+ (7463, '3666', 'Sheans Creek', 'VIC', 'AU', 491, ' 3666 Sheans Creek Victoria'),
7826
+ (7464, '3666', 'Ruffy', 'VIC', 'AU', 491, ' 3666 Ruffy Victoria'),
7827
+ (7465, '3666', 'Riggs Creek', 'VIC', 'AU', 491, ' 3666 Riggs Creek Victoria'),
7828
+ (7466, '3666', 'Pranjip', 'VIC', 'AU', 491, ' 3666 Pranjip Victoria'),
7829
+ (7467, '3666', 'Tarcombe', 'VIC', 'AU', 491, ' 3666 Tarcombe Victoria'),
7830
+ (7468, '3666', 'Strathbogie', 'VIC', 'AU', 491, ' 3666 Strathbogie Victoria'),
7831
+ (7469, '3666', 'Balmattum', 'VIC', 'AU', 491, ' 3666 Balmattum Victoria'),
7832
+ (7470, '3666', 'Euroa', 'VIC', 'AU', 491, ' 3666 Euroa Victoria'),
7833
+ (7471, '3666', 'Gooram', 'VIC', 'AU', 491, ' 3666 Gooram Victoria'),
7834
+ (7472, '3666', 'Creightons Creek', 'VIC', 'AU', 491, ' 3666 Creightons Creek Victoria'),
7835
+ (7473, '3669', 'Creek Junction', 'VIC', 'AU', 491, ' 3669 Creek Junction Victoria'),
7836
+ (7474, '3669', 'Boho', 'VIC', 'AU', 491, ' 3669 Boho Victoria'),
7837
+ (7475, '3669', 'Boho South', 'VIC', 'AU', 491, ' 3669 Boho South Victoria'),
7838
+ (7476, '3669', 'Gowangardie', 'VIC', 'AU', 491, ' 3669 Gowangardie Victoria'),
7839
+ (7477, '3669', 'Earlston', 'VIC', 'AU', 491, ' 3669 Earlston Victoria'),
7840
+ (7478, '3669', 'Tamleugh', 'VIC', 'AU', 491, ' 3669 Tamleugh Victoria'),
7841
+ (7479, '3669', 'Tamleugh North', 'VIC', 'AU', 491, ' 3669 Tamleugh North Victoria'),
7842
+ (7480, '3669', 'Upotipotpon', 'VIC', 'AU', 491, ' 3669 Upotipotpon Victoria'),
7843
+ (7481, '3669', 'Violet Town', 'VIC', 'AU', 491, ' 3669 Violet Town Victoria'),
7844
+ (7482, '3669', 'Marraweeney', 'VIC', 'AU', 491, ' 3669 Marraweeney Victoria'),
7845
+ (7483, '3669', 'Koonda', 'VIC', 'AU', 491, ' 3669 Koonda Victoria'),
7846
+ (7484, '3670', 'Tarnook', 'VIC', 'AU', 491, ' 3670 Tarnook Victoria'),
7847
+ (7485, '3670', 'Warrenbayne', 'VIC', 'AU', 491, ' 3670 Warrenbayne Victoria'),
7848
+ (7486, '3670', 'Baddaginnie', 'VIC', 'AU', 491, ' 3670 Baddaginnie Victoria'),
7849
+ (7487, '3671', 'Benalla', 'VIC', 'AU', 491, ' 3671 Benalla Victoria'),
7850
+ (7488, '3672', 'Benalla', 'VIC', 'AU', 491, ' 3672 Benalla Victoria'),
7851
+ (7489, '3672', 'Benalla West', 'VIC', 'AU', 491, ' 3672 Benalla West Victoria'),
7852
+ (7490, '3673', 'Winton', 'VIC', 'AU', 491, ' 3673 Winton Victoria'),
7853
+ (7491, '3673', 'Winton North', 'VIC', 'AU', 491, ' 3673 Winton North Victoria'),
7854
+ (7492, '3673', 'Goomalibee', 'VIC', 'AU', 491, ' 3673 Goomalibee Victoria'),
7855
+ (7493, '3673', 'Broken Creek', 'VIC', 'AU', 491, ' 3673 Broken Creek Victoria'),
7856
+ (7494, '3673', 'Tatong', 'VIC', 'AU', 491, ' 3673 Tatong Victoria'),
7857
+ (7495, '3673', 'Swanpool', 'VIC', 'AU', 491, ' 3673 Swanpool Victoria'),
7858
+ (7496, '3673', 'Upper Lurg', 'VIC', 'AU', 491, ' 3673 Upper Lurg Victoria'),
7859
+ (7497, '3673', 'Upper Ryans Creek', 'VIC', 'AU', 491, ' 3673 Upper Ryans Creek Victoria'),
7860
+ (7498, '3673', 'Lurg', 'VIC', 'AU', 491, ' 3673 Lurg Victoria'),
7861
+ (7499, '3673', 'Lima', 'VIC', 'AU', 491, ' 3673 Lima Victoria'),
7862
+ (7500, '3673', 'Lima East', 'VIC', 'AU', 491, ' 3673 Lima East Victoria'),
7863
+ (7501, '3673', 'Lima South', 'VIC', 'AU', 491, ' 3673 Lima South Victoria'),
7864
+ (7502, '3673', 'Molyullah', 'VIC', 'AU', 491, ' 3673 Molyullah Victoria'),
7865
+ (7503, '3673', 'Moorngag', 'VIC', 'AU', 491, ' 3673 Moorngag Victoria'),
7866
+ (7504, '3673', 'Samaria', 'VIC', 'AU', 491, ' 3673 Samaria Victoria'),
7867
+ (7505, '3675', 'Mount Bruno', 'VIC', 'AU', 491, ' 3675 Mount Bruno Victoria'),
7868
+ (7506, '3675', 'Taminick', 'VIC', 'AU', 491, ' 3675 Taminick Victoria'),
7869
+ (7507, '3675', 'Boweya', 'VIC', 'AU', 491, ' 3675 Boweya Victoria');
7870
+ INSERT INTO {$this->getTable('candf_pcs')} (`entity_id`, `postcode`, `city`, `state`, `country_id`, `region_id`, `fulltext`) VALUES
7871
+ (7508, '3675', 'Boweya North', 'VIC', 'AU', 491, ' 3675 Boweya North Victoria'),
7872
+ (7509, '3675', 'Hansonville', 'VIC', 'AU', 491, ' 3675 Hansonville Victoria'),
7873
+ (7510, '3675', 'Greta', 'VIC', 'AU', 491, ' 3675 Greta Victoria'),
7874
+ (7511, '3675', 'Greta South', 'VIC', 'AU', 491, ' 3675 Greta South Victoria'),
7875
+ (7512, '3675', 'Greta West', 'VIC', 'AU', 491, ' 3675 Greta West Victoria'),
7876
+ (7513, '3675', 'Glenrowan', 'VIC', 'AU', 491, ' 3675 Glenrowan Victoria'),
7877
+ (7514, '3675', 'Glenrowan West', 'VIC', 'AU', 491, ' 3675 Glenrowan West Victoria'),
7878
+ (7515, '3676', 'Wangaratta', 'VIC', 'AU', 491, ' 3676 Wangaratta Victoria'),
7879
+ (7516, '3677', 'Wangaratta', 'VIC', 'AU', 491, ' 3677 Wangaratta Victoria'),
7880
+ (7517, '3677', 'Wangaratta West', 'VIC', 'AU', 491, ' 3677 Wangaratta West Victoria'),
7881
+ (7518, '3677', 'Yarrunga', 'VIC', 'AU', 491, ' 3677 Yarrunga Victoria'),
7882
+ (7519, '3678', 'East Wangaratta', 'VIC', 'AU', 491, ' 3678 East Wangaratta Victoria'),
7883
+ (7520, '3678', 'Edi', 'VIC', 'AU', 491, ' 3678 Edi Victoria'),
7884
+ (7521, '3678', 'Edi Upper', 'VIC', 'AU', 491, ' 3678 Edi Upper Victoria'),
7885
+ (7522, '3678', 'Everton', 'VIC', 'AU', 491, ' 3678 Everton Victoria'),
7886
+ (7523, '3678', 'Everton Upper', 'VIC', 'AU', 491, ' 3678 Everton Upper Victoria'),
7887
+ (7524, '3678', 'Docker', 'VIC', 'AU', 491, ' 3678 Docker Victoria'),
7888
+ (7525, '3678', 'Dockers Plains', 'VIC', 'AU', 491, ' 3678 Dockers Plains Victoria'),
7889
+ (7526, '3678', 'Bowser', 'VIC', 'AU', 491, ' 3678 Bowser Victoria'),
7890
+ (7527, '3678', 'Boorhaman', 'VIC', 'AU', 491, ' 3678 Boorhaman Victoria'),
7891
+ (7528, '3678', 'Boorhaman East', 'VIC', 'AU', 491, ' 3678 Boorhaman East Victoria'),
7892
+ (7529, '3678', 'Byawatha', 'VIC', 'AU', 491, ' 3678 Byawatha Victoria'),
7893
+ (7530, '3678', 'Bobinawarrah', 'VIC', 'AU', 491, ' 3678 Bobinawarrah Victoria'),
7894
+ (7531, '3678', 'Cheshunt', 'VIC', 'AU', 491, ' 3678 Cheshunt Victoria'),
7895
+ (7532, '3678', 'Cheshunt South', 'VIC', 'AU', 491, ' 3678 Cheshunt South Victoria'),
7896
+ (7533, '3678', 'Carboor', 'VIC', 'AU', 491, ' 3678 Carboor Victoria'),
7897
+ (7534, '3678', 'Wangaratta Forward', 'VIC', 'AU', 491, ' 3678 Wangaratta Forward Victoria'),
7898
+ (7535, '3678', 'Wangaratta South', 'VIC', 'AU', 491, ' 3678 Wangaratta South Victoria'),
7899
+ (7536, '3678', 'Whitlands', 'VIC', 'AU', 491, ' 3678 Whitlands Victoria'),
7900
+ (7537, '3678', 'Tarrawingee', 'VIC', 'AU', 491, ' 3678 Tarrawingee Victoria'),
7901
+ (7538, '3678', 'Wabonga', 'VIC', 'AU', 491, ' 3678 Wabonga Victoria'),
7902
+ (7539, '3678', 'Waldara', 'VIC', 'AU', 491, ' 3678 Waldara Victoria'),
7903
+ (7540, '3678', 'Wangandary', 'VIC', 'AU', 491, ' 3678 Wangandary Victoria'),
7904
+ (7541, '3678', 'Markwood', 'VIC', 'AU', 491, ' 3678 Markwood Victoria'),
7905
+ (7542, '3678', 'Meadow Creek', 'VIC', 'AU', 491, ' 3678 Meadow Creek Victoria'),
7906
+ (7543, '3678', 'Milawa', 'VIC', 'AU', 491, ' 3678 Milawa Victoria'),
7907
+ (7544, '3678', 'Londrigan', 'VIC', 'AU', 491, ' 3678 Londrigan Victoria'),
7908
+ (7545, '3678', 'Laceby', 'VIC', 'AU', 491, ' 3678 Laceby Victoria'),
7909
+ (7546, '3678', 'King Valley', 'VIC', 'AU', 491, ' 3678 King Valley Victoria'),
7910
+ (7547, '3678', 'Killawarra', 'VIC', 'AU', 491, ' 3678 Killawarra Victoria'),
7911
+ (7548, '3678', 'Oxley', 'VIC', 'AU', 491, ' 3678 Oxley Victoria'),
7912
+ (7549, '3678', 'Oxley Flats', 'VIC', 'AU', 491, ' 3678 Oxley Flats Victoria'),
7913
+ (7550, '3678', 'Peechelba', 'VIC', 'AU', 491, ' 3678 Peechelba Victoria'),
7914
+ (7551, '3678', 'Peechelba East', 'VIC', 'AU', 491, ' 3678 Peechelba East Victoria'),
7915
+ (7552, '3678', 'Rose River', 'VIC', 'AU', 491, ' 3678 Rose River Victoria'),
7916
+ (7553, '3678', 'North Wangaratta', 'VIC', 'AU', 491, ' 3678 North Wangaratta Victoria'),
7917
+ (7554, '3682', 'Norong', 'VIC', 'AU', 491, ' 3682 Norong Victoria'),
7918
+ (7555, '3682', 'Springhurst', 'VIC', 'AU', 491, ' 3682 Springhurst Victoria'),
7919
+ (7556, '3682', 'Lilliput', 'VIC', 'AU', 491, ' 3682 Lilliput Victoria'),
7920
+ (7557, '3682', 'Boralma', 'VIC', 'AU', 491, ' 3682 Boralma Victoria'),
7921
+ (7558, '3683', 'Chiltern', 'VIC', 'AU', 491, ' 3683 Chiltern Victoria'),
7922
+ (7559, '3683', 'Chiltern Valley', 'VIC', 'AU', 491, ' 3683 Chiltern Valley Victoria'),
7923
+ (7560, '3683', 'Cornishtown', 'VIC', 'AU', 491, ' 3683 Cornishtown Victoria'),
7924
+ (7561, '3685', 'Carlyle', 'VIC', 'AU', 491, ' 3685 Carlyle Victoria'),
7925
+ (7562, '3685', 'Boorhaman North', 'VIC', 'AU', 491, ' 3685 Boorhaman North Victoria'),
7926
+ (7563, '3685', 'Browns Plains', 'VIC', 'AU', 491, ' 3685 Browns Plains Victoria'),
7927
+ (7564, '3685', 'Brimin', 'VIC', 'AU', 491, ' 3685 Brimin Victoria'),
7928
+ (7565, '3685', 'Gooramadda', 'VIC', 'AU', 491, ' 3685 Gooramadda Victoria'),
7929
+ (7566, '3685', 'Great Southern', 'VIC', 'AU', 491, ' 3685 Great Southern Victoria'),
7930
+ (7567, '3685', 'Lake Moodemere', 'VIC', 'AU', 491, ' 3685 Lake Moodemere Victoria'),
7931
+ (7568, '3685', 'Rutherglen', 'VIC', 'AU', 491, ' 3685 Rutherglen Victoria'),
7932
+ (7569, '3685', 'Prentice North', 'VIC', 'AU', 491, ' 3685 Prentice North Victoria'),
7933
+ (7570, '3687', 'Wahgunyah', 'VIC', 'AU', 491, ' 3687 Wahgunyah Victoria'),
7934
+ (7571, '3688', 'Indigo Valley', 'VIC', 'AU', 491, ' 3688 Indigo Valley Victoria'),
7935
+ (7572, '3688', 'Barnawartha', 'VIC', 'AU', 491, ' 3688 Barnawartha Victoria'),
7936
+ (7573, '3689', 'Wodonga', 'VIC', 'AU', 491, ' 3689 Wodonga Victoria'),
7937
+ (7574, '3690', 'Wodonga', 'VIC', 'AU', 491, ' 3690 Wodonga Victoria'),
7938
+ (7575, '3690', 'Wodonga Plaza', 'VIC', 'AU', 491, ' 3690 Wodonga Plaza Victoria'),
7939
+ (7576, '3690', 'West Wodonga', 'VIC', 'AU', 491, ' 3690 West Wodonga Victoria'),
7940
+ (7577, '3691', 'Upper Gundowring', 'VIC', 'AU', 491, ' 3691 Upper Gundowring Victoria'),
7941
+ (7578, '3691', 'Thologolong', 'VIC', 'AU', 491, ' 3691 Thologolong Victoria'),
7942
+ (7579, '3691', 'Tangambalanga', 'VIC', 'AU', 491, ' 3691 Tangambalanga Victoria'),
7943
+ (7580, '3691', 'Talgarno', 'VIC', 'AU', 491, ' 3691 Talgarno Victoria'),
7944
+ (7581, '3691', 'Staghorn Flat', 'VIC', 'AU', 491, ' 3691 Staghorn Flat Victoria'),
7945
+ (7582, '3691', 'Osbornes Flat', 'VIC', 'AU', 491, ' 3691 Osbornes Flat Victoria'),
7946
+ (7583, '3691', 'Running Creek', 'VIC', 'AU', 491, ' 3691 Running Creek Victoria'),
7947
+ (7584, '3691', 'Leneva', 'VIC', 'AU', 491, ' 3691 Leneva Victoria'),
7948
+ (7585, '3691', 'Lucyvale', 'VIC', 'AU', 491, ' 3691 Lucyvale Victoria'),
7949
+ (7586, '3691', 'Kiewa', 'VIC', 'AU', 491, ' 3691 Kiewa Victoria'),
7950
+ (7587, '3691', 'Killara', 'VIC', 'AU', 491, ' 3691 Killara Victoria'),
7951
+ (7588, '3691', 'Kergunyah', 'VIC', 'AU', 491, ' 3691 Kergunyah Victoria'),
7952
+ (7589, '3691', 'Kergunyah South', 'VIC', 'AU', 491, ' 3691 Kergunyah South Victoria'),
7953
+ (7590, '3691', 'Kancoona', 'VIC', 'AU', 491, ' 3691 Kancoona Victoria'),
7954
+ (7591, '3691', 'Mongans Bridge', 'VIC', 'AU', 491, ' 3691 Mongans Bridge Victoria'),
7955
+ (7592, '3691', 'Lake Hume Village', 'NSW', 'AU', 486, ' 3691 Lake Hume Village New South Wales'),
7956
+ (7593, '3691', 'Wodonga Forward', 'VIC', 'AU', 491, ' 3691 Wodonga Forward Victoria'),
7957
+ (7594, '3691', 'Barnawartha North', 'VIC', 'AU', 491, ' 3691 Barnawartha North Victoria'),
7958
+ (7595, '3691', 'Bandiana', 'VIC', 'AU', 491, ' 3691 Bandiana Victoria'),
7959
+ (7596, '3691', 'Baranduda', 'VIC', 'AU', 491, ' 3691 Baranduda Victoria'),
7960
+ (7597, '3691', 'Bellbridge', 'VIC', 'AU', 491, ' 3691 Bellbridge Victoria'),
7961
+ (7598, '3691', 'Bethanga', 'VIC', 'AU', 491, ' 3691 Bethanga Victoria'),
7962
+ (7599, '3691', 'Berringama', 'VIC', 'AU', 491, ' 3691 Berringama Victoria'),
7963
+ (7600, '3691', 'Allans Flat', 'VIC', 'AU', 491, ' 3691 Allans Flat Victoria'),
7964
+ (7601, '3691', 'Huon Creek', 'VIC', 'AU', 491, ' 3691 Huon Creek Victoria'),
7965
+ (7602, '3691', 'Gundowring', 'VIC', 'AU', 491, ' 3691 Gundowring Victoria'),
7966
+ (7603, '3691', 'Glen Creek', 'VIC', 'AU', 491, ' 3691 Glen Creek Victoria'),
7967
+ (7604, '3691', 'Gateway Island', 'VIC', 'AU', 491, ' 3691 Gateway Island Victoria'),
7968
+ (7605, '3691', 'Dederang', 'VIC', 'AU', 491, ' 3691 Dederang Victoria'),
7969
+ (7606, '3691', 'Ebden', 'VIC', 'AU', 491, ' 3691 Ebden Victoria'),
7970
+ (7607, '3691', 'Bonegilla', 'VIC', 'AU', 491, ' 3691 Bonegilla Victoria'),
7971
+ (7608, '3691', 'Bungil', 'VIC', 'AU', 491, ' 3691 Bungil Victoria'),
7972
+ (7609, '3691', 'Castle Creek', 'VIC', 'AU', 491, ' 3691 Castle Creek Victoria'),
7973
+ (7610, '3691', 'Coral Bank', 'VIC', 'AU', 491, ' 3691 Coral Bank Victoria'),
7974
+ (7611, '3694', 'Bandiana Milpo', 'VIC', 'AU', 491, ' 3694 Bandiana Milpo Victoria'),
7975
+ (7612, '3695', 'Charleroi', 'VIC', 'AU', 491, ' 3695 Charleroi Victoria'),
7976
+ (7613, '3695', 'Huon', 'VIC', 'AU', 491, ' 3695 Huon Victoria'),
7977
+ (7614, '3695', 'Sandy Creek', 'VIC', 'AU', 491, ' 3695 Sandy Creek Victoria'),
7978
+ (7615, '3697', 'Tawonga', 'VIC', 'AU', 491, ' 3697 Tawonga Victoria'),
7979
+ (7616, '3698', 'Tawonga South', 'VIC', 'AU', 491, ' 3698 Tawonga South Victoria'),
7980
+ (7617, '3699', 'Nelse', 'VIC', 'AU', 491, ' 3699 Nelse Victoria'),
7981
+ (7618, '3699', 'Mount Beauty', 'VIC', 'AU', 491, ' 3699 Mount Beauty Victoria'),
7982
+ (7619, '3699', 'Falls Creek', 'VIC', 'AU', 491, ' 3699 Falls Creek Victoria'),
7983
+ (7620, '3699', 'Bogong', 'VIC', 'AU', 491, ' 3699 Bogong Victoria'),
7984
+ (7621, '3700', 'Bullioh', 'VIC', 'AU', 491, ' 3700 Bullioh Victoria'),
7985
+ (7622, '3700', 'Jarvis Creek', 'VIC', 'AU', 491, ' 3700 Jarvis Creek Victoria'),
7986
+ (7623, '3700', 'Georges Creek', 'VIC', 'AU', 491, ' 3700 Georges Creek Victoria'),
7987
+ (7624, '3700', 'Tallangatta', 'VIC', 'AU', 491, ' 3700 Tallangatta Victoria'),
7988
+ (7625, '3700', 'Tallangatta East', 'VIC', 'AU', 491, ' 3700 Tallangatta East Victoria'),
7989
+ (7626, '3701', 'Tallangatta South', 'VIC', 'AU', 491, ' 3701 Tallangatta South Victoria'),
7990
+ (7627, '3701', 'Tallangatta Valley', 'VIC', 'AU', 491, ' 3701 Tallangatta Valley Victoria'),
7991
+ (7628, '3701', 'Tallandoon', 'VIC', 'AU', 491, ' 3701 Tallandoon Victoria'),
7992
+ (7629, '3701', 'Mitta Mitta', 'VIC', 'AU', 491, ' 3701 Mitta Mitta Victoria'),
7993
+ (7630, '3701', 'Shelley', 'VIC', 'AU', 491, ' 3701 Shelley Victoria'),
7994
+ (7631, '3701', 'Old Tallangatta', 'VIC', 'AU', 491, ' 3701 Old Tallangatta Victoria'),
7995
+ (7632, '3701', 'Granya', 'VIC', 'AU', 491, ' 3701 Granya Victoria'),
7996
+ (7633, '3701', 'Eskdale', 'VIC', 'AU', 491, ' 3701 Eskdale Victoria'),
7997
+ (7634, '3701', 'Dartmouth', 'VIC', 'AU', 491, ' 3701 Dartmouth Victoria'),
7998
+ (7635, '3704', 'Koetong', 'VIC', 'AU', 491, ' 3704 Koetong Victoria'),
7999
+ (7636, '3705', 'Cudgewa', 'VIC', 'AU', 491, ' 3705 Cudgewa Victoria'),
8000
+ (7637, '3707', 'Corryong', 'VIC', 'AU', 491, ' 3707 Corryong Victoria'),
8001
+ (7638, '3707', 'Colac Colac', 'VIC', 'AU', 491, ' 3707 Colac Colac Victoria'),
8002
+ (7639, '3707', 'Biggara', 'VIC', 'AU', 491, ' 3707 Biggara Victoria'),
8003
+ (7640, '3707', 'Nariel Valley', 'VIC', 'AU', 491, ' 3707 Nariel Valley Victoria'),
8004
+ (7641, '3707', 'Thowgla Valley', 'VIC', 'AU', 491, ' 3707 Thowgla Valley Victoria'),
8005
+ (7642, '3707', 'Towong', 'VIC', 'AU', 491, ' 3707 Towong Victoria'),
8006
+ (7643, '3707', 'Towong Upper', 'VIC', 'AU', 491, ' 3707 Towong Upper Victoria'),
8007
+ (7644, '3707', 'Tom Groggin', 'VIC', 'AU', 491, ' 3707 Tom Groggin Victoria'),
8008
+ (7645, '3707', 'Bringenbrong', 'NSW', 'AU', 486, ' 3707 Bringenbrong New South Wales'),
8009
+ (7646, '3708', 'Tintaldra', 'VIC', 'AU', 491, ' 3708 Tintaldra Victoria'),
8010
+ (7647, '3709', 'Walwa', 'VIC', 'AU', 491, ' 3709 Walwa Victoria'),
8011
+ (7648, '3709', 'Pine Mountain', 'VIC', 'AU', 491, ' 3709 Pine Mountain Victoria'),
8012
+ (7649, '3709', 'Mount Alfred', 'VIC', 'AU', 491, ' 3709 Mount Alfred Victoria'),
8013
+ (7650, '3709', 'Burrowye', 'VIC', 'AU', 491, ' 3709 Burrowye Victoria'),
8014
+ (7651, '3709', 'Guys Forest', 'VIC', 'AU', 491, ' 3709 Guys Forest Victoria'),
8015
+ (7652, '3711', 'Buxton', 'VIC', 'AU', 491, ' 3711 Buxton Victoria'),
8016
+ (7653, '3712', 'Rubicon', 'VIC', 'AU', 491, ' 3712 Rubicon Victoria'),
8017
+ (7654, '3712', 'Thornton', 'VIC', 'AU', 491, ' 3712 Thornton Victoria'),
8018
+ (7655, '3713', 'Taylor Bay', 'VIC', 'AU', 491, ' 3713 Taylor Bay Victoria'),
8019
+ (7656, '3713', 'Lake Eildon', 'VIC', 'AU', 491, ' 3713 Lake Eildon Victoria'),
8020
+ (7657, '3713', 'Eildon', 'VIC', 'AU', 491, ' 3713 Eildon Victoria'),
8021
+ (7658, '3714', 'Fawcett', 'VIC', 'AU', 491, ' 3714 Fawcett Victoria'),
8022
+ (7659, '3714', 'Devils River', 'VIC', 'AU', 491, ' 3714 Devils River Victoria'),
8023
+ (7660, '3714', 'Cathkin', 'VIC', 'AU', 491, ' 3714 Cathkin Victoria'),
8024
+ (7661, '3714', 'Crystal Creek', 'VIC', 'AU', 491, ' 3714 Crystal Creek Victoria'),
8025
+ (7662, '3714', 'Alexandra', 'VIC', 'AU', 491, ' 3714 Alexandra Victoria'),
8026
+ (7663, '3714', 'Acheron', 'VIC', 'AU', 491, ' 3714 Acheron Victoria'),
8027
+ (7664, '3714', 'Koriella', 'VIC', 'AU', 491, ' 3714 Koriella Victoria'),
8028
+ (7665, '3714', 'Maintongoon', 'VIC', 'AU', 491, ' 3714 Maintongoon Victoria'),
8029
+ (7666, '3714', 'Taggerty', 'VIC', 'AU', 491, ' 3714 Taggerty Victoria'),
8030
+ (7667, '3714', 'Whanregarwen', 'VIC', 'AU', 491, ' 3714 Whanregarwen Victoria'),
8031
+ (7668, '3715', 'Merton', 'VIC', 'AU', 491, ' 3715 Merton Victoria'),
8032
+ (7669, '3715', 'Ancona', 'VIC', 'AU', 491, ' 3715 Ancona Victoria'),
8033
+ (7670, '3715', 'Woodfield', 'VIC', 'AU', 491, ' 3715 Woodfield Victoria'),
8034
+ (7671, '3717', 'Yea', 'VIC', 'AU', 491, ' 3717 Yea Victoria'),
8035
+ (7672, '3717', 'Flowerdale', 'VIC', 'AU', 491, ' 3717 Flowerdale Victoria'),
8036
+ (7673, '3717', 'Ghin Ghin', 'VIC', 'AU', 491, ' 3717 Ghin Ghin Victoria'),
8037
+ (7674, '3717', 'Glenburn', 'VIC', 'AU', 491, ' 3717 Glenburn Victoria'),
8038
+ (7675, '3717', 'Homewood', 'VIC', 'AU', 491, ' 3717 Homewood Victoria'),
8039
+ (7676, '3717', 'Limestone', 'VIC', 'AU', 491, ' 3717 Limestone Victoria'),
8040
+ (7677, '3717', 'Killingworth', 'VIC', 'AU', 491, ' 3717 Killingworth Victoria'),
8041
+ (7678, '3717', 'Murrindindi', 'VIC', 'AU', 491, ' 3717 Murrindindi Victoria'),
8042
+ (7679, '3718', 'Molesworth', 'VIC', 'AU', 491, ' 3718 Molesworth Victoria'),
8043
+ (7680, '3719', 'Kanumbra', 'VIC', 'AU', 491, ' 3719 Kanumbra Victoria'),
8044
+ (7681, '3719', 'Terip Terip', 'VIC', 'AU', 491, ' 3719 Terip Terip Victoria'),
8045
+ (7682, '3719', 'Gobur', 'VIC', 'AU', 491, ' 3719 Gobur Victoria'),
8046
+ (7683, '3719', 'Yarck', 'VIC', 'AU', 491, ' 3719 Yarck Victoria'),
8047
+ (7684, '3720', 'Bonnie Doon', 'VIC', 'AU', 491, ' 3720 Bonnie Doon Victoria'),
8048
+ (7685, '3722', 'Barwite', 'VIC', 'AU', 491, ' 3722 Barwite Victoria'),
8049
+ (7686, '3722', 'Mirimbah', 'VIC', 'AU', 491, ' 3722 Mirimbah Victoria'),
8050
+ (7687, '3722', 'Mansfield', 'VIC', 'AU', 491, ' 3722 Mansfield Victoria'),
8051
+ (7688, '3723', 'Matlock', 'VIC', 'AU', 491, ' 3723 Matlock Victoria'),
8052
+ (7689, '3723', 'Merrijig', 'VIC', 'AU', 491, ' 3723 Merrijig Victoria'),
8053
+ (7690, '3723', 'Mount Buller', 'VIC', 'AU', 491, ' 3723 Mount Buller Victoria'),
8054
+ (7691, '3723', 'Maindample', 'VIC', 'AU', 491, ' 3723 Maindample Victoria'),
8055
+ (7692, '3723', 'Knockwood', 'VIC', 'AU', 491, ' 3723 Knockwood Victoria'),
8056
+ (7693, '3723', 'Kevington', 'VIC', 'AU', 491, ' 3723 Kevington Victoria'),
8057
+ (7694, '3723', 'Macs Cove', 'VIC', 'AU', 491, ' 3723 Macs Cove Victoria'),
8058
+ (7695, '3723', 'Mountain Bay', 'VIC', 'AU', 491, ' 3723 Mountain Bay Victoria'),
8059
+ (7696, '3723', 'Sawmill Settlement', 'VIC', 'AU', 491, ' 3723 Sawmill Settlement Victoria'),
8060
+ (7697, '3723', 'Piries', 'VIC', 'AU', 491, ' 3723 Piries Victoria'),
8061
+ (7698, '3723', 'Tolmie', 'VIC', 'AU', 491, ' 3723 Tolmie Victoria'),
8062
+ (7699, '3723', 'Barjarg', 'VIC', 'AU', 491, ' 3723 Barjarg Victoria'),
8063
+ (7700, '3723', 'Archerton', 'VIC', 'AU', 491, ' 3723 Archerton Victoria'),
8064
+ (7701, '3723', 'Woods Point', 'VIC', 'AU', 491, ' 3723 Woods Point Victoria'),
8065
+ (7702, '3723', 'Boorolite', 'VIC', 'AU', 491, ' 3723 Boorolite Victoria'),
8066
+ (7703, '3723', 'Bridge Creek', 'VIC', 'AU', 491, ' 3723 Bridge Creek Victoria'),
8067
+ (7704, '3723', 'Goughs Bay', 'VIC', 'AU', 491, ' 3723 Goughs Bay Victoria'),
8068
+ (7705, '3723', 'Howqua', 'VIC', 'AU', 491, ' 3723 Howqua Victoria'),
8069
+ (7706, '3723', 'Howqua Hills', 'VIC', 'AU', 491, ' 3723 Howqua Hills Victoria'),
8070
+ (7707, '3723', 'Howqua Inlet', 'VIC', 'AU', 491, ' 3723 Howqua Inlet Victoria'),
8071
+ (7708, '3723', 'Howes Creek', 'VIC', 'AU', 491, ' 3723 Howes Creek Victoria'),
8072
+ (7709, '3723', 'Jamieson', 'VIC', 'AU', 491, ' 3723 Jamieson Victoria'),
8073
+ (7710, '3723', 'Enochs Point', 'VIC', 'AU', 491, ' 3723 Enochs Point Victoria'),
8074
+ (7711, '3723', 'Delatite', 'VIC', 'AU', 491, ' 3723 Delatite Victoria'),
8075
+ (7712, '3723', 'Gaffneys Creek', 'VIC', 'AU', 491, ' 3723 Gaffneys Creek Victoria'),
8076
+ (7713, '3724', 'Mansfield', 'VIC', 'AU', 491, ' 3724 Mansfield Victoria'),
8077
+ (7714, '3725', 'Major Plains', 'VIC', 'AU', 491, ' 3725 Major Plains Victoria'),
8078
+ (7715, '3725', 'Stewarton', 'VIC', 'AU', 491, ' 3725 Stewarton Victoria'),
8079
+ (7716, '3725', 'Goorambat', 'VIC', 'AU', 491, ' 3725 Goorambat Victoria'),
8080
+ (7717, '3725', 'Boxwood', 'VIC', 'AU', 491, ' 3725 Boxwood Victoria'),
8081
+ (7718, '3725', 'Chesney Vale', 'VIC', 'AU', 491, ' 3725 Chesney Vale Victoria'),
8082
+ (7719, '3726', 'Bungeet', 'VIC', 'AU', 491, ' 3726 Bungeet Victoria'),
8083
+ (7720, '3726', 'Bungeet West', 'VIC', 'AU', 491, ' 3726 Bungeet West Victoria'),
8084
+ (7721, '3726', 'Devenish', 'VIC', 'AU', 491, ' 3726 Devenish Victoria'),
8085
+ (7722, '3726', 'Thoona', 'VIC', 'AU', 491, ' 3726 Thoona Victoria'),
8086
+ (7723, '3727', 'Lake Rowan', 'VIC', 'AU', 491, ' 3727 Lake Rowan Victoria'),
8087
+ (7724, '3727', 'Pelluebla', 'VIC', 'AU', 491, ' 3727 Pelluebla Victoria'),
8088
+ (7725, '3727', 'St James', 'VIC', 'AU', 491, ' 3727 St James Victoria'),
8089
+ (7726, '3727', 'Yundool', 'VIC', 'AU', 491, ' 3727 Yundool Victoria'),
8090
+ (7727, '3727', 'Almonds', 'VIC', 'AU', 491, ' 3727 Almonds Victoria'),
8091
+ (7728, '3728', 'Youarang', 'VIC', 'AU', 491, ' 3728 Youarang Victoria'),
8092
+ (7729, '3728', 'Boomahnoomoonah', 'VIC', 'AU', 491, ' 3728 Boomahnoomoonah Victoria'),
8093
+ (7730, '3728', 'Tungamah', 'VIC', 'AU', 491, ' 3728 Tungamah Victoria'),
8094
+ (7731, '3728', 'Wilby', 'VIC', 'AU', 491, ' 3728 Wilby Victoria'),
8095
+ (7732, '3730', 'Telford', 'VIC', 'AU', 491, ' 3730 Telford Victoria'),
8096
+ (7733, '3730', 'Boosey', 'VIC', 'AU', 491, ' 3730 Boosey Victoria'),
8097
+ (7734, '3730', 'Bundalong', 'VIC', 'AU', 491, ' 3730 Bundalong Victoria'),
8098
+ (7735, '3730', 'Bundalong South', 'VIC', 'AU', 491, ' 3730 Bundalong South Victoria'),
8099
+ (7736, '3730', 'Burramine', 'VIC', 'AU', 491, ' 3730 Burramine Victoria'),
8100
+ (7737, '3730', 'Burramine South', 'VIC', 'AU', 491, ' 3730 Burramine South Victoria'),
8101
+ (7738, '3730', 'Esmond', 'VIC', 'AU', 491, ' 3730 Esmond Victoria'),
8102
+ (7739, '3730', 'Yarrawonga', 'VIC', 'AU', 491, ' 3730 Yarrawonga Victoria'),
8103
+ (7740, '3730', 'Yarrawonga South', 'VIC', 'AU', 491, ' 3730 Yarrawonga South Victoria'),
8104
+ (7741, '3730', 'Bathumi', 'VIC', 'AU', 491, ' 3730 Bathumi Victoria'),
8105
+ (7742, '3732', 'Moyhu', 'VIC', 'AU', 491, ' 3732 Moyhu Victoria'),
8106
+ (7743, '3732', 'Myrrhee', 'VIC', 'AU', 491, ' 3732 Myrrhee Victoria'),
8107
+ (7744, '3733', 'Whitfield', 'VIC', 'AU', 491, ' 3733 Whitfield Victoria'),
8108
+ (7745, '3735', 'Whorouly', 'VIC', 'AU', 491, ' 3735 Whorouly Victoria'),
8109
+ (7746, '3735', 'Whorouly East', 'VIC', 'AU', 491, ' 3735 Whorouly East Victoria'),
8110
+ (7747, '3735', 'Whorouly South', 'VIC', 'AU', 491, ' 3735 Whorouly South Victoria'),
8111
+ (7748, '3735', 'Bowmans Forest', 'VIC', 'AU', 491, ' 3735 Bowmans Forest Victoria'),
8112
+ (7749, '3736', 'Myrtleford', 'VIC', 'AU', 491, ' 3736 Myrtleford Victoria'),
8113
+ (7750, '3737', 'Myrtleford', 'VIC', 'AU', 491, ' 3737 Myrtleford Victoria'),
8114
+ (7751, '3737', 'Mudgegonga', 'VIC', 'AU', 491, ' 3737 Mudgegonga Victoria'),
8115
+ (7752, '3737', 'Nug Nug', 'VIC', 'AU', 491, ' 3737 Nug Nug Victoria'),
8116
+ (7753, '3737', 'Selwyn', 'VIC', 'AU', 491, ' 3737 Selwyn Victoria'),
8117
+ (7754, '3737', 'Rosewhite', 'VIC', 'AU', 491, ' 3737 Rosewhite Victoria'),
8118
+ (7755, '3737', 'Merriang', 'VIC', 'AU', 491, ' 3737 Merriang Victoria'),
8119
+ (7756, '3737', 'Merriang South', 'VIC', 'AU', 491, ' 3737 Merriang South Victoria'),
8120
+ (7757, '3737', 'Buffalo River', 'VIC', 'AU', 491, ' 3737 Buffalo River Victoria'),
8121
+ (7758, '3737', 'Dandongadale', 'VIC', 'AU', 491, ' 3737 Dandongadale Victoria'),
8122
+ (7759, '3737', 'Havilah', 'VIC', 'AU', 491, ' 3737 Havilah Victoria'),
8123
+ (7760, '3737', 'Gapsted', 'VIC', 'AU', 491, ' 3737 Gapsted Victoria'),
8124
+ (7761, '3737', 'Barwidgee', 'VIC', 'AU', 491, ' 3737 Barwidgee Victoria'),
8125
+ (7762, '3737', 'Abbeyard', 'VIC', 'AU', 491, ' 3737 Abbeyard Victoria'),
8126
+ (7763, '3737', 'Wonnangatta', 'VIC', 'AU', 491, ' 3737 Wonnangatta Victoria'),
8127
+ (7764, '3738', 'Ovens', 'VIC', 'AU', 491, ' 3738 Ovens Victoria'),
8128
+ (7765, '3739', 'Eurobin', 'VIC', 'AU', 491, ' 3739 Eurobin Victoria'),
8129
+ (7766, '3740', 'Buckland', 'VIC', 'AU', 491, ' 3740 Buckland Victoria'),
8130
+ (7767, '3740', 'Porepunkah', 'VIC', 'AU', 491, ' 3740 Porepunkah Victoria'),
8131
+ (7768, '3740', 'Mount Buffalo', 'VIC', 'AU', 491, ' 3740 Mount Buffalo Victoria'),
8132
+ (7769, '3741', 'Smoko', 'VIC', 'AU', 491, ' 3741 Smoko Victoria'),
8133
+ (7770, '3741', 'Mount Hotham', 'VIC', 'AU', 491, ' 3741 Mount Hotham Victoria'),
8134
+ (7771, '3741', 'Bright', 'VIC', 'AU', 491, ' 3741 Bright Victoria'),
8135
+ (7772, '3741', 'Freeburgh', 'VIC', 'AU', 491, ' 3741 Freeburgh Victoria'),
8136
+ (7773, '3741', 'Germantown', 'VIC', 'AU', 491, ' 3741 Germantown Victoria'),
8137
+ (7774, '3741', 'Harrietville', 'VIC', 'AU', 491, ' 3741 Harrietville Victoria'),
8138
+ (7775, '3741', 'Hotham Heights', 'VIC', 'AU', 491, ' 3741 Hotham Heights Victoria'),
8139
+ (7776, '3744', 'Wandiligong', 'VIC', 'AU', 491, ' 3744 Wandiligong Victoria'),
8140
+ (7777, '3746', 'Eldorado', 'VIC', 'AU', 491, ' 3746 Eldorado Victoria'),
8141
+ (7778, '3747', 'Woolshed', 'VIC', 'AU', 491, ' 3747 Woolshed Victoria'),
8142
+ (7779, '3747', 'Wooragee', 'VIC', 'AU', 491, ' 3747 Wooragee Victoria'),
8143
+ (7780, '3747', 'Beechworth', 'VIC', 'AU', 491, ' 3747 Beechworth Victoria'),
8144
+ (7781, '3747', 'Stanley', 'VIC', 'AU', 491, ' 3747 Stanley Victoria'),
8145
+ (7782, '3747', 'Murmungee', 'VIC', 'AU', 491, ' 3747 Murmungee Victoria'),
8146
+ (7783, '3749', 'Yackandandah', 'VIC', 'AU', 491, ' 3749 Yackandandah Victoria'),
8147
+ (7784, '3749', 'Bruarong', 'VIC', 'AU', 491, ' 3749 Bruarong Victoria'),
8148
+ (7785, '3750', 'Wollert', 'VIC', 'AU', 491, ' 3750 Wollert Victoria'),
8149
+ (7786, '3751', 'Woodstock', 'VIC', 'AU', 491, ' 3751 Woodstock Victoria'),
8150
+ (7787, '3752', 'South Morang', 'VIC', 'AU', 491, ' 3752 South Morang Victoria'),
8151
+ (7788, '3752', 'Morang South', 'VIC', 'AU', 491, ' 3752 Morang South Victoria'),
8152
+ (7789, '3753', 'Beveridge', 'VIC', 'AU', 491, ' 3753 Beveridge Victoria'),
8153
+ (7790, '3754', 'Doreen', 'VIC', 'AU', 491, ' 3754 Doreen Victoria'),
8154
+ (7791, '3754', 'Mernda', 'VIC', 'AU', 491, ' 3754 Mernda Victoria'),
8155
+ (7792, '3755', 'Yan Yean', 'VIC', 'AU', 491, ' 3755 Yan Yean Victoria'),
8156
+ (7793, '3756', 'Upper Plenty', 'VIC', 'AU', 491, ' 3756 Upper Plenty Victoria'),
8157
+ (7794, '3756', 'Wallan', 'VIC', 'AU', 491, ' 3756 Wallan Victoria'),
8158
+ (7795, '3756', 'Darraweit Guim', 'VIC', 'AU', 491, ' 3756 Darraweit Guim Victoria'),
8159
+ (7796, '3756', 'Chintin', 'VIC', 'AU', 491, ' 3756 Chintin Victoria'),
8160
+ (7797, '3757', 'Eden Park', 'VIC', 'AU', 491, ' 3757 Eden Park Victoria'),
8161
+ (7798, '3757', 'Humevale', 'VIC', 'AU', 491, ' 3757 Humevale Victoria'),
8162
+ (7799, '3757', 'Kinglake Central', 'VIC', 'AU', 491, ' 3757 Kinglake Central Victoria'),
8163
+ (7800, '3757', 'Kinglake West', 'VIC', 'AU', 491, ' 3757 Kinglake West Victoria'),
8164
+ (7801, '3757', 'Pheasant Creek', 'VIC', 'AU', 491, ' 3757 Pheasant Creek Victoria'),
8165
+ (7802, '3757', 'Whittlesea', 'VIC', 'AU', 491, ' 3757 Whittlesea Victoria'),
8166
+ (7803, '3758', 'Wandong', 'VIC', 'AU', 491, ' 3758 Wandong Victoria'),
8167
+ (7804, '3758', 'Heathcote Junction', 'VIC', 'AU', 491, ' 3758 Heathcote Junction Victoria'),
8168
+ (7805, '3759', 'Panton Hill', 'VIC', 'AU', 491, ' 3759 Panton Hill Victoria'),
8169
+ (7806, '3760', 'Smiths Gully', 'VIC', 'AU', 491, ' 3760 Smiths Gully Victoria'),
8170
+ (7807, '3761', 'St Andrews', 'VIC', 'AU', 491, ' 3761 St Andrews Victoria'),
8171
+ (7808, '3762', 'Bylands', 'VIC', 'AU', 491, ' 3762 Bylands Victoria'),
8172
+ (7809, '3763', 'Kinglake', 'VIC', 'AU', 491, ' 3763 Kinglake Victoria'),
8173
+ (7810, '3764', 'Kilmore', 'VIC', 'AU', 491, ' 3764 Kilmore Victoria'),
8174
+ (7811, '3764', 'Kilmore East', 'VIC', 'AU', 491, ' 3764 Kilmore East Victoria'),
8175
+ (7812, '3764', 'Moranding', 'VIC', 'AU', 491, ' 3764 Moranding Victoria'),
8176
+ (7813, '3764', 'High Camp', 'VIC', 'AU', 491, ' 3764 High Camp Victoria'),
8177
+ (7814, '3764', 'Glenaroua', 'VIC', 'AU', 491, ' 3764 Glenaroua Victoria'),
8178
+ (7815, '3764', 'Forbes', 'VIC', 'AU', 491, ' 3764 Forbes Victoria'),
8179
+ (7816, '3764', 'Tantaraboo', 'VIC', 'AU', 491, ' 3764 Tantaraboo Victoria'),
8180
+ (7817, '3764', 'Willowmavin', 'VIC', 'AU', 491, ' 3764 Willowmavin Victoria'),
8181
+ (7818, '3765', 'Montrose', 'VIC', 'AU', 491, ' 3765 Montrose Victoria'),
8182
+ (7819, '3766', 'Kalorama', 'VIC', 'AU', 491, ' 3766 Kalorama Victoria'),
8183
+ (7820, '3767', 'Mount Dandenong', 'VIC', 'AU', 491, ' 3767 Mount Dandenong Victoria'),
8184
+ (7821, '3770', 'Gruyere', 'VIC', 'AU', 491, ' 3770 Gruyere Victoria'),
8185
+ (7822, '3770', 'Yering', 'VIC', 'AU', 491, ' 3770 Yering Victoria'),
8186
+ (7823, '3770', 'Coldstream', 'VIC', 'AU', 491, ' 3770 Coldstream Victoria'),
8187
+ (7824, '3775', 'Christmas Hills', 'VIC', 'AU', 491, ' 3775 Christmas Hills Victoria'),
8188
+ (7825, '3775', 'Dixons Creek', 'VIC', 'AU', 491, ' 3775 Dixons Creek Victoria'),
8189
+ (7826, '3775', 'Yarra Glen', 'VIC', 'AU', 491, ' 3775 Yarra Glen Victoria'),
8190
+ (7827, '3775', 'Steels Creek', 'VIC', 'AU', 491, ' 3775 Steels Creek Victoria'),
8191
+ (7828, '3775', 'Tarrawarra', 'VIC', 'AU', 491, ' 3775 Tarrawarra Victoria'),
8192
+ (7829, '3777', 'Toolangi', 'VIC', 'AU', 491, ' 3777 Toolangi Victoria'),
8193
+ (7830, '3777', 'Healesville', 'VIC', 'AU', 491, ' 3777 Healesville Victoria'),
8194
+ (7831, '3777', 'Healesville Main Street', 'VIC', 'AU', 491, ' 3777 Healesville Main Street Victoria'),
8195
+ (7832, '3777', 'Healesville Post Shop', 'VIC', 'AU', 491, ' 3777 Healesville Post Shop Victoria'),
8196
+ (7833, '3777', 'Mount Toolebewong', 'VIC', 'AU', 491, ' 3777 Mount Toolebewong Victoria'),
8197
+ (7834, '3777', 'Castella', 'VIC', 'AU', 491, ' 3777 Castella Victoria'),
8198
+ (7835, '3777', 'Chum Creek', 'VIC', 'AU', 491, ' 3777 Chum Creek Victoria'),
8199
+ (7836, '3777', 'Badger Creek', 'VIC', 'AU', 491, ' 3777 Badger Creek Victoria'),
8200
+ (7837, '3778', 'Narbethong', 'VIC', 'AU', 491, ' 3778 Narbethong Victoria'),
8201
+ (7838, '3778', 'Fernshaw', 'VIC', 'AU', 491, ' 3778 Fernshaw Victoria'),
8202
+ (7839, '3779', 'Marysville', 'VIC', 'AU', 491, ' 3779 Marysville Victoria'),
8203
+ (7840, '3779', 'Cambarville', 'VIC', 'AU', 491, ' 3779 Cambarville Victoria'),
8204
+ (7841, '3781', 'Cockatoo', 'VIC', 'AU', 491, ' 3781 Cockatoo Victoria'),
8205
+ (7842, '3781', 'Nangana', 'VIC', 'AU', 491, ' 3781 Nangana Victoria'),
8206
+ (7843, '3781', 'Mount Burnett', 'VIC', 'AU', 491, ' 3781 Mount Burnett Victoria'),
8207
+ (7844, '3782', 'Emerald', 'VIC', 'AU', 491, ' 3782 Emerald Victoria'),
8208
+ (7845, '3782', 'Clematis', 'VIC', 'AU', 491, ' 3782 Clematis Victoria'),
8209
+ (7846, '3782', 'Macclesfield', 'VIC', 'AU', 491, ' 3782 Macclesfield Victoria'),
8210
+ (7847, '3782', 'Avonsleigh', 'VIC', 'AU', 491, ' 3782 Avonsleigh Victoria'),
8211
+ (7848, '3783', 'Gembrook', 'VIC', 'AU', 491, ' 3783 Gembrook Victoria'),
8212
+ (7849, '3785', 'Tremont', 'VIC', 'AU', 491, ' 3785 Tremont Victoria'),
8213
+ (7850, '3786', 'Ferny Creek', 'VIC', 'AU', 491, ' 3786 Ferny Creek Victoria'),
8214
+ (7851, '3787', 'Sassafras', 'VIC', 'AU', 491, ' 3787 Sassafras Victoria'),
8215
+ (7852, '3787', 'Sassafras Gully', 'VIC', 'AU', 491, ' 3787 Sassafras Gully Victoria'),
8216
+ (7853, '3788', 'Olinda', 'VIC', 'AU', 491, ' 3788 Olinda Victoria'),
8217
+ (7854, '3789', 'Sherbrooke', 'VIC', 'AU', 491, ' 3789 Sherbrooke Victoria'),
8218
+ (7855, '3791', 'Kallista', 'VIC', 'AU', 491, ' 3791 Kallista Victoria'),
8219
+ (7856, '3792', 'The Patch', 'VIC', 'AU', 491, ' 3792 The Patch Victoria'),
8220
+ (7857, '3793', 'Monbulk', 'VIC', 'AU', 491, ' 3793 Monbulk Victoria'),
8221
+ (7858, '3795', 'Silvan', 'VIC', 'AU', 491, ' 3795 Silvan Victoria'),
8222
+ (7859, '3796', 'Mount Evelyn', 'VIC', 'AU', 491, ' 3796 Mount Evelyn Victoria'),
8223
+ (7860, '3797', 'Powelltown', 'VIC', 'AU', 491, ' 3797 Powelltown Victoria'),
8224
+ (7861, '3797', 'Gilderoy', 'VIC', 'AU', 491, ' 3797 Gilderoy Victoria'),
8225
+ (7862, '3797', 'Gladysdale', 'VIC', 'AU', 491, ' 3797 Gladysdale Victoria'),
8226
+ (7863, '3797', 'Yarra Junction', 'VIC', 'AU', 491, ' 3797 Yarra Junction Victoria'),
8227
+ (7864, '3797', 'Three Bridges', 'VIC', 'AU', 491, ' 3797 Three Bridges Victoria'),
8228
+ (7865, '3799', 'Warburton', 'VIC', 'AU', 491, ' 3799 Warburton Victoria'),
8229
+ (7866, '3799', 'Wesburn', 'VIC', 'AU', 491, ' 3799 Wesburn Victoria'),
8230
+ (7867, '3799', 'Mcmahons Creek', 'VIC', 'AU', 491, ' 3799 Mcmahons Creek Victoria'),
8231
+ (7868, '3799', 'Reefton', 'VIC', 'AU', 491, ' 3799 Reefton Victoria'),
8232
+ (7869, '3799', 'Millgrove', 'VIC', 'AU', 491, ' 3799 Millgrove Victoria'),
8233
+ (7870, '3799', 'East Warburton', 'VIC', 'AU', 491, ' 3799 East Warburton Victoria'),
8234
+ (7871, '3799', 'Big Pats Creek', 'VIC', 'AU', 491, ' 3799 Big Pats Creek Victoria'),
8235
+ (7872, '3800', 'Monash University', 'VIC', 'AU', 491, ' 3800 Monash University Victoria'),
8236
+ (7873, '3802', 'Endeavour Hills', 'VIC', 'AU', 491, ' 3802 Endeavour Hills Victoria'),
8237
+ (7874, '3803', 'Hallam', 'VIC', 'AU', 491, ' 3803 Hallam Victoria'),
8238
+ (7875, '3804', 'Narre Warren East', 'VIC', 'AU', 491, ' 3804 Narre Warren East Victoria'),
8239
+ (7876, '3804', 'Narre Warren North', 'VIC', 'AU', 491, ' 3804 Narre Warren North Victoria'),
8240
+ (7877, '3805', 'Narre Warren South', 'VIC', 'AU', 491, ' 3805 Narre Warren South Victoria'),
8241
+ (7878, '3805', 'Narre Warren', 'VIC', 'AU', 491, ' 3805 Narre Warren Victoria'),
8242
+ (7879, '3805', 'Fountain Gate', 'VIC', 'AU', 491, ' 3805 Fountain Gate Victoria'),
8243
+ (7880, '3806', 'Harkaway', 'VIC', 'AU', 491, ' 3806 Harkaway Victoria'),
8244
+ (7881, '3806', 'Berwick', 'VIC', 'AU', 491, ' 3806 Berwick Victoria'),
8245
+ (7882, '3807', 'Beaconsfield', 'VIC', 'AU', 491, ' 3807 Beaconsfield Victoria'),
8246
+ (7883, '3807', 'Guys Hill', 'VIC', 'AU', 491, ' 3807 Guys Hill Victoria'),
8247
+ (7884, '3808', 'Beaconsfield Upper', 'VIC', 'AU', 491, ' 3808 Beaconsfield Upper Victoria'),
8248
+ (7885, '3808', 'Dewhurst', 'VIC', 'AU', 491, ' 3808 Dewhurst Victoria'),
8249
+ (7886, '3809', 'Officer', 'VIC', 'AU', 491, ' 3809 Officer Victoria'),
8250
+ (7887, '3809', 'Officer South', 'VIC', 'AU', 491, ' 3809 Officer South Victoria'),
8251
+ (7888, '3810', 'Pakenham', 'VIC', 'AU', 491, ' 3810 Pakenham Victoria'),
8252
+ (7889, '3810', 'Pakenham South', 'VIC', 'AU', 491, ' 3810 Pakenham South Victoria'),
8253
+ (7890, '3810', 'Pakenham Upper', 'VIC', 'AU', 491, ' 3810 Pakenham Upper Victoria'),
8254
+ (7891, '3810', 'Rythdale', 'VIC', 'AU', 491, ' 3810 Rythdale Victoria'),
8255
+ (7892, '3812', 'Nar Nar Goon', 'VIC', 'AU', 491, ' 3812 Nar Nar Goon Victoria'),
8256
+ (7893, '3812', 'Nar Nar Goon North', 'VIC', 'AU', 491, ' 3812 Nar Nar Goon North Victoria'),
8257
+ (7894, '3812', 'Maryknoll', 'VIC', 'AU', 491, ' 3812 Maryknoll Victoria'),
8258
+ (7895, '3813', 'Tynong', 'VIC', 'AU', 491, ' 3813 Tynong Victoria'),
8259
+ (7896, '3813', 'Tynong North', 'VIC', 'AU', 491, ' 3813 Tynong North Victoria'),
8260
+ (7897, '3814', 'Vervale', 'VIC', 'AU', 491, ' 3814 Vervale Victoria'),
8261
+ (7898, '3814', 'Cora Lynn', 'VIC', 'AU', 491, ' 3814 Cora Lynn Victoria'),
8262
+ (7899, '3814', 'Garfield', 'VIC', 'AU', 491, ' 3814 Garfield Victoria'),
8263
+ (7900, '3814', 'Garfield North', 'VIC', 'AU', 491, ' 3814 Garfield North Victoria'),
8264
+ (7901, '3815', 'Iona', 'VIC', 'AU', 491, ' 3815 Iona Victoria'),
8265
+ (7902, '3815', 'Bunyip', 'VIC', 'AU', 491, ' 3815 Bunyip Victoria'),
8266
+ (7903, '3815', 'Bunyip North', 'VIC', 'AU', 491, ' 3815 Bunyip North Victoria'),
8267
+ (7904, '3815', 'Tonimbuk', 'VIC', 'AU', 491, ' 3815 Tonimbuk Victoria'),
8268
+ (7905, '3816', 'Modella', 'VIC', 'AU', 491, ' 3816 Modella Victoria'),
8269
+ (7906, '3816', 'Longwarry', 'VIC', 'AU', 491, ' 3816 Longwarry Victoria'),
8270
+ (7907, '3816', 'Longwarry North', 'VIC', 'AU', 491, ' 3816 Longwarry North Victoria'),
8271
+ (7908, '3816', 'Labertouche', 'VIC', 'AU', 491, ' 3816 Labertouche Victoria'),
8272
+ (7909, '3818', 'Athlone', 'VIC', 'AU', 491, ' 3818 Athlone Victoria'),
8273
+ (7910, '3818', 'Ripplebrook', 'VIC', 'AU', 491, ' 3818 Ripplebrook Victoria'),
8274
+ (7911, '3818', 'Drouin', 'VIC', 'AU', 491, ' 3818 Drouin Victoria'),
8275
+ (7912, '3818', 'Drouin East', 'VIC', 'AU', 491, ' 3818 Drouin East Victoria'),
8276
+ (7913, '3818', 'Drouin South', 'VIC', 'AU', 491, ' 3818 Drouin South Victoria'),
8277
+ (7914, '3818', 'Drouin West', 'VIC', 'AU', 491, ' 3818 Drouin West Victoria'),
8278
+ (7915, '3818', 'Jindivick', 'VIC', 'AU', 491, ' 3818 Jindivick Victoria'),
8279
+ (7916, '3818', 'Hallora', 'VIC', 'AU', 491, ' 3818 Hallora Victoria'),
8280
+ (7917, '3820', 'Bona Vista', 'VIC', 'AU', 491, ' 3820 Bona Vista Victoria'),
8281
+ (7918, '3820', 'Lillico', 'VIC', 'AU', 491, ' 3820 Lillico Victoria'),
8282
+ (7919, '3820', 'Warragul', 'VIC', 'AU', 491, ' 3820 Warragul Victoria'),
8283
+ (7920, '3821', 'Buln Buln', 'VIC', 'AU', 491, ' 3821 Buln Buln Victoria'),
8284
+ (7921, '3821', 'Buln Buln East', 'VIC', 'AU', 491, ' 3821 Buln Buln East Victoria'),
8285
+ (7922, '3821', 'Brandy Creek', 'VIC', 'AU', 491, ' 3821 Brandy Creek Victoria'),
8286
+ (7923, '3821', 'Bravington', 'VIC', 'AU', 491, ' 3821 Bravington Victoria'),
8287
+ (7924, '3821', 'Crossover', 'VIC', 'AU', 491, ' 3821 Crossover Victoria'),
8288
+ (7925, '3821', 'Ellinbank', 'VIC', 'AU', 491, ' 3821 Ellinbank Victoria'),
8289
+ (7926, '3821', 'Ferndale', 'VIC', 'AU', 491, ' 3821 Ferndale Victoria'),
8290
+ (7927, '3821', 'Warragul South', 'VIC', 'AU', 491, ' 3821 Warragul South Victoria'),
8291
+ (7928, '3821', 'Warragul West', 'VIC', 'AU', 491, ' 3821 Warragul West Victoria'),
8292
+ (7929, '3821', 'Torwood', 'VIC', 'AU', 491, ' 3821 Torwood Victoria'),
8293
+ (7930, '3821', 'Tetoora Road', 'VIC', 'AU', 491, ' 3821 Tetoora Road Victoria'),
8294
+ (7931, '3821', 'Lardner', 'VIC', 'AU', 491, ' 3821 Lardner Victoria'),
8295
+ (7932, '3821', 'Nilma', 'VIC', 'AU', 491, ' 3821 Nilma Victoria'),
8296
+ (7933, '3821', 'Nilma North', 'VIC', 'AU', 491, ' 3821 Nilma North Victoria'),
8297
+ (7934, '3821', 'Seaview', 'VIC', 'AU', 491, ' 3821 Seaview Victoria'),
8298
+ (7935, '3821', 'Shady Creek', 'VIC', 'AU', 491, ' 3821 Shady Creek Victoria'),
8299
+ (7936, '3821', 'Rokeby', 'VIC', 'AU', 491, ' 3821 Rokeby Victoria'),
8300
+ (7937, '3822', 'Darnum', 'VIC', 'AU', 491, ' 3822 Darnum Victoria'),
8301
+ (7938, '3822', 'Gainsborough', 'VIC', 'AU', 491, ' 3822 Gainsborough Victoria'),
8302
+ (7939, '3822', 'Cloverlea', 'VIC', 'AU', 491, ' 3822 Cloverlea Victoria'),
8303
+ (7940, '3823', 'Allambee', 'VIC', 'AU', 491, ' 3823 Allambee Victoria'),
8304
+ (7941, '3823', 'Yarragon', 'VIC', 'AU', 491, ' 3823 Yarragon Victoria'),
8305
+ (7942, '3823', 'Yarragon South', 'VIC', 'AU', 491, ' 3823 Yarragon South Victoria'),
8306
+ (7943, '3824', 'Childers', 'VIC', 'AU', 491, ' 3824 Childers Victoria'),
8307
+ (7944, '3824', 'Narracan', 'VIC', 'AU', 491, ' 3824 Narracan Victoria'),
8308
+ (7945, '3824', 'Trafalgar', 'VIC', 'AU', 491, ' 3824 Trafalgar Victoria'),
8309
+ (7946, '3824', 'Trafalgar East', 'VIC', 'AU', 491, ' 3824 Trafalgar East Victoria'),
8310
+ (7947, '3824', 'Trafalgar South', 'VIC', 'AU', 491, ' 3824 Trafalgar South Victoria'),
8311
+ (7948, '3824', 'Thorpdale South', 'VIC', 'AU', 491, ' 3824 Thorpdale South Victoria'),
8312
+ (7949, '3825', 'Amor', 'VIC', 'AU', 491, ' 3825 Amor Victoria'),
8313
+ (7950, '3825', 'Aberfeldy', 'VIC', 'AU', 491, ' 3825 Aberfeldy Victoria'),
8314
+ (7951, '3825', 'Willow Grove', 'VIC', 'AU', 491, ' 3825 Willow Grove Victoria'),
8315
+ (7952, '3825', 'Yallourn', 'VIC', 'AU', 491, ' 3825 Yallourn Victoria'),
8316
+ (7953, '3825', 'Yallourn North', 'VIC', 'AU', 491, ' 3825 Yallourn North Victoria'),
8317
+ (7954, '3825', 'Westbury', 'VIC', 'AU', 491, ' 3825 Westbury Victoria'),
8318
+ (7955, '3825', 'Toombon', 'VIC', 'AU', 491, ' 3825 Toombon Victoria'),
8319
+ (7956, '3825', 'Walhalla', 'VIC', 'AU', 491, ' 3825 Walhalla Victoria'),
8320
+ (7957, '3825', 'Walhalla East', 'VIC', 'AU', 491, ' 3825 Walhalla East Victoria'),
8321
+ (7958, '3825', 'Thomson', 'VIC', 'AU', 491, ' 3825 Thomson Victoria'),
8322
+ (7959, '3825', 'Thalloo', 'VIC', 'AU', 491, ' 3825 Thalloo Victoria'),
8323
+ (7960, '3825', 'Tanjil', 'VIC', 'AU', 491, ' 3825 Tanjil Victoria'),
8324
+ (7961, '3825', 'Tanjil South', 'VIC', 'AU', 491, ' 3825 Tanjil South Victoria'),
8325
+ (7962, '3825', 'Rawson', 'VIC', 'AU', 491, ' 3825 Rawson Victoria'),
8326
+ (7963, '3825', 'Boola', 'VIC', 'AU', 491, ' 3825 Boola Victoria'),
8327
+ (7964, '3825', 'Caringal', 'VIC', 'AU', 491, ' 3825 Caringal Victoria'),
8328
+ (7965, '3825', 'Coopers Creek', 'VIC', 'AU', 491, ' 3825 Coopers Creek Victoria'),
8329
+ (7966, '3825', 'Coalville', 'VIC', 'AU', 491, ' 3825 Coalville Victoria'),
8330
+ (7967, '3825', 'Hernes Oak', 'VIC', 'AU', 491, ' 3825 Hernes Oak Victoria'),
8331
+ (7968, '3825', 'Hill End', 'VIC', 'AU', 491, ' 3825 Hill End Victoria'),
8332
+ (7969, '3825', 'Jericho', 'VIC', 'AU', 491, ' 3825 Jericho Victoria'),
8333
+ (7970, '3825', 'Jacob Creek', 'VIC', 'AU', 491, ' 3825 Jacob Creek Victoria'),
8334
+ (7971, '3825', 'Erica', 'VIC', 'AU', 491, ' 3825 Erica Victoria'),
8335
+ (7972, '3825', 'Fumina', 'VIC', 'AU', 491, ' 3825 Fumina Victoria'),
8336
+ (7973, '3825', 'Fumina South', 'VIC', 'AU', 491, ' 3825 Fumina South Victoria'),
8337
+ (7974, '3825', 'Moe', 'VIC', 'AU', 491, ' 3825 Moe Victoria'),
8338
+ (7975, '3825', 'Moe South', 'VIC', 'AU', 491, ' 3825 Moe South Victoria'),
8339
+ (7976, '3825', 'Moondarra', 'VIC', 'AU', 491, ' 3825 Moondarra Victoria'),
8340
+ (7977, '3825', 'Newborough', 'VIC', 'AU', 491, ' 3825 Newborough Victoria'),
8341
+ (7978, '3825', 'Newborough East', 'VIC', 'AU', 491, ' 3825 Newborough East Victoria'),
8342
+ (7979, '3831', 'Neerim', 'VIC', 'AU', 491, ' 3831 Neerim Victoria'),
8343
+ (7980, '3831', 'Neerim East', 'VIC', 'AU', 491, ' 3831 Neerim East Victoria'),
8344
+ (7981, '3831', 'Neerim South', 'VIC', 'AU', 491, ' 3831 Neerim South Victoria'),
8345
+ (7982, '3832', 'Neerim Junction', 'VIC', 'AU', 491, ' 3832 Neerim Junction Victoria'),
8346
+ (7983, '3832', 'Neerim North', 'VIC', 'AU', 491, ' 3832 Neerim North Victoria'),
8347
+ (7984, '3832', 'Nayook', 'VIC', 'AU', 491, ' 3832 Nayook Victoria'),
8348
+ (7985, '3833', 'Noojee', 'VIC', 'AU', 491, ' 3833 Noojee Victoria'),
8349
+ (7986, '3833', 'Piedmont', 'VIC', 'AU', 491, ' 3833 Piedmont Victoria'),
8350
+ (7987, '3833', 'Loch Valley', 'VIC', 'AU', 491, ' 3833 Loch Valley Victoria'),
8351
+ (7988, '3833', 'Toorongo', 'VIC', 'AU', 491, ' 3833 Toorongo Victoria'),
8352
+ (7989, '3833', 'Vesper', 'VIC', 'AU', 491, ' 3833 Vesper Victoria'),
8353
+ (7990, '3833', 'Tanjil Bren', 'VIC', 'AU', 491, ' 3833 Tanjil Bren Victoria'),
8354
+ (7991, '3833', 'Ada', 'VIC', 'AU', 491, ' 3833 Ada Victoria'),
8355
+ (7992, '3833', 'Baw Baw', 'VIC', 'AU', 491, ' 3833 Baw Baw Victoria'),
8356
+ (7993, '3833', 'Baw Baw Village', 'VIC', 'AU', 491, ' 3833 Baw Baw Village Victoria'),
8357
+ (7994, '3833', 'Icy Creek', 'VIC', 'AU', 491, ' 3833 Icy Creek Victoria'),
8358
+ (7995, '3833', 'Gentle Annie', 'VIC', 'AU', 491, ' 3833 Gentle Annie Victoria'),
8359
+ (7996, '3835', 'Thorpdale', 'VIC', 'AU', 491, ' 3835 Thorpdale Victoria'),
8360
+ (7997, '3840', 'Morwell', 'VIC', 'AU', 491, ' 3840 Morwell Victoria'),
8361
+ (7998, '3840', 'Morwell East', 'VIC', 'AU', 491, ' 3840 Morwell East Victoria'),
8362
+ (7999, '3840', 'Morwell Upper', 'VIC', 'AU', 491, ' 3840 Morwell Upper Victoria'),
8363
+ (8000, '3840', 'Jeeralang', 'VIC', 'AU', 491, ' 3840 Jeeralang Victoria'),
8364
+ (8001, '3840', 'Jeeralang Junction', 'VIC', 'AU', 491, ' 3840 Jeeralang Junction Victoria'),
8365
+ (8002, '3840', 'Hazelwood', 'VIC', 'AU', 491, ' 3840 Hazelwood Victoria'),
8366
+ (8003, '3840', 'Hazelwood North', 'VIC', 'AU', 491, ' 3840 Hazelwood North Victoria'),
8367
+ (8004, '3840', 'Hazelwood South', 'VIC', 'AU', 491, ' 3840 Hazelwood South Victoria'),
8368
+ (8005, '3840', 'Driffield', 'VIC', 'AU', 491, ' 3840 Driffield Victoria'),
8369
+ (8006, '3840', 'Maryvale', 'VIC', 'AU', 491, ' 3840 Maryvale Victoria'),
8370
+ (8007, '3840', 'Mid Valley', 'VIC', 'AU', 491, ' 3840 Mid Valley Victoria'),
8371
+ (8008, '3841', 'Gippsland', 'VIC', 'AU', 491, ' 3841 Gippsland Victoria'),
8372
+ (8009, '3842', 'Churchill', 'VIC', 'AU', 491, ' 3842 Churchill Victoria'),
8373
+ (8010, '3844', 'Carrajung', 'VIC', 'AU', 491, ' 3844 Carrajung Victoria'),
8374
+ (8011, '3844', 'Carrajung Lower', 'VIC', 'AU', 491, ' 3844 Carrajung Lower Victoria'),
8375
+ (8012, '3844', 'Carrajung South', 'VIC', 'AU', 491, ' 3844 Carrajung South Victoria'),
8376
+ (8013, '3844', 'Blackwarry', 'VIC', 'AU', 491, ' 3844 Blackwarry Victoria'),
8377
+ (8014, '3844', 'Callignee', 'VIC', 'AU', 491, ' 3844 Callignee Victoria'),
8378
+ (8015, '3844', 'Callignee North', 'VIC', 'AU', 491, ' 3844 Callignee North Victoria'),
8379
+ (8016, '3844', 'Callignee South', 'VIC', 'AU', 491, ' 3844 Callignee South Victoria'),
8380
+ (8017, '3844', 'Flynn', 'VIC', 'AU', 491, ' 3844 Flynn Victoria'),
8381
+ (8018, '3844', 'Flynns Creek', 'VIC', 'AU', 491, ' 3844 Flynns Creek Victoria'),
8382
+ (8019, '3844', 'Koornalla', 'VIC', 'AU', 491, ' 3844 Koornalla Victoria'),
8383
+ (8020, '3844', 'Loy Yang', 'VIC', 'AU', 491, ' 3844 Loy Yang Victoria'),
8384
+ (8021, '3844', 'Mount Tassie', 'VIC', 'AU', 491, ' 3844 Mount Tassie Victoria'),
8385
+ (8022, '3844', 'Traralgon', 'VIC', 'AU', 491, ' 3844 Traralgon Victoria'),
8386
+ (8023, '3844', 'Traralgon East', 'VIC', 'AU', 491, ' 3844 Traralgon East Victoria'),
8387
+ (8024, '3844', 'Traralgon South', 'VIC', 'AU', 491, ' 3844 Traralgon South Victoria'),
8388
+ (8025, '3844', 'Tyers', 'VIC', 'AU', 491, ' 3844 Tyers Victoria'),
8389
+ (8026, '3847', 'Hiamdale', 'VIC', 'AU', 491, ' 3847 Hiamdale Victoria'),
8390
+ (8027, '3847', 'Willung', 'VIC', 'AU', 491, ' 3847 Willung Victoria'),
8391
+ (8028, '3847', 'Willung South', 'VIC', 'AU', 491, ' 3847 Willung South Victoria'),
8392
+ (8029, '3847', 'Rosedale', 'VIC', 'AU', 491, ' 3847 Rosedale Victoria'),
8393
+ (8030, '3847', 'Nambrok', 'VIC', 'AU', 491, ' 3847 Nambrok Victoria'),
8394
+ (8031, '3850', 'Sale', 'VIC', 'AU', 491, ' 3850 Sale Victoria'),
8395
+ (8032, '3850', 'Sale North', 'VIC', 'AU', 491, ' 3850 Sale North Victoria'),
8396
+ (8033, '3850', 'Wurruk', 'VIC', 'AU', 491, ' 3850 Wurruk Victoria'),
8397
+ (8034, '3851', 'Airly', 'VIC', 'AU', 491, ' 3851 Airly Victoria'),
8398
+ (8035, '3851', 'Giffard', 'VIC', 'AU', 491, ' 3851 Giffard Victoria'),
8399
+ (8036, '3851', 'Giffard West', 'VIC', 'AU', 491, ' 3851 Giffard West Victoria'),
8400
+ (8037, '3851', 'Golden Beach', 'VIC', 'AU', 491, ' 3851 Golden Beach Victoria'),
8401
+ (8038, '3851', 'Glomar Beach', 'VIC', 'AU', 491, ' 3851 Glomar Beach Victoria'),
8402
+ (8039, '3851', 'Fulham', 'VIC', 'AU', 491, ' 3851 Fulham Victoria'),
8403
+ (8040, '3851', 'Darriman', 'VIC', 'AU', 491, ' 3851 Darriman Victoria'),
8404
+ (8041, '3851', 'Flamingo Beach', 'VIC', 'AU', 491, ' 3851 Flamingo Beach Victoria'),
8405
+ (8042, '3851', 'Dutson', 'VIC', 'AU', 491, ' 3851 Dutson Victoria'),
8406
+ (8043, '3851', 'Dutson Downs', 'VIC', 'AU', 491, ' 3851 Dutson Downs Victoria'),
8407
+ (8044, '3851', 'Clydebank', 'VIC', 'AU', 491, ' 3851 Clydebank Victoria'),
8408
+ (8045, '3851', 'Cobains', 'VIC', 'AU', 491, ' 3851 Cobains Victoria'),
8409
+ (8046, '3851', 'Bundalaguah', 'VIC', 'AU', 491, ' 3851 Bundalaguah Victoria'),
8410
+ (8047, '3851', 'Seacombe', 'VIC', 'AU', 491, ' 3851 Seacombe Victoria'),
8411
+ (8048, '3851', 'Seaspray', 'VIC', 'AU', 491, ' 3851 Seaspray Victoria'),
8412
+ (8049, '3851', 'Somerton Park', 'VIC', 'AU', 491, ' 3851 Somerton Park Victoria'),
8413
+ (8050, '3851', 'Pearsondale', 'VIC', 'AU', 491, ' 3851 Pearsondale Victoria'),
8414
+ (8051, '3851', 'Paradise Beach', 'VIC', 'AU', 491, ' 3851 Paradise Beach Victoria'),
8415
+ (8052, '3851', 'Myrtlebank', 'VIC', 'AU', 491, ' 3851 Myrtlebank Victoria'),
8416
+ (8053, '3851', 'Loch Sport', 'VIC', 'AU', 491, ' 3851 Loch Sport Victoria'),
8417
+ (8054, '3851', 'Longford', 'VIC', 'AU', 491, ' 3851 Longford Victoria'),
8418
+ (8055, '3851', 'Lake Wellington', 'VIC', 'AU', 491, ' 3851 Lake Wellington Victoria'),
8419
+ (8056, '3851', 'Kilmany', 'VIC', 'AU', 491, ' 3851 Kilmany Victoria'),
8420
+ (8057, '3851', 'Montgomery', 'VIC', 'AU', 491, ' 3851 Montgomery Victoria'),
8421
+ (8058, '3851', 'The Heart', 'VIC', 'AU', 491, ' 3851 The Heart Victoria'),
8422
+ (8059, '3851', 'The Honeysuckles', 'VIC', 'AU', 491, ' 3851 The Honeysuckles Victoria'),
8423
+ (8060, '3851', 'Stradbroke', 'VIC', 'AU', 491, ' 3851 Stradbroke Victoria'),
8424
+ (8061, '3852', 'Sale East Raaf', 'VIC', 'AU', 491, ' 3852 Sale East Raaf Victoria'),
8425
+ (8062, '3852', 'East Sale', 'VIC', 'AU', 491, ' 3852 East Sale Victoria'),
8426
+ (8063, '3853', 'Sale', 'VIC', 'AU', 491, ' 3853 Sale Victoria'),
8427
+ (8064, '3854', 'Glengarry', 'VIC', 'AU', 491, ' 3854 Glengarry Victoria'),
8428
+ (8065, '3854', 'Glengarry North', 'VIC', 'AU', 491, ' 3854 Glengarry North Victoria'),
8429
+ (8066, '3854', 'Glengarry West', 'VIC', 'AU', 491, ' 3854 Glengarry West Victoria'),
8430
+ (8067, '3856', 'Toongabbie', 'VIC', 'AU', 491, ' 3856 Toongabbie Victoria'),
8431
+ (8068, '3857', 'Cowwarr', 'VIC', 'AU', 491, ' 3857 Cowwarr Victoria'),
8432
+ (8069, '3858', 'Crookayan', 'VIC', 'AU', 491, ' 3858 Crookayan Victoria'),
8433
+ (8070, '3858', 'Buragwonduc', 'VIC', 'AU', 491, ' 3858 Buragwonduc Victoria'),
8434
+ (8071, '3858', 'Dawson', 'VIC', 'AU', 491, ' 3858 Dawson Victoria'),
8435
+ (8072, '3858', 'Denison', 'VIC', 'AU', 491, ' 3858 Denison Victoria'),
8436
+ (8073, '3858', 'Glenmaggie', 'VIC', 'AU', 491, ' 3858 Glenmaggie Victoria'),
8437
+ (8074, '3858', 'Glenfalloch', 'VIC', 'AU', 491, ' 3858 Glenfalloch Victoria'),
8438
+ (8075, '3858', 'Gillum', 'VIC', 'AU', 491, ' 3858 Gillum Victoria'),
8439
+ (8076, '3858', 'Heyfield', 'VIC', 'AU', 491, ' 3858 Heyfield Victoria'),
8440
+ (8077, '3858', 'Howitt Plains', 'VIC', 'AU', 491, ' 3858 Howitt Plains Victoria'),
8441
+ (8078, '3858', 'Billabong', 'VIC', 'AU', 491, ' 3858 Billabong Victoria'),
8442
+ (8079, '3858', 'Arbuckle', 'VIC', 'AU', 491, ' 3858 Arbuckle Victoria'),
8443
+ (8080, '3858', 'Worrowing', 'VIC', 'AU', 491, ' 3858 Worrowing Victoria'),
8444
+ (8081, '3858', 'Winnindoo', 'VIC', 'AU', 491, ' 3858 Winnindoo Victoria'),
8445
+ (8082, '3858', 'Yangoura', 'VIC', 'AU', 491, ' 3858 Yangoura Victoria'),
8446
+ (8083, '3858', 'Tamboritha', 'VIC', 'AU', 491, ' 3858 Tamboritha Victoria'),
8447
+ (8084, '3858', 'Seaton', 'VIC', 'AU', 491, ' 3858 Seaton Victoria'),
8448
+ (8085, '3858', 'Sargood', 'VIC', 'AU', 491, ' 3858 Sargood Victoria'),
8449
+ (8086, '3858', 'Reynard', 'VIC', 'AU', 491, ' 3858 Reynard Victoria'),
8450
+ (8087, '3858', 'Licola', 'VIC', 'AU', 491, ' 3858 Licola Victoria'),
8451
+ (8088, '3858', 'Licola North', 'VIC', 'AU', 491, ' 3858 Licola North Victoria'),
8452
+ (8089, '3859', 'Maffra West Upper', 'VIC', 'AU', 491, ' 3859 Maffra West Upper Victoria'),
8453
+ (8090, '3859', 'Newry', 'VIC', 'AU', 491, ' 3859 Newry Victoria'),
8454
+ (8091, '3859', 'Tinamba', 'VIC', 'AU', 491, ' 3859 Tinamba Victoria'),
8455
+ (8092, '3859', 'Tinamba West', 'VIC', 'AU', 491, ' 3859 Tinamba West Victoria'),
8456
+ (8093, '3860', 'Toolome', 'VIC', 'AU', 491, ' 3860 Toolome Victoria'),
8457
+ (8094, '3860', 'Valencia Creek', 'VIC', 'AU', 491, ' 3860 Valencia Creek Victoria'),
8458
+ (8095, '3860', 'Nap Nap Marra', 'VIC', 'AU', 491, ' 3860 Nap Nap Marra Victoria'),
8459
+ (8096, '3860', 'Riverslea', 'VIC', 'AU', 491, ' 3860 Riverslea Victoria'),
8460
+ (8097, '3860', 'Moroka', 'VIC', 'AU', 491, ' 3860 Moroka Victoria'),
8461
+ (8098, '3860', 'Monomak', 'VIC', 'AU', 491, ' 3860 Monomak Victoria'),
8462
+ (8099, '3860', 'Maffra', 'VIC', 'AU', 491, ' 3860 Maffra Victoria'),
8463
+ (8100, '3860', 'Koorool', 'VIC', 'AU', 491, ' 3860 Koorool Victoria'),
8464
+ (8101, '3860', 'Wrathung', 'VIC', 'AU', 491, ' 3860 Wrathung Victoria'),
8465
+ (8102, '3860', 'Wrixon', 'VIC', 'AU', 491, ' 3860 Wrixon Victoria'),
8466
+ (8103, '3860', 'Woolenook', 'VIC', 'AU', 491, ' 3860 Woolenook Victoria'),
8467
+ (8104, '3860', 'Briagolong', 'VIC', 'AU', 491, ' 3860 Briagolong Victoria'),
8468
+ (8105, '3860', 'Boisdale', 'VIC', 'AU', 491, ' 3860 Boisdale Victoria'),
8469
+ (8106, '3860', 'Bushy Park', 'VIC', 'AU', 491, ' 3860 Bushy Park Victoria'),
8470
+ (8107, '3860', 'Coongulla', 'VIC', 'AU', 491, ' 3860 Coongulla Victoria'),
8471
+ (8108, '3862', 'Cowa', 'VIC', 'AU', 491, ' 3862 Cowa Victoria'),
8472
+ (8109, '3862', 'Crooked River', 'VIC', 'AU', 491, ' 3862 Crooked River Victoria'),
8473
+ (8110, '3862', 'Dargo', 'VIC', 'AU', 491, ' 3862 Dargo Victoria'),
8474
+ (8111, '3862', 'Cobbannah', 'VIC', 'AU', 491, ' 3862 Cobbannah Victoria'),
8475
+ (8112, '3862', 'Budgee Budgee', 'VIC', 'AU', 491, ' 3862 Budgee Budgee Victoria'),
8476
+ (8113, '3862', 'Hollands Landing', 'VIC', 'AU', 491, ' 3862 Hollands Landing Victoria'),
8477
+ (8114, '3862', 'Hawkhurst', 'VIC', 'AU', 491, ' 3862 Hawkhurst Victoria'),
8478
+ (8115, '3862', 'Wongungarra', 'VIC', 'AU', 491, ' 3862 Wongungarra Victoria'),
8479
+ (8116, '3862', 'Llowalong', 'VIC', 'AU', 491, ' 3862 Llowalong Victoria'),
8480
+ (8117, '3862', 'Miowera', 'VIC', 'AU', 491, ' 3862 Miowera Victoria'),
8481
+ (8118, '3862', 'Moornapa', 'VIC', 'AU', 491, ' 3862 Moornapa Victoria'),
8482
+ (8119, '3862', 'Meerlieu', 'VIC', 'AU', 491, ' 3862 Meerlieu Victoria'),
8483
+ (8120, '3862', 'Perry Bridge', 'VIC', 'AU', 491, ' 3862 Perry Bridge Victoria'),
8484
+ (8121, '3862', 'Munro', 'VIC', 'AU', 491, ' 3862 Munro Victoria'),
8485
+ (8122, '3862', 'Stockdale', 'VIC', 'AU', 491, ' 3862 Stockdale Victoria'),
8486
+ (8123, '3862', 'Stratford', 'VIC', 'AU', 491, ' 3862 Stratford Victoria'),
8487
+ (8124, '3862', 'Waterford', 'VIC', 'AU', 491, ' 3862 Waterford Victoria'),
8488
+ (8125, '3864', 'The Fingerboard', 'VIC', 'AU', 491, ' 3864 The Fingerboard Victoria'),
8489
+ (8126, '3864', 'Glenaladale', 'VIC', 'AU', 491, ' 3864 Glenaladale Victoria'),
8490
+ (8127, '3864', 'Fernbank', 'VIC', 'AU', 491, ' 3864 Fernbank Victoria'),
8491
+ (8128, '3865', 'Lindenow', 'VIC', 'AU', 491, ' 3865 Lindenow Victoria'),
8492
+ (8129, '3869', 'Jumbuk', 'VIC', 'AU', 491, ' 3869 Jumbuk Victoria'),
8493
+ (8130, '3869', 'Yinnar', 'VIC', 'AU', 491, ' 3869 Yinnar Victoria'),
8494
+ (8131, '3869', 'Yinnar South', 'VIC', 'AU', 491, ' 3869 Yinnar South Victoria'),
8495
+ (8132, '3870', 'Grand Ridge', 'VIC', 'AU', 491, ' 3870 Grand Ridge Victoria'),
8496
+ (8133, '3870', 'Budgeree', 'VIC', 'AU', 491, ' 3870 Budgeree Victoria'),
8497
+ (8134, '3870', 'Boolarra', 'VIC', 'AU', 491, ' 3870 Boolarra Victoria'),
8498
+ (8135, '3870', 'Boolarra South', 'VIC', 'AU', 491, ' 3870 Boolarra South Victoria'),
8499
+ (8136, '3870', 'Johnstones Hill', 'VIC', 'AU', 491, ' 3870 Johnstones Hill Victoria'),
8500
+ (8137, '3871', 'Mirboo', 'VIC', 'AU', 491, ' 3871 Mirboo Victoria'),
8501
+ (8138, '3871', 'Mirboo North', 'VIC', 'AU', 491, ' 3871 Mirboo North Victoria'),
8502
+ (8139, '3871', 'Delburn', 'VIC', 'AU', 491, ' 3871 Delburn Victoria'),
8503
+ (8140, '3871', 'Dollar', 'VIC', 'AU', 491, ' 3871 Dollar Victoria'),
8504
+ (8141, '3871', 'Darlimurla', 'VIC', 'AU', 491, ' 3871 Darlimurla Victoria'),
8505
+ (8142, '3871', 'Baromi', 'VIC', 'AU', 491, ' 3871 Baromi Victoria'),
8506
+ (8143, '3871', 'Allambee Reserve', 'VIC', 'AU', 491, ' 3871 Allambee Reserve Victoria'),
8507
+ (8144, '3871', 'Allambee South', 'VIC', 'AU', 491, ' 3871 Allambee South Victoria'),
8508
+ (8145, '3873', 'Gormandale', 'VIC', 'AU', 491, ' 3873 Gormandale Victoria'),
8509
+ (8146, '3874', 'Cherrilong', 'VIC', 'AU', 491, ' 3874 Cherrilong Victoria'),
8510
+ (8147, '3874', 'Woodside', 'VIC', 'AU', 491, ' 3874 Woodside Victoria'),
8511
+ (8148, '3874', 'Woodside Beach', 'VIC', 'AU', 491, ' 3874 Woodside Beach Victoria'),
8512
+ (8149, '3874', 'Woodside North', 'VIC', 'AU', 491, ' 3874 Woodside North Victoria'),
8513
+ (8150, '3874', 'Mcloughlins Beach', 'VIC', 'AU', 491, ' 3874 Mcloughlins Beach Victoria'),
8514
+ (8151, '3875', 'Marthavale', 'VIC', 'AU', 491, ' 3875 Marthavale Victoria'),
8515
+ (8152, '3875', 'Merrijig', 'VIC', 'AU', 491, ' 3875 Merrijig Victoria'),
8516
+ (8153, '3875', 'Melwood', 'VIC', 'AU', 491, ' 3875 Melwood Victoria'),
8517
+ (8154, '3875', 'Lindenow South', 'VIC', 'AU', 491, ' 3875 Lindenow South Victoria'),
8518
+ (8155, '3875', 'Lucknow', 'VIC', 'AU', 491, ' 3875 Lucknow Victoria'),
8519
+ (8156, '3875', 'Mount Taylor', 'VIC', 'AU', 491, ' 3875 Mount Taylor Victoria'),
8520
+ (8157, '3875', 'Newlands Arm', 'VIC', 'AU', 491, ' 3875 Newlands Arm Victoria'),
8521
+ (8158, '3875', 'Sarsfield', 'VIC', 'AU', 491, ' 3875 Sarsfield Victoria'),
8522
+ (8159, '3875', 'Ryans', 'VIC', 'AU', 491, ' 3875 Ryans Victoria'),
8523
+ (8160, '3875', 'Walpa', 'VIC', 'AU', 491, ' 3875 Walpa Victoria'),
8524
+ (8161, '3875', 'Tabberabbera', 'VIC', 'AU', 491, ' 3875 Tabberabbera Victoria'),
8525
+ (8162, '3875', 'Wentworth', 'VIC', 'AU', 491, ' 3875 Wentworth Victoria'),
8526
+ (8163, '3875', 'Waterholes', 'VIC', 'AU', 491, ' 3875 Waterholes Victoria'),
8527
+ (8164, '3875', 'Woodglen', 'VIC', 'AU', 491, ' 3875 Woodglen Victoria'),
8528
+ (8165, '3875', 'Wuk Wuk', 'VIC', 'AU', 491, ' 3875 Wuk Wuk Victoria'),
8529
+ (8166, '3875', 'Wy Yung', 'VIC', 'AU', 491, ' 3875 Wy Yung Victoria'),
8530
+ (8167, '3875', 'Banksia Peninsula', 'VIC', 'AU', 491, ' 3875 Banksia Peninsula Victoria'),
8531
+ (8168, '3875', 'Bairnsdale', 'VIC', 'AU', 491, ' 3875 Bairnsdale Victoria'),
8532
+ (8169, '3875', 'Bengworden', 'VIC', 'AU', 491, ' 3875 Bengworden Victoria'),
8533
+ (8170, '3875', 'Clifton Creek', 'VIC', 'AU', 491, ' 3875 Clifton Creek Victoria'),
8534
+ (8171, '3875', 'Bullumwaal', 'VIC', 'AU', 491, ' 3875 Bullumwaal Victoria'),
8535
+ (8172, '3875', 'Broadlands', 'VIC', 'AU', 491, ' 3875 Broadlands Victoria'),
8536
+ (8173, '3875', 'Calulu', 'VIC', 'AU', 491, ' 3875 Calulu Victoria'),
8537
+ (8174, '3875', 'Goon Nure', 'VIC', 'AU', 491, ' 3875 Goon Nure Victoria'),
8538
+ (8175, '3875', 'Granite Rock', 'VIC', 'AU', 491, ' 3875 Granite Rock Victoria');
8539
+ INSERT INTO {$this->getTable('candf_pcs')} (`entity_id`, `postcode`, `city`, `state`, `country_id`, `region_id`, `fulltext`) VALUES
8540
+ (8176, '3875', 'Hillside', 'VIC', 'AU', 491, ' 3875 Hillside Victoria'),
8541
+ (8177, '3875', 'Iguana Creek', 'VIC', 'AU', 491, ' 3875 Iguana Creek Victoria'),
8542
+ (8178, '3875', 'Deptford', 'VIC', 'AU', 491, ' 3875 Deptford Victoria'),
8543
+ (8179, '3875', 'Flaggy Creek', 'VIC', 'AU', 491, ' 3875 Flaggy Creek Victoria'),
8544
+ (8180, '3875', 'Forge Creek', 'VIC', 'AU', 491, ' 3875 Forge Creek Victoria'),
8545
+ (8181, '3875', 'Fairy Dell', 'VIC', 'AU', 491, ' 3875 Fairy Dell Victoria'),
8546
+ (8182, '3875', 'East Bairnsdale', 'VIC', 'AU', 491, ' 3875 East Bairnsdale Victoria'),
8547
+ (8183, '3875', 'Ellaswood', 'VIC', 'AU', 491, ' 3875 Ellaswood Victoria'),
8548
+ (8184, '3875', 'Eastwood', 'VIC', 'AU', 491, ' 3875 Eastwood Victoria'),
8549
+ (8185, '3878', 'Eagle Point', 'VIC', 'AU', 491, ' 3878 Eagle Point Victoria'),
8550
+ (8186, '3880', 'Boole Poole', 'VIC', 'AU', 491, ' 3880 Boole Poole Victoria'),
8551
+ (8187, '3880', 'Raymond Island', 'VIC', 'AU', 491, ' 3880 Raymond Island Victoria'),
8552
+ (8188, '3880', 'Paynesville', 'VIC', 'AU', 491, ' 3880 Paynesville Victoria'),
8553
+ (8189, '3880', 'Ocean Grange', 'VIC', 'AU', 491, ' 3880 Ocean Grange Victoria'),
8554
+ (8190, '3882', 'Nicholson', 'VIC', 'AU', 491, ' 3882 Nicholson Victoria'),
8555
+ (8191, '3885', 'Murrindal', 'VIC', 'AU', 491, ' 3885 Murrindal Victoria'),
8556
+ (8192, '3885', 'Mossiface', 'VIC', 'AU', 491, ' 3885 Mossiface Victoria'),
8557
+ (8193, '3885', 'Tambo Upper', 'VIC', 'AU', 491, ' 3885 Tambo Upper Victoria'),
8558
+ (8194, '3885', 'W Tree', 'VIC', 'AU', 491, ' 3885 W Tree Victoria'),
8559
+ (8195, '3885', 'Timbarra', 'VIC', 'AU', 491, ' 3885 Timbarra Victoria'),
8560
+ (8196, '3885', 'Suggan Buggan', 'VIC', 'AU', 491, ' 3885 Suggan Buggan Victoria'),
8561
+ (8197, '3885', 'Buchan', 'VIC', 'AU', 491, ' 3885 Buchan Victoria'),
8562
+ (8198, '3885', 'Buchan South', 'VIC', 'AU', 491, ' 3885 Buchan South Victoria'),
8563
+ (8199, '3885', 'Brumby', 'VIC', 'AU', 491, ' 3885 Brumby Victoria'),
8564
+ (8200, '3885', 'Bruthen', 'VIC', 'AU', 491, ' 3885 Bruthen Victoria'),
8565
+ (8201, '3885', 'Butchers Ridge', 'VIC', 'AU', 491, ' 3885 Butchers Ridge Victoria'),
8566
+ (8202, '3885', 'Gelantipy', 'VIC', 'AU', 491, ' 3885 Gelantipy Victoria'),
8567
+ (8203, '3885', 'Wulgulmerang', 'VIC', 'AU', 491, ' 3885 Wulgulmerang Victoria'),
8568
+ (8204, '3885', 'Wulgulmerang East', 'VIC', 'AU', 491, ' 3885 Wulgulmerang East Victoria'),
8569
+ (8205, '3885', 'Wulgulmerang West', 'VIC', 'AU', 491, ' 3885 Wulgulmerang West Victoria'),
8570
+ (8206, '3885', 'Wiseleigh', 'VIC', 'AU', 491, ' 3885 Wiseleigh Victoria'),
8571
+ (8207, '3885', 'Yalmy', 'VIC', 'AU', 491, ' 3885 Yalmy Victoria'),
8572
+ (8208, '3886', 'Newmerella', 'VIC', 'AU', 491, ' 3886 Newmerella Victoria'),
8573
+ (8209, '3887', 'Nowa Nowa', 'VIC', 'AU', 491, ' 3887 Nowa Nowa Victoria'),
8574
+ (8210, '3887', 'Lake Tyers', 'VIC', 'AU', 491, ' 3887 Lake Tyers Victoria'),
8575
+ (8211, '3887', 'Wairewa', 'VIC', 'AU', 491, ' 3887 Wairewa Victoria'),
8576
+ (8212, '3888', 'Tostaree', 'VIC', 'AU', 491, ' 3888 Tostaree Victoria'),
8577
+ (8213, '3888', 'Tubbut', 'VIC', 'AU', 491, ' 3888 Tubbut Victoria'),
8578
+ (8214, '3888', 'Waygara', 'VIC', 'AU', 491, ' 3888 Waygara Victoria'),
8579
+ (8215, '3888', 'Martins Creek', 'VIC', 'AU', 491, ' 3888 Martins Creek Victoria'),
8580
+ (8216, '3888', 'Marlo', 'VIC', 'AU', 491, ' 3888 Marlo Victoria'),
8581
+ (8217, '3888', 'Nurran', 'VIC', 'AU', 491, ' 3888 Nurran Victoria'),
8582
+ (8218, '3888', 'Orbost', 'VIC', 'AU', 491, ' 3888 Orbost Victoria'),
8583
+ (8219, '3888', 'Simpsons Creek', 'VIC', 'AU', 491, ' 3888 Simpsons Creek Victoria'),
8584
+ (8220, '3888', 'Wombat Creek', 'VIC', 'AU', 491, ' 3888 Wombat Creek Victoria'),
8585
+ (8221, '3888', 'Bendoc', 'VIC', 'AU', 491, ' 3888 Bendoc Victoria'),
8586
+ (8222, '3888', 'Bete Bolong', 'VIC', 'AU', 491, ' 3888 Bete Bolong Victoria'),
8587
+ (8223, '3888', 'Bete Bolong North', 'VIC', 'AU', 491, ' 3888 Bete Bolong North Victoria'),
8588
+ (8224, '3888', 'Goongerah', 'VIC', 'AU', 491, ' 3888 Goongerah Victoria'),
8589
+ (8225, '3888', 'Haydens Bog', 'VIC', 'AU', 491, ' 3888 Haydens Bog Victoria'),
8590
+ (8226, '3888', 'Jarrahmond', 'VIC', 'AU', 491, ' 3888 Jarrahmond Victoria'),
8591
+ (8227, '3888', 'Delegate River', 'VIC', 'AU', 491, ' 3888 Delegate River Victoria'),
8592
+ (8228, '3888', 'Deddick Valley', 'VIC', 'AU', 491, ' 3888 Deddick Valley Victoria'),
8593
+ (8229, '3888', 'Cabanandra', 'VIC', 'AU', 491, ' 3888 Cabanandra Victoria'),
8594
+ (8230, '3888', 'Cape Conran', 'VIC', 'AU', 491, ' 3888 Cape Conran Victoria'),
8595
+ (8231, '3888', 'Brodribb River', 'VIC', 'AU', 491, ' 3888 Brodribb River Victoria'),
8596
+ (8232, '3888', 'Bonang', 'VIC', 'AU', 491, ' 3888 Bonang Victoria'),
8597
+ (8233, '3888', 'Corringle', 'VIC', 'AU', 491, ' 3888 Corringle Victoria'),
8598
+ (8234, '3889', 'Combienbar', 'VIC', 'AU', 491, ' 3889 Combienbar Victoria'),
8599
+ (8235, '3889', 'Club Terrace', 'VIC', 'AU', 491, ' 3889 Club Terrace Victoria'),
8600
+ (8236, '3889', 'Cabbage Tree Creek', 'VIC', 'AU', 491, ' 3889 Cabbage Tree Creek Victoria'),
8601
+ (8237, '3889', 'Errinundra', 'VIC', 'AU', 491, ' 3889 Errinundra Victoria'),
8602
+ (8238, '3889', 'Bellbird Creek', 'VIC', 'AU', 491, ' 3889 Bellbird Creek Victoria'),
8603
+ (8239, '3889', 'Bemm River', 'VIC', 'AU', 491, ' 3889 Bemm River Victoria'),
8604
+ (8240, '3889', 'Manorina', 'VIC', 'AU', 491, ' 3889 Manorina Victoria'),
8605
+ (8241, '3890', 'Noorinbee', 'VIC', 'AU', 491, ' 3890 Noorinbee Victoria'),
8606
+ (8242, '3890', 'Noorinbee North', 'VIC', 'AU', 491, ' 3890 Noorinbee North Victoria'),
8607
+ (8243, '3890', 'Tonghi Creek', 'VIC', 'AU', 491, ' 3890 Tonghi Creek Victoria'),
8608
+ (8244, '3890', 'Tamboon', 'VIC', 'AU', 491, ' 3890 Tamboon Victoria'),
8609
+ (8245, '3890', 'Cann River', 'VIC', 'AU', 491, ' 3890 Cann River Victoria'),
8610
+ (8246, '3890', 'Buldah', 'VIC', 'AU', 491, ' 3890 Buldah Victoria'),
8611
+ (8247, '3890', 'Chandlers Creek', 'VIC', 'AU', 491, ' 3890 Chandlers Creek Victoria'),
8612
+ (8248, '3891', 'Genoa', 'VIC', 'AU', 491, ' 3891 Genoa Victoria'),
8613
+ (8249, '3891', 'Gipsy Point', 'VIC', 'AU', 491, ' 3891 Gipsy Point Victoria'),
8614
+ (8250, '3891', 'Wroxham', 'VIC', 'AU', 491, ' 3891 Wroxham Victoria'),
8615
+ (8251, '3891', 'Wingan River', 'VIC', 'AU', 491, ' 3891 Wingan River Victoria'),
8616
+ (8252, '3891', 'Wallagaraugh', 'VIC', 'AU', 491, ' 3891 Wallagaraugh Victoria'),
8617
+ (8253, '3891', 'Wangarabell', 'VIC', 'AU', 491, ' 3891 Wangarabell Victoria'),
8618
+ (8254, '3891', 'Maramingo Creek', 'VIC', 'AU', 491, ' 3891 Maramingo Creek Victoria'),
8619
+ (8255, '3892', 'Mallacoota', 'VIC', 'AU', 491, ' 3892 Mallacoota Victoria'),
8620
+ (8256, '3893', 'Tambo Crossing', 'VIC', 'AU', 491, ' 3893 Tambo Crossing Victoria'),
8621
+ (8257, '3893', 'Stirling', 'VIC', 'AU', 491, ' 3893 Stirling Victoria'),
8622
+ (8258, '3893', 'Double Bridges', 'VIC', 'AU', 491, ' 3893 Double Bridges Victoria'),
8623
+ (8259, '3895', 'Doctors Flat', 'VIC', 'AU', 491, ' 3895 Doctors Flat Victoria'),
8624
+ (8260, '3895', 'Ensay', 'VIC', 'AU', 491, ' 3895 Ensay Victoria'),
8625
+ (8261, '3895', 'Ensay North', 'VIC', 'AU', 491, ' 3895 Ensay North Victoria'),
8626
+ (8262, '3895', 'Reedy Flat', 'VIC', 'AU', 491, ' 3895 Reedy Flat Victoria'),
8627
+ (8263, '3896', 'Nunniong', 'VIC', 'AU', 491, ' 3896 Nunniong Victoria'),
8628
+ (8264, '3896', 'Swifts Creek', 'VIC', 'AU', 491, ' 3896 Swifts Creek Victoria'),
8629
+ (8265, '3896', 'Tongio', 'VIC', 'AU', 491, ' 3896 Tongio Victoria'),
8630
+ (8266, '3896', 'Brookville', 'VIC', 'AU', 491, ' 3896 Brookville Victoria'),
8631
+ (8267, '3896', 'Bindi', 'VIC', 'AU', 491, ' 3896 Bindi Victoria'),
8632
+ (8268, '3898', 'Anglers Rest', 'VIC', 'AU', 491, ' 3898 Anglers Rest Victoria'),
8633
+ (8269, '3898', 'Bundara', 'VIC', 'AU', 491, ' 3898 Bundara Victoria'),
8634
+ (8270, '3898', 'Bingo Munjie', 'VIC', 'AU', 491, ' 3898 Bingo Munjie Victoria'),
8635
+ (8271, '3898', 'Cassilis', 'VIC', 'AU', 491, ' 3898 Cassilis Victoria'),
8636
+ (8272, '3898', 'Cobungra', 'VIC', 'AU', 491, ' 3898 Cobungra Victoria'),
8637
+ (8273, '3898', 'Dinner Plain', 'VIC', 'AU', 491, ' 3898 Dinner Plain Victoria'),
8638
+ (8274, '3898', 'Glen Valley', 'VIC', 'AU', 491, ' 3898 Glen Valley Victoria'),
8639
+ (8275, '3898', 'Glen Wills', 'VIC', 'AU', 491, ' 3898 Glen Wills Victoria'),
8640
+ (8276, '3898', 'Hinnomunjie', 'VIC', 'AU', 491, ' 3898 Hinnomunjie Victoria'),
8641
+ (8277, '3898', 'Omeo', 'VIC', 'AU', 491, ' 3898 Omeo Victoria'),
8642
+ (8278, '3898', 'Omeo Valley', 'VIC', 'AU', 491, ' 3898 Omeo Valley Victoria'),
8643
+ (8279, '3898', 'Shannonvale', 'VIC', 'AU', 491, ' 3898 Shannonvale Victoria'),
8644
+ (8280, '3900', 'Cobberas', 'VIC', 'AU', 491, ' 3900 Cobberas Victoria'),
8645
+ (8281, '3900', 'Benambra', 'VIC', 'AU', 491, ' 3900 Benambra Victoria'),
8646
+ (8282, '3902', 'Bumberrah', 'VIC', 'AU', 491, ' 3902 Bumberrah Victoria'),
8647
+ (8283, '3902', 'Johnsonville', 'VIC', 'AU', 491, ' 3902 Johnsonville Victoria'),
8648
+ (8284, '3903', 'Swan Reach', 'VIC', 'AU', 491, ' 3903 Swan Reach Victoria'),
8649
+ (8285, '3904', 'Metung', 'VIC', 'AU', 491, ' 3904 Metung Victoria'),
8650
+ (8286, '3909', 'Kalimna', 'VIC', 'AU', 491, ' 3909 Kalimna Victoria'),
8651
+ (8287, '3909', 'Kalimna West', 'VIC', 'AU', 491, ' 3909 Kalimna West Victoria'),
8652
+ (8288, '3909', 'Lake Tyers Beach', 'VIC', 'AU', 491, ' 3909 Lake Tyers Beach Victoria'),
8653
+ (8289, '3909', 'Lake Bunga', 'VIC', 'AU', 491, ' 3909 Lake Bunga Victoria'),
8654
+ (8290, '3909', 'Lakes Entrance', 'VIC', 'AU', 491, ' 3909 Lakes Entrance Victoria'),
8655
+ (8291, '3909', 'Nyerimilang', 'VIC', 'AU', 491, ' 3909 Nyerimilang Victoria'),
8656
+ (8292, '3909', 'Nungurner', 'VIC', 'AU', 491, ' 3909 Nungurner Victoria'),
8657
+ (8293, '3909', 'Toorloo Arm', 'VIC', 'AU', 491, ' 3909 Toorloo Arm Victoria'),
8658
+ (8294, '3910', 'Langwarrin', 'VIC', 'AU', 491, ' 3910 Langwarrin Victoria'),
8659
+ (8295, '3911', 'Langwarrin South', 'VIC', 'AU', 491, ' 3911 Langwarrin South Victoria'),
8660
+ (8296, '3911', 'Baxter', 'VIC', 'AU', 491, ' 3911 Baxter Victoria'),
8661
+ (8297, '3912', 'Pearcedale', 'VIC', 'AU', 491, ' 3912 Pearcedale Victoria'),
8662
+ (8298, '3912', 'Somerville', 'VIC', 'AU', 491, ' 3912 Somerville Victoria'),
8663
+ (8299, '3913', 'Tyabb', 'VIC', 'AU', 491, ' 3913 Tyabb Victoria'),
8664
+ (8300, '3915', 'Tuerong', 'VIC', 'AU', 491, ' 3915 Tuerong Victoria'),
8665
+ (8301, '3915', 'Hastings', 'VIC', 'AU', 491, ' 3915 Hastings Victoria'),
8666
+ (8302, '3916', 'Merricks', 'VIC', 'AU', 491, ' 3916 Merricks Victoria'),
8667
+ (8303, '3916', 'Point Leo', 'VIC', 'AU', 491, ' 3916 Point Leo Victoria'),
8668
+ (8304, '3916', 'Shoreham', 'VIC', 'AU', 491, ' 3916 Shoreham Victoria'),
8669
+ (8305, '3918', 'Bittern', 'VIC', 'AU', 491, ' 3918 Bittern Victoria'),
8670
+ (8306, '3919', 'Crib Point', 'VIC', 'AU', 491, ' 3919 Crib Point Victoria'),
8671
+ (8307, '3920', 'Hmas Cerberus', 'VIC', 'AU', 491, ' 3920 Hmas Cerberus Victoria'),
8672
+ (8308, '3921', 'French Island', 'VIC', 'AU', 491, ' 3921 French Island Victoria'),
8673
+ (8309, '3922', 'Cowes', 'VIC', 'AU', 491, ' 3922 Cowes Victoria'),
8674
+ (8310, '3922', 'Silverleaves', 'VIC', 'AU', 491, ' 3922 Silverleaves Victoria'),
8675
+ (8311, '3922', 'Smiths Beach', 'VIC', 'AU', 491, ' 3922 Smiths Beach Victoria'),
8676
+ (8312, '3922', 'Ventnor', 'VIC', 'AU', 491, ' 3922 Ventnor Victoria'),
8677
+ (8313, '3922', 'Sunderland Bay', 'VIC', 'AU', 491, ' 3922 Sunderland Bay Victoria'),
8678
+ (8314, '3922', 'Sunset Strip', 'VIC', 'AU', 491, ' 3922 Sunset Strip Victoria'),
8679
+ (8315, '3922', 'Surf Beach', 'VIC', 'AU', 491, ' 3922 Surf Beach Victoria'),
8680
+ (8316, '3922', 'Summerlands', 'VIC', 'AU', 491, ' 3922 Summerlands Victoria'),
8681
+ (8317, '3922', 'Wimbledon Heights', 'VIC', 'AU', 491, ' 3922 Wimbledon Heights Victoria'),
8682
+ (8318, '3923', 'Rhyll', 'VIC', 'AU', 491, ' 3923 Rhyll Victoria'),
8683
+ (8319, '3925', 'San Remo', 'VIC', 'AU', 491, ' 3925 San Remo Victoria'),
8684
+ (8320, '3925', 'Newhaven', 'VIC', 'AU', 491, ' 3925 Newhaven Victoria'),
8685
+ (8321, '3925', 'Churchill Island', 'VIC', 'AU', 491, ' 3925 Churchill Island Victoria'),
8686
+ (8322, '3925', 'Cape Woolamai', 'VIC', 'AU', 491, ' 3925 Cape Woolamai Victoria'),
8687
+ (8323, '3926', 'Merricks Beach', 'VIC', 'AU', 491, ' 3926 Merricks Beach Victoria'),
8688
+ (8324, '3926', 'Merricks North', 'VIC', 'AU', 491, ' 3926 Merricks North Victoria'),
8689
+ (8325, '3926', 'Balnarring', 'VIC', 'AU', 491, ' 3926 Balnarring Victoria'),
8690
+ (8326, '3926', 'Balnarring Beach', 'VIC', 'AU', 491, ' 3926 Balnarring Beach Victoria'),
8691
+ (8327, '3927', 'Somers', 'VIC', 'AU', 491, ' 3927 Somers Victoria'),
8692
+ (8328, '3928', 'Main Ridge', 'VIC', 'AU', 491, ' 3928 Main Ridge Victoria'),
8693
+ (8329, '3929', 'Flinders', 'VIC', 'AU', 491, ' 3929 Flinders Victoria'),
8694
+ (8330, '3930', 'Kunyung', 'VIC', 'AU', 491, ' 3930 Kunyung Victoria'),
8695
+ (8331, '3930', 'Mount Eliza', 'VIC', 'AU', 491, ' 3930 Mount Eliza Victoria'),
8696
+ (8332, '3931', 'Mornington', 'VIC', 'AU', 491, ' 3931 Mornington Victoria'),
8697
+ (8333, '3933', 'Moorooduc', 'VIC', 'AU', 491, ' 3933 Moorooduc Victoria'),
8698
+ (8334, '3934', 'Mount Martha', 'VIC', 'AU', 491, ' 3934 Mount Martha Victoria'),
8699
+ (8335, '3936', 'Safety Beach', 'VIC', 'AU', 491, ' 3936 Safety Beach Victoria'),
8700
+ (8336, '3936', 'Dromana', 'VIC', 'AU', 491, ' 3936 Dromana Victoria'),
8701
+ (8337, '3936', 'Arthurs Seat', 'VIC', 'AU', 491, ' 3936 Arthurs Seat Victoria'),
8702
+ (8338, '3937', 'Red Hill', 'VIC', 'AU', 491, ' 3937 Red Hill Victoria'),
8703
+ (8339, '3937', 'Red Hill South', 'VIC', 'AU', 491, ' 3937 Red Hill South Victoria'),
8704
+ (8340, '3938', 'Mccrae', 'VIC', 'AU', 491, ' 3938 Mccrae Victoria'),
8705
+ (8341, '3939', 'Fingal', 'VIC', 'AU', 491, ' 3939 Fingal Victoria'),
8706
+ (8342, '3939', 'Rosebud', 'VIC', 'AU', 491, ' 3939 Rosebud Victoria'),
8707
+ (8343, '3939', 'Rosebud Plaza', 'VIC', 'AU', 491, ' 3939 Rosebud Plaza Victoria'),
8708
+ (8344, '3939', 'Boneo', 'VIC', 'AU', 491, ' 3939 Boneo Victoria'),
8709
+ (8345, '3939', 'Cape Schanck', 'VIC', 'AU', 491, ' 3939 Cape Schanck Victoria'),
8710
+ (8346, '3940', 'Rosebud West', 'VIC', 'AU', 491, ' 3940 Rosebud West Victoria'),
8711
+ (8347, '3941', 'Rye', 'VIC', 'AU', 491, ' 3941 Rye Victoria'),
8712
+ (8348, '3941', 'Tootgarook', 'VIC', 'AU', 491, ' 3941 Tootgarook Victoria'),
8713
+ (8349, '3941', 'St Andrews Beach', 'VIC', 'AU', 491, ' 3941 St Andrews Beach Victoria'),
8714
+ (8350, '3942', 'Blairgowrie', 'VIC', 'AU', 491, ' 3942 Blairgowrie Victoria'),
8715
+ (8351, '3943', 'Sorrento', 'VIC', 'AU', 491, ' 3943 Sorrento Victoria'),
8716
+ (8352, '3944', 'Portsea', 'VIC', 'AU', 491, ' 3944 Portsea Victoria'),
8717
+ (8353, '3945', 'Loch', 'VIC', 'AU', 491, ' 3945 Loch Victoria'),
8718
+ (8354, '3945', 'Krowera', 'VIC', 'AU', 491, ' 3945 Krowera Victoria'),
8719
+ (8355, '3945', 'Jeetho', 'VIC', 'AU', 491, ' 3945 Jeetho Victoria'),
8720
+ (8356, '3945', 'Woodleigh', 'VIC', 'AU', 491, ' 3945 Woodleigh Victoria'),
8721
+ (8357, '3946', 'Bena', 'VIC', 'AU', 491, ' 3946 Bena Victoria'),
8722
+ (8358, '3950', 'Korumburra', 'VIC', 'AU', 491, ' 3950 Korumburra Victoria'),
8723
+ (8359, '3950', 'Korumburra South', 'VIC', 'AU', 491, ' 3950 Korumburra South Victoria'),
8724
+ (8360, '3950', 'Kardella South', 'VIC', 'AU', 491, ' 3950 Kardella South Victoria'),
8725
+ (8361, '3950', 'Whitelaw', 'VIC', 'AU', 491, ' 3950 Whitelaw Victoria'),
8726
+ (8362, '3950', 'Strzelecki', 'VIC', 'AU', 491, ' 3950 Strzelecki Victoria'),
8727
+ (8363, '3951', 'Kardella', 'VIC', 'AU', 491, ' 3951 Kardella Victoria'),
8728
+ (8364, '3951', 'Jumbunna', 'VIC', 'AU', 491, ' 3951 Jumbunna Victoria'),
8729
+ (8365, '3951', 'Kongwak', 'VIC', 'AU', 491, ' 3951 Kongwak Victoria'),
8730
+ (8366, '3951', 'Moyarra', 'VIC', 'AU', 491, ' 3951 Moyarra Victoria'),
8731
+ (8367, '3951', 'Outtrim', 'VIC', 'AU', 491, ' 3951 Outtrim Victoria'),
8732
+ (8368, '3951', 'Ranceby', 'VIC', 'AU', 491, ' 3951 Ranceby Victoria'),
8733
+ (8369, '3951', 'Arawata', 'VIC', 'AU', 491, ' 3951 Arawata Victoria'),
8734
+ (8370, '3951', 'Fairbank', 'VIC', 'AU', 491, ' 3951 Fairbank Victoria'),
8735
+ (8371, '3953', 'Hallston', 'VIC', 'AU', 491, ' 3953 Hallston Victoria'),
8736
+ (8372, '3953', 'Boorool', 'VIC', 'AU', 491, ' 3953 Boorool Victoria'),
8737
+ (8373, '3953', 'Berrys Creek', 'VIC', 'AU', 491, ' 3953 Berrys Creek Victoria'),
8738
+ (8374, '3953', 'Ruby', 'VIC', 'AU', 491, ' 3953 Ruby Victoria'),
8739
+ (8375, '3953', 'Mount Eccles', 'VIC', 'AU', 491, ' 3953 Mount Eccles Victoria'),
8740
+ (8376, '3953', 'Mount Eccles South', 'VIC', 'AU', 491, ' 3953 Mount Eccles South Victoria'),
8741
+ (8377, '3953', 'Nerrena', 'VIC', 'AU', 491, ' 3953 Nerrena Victoria'),
8742
+ (8378, '3953', 'Koorooman', 'VIC', 'AU', 491, ' 3953 Koorooman Victoria'),
8743
+ (8379, '3953', 'Leongatha', 'VIC', 'AU', 491, ' 3953 Leongatha Victoria'),
8744
+ (8380, '3953', 'Leongatha North', 'VIC', 'AU', 491, ' 3953 Leongatha North Victoria'),
8745
+ (8381, '3953', 'Leongatha South', 'VIC', 'AU', 491, ' 3953 Leongatha South Victoria'),
8746
+ (8382, '3953', 'Mardan', 'VIC', 'AU', 491, ' 3953 Mardan Victoria'),
8747
+ (8383, '3953', 'Trida', 'VIC', 'AU', 491, ' 3953 Trida Victoria'),
8748
+ (8384, '3953', 'Wild Dog Valley', 'VIC', 'AU', 491, ' 3953 Wild Dog Valley Victoria'),
8749
+ (8385, '3954', 'Koonwarra', 'VIC', 'AU', 491, ' 3954 Koonwarra Victoria'),
8750
+ (8386, '3956', 'Meeniyan', 'VIC', 'AU', 491, ' 3956 Meeniyan Victoria'),
8751
+ (8387, '3956', 'Middle Tarwin', 'VIC', 'AU', 491, ' 3956 Middle Tarwin Victoria'),
8752
+ (8388, '3956', 'Venus Bay', 'VIC', 'AU', 491, ' 3956 Venus Bay Victoria'),
8753
+ (8389, '3956', 'Walkerville', 'VIC', 'AU', 491, ' 3956 Walkerville Victoria'),
8754
+ (8390, '3956', 'Walkerville South', 'VIC', 'AU', 491, ' 3956 Walkerville South Victoria'),
8755
+ (8391, '3956', 'Tarwin', 'VIC', 'AU', 491, ' 3956 Tarwin Victoria'),
8756
+ (8392, '3956', 'Tarwin Lower', 'VIC', 'AU', 491, ' 3956 Tarwin Lower Victoria'),
8757
+ (8393, '3956', 'Dumbalk', 'VIC', 'AU', 491, ' 3956 Dumbalk Victoria'),
8758
+ (8394, '3956', 'Dumbalk North', 'VIC', 'AU', 491, ' 3956 Dumbalk North Victoria'),
8759
+ (8395, '3957', 'Stony Creek', 'VIC', 'AU', 491, ' 3957 Stony Creek Victoria'),
8760
+ (8396, '3958', 'Buffalo', 'VIC', 'AU', 491, ' 3958 Buffalo Victoria'),
8761
+ (8397, '3959', 'Fish Creek', 'VIC', 'AU', 491, ' 3959 Fish Creek Victoria'),
8762
+ (8398, '3959', 'Waratah Bay', 'VIC', 'AU', 491, ' 3959 Waratah Bay Victoria'),
8763
+ (8399, '3959', 'Sandy Point', 'VIC', 'AU', 491, ' 3959 Sandy Point Victoria'),
8764
+ (8400, '3960', 'Shallow Inlet', 'VIC', 'AU', 491, ' 3960 Shallow Inlet Victoria'),
8765
+ (8401, '3960', 'Mount Best', 'VIC', 'AU', 491, ' 3960 Mount Best Victoria'),
8766
+ (8402, '3960', 'Wilsons Promontory', 'VIC', 'AU', 491, ' 3960 Wilsons Promontory Victoria'),
8767
+ (8403, '3960', 'Turtons Creek', 'VIC', 'AU', 491, ' 3960 Turtons Creek Victoria'),
8768
+ (8404, '3960', 'Tidal River', 'VIC', 'AU', 491, ' 3960 Tidal River Victoria'),
8769
+ (8405, '3960', 'Foster', 'VIC', 'AU', 491, ' 3960 Foster Victoria'),
8770
+ (8406, '3960', 'Foster North', 'VIC', 'AU', 491, ' 3960 Foster North Victoria'),
8771
+ (8407, '3960', 'Gunyah', 'VIC', 'AU', 491, ' 3960 Gunyah Victoria'),
8772
+ (8408, '3960', 'Boolarong', 'VIC', 'AU', 491, ' 3960 Boolarong Victoria'),
8773
+ (8409, '3960', 'Bennison', 'VIC', 'AU', 491, ' 3960 Bennison Victoria'),
8774
+ (8410, '3960', 'Wonga', 'VIC', 'AU', 491, ' 3960 Wonga Victoria'),
8775
+ (8411, '3960', 'Woorarra West', 'VIC', 'AU', 491, ' 3960 Woorarra West Victoria'),
8776
+ (8412, '3960', 'Yanakie', 'VIC', 'AU', 491, ' 3960 Yanakie Victoria'),
8777
+ (8413, '3962', 'Woorarra East', 'VIC', 'AU', 491, ' 3962 Woorarra East Victoria'),
8778
+ (8414, '3962', 'Wonyip', 'VIC', 'AU', 491, ' 3962 Wonyip Victoria'),
8779
+ (8415, '3962', 'Agnes', 'VIC', 'AU', 491, ' 3962 Agnes Victoria'),
8780
+ (8416, '3962', 'Toora', 'VIC', 'AU', 491, ' 3962 Toora Victoria'),
8781
+ (8417, '3962', 'Toora North', 'VIC', 'AU', 491, ' 3962 Toora North Victoria'),
8782
+ (8418, '3964', 'Port Franklin', 'VIC', 'AU', 491, ' 3964 Port Franklin Victoria'),
8783
+ (8419, '3965', 'Port Welshpool', 'VIC', 'AU', 491, ' 3965 Port Welshpool Victoria'),
8784
+ (8420, '3966', 'Welshpool', 'VIC', 'AU', 491, ' 3966 Welshpool Victoria'),
8785
+ (8421, '3966', 'Binginwarri', 'VIC', 'AU', 491, ' 3966 Binginwarri Victoria'),
8786
+ (8422, '3966', 'Hazel Park', 'VIC', 'AU', 491, ' 3966 Hazel Park Victoria'),
8787
+ (8423, '3967', 'Hedley', 'VIC', 'AU', 491, ' 3967 Hedley Victoria'),
8788
+ (8424, '3971', 'Hiawatha', 'VIC', 'AU', 491, ' 3971 Hiawatha Victoria'),
8789
+ (8425, '3971', 'Hunterston', 'VIC', 'AU', 491, ' 3971 Hunterston Victoria'),
8790
+ (8426, '3971', 'Jack River', 'VIC', 'AU', 491, ' 3971 Jack River Victoria'),
8791
+ (8427, '3971', 'Gelliondale', 'VIC', 'AU', 491, ' 3971 Gelliondale Victoria'),
8792
+ (8428, '3971', 'Devon North', 'VIC', 'AU', 491, ' 3971 Devon North Victoria'),
8793
+ (8429, '3971', 'Calrossie', 'VIC', 'AU', 491, ' 3971 Calrossie Victoria'),
8794
+ (8430, '3971', 'Balook', 'VIC', 'AU', 491, ' 3971 Balook Victoria'),
8795
+ (8431, '3971', 'Alberton', 'VIC', 'AU', 491, ' 3971 Alberton Victoria'),
8796
+ (8432, '3971', 'Alberton West', 'VIC', 'AU', 491, ' 3971 Alberton West Victoria'),
8797
+ (8433, '3971', 'Won Wron', 'VIC', 'AU', 491, ' 3971 Won Wron Victoria'),
8798
+ (8434, '3971', 'Yarram', 'VIC', 'AU', 491, ' 3971 Yarram Victoria'),
8799
+ (8435, '3971', 'Tarraville', 'VIC', 'AU', 491, ' 3971 Tarraville Victoria'),
8800
+ (8436, '3971', 'Tarra Valley', 'VIC', 'AU', 491, ' 3971 Tarra Valley Victoria'),
8801
+ (8437, '3971', 'Port Albert', 'VIC', 'AU', 491, ' 3971 Port Albert Victoria'),
8802
+ (8438, '3971', 'Robertsons Beach', 'VIC', 'AU', 491, ' 3971 Robertsons Beach Victoria'),
8803
+ (8439, '3971', 'Snake Island', 'VIC', 'AU', 491, ' 3971 Snake Island Victoria'),
8804
+ (8440, '3971', 'Staceys Bridge', 'VIC', 'AU', 491, ' 3971 Staceys Bridge Victoria'),
8805
+ (8441, '3971', 'Manns Beach', 'VIC', 'AU', 491, ' 3971 Manns Beach Victoria'),
8806
+ (8442, '3971', 'Langsborough', 'VIC', 'AU', 491, ' 3971 Langsborough Victoria'),
8807
+ (8443, '3971', 'Macks Creek', 'VIC', 'AU', 491, ' 3971 Macks Creek Victoria'),
8808
+ (8444, '3971', 'Madalya', 'VIC', 'AU', 491, ' 3971 Madalya Victoria'),
8809
+ (8445, '3975', 'Lynbrook', 'VIC', 'AU', 491, ' 3975 Lynbrook Victoria'),
8810
+ (8446, '3975', 'Lyndhurst', 'VIC', 'AU', 491, ' 3975 Lyndhurst Victoria'),
8811
+ (8447, '3976', 'Hampton Park', 'VIC', 'AU', 491, ' 3976 Hampton Park Victoria'),
8812
+ (8448, '3977', 'Devon Meadows', 'VIC', 'AU', 491, ' 3977 Devon Meadows Victoria'),
8813
+ (8449, '3977', 'Junction Village', 'VIC', 'AU', 491, ' 3977 Junction Village Victoria'),
8814
+ (8450, '3977', 'Sandhurst', 'VIC', 'AU', 491, ' 3977 Sandhurst Victoria'),
8815
+ (8451, '3977', 'Skye', 'VIC', 'AU', 491, ' 3977 Skye Victoria'),
8816
+ (8452, '3977', 'Botanic Ridge', 'VIC', 'AU', 491, ' 3977 Botanic Ridge Victoria'),
8817
+ (8453, '3977', 'Cannons Creek', 'VIC', 'AU', 491, ' 3977 Cannons Creek Victoria'),
8818
+ (8454, '3977', 'Cranbourne', 'VIC', 'AU', 491, ' 3977 Cranbourne Victoria'),
8819
+ (8455, '3977', 'Cranbourne East', 'VIC', 'AU', 491, ' 3977 Cranbourne East Victoria'),
8820
+ (8456, '3977', 'Cranbourne North', 'VIC', 'AU', 491, ' 3977 Cranbourne North Victoria'),
8821
+ (8457, '3977', 'Cranbourne South', 'VIC', 'AU', 491, ' 3977 Cranbourne South Victoria'),
8822
+ (8458, '3977', 'Cranbourne West', 'VIC', 'AU', 491, ' 3977 Cranbourne West Victoria'),
8823
+ (8459, '3978', 'Cardinia', 'VIC', 'AU', 491, ' 3978 Cardinia Victoria'),
8824
+ (8460, '3978', 'Clyde', 'VIC', 'AU', 491, ' 3978 Clyde Victoria'),
8825
+ (8461, '3978', 'Clyde North', 'VIC', 'AU', 491, ' 3978 Clyde North Victoria'),
8826
+ (8462, '3979', 'Kernot', 'VIC', 'AU', 491, ' 3979 Kernot Victoria'),
8827
+ (8463, '3979', 'Almurta', 'VIC', 'AU', 491, ' 3979 Almurta Victoria'),
8828
+ (8464, '3979', 'Glen Alvie', 'VIC', 'AU', 491, ' 3979 Glen Alvie Victoria'),
8829
+ (8465, '3980', 'Tooradin', 'VIC', 'AU', 491, ' 3980 Tooradin Victoria'),
8830
+ (8466, '3980', 'Warneet', 'VIC', 'AU', 491, ' 3980 Warneet Victoria'),
8831
+ (8467, '3980', 'Blind Bight', 'VIC', 'AU', 491, ' 3980 Blind Bight Victoria'),
8832
+ (8468, '3981', 'Catani', 'VIC', 'AU', 491, ' 3981 Catani Victoria'),
8833
+ (8469, '3981', 'Bayles', 'VIC', 'AU', 491, ' 3981 Bayles Victoria'),
8834
+ (8470, '3981', 'Yannathan', 'VIC', 'AU', 491, ' 3981 Yannathan Victoria'),
8835
+ (8471, '3981', 'Dalmore', 'VIC', 'AU', 491, ' 3981 Dalmore Victoria'),
8836
+ (8472, '3981', 'Heath Hill', 'VIC', 'AU', 491, ' 3981 Heath Hill Victoria'),
8837
+ (8473, '3981', 'Koo Wee Rup', 'VIC', 'AU', 491, ' 3981 Koo Wee Rup Victoria'),
8838
+ (8474, '3981', 'Koo Wee Rup North', 'VIC', 'AU', 491, ' 3981 Koo Wee Rup North Victoria'),
8839
+ (8475, '3984', 'Queensferry', 'VIC', 'AU', 491, ' 3984 Queensferry Victoria'),
8840
+ (8476, '3984', 'Pioneer Bay', 'VIC', 'AU', 491, ' 3984 Pioneer Bay Victoria'),
8841
+ (8477, '3984', 'Lang Lang', 'VIC', 'AU', 491, ' 3984 Lang Lang Victoria'),
8842
+ (8478, '3984', 'Lang Lang East', 'VIC', 'AU', 491, ' 3984 Lang Lang East Victoria'),
8843
+ (8479, '3984', 'Monomeith', 'VIC', 'AU', 491, ' 3984 Monomeith Victoria'),
8844
+ (8480, '3984', 'Tenby Point', 'VIC', 'AU', 491, ' 3984 Tenby Point Victoria'),
8845
+ (8481, '3984', 'The Gurdies', 'VIC', 'AU', 491, ' 3984 The Gurdies Victoria'),
8846
+ (8482, '3984', 'Grantville', 'VIC', 'AU', 491, ' 3984 Grantville Victoria'),
8847
+ (8483, '3984', 'Jam Jerrup', 'VIC', 'AU', 491, ' 3984 Jam Jerrup Victoria'),
8848
+ (8484, '3984', 'Caldermeade', 'VIC', 'AU', 491, ' 3984 Caldermeade Victoria'),
8849
+ (8485, '3984', 'Corinella', 'VIC', 'AU', 491, ' 3984 Corinella Victoria'),
8850
+ (8486, '3984', 'Coronet Bay', 'VIC', 'AU', 491, ' 3984 Coronet Bay Victoria'),
8851
+ (8487, '3984', 'Adams Estate', 'VIC', 'AU', 491, ' 3984 Adams Estate Victoria'),
8852
+ (8488, '3987', 'Nyora', 'VIC', 'AU', 491, ' 3987 Nyora Victoria'),
8853
+ (8489, '3988', 'Poowong', 'VIC', 'AU', 491, ' 3988 Poowong Victoria'),
8854
+ (8490, '3988', 'Poowong East', 'VIC', 'AU', 491, ' 3988 Poowong East Victoria'),
8855
+ (8491, '3988', 'Poowong North', 'VIC', 'AU', 491, ' 3988 Poowong North Victoria'),
8856
+ (8492, '3988', 'Mountain View', 'VIC', 'AU', 491, ' 3988 Mountain View Victoria'),
8857
+ (8493, '3990', 'Glen Forbes', 'VIC', 'AU', 491, ' 3990 Glen Forbes Victoria'),
8858
+ (8494, '3991', 'Bass', 'VIC', 'AU', 491, ' 3991 Bass Victoria'),
8859
+ (8495, '3992', 'Blackwood Forest', 'VIC', 'AU', 491, ' 3992 Blackwood Forest Victoria'),
8860
+ (8496, '3992', 'Dalyston', 'VIC', 'AU', 491, ' 3992 Dalyston Victoria'),
8861
+ (8497, '3992', 'Ryanston', 'VIC', 'AU', 491, ' 3992 Ryanston Victoria'),
8862
+ (8498, '3992', 'West Creek', 'VIC', 'AU', 491, ' 3992 West Creek Victoria'),
8863
+ (8499, '3995', 'Wattle Bank', 'VIC', 'AU', 491, ' 3995 Wattle Bank Victoria'),
8864
+ (8500, '3995', 'St Clair', 'VIC', 'AU', 491, ' 3995 St Clair Victoria'),
8865
+ (8501, '3995', 'South Dudley', 'VIC', 'AU', 491, ' 3995 South Dudley Victoria'),
8866
+ (8502, '3995', 'North Wonthaggi', 'VIC', 'AU', 491, ' 3995 North Wonthaggi Victoria'),
8867
+ (8503, '3995', 'Lance Creek', 'VIC', 'AU', 491, ' 3995 Lance Creek Victoria'),
8868
+ (8504, '3995', 'Kilcunda', 'VIC', 'AU', 491, ' 3995 Kilcunda Victoria'),
8869
+ (8505, '3995', 'Cape Paterson', 'VIC', 'AU', 491, ' 3995 Cape Paterson Victoria'),
8870
+ (8506, '3995', 'Harmers Haven', 'VIC', 'AU', 491, ' 3995 Harmers Haven Victoria'),
8871
+ (8507, '3995', 'Archies Creek', 'VIC', 'AU', 491, ' 3995 Archies Creek Victoria'),
8872
+ (8508, '3995', 'Anderson', 'VIC', 'AU', 491, ' 3995 Anderson Victoria'),
8873
+ (8509, '3995', 'Wonthaggi', 'VIC', 'AU', 491, ' 3995 Wonthaggi Victoria'),
8874
+ (8510, '3995', 'Woolamai', 'VIC', 'AU', 491, ' 3995 Woolamai Victoria'),
8875
+ (8511, '3996', 'Inverloch', 'VIC', 'AU', 491, ' 3996 Inverloch Victoria'),
8876
+ (8512, '3996', 'Pound Creek', 'VIC', 'AU', 491, ' 3996 Pound Creek Victoria'),
8877
+ (8513, '4000', 'Brisbane', 'QLD', 'AU', 488, ' 4000 Brisbane Queensland'),
8878
+ (8514, '4000', 'Brisbane Adelaide Street', 'QLD', 'AU', 488, ' 4000 Brisbane Adelaide Street Queensland'),
8879
+ (8515, '4000', 'Brisbane City', 'QLD', 'AU', 488, ' 4000 Brisbane City Queensland'),
8880
+ (8516, '4000', 'Brisbane Gpo', 'QLD', 'AU', 488, ' 4000 Brisbane Gpo Queensland'),
8881
+ (8517, '4000', 'Petrie Terrace', 'QLD', 'AU', 488, ' 4000 Petrie Terrace Queensland'),
8882
+ (8518, '4000', 'Spring Hill', 'QLD', 'AU', 488, ' 4000 Spring Hill Queensland'),
8883
+ (8519, '4001', 'Riverside Centre', 'QLD', 'AU', 488, ' 4001 Riverside Centre Queensland'),
8884
+ (8520, '4001', 'Waterfront Place', 'QLD', 'AU', 488, ' 4001 Waterfront Place Queensland'),
8885
+ (8521, '4001', 'Central Plaza', 'QLD', 'AU', 488, ' 4001 Central Plaza Queensland'),
8886
+ (8522, '4001', 'Brisbane', 'QLD', 'AU', 488, ' 4001 Brisbane Queensland'),
8887
+ (8523, '4002', 'City East', 'QLD', 'AU', 488, ' 4002 City East Queensland'),
8888
+ (8524, '4002', 'Wintergarden', 'QLD', 'AU', 488, ' 4002 Wintergarden Queensland'),
8889
+ (8525, '4003', 'George Street', 'QLD', 'AU', 488, ' 4003 George Street Queensland'),
8890
+ (8526, '4004', 'Spring Hill', 'QLD', 'AU', 488, ' 4004 Spring Hill Queensland'),
8891
+ (8527, '4005', 'New Farm', 'QLD', 'AU', 488, ' 4005 New Farm Queensland'),
8892
+ (8528, '4005', 'Teneriffe', 'QLD', 'AU', 488, ' 4005 Teneriffe Queensland'),
8893
+ (8529, '4006', 'Newstead', 'QLD', 'AU', 488, ' 4006 Newstead Queensland'),
8894
+ (8530, '4006', 'Herston', 'QLD', 'AU', 488, ' 4006 Herston Queensland'),
8895
+ (8531, '4006', 'Bowen Hills', 'QLD', 'AU', 488, ' 4006 Bowen Hills Queensland'),
8896
+ (8532, '4006', 'Fortitude Valley', 'QLD', 'AU', 488, ' 4006 Fortitude Valley Queensland'),
8897
+ (8533, '4007', 'Ascot', 'QLD', 'AU', 488, ' 4007 Ascot Queensland'),
8898
+ (8534, '4007', 'Hamilton', 'QLD', 'AU', 488, ' 4007 Hamilton Queensland'),
8899
+ (8535, '4007', 'Hamilton Central', 'QLD', 'AU', 488, ' 4007 Hamilton Central Queensland'),
8900
+ (8536, '4008', 'Pinkenba', 'QLD', 'AU', 488, ' 4008 Pinkenba Queensland'),
8901
+ (8537, '4009', 'Eagle Farm', 'QLD', 'AU', 488, ' 4009 Eagle Farm Queensland'),
8902
+ (8538, '4010', 'Albion', 'QLD', 'AU', 488, ' 4010 Albion Queensland'),
8903
+ (8539, '4011', 'Clayfield', 'QLD', 'AU', 488, ' 4011 Clayfield Queensland'),
8904
+ (8540, '4011', 'Hendra', 'QLD', 'AU', 488, ' 4011 Hendra Queensland'),
8905
+ (8541, '4012', 'Nundah', 'QLD', 'AU', 488, ' 4012 Nundah Queensland'),
8906
+ (8542, '4012', 'Toombul', 'QLD', 'AU', 488, ' 4012 Toombul Queensland'),
8907
+ (8543, '4012', 'Wavell Heights', 'QLD', 'AU', 488, ' 4012 Wavell Heights Queensland'),
8908
+ (8544, '4012', 'Wavell Heights North', 'QLD', 'AU', 488, ' 4012 Wavell Heights North Queensland'),
8909
+ (8545, '4013', 'Northgate', 'QLD', 'AU', 488, ' 4013 Northgate Queensland'),
8910
+ (8546, '4014', 'Nudgee', 'QLD', 'AU', 488, ' 4014 Nudgee Queensland'),
8911
+ (8547, '4014', 'Nudgee Beach', 'QLD', 'AU', 488, ' 4014 Nudgee Beach Queensland'),
8912
+ (8548, '4014', 'Virginia', 'QLD', 'AU', 488, ' 4014 Virginia Queensland'),
8913
+ (8549, '4014', 'Banyo', 'QLD', 'AU', 488, ' 4014 Banyo Queensland'),
8914
+ (8550, '4017', 'Sandgate', 'QLD', 'AU', 488, ' 4017 Sandgate Queensland'),
8915
+ (8551, '4017', 'Shorncliffe', 'QLD', 'AU', 488, ' 4017 Shorncliffe Queensland'),
8916
+ (8552, '4017', 'Deagon', 'QLD', 'AU', 488, ' 4017 Deagon Queensland'),
8917
+ (8553, '4017', 'Bracken Ridge', 'QLD', 'AU', 488, ' 4017 Bracken Ridge Queensland'),
8918
+ (8554, '4017', 'Brighton', 'QLD', 'AU', 488, ' 4017 Brighton Queensland'),
8919
+ (8555, '4017', 'Brighton Eventide', 'QLD', 'AU', 488, ' 4017 Brighton Eventide Queensland'),
8920
+ (8556, '4017', 'Brighton Nathan Street', 'QLD', 'AU', 488, ' 4017 Brighton Nathan Street Queensland'),
8921
+ (8557, '4018', 'Fitzgibbon', 'QLD', 'AU', 488, ' 4018 Fitzgibbon Queensland'),
8922
+ (8558, '4018', 'Taigum', 'QLD', 'AU', 488, ' 4018 Taigum Queensland'),
8923
+ (8559, '4019', 'Clontarf', 'QLD', 'AU', 488, ' 4019 Clontarf Queensland'),
8924
+ (8560, '4019', 'Clontarf Beach', 'QLD', 'AU', 488, ' 4019 Clontarf Beach Queensland'),
8925
+ (8561, '4019', 'Woody Point', 'QLD', 'AU', 488, ' 4019 Woody Point Queensland'),
8926
+ (8562, '4019', 'Margate', 'QLD', 'AU', 488, ' 4019 Margate Queensland'),
8927
+ (8563, '4019', 'Margate Beach', 'QLD', 'AU', 488, ' 4019 Margate Beach Queensland'),
8928
+ (8564, '4020', 'Newport', 'QLD', 'AU', 488, ' 4020 Newport Queensland'),
8929
+ (8565, '4020', 'Redcliffe', 'QLD', 'AU', 488, ' 4020 Redcliffe Queensland'),
8930
+ (8566, '4020', 'Redcliffe North', 'QLD', 'AU', 488, ' 4020 Redcliffe North Queensland'),
8931
+ (8567, '4020', 'Scarborough', 'QLD', 'AU', 488, ' 4020 Scarborough Queensland'),
8932
+ (8568, '4021', 'Kippa-ring', 'QLD', 'AU', 488, ' 4021 Kippa-ring Queensland'),
8933
+ (8569, '4022', 'Rothwell', 'QLD', 'AU', 488, ' 4022 Rothwell Queensland'),
8934
+ (8570, '4025', 'Tangalooma', 'QLD', 'AU', 488, ' 4025 Tangalooma Queensland'),
8935
+ (8571, '4025', 'Kooringal', 'QLD', 'AU', 488, ' 4025 Kooringal Queensland'),
8936
+ (8572, '4025', 'Cowan Cowan', 'QLD', 'AU', 488, ' 4025 Cowan Cowan Queensland'),
8937
+ (8573, '4025', 'Cape Moreton', 'QLD', 'AU', 488, ' 4025 Cape Moreton Queensland'),
8938
+ (8574, '4025', 'Bulwer', 'QLD', 'AU', 488, ' 4025 Bulwer Queensland'),
8939
+ (8575, '4029', 'Royal Brisbane Hospital', 'QLD', 'AU', 488, ' 4029 Royal Brisbane Hospital Queensland'),
8940
+ (8576, '4030', 'Lutwyche', 'QLD', 'AU', 488, ' 4030 Lutwyche Queensland'),
8941
+ (8577, '4030', 'Windsor', 'QLD', 'AU', 488, ' 4030 Windsor Queensland'),
8942
+ (8578, '4030', 'Wooloowin', 'QLD', 'AU', 488, ' 4030 Wooloowin Queensland'),
8943
+ (8579, '4031', 'Kedron', 'QLD', 'AU', 488, ' 4031 Kedron Queensland'),
8944
+ (8580, '4031', 'Gordon Park', 'QLD', 'AU', 488, ' 4031 Gordon Park Queensland'),
8945
+ (8581, '4032', 'Chermside', 'QLD', 'AU', 488, ' 4032 Chermside Queensland'),
8946
+ (8582, '4032', 'Chermside Centre', 'QLD', 'AU', 488, ' 4032 Chermside Centre Queensland'),
8947
+ (8583, '4032', 'Chermside South', 'QLD', 'AU', 488, ' 4032 Chermside South Queensland'),
8948
+ (8584, '4032', 'Chermside West', 'QLD', 'AU', 488, ' 4032 Chermside West Queensland'),
8949
+ (8585, '4034', 'Carseldine', 'QLD', 'AU', 488, ' 4034 Carseldine Queensland'),
8950
+ (8586, '4034', 'Geebung', 'QLD', 'AU', 488, ' 4034 Geebung Queensland'),
8951
+ (8587, '4034', 'Boondall', 'QLD', 'AU', 488, ' 4034 Boondall Queensland'),
8952
+ (8588, '4034', 'Aspley', 'QLD', 'AU', 488, ' 4034 Aspley Queensland'),
8953
+ (8589, '4034', 'Zillmere', 'QLD', 'AU', 488, ' 4034 Zillmere Queensland'),
8954
+ (8590, '4035', 'Albany Creek', 'QLD', 'AU', 488, ' 4035 Albany Creek Queensland'),
8955
+ (8591, '4035', 'Bridgeman Downs', 'QLD', 'AU', 488, ' 4035 Bridgeman Downs Queensland'),
8956
+ (8592, '4036', 'Bald Hills', 'QLD', 'AU', 488, ' 4036 Bald Hills Queensland'),
8957
+ (8593, '4037', 'Eatons Hill', 'QLD', 'AU', 488, ' 4037 Eatons Hill Queensland'),
8958
+ (8594, '4051', 'Grange', 'QLD', 'AU', 488, ' 4051 Grange Queensland'),
8959
+ (8595, '4051', 'Gaythorne', 'QLD', 'AU', 488, ' 4051 Gaythorne Queensland'),
8960
+ (8596, '4051', 'Enoggera', 'QLD', 'AU', 488, ' 4051 Enoggera Queensland'),
8961
+ (8597, '4051', 'Alderley', 'QLD', 'AU', 488, ' 4051 Alderley Queensland'),
8962
+ (8598, '4051', 'Newmarket', 'QLD', 'AU', 488, ' 4051 Newmarket Queensland'),
8963
+ (8599, '4051', 'Wilston', 'QLD', 'AU', 488, ' 4051 Wilston Queensland'),
8964
+ (8600, '4053', 'Mcdowall', 'QLD', 'AU', 488, ' 4053 Mcdowall Queensland'),
8965
+ (8601, '4053', 'Mitchelton', 'QLD', 'AU', 488, ' 4053 Mitchelton Queensland'),
8966
+ (8602, '4053', 'Stafford', 'QLD', 'AU', 488, ' 4053 Stafford Queensland'),
8967
+ (8603, '4053', 'Stafford Heights', 'QLD', 'AU', 488, ' 4053 Stafford Heights Queensland'),
8968
+ (8604, '4053', 'Everton Hills', 'QLD', 'AU', 488, ' 4053 Everton Hills Queensland'),
8969
+ (8605, '4053', 'Everton Park', 'QLD', 'AU', 488, ' 4053 Everton Park Queensland'),
8970
+ (8606, '4053', 'Brookside Centre', 'QLD', 'AU', 488, ' 4053 Brookside Centre Queensland'),
8971
+ (8607, '4054', 'Keperra', 'QLD', 'AU', 488, ' 4054 Keperra Queensland'),
8972
+ (8608, '4054', 'Arana Hills', 'QLD', 'AU', 488, ' 4054 Arana Hills Queensland'),
8973
+ (8609, '4055', 'Ferny Grove', 'QLD', 'AU', 488, ' 4055 Ferny Grove Queensland'),
8974
+ (8610, '4055', 'Ferny Hills', 'QLD', 'AU', 488, ' 4055 Ferny Hills Queensland'),
8975
+ (8611, '4055', 'Bunya', 'QLD', 'AU', 488, ' 4055 Bunya Queensland'),
8976
+ (8612, '4055', 'Upper Kedron', 'QLD', 'AU', 488, ' 4055 Upper Kedron Queensland'),
8977
+ (8613, '4059', 'Red Hill', 'QLD', 'AU', 488, ' 4059 Red Hill Queensland'),
8978
+ (8614, '4059', 'Kelvin Grove', 'QLD', 'AU', 488, ' 4059 Kelvin Grove Queensland'),
8979
+ (8615, '4060', 'Ashgrove', 'QLD', 'AU', 488, ' 4060 Ashgrove Queensland'),
8980
+ (8616, '4060', 'Ashgrove West', 'QLD', 'AU', 488, ' 4060 Ashgrove West Queensland'),
8981
+ (8617, '4061', 'The Gap', 'QLD', 'AU', 488, ' 4061 The Gap Queensland'),
8982
+ (8618, '4064', 'Milton', 'QLD', 'AU', 488, ' 4064 Milton Queensland'),
8983
+ (8619, '4064', 'Paddington', 'QLD', 'AU', 488, ' 4064 Paddington Queensland'),
8984
+ (8620, '4065', 'Bardon', 'QLD', 'AU', 488, ' 4065 Bardon Queensland'),
8985
+ (8621, '4066', 'Auchenflower', 'QLD', 'AU', 488, ' 4066 Auchenflower Queensland'),
8986
+ (8622, '4066', 'Mount Coot-tha', 'QLD', 'AU', 488, ' 4066 Mount Coot-tha Queensland'),
8987
+ (8623, '4066', 'Toowong', 'QLD', 'AU', 488, ' 4066 Toowong Queensland'),
8988
+ (8624, '4067', 'St Lucia', 'QLD', 'AU', 488, ' 4067 St Lucia Queensland'),
8989
+ (8625, '4067', 'St Lucia South', 'QLD', 'AU', 488, ' 4067 St Lucia South Queensland'),
8990
+ (8626, '4068', 'Taringa', 'QLD', 'AU', 488, ' 4068 Taringa Queensland'),
8991
+ (8627, '4068', 'Indooroopilly', 'QLD', 'AU', 488, ' 4068 Indooroopilly Queensland'),
8992
+ (8628, '4068', 'Indooroopilly Centre', 'QLD', 'AU', 488, ' 4068 Indooroopilly Centre Queensland'),
8993
+ (8629, '4068', 'Chelmer', 'QLD', 'AU', 488, ' 4068 Chelmer Queensland'),
8994
+ (8630, '4069', 'Chapel Hill', 'QLD', 'AU', 488, ' 4069 Chapel Hill Queensland'),
8995
+ (8631, '4069', 'Fig Tree Pocket', 'QLD', 'AU', 488, ' 4069 Fig Tree Pocket Queensland'),
8996
+ (8632, '4069', 'Brookfield', 'QLD', 'AU', 488, ' 4069 Brookfield Queensland'),
8997
+ (8633, '4069', 'Kenmore', 'QLD', 'AU', 488, ' 4069 Kenmore Queensland'),
8998
+ (8634, '4069', 'Kenmore East', 'QLD', 'AU', 488, ' 4069 Kenmore East Queensland'),
8999
+ (8635, '4069', 'Kenmore Hills', 'QLD', 'AU', 488, ' 4069 Kenmore Hills Queensland'),
9000
+ (8636, '4069', 'Pinjarra Hills', 'QLD', 'AU', 488, ' 4069 Pinjarra Hills Queensland'),
9001
+ (8637, '4069', 'Upper Brookfield', 'QLD', 'AU', 488, ' 4069 Upper Brookfield Queensland'),
9002
+ (8638, '4069', 'Pullenvale', 'QLD', 'AU', 488, ' 4069 Pullenvale Queensland'),
9003
+ (8639, '4070', 'Moggill', 'QLD', 'AU', 488, ' 4070 Moggill Queensland'),
9004
+ (8640, '4070', 'Anstead', 'QLD', 'AU', 488, ' 4070 Anstead Queensland'),
9005
+ (8641, '4070', 'Bellbowrie', 'QLD', 'AU', 488, ' 4070 Bellbowrie Queensland'),
9006
+ (8642, '4072', 'University Of Queensland', 'QLD', 'AU', 488, ' 4072 University Of Queensland Queensland'),
9007
+ (8643, '4073', 'Seventeen Mile Rocks', 'QLD', 'AU', 488, ' 4073 Seventeen Mile Rocks Queensland'),
9008
+ (8644, '4073', 'Sinnamon Park', 'QLD', 'AU', 488, ' 4073 Sinnamon Park Queensland'),
9009
+ (8645, '4074', 'Sumner', 'QLD', 'AU', 488, ' 4074 Sumner Queensland'),
9010
+ (8646, '4074', 'Sumner Park', 'QLD', 'AU', 488, ' 4074 Sumner Park Queensland'),
9011
+ (8647, '4074', 'Westlake', 'QLD', 'AU', 488, ' 4074 Westlake Queensland'),
9012
+ (8648, '4074', 'Jamboree Heights', 'QLD', 'AU', 488, ' 4074 Jamboree Heights Queensland'),
9013
+ (8649, '4074', 'Jindalee', 'QLD', 'AU', 488, ' 4074 Jindalee Queensland'),
9014
+ (8650, '4074', 'Middle Park', 'QLD', 'AU', 488, ' 4074 Middle Park Queensland'),
9015
+ (8651, '4074', 'Mount Ommaney', 'QLD', 'AU', 488, ' 4074 Mount Ommaney Queensland'),
9016
+ (8652, '4074', 'Riverhills', 'QLD', 'AU', 488, ' 4074 Riverhills Queensland'),
9017
+ (8653, '4075', 'Oxley', 'QLD', 'AU', 488, ' 4075 Oxley Queensland'),
9018
+ (8654, '4075', 'Sherwood', 'QLD', 'AU', 488, ' 4075 Sherwood Queensland'),
9019
+ (8655, '4075', 'Corinda', 'QLD', 'AU', 488, ' 4075 Corinda Queensland'),
9020
+ (8656, '4075', 'Graceville', 'QLD', 'AU', 488, ' 4075 Graceville Queensland'),
9021
+ (8657, '4075', 'Graceville East', 'QLD', 'AU', 488, ' 4075 Graceville East Queensland'),
9022
+ (8658, '4076', 'Darra', 'QLD', 'AU', 488, ' 4076 Darra Queensland'),
9023
+ (8659, '4076', 'Wacol', 'QLD', 'AU', 488, ' 4076 Wacol Queensland'),
9024
+ (8660, '4077', 'Richlands', 'QLD', 'AU', 488, ' 4077 Richlands Queensland'),
9025
+ (8661, '4077', 'Doolandella', 'QLD', 'AU', 488, ' 4077 Doolandella Queensland'),
9026
+ (8662, '4077', 'Durack', 'QLD', 'AU', 488, ' 4077 Durack Queensland'),
9027
+ (8663, '4077', 'Inala', 'QLD', 'AU', 488, ' 4077 Inala Queensland'),
9028
+ (8664, '4077', 'Inala East', 'QLD', 'AU', 488, ' 4077 Inala East Queensland'),
9029
+ (8665, '4077', 'Inala Heights', 'QLD', 'AU', 488, ' 4077 Inala Heights Queensland'),
9030
+ (8666, '4078', 'Forest Lake', 'QLD', 'AU', 488, ' 4078 Forest Lake Queensland'),
9031
+ (8667, '4078', 'Ellen Grove', 'QLD', 'AU', 488, ' 4078 Ellen Grove Queensland'),
9032
+ (8668, '4101', 'West End', 'QLD', 'AU', 488, ' 4101 West End Queensland'),
9033
+ (8669, '4101', 'South Brisbane', 'QLD', 'AU', 488, ' 4101 South Brisbane Queensland'),
9034
+ (8670, '4101', 'Highgate Hill', 'QLD', 'AU', 488, ' 4101 Highgate Hill Queensland'),
9035
+ (8671, '4102', 'Dutton Park', 'QLD', 'AU', 488, ' 4102 Dutton Park Queensland'),
9036
+ (8672, '4102', 'Buranda', 'QLD', 'AU', 488, ' 4102 Buranda Queensland'),
9037
+ (8673, '4102', 'Woolloongabba', 'QLD', 'AU', 488, ' 4102 Woolloongabba Queensland'),
9038
+ (8674, '4103', 'Fairfield', 'QLD', 'AU', 488, ' 4103 Fairfield Queensland'),
9039
+ (8675, '4103', 'Fairfield Gardens', 'QLD', 'AU', 488, ' 4103 Fairfield Gardens Queensland'),
9040
+ (8676, '4103', 'Annerley', 'QLD', 'AU', 488, ' 4103 Annerley Queensland'),
9041
+ (8677, '4104', 'Yeronga', 'QLD', 'AU', 488, ' 4104 Yeronga Queensland'),
9042
+ (8678, '4105', 'Yeerongpilly', 'QLD', 'AU', 488, ' 4105 Yeerongpilly Queensland'),
9043
+ (8679, '4105', 'Tennyson', 'QLD', 'AU', 488, ' 4105 Tennyson Queensland'),
9044
+ (8680, '4105', 'Moorooka', 'QLD', 'AU', 488, ' 4105 Moorooka Queensland'),
9045
+ (8681, '4106', 'Rocklea', 'QLD', 'AU', 488, ' 4106 Rocklea Queensland'),
9046
+ (8682, '4106', 'Brisbane Market', 'QLD', 'AU', 488, ' 4106 Brisbane Market Queensland'),
9047
+ (8683, '4107', 'Salisbury', 'QLD', 'AU', 488, ' 4107 Salisbury Queensland'),
9048
+ (8684, '4107', 'Salisbury East', 'QLD', 'AU', 488, ' 4107 Salisbury East Queensland'),
9049
+ (8685, '4108', 'Coopers Plains', 'QLD', 'AU', 488, ' 4108 Coopers Plains Queensland'),
9050
+ (8686, '4108', 'Archerfield', 'QLD', 'AU', 488, ' 4108 Archerfield Queensland'),
9051
+ (8687, '4109', 'Macgregor', 'QLD', 'AU', 488, ' 4109 Macgregor Queensland'),
9052
+ (8688, '4109', 'Robertson', 'QLD', 'AU', 488, ' 4109 Robertson Queensland'),
9053
+ (8689, '4109', 'Sunnybank', 'QLD', 'AU', 488, ' 4109 Sunnybank Queensland'),
9054
+ (8690, '4109', 'Sunnybank Hills', 'QLD', 'AU', 488, ' 4109 Sunnybank Hills Queensland'),
9055
+ (8691, '4109', 'Sunnybank South', 'QLD', 'AU', 488, ' 4109 Sunnybank South Queensland'),
9056
+ (8692, '4110', 'Willawong', 'QLD', 'AU', 488, ' 4110 Willawong Queensland'),
9057
+ (8693, '4110', 'Pallara', 'QLD', 'AU', 488, ' 4110 Pallara Queensland'),
9058
+ (8694, '4110', 'Larapinta', 'QLD', 'AU', 488, ' 4110 Larapinta Queensland'),
9059
+ (8695, '4110', 'Heathwood', 'QLD', 'AU', 488, ' 4110 Heathwood Queensland'),
9060
+ (8696, '4110', 'Heathwood Df', 'QLD', 'AU', 488, ' 4110 Heathwood Df Queensland'),
9061
+ (8697, '4110', 'Acacia Ridge', 'QLD', 'AU', 488, ' 4110 Acacia Ridge Queensland'),
9062
+ (8698, '4111', 'Nathan', 'QLD', 'AU', 488, ' 4111 Nathan Queensland'),
9063
+ (8699, '4112', 'Kuraby', 'QLD', 'AU', 488, ' 4112 Kuraby Queensland'),
9064
+ (8700, '4113', 'Eight Mile Plains', 'QLD', 'AU', 488, ' 4113 Eight Mile Plains Queensland'),
9065
+ (8701, '4113', 'Runcorn', 'QLD', 'AU', 488, ' 4113 Runcorn Queensland'),
9066
+ (8702, '4114', 'Kingston', 'QLD', 'AU', 488, ' 4114 Kingston Queensland'),
9067
+ (8703, '4114', 'Logan Central', 'QLD', 'AU', 488, ' 4114 Logan Central Queensland'),
9068
+ (8704, '4114', 'Logan City', 'QLD', 'AU', 488, ' 4114 Logan City Queensland'),
9069
+ (8705, '4114', 'Woodridge', 'QLD', 'AU', 488, ' 4114 Woodridge Queensland'),
9070
+ (8706, '4115', 'Parkinson', 'QLD', 'AU', 488, ' 4115 Parkinson Queensland'),
9071
+ (8707, '4115', 'Algester', 'QLD', 'AU', 488, ' 4115 Algester Queensland'),
9072
+ (8708, '4116', 'Drewvale', 'QLD', 'AU', 488, ' 4116 Drewvale Queensland'),
9073
+ (8709, '4116', 'Calamvale', 'QLD', 'AU', 488, ' 4116 Calamvale Queensland'),
9074
+ (8710, '4116', 'Stretton', 'QLD', 'AU', 488, ' 4116 Stretton Queensland'),
9075
+ (8711, '4117', 'Berrinba', 'QLD', 'AU', 488, ' 4117 Berrinba Queensland'),
9076
+ (8712, '4117', 'Karawatha', 'QLD', 'AU', 488, ' 4117 Karawatha Queensland'),
9077
+ (8713, '4118', 'Heritage Park', 'QLD', 'AU', 488, ' 4118 Heritage Park Queensland'),
9078
+ (8714, '4118', 'Hillcrest', 'QLD', 'AU', 488, ' 4118 Hillcrest Queensland'),
9079
+ (8715, '4118', 'Regents Park', 'QLD', 'AU', 488, ' 4118 Regents Park Queensland'),
9080
+ (8716, '4118', 'Browns Plains', 'QLD', 'AU', 488, ' 4118 Browns Plains Queensland'),
9081
+ (8717, '4118', 'Forestdale', 'QLD', 'AU', 488, ' 4118 Forestdale Queensland'),
9082
+ (8718, '4119', 'Underwood', 'QLD', 'AU', 488, ' 4119 Underwood Queensland'),
9083
+ (8719, '4120', 'Stones Corner', 'QLD', 'AU', 488, ' 4120 Stones Corner Queensland'),
9084
+ (8720, '4120', 'Greenslopes', 'QLD', 'AU', 488, ' 4120 Greenslopes Queensland'),
9085
+ (8721, '4121', 'Tarragindi', 'QLD', 'AU', 488, ' 4121 Tarragindi Queensland'),
9086
+ (8722, '4121', 'Wellers Hill', 'QLD', 'AU', 488, ' 4121 Wellers Hill Queensland'),
9087
+ (8723, '4121', 'Holland Park', 'QLD', 'AU', 488, ' 4121 Holland Park Queensland'),
9088
+ (8724, '4121', 'Holland Park East', 'QLD', 'AU', 488, ' 4121 Holland Park East Queensland'),
9089
+ (8725, '4121', 'Holland Park West', 'QLD', 'AU', 488, ' 4121 Holland Park West Queensland'),
9090
+ (8726, '4122', 'Mansfield', 'QLD', 'AU', 488, ' 4122 Mansfield Queensland'),
9091
+ (8727, '4122', 'Mount Gravatt', 'QLD', 'AU', 488, ' 4122 Mount Gravatt Queensland'),
9092
+ (8728, '4122', 'Mount Gravatt East', 'QLD', 'AU', 488, ' 4122 Mount Gravatt East Queensland'),
9093
+ (8729, '4122', 'Upper Mount Gravatt', 'QLD', 'AU', 488, ' 4122 Upper Mount Gravatt Queensland'),
9094
+ (8730, '4122', 'Wishart', 'QLD', 'AU', 488, ' 4122 Wishart Queensland'),
9095
+ (8731, '4123', 'Rochedale', 'QLD', 'AU', 488, ' 4123 Rochedale Queensland'),
9096
+ (8732, '4123', 'Rochedale South', 'QLD', 'AU', 488, ' 4123 Rochedale South Queensland'),
9097
+ (8733, '4124', 'Greenbank', 'QLD', 'AU', 488, ' 4124 Greenbank Queensland'),
9098
+ (8734, '4124', 'Boronia Heights', 'QLD', 'AU', 488, ' 4124 Boronia Heights Queensland'),
9099
+ (8735, '4124', 'New Beith', 'QLD', 'AU', 488, ' 4124 New Beith Queensland'),
9100
+ (8736, '4124', 'Lyons', 'QLD', 'AU', 488, ' 4124 Lyons Queensland'),
9101
+ (8737, '4124', 'Spring Mountain', 'QLD', 'AU', 488, ' 4124 Spring Mountain Queensland'),
9102
+ (8738, '4125', 'Munruben', 'QLD', 'AU', 488, ' 4125 Munruben Queensland'),
9103
+ (8739, '4125', 'Park Ridge', 'QLD', 'AU', 488, ' 4125 Park Ridge Queensland'),
9104
+ (8740, '4125', 'Park Ridge South', 'QLD', 'AU', 488, ' 4125 Park Ridge South Queensland'),
9105
+ (8741, '4127', 'Priestdale', 'QLD', 'AU', 488, ' 4127 Priestdale Queensland'),
9106
+ (8742, '4127', 'Daisy Hill', 'QLD', 'AU', 488, ' 4127 Daisy Hill Queensland'),
9107
+ (8743, '4127', 'Slacks Creek', 'QLD', 'AU', 488, ' 4127 Slacks Creek Queensland'),
9108
+ (8744, '4127', 'Springwood', 'QLD', 'AU', 488, ' 4127 Springwood Queensland'),
9109
+ (8745, '4128', 'Shailer Park', 'QLD', 'AU', 488, ' 4128 Shailer Park Queensland'),
9110
+ (8746, '4128', 'Tanah Merah', 'QLD', 'AU', 488, ' 4128 Tanah Merah Queensland'),
9111
+ (8747, '4129', 'Loganholme', 'QLD', 'AU', 488, ' 4129 Loganholme Queensland'),
9112
+ (8748, '4130', 'Cornubia', 'QLD', 'AU', 488, ' 4130 Cornubia Queensland'),
9113
+ (8749, '4130', 'Carbrook', 'QLD', 'AU', 488, ' 4130 Carbrook Queensland'),
9114
+ (8750, '4131', 'Loganlea', 'QLD', 'AU', 488, ' 4131 Loganlea Queensland'),
9115
+ (8751, '4131', 'Meadowbrook', 'QLD', 'AU', 488, ' 4131 Meadowbrook Queensland'),
9116
+ (8752, '4132', 'Marsden', 'QLD', 'AU', 488, ' 4132 Marsden Queensland'),
9117
+ (8753, '4132', 'Crestmead', 'QLD', 'AU', 488, ' 4132 Crestmead Queensland'),
9118
+ (8754, '4133', 'Chambers Flat', 'QLD', 'AU', 488, ' 4133 Chambers Flat Queensland'),
9119
+ (8755, '4133', 'Logan Reserve', 'QLD', 'AU', 488, ' 4133 Logan Reserve Queensland'),
9120
+ (8756, '4133', 'Waterford', 'QLD', 'AU', 488, ' 4133 Waterford Queensland'),
9121
+ (8757, '4133', 'Waterford West', 'QLD', 'AU', 488, ' 4133 Waterford West Queensland'),
9122
+ (8758, '4151', 'Coorparoo', 'QLD', 'AU', 488, ' 4151 Coorparoo Queensland'),
9123
+ (8759, '4152', 'Carina', 'QLD', 'AU', 488, ' 4152 Carina Queensland'),
9124
+ (8760, '4152', 'Carina Heights', 'QLD', 'AU', 488, ' 4152 Carina Heights Queensland'),
9125
+ (8761, '4152', 'Carindale', 'QLD', 'AU', 488, ' 4152 Carindale Queensland'),
9126
+ (8762, '4152', 'Camp Hill', 'QLD', 'AU', 488, ' 4152 Camp Hill Queensland'),
9127
+ (8763, '4153', 'Belmont', 'QLD', 'AU', 488, ' 4153 Belmont Queensland'),
9128
+ (8764, '4154', 'Ransome', 'QLD', 'AU', 488, ' 4154 Ransome Queensland'),
9129
+ (8765, '4154', 'Gumdale', 'QLD', 'AU', 488, ' 4154 Gumdale Queensland'),
9130
+ (8766, '4154', 'Wakerley', 'QLD', 'AU', 488, ' 4154 Wakerley Queensland'),
9131
+ (8767, '4155', 'Chandler', 'QLD', 'AU', 488, ' 4155 Chandler Queensland'),
9132
+ (8768, '4156', 'Burbank', 'QLD', 'AU', 488, ' 4156 Burbank Queensland'),
9133
+ (8769, '4156', 'Mackenzie', 'QLD', 'AU', 488, ' 4156 Mackenzie Queensland'),
9134
+ (8770, '4157', 'Capalaba', 'QLD', 'AU', 488, ' 4157 Capalaba Queensland'),
9135
+ (8771, '4157', 'Sheldon', 'QLD', 'AU', 488, ' 4157 Sheldon Queensland'),
9136
+ (8772, '4158', 'Thorneside', 'QLD', 'AU', 488, ' 4158 Thorneside Queensland'),
9137
+ (8773, '4159', 'Birkdale', 'QLD', 'AU', 488, ' 4159 Birkdale Queensland'),
9138
+ (8774, '4160', 'Ormiston', 'QLD', 'AU', 488, ' 4160 Ormiston Queensland'),
9139
+ (8775, '4160', 'Wellington Point', 'QLD', 'AU', 488, ' 4160 Wellington Point Queensland'),
9140
+ (8776, '4161', 'Alexandra Hills', 'QLD', 'AU', 488, ' 4161 Alexandra Hills Queensland'),
9141
+ (8777, '4163', 'Cleveland', 'QLD', 'AU', 488, ' 4163 Cleveland Queensland'),
9142
+ (8778, '4164', 'Thornlands', 'QLD', 'AU', 488, ' 4164 Thornlands Queensland'),
9143
+ (8779, '4165', 'Victoria Point', 'QLD', 'AU', 488, ' 4165 Victoria Point Queensland'),
9144
+ (8780, '4165', 'Victoria Point West', 'QLD', 'AU', 488, ' 4165 Victoria Point West Queensland'),
9145
+ (8781, '4165', 'Redland Bay', 'QLD', 'AU', 488, ' 4165 Redland Bay Queensland'),
9146
+ (8782, '4165', 'Mount Cotton', 'QLD', 'AU', 488, ' 4165 Mount Cotton Queensland'),
9147
+ (8783, '4169', 'East Brisbane', 'QLD', 'AU', 488, ' 4169 East Brisbane Queensland'),
9148
+ (8784, '4169', 'Kangaroo Point', 'QLD', 'AU', 488, ' 4169 Kangaroo Point Queensland'),
9149
+ (8785, '4170', 'Cannon Hill', 'QLD', 'AU', 488, ' 4170 Cannon Hill Queensland'),
9150
+ (8786, '4170', 'Norman Park', 'QLD', 'AU', 488, ' 4170 Norman Park Queensland'),
9151
+ (8787, '4170', 'Morningside', 'QLD', 'AU', 488, ' 4170 Morningside Queensland'),
9152
+ (8788, '4170', 'Seven Hills', 'QLD', 'AU', 488, ' 4170 Seven Hills Queensland'),
9153
+ (8789, '4171', 'Bulimba', 'QLD', 'AU', 488, ' 4171 Bulimba Queensland'),
9154
+ (8790, '4171', 'Hawthorne', 'QLD', 'AU', 488, ' 4171 Hawthorne Queensland'),
9155
+ (8791, '4171', 'Balmoral', 'QLD', 'AU', 488, ' 4171 Balmoral Queensland'),
9156
+ (8792, '4172', 'Murarrie', 'QLD', 'AU', 488, ' 4172 Murarrie Queensland'),
9157
+ (8793, '4173', 'Tingalpa', 'QLD', 'AU', 488, ' 4173 Tingalpa Queensland'),
9158
+ (8794, '4174', 'Hemmant', 'QLD', 'AU', 488, ' 4174 Hemmant Queensland'),
9159
+ (8795, '4178', 'Lytton', 'QLD', 'AU', 488, ' 4178 Lytton Queensland'),
9160
+ (8796, '4178', 'Port Of Brisbane', 'QLD', 'AU', 488, ' 4178 Port Of Brisbane Queensland'),
9161
+ (8797, '4178', 'Wynnum', 'QLD', 'AU', 488, ' 4178 Wynnum Queensland'),
9162
+ (8798, '4178', 'Wynnum North', 'QLD', 'AU', 488, ' 4178 Wynnum North Queensland'),
9163
+ (8799, '4178', 'Wynnum Plaza', 'QLD', 'AU', 488, ' 4178 Wynnum Plaza Queensland'),
9164
+ (8800, '4178', 'Wynnum West', 'QLD', 'AU', 488, ' 4178 Wynnum West Queensland'),
9165
+ (8801, '4179', 'Manly', 'QLD', 'AU', 488, ' 4179 Manly Queensland'),
9166
+ (8802, '4179', 'Manly West', 'QLD', 'AU', 488, ' 4179 Manly West Queensland'),
9167
+ (8803, '4179', 'Lota', 'QLD', 'AU', 488, ' 4179 Lota Queensland'),
9168
+ (8804, '4183', 'North Stradbroke Island', 'QLD', 'AU', 488, ' 4183 North Stradbroke Island Queensland'),
9169
+ (8805, '4183', 'Dunwich', 'QLD', 'AU', 488, ' 4183 Dunwich Queensland'),
9170
+ (8806, '4183', 'Amity', 'QLD', 'AU', 488, ' 4183 Amity Queensland'),
9171
+ (8807, '4183', 'Amity Point', 'QLD', 'AU', 488, ' 4183 Amity Point Queensland'),
9172
+ (8808, '4183', 'Point Lookout', 'QLD', 'AU', 488, ' 4183 Point Lookout Queensland'),
9173
+ (8809, '4184', 'Coochiemudlo Island', 'QLD', 'AU', 488, ' 4184 Coochiemudlo Island Queensland'),
9174
+ (8810, '4184', 'Russell Island', 'QLD', 'AU', 488, ' 4184 Russell Island Queensland'),
9175
+ (8811, '4184', 'Peel Island', 'QLD', 'AU', 488, ' 4184 Peel Island Queensland'),
9176
+ (8812, '4184', 'Perulpa Island', 'QLD', 'AU', 488, ' 4184 Perulpa Island Queensland'),
9177
+ (8813, '4184', 'Macleay Island', 'QLD', 'AU', 488, ' 4184 Macleay Island Queensland'),
9178
+ (8814, '4184', 'Lamb Island', 'QLD', 'AU', 488, ' 4184 Lamb Island Queensland'),
9179
+ (8815, '4184', 'Karragarra Island', 'QLD', 'AU', 488, ' 4184 Karragarra Island Queensland'),
9180
+ (8816, '4205', 'Bethania', 'QLD', 'AU', 488, ' 4205 Bethania Queensland'),
9181
+ (8817, '4207', 'Cedar Creek', 'QLD', 'AU', 488, ' 4207 Cedar Creek Queensland'),
9182
+ (8818, '4207', 'Eagleby', 'QLD', 'AU', 488, ' 4207 Eagleby Queensland'),
9183
+ (8819, '4207', 'Edens Landing', 'QLD', 'AU', 488, ' 4207 Edens Landing Queensland'),
9184
+ (8820, '4207', 'Buccan', 'QLD', 'AU', 488, ' 4207 Buccan Queensland'),
9185
+ (8821, '4207', 'Bannockburn', 'QLD', 'AU', 488, ' 4207 Bannockburn Queensland'),
9186
+ (8822, '4207', 'Beenleigh', 'QLD', 'AU', 488, ' 4207 Beenleigh Queensland'),
9187
+ (8823, '4207', 'Belivah', 'QLD', 'AU', 488, ' 4207 Belivah Queensland'),
9188
+ (8824, '4207', 'Holmview', 'QLD', 'AU', 488, ' 4207 Holmview Queensland'),
9189
+ (8825, '4207', 'Logan Village', 'QLD', 'AU', 488, ' 4207 Logan Village Queensland'),
9190
+ (8826, '4207', 'Luscombe', 'QLD', 'AU', 488, ' 4207 Luscombe Queensland'),
9191
+ (8827, '4207', 'Mount Warren Park', 'QLD', 'AU', 488, ' 4207 Mount Warren Park Queensland');
9192
+ INSERT INTO {$this->getTable('candf_pcs')} (`entity_id`, `postcode`, `city`, `state`, `country_id`, `region_id`, `fulltext`) VALUES
9193
+ (8828, '4207', 'Bahrs Scrub', 'QLD', 'AU', 488, ' 4207 Bahrs Scrub Queensland'),
9194
+ (8829, '4207', 'Alberton', 'QLD', 'AU', 488, ' 4207 Alberton Queensland'),
9195
+ (8830, '4207', 'Stapylton', 'QLD', 'AU', 488, ' 4207 Stapylton Queensland'),
9196
+ (8831, '4207', 'Steiglitz', 'QLD', 'AU', 488, ' 4207 Steiglitz Queensland'),
9197
+ (8832, '4207', 'Windaroo', 'QLD', 'AU', 488, ' 4207 Windaroo Queensland'),
9198
+ (8833, '4207', 'Wolffdene', 'QLD', 'AU', 488, ' 4207 Wolffdene Queensland'),
9199
+ (8834, '4207', 'Woongoolba', 'QLD', 'AU', 488, ' 4207 Woongoolba Queensland'),
9200
+ (8835, '4207', 'Yarrabilba', 'QLD', 'AU', 488, ' 4207 Yarrabilba Queensland'),
9201
+ (8836, '4207', 'Yatala', 'QLD', 'AU', 488, ' 4207 Yatala Queensland'),
9202
+ (8837, '4208', 'Norwell', 'QLD', 'AU', 488, ' 4208 Norwell Queensland'),
9203
+ (8838, '4208', 'Ormeau', 'QLD', 'AU', 488, ' 4208 Ormeau Queensland'),
9204
+ (8839, '4208', 'Ormeau Hills', 'QLD', 'AU', 488, ' 4208 Ormeau Hills Queensland'),
9205
+ (8840, '4208', 'Jacobs Well', 'QLD', 'AU', 488, ' 4208 Jacobs Well Queensland'),
9206
+ (8841, '4208', 'Kingsholme', 'QLD', 'AU', 488, ' 4208 Kingsholme Queensland'),
9207
+ (8842, '4208', 'Gilberton', 'QLD', 'AU', 488, ' 4208 Gilberton Queensland'),
9208
+ (8843, '4209', 'Coomera', 'QLD', 'AU', 488, ' 4209 Coomera Queensland'),
9209
+ (8844, '4209', 'Pimpama', 'QLD', 'AU', 488, ' 4209 Pimpama Queensland'),
9210
+ (8845, '4209', 'Willow Vale', 'QLD', 'AU', 488, ' 4209 Willow Vale Queensland'),
9211
+ (8846, '4209', 'Upper Coomera', 'QLD', 'AU', 488, ' 4209 Upper Coomera Queensland'),
9212
+ (8847, '4210', 'Studio Village', 'QLD', 'AU', 488, ' 4210 Studio Village Queensland'),
9213
+ (8848, '4210', 'Wongawallan', 'QLD', 'AU', 488, ' 4210 Wongawallan Queensland'),
9214
+ (8849, '4210', 'Oxenford', 'QLD', 'AU', 488, ' 4210 Oxenford Queensland'),
9215
+ (8850, '4210', 'Maudsland', 'QLD', 'AU', 488, ' 4210 Maudsland Queensland'),
9216
+ (8851, '4210', 'Guanaba', 'QLD', 'AU', 488, ' 4210 Guanaba Queensland'),
9217
+ (8852, '4211', 'Highland Park', 'QLD', 'AU', 488, ' 4211 Highland Park Queensland'),
9218
+ (8853, '4211', 'Gaven', 'QLD', 'AU', 488, ' 4211 Gaven Queensland'),
9219
+ (8854, '4211', 'Gilston', 'QLD', 'AU', 488, ' 4211 Gilston Queensland'),
9220
+ (8855, '4211', 'Binna Burra', 'QLD', 'AU', 488, ' 4211 Binna Burra Queensland'),
9221
+ (8856, '4211', 'Carrara', 'QLD', 'AU', 488, ' 4211 Carrara Queensland'),
9222
+ (8857, '4211', 'Clagiraba', 'QLD', 'AU', 488, ' 4211 Clagiraba Queensland'),
9223
+ (8858, '4211', 'Lower Beechmont', 'QLD', 'AU', 488, ' 4211 Lower Beechmont Queensland'),
9224
+ (8859, '4211', 'Mount Nathan', 'QLD', 'AU', 488, ' 4211 Mount Nathan Queensland'),
9225
+ (8860, '4211', 'Pacific Pines', 'QLD', 'AU', 488, ' 4211 Pacific Pines Queensland'),
9226
+ (8861, '4211', 'Natural Bridge', 'QLD', 'AU', 488, ' 4211 Natural Bridge Queensland'),
9227
+ (8862, '4211', 'Nerang', 'QLD', 'AU', 488, ' 4211 Nerang Queensland'),
9228
+ (8863, '4211', 'Numinbah Valley', 'QLD', 'AU', 488, ' 4211 Numinbah Valley Queensland'),
9229
+ (8864, '4211', 'Advancetown', 'QLD', 'AU', 488, ' 4211 Advancetown Queensland'),
9230
+ (8865, '4211', 'Beechmont', 'QLD', 'AU', 488, ' 4211 Beechmont Queensland'),
9231
+ (8866, '4211', 'Southern Lamington', 'QLD', 'AU', 488, ' 4211 Southern Lamington Queensland'),
9232
+ (8867, '4212', 'Sanctuary Cove', 'QLD', 'AU', 488, ' 4212 Sanctuary Cove Queensland'),
9233
+ (8868, '4212', 'Hope Island', 'QLD', 'AU', 488, ' 4212 Hope Island Queensland'),
9234
+ (8869, '4212', 'Helensvale', 'QLD', 'AU', 488, ' 4212 Helensvale Queensland'),
9235
+ (8870, '4212', 'Helensvale Town Centre', 'QLD', 'AU', 488, ' 4212 Helensvale Town Centre Queensland'),
9236
+ (8871, '4213', 'Bonogin', 'QLD', 'AU', 488, ' 4213 Bonogin Queensland'),
9237
+ (8872, '4213', 'Mudgeeraba', 'QLD', 'AU', 488, ' 4213 Mudgeeraba Queensland'),
9238
+ (8873, '4213', 'Neranwood', 'QLD', 'AU', 488, ' 4213 Neranwood Queensland'),
9239
+ (8874, '4213', 'Austinville', 'QLD', 'AU', 488, ' 4213 Austinville Queensland'),
9240
+ (8875, '4213', 'Springbrook', 'QLD', 'AU', 488, ' 4213 Springbrook Queensland'),
9241
+ (8876, '4213', 'Tallai', 'QLD', 'AU', 488, ' 4213 Tallai Queensland'),
9242
+ (8877, '4213', 'Worongary', 'QLD', 'AU', 488, ' 4213 Worongary Queensland'),
9243
+ (8878, '4214', 'Arundel', 'QLD', 'AU', 488, ' 4214 Arundel Queensland'),
9244
+ (8879, '4214', 'Ashmore', 'QLD', 'AU', 488, ' 4214 Ashmore Queensland'),
9245
+ (8880, '4214', 'Ashmore City', 'QLD', 'AU', 488, ' 4214 Ashmore City Queensland'),
9246
+ (8881, '4214', 'Parkwood', 'QLD', 'AU', 488, ' 4214 Parkwood Queensland'),
9247
+ (8882, '4214', 'Molendinar', 'QLD', 'AU', 488, ' 4214 Molendinar Queensland'),
9248
+ (8883, '4215', 'Labrador', 'QLD', 'AU', 488, ' 4215 Labrador Queensland'),
9249
+ (8884, '4215', 'Chirn Park', 'QLD', 'AU', 488, ' 4215 Chirn Park Queensland'),
9250
+ (8885, '4215', 'Australia Fair', 'QLD', 'AU', 488, ' 4215 Australia Fair Queensland'),
9251
+ (8886, '4215', 'Southport', 'QLD', 'AU', 488, ' 4215 Southport Queensland'),
9252
+ (8887, '4215', 'Southport Park', 'QLD', 'AU', 488, ' 4215 Southport Park Queensland'),
9253
+ (8888, '4216', 'South Stradbroke', 'QLD', 'AU', 488, ' 4216 South Stradbroke Queensland'),
9254
+ (8889, '4216', 'Runaway Bay', 'QLD', 'AU', 488, ' 4216 Runaway Bay Queensland'),
9255
+ (8890, '4216', 'Biggera Waters', 'QLD', 'AU', 488, ' 4216 Biggera Waters Queensland'),
9256
+ (8891, '4216', 'Hollywell', 'QLD', 'AU', 488, ' 4216 Hollywell Queensland'),
9257
+ (8892, '4216', 'Coombabah', 'QLD', 'AU', 488, ' 4216 Coombabah Queensland'),
9258
+ (8893, '4216', 'Paradise Point', 'QLD', 'AU', 488, ' 4216 Paradise Point Queensland'),
9259
+ (8894, '4217', 'Main Beach', 'QLD', 'AU', 488, ' 4217 Main Beach Queensland'),
9260
+ (8895, '4217', 'Isle Of Capri', 'QLD', 'AU', 488, ' 4217 Isle Of Capri Queensland'),
9261
+ (8896, '4217', 'Gold Coast', 'QLD', 'AU', 488, ' 4217 Gold Coast Queensland'),
9262
+ (8897, '4217', 'Chevron Island', 'QLD', 'AU', 488, ' 4217 Chevron Island Queensland'),
9263
+ (8898, '4217', 'Bundall', 'QLD', 'AU', 488, ' 4217 Bundall Queensland'),
9264
+ (8899, '4217', 'Benowa', 'QLD', 'AU', 488, ' 4217 Benowa Queensland'),
9265
+ (8900, '4217', 'Surfers Paradise', 'QLD', 'AU', 488, ' 4217 Surfers Paradise Queensland'),
9266
+ (8901, '4218', 'Broadbeach', 'QLD', 'AU', 488, ' 4218 Broadbeach Queensland'),
9267
+ (8902, '4218', 'Broadbeach Waters', 'QLD', 'AU', 488, ' 4218 Broadbeach Waters Queensland'),
9268
+ (8903, '4218', 'Mermaid Beach', 'QLD', 'AU', 488, ' 4218 Mermaid Beach Queensland'),
9269
+ (8904, '4218', 'Mermaid Waters', 'QLD', 'AU', 488, ' 4218 Mermaid Waters Queensland'),
9270
+ (8905, '4218', 'Q Supercentre', 'QLD', 'AU', 488, ' 4218 Q Supercentre Queensland'),
9271
+ (8906, '4218', 'Nobby Beach', 'QLD', 'AU', 488, ' 4218 Nobby Beach Queensland'),
9272
+ (8907, '4218', 'Pacific Fair', 'QLD', 'AU', 488, ' 4218 Pacific Fair Queensland'),
9273
+ (8908, '4219', 'West Burleigh', 'QLD', 'AU', 488, ' 4219 West Burleigh Queensland'),
9274
+ (8909, '4220', 'Miami', 'QLD', 'AU', 488, ' 4220 Miami Queensland'),
9275
+ (8910, '4220', 'Burleigh', 'QLD', 'AU', 488, ' 4220 Burleigh Queensland'),
9276
+ (8911, '4220', 'Burleigh Heads', 'QLD', 'AU', 488, ' 4220 Burleigh Heads Queensland'),
9277
+ (8912, '4220', 'Burleigh Town', 'QLD', 'AU', 488, ' 4220 Burleigh Town Queensland'),
9278
+ (8913, '4220', 'Burleigh Waters', 'QLD', 'AU', 488, ' 4220 Burleigh Waters Queensland'),
9279
+ (8914, '4221', 'Elanora', 'QLD', 'AU', 488, ' 4221 Elanora Queensland'),
9280
+ (8915, '4221', 'Palm Beach', 'QLD', 'AU', 488, ' 4221 Palm Beach Queensland'),
9281
+ (8916, '4222', 'Griffith University', 'QLD', 'AU', 488, ' 4222 Griffith University Queensland'),
9282
+ (8917, '4223', 'Currumbin', 'QLD', 'AU', 488, ' 4223 Currumbin Queensland'),
9283
+ (8918, '4223', 'Currumbin Valley', 'QLD', 'AU', 488, ' 4223 Currumbin Valley Queensland'),
9284
+ (8919, '4223', 'Currumbin Waters', 'QLD', 'AU', 488, ' 4223 Currumbin Waters Queensland'),
9285
+ (8920, '4224', 'Tugun', 'QLD', 'AU', 488, ' 4224 Tugun Queensland'),
9286
+ (8921, '4224', 'Tugun Heights', 'QLD', 'AU', 488, ' 4224 Tugun Heights Queensland'),
9287
+ (8922, '4225', 'Coolangatta', 'QLD', 'AU', 488, ' 4225 Coolangatta Queensland'),
9288
+ (8923, '4225', 'Bilinga', 'QLD', 'AU', 488, ' 4225 Bilinga Queensland'),
9289
+ (8924, '4226', 'Clear Island Waters', 'QLD', 'AU', 488, ' 4226 Clear Island Waters Queensland'),
9290
+ (8925, '4226', 'Robina', 'QLD', 'AU', 488, ' 4226 Robina Queensland'),
9291
+ (8926, '4226', 'Merrimac', 'QLD', 'AU', 488, ' 4226 Merrimac Queensland'),
9292
+ (8927, '4227', 'Reedy Creek', 'QLD', 'AU', 488, ' 4227 Reedy Creek Queensland'),
9293
+ (8928, '4227', 'Varsity Lakes', 'QLD', 'AU', 488, ' 4227 Varsity Lakes Queensland'),
9294
+ (8929, '4228', 'Tallebudgera', 'QLD', 'AU', 488, ' 4228 Tallebudgera Queensland'),
9295
+ (8930, '4228', 'Tallebudgera Valley', 'QLD', 'AU', 488, ' 4228 Tallebudgera Valley Queensland'),
9296
+ (8931, '4229', 'Bond University', 'QLD', 'AU', 488, ' 4229 Bond University Queensland'),
9297
+ (8932, '4230', 'Robina Town Centre', 'QLD', 'AU', 488, ' 4230 Robina Town Centre Queensland'),
9298
+ (8933, '4270', 'Tamborine', 'QLD', 'AU', 488, ' 4270 Tamborine Queensland'),
9299
+ (8934, '4271', 'Eagle Heights', 'QLD', 'AU', 488, ' 4271 Eagle Heights Queensland'),
9300
+ (8935, '4272', 'North Tamborine', 'QLD', 'AU', 488, ' 4272 North Tamborine Queensland'),
9301
+ (8936, '4272', 'Mount Tamborine', 'QLD', 'AU', 488, ' 4272 Mount Tamborine Queensland'),
9302
+ (8937, '4272', 'Tamborine Mountain', 'QLD', 'AU', 488, ' 4272 Tamborine Mountain Queensland'),
9303
+ (8938, '4275', 'Witheren', 'QLD', 'AU', 488, ' 4275 Witheren Queensland'),
9304
+ (8939, '4275', 'Wonglepong', 'QLD', 'AU', 488, ' 4275 Wonglepong Queensland'),
9305
+ (8940, '4275', 'Sarabah', 'QLD', 'AU', 488, ' 4275 Sarabah Queensland'),
9306
+ (8941, '4275', 'Lamington National Park', 'QLD', 'AU', 488, ' 4275 Lamington National Park Queensland'),
9307
+ (8942, '4275', 'Illinbah', 'QLD', 'AU', 488, ' 4275 Illinbah Queensland'),
9308
+ (8943, '4275', 'Ferny Glen', 'QLD', 'AU', 488, ' 4275 Ferny Glen Queensland'),
9309
+ (8944, '4275', 'Flying Fox', 'QLD', 'AU', 488, ' 4275 Flying Fox Queensland'),
9310
+ (8945, '4275', 'Boyland', 'QLD', 'AU', 488, ' 4275 Boyland Queensland'),
9311
+ (8946, '4275', 'Canungra', 'QLD', 'AU', 488, ' 4275 Canungra Queensland'),
9312
+ (8947, '4275', 'Biddaddaba', 'QLD', 'AU', 488, ' 4275 Biddaddaba Queensland'),
9313
+ (8948, '4275', 'Benobble', 'QLD', 'AU', 488, ' 4275 Benobble Queensland'),
9314
+ (8949, '4280', 'Stockleigh', 'QLD', 'AU', 488, ' 4280 Stockleigh Queensland'),
9315
+ (8950, '4280', 'South Maclean', 'QLD', 'AU', 488, ' 4280 South Maclean Queensland'),
9316
+ (8951, '4280', 'Jimboomba', 'QLD', 'AU', 488, ' 4280 Jimboomba Queensland'),
9317
+ (8952, '4280', 'North Maclean', 'QLD', 'AU', 488, ' 4280 North Maclean Queensland'),
9318
+ (8953, '4285', 'Oaky Creek', 'QLD', 'AU', 488, ' 4285 Oaky Creek Queensland'),
9319
+ (8954, '4285', 'Nindooinbah', 'QLD', 'AU', 488, ' 4285 Nindooinbah Queensland'),
9320
+ (8955, '4285', 'Mundoolun', 'QLD', 'AU', 488, ' 4285 Mundoolun Queensland'),
9321
+ (8956, '4285', 'Mount Gipps', 'QLD', 'AU', 488, ' 4285 Mount Gipps Queensland'),
9322
+ (8957, '4285', 'Hillview', 'QLD', 'AU', 488, ' 4285 Hillview Queensland'),
9323
+ (8958, '4285', 'Kerry', 'QLD', 'AU', 488, ' 4285 Kerry Queensland'),
9324
+ (8959, '4285', 'Knapp Creek', 'QLD', 'AU', 488, ' 4285 Knapp Creek Queensland'),
9325
+ (8960, '4285', 'Kooralbyn', 'QLD', 'AU', 488, ' 4285 Kooralbyn Queensland'),
9326
+ (8961, '4285', 'Lamington', 'QLD', 'AU', 488, ' 4285 Lamington Queensland'),
9327
+ (8962, '4285', 'Laravale', 'QLD', 'AU', 488, ' 4285 Laravale Queensland'),
9328
+ (8963, '4285', 'Josephville', 'QLD', 'AU', 488, ' 4285 Josephville Queensland'),
9329
+ (8964, '4285', 'Kagaru', 'QLD', 'AU', 488, ' 4285 Kagaru Queensland'),
9330
+ (8965, '4285', 'Undullah', 'QLD', 'AU', 488, ' 4285 Undullah Queensland'),
9331
+ (8966, '4285', 'Veresdale', 'QLD', 'AU', 488, ' 4285 Veresdale Queensland'),
9332
+ (8967, '4285', 'Veresdale Scrub', 'QLD', 'AU', 488, ' 4285 Veresdale Scrub Queensland'),
9333
+ (8968, '4285', 'Tabooba', 'QLD', 'AU', 488, ' 4285 Tabooba Queensland'),
9334
+ (8969, '4285', 'Tabragalba', 'QLD', 'AU', 488, ' 4285 Tabragalba Queensland'),
9335
+ (8970, '4285', 'Tamrookum', 'QLD', 'AU', 488, ' 4285 Tamrookum Queensland'),
9336
+ (8971, '4285', 'Tamrookum Creek', 'QLD', 'AU', 488, ' 4285 Tamrookum Creek Queensland'),
9337
+ (8972, '4285', 'Woodhill', 'QLD', 'AU', 488, ' 4285 Woodhill Queensland'),
9338
+ (8973, '4285', 'Allenview', 'QLD', 'AU', 488, ' 4285 Allenview Queensland'),
9339
+ (8974, '4285', 'Beaudesert', 'QLD', 'AU', 488, ' 4285 Beaudesert Queensland'),
9340
+ (8975, '4285', 'Birnam', 'QLD', 'AU', 488, ' 4285 Birnam Queensland'),
9341
+ (8976, '4285', 'Chinghee Creek', 'QLD', 'AU', 488, ' 4285 Chinghee Creek Queensland'),
9342
+ (8977, '4285', 'Christmas Creek', 'QLD', 'AU', 488, ' 4285 Christmas Creek Queensland'),
9343
+ (8978, '4285', 'Bromelton', 'QLD', 'AU', 488, ' 4285 Bromelton Queensland'),
9344
+ (8979, '4285', 'Cainbable', 'QLD', 'AU', 488, ' 4285 Cainbable Queensland'),
9345
+ (8980, '4285', 'Cedar Grove', 'QLD', 'AU', 488, ' 4285 Cedar Grove Queensland'),
9346
+ (8981, '4285', 'Cedar Vale', 'QLD', 'AU', 488, ' 4285 Cedar Vale Queensland'),
9347
+ (8982, '4285', 'Cryna', 'QLD', 'AU', 488, ' 4285 Cryna Queensland'),
9348
+ (8983, '4285', 'Darlington', 'QLD', 'AU', 488, ' 4285 Darlington Queensland'),
9349
+ (8984, '4285', 'Gleneagle', 'QLD', 'AU', 488, ' 4285 Gleneagle Queensland'),
9350
+ (8985, '4285', 'Innisplain', 'QLD', 'AU', 488, ' 4285 Innisplain Queensland'),
9351
+ (8986, '4287', 'Barney View', 'QLD', 'AU', 488, ' 4287 Barney View Queensland'),
9352
+ (8987, '4287', 'Mount Barney', 'QLD', 'AU', 488, ' 4287 Mount Barney Queensland'),
9353
+ (8988, '4287', 'Mount Lindesay', 'QLD', 'AU', 488, ' 4287 Mount Lindesay Queensland'),
9354
+ (8989, '4287', 'Rathdowney', 'QLD', 'AU', 488, ' 4287 Rathdowney Queensland'),
9355
+ (8990, '4287', 'Palen Creek', 'QLD', 'AU', 488, ' 4287 Palen Creek Queensland'),
9356
+ (8991, '4287', 'Running Creek', 'QLD', 'AU', 488, ' 4287 Running Creek Queensland'),
9357
+ (8992, '4300', 'Brookwater', 'QLD', 'AU', 488, ' 4300 Brookwater Queensland'),
9358
+ (8993, '4300', 'Augustine Heights', 'QLD', 'AU', 488, ' 4300 Augustine Heights Queensland'),
9359
+ (8994, '4300', 'Bellbird Park', 'QLD', 'AU', 488, ' 4300 Bellbird Park Queensland'),
9360
+ (8995, '4300', 'Camira', 'QLD', 'AU', 488, ' 4300 Camira Queensland'),
9361
+ (8996, '4300', 'Carole Park', 'QLD', 'AU', 488, ' 4300 Carole Park Queensland'),
9362
+ (8997, '4300', 'Gailes', 'QLD', 'AU', 488, ' 4300 Gailes Queensland'),
9363
+ (8998, '4300', 'Goodna', 'QLD', 'AU', 488, ' 4300 Goodna Queensland'),
9364
+ (8999, '4300', 'Springfield', 'QLD', 'AU', 488, ' 4300 Springfield Queensland'),
9365
+ (9000, '4300', 'Springfield Central', 'QLD', 'AU', 488, ' 4300 Springfield Central Queensland'),
9366
+ (9001, '4300', 'Springfield Lakes', 'QLD', 'AU', 488, ' 4300 Springfield Lakes Queensland'),
9367
+ (9002, '4301', 'Redbank', 'QLD', 'AU', 488, ' 4301 Redbank Queensland'),
9368
+ (9003, '4301', 'Redbank Plains', 'QLD', 'AU', 488, ' 4301 Redbank Plains Queensland'),
9369
+ (9004, '4301', 'Collingwood Park', 'QLD', 'AU', 488, ' 4301 Collingwood Park Queensland'),
9370
+ (9005, '4303', 'Dinmore', 'QLD', 'AU', 488, ' 4303 Dinmore Queensland'),
9371
+ (9006, '4303', 'New Chum', 'QLD', 'AU', 488, ' 4303 New Chum Queensland'),
9372
+ (9007, '4303', 'Riverview', 'QLD', 'AU', 488, ' 4303 Riverview Queensland'),
9373
+ (9008, '4304', 'Silkstone', 'QLD', 'AU', 488, ' 4304 Silkstone Queensland'),
9374
+ (9009, '4304', 'North Booval', 'QLD', 'AU', 488, ' 4304 North Booval Queensland'),
9375
+ (9010, '4304', 'Ebbw Vale', 'QLD', 'AU', 488, ' 4304 Ebbw Vale Queensland'),
9376
+ (9011, '4304', 'Blackstone', 'QLD', 'AU', 488, ' 4304 Blackstone Queensland'),
9377
+ (9012, '4304', 'Booval', 'QLD', 'AU', 488, ' 4304 Booval Queensland'),
9378
+ (9013, '4304', 'Booval Fair', 'QLD', 'AU', 488, ' 4304 Booval Fair Queensland'),
9379
+ (9014, '4304', 'Bundamba', 'QLD', 'AU', 488, ' 4304 Bundamba Queensland'),
9380
+ (9015, '4305', 'Brassall', 'QLD', 'AU', 488, ' 4305 Brassall Queensland'),
9381
+ (9016, '4305', 'Bremer', 'QLD', 'AU', 488, ' 4305 Bremer Queensland'),
9382
+ (9017, '4305', 'Basin Pocket', 'QLD', 'AU', 488, ' 4305 Basin Pocket Queensland'),
9383
+ (9018, '4305', 'East Ipswich', 'QLD', 'AU', 488, ' 4305 East Ipswich Queensland'),
9384
+ (9019, '4305', 'Eastern Heights', 'QLD', 'AU', 488, ' 4305 Eastern Heights Queensland'),
9385
+ (9020, '4305', 'Flinders View', 'QLD', 'AU', 488, ' 4305 Flinders View Queensland'),
9386
+ (9021, '4305', 'Coalfalls', 'QLD', 'AU', 488, ' 4305 Coalfalls Queensland'),
9387
+ (9022, '4305', 'Churchill', 'QLD', 'AU', 488, ' 4305 Churchill Queensland'),
9388
+ (9023, '4305', 'Ipswich', 'QLD', 'AU', 488, ' 4305 Ipswich Queensland'),
9389
+ (9024, '4305', 'Leichhardt', 'QLD', 'AU', 488, ' 4305 Leichhardt Queensland'),
9390
+ (9025, '4305', 'Limestone Ridges', 'QLD', 'AU', 488, ' 4305 Limestone Ridges Queensland'),
9391
+ (9026, '4305', 'Moores Pocket', 'QLD', 'AU', 488, ' 4305 Moores Pocket Queensland'),
9392
+ (9027, '4305', 'North Ipswich', 'QLD', 'AU', 488, ' 4305 North Ipswich Queensland'),
9393
+ (9028, '4305', 'North Tivoli', 'QLD', 'AU', 488, ' 4305 North Tivoli Queensland'),
9394
+ (9029, '4305', 'Newtown', 'QLD', 'AU', 488, ' 4305 Newtown Queensland'),
9395
+ (9030, '4305', 'One Mile', 'QLD', 'AU', 488, ' 4305 One Mile Queensland'),
9396
+ (9031, '4305', 'Raceview', 'QLD', 'AU', 488, ' 4305 Raceview Queensland'),
9397
+ (9032, '4305', 'Sadliers Crossing', 'QLD', 'AU', 488, ' 4305 Sadliers Crossing Queensland'),
9398
+ (9033, '4305', 'Woodend', 'QLD', 'AU', 488, ' 4305 Woodend Queensland'),
9399
+ (9034, '4305', 'Yamanto', 'QLD', 'AU', 488, ' 4305 Yamanto Queensland'),
9400
+ (9035, '4305', 'Tivoli', 'QLD', 'AU', 488, ' 4305 Tivoli Queensland'),
9401
+ (9036, '4305', 'West Ipswich', 'QLD', 'AU', 488, ' 4305 West Ipswich Queensland'),
9402
+ (9037, '4305', 'Wulkuraka', 'QLD', 'AU', 488, ' 4305 Wulkuraka Queensland'),
9403
+ (9038, '4306', 'White Rock', 'QLD', 'AU', 488, ' 4306 White Rock Queensland'),
9404
+ (9039, '4306', 'Washpool', 'QLD', 'AU', 488, ' 4306 Washpool Queensland'),
9405
+ (9040, '4306', 'West Amberley', 'QLD', 'AU', 488, ' 4306 West Amberley Queensland'),
9406
+ (9041, '4306', 'Vernor', 'QLD', 'AU', 488, ' 4306 Vernor Queensland'),
9407
+ (9042, '4306', 'Walloon', 'QLD', 'AU', 488, ' 4306 Walloon Queensland'),
9408
+ (9043, '4306', 'Wanora', 'QLD', 'AU', 488, ' 4306 Wanora Queensland'),
9409
+ (9044, '4306', 'Thagoona', 'QLD', 'AU', 488, ' 4306 Thagoona Queensland'),
9410
+ (9045, '4306', 'Willowbank', 'QLD', 'AU', 488, ' 4306 Willowbank Queensland'),