diff --git a/cloud-foundation/modules/cloud-foundation-library/big-data-service/main.tf b/cloud-foundation/modules/cloud-foundation-library/big-data-service/main.tf
index 637ff39..2688d04 100644
--- a/cloud-foundation/modules/cloud-foundation-library/big-data-service/main.tf
+++ b/cloud-foundation/modules/cloud-foundation-library/big-data-service/main.tf
@@ -69,4 +69,14 @@ resource "oci_bds_bds_instance" "this" {
# }
# }
# }
-# }
\ No newline at end of file
+# }
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
+}
\ No newline at end of file
diff --git a/cloud-foundation/modules/cloud-foundation-library/database/adb/main.tf b/cloud-foundation/modules/cloud-foundation-library/database/adb/main.tf
index 547572e..e231d8e 100644
--- a/cloud-foundation/modules/cloud-foundation-library/database/adb/main.tf
+++ b/cloud-foundation/modules/cloud-foundation-library/database/adb/main.tf
@@ -40,3 +40,13 @@ resource "oci_database_autonomous_database" "adw" {
operations_insights_status = each.value.operations_insights_status
database_management_status = each.value.database_management_status
}
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
+}
\ No newline at end of file
diff --git a/cloud-foundation/modules/cloud-foundation-library/datacatalog_no_connection/main.tf b/cloud-foundation/modules/cloud-foundation-library/datacatalog_no_connection/main.tf
new file mode 100644
index 0000000..202f4c5
--- /dev/null
+++ b/cloud-foundation/modules/cloud-foundation-library/datacatalog_no_connection/main.tf
@@ -0,0 +1,28 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+resource "oci_datacatalog_catalog" "this" {
+ for_each = var.datacatalog_params
+ compartment_id = each.value.compartment_id
+ display_name = each.value.catalog_display_name
+ defined_tags = each.value.defined_tags
+}
+
+resource "oci_datacatalog_data_asset" "this" {
+ for_each = var.datacatalog_params
+ catalog_id = oci_datacatalog_catalog.this[each.key].id
+ display_name = each.value.catalog_display_name
+ type_key = data.oci_datacatalog_catalog_types.this[each.key].type_collection[0].items[0].key
+ properties = {
+ "default.database" = var.db_name
+ "default.privateendpoint" = "false"
+ }
+}
+
+data "oci_datacatalog_catalog_types" "this" {
+ for_each = var.datacatalog_params
+ catalog_id = oci_datacatalog_catalog.this[each.key].id
+ type_category = "dataAsset"
+ name = "Autonomous Data Warehouse"
+ state = "ACTIVE"
+}
diff --git a/cloud-foundation/modules/cloud-foundation-library/datacatalog_no_connection/outputs.tf b/cloud-foundation/modules/cloud-foundation-library/datacatalog_no_connection/outputs.tf
new file mode 100644
index 0000000..beb06d8
--- /dev/null
+++ b/cloud-foundation/modules/cloud-foundation-library/datacatalog_no_connection/outputs.tf
@@ -0,0 +1,16 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+output "datacatalog" {
+ value = {
+ for datacatalog in oci_datacatalog_catalog.this:
+ datacatalog.display_name => datacatalog.display_name
+ }
+}
+
+output "datacatalog_data_asset" {
+ value = {
+ for datacatalog_data_asset in oci_datacatalog_data_asset.this:
+ datacatalog_data_asset.display_name => datacatalog_data_asset.display_name
+ }
+}
diff --git a/cloud-foundation/modules/cloud-foundation-library/datacatalog_no_connection/variables.tf b/cloud-foundation/modules/cloud-foundation-library/datacatalog_no_connection/variables.tf
new file mode 100644
index 0000000..5a117ab
--- /dev/null
+++ b/cloud-foundation/modules/cloud-foundation-library/datacatalog_no_connection/variables.tf
@@ -0,0 +1,14 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+variable "datacatalog_params" {
+ type = map(object({
+ compartment_id = string
+ catalog_display_name = string
+ defined_tags = map(string)
+ }))
+}
+
+variable "db_name" {
+ type = string
+}
diff --git a/cloud-foundation/modules/cloud-foundation-library/instance_with_out_flexible/instance.tf b/cloud-foundation/modules/cloud-foundation-library/instance_with_out_flexible/instance.tf
index 97e8ef1..40513ab 100644
--- a/cloud-foundation/modules/cloud-foundation-library/instance_with_out_flexible/instance.tf
+++ b/cloud-foundation/modules/cloud-foundation-library/instance_with_out_flexible/instance.tf
@@ -46,3 +46,13 @@ resource "oci_core_instance" "instance" {
ignore_changes = all
}
}
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
+}
\ No newline at end of file
diff --git a/cloud-foundation/modules/cloud-foundation-library/instance_with_out_flexible_test/instance.tf b/cloud-foundation/modules/cloud-foundation-library/instance_with_out_flexible_test/instance.tf
new file mode 100644
index 0000000..11d09e7
--- /dev/null
+++ b/cloud-foundation/modules/cloud-foundation-library/instance_with_out_flexible_test/instance.tf
@@ -0,0 +1,59 @@
+# Copyright © 2022, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+data "oci_identity_availability_domains" "ADs" {
+ compartment_id = var.tenancy_ocid
+}
+
+
+resource "oci_core_instance" "instance" {
+
+ for_each = var.instance_params
+
+ availability_domain = data.oci_identity_availability_domains.ADs.availability_domains[each.value.availability_domain - 1].name
+ compartment_id = each.value.compartment_id
+ display_name = each.value.display_name
+ shape = each.value.shape
+
+ defined_tags = each.value.defined_tags
+ freeform_tags = each.value.freeform_tags
+
+ create_vnic_details {
+ subnet_id = each.value.subnet_id
+ display_name = each.value.vnic_display_name
+ assign_public_ip = each.value.assign_public_ip
+ hostname_label = each.value.hostname_label
+ }
+
+ source_details {
+ source_type = each.value.source_type
+ source_id = each.value.source_id
+ boot_volume_size_in_gbs = each.value.boot_volume_size_in_gbs
+ }
+
+ metadata = each.value.metadata
+
+ fault_domain = each.value.fault_domain
+
+ timeouts {
+ create = "${each.value.provisioning_timeout_mins}m"
+ }
+
+ #prevent any metadata changes to destroy instance
+ # lifecycle {
+ # ignore_changes = [metadata, shape, shape_config]
+ # }
+ lifecycle {
+ ignore_changes = all
+ }
+}
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
+}
\ No newline at end of file
diff --git a/cloud-foundation/modules/cloud-foundation-library/instance_with_out_flexible_test/outputs.tf b/cloud-foundation/modules/cloud-foundation-library/instance_with_out_flexible_test/outputs.tf
new file mode 100644
index 0000000..74cd65a
--- /dev/null
+++ b/cloud-foundation/modules/cloud-foundation-library/instance_with_out_flexible_test/outputs.tf
@@ -0,0 +1,70 @@
+# Copyright © 2022, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+# Output the private and public IPs of the instance
+
+output "InstancePrivateIPs" {
+ value = [ for b in oci_core_instance.instance : b.private_ip]
+}
+
+output "InstancePublicIPs" {
+ value = [ for b in oci_core_instance.instance : b.public_ip]
+}
+
+output "InstanceOcids" {
+ value = [ for b in oci_core_instance.instance : b.id]
+}
+
+output "display_names" {
+ value = [ for b in oci_core_instance.instance : b.display_name]
+}
+
+output "InstanceShapes" {
+ value = [ for b in oci_core_instance.instance : b.shape]
+}
+
+output "AvailabilityDomains" {
+ value = [ for b in oci_core_instance.instance : b.availability_domain]
+}
+
+locals {
+ linux_instances = {
+ for instance in oci_core_instance.instance :
+ instance.display_name => { "id" : instance.id, "ip" : instance.public_ip != "" ? instance.public_ip : instance.private_ip }
+ }
+
+ linux_ids = {
+ for instance in oci_core_instance.instance :
+ instance.display_name => instance.id
+ }
+
+ linux_private_ips = {
+ for instance in oci_core_instance.instance :
+ instance.display_name => instance.private_ip
+ }
+
+ linux_public_ips = {
+ for instance in oci_core_instance.instance :
+ instance.display_name => instance.public_ip
+ }
+
+ all_instances = local.linux_ids
+ all_private_ips = local.linux_private_ips
+ all_public_ips = local.linux_public_ips
+}
+
+output "linux_instances" {
+ value = local.linux_instances
+}
+
+output "all_instances" {
+ value = local.all_instances
+}
+
+output "all_private_ips" {
+ value = local.all_private_ips
+}
+
+output "all_public_ips" {
+ value = local.all_public_ips
+}
\ No newline at end of file
diff --git a/cloud-foundation/modules/cloud-foundation-library/instance_with_out_flexible_test/variables.tf b/cloud-foundation/modules/cloud-foundation-library/instance_with_out_flexible_test/variables.tf
new file mode 100644
index 0000000..d804a48
--- /dev/null
+++ b/cloud-foundation/modules/cloud-foundation-library/instance_with_out_flexible_test/variables.tf
@@ -0,0 +1,37 @@
+# Copyright © 2022, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+variable "tenancy_ocid" {
+ type = string
+}
+
+variable "instance_params" {
+
+ type = map(object({
+
+ availability_domain = number
+ compartment_id = string
+ display_name = string
+ shape = string
+
+ defined_tags = map(string)
+ freeform_tags = map(string)
+
+ subnet_id = string
+ vnic_display_name = string
+ assign_public_ip = string
+ hostname_label = string
+
+ source_type = string
+ source_id = string
+ boot_volume_size_in_gbs = number
+
+ metadata = map(string)
+
+ fault_domain = string
+
+ provisioning_timeout_mins = string
+
+}))
+
+}
diff --git a/cloud-foundation/modules/cloud-foundation-library/keygen/keygen.tf b/cloud-foundation/modules/cloud-foundation-library/keygen/keygen.tf
index 59ba525..65ed920 100644
--- a/cloud-foundation/modules/cloud-foundation-library/keygen/keygen.tf
+++ b/cloud-foundation/modules/cloud-foundation-library/keygen/keygen.tf
@@ -40,3 +40,13 @@ resource "tls_self_signed_cert" "demo_cert" {
"crl_signing",
]
}
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
+}
\ No newline at end of file
diff --git a/cloud-foundation/modules/cloud-foundation-library/object-storage/main.tf b/cloud-foundation/modules/cloud-foundation-library/object-storage/main.tf
index 2023a03..6d5a7ab 100644
--- a/cloud-foundation/modules/cloud-foundation-library/object-storage/main.tf
+++ b/cloud-foundation/modules/cloud-foundation-library/object-storage/main.tf
@@ -17,3 +17,13 @@ resource "oci_objectstorage_bucket" "os" {
object_events_enabled = each.value.events_enabled
defined_tags = each.value.defined_tags
}
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
+}
\ No newline at end of file
diff --git a/cloud-foundation/modules/cloud-foundation-library/oci_data_safe/main.tf b/cloud-foundation/modules/cloud-foundation-library/oci_data_safe/main.tf
index f7d428f..2e5373d 100755
--- a/cloud-foundation/modules/cloud-foundation-library/oci_data_safe/main.tf
+++ b/cloud-foundation/modules/cloud-foundation-library/oci_data_safe/main.tf
@@ -10,4 +10,14 @@ resource "oci_data_safe_data_safe_private_endpoint" "this" {
defined_tags = each.value.defined_tags
description = each.value.description
nsg_ids = each.value.nsg_ids
+}
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
}
\ No newline at end of file
diff --git a/cloud-foundation/modules/cloud-foundation-library/oci_events/main.tf b/cloud-foundation/modules/cloud-foundation-library/oci_events/main.tf
index 70421f7..6f136d2 100755
--- a/cloud-foundation/modules/cloud-foundation-library/oci_events/main.tf
+++ b/cloud-foundation/modules/cloud-foundation-library/oci_events/main.tf
@@ -26,5 +26,13 @@ resource "oci_events_rule" "this" {
freeform_tags = each.value.freeform_tags
}
-
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
+}
diff --git a/cloud-foundation/modules/cloud-foundation-library/oci_log_analytics/main.tf b/cloud-foundation/modules/cloud-foundation-library/oci_log_analytics/main.tf
index 2b736a5..2fe8388 100755
--- a/cloud-foundation/modules/cloud-foundation-library/oci_log_analytics/main.tf
+++ b/cloud-foundation/modules/cloud-foundation-library/oci_log_analytics/main.tf
@@ -12,3 +12,12 @@ resource "oci_log_analytics_log_analytics_log_group" "this" {
namespace = data.oci_identity_tenancy.this.name
}
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
+}
diff --git a/cloud-foundation/modules/cloud-foundation-library/oci_logging/main.tf b/cloud-foundation/modules/cloud-foundation-library/oci_logging/main.tf
index 04f4a4a..01be9eb 100755
--- a/cloud-foundation/modules/cloud-foundation-library/oci_logging/main.tf
+++ b/cloud-foundation/modules/cloud-foundation-library/oci_logging/main.tf
@@ -25,3 +25,13 @@ resource "oci_logging_log" "this" {
is_enabled = each.value.is_enabled
retention_duration = each.value.retention_duration
}
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
+}
\ No newline at end of file
diff --git a/cloud-foundation/modules/cloud-foundation-library/oci_logging_service_connector/main.tf b/cloud-foundation/modules/cloud-foundation-library/oci_logging_service_connector/main.tf
index 1252afe..b9a1a55 100755
--- a/cloud-foundation/modules/cloud-foundation-library/oci_logging_service_connector/main.tf
+++ b/cloud-foundation/modules/cloud-foundation-library/oci_logging_service_connector/main.tf
@@ -55,3 +55,13 @@ resource "oci_sch_service_connector" "this" {
}
}
}
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
+}
\ No newline at end of file
diff --git a/cloud-foundation/modules/cloud-foundation-library/oci_monitoring_alarms/main.tf b/cloud-foundation/modules/cloud-foundation-library/oci_monitoring_alarms/main.tf
index 152e10b..1c27c92 100755
--- a/cloud-foundation/modules/cloud-foundation-library/oci_monitoring_alarms/main.tf
+++ b/cloud-foundation/modules/cloud-foundation-library/oci_monitoring_alarms/main.tf
@@ -29,3 +29,13 @@ resource "oci_monitoring_alarm" "this" {
}
}
}
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
+}
\ No newline at end of file
diff --git a/cloud-foundation/modules/cloud-foundation-library/oci_notifications/main.tf b/cloud-foundation/modules/cloud-foundation-library/oci_notifications/main.tf
index 53124f6..466dda2 100755
--- a/cloud-foundation/modules/cloud-foundation-library/oci_notifications/main.tf
+++ b/cloud-foundation/modules/cloud-foundation-library/oci_notifications/main.tf
@@ -15,3 +15,13 @@ resource "oci_ons_subscription" "this" {
protocol = each.value.protocol
topic_id = oci_ons_notification_topic.this[each.value.topic_name].id
}
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
+}
\ No newline at end of file
diff --git a/cloud-foundation/modules/oci-cis-landingzone-quickstart/iam/iam-dynamic-group/init.tf b/cloud-foundation/modules/oci-cis-landingzone-quickstart/iam/iam-dynamic-group/init.tf
index db81ee9..2af167c 100644
--- a/cloud-foundation/modules/oci-cis-landingzone-quickstart/iam/iam-dynamic-group/init.tf
+++ b/cloud-foundation/modules/oci-cis-landingzone-quickstart/iam/iam-dynamic-group/init.tf
@@ -1,11 +1,11 @@
-# Copyright © 2022, Oracle and/or its affiliates.
-# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+# # Copyright © 2022, Oracle and/or its affiliates.
+# # All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
-terraform {
- required_version = ">= 0.14.0"
- required_providers {
- oci = {
- source = "oracle/oci"
- }
- }
-}
\ No newline at end of file
+# terraform {
+# required_version = ">= 0.14.0"
+# required_providers {
+# oci = {
+# source = "oracle/oci"
+# }
+# }
+# }
\ No newline at end of file
diff --git a/cloud-foundation/modules/oci-cis-landingzone-quickstart/iam/iam-dynamic-group/main.tf b/cloud-foundation/modules/oci-cis-landingzone-quickstart/iam/iam-dynamic-group/main.tf
index 8261c46..ac2a364 100755
--- a/cloud-foundation/modules/oci-cis-landingzone-quickstart/iam/iam-dynamic-group/main.tf
+++ b/cloud-foundation/modules/oci-cis-landingzone-quickstart/iam/iam-dynamic-group/main.tf
@@ -13,4 +13,14 @@ resource "oci_identity_dynamic_group" "these" {
#Optional
# defined_tags = each.defined_tags
# freeform_tags = each.freeform_tags
+}
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
}
\ No newline at end of file
diff --git a/cloud-foundation/modules/oci-cis-landingzone-quickstart/network/security/main_nsg.tf b/cloud-foundation/modules/oci-cis-landingzone-quickstart/network/security/main_nsg.tf
index 6b586ab..46f9e39 100644
--- a/cloud-foundation/modules/oci-cis-landingzone-quickstart/network/security/main_nsg.tf
+++ b/cloud-foundation/modules/oci-cis-landingzone-quickstart/network/security/main_nsg.tf
@@ -189,4 +189,14 @@ resource "oci_core_network_security_group_security_rule" "egress" {
}
}
}
+}
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
}
\ No newline at end of file
diff --git a/cloud-foundation/modules/oci-cis-landingzone-quickstart/network/vcn-basic/main.tf b/cloud-foundation/modules/oci-cis-landingzone-quickstart/network/vcn-basic/main.tf
index 6aa7dee..2978ae6 100644
--- a/cloud-foundation/modules/oci-cis-landingzone-quickstart/network/vcn-basic/main.tf
+++ b/cloud-foundation/modules/oci-cis-landingzone-quickstart/network/vcn-basic/main.tf
@@ -91,4 +91,14 @@ resource "oci_core_subnet" "these" {
security_list_ids = each.value.security_list_ids
defined_tags = each.value.defined_tags
freeform_tags = each.value.freeform_tags
+}
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
}
\ No newline at end of file
diff --git a/cloud-foundation/modules/oci-cis-landingzone-quickstart/network/vcn-routing/main.tf b/cloud-foundation/modules/oci-cis-landingzone-quickstart/network/vcn-routing/main.tf
index a397c5f..e49810c 100644
--- a/cloud-foundation/modules/oci-cis-landingzone-quickstart/network/vcn-routing/main.tf
+++ b/cloud-foundation/modules/oci-cis-landingzone-quickstart/network/vcn-routing/main.tf
@@ -30,4 +30,14 @@ resource "oci_core_route_table_attachment" "these" {
for_each = var.subnets_route_tables
subnet_id = each.value.subnet_id
route_table_id = each.key != "" ? oci_core_route_table.these[each.key].id : each.value.route_table_id
+}
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
}
\ No newline at end of file
diff --git a/cloud-foundation/modules/oci-cis-landingzone-quickstart/security/bastion/main.tf b/cloud-foundation/modules/oci-cis-landingzone-quickstart/security/bastion/main.tf
index b78cd2e..9fc33c1 100644
--- a/cloud-foundation/modules/oci-cis-landingzone-quickstart/security/bastion/main.tf
+++ b/cloud-foundation/modules/oci-cis-landingzone-quickstart/security/bastion/main.tf
@@ -34,4 +34,14 @@ resource "oci_bastion_session" "these" {
session_ttl_in_seconds = 3600
display_name = each.value.display_name
+}
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
}
\ No newline at end of file
diff --git a/cloud-foundation/modules/oci-cis-landingzone-quickstart/security/policies/init.tf b/cloud-foundation/modules/oci-cis-landingzone-quickstart/security/policies/init.tf
index db81ee9..2af167c 100644
--- a/cloud-foundation/modules/oci-cis-landingzone-quickstart/security/policies/init.tf
+++ b/cloud-foundation/modules/oci-cis-landingzone-quickstart/security/policies/init.tf
@@ -1,11 +1,11 @@
-# Copyright © 2022, Oracle and/or its affiliates.
-# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+# # Copyright © 2022, Oracle and/or its affiliates.
+# # All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
-terraform {
- required_version = ">= 0.14.0"
- required_providers {
- oci = {
- source = "oracle/oci"
- }
- }
-}
\ No newline at end of file
+# terraform {
+# required_version = ">= 0.14.0"
+# required_providers {
+# oci = {
+# source = "oracle/oci"
+# }
+# }
+# }
\ No newline at end of file
diff --git a/cloud-foundation/modules/oci-cis-landingzone-quickstart/security/policies/main.tf b/cloud-foundation/modules/oci-cis-landingzone-quickstart/security/policies/main.tf
index eb8eccc..3e6c2f0 100644
--- a/cloud-foundation/modules/oci-cis-landingzone-quickstart/security/policies/main.tf
+++ b/cloud-foundation/modules/oci-cis-landingzone-quickstart/security/policies/main.tf
@@ -7,4 +7,14 @@ resource "oci_identity_policy" "these" {
compartment_id = each.value.compartment_id
description = each.value.description
statements = each.value.statements
+}
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.5.5"
}
\ No newline at end of file
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/.gitignore b/cloud-foundation/solutions/PublicSector-Crowd_Counting/.gitignore
new file mode 100644
index 0000000..5bf37b1
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/.gitignore
@@ -0,0 +1,6 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+.terraform
+*tfstate*
+*.pem
\ No newline at end of file
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/CONTRIBUTING.md b/cloud-foundation/solutions/PublicSector-Crowd_Counting/CONTRIBUTING.md
new file mode 100644
index 0000000..f945a04
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/CONTRIBUTING.md
@@ -0,0 +1,32 @@
+
+# Contributing to Oracle Cloud Foundation Terraform Framework
+
+## Contributing to Oracle Cloud Foundation Terraform Framework
+
+Oracle welcomes contributions to this repository from anyone.
+
+If you want to submit a pull request to fix a bug or enhance an existing
+feature, please first open an issue and link to that issue when you
+submit your pull request.
+
+If you have any questions about a possible submission, feel free to open
+an issue too.
+
+## Pull request process
+
+1. Fork this repository
+1. Create a branch in your fork to implement the changes. We recommend using
+the issue number as part of your branch name, e.g. `1234-fixes`
+1. Ensure that there is at least one test that would fail without the fix and
+passes post fix
+1. Submit the pull request. *Do not leave the pull request blank*. Explain exactly
+what your changes are meant to do and provide simple steps on how to validate
+your changes, ideally referencing the test. Ensure that you reference the issue
+you created as well. We will assign the pull request to 1-2 people for review
+before it is submitted internally and the PR is closed.
\ No newline at end of file
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/LICENSE b/cloud-foundation/solutions/PublicSector-Crowd_Counting/LICENSE
new file mode 100644
index 0000000..b46e87e
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/LICENSE
@@ -0,0 +1,27 @@
+Copyright © 2024 Oracle and/or its affiliates. All rights reserved.
+
+The Universal Permissive License (UPL), Version 1.0
+
+Subject to the condition set forth below, permission is hereby granted to any person obtaining a copy of this
+software, associated documentation and/or data (collectively the "Software"), free of charge and under any and
+all copyright rights in the Software, and any and all patent rights owned or freely licensable by each licensor
+hereunder covering either (i) the unmodified Software as contributed to or provided by such licensor, or
+(ii) the Larger Works (as defined below), to deal in both
+
+(a) the Software, and
+(b) any piece of software and/or hardware listed in the lrgrwrks.txt file if one is included with the Software
+(each a “Larger Work” to which the Software is contributed by such licensors),
+
+without restriction, including without limitation the rights to copy, create derivative works of, display,
+perform, and distribute the Software and make, use, sell, offer for sale, import, export, have made, and have
+sold the Software and the Larger Work(s), and to sublicense the foregoing rights on either these or other terms.
+
+This license is subject to the following condition:
+The above copyright notice and either this complete permission notice or at a minimum a reference to the UPL must
+be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
+THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
+CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+IN THE SOFTWARE.
\ No newline at end of file
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/README.md b/cloud-foundation/solutions/PublicSector-Crowd_Counting/README.md
new file mode 100644
index 0000000..3fdb8fd
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/README.md
@@ -0,0 +1,1005 @@
+# Oracle Cloud Foundation Terraform Solution - Deploy Public Sector Crowd Counting - AI at Edge Demo - Roving Edge Device, OCI Analytics and Select AI w/ ADB
+
+## Table of Contents
+1. [Overview](#overview)
+1. [Deliverables](#deliverables)
+1. [Architecture](#Architecture-Diagram)
+1. [Executing Instructions](#instructions)
+ 1. [Deploy Using Oracle Resource Manager](#Deploy-Using-Oracle-Resource-Manager)
+ 1. [What to do after the Deployment via Resource Manager](#What-to-do-after-the-Deployment-via-Resource-Manager)
+ 2. [Deploy Using the Terraform CLI](#Deploy-Using-the-Terraform-CLI)
+ 1. [What to do after the Deployment via Terraform CLI](#What-to-do-after-the-Deployment-via-Terraform-CLI)
+1. [Documentation](#documentation)
+1. [The Team](#team)
+1. [Feedback](#feedback)
+1. [Known Issues](#known-issues)
+1. [Contribute](#CONTRIBUTING.md)
+
+
+## Overview
+- AI at Edge demonstration
+ * The application on RED is keep counting the number of person captured by IP cameras
+ * The application is python code using Open Source DL Model for Object Detection
+- Data synchronization between RED and OCI
+ * The application on RED is inserting the number of person to OCI Autonomous DB continuously
+- Data Visualization by OCI Analytics
+ * Crowding situation can be monitored visually through Analytics Dashboard
+- Select AI
+ * DB query in Natural Language
+
+
+## Deliverables
+ This repository encloses one deliverable:
+
+- A reference implementation written in Terraform HCL (Hashicorp Language) that provisions fully functional resources in an OCI tenancy.
+
+- On top we will use a script written in bash that will insert inside the Oracle Analytics Cloud a default bar with visuals for the data that's in the Autonomous Database.
+
+
+## Architecture-Diagram
+
+The following diagram shows a mapping of the architecture above to services provided on Oracle Cloud Infrastructure using security best practices and at the end of the deployment you will have in your tenancy the related services.
+
+
+
+
+
+
+## Executing Instructions
+
+## Prerequisites
+
+- Permission to `manage` the following types of resources in your Oracle Cloud Infrastructure tenancy: `vcns`, `nat-gateways`, `route-tables`, `subnets`, `service-gateways`, `security-lists`, `autonomous database`, `Analytics Cloud`, `object storage` and `compute instances`.
+- Quota to create the following resources: 1 ADW database instance, 1 Analytics Cloud, 1 object storge and 1 VM instance
+If you don't have the required permissions and quota, contact your tenancy administrator. See [Policy Reference](https://docs.cloud.oracle.com/en-us/iaas/Content/Identity/Reference/policyreference.htm), [Service Limits](https://docs.cloud.oracle.com/en-us/iaas/Content/General/Concepts/servicelimits.htm), [Compartment Quotas](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcequotas.htm).
+
+# Deploy Using Oracle Resource Manager
+
+1. Click [](https://cloud.oracle.com/resourcemanager/stacks/create?region=home&zipUrl=https://github.com/oracle-devrel/terraform-oci-oracle-cloud-foundation/releases/download/v1.0.0/PublicSector-Crowd_Counting-RM.zip)
+
+
+If you aren't already signed in, when prompted, enter the tenancy and user credentials.
+
+2. Review and accept the terms and conditions.
+3. Select the region where you want to deploy the stack.
+4. Follow the on-screen prompts and instructions to create the stack.
+
+* note - for the The OCI ociPrivateKeyWrapped - The key that you have created or your own existing private key must be wrapped. You must pass this signing key in the payload for some snapshot APIs. Before you add it to the payload, you must Base64 encode the private key (ociPrivateKeyWrapped). For example, to generate a Base64 encoded string from your private key:
+ - On Mac: cat myprivate-key.pem | base64 -o mywrapped-private-key.pem
+ - On Linux: cat myprivate-key.pem | base64 -w 0 > mywrapped-private-key.pem
+ - Note: Ensure that the private key file that you encode includes -----BEGIN and -----END tags.
+
+5. After creating the stack, click **Terraform Actions**, and select **Plan**.
+6. Wait for the job to be completed, and review the plan.
+ To make any changes, return to the Stack Details page, click **Edit Stack**, and make the required changes. Then, run the **Plan** action again.
+7. If no further changes are necessary, return to the Stack Details page, click **Terraform Actions**, and select **Apply**.
+
+# What-to-do-after-the-Deployment-via-Resource-Manager
+
+There are 2 docker containers running on the VM with 2 different applications:
+
+ - The first one can be accesed from a browser and connect to : __http://:5000__
+
+This application it's doin g the followings:
+
+- AI at Edge demonstration
+ * The application on RED is keep counting the number of person captured by IP cameras
+ * The application is python code using Open Source DL Model for Object Detection
+
+The second application can be accesed from a browser and connect to : __http://:5001 ; and wait for a couple of minutes so the AI will count the people from the cameras and will inject the data inside the database.__
+
+This application it's doing the followings:
+
+- Data synchronization between RED and OCI
+ * The application on RED is inserting the number of person to OCI Autonomous DB continuously
+
+- Data Visualization by OCI Analytics
+ * Crowding situation can be monitored visually through Analytics Dashboard
+
+
+__Next part is the Data Visualization by OCI Analytics - Crowding situation can be monitored visually through Analytics Dashboard :__
+
+After the soltution was deployed successfully from Resource Manager you will need to get the outputs especially the private key that was generated on the fly and also the public IP of the Bastion and to connect to it.
+
+- Go to Outputs - click on "show" at the "generated_ssh_private_key_for_bastion" output and click copy.
+
+- Go inside your terminal and create a file for your private key, paste the key copied inside the file and save the file.
+
+An example is below:
+```
+$ touch private_key_bastion.pem
+$ vi private_key_bastion.pem
+$ cat private_key_bastion.pem
+-----BEGIN RSA PRIVATE KEY-----
+MIIJJwIBAAKCAgEAomiZwto82D6e1+hzm5mjxAQ+LnzBGs40XkbRwJH2us/nQLOW
+DX7eV91X8KQpWSwPSiYZsZ2j7ZknqLUA6k0VP/KNMop203temNunjUC6ZYgTtzcP
+gMQqJ3G3IGb4eIgcvm/WziOheSgKsk7XYufGMdvAE8iDyS+15sSZEILLPtpKlCEc
+..........
+..........
+zM15dhNSSj5sqJJHurrInBVf0J6U5D+glexxo/TA/qz7IhSJ+NY/iCANwg==
+-----END RSA PRIVATE KEY-----
+
+$ chmod 600 private_key_bastion.pem
+
+```
+
+__SSH to the bastion:__
+
+```
+$ ssh -i private_key_bastion.pem opc@ui_data_server_public_ip -o IdentitiesOnly=yes
+
+```
+To interact with the Oracle Analytics API you will need to set up the credentials.
+As the deployment it's getting automated all your credentials from the terraform like , ociUserId ,ociKeyFingerprint ,ociTenancyId and ociRegion you will need to update also your private key.
+For this - edit the /home/opc/.oci/oci_api_key.pem file - and replace the content of the key with your own private key that you used to deploy the solution with terraform, the one that you use for authentificating on the OCI API located into your ~/.oci/config file.
+
+Now you will need to do one manual step to grab the token of the Oracle Analytics Cloud and insert it in a shell script.
+
+- Go inside your Tenancy, click on the Menu, click on Identity & Security and under Identity click on Federation.
+Click on your identity provider and click on the link in the middle called : Oracle Identity Cloud Service Console: https://idcs-abcd.identity.oraclecloud.com/ui/v1/adminconsole
+
+
+
+- Now click on the Menu and Press Oracle Cloud Services.
+
+
+
+- Inside the Oracle Cloud Services search for your Analytics Cloud deployed and click on it.
+
+
+
+- Now go to Configuration ; click Resources.
+Here you need to modify:
+- Access Token Expiration from 100 seconds to the maximum of 604800 seconds.
+- Dezactivate the Is Refresh Token Allowed option
+- Refresh Token Expiration from 86,400 seconds. to 604800 seconds.
+
+- Click Save button in the right top.
+
+
+
+- Now, on the same page click Details and click on Generate Access Token ; and press: Download Token.
+- Open the Token and copy the key - after the app_access_token from " to the end of ".
+
+
+
+
+- Go back to your terminal that it's connected to the Bastion VM Instance and edit the __finalize.sh__ script located in /home/opc/ folder. Here is a line called __Authorization_Token=__ that needs to be filled with the Token that you have copied on the last step.
+
+
+
+
+
+Now from the terminal run the script using the __./finalize.sh__ command.
+
+The script will run and you will see this Output:
+
+```
+[opc@vnc-datamodelsmanufacturing ~]$ ./finalize.sh
+-- Getting Started
+-- Retrive the original bar file from the shared object storage
+-- Fixing the bar file
+-- Modify the links for the picture using the current hostname and tenancy name
+-- Create new bar file for OAC with the custom configuration
+-- Upload the snapshot to the object storage in our tenancy
+-- Get details of an Analytics instance
+HTTP/1.1 200 OK
+-- Create the Register Snapshot New Json File
+-- Register an existing snapshot using the new json file created with all the variables based on your environment
+HTTP/1.1 100 Continue
+HTTP/1.1 202 Accepted
+-- Get all snapshots available for your OAC already registered
+HTTP/1.1 200 OK
+-- Get the ID of your registered snapshoot and use it in the next step
+-- Create the Restore Snapshot New Json File with your registered ID of the snapshot
+-- Restore a snapshot in an Analytics instance
+HTTP/1.1 202 Accepted
+
+
+-- Restore Done!
+```
+
+Next we need to transfer the generated wallet from the Autonomous Database to your local PC. To do this you need to exit the bastion and from your local terminal use this command:
+
+* Note: the key is the the generated private key of the bastion ; the IP is the public ip of the bastion, the wallet it's located in /home/opc AND the name of the wallet it's wallet_DB_NAME.zip , where the DB_NAME is the name of your database.
+
+```
+$ scp -i key opc@150.230.21.105:/home/opc/wallet_Crowdcounipp.zip .
+wallet_Crowdcounipp.zip 100% 26KB 818.3KB/s 00:00
+$
+```
+
+__Now everything it's done and ready ! You will want to connect to Oracle Analytics instance to see the data sets - open a web browser and connect copy paste the URL of the Analytic Cloud and hit enter.__
+
+Here you will see already all the imported dashboards and reports. Last step it's to connect to your existing DB. For this go to : Menu - Data - Connections and connect each of the connections to the DB.
+Right Click CrowdCount and select Inspect.
+Use the password of the db that you have provided in the provisioning phase and select your generated wallet that you have transfered from the bastion in the previous step to your local PC - file starting with "wallet_dbname.zip". Click Save.
+
+
+
+Now you can go in your workbook called CrowdCount and in inside there are 2 canvas.Click on the sys_data ( minute ) and insert all the lists that you see from the database. A map of visualisation of the people in the area will be displayed.
+
+
+__SELECT AI__
+
+To use the select ai - you need to connect to the ADW with your credentials provided and wallet file using sql developer and run:
+
+```
+EXEC DBMS_CLOUD_AI.SET_PROFILE('DEMO');
+```
+
+After that you can run the select ai, here are some examples:
+
+```
+select ai how many people seen on the camera was more than 20;
+select ai how many people seen on the camera was more than 300;
+select ai what are my cameras names;
+select ai what are my cam points;
+select ai what are the coordinates for the camera Shibuya Crossing;
+
+select ai narrate how many people seen on the camera was more than 300;
+select ai showsql how many people seen on the camera was more than 300;
+
+You can use any of the followings attributes for select ai:
+showsql
+narrate
+chat
+runsql
+```
+
+
+__Troubleshooting__
+
+Aditional checks for Yolo-crowdcount-footage application that it's doing Crowd Monitoring Demo with IP Camera and can attached also an access to IP Cameras(RTSP), Autonomous DB and Data in ADB can be utilized by OCI Analytics and Select AI demo
+
+Check schema
+```
+$ cd /home/opc/yolo-crowdcount-footage/schema/
+$ ./sqlplus.sh
+SQL> select count(*) from personcount; -> this returns 0
+SQL> select count(*) from cam_points; -> this returns 20
+SQL> exit
+```
+
+Check logs
+```
+$ tail home/opc/yolo-crowdcount-footage/app/log/app.log
+[2024-06-12 17:07:52,862] INFO: Starting camera thread.
+[2024-06-12 17:07:52,866] INFO: Starting camera thread.
+[2024-06-12 17:07:52,866] INFO: Starting YOLO thread.
+[2024-06-12 17:07:52,866] INFO: Starting YOLO thread.
+[2024-06-12 17:08:55,559] INFO: DB insert, RowCount = 10
+[2024-06-12 17:08:55,561] INFO: DB insert, RowCount = 10
+ :
+ :
+```
+
+Check DB Please check personcount table. 20 rows should be inserted every minute.
+```
+$ tail home/opc/yolo-crowdcount-footage/schema/sqlplus.sh
+SQL> select count(*) from personcount;
+
+ COUNT(*)
+----------
+ 180
+```
+
+
+# Deploy Using the Terraform CLI
+
+## Clone the Module
+Now, you'll want a local copy of this repo. You can make that with the commands:
+
+ git clone https://github.com/oracle-devrel/terraform-oci-oracle-cloud-foundation.git
+ cd terraform-oci-oracle-cloud-foundation/cloud-foundation/solutions/PublicSector-Crowd_Counting
+ ls
+
+## Deployment
+
+- Follow the instructions from Prerequisites links in order to install terraform.
+- Download the terraform version suitable for your operating system.
+- Unzip the archive.
+- Add the executable to the PATH.
+- You will have to generate an API signing key (public/private keys) and the public key should be uploaded in the OCI console, for the iam user that will be used to create the resources. Also, you should make sure that this user has enough permissions to create resources in OCI. In order to generate the API Signing key, follow the steps from: https://docs.us-phoenix-1.oraclecloud.com/Content/API/Concepts/apisigningkey.htm#How
+ The API signing key will generate a fingerprint in the OCI console, and that fingerprint will be used in a terraform file described below.
+- You will also need to generate an OpenSSH public key pair. Please store those keys in a place accessible like your user home .ssh directory.
+
+## Prerequisites
+
+- Install Terraform v0.13 or greater: https://www.terraform.io/downloads.html
+- Install Python 3.6: https://www.digitalocean.com/community/tutorials/how-to-install-python-3-and-set-up-a-local-programming-environment-on-centos-7
+- Generate an OCI API Key
+- Create your config under \$home*directory/.oci/config (run \_oci setup config* and follow the steps)
+- Gather Tenancy related variables (tenancy_id, user_id, local path to the oci_api_key private key, fingerprint of the oci_api_key_public key, and region)
+
+### Installing Terraform
+
+Go to [terraform.io](https://www.terraform.io/downloads.html) and download the proper package for your operating system and architecture. Terraform is distributed as a single binary.
+Install Terraform by unzipping it and moving it to a directory included in your system's PATH. You will need the latest version available.
+
+### Prepare Terraform Provider Values
+
+**variables.tf** is located in the root directory. This file is used in order to be able to make API calls in OCI, hence it will be needed by all terraform automations.
+
+In order to populate the **variables.tf** file, you will need the following:
+
+- Tenancy OCID
+- User OCID
+- Local Path to your private oci api key
+- Fingerprint of your public oci api key
+- Region
+
+On top of this default variables, for this solution you will need to get also:
+
+- ociPrivateKeyWrapped
+
+#### **Getting the Tenancy and User OCIDs**
+
+You will have to login to the [console](https://console.us-ashburn-1.oraclecloud.com) using your credentials (tenancy name, user name and password). If you do not know those, you will have to contact a tenancy administrator.
+
+In order to obtain the tenancy ocid, after logging in, from the menu, select Administration -> Tenancy Details. The tenancy OCID, will be found under Tenancy information and it will be similar to **ocid1.tenancy.oc1..aaa…**
+
+In order to get the user ocid, after logging in, from the menu, select Identity -> Users. Find your user and click on it (you will need to have this page open for uploading the oci_api_public_key). From this page, you can get the user OCID which will be similar to **ocid1.user.oc1..aaaa…**
+
+#### **Creating the OCI API Key Pair and Upload it to your user page**
+
+Create an oci_api_key pair in order to authenticate to oci as specified in the [documentation](https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#How):
+
+Create the .oci directory in the home of the current user
+
+`$ mkdir ~/.oci`
+
+Generate the oci api private key
+
+`$ openssl genrsa -out ~/.oci/oci_api_key.pem 2048`
+
+Make sure only the current user can access this key
+
+`$ chmod go-rwx ~/.oci/oci_api_key.pem`
+
+Generate the oci api public key from the private key
+
+`$ openssl rsa -pubout -in ~/.oci/oci_api_key.pem -out ~/.oci/oci_api_key_public.pem`
+
+You will have to upload the public key to the oci console for your user (go to your user page -> API Keys -> Add Public Key and paste the contents in there) in order to be able to do make API calls.
+
+After uploading the public key, you can see its fingerprint into the console. You will need that fingerprint for your variables.tf file.
+You can also get the fingerprint from running the following command on your local workstation by using your newly generated oci api private key.
+
+`$ openssl rsa -pubout -outform DER -in ~/.oci/oci_api_key.pem | openssl md5 -c`
+
+#### **Generating an SSH Key Pair on UNIX or UNIX-Like Systems Using ssh-keygen**
+
+- Run the ssh-keygen command.
+
+`ssh-keygen -b 2048 -t rsa`
+
+- The command prompts you to enter the path to the file in which you want to save the key. A default path and file name are suggested in parentheses. For example: /home/user_name/.ssh/id_rsa. To accept the default path and file name, press Enter. Otherwise, enter the required path and file name, and then press Enter.
+- The command prompts you for a passphrase. Enter a passphrase, or press ENTER if you don't want to havea passphrase.
+ Note that the passphrase isn't displayed when you type it in. Remember the passphrase. If you forget the passphrase, you can't recover it. When prompted, enter the passphrase again to confirm it.
+- The command generates an SSH key pair consisting of a public key and a private key, and saves them in the specified path. The file name of the public key is created automatically by appending .pub to the name of the private key file. For example, if the file name of the SSH private key is id_rsa, then the file name of the public key would be id_rsa.pub.
+ Make a note of the path where you've saved the SSH key pair.
+ When you create instances, you must provide the SSH public key. When you log in to an instance, you must specify the corresponding SSH private key and enter the passphrase when prompted.
+
+#### **Getting the Region**
+
+Even though, you may know your region name, you will needs its identifier for the variables.tf file (for example, US East Ashburn has us-ashburn-1 as its identifier).
+In order to obtain your region identifier, you will need to Navigate in the OCI Console to Administration -> Region Management
+Select the region you are interested in, and save the region identifier.
+
+#### **Getting the private key wrapped.**
+
+The key that you have created or your own existing private key must be wrapped.
+ - You must pass this signing key in the payload for some snapshot APIs. Before you add it to the payload, you must Base64 encode the private key (ociPrivateKeyWrapped). For example, to generate a Base64 encoded string from your private key:
+
+ - On Mac: cat myprivate-key.pem | base64 -o mywrapped-private-key.pem
+ - On Linux: cat myprivate-key.pem | base64 -w 0 > mywrapped-private-key.pem
+ - Note: Ensure that the private key file that you encode includes -----BEGIN and -----END tags.
+
+#### **Prepare the variables.tf file**
+
+You will have to modify the **variables.tf** file to reflect the values that you’ve captured.
+
+```
+variable "tenancy_ocid" {
+ type = string
+ default = "" (tenancy ocid, obtained from OCI console - Profile -> Tenancy)
+}
+
+variable "region" {
+ type = string
+ default = "" (the region used for deploying the infrastructure - ex: eu-frankfurt-1)
+}
+
+variable "compartment_id" {
+ type = string
+ default = "" (the compartment OCID used for deploying the solution - ex: ocid1.compartment.oc1..aaaaaa...)
+}
+
+variable "user_ocid" {
+ type = string
+ default = "" (user ocid, obtained from OCI console - Profile -> User Settings)
+}
+
+variable "fingerprint" {
+ type = string
+ default = "" (fingerprint obtained after setting up the API public key in OCI console - Profile -> User Settings -> API Keys -> Add Public Key)
+}
+
+variable "private_key_path" {
+ type = string
+ default = "" (the path of your local oci api key - ex: /root/.ssh/oci_api_key.pem)
+}
+
+variable "ociPrivateKeyWrapped" {
+ default = "LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFcEFJQkFBS0NBUUVBeXBjNmsxWjAwNHhyWGF1ZjlXMGV6OTV6cUk2SU91dnN5aTRrOFUyTDQ1ZlY0QkExCm02N0FUbEtJTy9vYlBTZGp1Z3dHQzkrTzM2Rjk0cWdZV2xLZDNuRmFHYW8kM0Y0U0Mm9lTFcKbVU2Y2c3ei80bzNWZlZ2Kzl6di8yU2kvL0LSGFpeDN1RHMzWUh5QnJURVAveUQzSeFBjMmh0Y1A3eFBoTGdGTmhobXpaaDEKcYOW0rS3I5Y0Z5b0JxaHMxbnJBVXlWalFwNlRyei9UT1ZuCm9UREthbjlmMEVieVFwSGtRVnJ5MC9nYWtUb0hIajA0MjczeU9ROGZCQlRyRnNMRGFlTml1ajlyQW9HQkFONW0KU2xXL095QWVjNE50K2lRM0hCSDU5L2w3U01SU3hnL0tEMVgzamZJL1d5aGl6a1daaFBIa3dvd2dZVzdFUjVEUQpJU0xtZXZGOVdkYVNhWmlHR1RpV1Y5R2dnVTBlaW9RVXQ2OTVyZ2hBN1o3bitaNVpoN0k5dGM2MGkwUHRFVWJsCm1JckFzbU4wdWpnWDVQZDRobTdoaWVKZE1EQlFUVGFQaEZudWVxQnRBb0dCQU53ZkxJo= EXAMPLE"
+}
+
+# This variable needs to be blank for now.
+# It's used to create a couple of files on the bastion that will be run later on after the deployment it's done.
+# This Authorization Token you will get it from the Identity Cloud Service portal on the Oracle Analytics under Oracle Cloud Services.
+
+variable "Authorization_Token" {
+ default = ""
+}
+```
+
+## Repository files
+* **images(folder)** - Contains images to be used inside the README.md file
+* **modules(folder)** - ( this folder will be present only for the Resource Manager zipped files) Contains folders with subsystems and modules for each section of the project: networking, autonomous database, analytics cloud, etc.
+For this solution there is inside the modules folder; another folder called provisioner that contains the configuration files.
+* **scripts(folder)** - this folder contains the necessary scripts that will run on the compute instances.
+* **CONTRIBUTING.md** - Contributing guidelines, also called Contribution guidelines, the CONTRIBUTING.md file, or software contribution guidelines, is a text file which project managers include in free and open-source software packages or other open media packages for the purpose of describing how others may contribute user-generated content to the project.The file explains how anyone can engage in activities such as formatting code for submission or submitting patches
+* **LICENSE** - The Universal Permissive License (UPL), Version 1.0
+* **local.tf** - Local values can be helpful to avoid repeating the same values or expressions multiple times in a configuration, but if overused they can also make a configuration hard to read by future maintainers by hiding the actual values used.Here is the place where all the resources are defined.
+* **main.tf** - Main Terraform script used for instantiating the Oracle Cloud Infrastructure provider and all subsystems modules
+* **outputs.tf** - Defines project's outputs that you will see after the code runs successfuly
+* **provider.tf** - The terraform provider that will be used (OCI)
+* **README.md** - This file
+* **schema.yaml** - Schema documents are recommended for Terraform configurations when using Resource Manager. Including a schema document allows you to extend pages in the Oracle Cloud Infrastructure Console. Facilitate variable entry in the Create Stack page by surfacing SSH key controls and by naming, grouping, dynamically prepopulating values, and more. Define text in the Application Information tab of the stack detail page displayed for a created stack.
+* **variables.tf** - Project's global variables
+
+
+Secondly, populate the `terraform.tf` file with the disared configuration following the information:
+
+
+# Autonomous Data Warehouse
+
+The ADW subsystem / module is able to create ADW/ATP databases.
+
+* Parameters:
+ * __db_name__ - The database name. The name must begin with an alphabetic character and can contain a maximum of 14 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy.
+ * __db_password__ - The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE".
+ * __db_compute_model__ - The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value.
+ * __db_compute_count__ - The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is on Shared or Dedicated infrastructure. For an Autonomous Database on Shared infrastructure, the 'ECPU' compute model requires values in multiples of two. Required when using the computeModel parameter. When using cpuCoreCount parameter, it is an error to specify computeCount to a non-null value.
+ * __db_size_in_tbs__ - The size, in gigabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. The maximum storage value is determined by the infrastructure shape. See Characteristics of Infrastructure Shapes for shape details.
+ * __db_workload__ - The Autonomous Database workload type. The following values are valid:
+ - OLTP - indicates an Autonomous Transaction Processing database
+ - DW - indicates an Autonomous Data Warehouse database
+ - AJD - indicates an Autonomous JSON Database
+ - APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type. *Note: db_workload can only be updated from AJD to OLTP or from a free OLTP to AJD.
+ * __db_version__ - A valid Oracle Database version for Autonomous Database.db_workload AJD and APEX are only supported for db_version 19c and above.
+ * __db_enable_auto_scaling__ - Indicates if auto scaling is enabled for the Autonomous Database OCPU core count. The default value is FALSE.
+ * __db_is_free_tier__ - Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled. When db_workload is AJD or APEX it cannot be true.
+ * __db_license_model__ - The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using shared Exadata infrastructure, if a value is not specified, the system will supply the value of BRING_YOUR_OWN_LICENSE. It is a required field when db_workload is AJD and needs to be set to LICENSE_INCLUDED as AJD does not support default license_model value BRING_YOUR_OWN_LICENSE.
+ * __db_data_safe_status__ - (Updatable) Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED.
+ * __db_operations_insights_status__ - (Updatable) Status of Operations Insights for this Autonomous Database. Values supported are ENABLED and NOT_ENABLED
+ * __db_database_management_status__ - Status of Database Management for this Autonomous Database. Values supported are ENABLED and NOT_ENABLED
+ * __llmpw__ - Provide the LLM token provided by your openai account
+
+Below is an example:
+
+```
+
+variable "db_name" {
+ type = string
+ default = "CrowdCounting"
+}
+
+variable "db_password" {
+ type = string
+ default = ""
+}
+
+variable "db_compute_model" {
+ type = string
+ default = "ECPU"
+}
+
+variable "db_compute_count" {
+ type = number
+ default = 4
+}
+
+variable "db_size_in_tbs" {
+ type = number
+ default = 1
+}
+
+variable "db_workload" {
+ type = string
+ # default = "OLTP"
+ default = "DW"
+}
+
+variable "db_version" {
+ type = string
+ default = "19c"
+}
+
+variable "db_enable_auto_scaling" {
+ type = bool
+ default = true
+}
+
+variable "db_is_free_tier" {
+ type = bool
+ default = false
+}
+
+variable "db_license_model" {
+ type = string
+ default = "BRING_YOUR_OWN_LICENSE"
+}
+
+variable "db_data_safe_status" {
+ type = string
+ default = "NOT_REGISTERED"
+ # default = "REGISTERED"
+}
+
+variable "db_operations_insights_status" {
+ type = string
+ default = "NOT_ENABLED"
+ # default = "ENABLED"
+}
+
+variable "db_database_management_status" {
+ type = string
+ default = "NOT_ENABLED"
+ # default = "ENABLED"
+}
+
+# LLM token provided by your openai account
+
+variable "llmpw" {
+ default = ""
+}
+```
+
+# Oracle Analytics Cloud
+This resource provides the Analytics Instance resource in Oracle Cloud Infrastructure Analytics service.
+Create a new AnalyticsInstance in the specified compartment. The operation is long-running and creates a new WorkRequest.
+
+* Parameters
+ * __Oracle_Analytics_Instance_Name__ - The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.
+ * __analytics_instance_feature_set__ - Analytics feature set: ENTERPRISE_ANALYTICS or SELF_SERVICE_ANALYTICS set
+ * __analytics_instance_license_type__ - The license used for the service: LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE
+ * __analytics_instance_idcs_access_token__ - IDCS access token identifying a stripe and service administrator user. THe IDCS access token can be obtained from OCI console - Menu -> Identity & Security -> Federation -> OracleIdentityCloudService - and now click on the Oracle Identity Cloud Service Console)
+ Access Oracle Identity Cloud Service console, click the avatar icon on the top-right corner, and then click My Access Tokens.
+ You can download an access token in the following ways:
+ Select Invokes Identity Cloud Service APIs to specify the available administrator roles that are assigned to you. The APIs from the specified administrator roles will be included in the token.
+ Select Invokes other APIs to select confidential applications that are assigned to the user account.
+ Click Select an Application to add a configured confidential resource application. On the Select an Application window, the list of assigned confidential applications displays.
+ Click applications to select them, and then click Add. The My Access Tokens page lists the added applications.
+ In the Token Expires in (Mins) field, select or enter how long (in minutes) the access token you're generating can be used before it expires. You can choose to keep the default number or specify between 1 and 527,040.
+ Click Download Token. The access token is generated and downloaded to your local machine as a tokens.tok file.
+ * __analytics_instance_capacity_capacity_type__ - The capacity model to use. Accepted values are: OLPU_COUNT, USER_COUNT . Values are case-insensitive.
+ * __analytics_instance_capacity_value__ - The capacity value selected (OLPU count, number of users, …etc…). This parameter affects the number of CPUs, amount of memory or other resources allocated to the instance.
+
+
+Below is an example:
+```
+
+variable "Oracle_Analytics_Instance_Name" {
+ default = "CrowdCounting"
+}
+
+variable "analytics_instance_feature_set" {
+ type = string
+ default = "ENTERPRISE_ANALYTICS"
+}
+
+variable "analytics_instance_license_type" {
+ type = string
+ default = "LICENSE_INCLUDED"
+}
+
+variable "analytics_instance_idcs_access_token" {
+ type = string
+ default = ""
+}
+
+variable "analytics_instance_capacity_capacity_type" {
+ type = string
+ default = "OLPU_COUNT"
+}
+
+variable "analytics_instance_capacity_value" {
+ type = number
+ default = 1
+}
+
+```
+
+# Object Storage
+This resource provides the Bucket resource in Oracle Cloud Infrastructure Object Storage service.
+Creates a bucket in the given namespace with a bucket name and optional user-defined metadata. Avoid entering confidential information in bucket names.
+
+* Parameters:
+ * __bucket_name__ - The name of the bucket. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods. Bucket names must be unique within an Object Storage namespace. Avoid entering confidential information. example: Example: my-new-bucket1
+ * __bucket_access_type__ - The type of public access enabled on this bucket. A bucket is set to NoPublicAccess by default, which only allows an authenticated caller to access the bucket and its contents. When ObjectRead is enabled on the bucket, public access is allowed for the GetObject, HeadObject, and ListObjects operations. When ObjectReadWithoutList is enabled on the bucket, public access is allowed for the GetObject and HeadObject operations.
+ * __bucket_storage_tier__ - The type of storage tier of this bucket. A bucket is set to 'Standard' tier by default, which means the bucket will be put in the standard storage tier. When 'Archive' tier type is set explicitly, the bucket is put in the Archive Storage tier. The 'storageTier' property is immutable after bucket is created.
+ * __bucket_events_enabled__ - Whether or not events are emitted for object state changes in this bucket. By default, objectEventsEnabled is set to false. Set objectEventsEnabled to true to emit events for object state changes. For more information about events, see Overview of Events.
+
+
+Below is an example:
+```
+variable "bucket_name" {
+ type = string
+ default = "CrowdCounting"
+}
+
+variable "bucket_access_type" {
+ type = string
+ default = "NoPublicAccess"
+}
+
+variable "bucket_storage_tier" {
+ type = string
+ default = "Standard"
+}
+
+variable "bucket_events_enabled" {
+ type = bool
+ default = false
+}
+```
+
+
+# KeyGen
+Generates a secure private key and encodes it as PEM. This resource is primarily intended for easily bootstrapping throwaway development environments.
+
+In the main.tf file we are calling the keygen module that will create one public and one private key.
+This keys are neccesary, as the public key will be generated and injected in all the instances, and the private key will be generated.
+Both can be found in the solution folder if you want to use them after the deployment it's done.
+For Resource Manager, the keys can be found in the dashboard under the resource section.
+
+Below is an example:
+```
+module "keygen" {
+ source = "../../../cloud-foundation/modules/cloud-foundation-library/keygen"
+ display_name = "keygen"
+ subnet_domain_name = "keygen"
+}
+```
+
+
+# Compute UI Data Server VM Configuration
+The compute module will create one VM, where the application is under two docker container and running also a webservice that gets the infos of the videos inside the AI algoritym.
+For the UI Data Server VM we are using the Oracle-Linux-Cloud-Developer-8.5-2022.05.22-0 image as it comes with all the neccesary software installed.
+
+More information about this image and about the OCIDs required to be provided as a variable can be found here:
+
+https://docs.oracle.com/en-us/iaas/images/image/2e439f8e-e98f-489b-82a3-338360b46b82/
+
+Here is the list of all the OCID images for each region.
+
+```
+Image OCIDs
+ Region OCID
+
+ eu-amsterdam-1 = "ocid1.image.oc1.eu-amsterdam-1.aaaaaaaabcomraotpw6apg7xvmc3xxu2avkkqpx4yj7cbdx7ebcm4d52halq"
+ eu-stockholm-1 = "ocid1.image.oc1.eu-stockholm-1.aaaaaaaa52kiqhwcoprmwfiuwureucv7nehqjfofoicwptpixdphzvon2mua"
+ me-abudhabi-1 = "ocid1.image.oc1.me-abudhabi-1.aaaaaaaa7nqsxvp4vp25gvzcrvld6xaiyxaxmzepkb5gz6us5sfkgeeez2zq"
+ ap-mumbai-1 = "ocid1.image.oc1.ap-mumbai-1.aaaaaaaaham2gnbrst3s46jrwchlnl3uqo7yxij7f3pqdzwx7zybu657347q"
+ eu-paris-1 = "ocid1.image.oc1.eu-paris-1.aaaaaaaaab5yi4bbnabymexkvwcdjlcjiue26kf3vz6dvzm6dvpttqcpaj5q"
+ uk-cardiff-1 = "ocid1.image.oc1.uk-cardiff-1.aaaaaaaagvgnze6oq5il7b26onoq4daeaqrghp5hx4yp3q3rvtfpnbzq4zhq"
+ me-dubai-1 = "ocid1.image.oc1.me-dubai-1.aaaaaaaaid5v36623wk7lyoivnqwygyaxppqfbzyo35wifxs7hkqo5caxhqa"
+ eu-frankfurt-1 = "ocid1.image.oc1.eu-frankfurt-1.aaaaaaaa3mdtxzi5rx2ids2tb74wmm77zvsqdaxbjlgvjpr4ytzc5njtksjq"
+ sa-saopaulo-1 = "ocid1.image.oc1.sa-saopaulo-1.aaaaaaaa22wjczcl7udl7w7e347zkwig7mh5p3zfbcemzs46jiaeom5lznyq"
+ ap-hyderabad-1 = "ocid1.image.oc1.ap-hyderabad-1.aaaaaaaaaq6ggb4u6p4fgsdcj7o2p4akt5t7gmyjnvootiytrqc5joe5pmfq"
+ us-ashburn-1 = "ocid1.image.oc1.iad.aaaaaaaas4cu36z32iraul5otar4gl3uy4s5jkupcc4m5shfqlatjiwaoftq"
+ ap-seoul-1 = "ocid1.image.oc1.ap-seoul-1.aaaaaaaakrtvc67c6thtmhrwphecd66omeytl7jmv3zd2bci74j56r4xodwq"
+ me-jeddah-1 = "ocid1.image.oc1.me-jeddah-1.aaaaaaaaghsie5mvgzb6fbfzujidzrg7jnrraqkh6qkyh2vw7rl6cdnbpe6a"
+ af-johannesburg-1 = "ocid1.image.oc1.af-johannesburg-1.aaaaaaaa2sj43nffpmyqlubrj4cikfgoij7qyqhymlnhw3bj7t26lh46euia"
+ ap-osaka-1 = "ocid1.image.oc1.ap-osaka-1.aaaaaaaao3swjyengmcc5rz3ynp2euqskvcscqwgouzs3smaarxofxbwstcq"
+ uk-london-1 = "ocid1.image.oc1.uk-london-1.aaaaaaaaetscnayepwj2lto7mpgiwtom4jwkqafr3axumt3pt32cgwczkexq"
+ eu-milan-1 = "ocid1.image.oc1.eu-milan-1.aaaaaaaavht3nwv7qsue7ljexbqqgofogwvrlgybvtrxylm52eg6b6xrgniq"
+ ap-melbourne-1 = "ocid1.image.oc1.ap-melbourne-1.aaaaaaaafavk2azn6cizxnugwi7izvxsumhiuzthw6g7k2o4vuhg4l3phi3a"
+ eu-marseille-1 = "ocid1.image.oc1.eu-marseille-1.aaaaaaaakpex24z6rmmyvdeop72nomfui5t54lztix7t5mblqii4l7v4iecq"
+ il-jerusalem-1 = "ocid1.image.oc1.il-jerusalem-1.aaaaaaaafgok5gj36cnrsqo6a3p72wqpg45s3q32oxkt45fq573obioliiga"
+ ap-tokyo-1 = "ocid1.image.oc1.ap-tokyo-1.aaaaaaaappsxkscys22g5tha37tksf6rlec3tm776dnq7dcquaofeqqb6rna"
+ us-phoenix-1 = "ocid1.image.oc1.phx.aaaaaaaawmvmgfvthguywgry23pugqqv2plprni37sdr2jrtzq6i6tmwdjwa"
+ sa-santiago-1 = "ocid1.image.oc1.sa-santiago-1.aaaaaaaatqcxvjriek3gdndhk43fdss6hmmd47fw2vmuq7ldedr5f555vx5q"
+ ap-singapore-1 = "ocid1.image.oc1.ap-singapore-1.aaaaaaaaouprplh2bubqudrghr46tofi3bukvtrdgiuvckylpk4kvmxyhzda"
+ us-sanjose-1 = "ocid1.image.oc1.us-sanjose-1.aaaaaaaaqudryedi3l4danxy5kxbwqkz3nonewp3jwb5l3tdcikhftthmtga"
+ ap-sydney-1 = "ocid1.image.oc1.ap-sydney-1.aaaaaaaaogu4pvw4zw2p7kjabyynczopoqipecr2gozdaolh5kem2mkdrloa"
+ sa-vinhedo-1 = "ocid1.image.oc1.sa-vinhedo-1.aaaaaaaa57khlnd4ziajy6wwmud2d6k3wsqkm4yce3mlzbgxeggpbu3yqbpa"
+ ap-chuncheon-1 = "ocid1.image.oc1.ap-chuncheon-1.aaaaaaaanod2kc3bw5l3myyd5okw4c46kapdpsu2fqgyswf4lka2hrordlla"
+ ca-montreal-1 = "ocid1.image.oc1.ca-montreal-1.aaaaaaaaevwlof26wfzcoajtlmykpaev7q5ekqyvkpqo2sjo3gdwzygu7xta"
+ ca-toronto-1 = "ocid1.image.oc1.ca-toronto-1.aaaaaaaanajb7uklrra5eq2ewx35xfi2aulyohweb2ugik7kc6bdfz6swyha"
+ eu-zurich-1 = "ocid1.image.oc1.eu-zurich-1.aaaaaaaameaqzqjwp45epgv2zywkaw2cxutz6gdc6jxnrrbb4ciqpyrnkczq"
+```
+
+More information regarding shapes can be found here:
+
+https://docs.oracle.com/en-us/iaas/Content/Compute/References/computeshapes.htm
+
+* Parameters for the UI Data Server VM Configuration
+ * __ui_data_server_display_name__ - (Required) (Updatable) - Required. The hostname/dns name for the UI Data Server VM.
+ * __ui_data_server_shape__ - (Required) (Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
+
+```
+variable "ui_data_server_display_name" {
+ default = "CrowdCountServerIP"
+}
+
+variable "ui_data_server_shape" {
+ default = "VM.Standard2.8"
+}
+
+```
+
+# Network
+This resource provides the Vcn resource in Oracle Cloud Infrastructure Core service anso This resource provides the Subnet resource in Oracle Cloud Infrastructure Core service.
+The solution will create 1 VCN in your compartment, 2 subnets ( one public and one private so the analytics cloud instance can be public or private ), 2 route tables for incomming and outoing traffic, 2 Network Security Groups for ingress and egress traffic, 1 internet gateway, 2 route tables for each subnet, dhcp service, NAT Gateway and a Service Gateway.
+
+* Parameters
+ * __vcn_cidr__ - The list of one or more IPv4 CIDR blocks for the VCN that meet the following criteria:
+ The CIDR blocks must be valid.
+ They must not overlap with each other or with the on-premises network CIDR block.
+ The number of CIDR blocks must not exceed the limit of CIDR blocks allowed per VCN. It is an error to set both cidrBlock and cidrBlocks. Note: cidr_blocks update must be restricted to one operation at a time (either add/remove or modify one single cidr_block) or the operation will be declined.
+ * __public_subnet_cidr__ - The CIDR IP address range of the subnet. The CIDR must maintain the following rules - a. The CIDR block is valid and correctly formatted. b. The new range is within one of the parent VCN ranges. This is the cidr for the public subnet.
+ * __private_subnet_cidr__ - The CIDR IP address range of the subnet. The CIDR must maintain the following rules - a. The CIDR block is valid and correctly formatted. b. The new range is within one of the parent VCN ranges. This is the cidr for the private subnet.
+
+
+Below is an example:
+```
+variable "vcn_cidr" {
+ default = "10.0.0.0/16"
+}
+
+variable "public_subnet_cidr" {
+ default = "10.0.1.0/24"
+}
+
+variable "private_subnet_cidr" {
+ default = "10.0.2.0/24"
+}
+```
+
+## Running the code
+
+```
+# Run init to get terraform modules
+$ terraform init
+
+# Create the infrastructure
+$ terraform apply --auto-approve
+
+# If you are done with this infrastructure, take it down
+$ terraform destroy --auto-approve
+```
+
+# What-to-do-after-the-Deployment-via-Terraform-CLI
+
+There are 2 docker containers running on the VM with 2 different applications:
+
+ - The first one can be accesed from a browser and connect to : __http://:5000__
+
+This application it's doing the followings:
+
+- AI at Edge demonstration
+ * The application on RED is keep counting the number of person captured by IP cameras
+ * The application is python code using Open Source DL Model for Object Detection
+
+The second application can be accesed from a browser and connect to : __http://:5001 ; and wait for a couple of minutes so the AI will count the people from the cameras and will inject the data inside the database.__
+
+This application it's doing the followings:
+
+- Data synchronization between RED and OCI
+ * The application on RED is inserting the number of person to OCI Autonomous DB continuously
+
+- Data Visualization by OCI Analytics
+ * Crowding situation can be monitored visually through Analytics Dashboard
+
+
+__Next part is the Data Visualization by OCI Analytics - Crowding situation can be monitored visually through Analytics Dashboard :__
+
+- After the soltution was deployed successfully from Terraform CLI you will have some outputs on the screen.
+- As the private key for the Bastion was created on the fly - we will use it to connect to the Bastion Host.
+
+__SSH to the bastion with the Public IP Adress printed on the output from terraform:__
+
+```
+$ ssh -i private_key_bastion.pem opc@ui_data_server_public_ip -o IdentitiesOnly=yes
+
+```
+To interact with the Oracle Analytics API you will need to set up the credentials.
+As the deployment it's getting automated all your credentials from the terraform like , ociUserId ,ociKeyFingerprint ,ociTenancyId and ociRegion you will need to update also your private key.
+For this - edit the /home/opc/.oci/oci_api_key.pem file - and replace the content of the key with your own private key that you used to deploy the solution with terraform.
+
+Now you will need to do one manual step to grab the token of the Oracle Analytics Cloud and insert it in a shell script.
+
+- Go inside your Tenancy, click on the Menu, click on Identity & Security and under Identity click on Federation.
+Click on your identity provider and click on the link in the middle called : Oracle Identity Cloud Service Console: https://idcs-abcd.identity.oraclecloud.com/ui/v1/adminconsole
+
+
+
+- Now click on the Menu and Press Oracle Cloud Services.
+
+
+
+- Inside the Oracle Cloud Services search for your Analytics Cloud deployed and click on it.
+
+
+
+- Now go to Configuration ; click Resources.
+Here you need to modify:
+- Access Token Expiration from 100 seconds to the maximum of 604800 seconds.
+- Dezactivate the Is Refresh Token Allowed option
+- Refresh Token Expiration from 86,400 seconds. to 604800 seconds.
+
+- Click Save button in the right top.
+
+
+
+- Now, on the same page click Details and click on Generate Access Token ; and press: Download Token.
+- Open the Token and copy the key - after the app_access_token from " to the end of ".
+
+
+
+
+- Go back to your terminal that it's connected to the Bastion VM Instance and edit the __finalize.sh__ script located in /home/opc/ folder. Here is a line called __Authorization_Token=__ that needs to be filled with the Token that you have copied on the last step.
+
+
+
+
+
+Now from the terminal run the script using the __./finalize.sh__ command.
+
+The script will run and you will see this Output:
+
+```
+[opc@vnc-datamodelsmanufacturing ~]$ ./finalize.sh
+-- Getting Started
+-- Retrive the original bar file from the shared object storage
+-- Fixing the bar file
+-- Modify the links for the picture using the current hostname and tenancy name
+-- Create new bar file for OAC with the custom configuration
+-- Upload the snapshot to the object storage in our tenancy
+-- Get details of an Analytics instance
+HTTP/1.1 200 OK
+-- Create the Register Snapshot New Json File
+-- Register an existing snapshot using the new json file created with all the variables based on your environment
+HTTP/1.1 100 Continue
+HTTP/1.1 202 Accepted
+-- Get all snapshots available for your OAC already registered
+HTTP/1.1 200 OK
+-- Get the ID of your registered snapshoot and use it in the next step
+-- Create the Restore Snapshot New Json File with your registered ID of the snapshot
+-- Restore a snapshot in an Analytics instance
+HTTP/1.1 202 Accepted
+
+
+-- Restore Done!
+```
+
+__Now everything it's done and ready ! You will want to connect to Oracle Analytics instance to see the data sets - open a web browser and connect copy paste the URL of the Analytic Cloud and hit enter.__
+
+Here you will see already all the imported dashboards and reports. Last step it's to connect to your existing DB. For this go to : Menu - Data - Connections and connect each of the connections to the DB.
+Right Click CrowdCount and select Inspect.
+Use the password of the db that you have provided in the provisioning phase and select your generated wallet that was generated in the terraform apply step - it can be found inside the root folder of the solution - file starting with "wallet_dbname.zip". Click Save.
+
+
+
+Now you can go in your workbook called CrowdCount and in inside there are 2 canvas.Click on the sys_data ( minute ) and insert all the lists that you see from the database. A map of visualisation of the people in the area will be displayed.
+
+
+__SELECT AI__
+
+To use the select ai - you need to connect to the ADW with your credentials provided and wallet file using sql developer and run:
+
+```
+EXEC DBMS_CLOUD_AI.SET_PROFILE('DEMO');
+```
+
+After that you can run the select ai, here are some examples:
+
+```
+select ai how many people seen on the camera was more than 20;
+select ai how many people seen on the camera was more than 300;
+select ai what are my cameras names;
+select ai what are my cam points;
+select ai what are the coordinates for the camera Shibuya Crossing;
+
+select ai narrate how many people seen on the camera was more than 300;
+select ai showsql how many people seen on the camera was more than 300;
+
+You can use any of the followings attributes for select ai:
+showsql
+narrate
+chat
+runsql
+```
+
+
+__Troubleshooting__
+
+Aditional checks for Yolo-crowdcount-footage application that it's doing Crowd Monitoring Demo with IP Camera and can attached also an access to IP Cameras(RTSP), Autonomous DB and Data in ADB can be utilized by OCI Analytics and Select AI demo
+
+Check schema
+```
+$ cd /home/opc/yolo-crowdcount-footage/schema/
+$ ./sqlplus.sh
+SQL> select count(*) from personcount; -> this returns 0
+SQL> select count(*) from cam_points; -> this returns 20
+SQL> exit
+```
+
+Check logs
+```
+$ tail home/opc/yolo-crowdcount-footage/app/log/app.log
+[2024-06-12 17:07:52,862] INFO: Starting camera thread.
+[2024-06-12 17:07:52,866] INFO: Starting camera thread.
+[2024-06-12 17:07:52,866] INFO: Starting YOLO thread.
+[2024-06-12 17:07:52,866] INFO: Starting YOLO thread.
+[2024-06-12 17:08:55,559] INFO: DB insert, RowCount = 10
+[2024-06-12 17:08:55,561] INFO: DB insert, RowCount = 10
+ :
+ :
+```
+
+Check DB Please check personcount table. 20 rows should be inserted every minute.
+```
+$ tail home/opc/yolo-crowdcount-footage/schema/sqlplus.sh
+SQL> select count(*) from personcount;
+
+ COUNT(*)
+----------
+ 180
+```
+
+
+## Documentation
+
+[Autonomous Databases Overview](https://docs.oracle.com/en-us/iaas/Content/Database/Concepts/adboverview.htm)
+
+[Analytics Cloud Overview](https://docs.oracle.com/en-us/iaas/analytics-cloud/index.html)
+
+[Object Storage Overview](https://docs.oracle.com/en-us/iaas/Content/Object/Concepts/objectstorageoverview.htm)
+
+[Certificates](https://docs.oracle.com/en-us/iaas/Content/Compute/Concepts/computeoverview.htm)
+
+[Compute service](https://docs.oracle.com/en-us/iaas/Content/Compute/Concepts/computeoverview.htm)
+
+[Network Overview](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/overview.htm)
+
+[Select AI Overview](https://docs.oracle.com/en-us/iaas/autonomous-database-serverless/doc/sql-generation-ai-autonomous.html)
+
+[Select AI presentation](https://www.oracle.com/autonomous-database/select-ai/)
+
+[Terraform Autonomous Databases Resource](https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/database_autonomous_database)
+
+[Terraform Analytics Cloud Resource](https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/analytics_analytics_instance)
+
+[Terraform Certificates - TLS Provider](https://registry.terraform.io/providers/hashicorp/tls/latest/docs)
+
+[Terraform Oracle Cloud Infrastructure Core Service](https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/core_instance)
+
+[Terraform Object Storage Service Resource](https://registry.terraform.io/providers/hashicorp/oci/latest/docs/resources/objectstorage_bucket)
+
+[Terraform Vcn resource in Oracle Cloud Infrastructure Core service](https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/core_vcn)
+
+[Terraform Subnet resource in Oracle Cloud Infrastructure Core service](https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/core_subnet)
+
+
+## The Team
+- **Owners**: [Panaitescu Ionel](https://github.com/ionelpanaitescu)
+
+## Feedback
+We welcome your feedback. To post feedback, submit feature ideas or report bugs, please use the Issues section on this repository.
+
+## Known Issues
+**At the moment, there are no known issues**
\ No newline at end of file
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/PublicSector-Crowd_Counting.png b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/PublicSector-Crowd_Counting.png
new file mode 100644
index 0000000..a2c84f3
Binary files /dev/null and b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/PublicSector-Crowd_Counting.png differ
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/PublicSector-Crowd_Counting_arch.png b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/PublicSector-Crowd_Counting_arch.png
new file mode 100644
index 0000000..552cd2e
Binary files /dev/null and b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/PublicSector-Crowd_Counting_arch.png differ
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step1.png b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step1.png
new file mode 100644
index 0000000..db2f557
Binary files /dev/null and b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step1.png differ
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step2.png b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step2.png
new file mode 100644
index 0000000..1661802
Binary files /dev/null and b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step2.png differ
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step3.png b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step3.png
new file mode 100644
index 0000000..7efb84c
Binary files /dev/null and b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step3.png differ
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step4.png b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step4.png
new file mode 100644
index 0000000..d17648e
Binary files /dev/null and b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step4.png differ
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step5.png b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step5.png
new file mode 100644
index 0000000..7ba228c
Binary files /dev/null and b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step5.png differ
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step6.png b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step6.png
new file mode 100644
index 0000000..40def98
Binary files /dev/null and b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step6.png differ
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step7.png b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step7.png
new file mode 100644
index 0000000..53b60df
Binary files /dev/null and b/cloud-foundation/solutions/PublicSector-Crowd_Counting/images/step7.png differ
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/local.tf b/cloud-foundation/solutions/PublicSector-Crowd_Counting/local.tf
new file mode 100644
index 0000000..13fce77
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/local.tf
@@ -0,0 +1,476 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+data "oci_identity_availability_domains" "ADs" {
+ compartment_id = var.tenancy_ocid
+}
+
+data "oci_identity_tenancy" "tenancy" {
+ tenancy_id = var.tenancy_ocid
+}
+
+data oci_identity_regions regions {
+}
+
+data "template_file" "ad_names" {
+ count = length(data.oci_identity_availability_domains.ADs.availability_domains)
+ template = lookup(data.oci_identity_availability_domains.ADs.availability_domains[count.index], "name")
+}
+
+data "oci_core_services" "sgw_services" {
+ filter {
+ name = "cidr_block"
+ values = ["all-.*-services-in-oracle-services-network"]
+ regex = true
+ }
+}
+
+data "oci_identity_region_subscriptions" "home_region_subscriptions" {
+ tenancy_id = var.tenancy_ocid
+
+ filter {
+ name = "is_home_region"
+ values = [true]
+ }
+}
+
+data "oci_objectstorage_namespace" "os" {
+ compartment_id = var.tenancy_ocid
+}
+
+data "template_cloudinit_config" "ui-config" {
+ gzip = true
+ base64_encode = true
+ # cloud-config configuration file.
+ # /var/lib/cloud/instance/scripts/*
+ part {
+ filename = "init.sh"
+ content_type = "text/cloud-config"
+ content = file("${path.module}/scripts/ui-bootstrap")
+ }
+}
+
+locals {
+ ad_names = compact(data.template_file.ad_names.*.rendered)
+ public_subnet_availability_domain = local.ad_names[0]
+
+ region_map = {
+ for r in data.oci_identity_regions.regions.regions :
+ r.name => r.key
+ }
+
+ home_region_for_oac = lookup(
+ local.region_map, var.region
+ )
+
+# Create Autonomous Data Warehouse
+ adw_params = {
+ adw = {
+ compartment_id = var.compartment_id
+ compute_model = var.db_compute_model
+ compute_count = var.db_compute_count
+ size_in_tbs = var.db_size_in_tbs
+ db_name = var.db_name
+ db_workload = var.db_workload
+ db_version = var.db_version
+ enable_auto_scaling = var.db_enable_auto_scaling
+ is_free_tier = var.db_is_free_tier
+ license_model = var.db_license_model
+ create_local_wallet = true
+ database_admin_password = var.db_password
+ database_wallet_password = var.db_password
+ data_safe_status = var.db_data_safe_status
+ operations_insights_status = var.db_operations_insights_status
+ database_management_status = var.db_database_management_status
+ is_mtls_connection_required = true
+ subnet_id = null
+ nsg_ids = null
+ defined_tags = {}
+ },
+}
+
+
+# Create Oracle Analytics Cloud
+ oac_params = {
+ oac = {
+ compartment_id = var.compartment_id,
+ analytics_instance_feature_set = var.analytics_instance_feature_set
+ analytics_instance_license_type = var.analytics_instance_license_type
+ analytics_instance_hostname = var.Oracle_Analytics_Instance_Name
+ analytics_instance_idcs_access_token = var.analytics_instance_idcs_access_token
+ analytics_instance_capacity_capacity_type = var.analytics_instance_capacity_capacity_type
+ analytics_instance_capacity_value = var.analytics_instance_capacity_value
+ analytics_instance_network_endpoint_details_network_endpoint_type = "public"
+ subnet_id = null
+ vcn_id = null
+ analytics_instance_network_endpoint_details_whitelisted_ips = ["0.0.0.0/0"]
+ analytics_instance_network_endpoint_details_whitelisted_vcns_id = lookup(module.network-vcn.vcns,"vcn").id,
+ whitelisted_ips = ["0.0.0.0/0"]
+ defined_tags = {}
+ }
+}
+
+# Create Object Storage Buckets
+ bucket_params = {
+ data_bucket = {
+ compartment_id = var.compartment_id,
+ name = var.bucket_name
+ access_type = var.bucket_access_type
+ storage_tier = var.bucket_storage_tier
+ events_enabled = var.bucket_events_enabled
+ defined_tags = {}
+ }
+}
+
+# Create UI Data Server instance
+ ui_data_server_params = {
+ ui_data_server = {
+ availability_domain = 1
+ compartment_id = var.compartment_id
+ display_name = var.ui_data_server_display_name
+ shape = var.ui_data_server_shape
+ defined_tags = {}
+ freeform_tags = {}
+ subnet_id = lookup(module.network-subnets.subnets,"public-subnet").id
+ vnic_display_name = ""
+ assign_public_ip = true
+ hostname_label = ""
+ source_type = "image"
+ source_id = var.ui_data_server[var.region]
+ boot_volume_size_in_gbs = 500
+ metadata = {
+ ssh_authorized_keys = module.keygen.OPCPrivateKey.public_key_openssh
+ user_data = data.template_cloudinit_config.ui-config.rendered
+ }
+ fault_domain = ""
+ provisioning_timeout_mins = "30"
+ }
+ }
+
+
+## Creates the VCN "vcn with the CIDR BLOCK 10.0.0.0/16"
+ vcns-lists = {
+ vcn = {
+ compartment_id = var.compartment_id
+ cidr = var.vcn_cidr
+ dns_label = "vcn"
+ is_create_igw = true
+ is_attach_drg = false
+ block_nat_traffic = false
+ subnets = {}
+ defined_tags = {}
+ freeform_tags = {}
+ }
+}
+
+#creates the subnet "public-subnet - 10.0.0.0/24 and private-subnet - 10.0.1.0/24"
+ subnet-lists = {
+ "" = {
+ compartment_id = var.compartment_id
+ cidr = var.vcn_cidr
+ dns_label = "vcn"
+ is_create_igw = false
+ is_attach_drg = false
+ block_nat_traffic = false
+
+ subnets = {
+ public-subnet = {
+ compartment_id=var.compartment_id,
+ vcn_id=lookup(module.network-vcn.vcns,"vcn").id,
+ availability_domain=""
+ cidr=var.public_subnet_cidr,
+ dns_label="public",
+ private=false,
+ dhcp_options_id="",
+ security_list_ids=[module.network-security-lists.security_lists["public_security_list"].id],
+ defined_tags = {}
+ freeform_tags = {}
+ }
+ private-subnet = {
+ compartment_id=var.compartment_id,
+ vcn_id=lookup(module.network-vcn.vcns,"vcn").id,
+ availability_domain=""
+ cidr=var.private_subnet_cidr,
+ dns_label="private",
+ private=true,
+ dhcp_options_id="",
+ security_list_ids=[module.network-security-lists.security_lists["private_security_list"].id],
+ defined_tags = {}
+ freeform_tags = {}
+ }
+ }
+ defined_tags = {}
+ freeform_tags = {}
+ }
+ }
+
+#create routing table attached to vcn and subnet to route traffic via IGW
+ subnets_route_tables = {
+ public_route_table = {
+ compartment_id = var.compartment_id,
+ vcn_id=lookup(module.network-vcn.vcns,"vcn").id,
+ subnet_id = lookup(module.network-subnets.subnets,"public-subnet").id,
+ route_table_id = "",
+ route_rules = [{
+ is_create = true,
+ destination = "0.0.0.0/0",
+ destination_type = "CIDR_BLOCK",
+ network_entity_id = lookup(module.network-vcn.internet_gateways, lookup(module.network-vcn.vcns,"vcn").id).id,
+ description = ""
+ }],
+ defined_tags = {}
+ }
+ private_route_table-nat = {
+ compartment_id = var.compartment_id,
+ vcn_id=lookup(module.network-vcn.vcns,"vcn").id,
+ subnet_id = lookup(module.network-subnets.subnets,"private-subnet").id,
+ route_table_id = "",
+ route_rules = [{
+ is_create = true,
+ destination = "0.0.0.0/0",
+ destination_type = "CIDR_BLOCK",
+ network_entity_id = lookup(module.network-vcn.nat_gateways, lookup(module.network-vcn.vcns,"vcn").id).id,
+ description = ""
+ },
+ {
+ is_create = true,
+ destination = lookup(data.oci_core_services.sgw_services.services[0], "cidr_block"),
+ destination_type = "SERVICE_CIDR_BLOCK",
+ network_entity_id = lookup(module.network-vcn.service_gateways, lookup(module.network-vcn.vcns,"vcn").id).id,
+ description = ""
+ }],
+ defined_tags = {}
+ }
+ }
+
+#network routing attachment
+network-routing-attachment = {
+ "" = {
+ compartment_id = var.compartment_id,
+ vcn_id = lookup(module.network-vcn.vcns,"vcn").id,
+ subnet_id = lookup(module.network-subnets.subnets,"public-subnet").id,
+ route_table_id = lookup(module.network-routing.subnets_route_tables,"public_route_table").id,
+ route_rules = [],
+ defined_tags = {}
+ }
+}
+
+#create security list - opening port 22 ssh and port 80 - http
+ security_lists = {
+ public_security_list = {
+ vcn_id = lookup(module.network-vcn.vcns,"vcn").id,
+ compartment_id = var.compartment_id,
+ defined_tags = {}
+ ingress_rules = concat([{
+ stateless = false
+ protocol = "6" // tcp
+ src = "0.0.0.0/0"
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = {min = 22, max= 22},
+ icmp_type = null,
+ icmp_code = null
+ }],
+ [{
+ stateless = false
+ protocol = "6" // tcp
+ src = "0.0.0.0/0"
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = {min = 443, max=443},
+ icmp_type = null,
+ icmp_code = null
+ }],
+ [{
+ stateless = false
+ protocol = "6" // tcp
+ src = "0.0.0.0/0"
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = {min = 80, max=80},
+ icmp_type = null,
+ icmp_code = null
+ }],
+ [{
+ stateless = false
+ protocol = "6" // tcp
+ src = "0.0.0.0/0"
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = {min = 5900, max=5900},
+ icmp_type = null,
+ icmp_code = null
+ }],
+ [{
+ stateless = false
+ protocol = "all",
+ src = "0.0.0.0/0"
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = null,
+ icmp_type = null,
+ icmp_code = null
+ }],
+ [{
+ stateless = false
+ protocol = "6" // tcp
+ src = "0.0.0.0/0"
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = {min = 3389, max=3389},
+ icmp_type = null,
+ icmp_code = null
+ }]),
+ egress_rules = [{
+ stateless = false,
+ protocol = "all",
+ dst = "0.0.0.0/0",
+ dst_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = null,
+ icmp_type = null,
+ icmp_code = null
+ }],
+ }
+ private_security_list = {
+ vcn_id = lookup(module.network-vcn.vcns,"vcn").id,
+ compartment_id = var.compartment_id,
+ defined_tags = {}
+ ingress_rules = concat([{
+ stateless = false
+ protocol = "all"
+ src = var.vcn_cidr,
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = null,
+ icmp_type = null,
+ icmp_code = null
+ }],
+ [{
+ stateless = false
+ protocol = "6"
+ src = var.vcn_cidr,
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = {min = 22, max=22},
+ icmp_type = null,
+ icmp_code = null
+ }],
+ [{
+ stateless = false
+ protocol = "all",
+ src = "0.0.0.0/0"
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = null,
+ icmp_type = null,
+ icmp_code = null
+ }],
+ [{
+ stateless = false
+ protocol = "all"
+ src = "0.0.0.0/0",
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = null
+ icmp_type = null,
+ icmp_code = null
+ }],
+ [{
+ stateless = false
+ protocol = "17"
+ src = var.vcn_cidr,
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = {min = 3306, max=3306},
+ icmp_type = null,
+ icmp_code = null
+ }]),
+ egress_rules = [{
+ stateless = false,
+ protocol = "all",
+ dst = "0.0.0.0/0",
+ dst_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = null,
+ icmp_type = null,
+ icmp_code = null
+ }]
+ }
+ }
+
+# Create Network Security lists - public and private
+ nsgs-lists = {
+ public-nsgs-list = {
+ vcn_id = lookup(module.network-vcn.vcns,"vcn").id,
+ compartment_id = var.compartment_id,
+ defined_tags = {}
+ ingress_rules = { ingress1 = {
+ is_create = true,
+ description = "Parameters for customizing Network Security Group(s).",
+ protocol = "all",
+ stateless = false,
+ src = var.public_subnet_cidr,
+ src_type = "CIDR_BLOCK",
+ dst_port_min = null,
+ dst_port_max = null,
+ src_port_min = null,
+ src_port_max = null,
+ icmp_type = null,
+ icmp_code = null
+ }},
+ egress_rules = { egress1 = {
+ is_create = true,
+ description = "Parameters for customizing Network Security Group(s).",
+ protocol = "all",
+ stateless = false,
+ dst = "0.0.0.0/0",
+ dst_type = "CIDR_BLOCK",
+ dst_port_min = null,
+ dst_port_max = null,
+ src_port_min = null,
+ src_port_max = null,
+ icmp_type = null,
+ icmp_code = null
+ }},
+ }
+ private-nsgs-list = {
+ vcn_id = lookup(module.network-vcn.vcns,"vcn").id,
+ compartment_id = var.compartment_id,
+ defined_tags = {}
+ ingress_rules = { ingress2 = {
+ is_create = true,
+ description = "Parameters for customizing Network Security Group(s).",
+ protocol = "all",
+ stateless = false,
+ src = var.private_subnet_cidr,
+ src_type = "CIDR_BLOCK",
+ dst_port_min = null,
+ dst_port_max = null,
+ src_port_min = null,
+ src_port_max = null,
+ icmp_type = null,
+ icmp_code = null
+ }},
+ egress_rules = { egress2 = {
+ is_create = true,
+ description = "Parameters for customizing Network Security Group(s).",
+ protocol = "all",
+ stateless = false,
+ dst = "0.0.0.0/0",
+ dst_type = "CIDR_BLOCK",
+ dst_port_min = null,
+ dst_port_max = null,
+ src_port_min = null,
+ src_port_max = null,
+ icmp_type = null,
+ icmp_code = null
+ }}
+ }
+ }
+
+
+# End
+
+
+}
\ No newline at end of file
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/main.tf b/cloud-foundation/solutions/PublicSector-Crowd_Counting/main.tf
new file mode 100644
index 0000000..fc9acc6
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/main.tf
@@ -0,0 +1,120 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+
+# Create ADW Database with Endpoint in private subnet
+
+module "adb" {
+ source = "../../../cloud-foundation/modules/cloud-foundation-library/database/adb"
+ adw_params = local.adw_params
+}
+
+
+# Calling the Oracle Analytics Cloud module
+module "oac" {
+ source = "../../../cloud-foundation/modules/cloud-foundation-library/oac"
+ oac_params = local.oac_params
+}
+
+
+# Calling the Object Storage module
+module "os" {
+ source = "../../../cloud-foundation/modules/cloud-foundation-library/object-storage"
+ tenancy_ocid = var.tenancy_ocid
+ bucket_params = {
+ for k,v in local.bucket_params : k => v if v.compartment_id != ""
+ }
+}
+
+
+# Generate public and private keys
+
+module "keygen" {
+ source = "../../../cloud-foundation/modules/cloud-foundation-library/keygen"
+}
+
+
+# Calling the UI Data Server Instance module
+
+module "ui_data_server" {
+ source = "../../../cloud-foundation/modules/cloud-foundation-library/instance_with_out_flexible_test"
+ tenancy_ocid = var.tenancy_ocid
+ instance_params = local.ui_data_server_params
+}
+
+
+# Connect to instance and execute provision of server
+
+module "provisioner" {
+ source = "./modules/provisioner"
+ depends_on = [module.adb, module.keygen, module.ui_data_server]
+ host = module.ui_data_server.InstancePublicIPs[0]
+ private_key = module.keygen.OPCPrivateKey["private_key_pem"]
+ db_name = var.db_name
+ db_password = var.db_password
+ llmpw = var.llmpw
+ Oracle_Analytics_Instance_Name = var.Oracle_Analytics_Instance_Name
+ home_region_for_oac = lower(substr(local.home_region_for_oac, 0, 2))
+ Tenancy_Name = lower(data.oci_identity_tenancy.tenancy.name)
+ bucket = var.bucket_name
+ Authorization_Token = var.Authorization_Token
+ ociRegion = var.region
+ ociTenancyId = var.tenancy_ocid
+ ociUserId = var.user_ocid
+ ociKeyFingerprint = var.fingerprint
+ ociPrivateKeyWrapped = var.ociPrivateKeyWrapped
+}
+
+
+# Calling the Network modules
+
+module "network-vcn" {
+ source = "../../../cloud-foundation/modules/oci-cis-landingzone-quickstart/network/vcn-basic"
+ compartment_id = var.compartment_id
+ service_label = ""
+ service_gateway_cidr = lookup(data.oci_core_services.sgw_services.services[0], "cidr_block")
+ vcns = {
+ for k,v in local.vcns-lists : k => v if v.compartment_id != ""
+ }
+}
+
+module "network-subnets" {
+ source = "../../../cloud-foundation/modules/oci-cis-landingzone-quickstart/network/vcn-basic"
+ compartment_id = var.compartment_id
+ service_label = ""
+ service_gateway_cidr = lookup(data.oci_core_services.sgw_services.services[0], "cidr_block")
+ vcns = {
+ for k,v in local.subnet-lists : k => v if v.compartment_id != ""
+ }
+}
+
+module "network-routing" {
+ source = "../../../cloud-foundation/modules/oci-cis-landingzone-quickstart/network/vcn-routing"
+ compartment_id = var.compartment_id
+ subnets_route_tables = {
+ for k,v in local.subnets_route_tables : k => v if v.compartment_id != ""
+ }
+}
+
+module "network-routing-attachment" {
+ source = "../../../cloud-foundation/modules/oci-cis-landingzone-quickstart/network/vcn-routing"
+ compartment_id = var.compartment_id
+ subnets_route_tables = local.network-routing-attachment
+}
+
+module "network-security-lists" {
+ source = "../../../cloud-foundation/modules/oci-cis-landingzone-quickstart/network/security"
+ compartment_id = var.compartment_id
+ ports_not_allowed_from_anywhere_cidr = []
+ security_lists = {
+ for k,v in local.security_lists : k => v if v.compartment_id != ""
+ }
+}
+
+module "network-security-groups" {
+ source = "../../../cloud-foundation/modules/oci-cis-landingzone-quickstart/network/security"
+ compartment_id = var.compartment_id
+ nsgs = {
+ for k,v in local.nsgs-lists : k => v if v.compartment_id != ""
+ }
+}
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/config.tpl b/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/config.tpl
new file mode 100644
index 0000000..c0fc59b
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/config.tpl
@@ -0,0 +1,6 @@
+[DEFAULT]
+user=${ociUserId}
+fingerprint=${ociKeyFingerprint}
+key_file=/home/opc/.oci/oci_api_key.pem
+tenancy=${ociTenancyId}
+region=${ociRegion}
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/db.yaml.tpl b/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/db.yaml.tpl
new file mode 100644
index 0000000..05e7c7f
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/db.yaml.tpl
@@ -0,0 +1,11 @@
+db:
+ - name: ${db_name}
+ enabled: true # true: inserted into DB, false: no access to DB
+ dsn: ${db_name}_high # TNS name for DB
+ user: DEMO # User name for demo schema
+ password: ${db_password} # User password
+ adminpw: ${db_password} # ADB ADMIN passwrod
+ https_proxy: # Proxy setting if needed
+ https_port: # Proxy setting if needed
+ llmpw: ${llmpw} # Token of the LLM provided by openai
+
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/finalize.sh.tpl b/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/finalize.sh.tpl
new file mode 100755
index 0000000..1b085f5
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/finalize.sh.tpl
@@ -0,0 +1,73 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+#!/bin/bash
+
+# Variables Section
+
+Oracle_Analytics_Instance_Name=${Oracle_Analytics_Instance_Name}
+Tenancy_Name=${Tenancy_Name}
+bucket=${bucket}
+home_region_for_oac=${home_region_for_oac}
+
+# Provide the Authorization Token to access the Analytics Instance API - maximum expiration time in the console it's: 604,800 s
+# Please provide the token without "" -> example: Authorization_Token=eyJ4NXQjUzI1NiI6ImFhN2lZUXFRSEluR
+Authorization_Token=${Authorization_Token}
+
+# OCI CLI Authentification Credentials
+ociRegion=${ociRegion}
+ociTenancyId=${ociTenancyId}
+ociUserId=${ociUserId}
+ociKeyFingerprint=${ociKeyFingerprint}
+
+# You must pass this signing key in the payload for some snapshot APIs. Before you add it to the payload, you must Base64 encode the private key (ociPrivateKeyWrapped). For example, to generate a Base64 encoded string from your private key:
+#
+# On Mac: cat myprivate-key.pem | base64 -o mywrapped-private-key.pem
+# On Linux: cat myprivate-key.pem | base64 -w 0 > mywrapped-private-key.pem
+#
+# Note: Ensure that the private key file that you encode includes -----BEGIN and -----END tags.
+#
+# Please provice the private key wrapped:
+ociPrivateKeyWrapped=${ociPrivateKeyWrapped}
+
+# Finished variables
+
+export LC_CTYPE=en_US.UTF-8
+export LC_ALL=en_US.UTF-8
+
+echo "-- Getting Started"
+
+mkdir CrowdCount
+cd CrowdCount
+echo "-- Retrive the original bar file from the shared object storage"
+wget -q https://objectstorage.us-ashburn-1.oraclecloud.com/p/V4Rghj-gZMInzteS4L2WHDd4K17ZYjDA7IY0lWYIUZA2CMaEhLKkGFLv_eEvJhfj/n/oradbclouducm/b/Crowdcount/o/CrowdCount.bar
+echo "-- Fixing the bar file"
+unzip -qq CrowdCount.bar
+rm -rf CrowdCount.bar
+echo "-- Modify the links for using the current hostname of OAC, tenancy name and region key"
+echo "-- Create new bar file for OAC with the custom configuration"
+zip -fz CrowdCount_modified.bar -r -qq *
+echo "-- Upload the snapshot to the object storage in our tenancy"
+oci os object put -ns $Tenancy_Name -bn $bucket --force --file CrowdCount_modified.bar > /dev/null
+cd ..
+rm -rf CrowdCount
+echo "-- Get details of an Analytics instance"
+curl -i --header "Authorization: Bearer $Authorization_Token" --request GET https://$Oracle_Analytics_Instance_Name-$Tenancy_Name-$home_region_for_oac.analytics.ocp.oraclecloud.com/api/20210901/system 2>&1 | grep HTTP/1.1
+echo "-- Create the Register Snapshot New Json File"
+cat registermy_snapshot.json | jq --arg bucket $bucket --arg ociRegion $ociRegion --arg ociTenancyId $ociTenancyId --arg ociUserId $ociUserId --arg ociKeyFingerprint $ociKeyFingerprint --arg ociPrivateKeyWrapped $ociPrivateKeyWrapped '{"type":.type, "name":.name, "description":.description,"storage": { "type":"OCI_NATIVE", "bucket":$bucket, "auth": {"type":"OSS_AUTH_OCI_USER_ID", "ociRegion":$ociRegion, "ociTenancyId":$ociTenancyId, "ociUserId":$ociUserId, "ociKeyFingerprint":$ociKeyFingerprint, "ociPrivateKeyWrapped":$ociPrivateKeyWrapped}}, "bar":{"uri":"file:///CrowdCount_modified.bar"}}' > registermy_snapshot_new.json
+echo "-- Register an existing snapshot using the new json file created with all the variables based on your environment"
+curl -i --header "Authorization: Bearer $Authorization_Token" --header "Content-Type: application/json" --request POST https://$Oracle_Analytics_Instance_Name-$Tenancy_Name-$home_region_for_oac.analytics.ocp.oraclecloud.com/api/20210901/snapshots -d @registermy_snapshot_new.json 2>&1 | grep HTTP/1.1
+echo "-- Get all snapshots available for your OAC already registered"
+curl -i --header "Authorization: Bearer $Authorization_Token" --request GET https://$Oracle_Analytics_Instance_Name-$Tenancy_Name-$home_region_for_oac.analytics.ocp.oraclecloud.com/api/20210901/snapshots 2>&1 | grep HTTP/1.1
+echo "-- Get the ID of your registered snapshoot and use it in the next step"
+id=`curl --silent --header "Authorization: Bearer $Authorization_Token" --request GET https://$Oracle_Analytics_Instance_Name-$Tenancy_Name-$home_region_for_oac.analytics.ocp.oraclecloud.com/api/20210901/snapshots | jq -r '.items[0].id'`
+echo "-- Create the Restore Snapshot New Json File with your registered ID of the snapshot"
+cat restore_mysnapshot.json | jq --arg id $id '{"snapshot": { "id":$id, "password":"CrowdCountAdmin123"}}' > restore_mysnapshot_new.json
+echo ""
+echo "-- Restore a snapshot in an Analytics instance"
+curl -i --header "Authorization: Bearer $Authorization_Token" --header "Content-Type: application/json" --request POST https://$Oracle_Analytics_Instance_Name-$Tenancy_Name-$home_region_for_oac.analytics.ocp.oraclecloud.com/api/20210901/system/actions/restoreSnapshot -d @restore_mysnapshot_new.json 2>&1 | grep HTTP/1.1
+sleep 120
+rm -rf registermy_snapshot_new.json
+rm -rf restore_mysnapshot_new.json
+oci os object delete --bucket-name $bucket --force --object-name CrowdCount_modified.bar
+echo "-- Restore Done!"
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/provisioner.tf b/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/provisioner.tf
new file mode 100644
index 0000000..f6b9ce5
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/provisioner.tf
@@ -0,0 +1,265 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+resource "null_resource" "remote-exec" {
+
+ provisioner "file" {
+ destination = "/home/opc/db.yaml"
+ content = templatefile("./modules/provisioner/db.yaml.tpl", {
+ db_name = var.db_name
+ db_password = var.db_password
+ llmpw = var.llmpw
+ })
+
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ source = "wallet_${var.db_name}.zip"
+ destination = "/home/opc/wallet_${var.db_name}.zip"
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ source = "./modules/provisioner/registermy_snapshot.json"
+ destination = "/home/opc/registermy_snapshot.json"
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ source = "./modules/provisioner/restore_mysnapshot.json"
+ destination = "/home/opc/restore_mysnapshot.json"
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ destination = "/home/opc/finalize.sh"
+ content = templatefile("./modules/provisioner/finalize.sh.tpl", {
+ Oracle_Analytics_Instance_Name = var.Oracle_Analytics_Instance_Name
+ Tenancy_Name = var.Tenancy_Name
+ bucket = var.bucket
+ Authorization_Token = var.Authorization_Token
+ ociRegion = var.ociRegion
+ ociTenancyId = var.ociTenancyId
+ ociUserId = var.ociUserId
+ ociKeyFingerprint = var.ociKeyFingerprint
+ ociPrivateKeyWrapped = var.ociPrivateKeyWrapped
+ home_region_for_oac = var.home_region_for_oac
+ })
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ destination = "/home/opc/config"
+ content = templatefile("./modules/provisioner/config.tpl", {
+ ociUserId = var.ociUserId
+ ociKeyFingerprint = var.ociKeyFingerprint
+ ociTenancyId = var.ociTenancyId
+ ociRegion = var.ociRegion
+ })
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ source = "./oci_api_key.pem"
+ destination = "/home/opc/oci_api_key.pem"
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+
+ provisioner "remote-exec" {
+
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+
+ inline = [
+ "sudo chmod 777 /home/opc/db.yaml",
+ "sudo chmod 777 /home/opc/wallet_${var.db_name}.zip",
+ "sudo cd /home/opc",
+ "echo 'Getting connected'",
+ "sudo wget https://objectstorage.us-ashburn-1.oraclecloud.com/p/9beXHZeJ9N3O_O9SF1NDGAs6TQHe_rJ1ajuYqIX171krgSixV1pWxgQElaAVV3Xp/n/oradbclouducm/b/Crowdcount/o/yolo-crowdcount.zip",
+ "sudo wget https://objectstorage.us-ashburn-1.oraclecloud.com/p/gsfEHMYLyva7ha6gutF1lV0D8dFaIZ_i-oZFvbc63UiJPvtq6SKBfpKcEL0mD-LD/n/oradbclouducm/b/Crowdcount/o/yolo-crowdcount-footage.zip",
+ "sudo unzip yolo-crowdcount.zip",
+ "sudo unzip yolo-crowdcount-footage.zip",
+ "sudo chmod 777 -R yolo-crowdcount",
+ "sudo chmod 777 -R yolo-crowdcount-footage",
+
+
+# Crowd Counting Demo with Pre-Captured Video (Shibuya Crossing)
+# Standalone Application (No IP camera, ADB, Analytics instances required)
+
+
+ "echo 'Collecting the datasets for the Crowd Counting Demo'",
+ "sudo docker ps -a",
+ "sudo docker build -t yolo-crowdcount /home/opc/yolo-crowdcount/. ",
+ "sudo wget https://objectstorage.us-ashburn-1.oraclecloud.com/p/e-UegVw-ryiOlNh7di-7opBB5poBUy65s_GJLBeXTHmAQG6ryY8yQ3FabavOJIbx/n/oradbclouducm/b/Crowdcount/o/Camera1.mp4",
+ "sudo wget https://objectstorage.us-ashburn-1.oraclecloud.com/p/5_XgriKM00UkErwAFHYj5LdHaUWvxUAcClMW380MfIm1iz-2aMj2mSOoJDslz_Bz/n/oradbclouducm/b/Crowdcount/o/Camera2.mp4",
+ "sudo wget https://objectstorage.us-ashburn-1.oraclecloud.com/p/fvfaPVAc2sGjfoOPmR2JdLgcbHN_HqR-rRzKkPxs7V8H9CMeEe3pnqoDzu4d5tNY/n/oradbclouducm/b/Crowdcount/o/Camera3.mp4",
+ "sudo mkdir datasets",
+ "sudo mv Camera1.mp4 Camera2.mp4 Camera3.mp4 datasets/",
+ "sudo chmod 777 -R /home/opc/datasets",
+ "echo 'Deploying the Crowd Counting Demo with Pre-Captured Video'",
+ "sudo mkdir /home/opc/yolo-crowdcount/log",
+ "sudo chmod 777 -R /home/opc/yolo-crowdcount/log",
+ # "sudo docker run -d --gpus all -p 5000:5000 -v /home/opc/datasets:/usr/src/datasets -v /home/opc/yolo-crowdcount/app:/usr/src/app -v /home/opc/yolo-crowdcount/log:/usr/src/log --name=crowdmon --net=host --ipc=host -it -t yolo-crowdcount",
+ "sudo docker run -d --gpus all -p 5000:5000 -v /home/opc/datasets:/usr/src/datasets -v /home/opc/yolo-crowdcount/app:/usr/src/app -v /home/opc/yolo-crowdcount/log:/usr/src/log --name=crowdmon --net=host --ipc=host -it -t localhost/yolo-crowdcount:latest",
+
+
+# Yolo-crowdcount-footage
+# Crowd Monitoring Demo with IP Camera
+# Require an access to IP Cameras(RTSP), Autonomous DB
+# Data in ADB can be utilized by OCI Analytics and Select AI demo
+
+
+ "echo 'Deploying the Crowd Monitoring Demo with IP Camera, Cameras(RTSP), Autonomous DB, Data in ADB can be utilized by OCI Analytics and Select AI demo'",
+ "sudo cd /home/opc/yolo-crowdcount-footage",
+ "sudo mkdir /home/opc/yolo-crowdcount-footage/app/log",
+ "sudo mkdir /home/opc/yolo-crowdcount-footage/app/datasets",
+ "sudo cp /home/opc/datasets/* /home/opc/yolo-crowdcount-footage/app/datasets",
+ "sudo chmod 777 /home/opc/yolo-crowdcount-footage/app/log",
+ "sudo chmod 777 /home/opc/yolo-crowdcount-footage/app/datasets",
+ "sudo chmod 777 /home/opc/yolo-crowdcount-footage/",
+ "sudo mkdir /home/opc/yolo-crowdcount-footage/app/wallet",
+ "sudo cp /home/opc/wallet_${var.db_name}.zip /home/opc/yolo-crowdcount-footage/app/wallet",
+ "sudo cd /home/opc/yolo-crowdcount-footage/app/wallet",
+ "sudo unzip /home/opc/yolo-crowdcount-footage/app/wallet/wallet_${var.db_name}.zip -d /home/opc/yolo-crowdcount-footage/app/wallet/",
+ "sudo chmod 777 /home/opc/yolo-crowdcount-footage/app/wallet",
+ "sudo chmod 777 /home/opc/yolo-crowdcount-footage/app/wallet/*",
+ "sudo mv /home/opc/db.yaml /home/opc/yolo-crowdcount-footage/app/",
+ "sudo cd /home/opc/yolo-crowdcount-footage/schema",
+ "sudo docker build -t sqlclient /home/opc/yolo-crowdcount-footage/schema/. ",
+ "sudo sh -x /home/opc/yolo-crowdcount-footage/schema/create_all.sh",
+ "sudo docker build -t yolo-crowdcount-footage /home/opc/yolo-crowdcount-footage/app/. ",
+ # "sudo docker run -d --gpus all -p 5001:5001 -v /home/opc/yolo-crowdcount-footage/app:/workspace/app --name=crowdmon-footage --net=host --ipc=host -it -t yolo-crowdcount-footage",
+ "sudo docker run -d --gpus all -p 5001:5001 -v /home/opc/yolo-crowdcount-footage/app:/workspace/app --name=crowdmon-footage --net=host --ipc=host -it -t localhost/yolo-crowdcount-footage:latest",
+
+
+# OAC configuration to restore the screenshoot
+
+
+ "sudo mkdir /home/opc/.oci",
+ "sudo chmod 777 -R /home/opc/.oci",
+ "sudo chmod 777 -R /home/opc/.oci/*",
+ "sudo chown -R opc:opc /home/opc/.oci",
+ "sudo chown -R opc:opc -R /home/opc/.oci/*",
+ "sudo mv /home/opc/config /home/opc/.oci",
+ "sudo mv /home/opc/oci_api_key.pem /home/opc/.oci",
+ "sudo chmod 777 /home/opc/.oci/oci_api_key.pem",
+ "sudo chmod 777 /home/opc/.oci/config",
+ "sudo chmod +x /home/opc/finalize.sh",
+ "oci setup repair-file-permissions --file /home/opc/.oci/config",
+ "oci setup repair-file-permissions --file /home/opc/.oci/oci_api_key.pem",
+ "sudo systemctl disable firewalld",
+ "sudo systemctl stop firewalld",
+
+
+ ]
+ }
+}
+
+
+# ########################################################################################################
+# Aditional checks for Yolo-crowdcount-footage
+# Crowd Monitoring Demo with IP Camera
+# Require an access to IP Cameras(RTSP), Autonomous DB
+# Data in ADB can be utilized by OCI Analytics and Select AI demo
+# ########################################################################################################
+
+
+# Check schema
+# $ cd /home/opc/yolo-crowdcount-footage/schema/
+# $ ./sqlplus.sh
+# SQL> select count(*) from personcount; -> this returns 0
+# SQL> select count(*) from cam_points; -> this returns 20
+# SQL> exit
+
+
+# Check logs
+# $ tail home/opc/yolo-crowdcount-footage/app/log/app.log
+# [2024-06-12 17:07:52,862] INFO: Starting camera thread.
+# [2024-06-12 17:07:52,866] INFO: Starting camera thread.
+# [2024-06-12 17:07:52,866] INFO: Starting YOLO thread.
+# [2024-06-12 17:07:52,866] INFO: Starting YOLO thread.
+# [2024-06-12 17:08:55,559] INFO: DB insert, RowCount = 10
+# [2024-06-12 17:08:55,561] INFO: DB insert, RowCount = 10
+# :
+# :
+
+
+# Check DB Please check personcount table. 20 rows should be inserted every minute.
+# $ tail home/opc/yolo-crowdcount-footage/schema/sqlplus.sh
+# SQL> select count(*) from personcount;
+
+# COUNT(*)
+# ----------
+# 180
+
+
+# ########################################################################################################
+# SELECT AI:
+# ########################################################################################################
+# To use the select ai - you need to connect to the ADW with sql developer and run:
+# EXEC DBMS_CLOUD_AI.SET_PROFILE('DEMO');
+# After that you can run the select ai, here are some examples:
+
+# select ai how many people seen on the camera was more than 20;
+# select ai how many people seen on the camera was more than 300;
+# select ai what are my cameras names;
+# select ai what are my cam points;
+# select ai what are the coordinates for the camera Shibuya Crossing;
+
+# select ai narrate how many people seen on the camera was more than 300;
+# select ai showsql how many people seen on the camera was more than 300;
+
+# you can use any of the followings attributes for select ai:
+# showsql
+# narrate
+# chat
+# runsql
\ No newline at end of file
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/registermy_snapshot.json b/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/registermy_snapshot.json
new file mode 100644
index 0000000..6c11651
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/registermy_snapshot.json
@@ -0,0 +1,22 @@
+{
+ "type": "REGISTER",
+ "name": "CrowdCount_modified snapshoot",
+ "description": "CrowdCount_modified snapshoot",
+ "storage": {
+ "type": "OCI_NATIVE",
+ "bucket": "bucket",
+ "auth": {
+ "type": "OSS_AUTH_OCI_USER_ID",
+ "ociRegion": "us-ashburn-1",
+ "ociTenancyId": "ocid1.tenancy.oc1..aaaaajd24mb6utvkymyo4xwxyv3gfa",
+ "ociUserId": "ocid1.user.oc1..aaaaaa4y3ketha6tqj36f34lbbaddhiq",
+ "ociKeyFingerprint": "12:1d:7d:18:6d:a7:fc:00",
+ "ociPrivateKeyWrapped": "LS0tL1ZjlXMGV6OTV6cUk2SU980M05qL1ZJOUNVckM06di8yU2kvL0pvRVlNY3E5NE9SNUhybm1VWVBac3pmaVRqZmN3RHROaWhLQ2tJWApVWGFESGxGMVF3b21LSGFpeDN1RHMzWUh5QnJURVAveUQzSXBNWVdKUTNWanVreGpnMHhOMkJoazBDM1JaZGY1ClFMcmMxek8rMDBSanlkOWt5YVVyYzdGUkQyTnZUekR3Q1RjRlQxUGpReFBjMmh0Y1A3eFBoTGdGTmhobXpaaDEKcHE0MHhXYnZwQ1pPN3EwSGtZZUpDM0VIMFl0RndKOXdJKzNnandJREFRQUJBb0lCQVFDZ0tkY2hUS1NuNnNlbgpFbHd2eDhrb1JaSGluR3lQU0oyM2FhdkRLYStDaXpPSEpNbDgvemNCdExZSDFMOWNKWnZ1Smp0UmY3aVFqRGZkCnpVOFRlV1ZkeXZlVWVzTGh0cHlGMll4eG0wejFYS0JNYysxODNtMVdxVUVUZDFaaytTb2xnOFhOaFMzaklsQjcKd25ueG5JN210MVFLRlIxd0JHQmxPQlZQOGxlWEMvTHNUaEc0UGpDcTU1elRRNGF4RlJvaHdIeWJtUTJ2T1pSZQpSQ2FIQWtZTHAwNkVGeHQvU3dsVEFxa0lRYUlpRGZmcUc5VjVXTHVJKzJkaUUwaXVaQmdsYTljSDRENXZXQi85ClY3UUcybXo1TDNEUDN4U2xhR3owemQxRlc1ZE1xYkFzdmFkSWNTU0VaazloeGxLa1NsMk0wYk9RaGxUQUtPbC8KZnl2UzlIZmhBb0dCQU9reXk2eEdNNFFvWEkxNk9mNzBtSmFVV0JablJBRlkzL3NTS3djS0NIbldOb0N1TUJvego5UWtvWHVPTy9QanA3TTNiRmhTNG5GbWYwZlhjL3JYOW0rS3I5Y0Z5b0JxaHMxbnJBVXlWalFwNlRyei9UT1ZuCm9UREthbjlmMEVieVFwSGtRVnJ5MC9nYWtUb0hIajA0MjczeU9ROGZCQlRyRnNMRGFlTml1ajlyQW9HQkFONW0KU2xXL095QWVjNE50K2lRM0hCSDU5L2w3U01SU3hnL0tEMVgzamZJL1d5aGl6a1daaFBIa3dvd2dZVzdFUjVEUQpJU0xtZXZGOVdkYVNhWmlHR1RpV1Y5R2dnVTBlaW9RVXQ2OTVyZ2hBN1o3bitaNVpoN0k5dGM2MGkwUHRFVWJsCm1JckFzbU4wdWpnWDVQZDRobTdoaWVKZE1EQlFUVGFQaEZudWVxQnRBb0dCQU53ZkxJNFRQZkdUdjdsMEZHYUwKTDdXRGxacWdJMXM2TDBKcHBkL2hJcHNQRHlkc1JNK1hGOGRyS2hhWEZFZEpXRlFBWjlscllYcGdGK3FDanBQdgpMa1JLbVpIZXh5NGNVSldoOVBuN2VNVFpLcFhRVHgrRU1HMUR4RDh6akFCTUVYWnhCUmY2ZXdlSTNHanY2eVZUCkZHazV5WTV5Y29Ia1h2bTlSNmh4dXVpOUFvR0FkZjdKZzdNQkdLcHZXUlQ1ZVV0djdpMjBuajRGdm51NEw5cGgKeHBlZ1RSM0dMS2czam4vRUpGN2R4V0RNc09zY21UMkR4ek9IbVNhTGlxZUZ0UEc0NGVnS1VlTVpseVFVRTcyMgpNemlZMkRJeW9IT3RZWkZZeUgyclB5OVZFRVh3TzdCRy9aNzlSbjFBNjgvcG9FN203RjluTzUxN21yYVFNTmwyClBBeW1MUVVDZ1lBNVp2NjlGYzdKSEEzSGVqZDVWOW43TTBzQjhka3FPZnNwOE9GbjBHY1J2NlhJOWhObjJnVzIKMks2VEtTazJvVVNJN2ZYQi8xdVhXRWovK2srajJOY0dmaUhMVitIWC9IbktiY2NpTThhTGRJc20zeWhpcXJ0bQprdDRhVVFtYS9vNlkyaWFtaUtRUEx3L2JrUWdCL3ViYTg1MENJWHNTMkxRSnFjb0VRNjcxaHc9PQotLS0tLUVORCBSU0EgUFJJVkFURSBLRVktLS0tLQo="
+ }
+ },
+ "bar": {
+ "uri": "file:///CrowdCount_modified.bar"
+ }
+}
+
+
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/restore_mysnapshot.json b/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/restore_mysnapshot.json
new file mode 100644
index 0000000..04d777d
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/restore_mysnapshot.json
@@ -0,0 +1,7 @@
+{
+ "snapshot": {
+ "id" : "35b34a1d-43c7-4844-bacf",
+ "password" : "CrowdCountAdmin123"
+ }
+}
+
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/variables.tf b/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/variables.tf
new file mode 100644
index 0000000..905de54
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/modules/provisioner/variables.tf
@@ -0,0 +1,60 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+variable "host" {}
+
+variable "private_key" {}
+
+variable "db_name" {
+ default = ""
+}
+
+variable "db_password" {
+ default = ""
+}
+
+variable "llmpw" {
+ default = ""
+}
+
+# oac automation script variables
+
+variable "Oracle_Analytics_Instance_Name" {
+ default = ""
+}
+
+variable "Tenancy_Name" {
+ default = ""
+}
+
+variable "bucket" {
+ default = ""
+}
+
+variable "Authorization_Token" {
+ default = ""
+}
+
+variable "ociRegion" {
+ default = ""
+}
+
+variable "ociTenancyId" {
+ default = ""
+}
+
+variable "ociUserId" {
+ default = ""
+}
+
+variable "ociKeyFingerprint" {
+ default = ""
+}
+
+variable "ociPrivateKeyWrapped" {
+ default = ""
+}
+
+variable "home_region_for_oac" {
+ default = ""
+}
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/outputs.tf b/cloud-foundation/solutions/PublicSector-Crowd_Counting/outputs.tf
new file mode 100644
index 0000000..f6b3c45
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/outputs.tf
@@ -0,0 +1,78 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+# Autonomous Database Outputs:
+
+output "ADW_Database_db_connection" {
+ value = module.adb.db_connection
+}
+
+output "Adb_ip" {
+ value = module.adb.private_endpoint_ip
+}
+
+output "Database_Actions" {
+ value = module.adb.url
+}
+
+output "graph_studio_url" {
+ value = module.adb.graph_studio_url
+}
+
+output "machine_learning_user_management_url" {
+ value = module.adb.machine_learning_user_management_url
+}
+
+output "database_fully_qualified_name" {
+ value = module.adb.database_fully_qualified_name
+}
+
+output "ADW_LOGIN" {
+ value = "Please use the ADW URL to login by using the user admin and the password that you have provided."
+}
+
+# Analytics Outputs:
+
+output "Analytics_URL" {
+ value = module.oac.Analytics_URL
+}
+
+# Object Storage Outputs:
+
+output "Buckets" {
+ value = module.os.buckets
+}
+
+# Instances Outputs:
+
+
+output "ui_data_server_compute_linux_instances" {
+ value = module.ui_data_server.linux_instances
+}
+
+output "ui_data_server_all_private_ips" {
+ value = module.ui_data_server.all_private_ips
+}
+
+output "ui_data_server_public_ip" {
+ value = module.ui_data_server.all_public_ips
+}
+
+output "Connect-to-Crowdcount-AI-Server-Crowd_Counting_Demo_with_Pre-Captured_Video" {
+ value = "* Open a browser and connect to : `http://:5000"
+}
+
+output "Connect-to-Crowdcount-AI-Server-Crowd_Monitoring_Demo_with_IP_Camera_and_Autonomous-DB" {
+ value = "* Open a browser and connect to : `http://:5001 ; and wait for a couple of minutes so the AI will count the people from the cameras and will inject the data inside the database. For more information what to do next and how to use select AI please refer to the readme.md file."
+}
+
+output "generated_ssh_private_key_for_bastion" {
+ value = nonsensitive(module.keygen.OPCPrivateKey["private_key_pem"])
+}
+
+resource "local_file" "private_key" {
+ content = module.keygen.OPCPrivateKey["private_key_pem"]
+ filename = "private_key.pem"
+ file_permission = 0600
+}
+
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/provider.tf b/cloud-foundation/solutions/PublicSector-Crowd_Counting/provider.tf
new file mode 100644
index 0000000..07d6d19
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/provider.tf
@@ -0,0 +1,31 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+terraform {
+ required_version = ">= 1.2.0"
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.9.0"
+ }
+ }
+}
+
+provider "oci" {
+ tenancy_ocid = var.tenancy_ocid
+ user_ocid = var.user_ocid
+ fingerprint = var.fingerprint
+ private_key_path = var.private_key_path
+ region = var.region
+ disable_auto_retries = false
+}
+
+provider "oci" {
+ alias = "homeregion"
+ tenancy_ocid = var.tenancy_ocid
+ user_ocid = var.user_ocid
+ fingerprint = var.fingerprint
+ private_key_path = var.private_key_path
+ region = data.oci_identity_region_subscriptions.home_region_subscriptions.region_subscriptions[0].region_name
+ disable_auto_retries = false
+}
\ No newline at end of file
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/schema.yaml b/cloud-foundation/solutions/PublicSector-Crowd_Counting/schema.yaml
new file mode 100644
index 0000000..79643bf
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/schema.yaml
@@ -0,0 +1,480 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+title: "Create the PublicSector-Crowd_Counting-RM solution"
+stackDescription: "Use this solution to launch the PublicSector-Crowd_Counting-RM solution"
+schemaVersion: 1.1.0
+version: "20240612"
+locale: "en"
+groupings:
+ - title: "General Settings"
+ visible: true
+ variables:
+ - tenancy_ocid
+ - region
+ - compartment_id
+ - ociPrivateKeyWrapped
+ - user_ocid
+ - fingerprint
+ - Authorization_Token
+ - title: "Autonomous Database Configuration"
+ variables:
+ - db_name
+ - db_is_free_tier
+ - db_license_model
+ - db_password
+ - db_version
+ - db_size_in_tbs
+ - db_enable_auto_scaling
+ - db_compute_model
+ - db_compute_count
+ - db_workload
+ - db_data_safe_status
+ - db_operations_insights_status
+ - db_database_management_status
+ - llmpw
+ - title: "Oracle Analytics Cloud Configuration"
+ variables:
+ - Oracle_Analytics_Instance_Name
+ - analytics_instance_feature_set
+ - analytics_instance_license_type
+ - analytics_instance_idcs_access_token
+ - analytics_instance_capacity_capacity_type
+ - analytics_instance_capacity_value
+ - title: "Object Storage"
+ variables:
+ - bucket_name
+ - bucket_access_type
+ - bucket_storage_tier
+ - bucket_events_enabled
+ - title: "UI Data Server Details"
+ variables:
+ - ui_data_server_display_name
+ - ui_data_server_shape
+ - title: "Network Configuration"
+ variables:
+ - vcn_cidr
+ - public_subnet_cidr
+ - private_subnet_cidr
+ - show_advanced_options
+ - title: "Hidden Variables"
+ visible: false
+ variables:
+ - private_key_path
+ - ui_data_server
+# General Configuration Variables
+variables:
+ tenancy_ocid:
+ title: Tenancy ID
+ description: The Oracle Cloud Identifier (OCID) for your tenancy.
+ type: string
+ required: true
+ visible: false
+ compartment_id:
+ title: Stack Compartment
+ description: Choose the compartment where all resources will be provisioned.
+ type: oci:identity:compartment:id
+ required: true
+ visible: true
+ region:
+ title: Region
+ description: Select Region where all resources will be created.
+ type: oci:identity:region:name
+ required: true
+ visible: true
+ user_ocid:
+ title: "The User Ocid of your username"
+ type: string
+ default: "copy-paste User Ocid of your username"
+ description: Enter The OCID of your user for example ocid1.user.oc1..aaaaaaaa4bjez27pyslznrrk5g24yiev24ld3ketha6tqj36f34lbbaddhib
+ required: true
+ visible: true
+ fingerprint:
+ title: Your fingerprint of your user
+ type: string
+ default: "copy-paste fingerprint Ocid of your username"
+ description: Enter Your fingerprint of your user for Example 12:1d:7d:18:6d:a7:e3:fc:17:4c:30:a9:44:65:7d:12
+ required: true
+ visible: true
+ ociPrivateKeyWrapped:
+ title: The OCI ociPrivateKeyWrapped
+ type: string
+ default: "copy-paste your oci PrivateKey Wrapped"
+ description: "You must pass this signing key in the payload for some snapshot APIs. Before you add it to the payload, you must Base64 encode the private key (ociPrivateKeyWrapped). For example, to generate a Base64 encoded string from your private key: / On Mac: cat myprivate-key.pem | base64 -o mywrapped-private-key.pem / On Linux: cat myprivate-key.pem | base64 -w 0 > mywrapped-private-key.pem / Note: Ensure that the private key file that you encode includes -----BEGIN and -----END tags."
+ required: true
+ visible: true
+ Authorization_Token:
+ title: Authorization_Token
+ type: string
+ default: ""
+ description: Authorization_Token
+ required: false
+ visible: false
+# Autonomous Database Configuration Variables
+ db_name:
+ title: Database Name
+ description: "Provide Database name. Constraints: 12 alphanumeric characters only. No Spaces."
+ required: true
+ type: string
+ maxLength: 30
+ db_is_free_tier:
+ title: Do do want a always Free Oracle Autonomous Database instance?
+ description: "Provision Always Free Oracle Autonomous Database instance (1 OCPU 20 GB Storage)?"
+ type: enum
+ enum:
+ - "true"
+ - "false"
+ default: "false"
+ required: true
+ visible: true
+ db_license_model:
+ title: "Provision Paid Oracle Autonomous Database instance (2 OCPU 1 TB Storage) - License Included or BYOL?"
+ description: "Note: This configuration can be changed later from the OCI console."
+ type: enum
+ enum:
+ - LICENSE_INCLUDED
+ - BRING_YOUR_OWN_LICENSE
+ default: "BRING_YOUR_OWN_LICENSE"
+ required: true
+ visible:
+ eq:
+ - db_is_free_tier
+ - false
+ db_password:
+ title: Database Admin Password
+ description: "Provide admin password. Constraints: 12 - 30 characters. At least one uppercase letter, one lowercase letter, and one number. No special characters."
+ type: password
+ required: true
+ confirmation: true
+ pattern: ((?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?!.*[%!@^&)(]).{12,20})
+ db_version:
+ title: "A valid Oracle Database version for Autonomous Database"
+ description: "A valid Oracle Database version for Autonomous Database"
+ type: enum
+ enum:
+ - "19c"
+ default: "19c"
+ required: true
+ visible: true
+ db_size_in_tbs:
+ title: "The quantity of data in the database, in terabytes."
+ description: "The quantity of data in the database, in terabytes."
+ type: enum
+ enum:
+ - 1
+ - 2
+ - 4
+ - 6
+ - 8
+ - 10
+ - 12
+ - 16
+ - 24
+ - 36
+ - 52
+ - 128
+ default: 1
+ visible: true
+ required: true
+ db_enable_auto_scaling:
+ title: Indicates if auto scaling is enabled for the Autonomous Database CPU core count.
+ description: "Indicates if auto scaling is enabled for the Autonomous Database CPU core count. "
+ type: enum
+ enum:
+ - "true"
+ - "false"
+ default: "false"
+ required: true
+ visible: true
+ db_compute_model:
+ title: "The compute model of the Autonomous Database ECPUs"
+ description: "The compute model of the Autonomous Database ECPUs"
+ type: enum
+ enum:
+ - "ECPU"
+ default: "ECPU"
+ required: true
+ visible:
+ eq:
+ - db_is_free_tier
+ - false
+ db_compute_count:
+ title: The number of ECPUs cores to be made available to the database
+ description: "The number of ECPU cores to enable. For ECPUs count needs to be minimum 2 and maximum 512 ECPUs"
+ type: string
+ default: 4
+ required: true
+ visible:
+ eq:
+ - db_is_free_tier
+ - false
+ db_workload:
+ title: Autonomous Database Type of workload.
+ description: "Autonomous Database Type of workload."
+ type: enum
+ enum:
+ - "DW"
+ - "OLTP"
+ default: "DW"
+ required: true
+ visible: true
+ db_data_safe_status:
+ title: "Status of the Data Safe registration for this Autonomous Database"
+ description: "Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED."
+ type: enum
+ enum:
+ - "NOT_REGISTERED"
+ - "REGISTERED"
+ default: "NOT_REGISTERED"
+ required: true
+ visible: true
+ db_database_management_status:
+ title: "Status of Database Management for this Autonomous Database"
+ description: "Status of Database Management for this Autonomous Database. Values supported are ENABLED and NOT_ENABLED"
+ type: enum
+ enum:
+ - "NOT_ENABLED"
+ - "ENABLED"
+ default: "NOT_ENABLED"
+ required: true
+ visible: true
+ db_operations_insights_status:
+ title: "Status of Operations Insights for this Autonomous Database"
+ description: "Status of Operations Insights for this Autonomous Database. Values supported are ENABLED and NOT_ENABLED"
+ type: enum
+ enum:
+ - "NOT_ENABLED"
+ - "ENABLED"
+ default: "NOT_ENABLED"
+ required: true
+ visible: true
+ llmpw:
+ title: LLM token provided by your openai account
+ description: "Provide the LLM token provided by your openai account"
+ required: false
+ type: string
+# Oracle Analytics Cloud Configuration
+ Oracle_Analytics_Instance_Name:
+ title: Analytics Instance Name
+ description: "Enter a unique name for this instance. The name provided must start with a letter, contain only alphanumeric characters, no spaces and span up to 30 characters in total."
+ type: string
+ maxLength: 30
+ default: "Crowdcount"
+ required: true
+ visible: true
+ analytics_instance_feature_set:
+ title: Analytics Instance Type
+ description: Choose the Analytics Product Type.
+ type: enum
+ enum:
+ - SELF_SERVICE_ANALYTICS
+ - ENTERPRISE_ANALYTICS
+ default: "ENTERPRISE_ANALYTICS"
+ visible: create_analytics_instance
+ required: true
+ analytics_instance_license_type:
+ title: Analytics License
+ description: Choose your Oracle Analytics Cloud License Type.
+ type: enum
+ enum:
+ - LICENSE_INCLUDED
+ - BRING_YOUR_OWN_LICENSE
+ default: LICENSE_INCLUDED
+ visible: true
+ required: true
+ analytics_instance_idcs_access_token:
+ title: IDCS Access Token
+ description: Provide IDCS Access token. See Pre-req section in the Installation Document.
+ type: string
+ default: "copy-paste your token instead"
+ visible: true
+ required: true
+ analytics_instance_capacity_capacity_type:
+ title: Analytics Instance Capacity Type
+ description: The capacity value selected (OLPU count, number of users, …etc…). This parameter affects the number of CPUs, amount of memory or other resources allocated to the instance.
+ type: enum
+ enum:
+ - "OLPU_COUNT"
+ - "USERS_COUNT"
+ default: "OLPU_COUNT"
+ visible: true
+ required: true
+ analytics_instance_capacity_value:
+ title: Analytics Instance Capacity
+ description: Provide the number of OCPUs for the Oracle Analytics Instance.
+ type: enum
+ enum:
+ - 1
+ - 2
+ - 4
+ - 6
+ - 8
+ - 10
+ - 12
+ - 16
+ - 24
+ - 36
+ - 52
+ default: "1"
+ visible: true
+ required: true
+# Object Storage Configuration
+ bucket_name:
+ title: Object Storage Bucket Name
+ description: "Enter a unique name for this object storage bucket. The name provided must start with a letter, contain only alphanumeric characters, no spaces and span up to 30 characters in total."
+ type: string
+ maxLength: 30
+ default: "CrowdCounting"
+ required: true
+ visible: true
+ bucket_access_type:
+ title: Object Storage Access Type
+ description: "Select the Access Type of the bucket."
+ type: enum
+ enum:
+ - NoPublicAccess
+ - ObjectReadWithoutList
+ - ObjectRead
+ default: "NoPublicAccess"
+ required: true
+ visible: true
+ bucket_storage_tier:
+ title: Object Storage Bucket Name
+ description: "Select the storage Tier of the bucket."
+ type: enum
+ enum:
+ - Standard
+ - Archive
+ default: "Standard"
+ required: true
+ visible: true
+ bucket_events_enabled:
+ title: Indicates if bucket events are enabled or not.
+ description: "Indicates if bucket events are enabled or not "
+ type: enum
+ enum:
+ - "true"
+ - "false"
+ default: "false"
+ required: true
+ visible: true
+# "UI Data Server Configuration"
+ ui_data_server_display_name:
+ title: UI Data Server Display Name
+ description: "Enter a name for thhe UI Data Server VM. The name provided must start with a letter, contain only alphanumeric characters, no spaces and span up to 30 characters in total."
+ type: string
+ default: "CrowdCountServerIP"
+ required: true
+ visible: true
+ ui_data_server_shape:
+ title: Provide the shape for UI Data Server VM
+ description: "Provide the shape for UI Data Server VM"
+ type: oci:core:instanceshape:name
+ default: "VM.Standard2.8"
+ required: true
+ visible: true
+ dependsOn:
+ compartmentId: ${compartment_id}
+# Network Configuration
+ vcn_cidr:
+ visible:
+ and:
+ - show_advanced_options
+ type: string
+ default: "10.0.0.0/16"
+ pattern: "^(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\/(3[0-2]|[1-2]?[0-9])$"
+ title: VCN Network CIDR
+ required: true
+ description: The CIDR to assign to the new Virtual Cloud Network (VCN) to create for this service. This field is not required if you want to use an existing VCN. When using VCN peering ensure that the VCNs being peered have non-overlapping CIDR blocks.
+ public_subnet_cidr:
+ visible:
+ and:
+ - show_advanced_options
+ type: string
+ default: "10.0.0.0/24"
+ pattern: "^(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\/(3[0-2]|[1-2]?[0-9])$"
+ required: true
+ title: Public Subnet CIDR
+ description: "The CIDR of the new public subnet."
+ private_subnet_cidr:
+ visible:
+ and:
+ - show_advanced_options
+ type: string
+ default: "10.0.1.0/24"
+ pattern: "^(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\/(3[0-2]|[1-2]?[0-9])$"
+ required: true
+ title: Private Subnet CIDR
+ description: "The CIDR of the new private subnet."
+ show_advanced_options:
+ title: Show Advanced Options
+ description: Enable advanced options for network.
+ type: boolean
+ default: false
+ visible: true
+outputs:
+ ADW_Database_db_connection:
+ type: string
+ title: ADW_Database_db_connection
+ Adb_ip:
+ type: string
+ title: Adb_ip
+ Database_Actions:
+ type: link
+ title: url
+ graph_studio_url:
+ type: link
+ title: graph_studio_url
+ machine_learning_user_management_url:
+ type: link
+ title: machine_learning_user_management_url
+ database_fully_qualified_name:
+ type: string
+ title: database_fully_qualified_name
+ ADW_LOGIN:
+ type: string
+ title: ADW LOGIN DETAILS
+ Analytics_URL:
+ type: string
+ title: Analytics URL
+ Buckets:
+ type: string
+ title: Buckets
+ ui_data_server_compute_linux_instances:
+ type: string
+ title: UI Data Server Compute Instance
+ ui_data_server_all_private_ips:
+ type: string
+ title: UI Data Server Compute Private IP
+ ui_data_server_public_ip:
+ type: string
+ title: UI Data Server Compute Public IP
+ Connect-to-Crowdcount-AI-Server-Crowd_Counting_Demo_with_Pre-Captured_Video:
+ type: string
+ title: "* Open a browser and connect to : `http://:5000"
+ Connect-to-Crowdcount-AI-Server-Crowd_Monitoring_Demo_with_IP_Camera_and_Autonomous-DB:
+ type: string
+ title: "* Open a browser and connect to : `http://:5001 ; and wait for a couple of minutes so the AI will count the people from the cameras and will inject the data inside the database. For more information what to do next and how to use select AI please refer to the readme.md file."
+ generated_ssh_private_key_for_bastion:
+ type: string
+ title: Generated Ssh Private Key for Bastion
+outputGroups:
+ - title: Application
+ outputs:
+ - ADW_Database_db_connection
+ - Adb_ip
+ - Database_Actions
+ - graph_studio_url
+ - machine_learning_user_management_url
+ - database_fully_qualified_name
+ - ADW_LOGIN
+ - Analytics_URL
+ - Buckets
+ - ui_data_server_compute_linux_instances
+ - ui_data_server_all_private_ips
+ - ui_data_server_public_ip
+ - Connect-to-Crowdcount-AI-Server
+ - generated_ssh_private_key_for_bastion
+ - Connect-to-Crowdcount-AI-Server-Crowd_Counting_Demo_with_Pre-Captured_Video
+ - Connect-to-Crowdcount-AI-Server-Crowd_Monitoring_Demo_with_IP_Camera_and_Autonomous-DB
+
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/scripts/ui-bootstrap b/cloud-foundation/solutions/PublicSector-Crowd_Counting/scripts/ui-bootstrap
new file mode 100644
index 0000000..aae8e48
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/scripts/ui-bootstrap
@@ -0,0 +1,13 @@
+#cloud-config
+
+write_files:
+ # Create file to be used when enabling ip forwarding
+ - path: /etc/sysctl.d/98-ip-forward.conf
+ content: |
+ net.ipv4.ip_forward = 1
+
+runcmd:
+ - firewall-offline-cmd --add-port=80/tcp
+ - firewall-offline-cmd --add-port=22/tcp
+ - firewall-offline-cmd --add-port=5000/tcp
+ - systemctl stop firewalld
diff --git a/cloud-foundation/solutions/PublicSector-Crowd_Counting/variables.tf b/cloud-foundation/solutions/PublicSector-Crowd_Counting/variables.tf
new file mode 100644
index 0000000..a4cf251
--- /dev/null
+++ b/cloud-foundation/solutions/PublicSector-Crowd_Counting/variables.tf
@@ -0,0 +1,254 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+
+terraform {
+ required_version = ">= 0.15.0"
+}
+
+variable "tenancy_ocid" {
+ type = string
+ default = ""
+}
+
+variable "region" {
+ type = string
+ default = ""
+}
+
+variable "compartment_id" {
+ type = string
+ default = ""
+}
+
+variable "user_ocid" {
+ type = string
+ default = ""
+}
+
+variable "fingerprint" {
+ type = string
+ default = ""
+}
+
+variable "private_key_path" {
+ type = string
+ default = ""
+}
+
+
+# You must pass this signing key in the payload for some snapshot APIs. Before you add it to the payload, you must Base64 encode the private key (ociPrivateKeyWrapped). For example, to generate a Base64 encoded string from your private key:
+# On Mac: cat myprivate-key.pem | base64 -o mywrapped-private-key.pem
+# On Linux: cat myprivate-key.pem | base64 -w 0 > mywrapped-private-key.pem
+# Note: Ensure that the private key file that you encode includes -----BEGIN and -----END tags.
+
+variable "ociPrivateKeyWrapped" {
+ default = ""
+}
+
+variable "Authorization_Token" {
+ default = ""
+}
+
+
+# ADW Database Variables:
+
+variable "db_name" {
+ type = string
+ default = "CrowdCounting"
+}
+
+variable "db_password" {
+ type = string
+ default = ""
+}
+
+variable "db_compute_model" {
+ type = string
+ default = "ECPU"
+}
+
+variable "db_compute_count" {
+ type = number
+ default = 4
+}
+
+variable "db_size_in_tbs" {
+ type = number
+ default = 1
+}
+
+variable "db_workload" {
+ type = string
+ # default = "OLTP"
+ default = "DW"
+}
+
+variable "db_version" {
+ type = string
+ default = "19c"
+}
+
+variable "db_enable_auto_scaling" {
+ type = bool
+ default = true
+}
+
+variable "db_is_free_tier" {
+ type = bool
+ default = false
+}
+
+variable "db_license_model" {
+ type = string
+ default = "BRING_YOUR_OWN_LICENSE"
+}
+
+variable "db_data_safe_status" {
+ type = string
+ default = "NOT_REGISTERED"
+ # default = "REGISTERED"
+}
+
+variable "db_operations_insights_status" {
+ type = string
+ default = "NOT_ENABLED"
+ # default = "ENABLED"
+}
+
+variable "db_database_management_status" {
+ type = string
+ default = "NOT_ENABLED"
+ # default = "ENABLED"
+}
+
+# LLM token provided by your openai account
+
+variable "llmpw" {
+ default = ""
+}
+
+
+# Analytics Cloud Instance Variables:
+
+variable "Oracle_Analytics_Instance_Name" {
+ default = "CrowdCounting"
+}
+
+variable "analytics_instance_feature_set" {
+ type = string
+ default = "ENTERPRISE_ANALYTICS"
+}
+
+variable "analytics_instance_license_type" {
+ type = string
+ default = "LICENSE_INCLUDED"
+}
+
+variable "analytics_instance_idcs_access_token" {
+ type = string
+ default = ""
+}
+
+variable "analytics_instance_capacity_capacity_type" {
+ type = string
+ default = "OLPU_COUNT"
+}
+
+variable "analytics_instance_capacity_value" {
+ type = number
+ default = 1
+}
+
+# Object Storage Variables:
+
+variable "bucket_name" {
+ type = string
+ default = "CrowdCounting"
+}
+
+variable "bucket_access_type" {
+ type = string
+ default = "NoPublicAccess"
+}
+
+variable "bucket_storage_tier" {
+ type = string
+ default = "Standard"
+}
+
+variable "bucket_events_enabled" {
+ type = bool
+ default = false
+}
+
+
+# UI Data Server Instance variables
+
+variable "ui_data_server_display_name" {
+ default = "CrowdCountServerIP"
+}
+
+variable "ui_data_server_shape" {
+ default = "VM.Standard2.8"
+}
+
+
+# Oracle-Linux-Cloud-Developer-8.5-2022.05.22-0 image
+
+variable "ui_data_server" {
+ type = map(string)
+ default = {
+ eu-amsterdam-1 = "ocid1.image.oc1.eu-amsterdam-1.aaaaaaaabcomraotpw6apg7xvmc3xxu2avkkqpx4yj7cbdx7ebcm4d52halq"
+ eu-stockholm-1 = "ocid1.image.oc1.eu-stockholm-1.aaaaaaaa52kiqhwcoprmwfiuwureucv7nehqjfofoicwptpixdphzvon2mua"
+ me-abudhabi-1 = "ocid1.image.oc1.me-abudhabi-1.aaaaaaaa7nqsxvp4vp25gvzcrvld6xaiyxaxmzepkb5gz6us5sfkgeeez2zq"
+ ap-mumbai-1 = "ocid1.image.oc1.ap-mumbai-1.aaaaaaaaham2gnbrst3s46jrwchlnl3uqo7yxij7f3pqdzwx7zybu657347q"
+ eu-paris-1 = "ocid1.image.oc1.eu-paris-1.aaaaaaaaab5yi4bbnabymexkvwcdjlcjiue26kf3vz6dvzm6dvpttqcpaj5q"
+ uk-cardiff-1 = "ocid1.image.oc1.uk-cardiff-1.aaaaaaaagvgnze6oq5il7b26onoq4daeaqrghp5hx4yp3q3rvtfpnbzq4zhq"
+ me-dubai-1 = "ocid1.image.oc1.me-dubai-1.aaaaaaaaid5v36623wk7lyoivnqwygyaxppqfbzyo35wifxs7hkqo5caxhqa"
+ eu-frankfurt-1 = "ocid1.image.oc1.eu-frankfurt-1.aaaaaaaa3mdtxzi5rx2ids2tb74wmm77zvsqdaxbjlgvjpr4ytzc5njtksjq"
+ sa-saopaulo-1 = "ocid1.image.oc1.sa-saopaulo-1.aaaaaaaa22wjczcl7udl7w7e347zkwig7mh5p3zfbcemzs46jiaeom5lznyq"
+ ap-hyderabad-1 = "ocid1.image.oc1.ap-hyderabad-1.aaaaaaaaaq6ggb4u6p4fgsdcj7o2p4akt5t7gmyjnvootiytrqc5joe5pmfq"
+ us-ashburn-1 = "ocid1.image.oc1.iad.aaaaaaaas4cu36z32iraul5otar4gl3uy4s5jkupcc4m5shfqlatjiwaoftq"
+ ap-seoul-1 = "ocid1.image.oc1.ap-seoul-1.aaaaaaaakrtvc67c6thtmhrwphecd66omeytl7jmv3zd2bci74j56r4xodwq"
+ me-jeddah-1 = "ocid1.image.oc1.me-jeddah-1.aaaaaaaaghsie5mvgzb6fbfzujidzrg7jnrraqkh6qkyh2vw7rl6cdnbpe6a"
+ af-johannesburg-1 = "ocid1.image.oc1.af-johannesburg-1.aaaaaaaa2sj43nffpmyqlubrj4cikfgoij7qyqhymlnhw3bj7t26lh46euia"
+ ap-osaka-1 = "ocid1.image.oc1.ap-osaka-1.aaaaaaaao3swjyengmcc5rz3ynp2euqskvcscqwgouzs3smaarxofxbwstcq"
+ uk-london-1 = "ocid1.image.oc1.uk-london-1.aaaaaaaaetscnayepwj2lto7mpgiwtom4jwkqafr3axumt3pt32cgwczkexq"
+ eu-milan-1 = "ocid1.image.oc1.eu-milan-1.aaaaaaaavht3nwv7qsue7ljexbqqgofogwvrlgybvtrxylm52eg6b6xrgniq"
+ ap-melbourne-1 = "ocid1.image.oc1.ap-melbourne-1.aaaaaaaafavk2azn6cizxnugwi7izvxsumhiuzthw6g7k2o4vuhg4l3phi3a"
+ eu-marseille-1 = "ocid1.image.oc1.eu-marseille-1.aaaaaaaakpex24z6rmmyvdeop72nomfui5t54lztix7t5mblqii4l7v4iecq"
+ il-jerusalem-1 = "ocid1.image.oc1.il-jerusalem-1.aaaaaaaafgok5gj36cnrsqo6a3p72wqpg45s3q32oxkt45fq573obioliiga"
+ ap-tokyo-1 = "ocid1.image.oc1.ap-tokyo-1.aaaaaaaappsxkscys22g5tha37tksf6rlec3tm776dnq7dcquaofeqqb6rna"
+ us-phoenix-1 = "ocid1.image.oc1.phx.aaaaaaaawmvmgfvthguywgry23pugqqv2plprni37sdr2jrtzq6i6tmwdjwa"
+ sa-santiago-1 = "ocid1.image.oc1.sa-santiago-1.aaaaaaaatqcxvjriek3gdndhk43fdss6hmmd47fw2vmuq7ldedr5f555vx5q"
+ ap-singapore-1 = "ocid1.image.oc1.ap-singapore-1.aaaaaaaaouprplh2bubqudrghr46tofi3bukvtrdgiuvckylpk4kvmxyhzda"
+ us-sanjose-1 = "ocid1.image.oc1.us-sanjose-1.aaaaaaaaqudryedi3l4danxy5kxbwqkz3nonewp3jwb5l3tdcikhftthmtga"
+ ap-sydney-1 = "ocid1.image.oc1.ap-sydney-1.aaaaaaaaogu4pvw4zw2p7kjabyynczopoqipecr2gozdaolh5kem2mkdrloa"
+ sa-vinhedo-1 = "ocid1.image.oc1.sa-vinhedo-1.aaaaaaaa57khlnd4ziajy6wwmud2d6k3wsqkm4yce3mlzbgxeggpbu3yqbpa"
+ ap-chuncheon-1 = "ocid1.image.oc1.ap-chuncheon-1.aaaaaaaanod2kc3bw5l3myyd5okw4c46kapdpsu2fqgyswf4lka2hrordlla"
+ ca-montreal-1 = "ocid1.image.oc1.ca-montreal-1.aaaaaaaaevwlof26wfzcoajtlmykpaev7q5ekqyvkpqo2sjo3gdwzygu7xta"
+ ca-toronto-1 = "ocid1.image.oc1.ca-toronto-1.aaaaaaaanajb7uklrra5eq2ewx35xfi2aulyohweb2ugik7kc6bdfz6swyha"
+ eu-zurich-1 = "ocid1.image.oc1.eu-zurich-1.aaaaaaaameaqzqjwp45epgv2zywkaw2cxutz6gdc6jxnrrbb4ciqpyrnkczq"
+ }
+}
+
+
+# Networking variables
+
+# VCN and subnet Variables
+
+variable "vcn_cidr" {
+ default = "10.0.0.0/16"
+}
+
+variable "public_subnet_cidr" {
+ default = "10.0.1.0/24"
+}
+
+variable "private_subnet_cidr" {
+ default = "10.0.2.0/24"
+}
+
+
+
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/.gitignore b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/.gitignore
new file mode 100644
index 0000000..5e1b96e
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/.gitignore
@@ -0,0 +1,5 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+.terraform
+*tfstate*
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/CONTRIBUTING.md b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/CONTRIBUTING.md
new file mode 100644
index 0000000..8518432
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/CONTRIBUTING.md
@@ -0,0 +1,32 @@
+
+# Contributing to Oracle Cloud Foundation Terraform Framework
+
+## Contributing to Oracle Cloud Foundation Terraform Framework
+
+Oracle welcomes contributions to this repository from anyone.
+
+If you want to submit a pull request to fix a bug or enhance an existing
+feature, please first open an issue and link to that issue when you
+submit your pull request.
+
+If you have any questions about a possible submission, feel free to open
+an issue too.
+
+## Pull request process
+
+1. Fork this repository
+1. Create a branch in your fork to implement the changes. We recommend using
+the issue number as part of your branch name, e.g. `1234-fixes`
+1. Ensure that there is at least one test that would fail without the fix and
+passes post fix
+1. Submit the pull request. *Do not leave the pull request blank*. Explain exactly
+what your changes are meant to do and provide simple steps on how to validate
+your changes, ideally referencing the test. Ensure that you reference the issue
+you created as well. We will assign the pull request to 1-2 people for review
+before it is submitted internally and the PR is closed.
\ No newline at end of file
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/Data-Lakehouse-Communications-Tower-Analytics-using-OML.json b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/Data-Lakehouse-Communications-Tower-Analytics-using-OML.json
new file mode 100644
index 0000000..91ee93b
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/Data-Lakehouse-Communications-Tower-Analytics-using-OML.json
@@ -0,0 +1,2418 @@
+{
+ "paragraphs": [
+ {
+ "title": "Importing libraries",
+ "text": "%python\nimport time\nstart_time \u003d time.time()\nimport pandas as pd\nimport numpy as np\nimport random\nimport oml\nimport matplotlib.pyplot as plt\nimport warnings\nwarnings.filterwarnings(\u0027ignore\u0027)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:58+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": []
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175420_-1462219585",
+ "id": "20220727-124935_362530766",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:46:40+0000",
+ "dateFinished": "2022-08-16T04:46:40+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Create a dataframe object of SITE table",
+ "text": "%python\n\nSITE_TABLE \u003d oml.sync(query\u003d\u0027SELECT SITE_ID, LATITUDE, LONGITUDE, NAME, STATE, ELEVATION FROM SITE\u0027)\nsite_df \u003d pd.DataFrame(SITE_TABLE.pull())\nz.show(site_df)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:44:02+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {
+ "0": {
+ "graph": {
+ "mode": "table",
+ "height": 300.0,
+ "optionOpen": false,
+ "setting": {
+ "table": {
+ "tableGridState": {},
+ "tableColumnTypeState": {
+ "names": {
+ "SITE_ID": "number",
+ "LATITUDE": "number",
+ "LONGITUDE": "number",
+ "NAME": "string",
+ "STATE": "string",
+ "ELEVATION": "string"
+ },
+ "updated": false
+ },
+ "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
+ "tableOptionValue": {
+ "useFilter": false,
+ "showPagination": false,
+ "showAggregationFooter": false
+ },
+ "updated": false,
+ "initialized": false
+ }
+ },
+ "commonSetting": {}
+ }
+ }
+ },
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TABLE",
+ "data": "SITE_ID\tLATITUDE\tLONGITUDE\tNAME\tSTATE\tELEVATION\n10009902\t-23.0\t116.466667\tNorthern Star Resources nominal LTE site Ashburton 1, 13 km east north east of Peak Edgar\tWA\tnan\n10009903\t-23.0\t117.1\tNorthern Star Resources nominal LTE site Ashburton 2, 7 km west south west of Dolphin Hill\tWA\tnan\n10009897\t-19.0\t129.7\tNorthern Star Resources nominal LTE site Tanami 2 Tanami Desert\tNT\tnan\n10000187\t-38.34\t145.081063\tNBNCo 325 Myers Road Merricks North\tVIC\tnan\n10000353\t-38.11\t145.2819\tCranbourne Park Shopping Centre High Street CRANBOURNE\tVIC\tnan\n10000829\t-37.83\t144.899\tWestgate Bridge Structure_3 Westgate Bridge Freeway PORT SPOTSWOOD\tVIC\tnan\n10007006\t-37.8\t144.7736\t176 Swann Dr DERRIMUT\tVIC\tnan\n10008365\t-37.72\t145.048389\tBorchardt Library La Trobe University The Agora Bundoora\tVIC\tnan\n10011002\t-34.74\t148.8444\tADFA site Yass Lachlan Valley Way Yass\tNSW\tnan\n10003498\t-34.47\t150.818413\tDTRS Site Kembla Grange Cnr W Dapto Rd and Prices Hwy KEMBLA GRANGE\tNSW\tnan\n10007610\t-33.87\t116.0675\tGPS Transmitter Talisman Lithium Mine Maranup Ford Road GREENBUSHES\tWA\tnan\n10010507\t-33.85\t151.0554\t30 Carter Street LIDCOMBE\tNSW\tnan\n10007094\t-31.11\t150.89765\tTelstra Site Opposite 88 Duri Road West Tamworth\tNSW\tnan\n10000636\t-30.36\t116.2896\tOff Edawa Road\tWA\tnan\n10009899\t-30.35\t121.933333\tNorthern Star Resources nominal LTE site Kanowna Belle East 42 km north east of Kanowna\tWA\tnan\n10006332\t-30.16\t131.5803\tOptus Rooftop Site Maralinga Maralinga Village MARALINGA\tSA\tnan\n10003562\t-28.87\t114.0\tKempton Fisheries Jackson Island ABROLHOS ISLANDS\tWA\tnan\n10009909\t-27.83\t153.334\tKerkin Road South COOMERA\tQLD\tnan\n10006547\t-27.08\t141.907\tDurham Downs Homestead Comms Site Durham Downs Station\tQLD\tnan\n10010405\t-26.75\t148.55294\tMarch IT Facility Roma Feedlot \u0026 Spelling Yards off Binya Lane MOUNT ABUNDANCE\tQLD\tnan\n10000233\t-26.71\t153.01285\tNBN Co 711 Ilkley Road TANAWHA\tQLD\tnan\n10006538\t-25.55\t140.482\tParakunda Comms Site Durrie Station\tQLD\tnan\n10005246\t-25.34\t152.7897\t2992 Maryborough Harvey Road SUNSHINE ACRES\tQLD\tnan\n10006811\t-24.34\t133.458668\tOptus Rooftop site Stuarts Well Roadhouse 8844 Stuart Highway STUART WELL\tNT\tnan\n10005015\t-22.96\t118.76\tJuna Downs Mast 108km WNW of Newman Newman\tWA\tnan\n10010481\t-22.55\t119.972278\tTrailer 2 Roy Hill Mine ROY HILL\tWA\tnan\n10004116\t-21.49\t114.99\tENSCO 107 Approximately 21km SW of ONSLOW\tWA\tnan\n10009937\t-21.26\t114.04\tENSCO DPS-1 Offshore Australia\tEXT\tnan\n10006878\t-21.21\t114.26\tAtwood Osprey Site Atwood Osprey Offshore Australia\tWA\tnan\n10008403\t-20.56\t145.55\tDGPS Site off Glen Houghton Rd via PENTLAND\tQLD\tnan\n10001661\t-19.9\t130.178\tRamelius Resources Site 45k North East of Tanami Tanami\tNT\tnan\n10008408\t-19.79\t147.22\tDGPS Site DGPS Site cnr Cussen and Granshaw Rds CLARE\tQLD\tnan\n10009895\t-19.75\t129.366667\tNorthern Star Resources nominal LTE site Tanami 4 Tanami Desert\tNT\tnan\n10010220\t-19.46\t116.56\tMcDermott DLV2000 Offshore Australia\tEXT\tnan\n10009896\t-19.25\t129.166667\tNorthern Star Resources nominal LTE site Tanami 3 Tanami Desert\tNT\tnan\n10009739\t-17.53\t128.3071\tOptus Site Purnululu National Park Reserve 39869 ORD RIVER\tWA\tnan\n10007618\t-12.67\t124.539\tNoble Tom Prosser Offshore Australia Timor Sea\tWA\tnan\n10010885\t-42.8827\t147.3277\tH\u0026M Cat \u0026 Fiddle Arcade 93 Murray Street HOBART\tTAS\tnan\n10007294\t-42.8823\t147.329101\tJettech Site 34 Elizabeth Street Hobart\tTAS\tnan\n10002567\t-42.8341\t147.4662\tAnaconda Cambridge Tasman Hwy CAMBRIDGE\tTAS\tnan\n10010563\t-42.7921\t147.26671\t100 Cadbury Rd CLEREMONT\tTAS\tnan\n10009655\t-42.5306\t147.978\tAquaculture Barge Okehampton Bay near Triabunna\tTAS\tnan\n10010472\t-42.3886\t146.5032\tTelstra Site Wayatinah Community Centre Third Street Wayatinah\tTAS\tnan\n10003968\t-42.2869\t146.897825\tComms site 2.56km ESE of Hermitage HERMITAGE\tTAS\tnan\n10005471\t-42.2703\t146.54465\tTelstra Site Bradys Lake Bradys Tower Rd, Tarraleah Bradys Sugarloaf\tTAS\tnan\n10009706\t-41.586\t145.72\tTasmanet Site off Belvoir Rd West Coast off Belvoir Rd West Coast\tTAS\tnan\n10000557\t-41.5461\t146.41005\t80 Baldocks Rd Mole Creek\tTAS\tnan\n10006786\t-41.5124\t146.64953\tDeloraine 36 Archer St DELORAINE\tTAS\tnan\n10004946\t-41.4676\t147.1585\tColes Meadow Mews Shopping Centre 102 - 106 Hobart Rd KINGS MEADOWS\tTAS\tnan\n10002510\t-41.2341\t147.00945\tMount Direction optus monopole 71 Bullocks Head Road 7252 Mount Direction\tTAS\tnan\n10004699\t-41.2286\t146.41077\tLatrobe Central 52 Hawkins Street West Latrobe\tTAS\tnan\n10009686\t-40.683\t144.689\tCape Grim RASS Site Woolnorth\tTAS\tnan\n10000004\t-39.5964\t143.9339\tCape Wickham Links Clubhouse KING ISLAND\tTAS\tnan\n10000847\t-38.8133\t146.1019\tTelstra Exchange 285 Waratah Road Sandy Point\tVIC\tnan\n10008493\t-38.522\t143.9732\tLorne North 2 Holliday Road LORNE\tVIC\tnan\n10009484\t-38.468\t144.10447\tAIREYS INLET-V Split Point Light Station AIREYS INLET\tVIC\tnan\n10004568\t-38.425\t143.54494\tTelstra Exchange site 410 G Barrys Road BARONGAROOK WEST\tVIC\tnan\n10002273\t-38.3946\t143.68778\t420 Yeo-Yeodene Road Yeodene\tVIC\tnan\n10004715\t-38.3842\t142.59992\tAllansford Allansford Recreation Reserve, ,Zeigler Parade ALLANSFORD\tVIC\tnan\n10003109\t-38.3803\t142.5205\tAldi Gateway Plaza Warrnambool 154 Raglan Parade Warrnambool\tVIC\tnan\n10008078\t-38.3791\t142.50816\tTelstra Site 2-64 Grafton Road Warrnambool\tVIC\tnan\n10002213\t-38.354\t144.9506\t795 Arthurs Seat Road ARTHURS SEAT\tVIC\tnan\n10008464\t-38.348\t144.937\tMc Crae Freeway 2 CORNELL ST MCCRAE\tVIC\tnan\n10004472\t-38.3429\t143.585742\t95-97 Gellibrand Street COLAC\tVIC\tnan\n10000451\t-38.3341\t143.79031\tNBN Co Cnr Barray \u0026 Strachan Streets Birregurra\tVIC\tnan\n10005040\t-38.3303\t144.9872\tAldi Dromana 120 Napean Hwy DROMANA\tVIC\tnan\n10005601\t-38.3124\t143.649992\t20 Warrowie Rd Colac\tVIC\tnan\n10008770\t-38.2778\t144.4535\tOB Site 13th Beach Golf Links 36 Fourteenth Road BARWON HEADS\tVIC\tnan\n10000791\t-38.2218\t145.0459\t99 Tanti Avenue MORNINGTON\tVIC\tnan\n10007176\t-38.187\t146.48831\tM8372 Traralgon West Scrubby Lane MARYVALE\tVIC\tnan\n10010440\t-38.1856\t144.3801\t63 Leather Street BREAKWATER\tVIC\tnan\n10004132\t-38.1838\t145.0893\tcnr Mt Eliza Way and Canadian Bay Road MT ELIZA\tVIC\tnan\n10002162\t-38.1574\t145.16951\tTelstra IBC McClelland Drive Peninsula Private Hospital Langwarrin\tVIC\tnan\n10010422\t-38.1532\t145.1341\t47-49 Moorooduc Highway FRANKSTON\tVIC\tnan\n10000719\t-38.1515\t144.365917\tUniversity Hospital Geelong Helipad Ryrie St GEELONG 3220\tVIC\tnan\n10010704\t-38.148\t144.3563\t73 Ryrie Street GEELONG\tVIC\tnan\n10010456\t-38.1458\t144.3539\tcnr Latrobe Terrace and Gordon Avenue GEELONG\tVIC\tnan\n10009959\t-38.1454\t144.3612\t26 Moorabool Street GEELONG\tVIC\tnan\n10010936\t-38.1238\t144.351\tGeelong Arena 110 Victoria Street NORTH GEELONG\tVIC\tnan\n10009330\t-38.1238\t145.1508\tPines Forest Aquatic Centre 61 Forest Drive FRANKSTON NORTH\tVIC\tnan\n10010368\t-38.1236\t145.31349\tNBN Co Site 1B/369 Casey Fields Blvd Cranbourne East\tVIC\tnan\n10004085\t-38.1025\t147.158611\tRAAF Interim Radar Site East Sale Talbots Road SALE\tVIC\tnan\n10001424\t-38.0781\t145.250748\tAldi Lyndhurst Marriot Blvd LYNDHURST\tVIC\tnan\n10007163\t-38.0756\t145.12337\tCarrum Central -O 506 Station Street CARRUM\tVIC\tnan\n10010705\t-38.0648\t145.4584\t4 Olympic Way PAKENHAM\tVIC\tnan\n10010358\t-38.0466\t145.24\tM2 Industry Park cnr National Drive and Bayliss Road DANDENONG SOUTH\tVIC\tnan\n10008301\t-38.0363\t145.2362\t29 National Drive DANDENONG SOUTH\tVIC\tnan\n10010757\t-38.0348\t145.1977\t42-46 Villas Road DANDENONG SOUTH\tVIC\tnan\n10005573\t-38.0168\t145.38457\tGuys Hill 335 Beaconsfield Emerald Road BEACONSFIELD\tVIC\tnan\n10009153\t-38.0118\t140.95955\tTelstra Site 13 Dry Creek Road Donovans DC of Grant\tSA\tnan\n10011051\t-38.0111\t145.116\t71-81 Canterbury Road BRAESIDE\tVIC\tnan\n10000428\t-37.9887\t145.2439\tPool in the Park cnr Kidds Road and Tristiana Street DOVETON\tVIC\tnan\n10000516\t-37.9867\t144.3509\tBarwon Prison 1140 Bacchus Marsh Road LARA\tVIC\tnan\n10000567\t-37.9867\t145.1289\tSt Marks Primary School 4-6 Dimar Court DINGLEY VILLAGE\tVIC\tnan\n10000179\t-37.9661\t145.0564\t2-6 Railway Road CHELTENHAM\tVIC\tnan\n10000882\t-37.9659\t145.0571\tThe Village Cheltenham 1228 Nepean Hwy CHELTENHAM\tVIC\tnan\n10004279\t-37.9651\t144.7069\t50 Quay Boulevard WERRIBEE SOUTH\tVIC\tnan\n10001465\t-37.9591\t145.054976\tAldi Southland 1239 Nepean Highway CHELTENHAM\tVIC\tnan\n10005706\t-37.9584\t145.0513\tMyer Westfield Southland 1156 Nepean Highway CHELTENHAM\tVIC\tnan\n10010954\t-37.9568\t145.151903\tSpringvale Library 411 Springvale Road Springvale\tVIC\tnan\n10009183\t-37.9535\t145.0477\tVista Kingston Park 1144 Nepean Hwy HIGHETT\tVIC\tnan\n10010908\t-37.9502\t145.0078\t6 Fernhill Road SANDRINGHAM\tVIC\tnan\n10010755\t-37.949\t145.0787\tShop 7 430 Warrigal Road HEATHERTON\tVIC\tnan\n10010306\t-37.9391\t145.002\t293-295 Hampton Street HAMPTON\tVIC\tnan\n10010195\t-37.9343\t145.0035\t514-518 Hampton Street HAMPTON\tVIC\tnan\n10009358\t-37.9331\t145.0325\t336-338 South Road HAMPTON EAST\tVIC\tnan\n10010640\t-37.9209\t145.1403\tM-City cnr Dandenong and Blackburn Roads CLAYTON\tVIC\tnan\n10005856\t-37.9198\t145.03905\t79/83 Mitchell St Bentleigh\tVIC\tnan\n10000030\t-37.9192\t145.3463\tBelgrave Heights Christian School Wattle Valley Road BELGRAVE\tVIC\tnan\n10002772\t-37.9172\t145.0312\t261 Centre Road BENTLEIGH\tVIC\tnan\n10000364\t-37.9158\t145.0608\tGlen Eira Sports and Aquatic Centre 200 East Boundary Road BENTLEIGH EAST\tVIC\tnan\n10000138\t-37.914\t145.132754\t21 Wellington Rd Clayton\tVIC\tnan\n10000843\t-37.911\t145.1297\t18 Innovation Walk Monash University CLAYTON\tVIC\tnan\n10010267\t-37.9094\t144.6638\tMacKillop Catholic Regional College 1 - 29 Russell St WERRIBEE\tVIC\tnan\n10000874\t-37.9083\t145.2388\t949 Stud Road ROWVILLE\tVIC\tnan\n10010473\t-37.9044\t145.1598\tVillage Green Hotel cnr Springvale and Ferntree Gully Roads MULGRAVE\tVIC\tnan\n10010815\t-37.9038\t144.6562\t116 Watton Street WERRIBEE\tVIC\tnan\n10010165\t-37.9019\t142.7887\tSalt Creek Wind Farm off Woorndoo-Chatsworth Road WOORNDOO\tVIC\tnan\n10010633\t-37.8989\t145.0945\t89 Atherton Road OAKLEIGH\tVIC\tnan\n10005839\t-37.8979\t144.98963\tTelstra Street Cell 382 St Kilda Street BRIGHTON\tVIC\tnan\n10001088\t-37.8958\t144.753035\tAldi Sanctuary Lakes 300 Point Cook Road Point Cook\tVIC\tnan\n10008757\t-37.8916\t145.173288\tWIA Site Mt View Waverley Road Glen Waverley\tVIC\tnan\n10002505\t-37.8905\t145.0655\t401 Neerim Road CARNEGIE\tVIC\tnan\n10004702\t-37.8892\t145.0594\t316-320 Neerim Road CARNEGIE\tVIC\tnan\n10005401\t-37.8886\t145.0541\t247 Neerim Road CARNEGIE\tVIC\tnan\n10001645\t-37.8876\t145.0813\tMyer Chadstone Shopping Centre 1341 Dandenong Road CHADSTONE\tVIC\tnan\n10002193\t-37.887\t145.0831\ttoys R Us Chadstone Shopping Centre 1341 Dandenong Rd CHADSTONE\tVIC\tnan\n10002276\t-37.8848\t145.0846\tShop m018 Chadstone Shopping Centre 1341 Dandenong Road CHADSTONE\tVIC\tnan\n10010805\t-37.8841\t145.0559\t1060 Dandenong Road CARNEGIE\tVIC\tnan\n10005820\t-37.8815\t145.29087\tTXA Ferntree Gully Site Monopole 1 Bruce Crescent FERNTREE GULLY\tVIC\tnan\n10004169\t-37.8792\t145.1656\t263 Springfield Rd GLEN WAVERLEY\tVIC\tnan\n10010758\t-37.8765\t145.0035\tCaulfield Grammar School 217 Glen Eira Road ST KILDA EAST\tVIC\tnan\n10008983\t-37.8763\t145.038\tTower Crane 2 Village Gate 22 Station St Caulfield East\tVIC\tnan\n10008982\t-37.8762\t145.0374\tTower Crane 1 Village Gate 22 Station St Caulfield East\tVIC\tnan\n10008984\t-37.8761\t145.0376\tTower Crane 3 Village Gate 22 Station St Caulfield East\tVIC\tnan\n10009960\t-37.874\t145.0552\t61A The Avenue MALVERN EAST\tVIC\tnan\n10008474\t-37.872\t145.20491\tScoresby North 55R Pumps Road WANTIRNA SOUTH\tVIC\tnan\n10010025\t-37.8666\t144.7417\t111 Overton Road WILLIAMS LANDING\tVIC\tnan\n10003297\t-37.8651\t144.70304\tTruganina West 20m monopole 2 Boyanich Court HOPPERS CROSSING\tVIC\tnan\n10004405\t-37.8618\t144.985197\t194 St Kilda Road ST KILDA\tVIC\tnan\n10001653\t-37.8604\t144.9855\tJewish Museum of Victoria 26 Alma Road ST KILDA\tVIC\tnan\n10003199\t-37.8599\t144.67668\tTarneit North West 25m light pole 260-280 Hogans Road HOPPERS CROSSING\tVIC\tnan\n10010759\t-37.8589\t145.0498\t2A Scott Grove GLEN IRIS\tVIC\tnan\n10008714\t-37.8565\t144.9853\t35 Wellington Street ST KILDA\tVIC\tnan\n10008974\t-37.853\t144.983\tJewish Care cnr Union Street and Punt Road WINDSOR\tVIC\tnan\n10004495\t-37.8514\t145.1297\t373 Burwood Highway BURWOOD\tVIC\tnan\n10010784\t-37.8503\t144.9905\t14 Porter Street PRAHRAN\tVIC\tnan\n10010343\t-37.8501\t144.786567\tDHL Supply Chain 26 - 38 Harcourt Road Altona\tVIC\tnan\n10010076\t-37.8454\t145.0126\t30 Springfield Avenue TOORAK\tVIC\tnan\n10004159\t-37.8452\t144.9947\t402 Chapel Street SOUTH YARRA\tVIC\tnan\n10000859\t-37.8433\t144.9959\t8-12 Garden Street SOUTH YARRA\tVIC\tnan\n10001697\t-37.8425\t144.9773\t478 St Kilda Road MELBOURNE\tVIC\tnan\n10005683\t-37.8393\t144.9952\tCrane 1 625 Chapel Street SOUTH YARRA\tVIC\tnan\n10005685\t-37.839\t144.9954\tCrane 3 625 Chapel Street SOUTH YARRA\tVIC\tnan\n10005734\t-37.8389\t144.9954\t625 Chapel Street SOUTH YARRA\tVIC\tnan\n10003082\t-37.8388\t144.9756\t450 St Kilda Road MELBOURNE\tVIC\tnan\n10005684\t-37.8386\t144.9952\tCrane 2 625 Chapel Street SOUTH YARRA\tVIC\tnan\n10005686\t-37.8386\t144.9956\tCrane 4 625 Chapel Street SOUTH YARRA\tVIC\tnan\n10010073\t-37.8375\t144.9941\t16-22 Claremont Street SOUTH YARRA\tVIC\tnan\n10010992\t-37.8373\t144.7389\t28 Prosperity Street TRUGANINA\tVIC\tnan\n10000431\t-37.8367\t144.9668\t74 Eastern Road SOUTH MELBOURNE\tVIC\tnan\n10005538\t-37.8364\t144.6929\t540 Derrimut Road Tarneit\tVIC\tnan\n10002164\t-37.8358\t144.76\t2 National Drive TRUGANINA\tVIC\tnan\n10009651\t-37.8342\t145.0011\t135-141 Alexandra Avenue SOUTH YARRA\tVIC\tnan\n10004028\t-37.8328\t144.9599\t228 Dorcas Street SOUTH MELBOURNE\tVIC\tnan\n10005876\t-37.8317\t144.9085\tWestgate Park off West Gate Freeway PORT MELBOURNE\tVIC\tnan\n10000537\t-37.8315\t144.9479\t165-167 Gladstone Street SOUTH MELBOURNE\tVIC\tnan\n10009650\t-37.8305\t144.9902\tcnr Cremorne and Bent Streets CREMORNE\tVIC\tnan\n10003393\t-37.8302\t144.653502\tCnr of Leakes Rd and Davis Rd TARNEIT\tVIC\tnan\n10004825\t-37.8301\t145.0589\tAldi Camberwell 15-25 Station Street Camberwell\tVIC\tnan\n10010979\t-37.8294\t144.9701\t25-29 Coventry Street SOUTHBANK\tVIC\tnan\n10004299\t-37.829\t145.0547\tCamberwell Village 139 - 159 Camberwell Rd CAMBERWELL\tVIC\tnan\n10000616\t-37.8274\t144.9563\t52 Haig Street SOUTHBANK\tVIC\tnan\n10000827\t-37.8257\t144.8899\tWestgate Bridge Structure_1 Westgate Bridge Freeway PORT MELBOURNE SPOTSWOOD\tVIC\tnan\n10008690\t-37.8257\t144.9629\t93-119 Kavanagh Street SOUTHBANK\tVIC\tnan\n10005413\t-37.8241\t144.9638\t54-68 Kavanagh Street SOUTHBANK\tVIC\tnan\n10004412\t-37.824\t144.8541\t62-70 Export Drive BROOKLYN\tVIC\tnan\n10008582\t-37.8228\t145.2368\tAquinas College Great Ryrie Street RINGWOOD\tVIC\tnan\n10000634\t-37.8226\t144.93\t808 Lorimer Street PORT MELBOURNE\tVIC\tnan\n10000091\t-37.8222\t144.9661\tOaks Southbank 57-61 City Road SOUTHBANK\tVIC\tnan\n10005950\t-37.8222\t144.9797\tCrane between Rod Laver Arena and Melbourne Park cnr Batman Avenue and Swan Street MELBOURNE\tVIC\tnan\n10008877\t-37.8217\t144.9246\tUnit 1, 706 Lorimer Street PORT MELBOURNE\tVIC\tnan\n10002675\t-37.8209\t145.0344\t1 Grace Street HAWTHORN\tVIC\tnan\n10001696\t-37.8208\t145.0085\t203 Burnley Street RICHMOND\tVIC\tnan\n10000801\t-37.8203\t145.01347\t642 Bridge Road Richmond\tVIC\tnan\n10010537\t-37.8201\t144.9215\t29 South Wharf Lorimer St PORT MELBOURNE\tVIC\tnan\n10007586\t-37.8201\t145.123236\t545 Station St Box Hill\tVIC\tnan\n10010153\t-37.8192\t144.9518\t664 Collins Street DOCKLANDS\tVIC\tnan\n10000143\t-37.8189\t144.9751\tCircus Oz Birrarung Marr MELBOURNE\tVIC\tnan\n10005902\t-37.8188\t144.9587\tCrane 2 477 Collins Street MELBOURNE\tVIC\tnan\n10005901\t-37.8184\t144.9586\tCrane 1 477 Collins Street MELBOURNE\tVIC\tnan\n10001257\t-37.818\t145.3128\t135 -141 Canterbury Rd KILSYTH\tVIC\tnan\n10010142\t-37.8179\t144.9652\t276 Flinders Street MELBOURNE\tVIC\tnan\n10005825\t-37.8179\t144.9956\t153-177 Bridge Road RICHMOND\tVIC\tnan\n10010212\t-37.8179\t145.1257\t999 Whitehorse Road BOX HILL\tVIC\tnan\n10002361\t-37.8178\t144.9956\tCrane 153-177 Bridge Road RICHMOND\tVIC\tnan\n10003387\t-37.8174\t144.9961\t2 Hull Street RICHMOND\tVIC\tnan\n10000609\t-37.8171\t144.994\tTelstra Site Leigh Place Richmond\tVIC\tnan\n10008951\t-37.817\t144.9688\tTower crane 1 180 Flinders Street MELBOURNE\tVIC\tnan\n10008950\t-37.8166\t144.9686\tTower crane 2 180 Flinders Street MELBOURNE\tVIC\tnan\n10006243\t-37.8164\t145.131858\tTower Crane 40 Dorking Rd Box Hill\tVIC\tnan\n10010754\t-37.8163\t145.1067\t692 Whitehorse Road MONT ALBERT\tVIC\tnan\n10005999\t-37.8162\t144.9657\t257 Collins Street Melbourne\tVIC\tnan\n10008522\t-37.8162\t145.1817\tWhitehorse Centre 379 Whitehorse Road NUNAWADING\tVIC\tnan\n10002105\t-37.816\t145.1212\t19 Irving Avenue BOX HILL\tVIC\tnan\n10000476\t-37.8152\t144.9391\t429 Docklands Drive DOCKLANDS\tVIC\tnan\n10010419\t-37.8152\t144.9512\tShop MM4 Spencer Outlet Centre 201 Spencer Street DOCKLANDS\tVIC\tnan\n10009796\t-37.8151\t144.9686\tShop 1/161 Collins Street MELBOURNE\tVIC\tnan\n10002092\t-37.815\t144.9543\t605 Lonsdale Street MELBOURNE\tVIC\tnan\n10008990\t-37.8149\t144.9993\t130-140 Church Street RICHMOND\tVIC\tnan\n10008817\t-37.8149\t144.964888\tPower Pole 287-297 Little Collins St MELBOURNE\tVIC\tnan\n10002652\t-37.8148\t145.012\t9-15 David Street RICHMOND\tVIC\tnan\n10007624\t-37.8144\t144.9512\tPolice Complex 263 - 283 Spencer St MELBOURNE\tVIC\tnan\n10010458\t-37.8143\t144.7672\t9-15 Foundation Road TRUGANINA\tVIC\tnan\n10002244\t-37.8142\t144.955\t580 Lonsdale Street MELBOURNE\tVIC\tnan\n10009577\t-37.814\t144.9704\t90 Collins Street MELBOURNE\tVIC\tnan\n10005262\t-37.814\t144.94102\tCrane 2 387-395 Docklands Drive DOCKLANDS\tVIC\tnan\n10000738\t-37.814\t145.2305\tCrane at Eastland Shopping Centre 171 Maroondah Highway RINGWOOD\tVIC\tnan\n10010617\t-37.8139\t145.1244\t757 Station Street BOX HILL\tVIC\tnan\n10010529\t-37.8134\t144.9384\tThe District Docklands Shopping Precinct SCF11 107-109 Studio Lane DOCKLANDS\tVIC\tnan\n10010413\t-37.8133\t144.8863\t111 Sommerville Road FOOTSCRAY\tVIC\tnan\n10007065\t-37.8126\t144.958396\tMelbourne Childrens Court of Victoria 477 Little Lonsdale Street Melbourne\tVIC\tnan\n10010414\t-37.8125\t144.8787\t221 Sommerville Road FOOTSCRAY\tVIC\tnan\n10000503\t-37.8123\t144.9608\t388 Lonsdale Street MELBOURNE\tVIC\tnan\n10008964\t-37.8119\t144.8127\t5-11 Normanby Avenue SUNSHINE WEST\tVIC\tnan\n10003136\t-37.8119\t144.9682\tBillboard The Venue 170 Russell Street MELBOURNE\tVIC\tnan\n10010397\t-37.8118\t144.9773\t2 St Andrews Place EAST MELBOURNE\tVIC\tnan\n10002963\t-37.8115\t144.9606\t296-300 Little Lonsdale Street MELBOURNE\tVIC\tnan\n10000536\t-37.8113\t144.9929\t34-40 Elizabeth Street RICHMOND\tVIC\tnan\n10003565\t-37.811\t144.9696\tHer Majesty\u0027s Theatre 219 Exhibition St MELBOURNE\tVIC\tnan\n10000027\t-37.8109\t144.9371\tCostco Docklands 381-383 Footscray Road DOCKLANDS\tVIC\tnan\n10009602\t-37.8109\t144.9679\t157 Lonsdale Street MELBOURNE\tVIC\tnan\n10004104\t-37.8097\t144.9571\t229 Franklin Street MELBOURNE\tVIC\tnan\n10008072\t-37.8094\t144.9628\t17 Little La Trobe Street MELBOURNE\tVIC\tnan\n10010901\t-37.8088\t144.9675\t141 La Trobe Street MELBOURNE\tVIC\tnan\n10010662\t-37.8083\t144.8273\t30-34 Strzelecki Avenue SUNSHINE WEST\tVIC\tnan\n10011029\t-37.8077\t144.9862\t36 Wellington COLLINGWOOD\tVIC\tnan\n10003978\t-37.8076\t144.9682\t353 Exhibition Street MELBOURNE\tVIC\tnan\n10010154\t-37.8071\t144.984\t15-21 Derby Street COLLINGWOOD\tVIC\tnan\n10002771\t-37.8063\t144.9802\t166 Gertrude Street FITZROY\tVIC\tnan\n10003975\t-37.8055\t144.9481\t621 King Street WEST MELBOURNE\tVIC\tnan\n10003245\t-37.8046\t144.98292\tFITZROY Rooftop 145 Smith St FITZROY?\tVIC\tnan\n10005922\t-37.8038\t145.0378\t363-369 High Street Kew\tVIC\tnan\n10006881\t-37.8024\t144.9601\tLaw Building Melbourne University cnr Barry and Pelham Streets CARLTON\tVIC\tnan\n10010964\t-37.8024\t144.9933\t112-120 Vere Street ABBOTSFORD\tVIC\tnan\n10003464\t-37.802\t144.955614\t21 Bedford Street North Melbourne\tVIC\tnan\n10010814\t-37.8018\t144.7715\t210 Swann Drive DERRIMUT\tVIC\tnan\n10010333\t-37.8004\t144.9536\t15-27 Wreckyn Street NORTH MELBORNE\tVIC\tnan\n10009847\t-37.8003\t144.9087\tcnr Maribyrnong Street and Hopkins Street FOOTSCRAY\tVIC\tnan\n10000635\t-37.8001\t144.9069\t18-24 Hopkins Street FOOTSCRAY\tVIC\tnan\n10008583\t-37.7998\t144.9098\t2 Hopkins St FOOTSCRAY\tVIC\tnan\n10006882\t-37.7982\t144.9586\tKenneth Myer Carpark cnr Royal Parade and Genetics Lane PARKVILLE\tVIC\tnan\n10000263\t-37.798\t144.9679\tLygon Court Shopping Centre 380 Lygon Street CARLTON\tVIC\tnan\n10006883\t-37.7975\t144.9657\tEastern Carpark Melbourne University 375 Cardigan Street CARLTON\tVIC\tnan\n10001901\t-37.7973\t144.9541\tBio21 Institute 30 Flemington Rd PARKVILLE\tVIC\tnan\n10010274\t-37.7971\t144.9743\t1 Palmerston Street CARLTON\tVIC\tnan\n10003963\t-37.7961\t144.9166\t71-86 Hobsons Road KENSINGTON\tVIC\tnan\n10004212\t-37.7961\t144.9408\t113 Canning Street NORTH MELBOURNE\tVIC\tnan\n10005738\t-37.7951\t144.9489\t179-191 Flemington Road NORTH MELBOURNE\tVIC\tnan\n10004234\t-37.7932\t144.9991\t122-138 Roseneath Street CLIFTON HILL\tVIC\tnan\n10009846\t-37.7912\t144.8908\t124-188 Ballarat Road FOOTSCRAY\tVIC\tnan\n10008587\t-37.7842\t145.1156\t535 Doncaster Road DONCASTER\tVIC\tnan\n10005452\t-37.7837\t144.91531\tAscot Vale South 400 EPSOM RD FLEMINGTON\tVIC\tnan\n10001637\t-37.7836\t145.1256\tMyer Doncaster Westfield Doncaster 619 Doncaster Road DONCASTER\tVIC\tnan\n10009359\t-37.7815\t144.875\t108 Mitchell Street MAIDSTONE\tVIC\tnan\n10002345\t-37.7807\t145.6111\t2431 Warburton Highway YARRA JUNCTION\tVIC\tnan\n10003303\t-37.7786\t144.971\t8 Lygon Street BRUNSWICK EAST\tVIC\tnan\n10003057\t-37.7784\t145.4589\tAldi Seville 638 Warburton Highway Seville\tVIC\tnan\n10001695\t-37.778\t144.9711\t22-30 Lygon Street BRUNSWICK EAST\tVIC\tnan\n10010661\t-37.7754\t144.9586\t325 Barkly Street BRUNSWICK\tVIC\tnan\n10000529\t-37.7752\t145.48856\tNBN Co Site 773 Warburton Highway Seville East\tVIC\tnan\n10004074\t-37.767\t144.9986\t445-453 High Street NORTHCOTE\tVIC\tnan\n10002849\t-37.7654\t144.9217\tCrane 5 40 Hall Street MOONEE PONDS\tVIC\tnan\n10002848\t-37.7653\t144.9199\tCrane 1 40 Hall Street MOONEE PONDS\tVIC\tnan\n10004413\t-37.7636\t144.9617\t8 Breese Street BRUNSWICK\tVIC\tnan\n10000380\t-37.7626\t144.9619\t26 Breese Street BRUNSWICK\tVIC\tnan\n10008288\t-37.7611\t144.83769\tSunshine 2 42 Harvester Avenue SUNSHINE NORTH\tVIC\tnan\n10010024\t-37.7563\t144.9169\t15-21 Russell Street ESSENDON\tVIC\tnan\n10003357\t-37.7552\t145.0558\t443 Upper Heidelberg Road HEIDELBERG\tVIC\tnan\n10006581\t-37.7541\t145.6534\tTelstra Site 3045 Warburton Highway Millgrove\tVIC\tnan\n10002253\t-37.7533\t144.943947\t444-446 Moreland Rd Brunswick\tVIC\tnan\n10010176\t-37.7465\t145.0023\t165-191 High Street PRESTON\tVIC\tnan\n10002818\t-37.7417\t140.78\tMount Gambier Airport 109 Airport Road, Wandilo SA 5291 Wandilo\tSA\tnan\n10002233\t-37.7399\t145.0018\tALDI Preston Market 18 Cramer St Preston\tVIC\tnan\n10001458\t-37.7379\t145.028781\tAldi Northland 2 - 50 Murray Road PRESTON\tVIC\tnan\n10001005\t-37.7306\t145.1084\t4 Main Road LOWER PLENTY\tVIC\tnan\n10004609\t-37.7303\t144.2568\tYaloak South Development nominal centre point Yaloak Creek off Glenmore Road BALLAN\tVIC\tnan\n10005965\t-37.7286\t145.31313\tNBN Co Site 285 Edward Road CHIRNSIDE PARK\tVIC\tnan\n10007168\t-37.716\t145.006\tM8527 Reservoir Central 4 Edwardes Street RESERVOIR\tVIC\tnan\n10009510\t-37.7105\t144.8627\t27 Assembly Drive TULLAMARINE\tVIC\tnan\n10005937\t-37.7082\t144.8535\tNSA Demo Location 1 6 Aerolink Dr Tullamarine\tVIC\tnan\n10007166\t-37.7071\t144.45857\tParwan North 4300 Geelong Bacchus Marsh Road PARWAN\tVIC\tnan\n10001609\t-37.7047\t144.8635\t140 Sharps Road MELBOURNE AIRPORT\tVIC\tnan\n10010400\t-37.6924\t148.0908\tBoM AWS Compound Mt Nowa Nowa via Two Mile Road NOWA NOWA\tVIC\tnan\n10005716\t-37.6919\t145.014\t49B Temple Drive THOMASTOWN\tVIC\tnan\n10004309\t-37.6906\t144.8772\t47 Garden Drive TULLAMARINE\tVIC\tnan\n10000031\t-37.6905\t145.0248\t319 Settlement Road THOMASTOWN\tVIC\tnan\n10001026\t-37.687\t144.560535\tAldi Melton West Woodgrove Shopping Centre High St Melton West\tVIC\tnan\n10000623\t-37.6839\t144.873\t58 Springbank Street TULLAMARINE\tVIC\tnan\n10003324\t-37.6833\t145.0705\t7 Graduate Road BUNDOORA\tVIC\tnan\n10001131\t-37.6826\t144.9561\t1497 Hume Highway CAMPBELLFIELD\tVIC\tnan\n10010882\t-37.6805\t144.9199\tShop G027, Broadmeadows Shopping Centre 1099-1169 Pascoe Vale Road BROADMEADOWS\tVIC\tnan\n10000588\t-37.6801\t145.070292\tVHA Rooftop Site Uni Hill Factory Outlets 2 Janfield Drive BUNDOORA\tVIC\tnan\n10005719\t-37.6773\t144.9548\t9 - 11 Fabio Court CAMPBELLFIELD\tVIC\tnan\n10002230\t-37.6742\t144.9082\tConstruction site Valley Park off Erinbank Crescent WESTMEADOWS\tVIC\tnan\n10005512\t-37.6703\t145.5417\t263 Don Rd HEALSVILLE\tVIC\tnan\n10006968\t-37.6605\t144.9381\tBroadcast Mast 44 Kyabram Street Coolaroo\tVIC\tnan\n10008059\t-37.6591\t145.016019\t40 Deveny Street Epping\tVIC\tnan\n10010787\t-37.6574\t145.0139\t60 Deveny Road EPPING\tVIC\tnan\n10006259\t-37.6521\t145.0195\t113 Cooper St EPPING\tVIC\tnan\n10009008\t-37.6521\t145.5222\t316-334 Maroondah Highway HEALESVILLE\tVIC\tnan\n10001062\t-37.6507\t145.069338\tAldi Plenty Valley 400 McDonalds Rd Plenty Valley\tVIC\tnan\n10009690\t-37.6439\t144.9504\t1835 Hume Highway Campbellfield\tVIC\tnan\n10002101\t-37.6006\t145.0924\tMernda Police Station cnr Bridge Inn Road and Pimpinella Pass MERNDA\tVIC\tnan\n10001581\t-37.576\t144.7248\tSunbury Aquatic \u0026 Leisure Centre 20 Ligar Street SUNBURY\tVIC\tnan\n10005780\t-37.5637\t144.6903\tNBN Co Site 250A Reservoir Road SUNBURY\tVIC\tnan\n10006696\t-37.5603\t143.8603\tThe Good Guys Ballarat 33 Grenville St North BALLARAT NORTH\tVIC\tnan\n10002589\t-37.535\t143.8218\tAnaconda Wendouree 333 Gillies Street WENDOUREE\tVIC\tnan\n10010948\t-37.5325\t147.0053\tBoM Site Reeves Knob off Marathon Road MOROKA\tVIC\tnan\n10001299\t-37.5292\t143.8095\t233-243 Learmonth Road WENDOUREE\tVIC\tnan\n10008479\t-37.5206\t144.72498\tEmu Valley 420 SETTLEMENT ROAD SUNBURY\tVIC\tnan\n10011052\t-37.4846\t144.5911\t6 Aitken Street GISBORNE\tVIC\tnan\n10010466\t-37.4462\t145.2445\tTelstra Site 1600 Whittlesea-Yea Road Kinglake West\tVIC\tnan\n10005440\t-37.4077\t144.5788\t601 Mount Macedon Rd MOUNT MACEDON\tVIC\tnan\n10011053\t-37.3908\t145.4768\tBoM Site 4427 Melba Highway GLENBURN\tVIC\tnan\n10001678\t-37.375\t145.28595\tNBN Co Site 2646 Whittlesea - Yea Road Flowerdale\tVIC\tnan\n10009111\t-37.3555\t144.08838\tTelstra Site 3891 Midland Highway Eganstown Hepburn\tVIC\tnan\n10008624\t-37.2281\t143.2006\tBOM Site Ben Nevis via Ben Nevis Road EVERSLEY\tVIC\tnan\n10000269\t-37.1924\t140.889014\tFire Tower Off Cumaum Forest Road Cumaum\tSA\tnan\n10006382\t-37.1732\t142.542144\tLakeside Tourist Park Tymna Drive HALLS GAP\tVIC\tnan\n10009360\t-37.1453\t146.4468\t15 Summit Road MOUNT BULLER\tVIC\tnan\n10010949\t-37.1125\t148.8974\tBoM Site Mount Delegate Delegate Hill Track BENDOC\tVIC\tnan\n10006027\t-37.097\t140.6662\tLimbert DGPS 1679 Moyhall Rd Naracoorte\tSA\tnan\n10009881\t-37.074\t149.9077\tWharf Weecoon St EDEN\tNSW\tnan\n10006291\t-36.9078\t146.26305\tTelstra Site 3324 Tatong-Tolmie Road Archerton\tVIC\tnan\n10000288\t-36.8861\t149.89722\tSplash Hillcrest Site 95-97 Merimbula Drive Merimbula\tNSW\tnan\n10007248\t-36.8051\t142.11983\tLower Norton 44 Push-Hannans Road Lower Norton\tVIC\tnan\n10009724\t-36.7319\t149.98113\tTelstra Temporary East Cnr of Davidson and Pacific Sts Tathra\tNSW\tnan\n10003143\t-36.7291\t146.1149\tTelstra Site 47 Tiger Hill Road Tatong\tVIC\tnan\n10003445\t-36.7265\t149.8427\tBOM Site 41 Grandview Road Black Range\tNSW\tnan\n10010401\t-36.7141\t142.1967\t24 Darlot Street HORSHAM\tVIC\tnan\n10002033\t-36.6694\t142.30356\tLongerenong optus monopole 229 Longerenong Road Longerenong\tVIC\tnan\n10007418\t-36.6547\t146.6813\tTelstra Site 109 McLees Road Buffalo River Alpine\tVIC\tnan\n10007350\t-36.6401\t146.20889\tTelstra Site 2081 Kilfeera Rd Upper Ryans Creek\tVIC\tnan\n10005017\t-36.6052\t146.87034\tTelstra Site 182 Havilah Road Rosewhite Alpine\tVIC\tnan\n10004144\t-36.513\t142.5535\t548 Minyp - Coromby Rd MINYP\tVIC\tnan\n10003600\t-36.4259\t145.240377\tCnr Dhurringile AND Pyke Rd TATURA\tVIC\tnan\n10010950\t-36.4206\t146.3056\tBoM Site Wangaratta Aerodrome Brian Higgins Drive LACEBY\tVIC\tnan\n10004652\t-36.3993\t148.739244\t423 Avonside Rd Avonside\tNSW\tnan\n10003953\t-36.3979\t144.978774\t5 Olympic Street GIRGARRE\tVIC\tnan\n10000161\t-36.3814\t145.3981\tShepparton Police Station 155 Welsford Street SHEPPARTON\tVIC\tnan\n10007790\t-36.3396\t146.0163\tSite 460 Bungeet Road BUNGEET WEST\tVIC\tnan\n10003101\t-36.3204\t142.416\tAWIB Site Warracknabeal Aerodrome WARRACKNABEAL 3393\tVIC\tnan\n10004608\t-36.2093\t140.589117\tWirrega Lot 3 Dukes Highway WIRREGA\tSA\tnan\n10003110\t-36.1387\t146.8949\tAldi White Box Rise 6 Wark Street Wodonga\tVIC\tnan\n10009564\t-36.1185\t146.8797\t88 Elgin Boulevard WODONGA\tVIC\tnan\n10007672\t-36.1009\t147.035083\tHume Weir Sewer Filtration Plant 14 Trout Farm Rd Lake Hume Village\tNSW\tnan\n10010756\t-36.085\t146.913\t569 Hume Street ALBURY\tNSW\tnan\n10007787\t-36.085\t150.0479\tSite 42 Princes Highway BODALLA\tNSW\tnan\n10007671\t-36.0475\t146.896625\tGlenmorus Gardens 54 Glenmorus St Glenroy\tNSW\tnan\n10010951\t-36.0294\t146.0306\tBoM Site Yarrawonga Aerodrome Cahills Road YARRAWONGA\tVIC\tnan\n10004184\t-36.0211\t148.724023\tAdaminaby Lot 13 Old Adaminaby Adaminaby\tNSW\tnan\n10002883\t-35.9796\t146.64048\tHowlong optus site 160 Pell Street NSW 2643 Howlong\tNSW\tnan\n10002747\t-35.9745\t146.7435\tYaparra Via Chambers Road BUNGOWANNAH\tNSW\tnan\n10011020\t-35.9122\t150.080486\tNominal Planning Site Campbell St MORUYA\tNSW\tnan\n10002255\t-35.8178\t149.1652\tFibre Repeater Site Monaro Highway Colinton\tNSW\tnan\n10003102\t-35.7151\t142.357\tAWIB Site Hopetoun Aerodrome HOPETOUN 3396\tVIC\tnan\n10005254\t-35.6542\t137.637\t14 Murray Street KINGSCOTE\tSA\tnan\n10008174\t-35.625\t137.2065\tOptus Rooftop Site Stokes Bay North Coast Rd and Lightburn Road STOKES BAY\tSA\tnan\n10003097\t-35.5569\t138.6228\tBeachside Car Park Cnr Albert Pl and Esplanade VICTOR HARBOUR\tSA\tnan\n10004368\t-35.5248\t144.98275\t315 Victoria St DENILIQUIN\tNSW\tnan\n10005116\t-35.4449\t138.3139\t15 Jetty Road NORMANVILLE\tSA\tnan\n10009405\t-35.4309\t149.22075\tHill 800 Reservoir Old Cooma Road GOOGONG\tNSW\tnan\n10006612\t-35.4174\t149.0643\tThe Good Guys Tuggeranong Hyperdome Shopping Centre 76 Athllon Dr GREENWAY\tACT\tnan\n10009406\t-35.4026\t149.20583\tHomestead Rise Reservoir Constance Road JERRABOMBERRA\tNSW\tnan\n10009481\t-35.3945\t149.1651\t71 Seppard Street HUME\tACT\tnan\n10008744\t-35.3599\t149.2095\tLetchworth Neighbourhood Centre 28 Miller Street QUEANBEYAN WEST\tNSW\tnan\n10002396\t-35.3378\t149.1787\t337 Canberra Ave FYSHWICK\tACT\tnan\n10009831\t-35.3088\t139.5106\tMcCall Repeater site, The Bend Motorsport Park Corner Dukes Hwy and Malley Hwy TAILEM BEND\tSA\tnan\n10005318\t-35.2888\t149.1434\t51 Constitution Avenue CAMPBELL\tACT\tnan\n10009512\t-35.2769\t149.1346\tCommSol CommSite 51 Cooyong Street BRADDON\tACT\tnan\n10002746\t-35.2649\t141.1807\t27 Poole Street MURRAYVILLE\tVIC\tnan\n10010182\t-35.2615\t149.4436\tMajara Street between King and Forster Streets BUNGENDORE\tNSW\tnan\n10003179\t-35.2279\t144.39442\tRIVALEA NIEMUR optus monopole 297 Balpool Ln Niemur\tNSW\tnan\n10007741\t-35.2114\t144.8175\tTelstra Site Lot 1 cnr Brodribb \u0026 Morris Sts Wanganella Conargo\tNSW\tnan\n10004489\t-35.1415\t138.4961\tZorich Colonnades 54 Beach Rd NOARLUNGA CENTRE\tSA\tnan\n10000471\t-35.1221\t150.07516\tTelstra Site 6218 Nerriga Road Nerriga\tNSW\tnan\n10000492\t-35.0952\t138.55264\tTelstra Site Cnr Rothschild Street and Frenshams Drive Woodcroft\tSA\tnan\n10003197\t-35.0871\t150.6145\tSt Georges Basin 50M LATTICE TOWER The Wool Road ST? GEORGES BASIN\tNSW\tnan\n10006280\t-35.0825\t139.0658\tBOM Site Callington Hill Adjacent to 325 Highland Road Callington\tSA\tnan\n10007930\t-35.0076\t138.7191\tOB Site, Stirling Oval Mount Barker Road STIRLING\tSA\tnan\n10010181\t-34.9956\t149.0085\tScrubby Lane MURRUMBATEMAN\tNSW\tnan\n10005689\t-34.9868\t138.595636\tColonel Light Gardens Primary School Windsor Ave Colonel Light Gardens\tSA\tnan\n10002612\t-34.9803\t138.572311\tTarget Castle Plaza 922 South Rd EDWARDSTOWN\tSA\tnan\n10007931\t-34.9572\t138.7449\tOB Site Greenhill Road URAIDLA\tSA\tnan\n10010359\t-34.9384\t138.5229\t20 Butler Boulevard ADELAIDE AIRPORT\tSA\tnan\n10005630\t-34.9372\t138.537918\tJames Scofield Drive ADELAIDE AIRPORT\tSA\tnan\n10008117\t-34.9291\t139.03413\tNBN Co Site Lot 1790 Harrogate Road Harrogate\tSA\tnan\n10003108\t-34.9279\t138.6209\tOB site Wakefield Road ADELAIDE\tSA\tnan\n10008321\t-34.9256\t138.641\t315 Portrush Road Norwood\tSA\tnan\n10010215\t-34.9242\t138.5957\tLuminesque 108 Currie St ADELAIDE\tSA\tnan\n10005384\t-34.9224\t150.597\tSouth Coast Correctional Centre 55 Links Road NOWRA HILL\tNSW\tnan\n10007717\t-34.919\t138.614916\tO\u0027Bahn Tunnel Development East Terrace ? Hackney Road Adelaide\tSA\tnan\n10003098\t-34.9153\t138.5994\tAdelaide OB Site Cnr King William St and Sir Edwin Flack Ave ADELAIDE\tSA\tnan\n10005645\t-34.9144\t138.59653\tScoreboard Northern End Of Adelaide Oval War Memorial Drive North Adelaide\tSA\tnan\n10005929\t-34.9043\t138.692589\tRepeater Site 12 Blue Crescent Woodforde\tSA\tnan\n10006080\t-34.8824\t150.551472\tNowra Waste Depot 108 Flatrock Rd Mundamia\tNSW\tnan\n10003099\t-34.8809\t138.7011\tCampbelltown OB Site Maryvale Road ATHELSTONE\tSA\tnan\n10003096\t-34.848\t138.7835\tParacombe OB Site Paracombe Road PARACOMBE\tSA\tnan\n10010605\t-34.8358\t138.6067\tBCF 720 Main North Rd GEPPS CROSS\tSA\tnan\n10000511\t-34.821\t138.6018\tObela Global 3 Norman Crescent Cavan\tSA\tnan\n10008615\t-34.7662\t138.62422\tTelstra Site 155-185 Winzor Street Salisbury Downs\tSA\tnan\n10004145\t-34.7615\t138.6055\tBethany Christian School 37 Countess Street PARALOWIE\tSA\tnan\n10001975\t-34.7345\t135.85658\tPort Lincoln South 10 Winsor Ave Port Lincoln\tSA\tnan\n10003504\t-34.6454\t150.85457\tDTRS Site Kiama Downs Behind 29 Cliff Dr KIAMA DOWNS\tNSW\tnan\n10004479\t-34.6367\t150.85344\t13 Johnson Street Kiama Downs\tNSW\tnan\n10009290\t-34.6041\t135.85413\tTelstra Site Lot 97 Murray Drive North Shields\tSA\tnan\n10003095\t-34.5994\t138.8873\tLyndoch OB Site Barossa Valley Way LYNDOCH\tSA\tnan\n10008495\t-34.5953\t138.51449\tA0515 Two Wells Central 43 Old Port Wakefield Rd TWO WELLS\tSA\tnan\n10005207\t-34.5887\t146.385733\t3 Mile Regulator Tower Research Rd near Amato Rd Leeton\tNSW\tnan\n10004303\t-34.5876\t150.8673\tShell Cove Marina SHELL COVE\tNSW\tnan\n10005576\t-34.5722\t139.29423\tTelstra Exchange 2703 Stott Highway Sedan\tSA\tnan\n10010436\t-34.5596\t150.37395\tMoss Vale South 38-40 Arthur Street MOSS VALE\tNSW\tnan\n10010943\t-34.551\t150.3738\tMoss Vale Aquatic Leisure Centre 8 Kirkham Street MOSS VALE\tNSW\tnan\n10007237\t-34.5458\t139.0807\t476 Eden Valley Rd ANGASTON\tSA\tnan\n10005353\t-34.5416\t148.32283\tMast 1 250m SW of Junction of Burley Griffin Hwy / Wombat Harden\tNSW\tnan\n10005354\t-34.541\t148.32489\tOld Substation Compound 313 Burley Griffin Hwy Harden\tNSW\tnan\n10009765\t-34.4946\t150.893\t178 Shellharbour Road PORT KEMBLA\tNSW\tnan\n10007806\t-34.4738\t138.9938\tALDI Nuriootpa 1 Murray St NURIOOTPA\tSA\tnan\n10006666\t-34.4667\t139.10616\tMoculta Lot281 Moculta Road Moculta\tSA\tnan\n10005308\t-34.4655\t147.745226\tSpringdale 6106 Burley Griffin Way Springdale\tNSW\tnan\n10001281\t-34.4469\t138.505571\tGrainflow Site Mallala-Two Wells Rd 1km South of Mallala Mallala\tSA\tnan\n10005256\t-34.446\t116.033\tCnr Brockman and Dean Streets PEMBERTON\tWA\tnan\n10010120\t-34.4375\t138.586331\tcnr Coleman and Farrelly Roads PINKERTON PLAINS\tSA\tnan\n10001302\t-34.4256\t150.9026\t25-29 Harbour Street WOLLONGONG\tNSW\tnan\n10006144\t-34.4254\t150.8933\tTrade Secret 200 Crown St WOLLONGONG\tNSW\tnan\n10009803\t-34.4254\t150.9034\t2-4 Parkside Avenue WOLLONGONG\tNSW\tnan\n10009766\t-34.4249\t150.9027\t17 Harbour Street WOLLONGONG\tNSW\tnan\n10008275\t-34.4249\t150.888219\t45 Denison Street Wollongong\tNSW\tnan\n10008396\t-34.4248\t150.894743\tDavid Jones Wollongong Central 200 Crown St Wollongong\tNSW\tnan\n10005657\t-34.4243\t138.26161\tNBN Co Monopole Section 400 North Parham Road Windsor\tSA\tnan\n10004793\t-34.4243\t138.26172\tPort Parham North Parham Road WINDSOR?\tSA\tnan\n10005968\t-34.4167\t149.3255\tcnr Boobalaga Road \u0026 Red Hill Rd Lost River\tNSW\tnan\n10002763\t-34.4076\t139.126036\t1 Railway Terrace Truro\tSA\tnan\n10001297\t-34.3839\t137.667154\tGrainflow Site Minlaton-Maitland Rd 2km S of Maitland Maitland\tSA\tnan\n10007778\t-34.3169\t148.302\tAlfred Oval 2 Lachlan Street YOUNG\tNSW\tnan\n10005933\t-34.3126\t148.52728\tTelstra Site 1581 Geegullalong Road Murringo Young\tNSW\tnan\n10010237\t-34.2102\t142.1415\tMildura Gateway Tavern 795-807 Fifteenth Street MILDURA\tVIC\tnan\n10005851\t-34.1572\t138.74715\tTelstra Exchange Lot 241 Plan F23878 Charles Street RIVERTON\tSA\tnan\n10008322\t-34.1318\t150.82303\tNBN Co Monopole 29 Pheasants Road Wedderburn\tNSW\tnan\n10000530\t-34.0858\t151.0077\t11 Veno Street HEATHCOTE\tNSW\tnan\n10004156\t-34.064\t150.8177\t18-22 Broughton Street CAMPBELLTOWN\tNSW\tnan\n10003396\t-34.0632\t150.4531\tNattai RT Burragorang Road Nattai\tNSW\tnan\n10009556\t-34.0604\t148.8532\tFrogmore Road HOVELLS CREEK\tNSW\tnan\n10006637\t-34.059\t150.8157\tThe Good Guys Campbelltown Homebase Campbelltown 24 Blaxland Rd CAMPBELLTOWN\tNSW\tnan\n10004206\t-34.049\t151.1567\t21-23 Prince Street CRONULLA\tNSW\tnan\n10002149\t-34.0483\t150.7592\tMt Annan Marketplace 11-13 Main Street MT ANNAN\tNSW\tnan\n10010773\t-34.0204\t150.7639\tENZOS 1 Gregory Hills Dr GLEDSWOOD HILLS\tNSW\tnan\n10006025\t-34.0149\t151.0655\t38 Railway Cres JANNALI\tNSW\tnan\n10003440\t-34.0106\t150.8886\tBOM Site near Ingleburn Weir Holsworthy\tNSW\tnan\n10006281\t-33.9993\t138.9095\tBOM Site Waterloo East Schutz Road 2.9 km East of Waterloo\tSA\tnan\n10002202\t-33.965\t151.1359\t13-19 Hogben Street KOGARAH\tNSW\tnan\n10007569\t-33.9527\t118.77068\tTelstra Exchange Lot 5 Gnowangerup-Jerramungup Road Needilup Jerramungup\tWA\tnan\n10000534\t-33.952\t151.2311\tSouthport Shopping Centre 232-262 Bunnerong Road HILLSDALE\tNSW\tnan\n10010572\t-33.951\t150.9246\tConstruction site 400 Moorebank Avenue MOOREBANK\tNSW\tnan\n10009479\t-33.9478\t151.1942\t5/1A Hale Street BOTANY\tNSW\tnan\n10001010\t-33.9436\t151.22626\tCrane 4 Cnr Banks Ave \u0026 Westfield Drive Eastgardens\tNSW\tnan\n10005720\t-33.9419\t150.9998\t91 Marigold St REVESBY\tNSW\tnan\n10002217\t-33.9413\t151.0004\t71 Marigold St REVESBY\tNSW\tnan\n10002934\t-33.9352\t151.2186\tEastlake Golf Club Cnr Gardeners Road \u0026 Isaac Smith Street Eastlakes\tNSW\tnan\n10010612\t-33.9316\t151.0555\t1347 Canterbury Road PUNCHBOWL\tNSW\tnan\n10004933\t-33.9306\t138.6773\tBOM Site Mount Horrocks 4.5 km WSW of Mintaro\tSA\tnan\n10006279\t-33.9292\t138.8145\tBOM Site Cooinda 695 Bowmans Road Mintaro\tSA\tnan\n10002349\t-33.9278\t151.1546\t3A Magdalene Terrace WOLLI CREEK\tNSW\tnan\n10004154\t-33.924\t151.1867\t246 Coward Street MASCOT\tNSW\tnan\n10008058\t-33.9225\t151.06803\tKing Georges Rd and The Boulevarde MC Cnr King Georges Rd and The Boulevarde WILEY PARK\tNSW\tnan\n10001367\t-33.9218\t150.921182\tAldi Liverpool Plaza 165 - 191 Macquarie st LIVERPOOL\tNSW\tnan\n10006735\t-33.9216\t151.1671\t634-726 Princes Highway Tempe\tNSW\tnan\n10009534\t-33.9179\t151.26035\tCoogee North -V 23 Baden Street COOGEE\tNSW\tnan\n10006837\t-33.9159\t151.2166\tAustralian Golf Club Broadcast Site 53 Bannerman Cr Rosebery\tNSW\tnan\n10002413\t-33.9128\t151.1176\t211-215 Canterbury Road CANTERBURY\tNSW\tnan\n10007573\t-33.9126\t115.54033\tTelstra Site Cnr of Jalbarragup \u0026 Mowen Rd Barrabup\tWA\tnan\n10003457\t-33.9122\t151.1196\tTelstra Site 208 Canterbury Road Canterbury\tNSW\tnan\n10010887\t-33.9082\t150.921\tLiverpool Fashion Spree Outlet 5 Viscount Place LIVERPOOL\tNSW\tnan\n10000535\t-33.9074\t150.8677\tThe Valley Plaza 187 Wilson Road GREEN VALLEY\tNSW\tnan\n10001310\t-33.9065\t151.172783\tAldi Marrickville Marrickville metro shopping centre MARRICKVILLE\tNSW\tnan\n10000718\t-33.9053\t151.1317\t630-634 New Canterbury Road HURLSTONE PARK\tNSW\tnan\n10004363\t-33.9028\t151.0664\t77-79 Roberts Road GREENACRE\tNSW\tnan\n10010354\t-33.8974\t151.2559\t131 Birrell St WAVERLEY\tNSW\tnan\n10003582\t-33.8969\t151.1944\tLot 9 Australian Technology Park REDFERN\tNSW\tnan\n10011006\t-33.8956\t151.22148\tTelstra Street Cell Anzac Parade Moore Park Sydney\tNSW\tnan\n10009785\t-33.8924\t150.77902\tTelstra Street Cell NE Cnr of Western \u0026 Tavistock Rds Kemps Creek\tNSW\tnan\n10005051\t-33.8856\t151.199344\tCrnr O\u0027Conner St and Carlton St Chippendale\tNSW\tnan\n10005733\t-33.8845\t150.95661\tLight Pole Parkes Reserve, Prospect Road Canley Vale\tNSW\tnan\n10010483\t-33.8844\t151.2042\t18 Lee Street HAYMARKET\tNSW\tnan\n10003389\t-33.8817\t151.2053\t11 Rawson Place SYDNEY\tNSW\tnan\n10000833\t-33.8782\t151.1774\tCrane Precinct 5 Ross Street FOREST LODGE\tNSW\tnan\n10009224\t-33.8752\t151.2042\t319 - 325 Sussex St SYDNEY\tNSW\tnan\n10003340\t-33.874\t151.0983\t10 Gladstone Street BURWOOD\tNSW\tnan\n10000572\t-33.871\t151.1987\tShop 412 Harbourside Shopping Centre 231/2-10 Darling Drive DARLING HARBOUR\tNSW\tnan\n10009885\t-33.8702\t151.2099\tDavid Jones Department Store 86 - 108 Castlereagh st SYDNEY\tNSW\tnan\n10004587\t-33.8684\t151.1937\t100 Harris St PYRMONT\tNSW\tnan\n10001724\t-33.8656\t151.20513\tIBC 34 Clarence Street Sydney\tNSW\tnan\n10005589\t-33.8655\t151.21077\tTelstra Rooftop Site Sofitel Hotel 61- 101 Phillip Street SYDNEY\tNSW\tnan\n10010806\t-33.8637\t151.1947\t26 - 32 Pirrama Rd PYRMOUNT\tNSW\tnan\n10004178\t-33.8627\t151.222243\tLight Pole SC10 Macquarie\u0027s Chair 1D Mrs Macquaries Rd SYDNEY\tNSW\tnan\n10001703\t-33.8618\t151.0804\t2-6 Hillcrest Street HOMEBUSH\tNSW\tnan\n10003223\t-33.8616\t151.1789\t100-104 Reynolds Street BALMAIN\tNSW\tnan\n10009495\t-33.8612\t151.0183\tAuburn Tennis Centre 181 Chisholm Rd AUBURN\tNSW\tnan\n10007983\t-33.8607\t151.0574\t38 Birnie Ave LIDCOMBE\tNSW\tnan\n10008876\t-33.8596\t116.40619\tBoyup Brook 5241 Kojonup Road Boyup Brook\tWA\tnan\n10009385\t-33.8595\t151.2221\tOB Site Mrs Macquarie\u0027s Rd SYDNEY\tNSW\tnan\n10002153\t-33.8556\t151.2736\tVaucluse House 69A Wentworth Rd VAUCLUSE\tNSW\tnan\n10007702\t-33.8539\t150.98703\t291 Guildford Road GUILDFORD\tNSW\tnan\n10010233\t-33.8484\t151.072684\tCnr Figtree Dve AND Australia Ave SYDNEY OLYMPIC PARK\tNSW\tnan\n10004376\t-33.8452\t150.68505\tOrchard Hills North Littlefields Road Orchards Hills\tNSW\tnan\n10004398\t-33.8444\t151.0746\t4 Murray Rose Avenue OLYMPIC PARK\tNSW\tnan\n10000517\t-33.8383\t151.206852\tNth cnr Miller Street and Pacific Highway NORTH SYDNEY\tNSW\tnan\n10010452\t-33.8374\t121.8983\tKleenheat Esperance 40 Norseman Road CHADWICK\tWA\tnan\n10009060\t-33.8368\t151.12591\tASHBURN HOUSE RPTR 20-34 ASHBURN PLACE GLADESVILLE\tNSW\tnan\n10010873\t-33.8309\t150.9699\t11-19 Centenary Road MERRYLANDS\tNSW\tnan\n10010670\t-33.8255\t151.2002\t31 Hume St CROWN NEST\tNSW\tnan\n10009647\t-33.8228\t151.1925\t3 Herbert Street ST LEONARDS\tNSW\tnan\n10005798\t-33.8212\t150.787\t111-113 Quarry Road ERSKINE PARK\tNSW\tnan\n10002154\t-33.8211\t151.0179\tElizabeth Farm 70 Alice Street ROSEHILL\tNSW\tnan\n10008719\t-33.8177\t149.32024\tTelstra Site 67 Hobbys Yards Road Trunkey Creek Bathurst\tNSW\tnan\n10005707\t-33.8173\t151.002\tMyer Westfield Parramatta 159-175 Church Street PARRAMATTA\tNSW\tnan\n10003557\t-33.8046\t151.03239\tDTRS Site Rydalmere Off Calder Rd RYDALMERE\tNSW\tnan\n10009996\t-33.8019\t150.9845\tDragonfly Drive WESTMEAD\tNSW\tnan\n10008381\t-33.8006\t151.04955\t20 Dorahy Street DUNDAS\tNSW\tnan\n10006944\t-33.8001\t150.919\tFantastic Furniture 19 Stoddart Road Prospect\tNSW\tnan\n10002820\t-33.7974\t150.941\t140 Gilba Road GIRRAWEEN\tNSW\tnan\n10007501\t-33.7955\t151.04497\t7A Evans Road TELOPEA\tNSW\tnan\n10000029\t-33.7876\t150.8815\t27 Holbeche Road ARNDELL PARK\tNSW\tnan\n10010007\t-33.7871\t151.158\tHamilton Corner LINDFIELD\tNSW\tnan\n10009018\t-33.7847\t151.120567\tOCSF1 Lyon Park Road Macquarie Park\tNSW\tnan\n10003616\t-33.7828\t150.9489\tDTRS Site Toongabbie Off Portico Pde TOONGABBIE\tNSW\tnan\n10003240\t-33.7749\t151.0862\t3 - 7 Forest Grove EPPING\tNSW\tnan\n10002036\t-33.7744\t151.1692\tcnr Lindfield Avenue and Havilah Lane LINDFIELD\tNSW\tnan\n10007754\t-33.7709\t122.0249\tLot 29 Angove Road MYRUP\tWA\tnan\n10002094\t-33.7692\t151.0825\tCrane 2 20-28 Cambridge Street EPPING\tNSW\tnan\n10000723\t-33.7692\t151.083\t20-28 Cambridge Street EPPING\tNSW\tnan\n10003620\t-33.7686\t150.81325\tDTRS Site St Marys Mount Druit Rd Carpark MOUNT DRUITT\tNSW\tnan\n10006629\t-33.7659\t150.6805\tThe Good Guys Penrith 88 - 90 Mulgoa Rd JAMISONTOWN\tNSW\tnan\n10009680\t-33.7494\t150.8585\t50 Owen St GLENDENNING\tNSW\tnan\n10005507\t-33.7418\t150.7678\t38-52 Dunheved Circuit ST MARYS\tNSW\tnan\n10011044\t-33.7397\t150.7671\t17-19 Dunheved Circuit ST MARYS\tNSW\tnan\n10004155\t-33.7386\t151.0685\tcnr Fisher Avenue and Trebor Road PENNANT HILLS\tNSW\tnan\n10002635\t-33.7342\t150.962933\tCnr Century Circuit \u0026 Norwest Boulevard Baulkham Hills\tNSW\tnan\n10003693\t-33.7341\t150.46815\tDTRS Site Woodford 3 Rail Access Track off Railway Pde WOODFORD\tNSW\tnan\n10002354\t-33.7333\t151.2196\t5 Hews Parade BELROSE\tNSW\tnan\n10003686\t-33.7321\t150.60423\tDTRS Site Blaxland 2 Off Great Western Hwy WARRIMOO\tNSW\tnan\n10004885\t-33.7301\t150.961807\tBuilding Site Solent Circuit Baulkham Hills\tNSW\tnan\n10009299\t-33.7278\t150.9855\tTower crane Hills Showground Station 129 Showground Road CASTLE HILL\tNSW\tnan\n10010322\t-33.7275\t151.1664\t124 - 128 Killeaton Street ST IVES\tNSW\tnan\n10006615\t-33.7257\t150.9766\tThe Good Guys Castle Hill Home Hub 18 - 46 Victoria Ave CASTLE HILL\tNSW\tnan\n10005089\t-33.7256\t150.883972\t7 Nirimba Dr Quakers Hill\tNSW\tnan\n10007812\t-33.7218\t150.8421\tToys R US 43 Hollinsworth Rd MARSDEN PARK\tNSW\tnan\n10005826\t-33.721\t151.1036\t40-50 Pennant Hills Road NORMANHURST\tNSW\tnan\n10001971\t-33.7192\t150.8406\tHome Hub Marsden Park 16 Hollingworth Rd MARSDEN PARK\tNSW\tnan\n10000026\t-33.7187\t150.8341\tDulux Store Harris Avenue MARSDEN PARK\tNSW\tnan\n10000399\t-33.7101\t151.29573\tOptus Light Pole Intersection of Pittwater Road and Wakehurst Parkway NORTH NARRABEEN\tNSW\tnan\n10010886\t-33.6909\t150.9254\tShop GR100, Rouse Hill Town Centre 10-14 Market Lane ROUSE HILL\tNSW\tnan\n10010086\t-33.6863\t151.1085\t18-22 Lords Avenue ASQUITH\tNSW\tnan\n10008330\t-33.645\t115.152\tAnniebrook 231 Quindalup Road Quindalup\tWA\tnan\n10010211\t-33.644\t148.334\tDGPS Site 3331 Warraderry Way GOOLOOGONG\tNSW\tnan\n10002969\t-33.6437\t150.65973\tNBN Co Site 1 Hillcrest Road Yarramundi\tNSW\tnan\n10006257\t-33.6366\t120.4498\tDGPS transmitter Coujinup Road 8km NNW of JERDACUTTUP\tWA\tnan\n10009557\t-33.6358\t151.3087\tTelstra Site 165-167 Hudson Parade Clareville\tNSW\tnan\n10001236\t-33.614\t148.435861\tGooloogong Hotel 10-20 Main St Gooloogong\tNSW\tnan\n10003442\t-33.5931\t150.6994\tBOM Site St John Of God Hospital 177 Grose Vale Road North Richmond\tNSW\tnan\n10005654\t-33.5858\t138.32666\tNBN Co Site Section 356 Hundred of Koolunga Koolunga\tSA\tnan\n10006783\t-33.5766\t121.19552\tSouth Cascade Lot 1091 Beltana Rd Cascade\tWA\tnan\n10007823\t-33.5672\t148.6651\tSite Belmore Street CANOWINDRA\tNSW\tnan\n10004042\t-33.5431\t151.011128\tForest Glen 3291 Old Northern Road Forest Glen\tNSW\tnan\n10009061\t-33.5292\t151.20141\t99 Pacific Highway Mooney Mooney\tNSW\tnan\n10003819\t-33.5192\t150.27342\tDTRS Site Bell 2 Rail Access Track off Bells Line of Rd BELL\tNSW\tnan\n10003439\t-33.4972\t150.8769\tBOM Site 952 Sackville Ferry Road Sackville North\tNSW\tnan\n10003646\t-33.4936\t151.25574\tDTRS Site Wondabyne Station Rail Corridor WONDABYNE\tNSW\tnan\n10003647\t-33.4848\t151.267886\tDTRS Site Woy Woy Tunnel Location 1 Rail Corridor WONDABYNE\tNSW\tnan\n10004013\t-33.4837\t150.24538\tDTRS Site Newnes 3 Rail Access Track DARGAN\tNSW\tnan\n10003991\t-33.4757\t150.202901\tDTRS Site Zig Zag Tunnel 10 Location 1 Zig Zag Tunnel 10 Country End Portal CLARENCE\tNSW\tnan\n10003993\t-33.4698\t150.19865\tDTRS Site Zig Zag Halt Fixed Station Location 2 Rail Access Track near Zig Zag Station CLARENCE\tNSW\tnan\n10008062\t-33.4475\t149.5564\tBathurst Race Track Mt Panorama Race Circuit Mt Panorama\tNSW\tnan\n10010932\t-33.4427\t151.4405\t156-160 Terrigal Drive TERRIGAL\tNSW\tnan\n10006618\t-33.4351\t151.3922\tThe Good Guys Erina Erina Fair 620 - 658 Terrigal Dr ERINA\tNSW\tnan\n10002577\t-33.4283\t151.3208\tAnaconda West Gosford 28 Central Coast Highway WEST GOSFORD\tNSW\tnan\n10001892\t-33.4276\t151.3278\t10 Central Coast Highway WEST GOSFORD\tNSW\tnan\n10010394\t-33.4261\t151.3344\t14-16 Batley Street WEST GOSFORD\tNSW\tnan\n10009464\t-33.3914\t115.76002\tDardanup Recreation Road Paradise\tWA\tnan\n10009480\t-33.3234\t151.4143\t3/3 Corella Close BERKELEY VALE\tNSW\tnan\n10005431\t-33.2999\t115.74331\tTelstra Site 382 Clifton Road Waterloo\tWA\tnan\n10007540\t-33.266\t121.388656\tComms Site Grass Patch Road GRASS PATCH\tWA\tnan\n10001489\t-33.2535\t115.8388\tBurnswick Bakery South West Hway Burnswick\tWA\tnan\n10006066\t-33.1867\t148.6967\tManildra Mills Opposite 95 Kiewa Street Manildra\tNSW\tnan\n10004223\t-33.1822\t138.0095\tJohn Pirie Secondary School 40 Mary Elie Street Port Pirie\tSA\tnan\n10000578\t-33.1815\t151.44925\tNBN Co Site 155 Wyee Farms Road WYEE\tNSW\tnan\n10004620\t-33.1805\t138.009479\tTarget Florence St PORT PIRIE\tSA\tnan\n10000582\t-33.1725\t151.37582\tNBN Co Site Buangi Road Fire Trail Durren Durren\tNSW\tnan\n10008349\t-33.1466\t149.3541\t3567 Freemantle Rd GOWAN\tNSW\tnan\n10001621\t-33.1092\t151.48009\tOpposite 21 Ourimbah Street Morisset Lake\tNSW\tnan\n10000625\t-33.097\t119.0087\tOff Lake Grace-Newdegate Road NEWDEGATE\tWA\tnan\n10006662\t-33.0922\t151.46817\tTelstra Site 242-246 Freemans Dr COORANBONG\tNSW\tnan\n10010056\t-33.0464\t151.6698\tBelmont WWTP Ocean Park Road BELMONT SOUTH\tNSW\tnan\n10005846\t-32.9677\t138.0396\tBaroota Substation Cnr Bridle Track Road \u0026 Garden Road Baroota\tSA\tnan\n10000647\t-32.9639\t151.6945\tShop MM3 Level 2 Charlestown Square 30 Pearson Street CHARLESTOWN\tNSW\tnan\n10006825\t-32.9419\t151.710029\tKotara Shopping Centre Lexington Parade Kotara\tNSW\tnan\n10000291\t-32.926\t151.76453\tCustoms House 28 Honeysuckle Drive NEWCASTLE\tNSW\tnan\n10008516\t-32.9004\t151.70462\tOptus Site S8615 40 Compton Street NORTH LAMBTON\tNSW\tnan\n10010028\t-32.8238\t151.7386\t118 Enterprise Dr TOMAGO\tNSW\tnan\n10005252\t-32.8052\t117.2067\t\u0027Williams\u0027 Farm Block 3576 Parsons Road CUBBALLING\tWA\tnan\n10007225\t-32.7938\t119.5133\tTelstra Site 53 Pitt Street Varley Lake Grace\tWA\tnan\n10006939\t-32.7828\t116.380394\tHotham Farm Comms Site off Siding Road 1.9 km S of Gold Mine Road Intersection Marradong\tWA\tnan\n10000652\t-32.7702\t151.94145\tNBN Co 365 Lemon Tree Passage Road Salt Ash\tNSW\tnan\n10008309\t-32.7172\t151.5033\t175 Racecourse Rd RUTHERFORD\tNSW\tnan\n10010993\t-32.6817\t151.12608\tTelstra Site Lot 43 Plan 755264 Broke Rd Mt Thorley\tNSW\tnan\n10002678\t-32.6558\t151.9596\t5 William Street KARUAH\tNSW\tnan\n10008251\t-32.634\t115.64\tTelstra Exchange 13 Dawesville Road Dawesville Mandurah\tWA\tnan\n10008253\t-32.5968\t115.6501\tTelstra Site 3 Duke Street Wannanup Mandurah\tWA\tnan\n10009302\t-32.5789\t134.70685\tTelstra Site Lot 106 Plan 650600 Eyre Highway Cungena\tSA\tnan\n10001936\t-32.5755\t151.0788\tWarkworth Depot 186 Long Point Rd West WARKWORTH\tNSW\tnan\n10003448\t-32.5553\t151.379\tBOM Site Via Cranky Corner Road North Glendonbrook\tNSW\tnan\n10003149\t-32.5372\t115.7374\t303 Pinjarra Road MANDURAH\tWA\tnan\n10000382\t-32.5344\t115.7187\t3 Mandurah Terrace Mandurah\tWA\tnan\n10010982\t-32.4981\t149.85\t888 Kains Flat Road KAINS FLAT\tNSW\tnan\n10004594\t-32.4726\t151.95924\tTelstra Exchange 1 Plan 90013 The Bucketts Way BOORAL\tNSW\tnan\n10003583\t-32.4717\t115.7611\tALDI Lakelands Crn Mandurah Rd and Banksiadale Gate LAKELANDS\tWA\tnan\n10003446\t-32.471\t150.1059\tBOM Site Glenview Lot 96 Upper Bylong Road Upper Bylong\tNSW\tnan\n10003585\t-32.4086\t115.7594\tALDI Town Secret Harbour 420 Secret Harbour Blvd TOWN SECRET HARBOUR\tWA\tnan\n10009571\t-32.3499\t148.60677\tMonopole Cumboogle View 11R Benolong Road DUBBO\tNSW\tnan\n10008159\t-32.3198\t149.02631\tGollan SCAX Forestvale Rd Gollan\tNSW\tnan\n10005635\t-32.2841\t149.771139\tMoolarben Coal Mine 4250 Ulan Road (3km E of) ULAN\tNSW\tnan\n10003221\t-32.2503\t150.8943\t20 Hunter Street MUSWELLBROOK\tNSW\tnan\n10005479\t-32.2285\t115.7742\tTronox Pigment Plant Mason Road KWINANA\tWA\tnan\n10009687\t-32.189\t115.666\tGarden Island RASS Site Garden Island\tWA\tnan\n10002234\t-32.125\t133.7\tBristow Hangar Ceduna Airport CEDUNA SA 5690\tSA\tnan\n10006149\t-32.1173\t115.76285\tCoogee Beach SLSWA Clubhouse 20 Poore Grove Coogee\tWA\tnan\n10005615\t-32.067\t148.66035\tTelstra Exchange 138L Mogriguy Road MOGRIGUY\tNSW\tnan\n10009709\t-32.0576\t115.865692\tTelstra Site 77 Wheatley Drive Bull Creek Melville\tWA\tnan\n10000585\t-32.0573\t115.879736\tSouthlands Boulevarde Shopping Centre 45 Burrendah Boulevard Willetton\tWA\tnan\n10000995\t-32.0538\t115.74048\tN Cnr Shed A WA Maritime Museum Victoria Quay Victoria Quay Road FREMANTLE\tWA\tnan\n10006234\t-32.0525\t115.791803\tFremantle Depot Stock Road O\u0027Connor\tWA\tnan\n10006761\t-32.0449\t115.8669\t34 Bull Creek Rd ROSSMOYNE\tWA\tnan\n10009349\t-32.0425\t115.738883\tTyne ACFS Lot R114 Port Beach Road NORTH FREMANTLE\tWA\tnan\n10005710\t-32.0331\t115.8363\tMyer Garden City Shopping Centre 125 Risely Street BOORAGOON\tWA\tnan\n10005647\t-32.0301\t118.0947\tTelstra Exchange 112 Main Street ARDATH\tWA\tnan\n10010920\t-32.0113\t115.8644\tTelstra Site 3 Plan D86115 Ley St Manning\tWA\tnan\n10007979\t-32.0095\t117.40081\tTelstra Exchange 45 McLennan Street Quairading\tWA\tnan\n10006723\t-32.0054\t117.37562\tQuairading Lot 2 Weir Road QUAIRADING\tWA\tnan\n10002224\t-31.9973\t147.76258\tNSW Telco Authority Site Bogan-Cathundral Road, Cathundral, 21 W of Trangie\tNSW\tnan\n10009478\t-31.9901\t115.9206\t272 Rutland Avenue WELSHPOOL\tWA\tnan\n10002731\t-31.9834\t118.234941\tSchilling Property 1442 Bruce Rock Narembeen Road BRUCE ROCK\tWA\tnan\n10003152\t-31.9591\t115.89387\tTelstra IBC Crown Towers Hotel 61 Boulton Ave Burswood\tWA\tnan\n10000873\t-31.9543\t115.848113\tConstructionCrane 39 Mount Street PERTH\tWA\tnan\n10007560\t-31.9539\t115.859\tNike Perth City 670 Hay Street Mall PERTH\tWA\tnan\n10008252\t-31.9178\t116.0781\tTelstra Site 1 Montrose Avenue Darlington Mundaring\tWA\tnan\n10005732\t-31.9048\t115.9492\tTelstra Exchange 1 Wilson Street BASSENDEAN\tWA\tnan\n10010902\t-31.9025\t115.931361\t10 Hanwell Way BASSENDEAN\tWA\tnan\n10006605\t-31.8968\t116.0118\tThe Good Guys Midland Midland Central 541 Clayton St MIDLAND\tWA\tnan\n10008538\t-31.896\t115.7561\tScarborough Beach Pool 309 West Coast Highway SCARBOROUGH\tWA\tnan\n10004421\t-31.8874\t116.00226\tMidland Courthouse 26 Spring Park Road Midland\tWA\tnan\n10008523\t-31.8771\t152.17082\tNBN Co 40m monopole 1577 Nowendoc Road Mount George\tNSW\tnan\n10005711\t-31.8767\t115.7776\tMyer Karrinyup Shopping Centre Karrinyup Road KARRINYUP\tWA\tnan\n10000485\t-31.8361\t115.8396\tTelstra Exchange 111 Girrawheen Avenue Girrawheen\tWA\tnan\n10009945\t-31.8308\t115.821967\tItalian Aged Care 1 Marangaroo Drive MARANGAROO\tWA\tnan\n10003449\t-31.8293\t150.3479\tBOM Site Mount Palmer\tNSW\tnan\n10002520\t-31.806\t115.888\tIntelsat Antenna 620 Gnangara Road LANDSDALE\tWA\tnan\n10000627\t-31.777\t117.9529\tBOM Station Approximately 1.2km South of Fire Road SOUTH DOODLAKINE\tWA\tnan\n10002559\t-31.7624\t115.7728\tAnaconda Edgewater 6 The Gateway EDGEWATER\tWA\tnan\n10001676\t-31.7435\t115.76564\tIBC 420 Joondalup Drive Joondalup\tWA\tnan\n10008989\t-31.7367\t115.795998\tTelstra Site Info Centre 1140 Wanneroo Rd Ashby\tWA\tnan\n10003451\t-31.664\t152.3705\tBOM Site 320 The Den Road Mooral Creek\tNSW\tnan\n10010825\t-31.6627\t116.314771\tTelstra Site 80 McGellin Way Morangup\tWA\tnan\n10002636\t-31.6542\t115.958028\t1635 Neaves Road BULLSBROOK\tWA\tnan\n10001665\t-31.6432\t116.84944\tLeeming Road Meenar\tWA\tnan\n10002677\t-31.622\t152.6956\t12 Claywood Place KENDALL\tNSW\tnan\n10003453\t-31.5949\t151.8274\tBOM Site Hawkins Road Cooplacurripa\tNSW\tnan\n10002420\t-31.5822\t152.73277\t5494 Pacific Highway HERONS CREEK\tNSW\tnan\n10009736\t-31.5273\t138.6059\tOptus Rootop Site Wilpena Pound Vistor Centre Flinders Rangers Way FLINDERS RANGES\tSA\tnan\n10009788\t-31.4948\t118.27783\tMerriden DC Opposite 57 French Ave Merriden\tWA\tnan\n10005519\t-31.4751\t116.09155\tTelstra Site 9 Martin Road Chittering\tWA\tnan\n10004362\t-31.4641\t152.82137\tPort Macquarie Interchange 1065 Oxley Highway THRUMSTER\tNSW\tnan\n10003452\t-31.4621\t152.3245\tBOM Site Yarras Mountain\tNSW\tnan\n10002585\t-31.4497\t152.8832\tAnaconda Port Macquarie 180 Lake Road PORT MACQUARIE\tNSW\tnan\n10006311\t-31.4457\t116.4271\tCoondle BS Bindi Bindi - Toodyay Rd Coondle\tWA\tnan\n10003450\t-31.445\t152.477\tBOM Site Via Oxley Highway Long Flat\tNSW\tnan\n10010249\t-31.2746\t149.0672\tSiding Springs OB Site Observatory Road COONABARABRAN\tNSW\tnan\n10005026\t-31.2548\t118.170117\tTelstra Site Merredin-Nungarin Road Elabbin Elabbin\tWA\tnan\n10007494\t-31.1337\t138.3949\tOptus Rooftop Site Parachilna West Terrace PARACHILNA\tSA\tnan\n10009791\t-31.1244\t117.97555\tKwelkin Waters Lot 25627 Plan 150101 South Kununoppin\tWA\tnan\n10002536\t-31.0943\t150.912358\tCnr Bridge and Out St TAMWORTH\tNSW\tnan\n10008460\t-31.0798\t150.94153\tTamworth East Piper Street 184 Piper St EAST TAMWORTH\tNSW\tnan\n10005614\t-31.0352\t152.87461\tTelstra Exchange 37 Edgar Street FREDERICKTON\tNSW\tnan\n10002071\t-31.0218\t152.94127\tRawson Street SMITHTOWN\tNSW\tnan\n10006790\t-30.9473\t151.144\tMt Moonbi Bullimbulla Rd Bendemeer\tNSW\tnan\n10008149\t-30.8396\t116.386\tTelstra Site 29 Denton St Piawaning\tWA\tnan\n10009079\t-30.7253\t115.585277\tTelstra Site 4km East of Cataby, off Cataby Rd Dandaragan\tWA\tnan\n10002223\t-30.6338\t148.06627\t925 Toora Road Conimbia\tNSW\tnan\n10005332\t-30.5552\t150.1145\tTrailer Maules Creek Mine Site 6.5 km South of MAULES CREEK\tNSW\tnan\n10003443\t-30.4025\t152.7289\tBOM Site 291 Mountain Top Road Dorrigo Mountain\tNSW\tnan\n10007235\t-30.3963\t115.3124\tDGPS Badgingarra Wind Farm Seville Street Badgingarra\tWA\tnan\n10010362\t-30.3691\t152.18167\tDoughbouy Mountain 1763 Wongwibinda Road WONGWIBINDA\tNSW\tnan\n10005800\t-30.3441\t149.7133\t501 Yarrie Lake Rd Narrabri\tNSW\tnan\n10000437\t-30.3091\t153.1008\t2 - 10 Hurley Dr COFF HARBOUR\tNSW\tnan\n10001686\t-30.3009\t153.124972\t2AIR-FM Glenreagh Street Studios 24 Glenreagh St Coffs Harbour\tNSW\tnan\n10010846\t-30.2912\t115.476\tBoothendara (Nexgen) Brand Hwy Boothendara\tWA\tnan\n10003455\t-29.9594\t151.605\tBOM Site Beulah 709 Maybole Road Ben Lomond\tNSW\tnan\n10003444\t-29.9125\t153.1275\tBOM Site Browns Knob Barcoongere\tNSW\tnan\n10006246\t-29.8125\t151.5514\t154 Jenkins Roads MATHESON\tNSW\tnan\n10003454\t-29.7853\t151.1606\tBOM Site Lot 7021 Fisher Road Inverell\tNSW\tnan\n10003956\t-29.6675\t153.115555\tCandole St TUCABIA\tNSW\tnan\n10006973\t-29.6673\t153.11448\tTelstra Site 29 Aradin Street Tucabia Clarence Valley\tNSW\tnan\n10005428\t-29.6577\t151.44307\tLot 1 on Deposited Plan 838627, Western Feeder Rd Kings Plains\tNSW\tnan\n10006323\t-29.6487\t138.0629\tOptus Rooftop Site Marree Marree Community Hall High Street MARREE\tSA\tnan\n10008250\t-29.5887\t141.809117\tGood Friday Mine Site Office 30 km SW of Tibooburra\tNSW\tnan\n10010386\t-29.5361\t115.7649\t132 Railway Rd Three Springs\tWA\tnan\n10008207\t-29.4029\t130.7388\tOptus Rooftop Site Oak Valley Community Kali Street OAK VALLEY\tSA\tnan\n10008201\t-29.3397\t127.0969\tOptus Rooftop Site Tjuntuntjara CRC Tjuntuntjara GREAT VICTORIA DESERT\tWA\tnan\n10009447\t-29.2825\t114.919503\tACORN RADAR Surf Life Saving White Tops Drive Dongara\tWA\tnan\n10007760\t-29.2129\t151.3131\tRocky Creek Rd Rocky Creek\tNSW\tnan\n10000583\t-29.0535\t151.982356\tTanterfield Kildare Rd Tanterfield\tNSW\tnan\n10008171\t-29.0318\t167.947313\tGlonet PMTS site 3B Taylors Road NORFOLK ISLAND\tEXT\tnan\n10006492\t-28.9807\t142.037\tEast Comms Site Naryilco Station\tQLD\tnan\n10009849\t-28.8875\t152.55932\tTabulam SCAX 5650 Bruxner Hwy Tabulam\tNSW\tnan\n10006491\t-28.7889\t141.789\tMiddle Comms Site Naryilco Station\tQLD\tnan\n10007828\t-28.785\t115.8446\tSite 739 Pallotine Road TARDUN\tWA\tnan\n10010064\t-28.7768\t114.6269\tALDI Wonthella 81 - 85 North West Coastal Hwy WONTHELLA\tWA\tnan\n10007756\t-28.7767\t114.6031\tPort Authority Building 298 Marine Terrace Geraldton\tWA\tnan\n10007757\t-28.7568\t114.5656\tWaverider Buoy Channel Entrance 5 km NW of Geraldton\tWA\tnan\n10007755\t-28.7207\t114.5902\tWaverider Buoy Northern Channel 6.4 km N of Geraldton\tWA\tnan\n10008790\t-28.6472\t153.6122\t108-110 Jonson Street BYRON BAY\tNSW\tnan\n10006490\t-28.5594\t141.914\tNaryilco Homestead Comms Site Naryilco Station\tQLD\tnan\n10008676\t-28.4798\t122.802811\tYGP2 Great Central Road (42km ENE of) LAVERTON\tWA\tnan\n10006493\t-28.4297\t142.102\tDingera Comms Site Naryilco Station\tQLD\tnan\n10002741\t-28.4196\t151.0759\t70 Regent Street INGLEWOOD\tQLD\tnan\n10006812\t-28.399\t152.3768\tKoreela 988 Acacia Plateau Road Legume\tNSW\tnan\n10000821\t-28.3271\t153.4126\t148 Tweed Valley Way SOUTH MURWILLUMBAH\tNSW\tnan\n10002748\t-28.3179\t152.7511\t12318 Mt Lindsay Highway PALEN CREEK\tQLD\tnan\n10006494\t-28.3178\t141.709\t7 Mile Comms Site Naryilco Station\tQLD\tnan\n10009300\t-28.2623\t152.0365\tMorgan Park Raceway off Old Stanthorpe Road MORGAN PARK\tQLD\tnan\n10002341\t-28.259\t153.3496\tOutside Broadcast Site Dungay Creek Road DUNGAY\tNSW\tnan\n10006488\t-28.235\t141.362\tSantos Comms Site Naryilco Station\tQLD\tnan\n10005483\t-28.1825\t123.9436\tNexusSite4 Great Central Road Laverton East\tWA\tnan\n10006517\t-28.1542\t140.82\tBore Track South 1 Comms Site Innamincka Station\tSA\tnan\n10009341\t-28.1157\t148.72619\tTelstra Site 320 Bundoran Rd St George\tQLD\tnan\n10002732\t-28.1024\t153.43492\tWest Burleigh Lot 174 on SP156739 near 56 Kortum Drive BURLEIGH HEADS\tQLD\tnan\n10006335\t-28.0193\t138.6639\tOptus Rooftop Site Mungerannie Pub Mangerannie Hotel Birdsville Track MUNGERANNIE\tSA\tnan\n10000360\t-28.0178\t153.4299\tCrowne Plaza Surfers Paradise 2807 Gold Coast Highway SURFERS PARADISE\tQLD\tnan\n10008020\t-28.0044\t153.3745\tOB Site Royal Pines Resort BENOWA\tQLD\tnan\n10002469\t-28.0016\t153.4289\t27-29 Cavill Avenue SURFERS PARADISE\tQLD\tnan\n10008681\t-27.9968\t153.4271\t18 Cypress Ave Surfers Paradise\tQLD\tnan\n10002008\t-27.9913\t153.429353\tPhilcomm Site 3440 Surfers Paradise Blvd SURFERS PARADISE\tQLD\tnan\n10010092\t-27.9857\t153.382696\tAshmore Tavern 161 Cotlew Street ASHMORE\tQLD\tnan\n10004268\t-27.971\t144.63569\tSES Depot Harlequin Dr YOWAH\tQLD\tnan\n10004935\t-27.9639\t153.416\tGold Coast Aquatic Centre Marine Parade Gold Coast\tQLD\tnan\n10003383\t-27.9618\t153.3841\t32 davenport st SOUTHPORT\tNSW\tnan\n10006518\t-27.9592\t140.852\tBore Track North Comms Site Innamincka Station\tSA\tnan\n10008375\t-27.941\t122.367356\tToohey\u0027s Pit approx 12km N of Bandya\tWA\tnan\n10004263\t-27.9206\t153.3396\t2 Town Centre Drive Helensvale\tQLD\tnan\n10006489\t-27.8856\t141.881\tRiver Comms Site Naryilco Station\tQLD\tnan\n10004929\t-27.8659\t153.319453\tCoomera Indoor Sports Centre 35 Beattie Road Coomera\tQLD\tnan\n10000159\t-27.8396\t153.11489\tNBN Co 59-67 Pine Forest Way Tamborine\tQLD\tnan\n10000299\t-27.8076\t153.09282\tNBNCo 775 Camp Cable Road Logan Village\tQLD\tnan\n10006503\t-27.7954\t136.432\tManarrinna 2 Comms Site Macumba Station\tSA\tnan\n10000099\t-27.7917\t152.72621\tNBN Co Site 115 - 117 Mollenhauers Road Peak Crossing\tQLD\tnan\n10000684\t-27.7825\t145.7594\tBA Nardoo COONGOOLA LANE Coongoola\tQLD\tnan\n10003222\t-27.7475\t153.2315\t79 Elderslie Road YATALA\tQLD\tnan\n10006996\t-27.7468\t140.7378\tOptus Rooftop Site Innamincka Hotal Lot 1 South Terrace INNAMINCKA\tSA\tnan\n10000242\t-27.7432\t152.70847\tNBN Co Site 55 Bill Morrow Road Peak Crossing\tQLD\tnan\n10006512\t-27.7242\t140.763\tInnamincka Homestead Comms Site Innamincka Station\tSA\tnan\n10006511\t-27.7146\t140.771\tKellys Comms Site Innamincka Station\tSA\tnan\n10008973\t-27.6861\t153.06174\tTelstra Rooftop Site 24 Melastoma Place Heritage Park Logan\tQLD\tnan\n10004275\t-27.6651\t152.89058\tBrookwater 118 Augusta Parkway AUGUSTINE HEIGHTS\tQLD\tnan\n10004054\t-27.6621\t153.1106\t68 -70 Laughlin Street KINGSTON\tQLD\tnan\n10006431\t-27.656\t153.1681\tThe Good Guys Loganholme Logan Hyperdome Home Centre 3890 Pacific Highway LOGANHOLME\tQLD\tnan\n10003111\t-27.645\t152.87\tAldi Redbank Plains Cnr Argyle \u0026 Redbank Plains Road Redbank Plains\tQLD\tnan\n10002563\t-27.6364\t153.1352\tAnaconda Slacks Creek 3525 Pacific Highway SLACKS CREEK\tQLD\tnan\n10003267\t-27.6303\t152.2338\t996 Tenthill Creek Rd GATTON\tQLD\tnan\n10009757\t-27.6282\t152.3935\tTelstra Site 2 Cribb Street Laidley Lockyer Valley\tQLD\tnan\n10000725\t-27.6106\t152.893561\t18 Kristine Ave Goodna\tQLD\tnan\n10004123\t-27.6091\t153.1236\t2 Pannikin Street ROCHEDALE SOUTH\tQLD\tnan\n10007857\t-27.5998\t152.1345\tSubstation Flagstone Creek Rd CARPENDALE\tQLD\tnan\n10002592\t-27.5972\t151.9494\tAnaconda Toowoomba South 910 Ruthven Street TOOWOOMBA SOUTH\tQLD\tnan\n10009220\t-27.5877\t152.87963\tOptus Redbank RPTR 112 Monash Road REDBANK\tQLD\tnan\n10006504\t-27.5658\t136.554\tManarrinna Comms Site Macumba Station\tSA\tnan\n10003411\t-27.5656\t114.41439\tKalbarri Loop Von Bibra Road Kalbarri\tWA\tnan\n10000761\t-27.5634\t153.071641\tTrade Secret Macgregor Kessels Court 567 Kessels Road MACGREGOR\tQLD\tnan\n10010883\t-27.5631\t153.0819\tShop 1058, Westfield Garden City cnr Logan and Kessel Streets UPPER MT GRAVATT\tQLD\tnan\n10009576\t-27.5578\t153.0837\t76 Mount Gravatt-Capalaba Road UPPER MOUNT GRAVATT\tQLD\tnan\n10006451\t-27.5475\t151.940833\t26 Gladstone St TOOWOOMBA\tQLD\tnan\n10008768\t-27.5259\t153.0089\tOB Site Queensland Tennis Centre 190 King Arthur Terrace TENNYSON\tQLD\tnan\n10006509\t-27.5202\t140.692\tPacksaddle Comms Site Innamincka Station\tSA\tnan\n10003417\t-27.5165\t152.4604\tLockrose 40m monopole LOT 16 Cricket Road BRIGHTVIEW\tQLD\tnan\n10009025\t-27.5142\t152.58148\tNBN Co site 281 Lehmanns Road Coorana\tQLD\tnan\n10006982\t-27.5019\t153.0062\tIGA St Lucia 242 Hawken Dr ST LUCIA\tQLD\tnan\n10005324\t-27.5009\t153.0367\t264 Ipswich Road WOOLLOONGABBA\tQLD\tnan\n10002845\t-27.4985\t152.973\tShop 2090 Indooroopilly Shopping Centre 318 - 322 Moggill Road INDOOROOPILLY\tQLD\tnan\n10007742\t-27.4946\t153.0585\t280A Old Cleveland Rd COORPAROO\tQLD\tnan\n10006546\t-27.4944\t141.812\tGoonabrinna Comms Site Durham Downs Station\tQLD\tnan\n10001710\t-27.4811\t153.0363\t706 Main Street KANGAROO POINT\tQLD\tnan\n10006893\t-27.4779\t153.0413\t232 Wellington Rd EAST BRISBANE\tQLD\tnan\n10001709\t-27.4765\t153.0079\t215 Montague Road WEST END\tQLD\tnan\n10008808\t-27.4752\t153.0258\tBasement IBC 1 William St Brisbane City\tQLD\tnan\n10009841\t-27.4742\t153.0258\tQueen Wharf Project Queens Wharf Rd BRISBANE CITY\tQLD\tnan\n10009482\t-27.4735\t153.0136\tTower Crane 3 1 Cordelia Street SOUTH BRISBANE\tQLD\tnan\n10009489\t-27.4735\t153.0376\t67 Cairns Street KANGAROO POINT\tQLD\tnan\n10005558\t-27.4717\t153.0247\t171 George St Brisbane\tQLD\tnan\n10005708\t-27.4709\t153.0246\tMyer Centre 91 Queen Street BRISBANE\tQLD\tnan\n10003568\t-27.4708\t153.035\t2 Scott Street KANGAROO POINT\tQLD\tnan\n10008077\t-27.4648\t153.0127\t2 Caxton St PETRIE TERRACE\tQLD\tnan\n10010415\t-27.4577\t153.0347\t312 Brunswick Street FORTITUDE VALLEY\tQLD\tnan\n10010238\t-27.4573\t153.0252\t285 Gregory Terrace SPRING HILL\tQLD\tnan\n10009432\t-27.4541\t153.0403\t7 Chester Street NEWSTEAD\tQLD\tnan\n10010997\t-27.4535\t153.01513\tTelstra Site SW cnr of Blamey and Ramsgate St Kelvin Grove\tQLD\tnan\n10000695\t-27.4517\t153.0415\t14/24 Stratton Street Newstead\tQLD\tnan\n10008223\t-27.4516\t153.0451\t21 Longland St NEWSTEAD\tQLD\tnan\n10008581\t-27.4512\t153.0329\tDairy Hall and Sugar Building Gregory Terrace BOWEN HILLS\tQLD\tnan\n10009858\t-27.4492\t153.0266\tSurgical Building Herston Quarter 300 Herston Rd HERSTON\tQLD\tnan\n10001603\t-27.4465\t153.045\tDonaldson Tower 36 Evelyn Street NEWSTEAD\tQLD\tnan\n10005076\t-27.4392\t152.98963\tAshgrove North 115 Stewart Road ASHGROVE\tQLD\tnan\n10003569\t-27.4377\t153.0079\tTower crane cnr Edmondstone Street and Enoggera Road NEWMARKET\tQLD\tnan\n10005327\t-27.4306\t153.1055\t1275 Kingsford Smith MEEANDAH\tQLD\tnan\n10003572\t-27.428\t153.1496\t67-77 Trade Street LYTTON\tQLD\tnan\n10009080\t-27.427\t153.1523\t120 Trade St LYTTON\tQLD\tnan\n10006507\t-27.4255\t136.068\tDuck Hole Comms Site Macumba Station\tSA\tnan\n10008175\t-27.424\t153.082809\t41 Tradecoast Drive Eagle Farm\tQLD\tnan\n10007995\t-27.4197\t153.0983\tcnr Lomandra Drive and Logistics Road BRISBANE AIRPORT\tQLD\tnan\n10006508\t-27.4125\t140.121\tTirrawarra Comms Site Innamincka Station\tSA\tnan\n10005885\t-27.4108\t151.03629\tQGC Harry 216 Well Off Halliford Road Ducklo\tQLD\tnan\n10006510\t-27.3841\t140.983\tMerninie Comms Site Innamincka Station\tSA\tnan\n10002855\t-27.375\t153.125\tToll Aviation Hangar 8 Acacia St BRISBANE AIRPORT 4009\tQLD\tnan\n10009010\t-27.3477\t152.90335\tNBN Monopole 40 Albert Road Draper\tQLD\tnan\n10000522\t-27.2872\t152.986983\t15 Walter Crescent LAWNTON\tQLD\tnan\n10005862\t-27.276\t151.4159\tDGPS Site Auchmah Rd BOWENVILLE\tQLD\tnan\n10006505\t-27.2529\t135.65\tMacumba Homestead Comms Site Macumba Station\tSA\tnan\n10007861\t-27.2419\t153.021\t4 N Lakes Dr NORTH LAKES\tQLD\tnan\n10007813\t-27.2396\t153.0116\tToys R US Cnr North lake Dr and Prospect St NORTH LAKES\tQLD\tnan\n10007858\t-27.2374\t152.4987\tSubstation Paddy Gully Rd ESK\tQLD\tnan\n10010399\t-27.2133\t153.0855\tLot 888 Spinnaker Boulevard NEWPORT\tQLD\tnan\n10006544\t-27.2044\t142.372\tNo Mans Comms Site Durham Downs Station\tQLD\tnan\n10006513\t-27.1908\t140.057\tCoongie SW Comms Site Innamincka Station\tSA\tnan\n10006548\t-27.1859\t141.734\tBlacks Comms Site Durham Downs Station\tQLD\tnan\n10005886\t-27.1534\t150.88731\tQGC David 210 Well Grahams Road, 18 km SE of Kogan\tQLD\tnan\n10002372\t-27.129\t152.79686\tNBN Co Site 2562 Mt Mee Road Ocean View\tQLD\tnan\n10006514\t-27.1199\t140.405\tCoongie SE Comms Site Innamincka Station\tSA\tnan\n10007305\t-27.1111\t150.29955\tNBN Co Site 78 Tolmah Court Tara\tQLD\tnan\n10006506\t-27.0896\t135.695\tHorseshoe Bore Comms Site Macumba Station\tSA\tnan\n10006501\t-27.075\t136.474\tUlowarrina Comms Site Macumba Station\tSA\tnan\n10005842\t-26.9135\t152.92068\tNBNCo Site 2001 Old Gympie Road GLASS HOUSE MOUNTAINS\tQLD\tnan\n10006545\t-26.9071\t141.642\tMidway Comms Site Durham Downs Station\tQLD\tnan\n10006515\t-26.874\t140.061\tCoongie NW Comms Site Innamincka Station\tSA\tnan\n10006516\t-26.8338\t140.499\tCoongie NE Comms Site Innamincka Station\tSA\tnan\n10006502\t-26.7395\t136.08\tOolgana Comms Site Macumba Station\tSA\tnan\n10010884\t-26.7039\t153.1319\tShop 511, Kawana Shoppingworld 119 Point Cartwright Drive BUDDINA\tQLD\tnan\n10006244\t-26.6923\t151.7736\t13 Mustons Rd HALY CREEK\tQLD\tnan\n10001516\t-26.6585\t153.095238\tAldi Maroochydore 102 Aerodrome Road MAROOCHYDORE\tQLD\tnan\n10005709\t-26.6545\t153.0867\tMyer Sunshine Plaza Amaroo Street MAROOCHYDORE\tQLD\tnan\n10010264\t-26.6529\t153.0936\t10-12 Duporth Avenue MAROOCHYDORE\tQLD\tnan\n10005253\t-26.6379\t149.9161\tUlimaroa Silos Warrego Highway DRILLHAM\tQLD\tnan\n10005701\t-26.6371\t149.7567\tNBN Co Site Lot 3 Harrisons Road DULACCA\tQLD\tnan\n10004269\t-26.586\t149.181398\tSES Depot Showgrounds Warrego Hwy WALLUMBILLA\tQLD\tnan\n10009051\t-26.5766\t151.7611\t253 Beils Rd INVERLAW\tQLD\tnan\n10006997\t-26.4246\t135.5041\tOptus Rooftop Site Dalhousie Springs Witjira National Park WITJIRA\tSA\tnan\n10009919\t-26.4112\t151.81499\tTelstra Exchange 25-27 Alexander St Wooroolin\tQLD\tnan\n10008212\t-26.3878\t149.29309\tMuggelton Off Yuleba Taroom Road YULEBA NORTH\tQLD\tnan\n10004717\t-26.3602\t120.6056\tJundee Mine White House Goldfields Highway Wiluna 6646\tWA\tnan\n10000681\t-26.3565\t152.55895\tGympie muster-COW 1563 Amamoor Creek Road AMAMOOR CREEK?\tQLD\tnan\n10004794\t-26.2002\t152.66575\tNorth Monkland 45 Excelsior Road GYMPIE?\tQLD\tnan\n10001652\t-26.0132\t152.3427\tRepeater Site Mt Kunjoli (6.5km NW of) WOOLOOGA\tQLD\tnan\n10003189\t-25.9931\t116.0397\tCB Repeater Earilier Hill 37km north east of BALLYTHUNA HOMESTEAD\tWA\tnan\n10006499\t-25.9222\t141.296\tBeal Block Comms Site Morney Plains Station\tQLD\tnan\n10002781\t-25.8898\t148.9119\tTaylor Repeater off Waybara Road PONY HILLS\tQLD\tnan\n10006537\t-25.8528\t140.04\tRingamurra Comms Site Durrie Station\tQLD\tnan\n10006326\t-25.8395\t133.2998\tOptus Rooftop Site Kulgera Kulgera Roadhouse South Stuart Hwy KULGERA\tNT\tnan\n10003169\t-25.8332\t147.583572\tCB Repeater Site Redford Station 70km N MUNGALLALA\tQLD\tnan\n10006498\t-25.7147\t141.595\tBeefwood Comms Site Morney Plains Station\tQLD\tnan\n10006543\t-25.6993\t140.193\t8 Mile Comms Site Durrie Station\tQLD\tnan\n10006541\t-25.6874\t140.229\tDurrie Homestead Comms Site Durrie Station\tQLD\tnan\n10006500\t-25.5066\t140.916\tAlleogera Comms Site Morney Plains Station\tQLD\tnan\n10006536\t-25.4699\t140.231\tWantatta Comms Site Durrie Station\tQLD\tnan\n10006496\t-25.4241\t141.517\tMt Collins Comms Site Morney Plains Station\tQLD\tnan\n10006497\t-25.3712\t141.469\tMorney Plains Homestead Comms Site Morney Plains Station\tQLD\tnan\n10008897\t-25.3481\t148.8873\tSantos Castle Hill RT off Arcadia Valley South Rd CASTLE HILL GASFIELD\tQLD\tnan\n10003059\t-25.292\t152.8913\tAldi Urangan 1C Cartwright Court Urangan\tQLD\tnan\n10006495\t-25.2758\t140.467\tTackraminta Comms Site Morney Plains Station\tQLD\tnan\n10008896\t-25.259\t148.8716\tSantos Site Mt Kinglsey Dam Arcadia Valley\tQLD\tnan\n10006540\t-25.2542\t140.138\tJimos East Comms Site Durrie Station\tQLD\tnan\n10006539\t-25.1996\t139.942\tJimos West Comms Site Durrie Station\tQLD\tnan\n10005941\t-25.196\t152.53379\tTelstra Exchange 56 Travis Street Buxton Bundaberg\tQLD\tnan\n10009737\t-25.0719\t148.2743\tOptus Site Sandstone Park O\u0027Briens Road CANARVON GORGE\tQLD\tnan\n10008205\t-25.0713\t148.2551\tOptus Rooftop Site Canarvon Wilderness Lodge 4043 O\u0027Briens Road CANARVON PARK\tQLD\tnan\n10008204\t-25.0614\t148.2351\tOptus Rooftop Site Canarvon Gorge Visitor Centre Canarvon Gorge NP CANARVON PARK\tQLD\tnan\n10006532\t-24.9975\t139.052\tDam West Comms Site Glengyle Station\tQLD\tnan\n10006529\t-24.9799\t139.638\tLake Koolivoo Comms Site Glengyle Station\tQLD\tnan\n10002736\t-24.9625\t152.0495\tCouncil Tower Delan Rd BULLYARD\tQLD\tnan\n10006533\t-24.9486\t139.321\tDam East Comms Site Glengyle Station\tQLD\tnan\n10003058\t-24.8181\t152.4552\tAldi Bargara 699 Bargara Road, Bargara\tQLD\tnan\n10006531\t-24.7988\t138.727\tDubbo Comms Site Glengyle Station\tQLD\tnan\n10006530\t-24.7846\t139.592\tGlengyle Homestead Comms Site Glengyle Station\tQLD\tnan\n10008936\t-24.7147\t119.898436\tTWR2 Kalium Lakes 88 km NE of Kumarina\tWA\tnan\n10010632\t-24.6943\t151.30439\tTelstra Site 4 Pine Street Kalpowar\tQLD\tnan\n10006528\t-24.6772\t138.973\tTommydonka Comms Site Glengyle Station\tQLD\tnan\n10006534\t-24.624\t139.195\tCarrawillia Comms Site Glengyle Station\tQLD\tnan\n10006688\t-24.5638\t149.97689\tMarch IT Facility MOUR03 28-30 Okano St Moura\tQLD\tnan\n10006535\t-24.5585\t139.418\tBullock North Comms Site Glengyle Station\tQLD\tnan\n10009180\t-24.4601\t150.4644\t361 Crowsdale Camboon Road Biloela\tQLD\tnan\n10006803\t-24.4053\t131.817782\tOptus Rooftop site Kings Creek Station 12725 Luritja Road PETERMANN\tNT\tnan\n10006331\t-24.2513\t131.5113\tOptus Rooftop Site Kings Canyon Resort Kings Canyon Resort 20000 Larapinta Drive PETERMANN\tNT\tnan\n10008099\t-24.1424\t148.15007\tNBN Co Site Dawson Highway Orion\tQLD\tnan\n10007261\t-24.0775\t132.76\tParks \u0026 Wildlife Site Palm Valley Finke Gorge National Park NAMATJIRA\tNT\tnan\n10002893\t-23.8104\t150.647777\t1879 South Ulam Road Bajool\tQLD\tnan\n10004911\t-23.7649\t148.1016\t312 Howards Rd GINDIE\tQLD\tnan\n10006324\t-23.6851\t132.672\tOptus Rooftop Site Glen Helen Homestead Glen Helen Homestead Lodge 8495 Namatjira Drive MOUNT ZEIL\tNT\tnan\n10009738\t-23.6322\t132.7267\tOptus Rooftop Site Ormiston Poud Ranger Station Ormiston Gorge Access Road MOUNT ZEIL\tNT\tnan\n10005239\t-23.5272\t148.4098\tBauhinias Rd COMET\tQLD\tnan\n10009842\t-23.4445\t144.2457\t144-150 Emu St LONGREACH\tQLD\tnan\n10004676\t-23.442\t144.248697\tTarget 111 Eagle St LONGREACH\tQLD\tnan\n10003460\t-23.4389\t144.2816\tBoM Wind Profiler Longreach Airport Longreach\tQLD\tnan\n10008110\t-23.3978\t120.1006\tBHP 30m skid 3km SSE of McCamey\u0027s Monster\tWA\tnan\n10002526\t-23.3907\t120.1154\tBHP Billiton LTE site JIM_12 BHP Jimblebar mine\tWA\tnan\n10002525\t-23.3888\t120.1834\tBHP Billiton LTE site JIM_11 BHP Jimblebar mine\tWA\tnan\n10002529\t-23.3841\t120.0829\tBHP Billiton LTE site Skid 3 BHP Jimblebar mine\tWA\tnan\n10005175\t-23.3838\t119.6575\tMicrowave site OB35 Mid Pit BHP Mt Whaleback mine\tWA\tnan\n10008109\t-23.3831\t120.1348\tBHP 30m skid 1.5km SSE of Wheelarra Hill\tWA\tnan\n10005174\t-23.3786\t119.7073\tMicrowave site OB29 BHP Mt Whaleback mine\tWA\tnan\n10008113\t-23.3769\t120.1539\tBHP 50m tower 2.8km ESE of Wheelarra Hill\tWA\tnan\n10003364\t-23.375\t150.535555\tLandfill Site Lakes Creek Road ROCKHAMPTON\tQLD\tnan\n10008115\t-23.3725\t120.0919\tBHP 50m tower Jimblebar mine McCamey\u0027s Monster\tWA\tnan\n10001792\t-23.3718\t120.1264\tBHP Billiton LTE site WH4 Wheelarra Hill\tWA\tnan\n10001482\t-23.3694\t120.0508\tRail loadout BHP Jimblebar mine, 5 km west of McCameys Monster\tWA\tnan\n10008114\t-23.3683\t120.1063\tBHP 50m tower 1.5km ENE of McCamey\u0027s Monster\tWA\tnan\n10008106\t-23.3681\t120.1641\tBHP 30m skid 3.8km East of Wheelarra Hill\tWA\tnan\n10008107\t-23.3639\t120.1946\tBHP 30m skid 7km East of Wheelarra Hill\tWA\tnan\n10008111\t-23.3635\t120.092\tBHP 30m skid 1km North of McCamey\u0027s Monster\tWA\tnan\n10005173\t-23.3586\t119.6464\tRabbit Flats tower W29 BHP Mt Whaleback mine\tWA\tnan\n10006422\t-23.3416\t150.5217\tThe Good Guys Rockhampton Red Hill Homemaker Centre 396 Yaamba Road NORMAN GARDENS\tQLD\tnan\n10008116\t-23.3272\t120.0458\tBHP 50m tower 2.5km East of Shovelanna Hill\tWA\tnan\n10008112\t-23.3212\t120.0644\tBHP 30m skid 4.5km ENE of Shovelanna Hill\tWA\tnan\n10008108\t-23.3164\t120.1129\tBHP 30m skid 9.5km ENE of Shovelanna Hill\tWA\tnan\n10002527\t-23.3015\t120.0925\tBHP Billiton LTE site Skid 1 BHP Jimblebar mine\tWA\tnan\n10008704\t-22.892\t113.92455\tTelstra Site Minilya-Exmouth Road Lyndon Carnarvon\tWA\tnan\n10001801\t-22.865\t119.689\tBHP Billiton LTE site Poonda North SER Mount Newman Railway\tWA\tnan\n10010482\t-22.4826\t119.86845\tTrailer 1 Roy Hill Mine ROY HILL\tWA\tnan\n10010480\t-22.4815\t119.973306\tTrailer 3 Roy Hill Mine ROY HILL\tWA\tnan\n10008202\t-22.4809\t118.4629\tOptus Rooftop Site Karajini Vistor Centre Banijima Drive MULGA DOWNS\tWA\tnan\n10009741\t-22.4708\t118.5437\tOptus Site Karajini Campground Banijima Drive MULGA DOWNS\tWA\tnan\n10008715\t-22.4424\t119.924856\tPSA Waste Water Treatment Plant Roy Hill Mine Roy Hill\tWA\tnan\n10005527\t-22.2775\t117.5014\t55km NNW of Tom Price Tom Price\tWA\tnan\n10006447\t-22.255\t117.851667\tSolomon Mine Airport 100Km North of Paraburdoo HAMERSLEY RANGE\tWA\tnan\n10003944\t-22.1252\t117.83833\tTrinity (TNTY) 26.5 km NE of Mount Sheila Hamersley Range\tWA\tnan\n10004273\t-22.0865\t148.25659\tRamp 40 Site Poitrel Mine COPPABELLA\tQLD\tnan\n10007911\t-21.9973\t148.0385\t9 Barcoo Dr MORANBAH\tQLD\tnan\n10001139\t-21.8393\t140.893773\tAFRU Site Cannington Mine TREPELL AIRPORT\tQLD\tnan\n10004041\t-21.7658\t149.375003\tWest Hill Lot28MC573 Bruce HW Carmilla\tQLD\tnan\n10003406\t-21.6406\t121.1889\tWoodie Woodie Airport Woodie Woodie Road WOODIE WOODIE\tWA\tnan\n10009740\t-21.5912\t117.0754\tOptus Rooftop Site Millstream Homestead off Kajenjie Millstream Rd MILLSTREAM\tWA\tnan\n10003047\t-21.5415\t115.0327\tWaveRider buoy 14 km North west of ONSLOW\tWA\tnan\n10010327\t-21.1227\t118.869\tPilgangoora Lithium-Tantalum Mine off Port Hedland-Wittenoom Road, 95 km SSE of PORT HEDLAND\tWA\tnan\n10005374\t-20.986\t137.8496\tLake Nash Community Office 13 Antyiper Street ALPURRURULAM\tNT\tnan\n10002023\t-20.812\t116.7738\tLot 126 Warlu Road Cooya Pooya\tWA\tnan\n10001860\t-20.7746\t116.763\t15.8KP SER Pilbara\tWA\tnan\n10000669\t-20.7355\t116.846\t16 Sharpe Avenue Karratha\tWA\tnan\n10008789\t-20.7323\t116.840964\tKarratha Health Campus 62 Balmoral Road Karratha\tWA\tnan\n10001859\t-20.679\t117.118653\t9.78KP SER Pilbara\tWA\tnan\n10009833\t-20.6481\t116.72204\tDampier Power Station via Parker Point Road DAMPIER\tWA\tnan\n10007825\t-20.6279\t117.1961\tSite 9 Meares Drive POINT SAMSON\tWA\tnan\n10005330\t-20.515\t147.844447\tAlmoola SER 1.2 km East of Bowen Developmental Road Springlands\tQLD\tnan\n10009893\t-20.175\t129.666667\tNorthern Star Resources nominal LTE site Tanami 6 Tanami Desert\tNT\tnan\n10004557\t-20.1094\t139.865093\tGereta Station Lot 2585 Three Rivers\tQLD\tnan\n10006804\t-19.9217\t138.1195\tOptus Rooftop site Post Office Hotel 39 Barkly St CAMOOWEAL\tQLD\tnan\n10009894\t-19.875\t130.0\tNorthern Star Resources nominal LTE site Tanami 5 Tanami Desert\tNT\tnan\n10009892\t-19.875\t129.0\tNorthern Star Resources nominal LTE site West Tanami Tanami Desert\tWA\tnan\n10007511\t-19.7027\t139.35347\tSouth Esperanza Ridge 3km WSW of Waggaboonya Lake Gunpowder\tQLD\tnan\n10007627\t-19.6863\t147.28585\tIoT Trial Site Ayr-Dalbeg Road Mona Park\tQLD\tnan\n10005604\t-19.593\t147.135\t419 Bartlett Rd GIRU\tQLD\tnan\n10006964\t-19.5548\t147.35763\tTelstra Site 91 Drysdale Street Brandon\tQLD\tnan\n10004603\t-19.4366\t134.208275\tOptus Rooftop Site 3 Ways Roadhouse National Hwy 87 Tennant Creek\tNT\tnan\n10007830\t-19.3167\t146.8223\tFairfield Central Shopping Centre 2-14 Darcy Dr IDALIA\tQLD\tnan\n10005147\t-19.3162\t146.700233\tHarris Crossing Estate 308 Hervey Range Road BOHLE PLAINS\tQLD\tnan\n10006481\t-19.3081\t128.379\tLake Wilson Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\tnan\n10010261\t-19.2939\t146.7893\tMundingburra State School 77 Ross River Rd MUNDINGBURRA\tQLD\tnan\n10006424\t-19.2742\t146.7579\tThe Good Guys Townsville Domain Central Shopping Centre 103 Duckworth Street GARBUTT\tQLD\tnan\n10005913\t-19.2734\t146.7766\t44 Punari Street CURRAJONG\tQLD\tnan\n10002140\t-19.264\t146.821244\tQFES Communications Centre 2-8 Morey Street SOUTH TOWNSVILLE\tQLD\tnan\n10010100\t-19.2531\t146.70435\tTower North Shore Boulevard Townsville\tQLD\tnan\n10006479\t-19.1626\t128.163\tSturt Creek Homested Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\tnan\n10006484\t-19.1332\t127.828\tClay Hole Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\tnan\n10006485\t-19.0957\t127.518\tCarranya Bush Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\tnan\n10006550\t-19.0469\t134.487\tSpinifex Comms Site Brunchilly Station\tNT\tnan\n10006478\t-19.0046\t127.586\tWest Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\tnan\n10000422\t-18.9991\t144.98033\tTelstra Exchange Cassia Court Greenvale\tQLD\tnan\n10006551\t-18.9761\t134.793\tKidman Comms Site Brunchilly Station\tNT\tnan\n10006486\t-18.9616\t127.965\tBush Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\tnan\n10006487\t-18.9314\t128.374\tBorderline Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\tnan\n10006553\t-18.8683\t134.5\tBrunchilly Homestead Comms Site Brunchilly Station\tNT\tnan\n10006552\t-18.8627\t134.563\tChow Chowra Comms Site Brunchilly Station\tNT\tnan\n10006526\t-18.7108\t134.365\tCoolibah Comms Site Brunchilly Station\tNT\tnan\n10008206\t-18.6908\t138.5308\tOptus Rooftop Site Boodjamulla National Park Adels Grove LAWN HILL\tQLD\tnan\n10006482\t-18.6832\t127.685\tHughes Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\tnan\n10006483\t-18.6281\t128.147\tDry Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\tnan\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_-773220030",
+ "id": "20220727-124935_308976848",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:46:42+0000",
+ "dateFinished": "2022-08-16T04:46:42+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Check for unique Site IDs",
+ "text": "%python\n\nprint(\"Number of unique SITE IDs :\", len(pd.unique(site_df[\u0027SITE_ID\u0027])) )",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:52+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TEXT",
+ "data": "Number of unique SITE IDs : 103912\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_-1603649965",
+ "id": "20220727-124935_11281462",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:46:44+0000",
+ "dateFinished": "2022-08-16T04:46:44+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Data count of each SITE column",
+ "text": "%python\nsite_df.count()",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:52+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "language": "sql",
+ "editOnDblClick": false
+ },
+ "colWidth": 12.0,
+ "editorMode": "ace/mode/undefined",
+ "fontSize": 9.0,
+ "title": true,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TEXT",
+ "data": "SITE_ID 103912\nLATITUDE 103912\nLONGITUDE 103912\nNAME 103912\nSTATE 103675\nELEVATION 24448\ndtype: int64\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926448953_1603404369",
+ "id": "paragraph_1658926448953_1603404369",
+ "dateCreated": "2022-07-27T12:54:08+0000",
+ "dateStarted": "2022-08-16T04:46:46+0000",
+ "dateFinished": "2022-08-16T04:46:46+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Impute missing values in ELEVATION column",
+ "text": "%python\nsite_df[\u0027ELEVATION\u0027] \u003d [np.random.randint(100, 1500) for values in range(len(site_df))]\nz.show(site_df)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:52+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {
+ "0": {
+ "graph": {
+ "mode": "multiBarChart",
+ "height": 300.0,
+ "optionOpen": false,
+ "setting": {
+ "table": {
+ "tableGridState": {},
+ "tableColumnTypeState": {
+ "names": {
+ "SITE_ID": "number",
+ "LATITUDE": "number",
+ "LONGITUDE": "number",
+ "NAME": "string",
+ "STATE": "string",
+ "ELEVATION": "number"
+ },
+ "updated": false
+ },
+ "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
+ "tableOptionValue": {
+ "useFilter": false,
+ "showPagination": false,
+ "showAggregationFooter": false
+ },
+ "updated": false,
+ "initialized": false
+ },
+ "multiBarChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default"
+ },
+ "stackedAreaChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default"
+ },
+ "lineChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default"
+ }
+ },
+ "commonSetting": {},
+ "keys": [
+ {
+ "name": "SITE_ID",
+ "index": 0.0,
+ "aggr": "sum"
+ }
+ ],
+ "groups": [],
+ "values": [
+ {
+ "name": "ELEVATION",
+ "index": 5.0,
+ "aggr": "sum"
+ }
+ ]
+ },
+ "helium": {}
+ }
+ },
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TABLE",
+ "data": "SITE_ID\tLATITUDE\tLONGITUDE\tNAME\tSTATE\tELEVATION\n10009902\t-23.0\t116.466667\tNorthern Star Resources nominal LTE site Ashburton 1, 13 km east north east of Peak Edgar\tWA\t656\n10009903\t-23.0\t117.1\tNorthern Star Resources nominal LTE site Ashburton 2, 7 km west south west of Dolphin Hill\tWA\t157\n10009897\t-19.0\t129.7\tNorthern Star Resources nominal LTE site Tanami 2 Tanami Desert\tNT\t836\n10000187\t-38.34\t145.081063\tNBNCo 325 Myers Road Merricks North\tVIC\t327\n10000353\t-38.11\t145.2819\tCranbourne Park Shopping Centre High Street CRANBOURNE\tVIC\t163\n10000829\t-37.83\t144.899\tWestgate Bridge Structure_3 Westgate Bridge Freeway PORT SPOTSWOOD\tVIC\t552\n10007006\t-37.8\t144.7736\t176 Swann Dr DERRIMUT\tVIC\t1194\n10008365\t-37.72\t145.048389\tBorchardt Library La Trobe University The Agora Bundoora\tVIC\t1204\n10011002\t-34.74\t148.8444\tADFA site Yass Lachlan Valley Way Yass\tNSW\t1292\n10003498\t-34.47\t150.818413\tDTRS Site Kembla Grange Cnr W Dapto Rd and Prices Hwy KEMBLA GRANGE\tNSW\t481\n10007610\t-33.87\t116.0675\tGPS Transmitter Talisman Lithium Mine Maranup Ford Road GREENBUSHES\tWA\t705\n10010507\t-33.85\t151.0554\t30 Carter Street LIDCOMBE\tNSW\t349\n10007094\t-31.11\t150.89765\tTelstra Site Opposite 88 Duri Road West Tamworth\tNSW\t657\n10000636\t-30.36\t116.2896\tOff Edawa Road\tWA\t1399\n10009899\t-30.35\t121.933333\tNorthern Star Resources nominal LTE site Kanowna Belle East 42 km north east of Kanowna\tWA\t645\n10006332\t-30.16\t131.5803\tOptus Rooftop Site Maralinga Maralinga Village MARALINGA\tSA\t350\n10003562\t-28.87\t114.0\tKempton Fisheries Jackson Island ABROLHOS ISLANDS\tWA\t1230\n10009909\t-27.83\t153.334\tKerkin Road South COOMERA\tQLD\t833\n10006547\t-27.08\t141.907\tDurham Downs Homestead Comms Site Durham Downs Station\tQLD\t580\n10010405\t-26.75\t148.55294\tMarch IT Facility Roma Feedlot \u0026 Spelling Yards off Binya Lane MOUNT ABUNDANCE\tQLD\t1143\n10000233\t-26.71\t153.01285\tNBN Co 711 Ilkley Road TANAWHA\tQLD\t893\n10006538\t-25.55\t140.482\tParakunda Comms Site Durrie Station\tQLD\t149\n10005246\t-25.34\t152.7897\t2992 Maryborough Harvey Road SUNSHINE ACRES\tQLD\t283\n10006811\t-24.34\t133.458668\tOptus Rooftop site Stuarts Well Roadhouse 8844 Stuart Highway STUART WELL\tNT\t876\n10005015\t-22.96\t118.76\tJuna Downs Mast 108km WNW of Newman Newman\tWA\t248\n10010481\t-22.55\t119.972278\tTrailer 2 Roy Hill Mine ROY HILL\tWA\t758\n10004116\t-21.49\t114.99\tENSCO 107 Approximately 21km SW of ONSLOW\tWA\t404\n10009937\t-21.26\t114.04\tENSCO DPS-1 Offshore Australia\tEXT\t926\n10006878\t-21.21\t114.26\tAtwood Osprey Site Atwood Osprey Offshore Australia\tWA\t1254\n10008403\t-20.56\t145.55\tDGPS Site off Glen Houghton Rd via PENTLAND\tQLD\t452\n10001661\t-19.9\t130.178\tRamelius Resources Site 45k North East of Tanami Tanami\tNT\t405\n10008408\t-19.79\t147.22\tDGPS Site DGPS Site cnr Cussen and Granshaw Rds CLARE\tQLD\t1429\n10009895\t-19.75\t129.366667\tNorthern Star Resources nominal LTE site Tanami 4 Tanami Desert\tNT\t1054\n10010220\t-19.46\t116.56\tMcDermott DLV2000 Offshore Australia\tEXT\t450\n10009896\t-19.25\t129.166667\tNorthern Star Resources nominal LTE site Tanami 3 Tanami Desert\tNT\t421\n10009739\t-17.53\t128.3071\tOptus Site Purnululu National Park Reserve 39869 ORD RIVER\tWA\t1278\n10007618\t-12.67\t124.539\tNoble Tom Prosser Offshore Australia Timor Sea\tWA\t493\n10010885\t-42.8827\t147.3277\tH\u0026M Cat \u0026 Fiddle Arcade 93 Murray Street HOBART\tTAS\t970\n10007294\t-42.8823\t147.329101\tJettech Site 34 Elizabeth Street Hobart\tTAS\t1435\n10002567\t-42.8341\t147.4662\tAnaconda Cambridge Tasman Hwy CAMBRIDGE\tTAS\t711\n10010563\t-42.7921\t147.26671\t100 Cadbury Rd CLEREMONT\tTAS\t795\n10009655\t-42.5306\t147.978\tAquaculture Barge Okehampton Bay near Triabunna\tTAS\t612\n10010472\t-42.3886\t146.5032\tTelstra Site Wayatinah Community Centre Third Street Wayatinah\tTAS\t1403\n10003968\t-42.2869\t146.897825\tComms site 2.56km ESE of Hermitage HERMITAGE\tTAS\t479\n10005471\t-42.2703\t146.54465\tTelstra Site Bradys Lake Bradys Tower Rd, Tarraleah Bradys Sugarloaf\tTAS\t806\n10009706\t-41.586\t145.72\tTasmanet Site off Belvoir Rd West Coast off Belvoir Rd West Coast\tTAS\t1271\n10000557\t-41.5461\t146.41005\t80 Baldocks Rd Mole Creek\tTAS\t960\n10006786\t-41.5124\t146.64953\tDeloraine 36 Archer St DELORAINE\tTAS\t411\n10004946\t-41.4676\t147.1585\tColes Meadow Mews Shopping Centre 102 - 106 Hobart Rd KINGS MEADOWS\tTAS\t1233\n10002510\t-41.2341\t147.00945\tMount Direction optus monopole 71 Bullocks Head Road 7252 Mount Direction\tTAS\t748\n10004699\t-41.2286\t146.41077\tLatrobe Central 52 Hawkins Street West Latrobe\tTAS\t506\n10009686\t-40.683\t144.689\tCape Grim RASS Site Woolnorth\tTAS\t480\n10000004\t-39.5964\t143.9339\tCape Wickham Links Clubhouse KING ISLAND\tTAS\t1266\n10000847\t-38.8133\t146.1019\tTelstra Exchange 285 Waratah Road Sandy Point\tVIC\t1193\n10008493\t-38.522\t143.9732\tLorne North 2 Holliday Road LORNE\tVIC\t711\n10009484\t-38.468\t144.10447\tAIREYS INLET-V Split Point Light Station AIREYS INLET\tVIC\t727\n10004568\t-38.425\t143.54494\tTelstra Exchange site 410 G Barrys Road BARONGAROOK WEST\tVIC\t297\n10002273\t-38.3946\t143.68778\t420 Yeo-Yeodene Road Yeodene\tVIC\t472\n10004715\t-38.3842\t142.59992\tAllansford Allansford Recreation Reserve, ,Zeigler Parade ALLANSFORD\tVIC\t197\n10003109\t-38.3803\t142.5205\tAldi Gateway Plaza Warrnambool 154 Raglan Parade Warrnambool\tVIC\t313\n10008078\t-38.3791\t142.50816\tTelstra Site 2-64 Grafton Road Warrnambool\tVIC\t1046\n10002213\t-38.354\t144.9506\t795 Arthurs Seat Road ARTHURS SEAT\tVIC\t338\n10008464\t-38.348\t144.937\tMc Crae Freeway 2 CORNELL ST MCCRAE\tVIC\t761\n10004472\t-38.3429\t143.585742\t95-97 Gellibrand Street COLAC\tVIC\t353\n10000451\t-38.3341\t143.79031\tNBN Co Cnr Barray \u0026 Strachan Streets Birregurra\tVIC\t593\n10005040\t-38.3303\t144.9872\tAldi Dromana 120 Napean Hwy DROMANA\tVIC\t1006\n10005601\t-38.3124\t143.649992\t20 Warrowie Rd Colac\tVIC\t1317\n10008770\t-38.2778\t144.4535\tOB Site 13th Beach Golf Links 36 Fourteenth Road BARWON HEADS\tVIC\t1168\n10000791\t-38.2218\t145.0459\t99 Tanti Avenue MORNINGTON\tVIC\t1256\n10007176\t-38.187\t146.48831\tM8372 Traralgon West Scrubby Lane MARYVALE\tVIC\t329\n10010440\t-38.1856\t144.3801\t63 Leather Street BREAKWATER\tVIC\t1237\n10004132\t-38.1838\t145.0893\tcnr Mt Eliza Way and Canadian Bay Road MT ELIZA\tVIC\t918\n10002162\t-38.1574\t145.16951\tTelstra IBC McClelland Drive Peninsula Private Hospital Langwarrin\tVIC\t773\n10010422\t-38.1532\t145.1341\t47-49 Moorooduc Highway FRANKSTON\tVIC\t284\n10000719\t-38.1515\t144.365917\tUniversity Hospital Geelong Helipad Ryrie St GEELONG 3220\tVIC\t1238\n10010704\t-38.148\t144.3563\t73 Ryrie Street GEELONG\tVIC\t993\n10010456\t-38.1458\t144.3539\tcnr Latrobe Terrace and Gordon Avenue GEELONG\tVIC\t276\n10009959\t-38.1454\t144.3612\t26 Moorabool Street GEELONG\tVIC\t1153\n10010936\t-38.1238\t144.351\tGeelong Arena 110 Victoria Street NORTH GEELONG\tVIC\t652\n10009330\t-38.1238\t145.1508\tPines Forest Aquatic Centre 61 Forest Drive FRANKSTON NORTH\tVIC\t789\n10010368\t-38.1236\t145.31349\tNBN Co Site 1B/369 Casey Fields Blvd Cranbourne East\tVIC\t1446\n10004085\t-38.1025\t147.158611\tRAAF Interim Radar Site East Sale Talbots Road SALE\tVIC\t1027\n10001424\t-38.0781\t145.250748\tAldi Lyndhurst Marriot Blvd LYNDHURST\tVIC\t1123\n10007163\t-38.0756\t145.12337\tCarrum Central -O 506 Station Street CARRUM\tVIC\t1322\n10010705\t-38.0648\t145.4584\t4 Olympic Way PAKENHAM\tVIC\t148\n10010358\t-38.0466\t145.24\tM2 Industry Park cnr National Drive and Bayliss Road DANDENONG SOUTH\tVIC\t1408\n10008301\t-38.0363\t145.2362\t29 National Drive DANDENONG SOUTH\tVIC\t526\n10010757\t-38.0348\t145.1977\t42-46 Villas Road DANDENONG SOUTH\tVIC\t618\n10005573\t-38.0168\t145.38457\tGuys Hill 335 Beaconsfield Emerald Road BEACONSFIELD\tVIC\t891\n10009153\t-38.0118\t140.95955\tTelstra Site 13 Dry Creek Road Donovans DC of Grant\tSA\t599\n10011051\t-38.0111\t145.116\t71-81 Canterbury Road BRAESIDE\tVIC\t1462\n10000428\t-37.9887\t145.2439\tPool in the Park cnr Kidds Road and Tristiana Street DOVETON\tVIC\t678\n10000516\t-37.9867\t144.3509\tBarwon Prison 1140 Bacchus Marsh Road LARA\tVIC\t497\n10000567\t-37.9867\t145.1289\tSt Marks Primary School 4-6 Dimar Court DINGLEY VILLAGE\tVIC\t712\n10000179\t-37.9661\t145.0564\t2-6 Railway Road CHELTENHAM\tVIC\t674\n10000882\t-37.9659\t145.0571\tThe Village Cheltenham 1228 Nepean Hwy CHELTENHAM\tVIC\t1033\n10004279\t-37.9651\t144.7069\t50 Quay Boulevard WERRIBEE SOUTH\tVIC\t1379\n10001465\t-37.9591\t145.054976\tAldi Southland 1239 Nepean Highway CHELTENHAM\tVIC\t263\n10005706\t-37.9584\t145.0513\tMyer Westfield Southland 1156 Nepean Highway CHELTENHAM\tVIC\t943\n10010954\t-37.9568\t145.151903\tSpringvale Library 411 Springvale Road Springvale\tVIC\t991\n10009183\t-37.9535\t145.0477\tVista Kingston Park 1144 Nepean Hwy HIGHETT\tVIC\t214\n10010908\t-37.9502\t145.0078\t6 Fernhill Road SANDRINGHAM\tVIC\t1309\n10010755\t-37.949\t145.0787\tShop 7 430 Warrigal Road HEATHERTON\tVIC\t1375\n10010306\t-37.9391\t145.002\t293-295 Hampton Street HAMPTON\tVIC\t411\n10010195\t-37.9343\t145.0035\t514-518 Hampton Street HAMPTON\tVIC\t321\n10009358\t-37.9331\t145.0325\t336-338 South Road HAMPTON EAST\tVIC\t1487\n10010640\t-37.9209\t145.1403\tM-City cnr Dandenong and Blackburn Roads CLAYTON\tVIC\t539\n10005856\t-37.9198\t145.03905\t79/83 Mitchell St Bentleigh\tVIC\t930\n10000030\t-37.9192\t145.3463\tBelgrave Heights Christian School Wattle Valley Road BELGRAVE\tVIC\t197\n10002772\t-37.9172\t145.0312\t261 Centre Road BENTLEIGH\tVIC\t1490\n10000364\t-37.9158\t145.0608\tGlen Eira Sports and Aquatic Centre 200 East Boundary Road BENTLEIGH EAST\tVIC\t1003\n10000138\t-37.914\t145.132754\t21 Wellington Rd Clayton\tVIC\t814\n10000843\t-37.911\t145.1297\t18 Innovation Walk Monash University CLAYTON\tVIC\t890\n10010267\t-37.9094\t144.6638\tMacKillop Catholic Regional College 1 - 29 Russell St WERRIBEE\tVIC\t1245\n10000874\t-37.9083\t145.2388\t949 Stud Road ROWVILLE\tVIC\t564\n10010473\t-37.9044\t145.1598\tVillage Green Hotel cnr Springvale and Ferntree Gully Roads MULGRAVE\tVIC\t1438\n10010815\t-37.9038\t144.6562\t116 Watton Street WERRIBEE\tVIC\t1270\n10010165\t-37.9019\t142.7887\tSalt Creek Wind Farm off Woorndoo-Chatsworth Road WOORNDOO\tVIC\t1355\n10010633\t-37.8989\t145.0945\t89 Atherton Road OAKLEIGH\tVIC\t1231\n10005839\t-37.8979\t144.98963\tTelstra Street Cell 382 St Kilda Street BRIGHTON\tVIC\t1418\n10001088\t-37.8958\t144.753035\tAldi Sanctuary Lakes 300 Point Cook Road Point Cook\tVIC\t1294\n10008757\t-37.8916\t145.173288\tWIA Site Mt View Waverley Road Glen Waverley\tVIC\t590\n10002505\t-37.8905\t145.0655\t401 Neerim Road CARNEGIE\tVIC\t595\n10004702\t-37.8892\t145.0594\t316-320 Neerim Road CARNEGIE\tVIC\t398\n10005401\t-37.8886\t145.0541\t247 Neerim Road CARNEGIE\tVIC\t1141\n10001645\t-37.8876\t145.0813\tMyer Chadstone Shopping Centre 1341 Dandenong Road CHADSTONE\tVIC\t870\n10002193\t-37.887\t145.0831\ttoys R Us Chadstone Shopping Centre 1341 Dandenong Rd CHADSTONE\tVIC\t643\n10002276\t-37.8848\t145.0846\tShop m018 Chadstone Shopping Centre 1341 Dandenong Road CHADSTONE\tVIC\t929\n10010805\t-37.8841\t145.0559\t1060 Dandenong Road CARNEGIE\tVIC\t535\n10005820\t-37.8815\t145.29087\tTXA Ferntree Gully Site Monopole 1 Bruce Crescent FERNTREE GULLY\tVIC\t804\n10004169\t-37.8792\t145.1656\t263 Springfield Rd GLEN WAVERLEY\tVIC\t1494\n10010758\t-37.8765\t145.0035\tCaulfield Grammar School 217 Glen Eira Road ST KILDA EAST\tVIC\t999\n10008983\t-37.8763\t145.038\tTower Crane 2 Village Gate 22 Station St Caulfield East\tVIC\t1138\n10008982\t-37.8762\t145.0374\tTower Crane 1 Village Gate 22 Station St Caulfield East\tVIC\t829\n10008984\t-37.8761\t145.0376\tTower Crane 3 Village Gate 22 Station St Caulfield East\tVIC\t1478\n10009960\t-37.874\t145.0552\t61A The Avenue MALVERN EAST\tVIC\t327\n10008474\t-37.872\t145.20491\tScoresby North 55R Pumps Road WANTIRNA SOUTH\tVIC\t500\n10010025\t-37.8666\t144.7417\t111 Overton Road WILLIAMS LANDING\tVIC\t473\n10003297\t-37.8651\t144.70304\tTruganina West 20m monopole 2 Boyanich Court HOPPERS CROSSING\tVIC\t610\n10004405\t-37.8618\t144.985197\t194 St Kilda Road ST KILDA\tVIC\t1401\n10001653\t-37.8604\t144.9855\tJewish Museum of Victoria 26 Alma Road ST KILDA\tVIC\t1147\n10003199\t-37.8599\t144.67668\tTarneit North West 25m light pole 260-280 Hogans Road HOPPERS CROSSING\tVIC\t331\n10010759\t-37.8589\t145.0498\t2A Scott Grove GLEN IRIS\tVIC\t110\n10008714\t-37.8565\t144.9853\t35 Wellington Street ST KILDA\tVIC\t841\n10008974\t-37.853\t144.983\tJewish Care cnr Union Street and Punt Road WINDSOR\tVIC\t1124\n10004495\t-37.8514\t145.1297\t373 Burwood Highway BURWOOD\tVIC\t622\n10010784\t-37.8503\t144.9905\t14 Porter Street PRAHRAN\tVIC\t1396\n10010343\t-37.8501\t144.786567\tDHL Supply Chain 26 - 38 Harcourt Road Altona\tVIC\t655\n10010076\t-37.8454\t145.0126\t30 Springfield Avenue TOORAK\tVIC\t902\n10004159\t-37.8452\t144.9947\t402 Chapel Street SOUTH YARRA\tVIC\t847\n10000859\t-37.8433\t144.9959\t8-12 Garden Street SOUTH YARRA\tVIC\t1043\n10001697\t-37.8425\t144.9773\t478 St Kilda Road MELBOURNE\tVIC\t763\n10005683\t-37.8393\t144.9952\tCrane 1 625 Chapel Street SOUTH YARRA\tVIC\t1351\n10005685\t-37.839\t144.9954\tCrane 3 625 Chapel Street SOUTH YARRA\tVIC\t931\n10005734\t-37.8389\t144.9954\t625 Chapel Street SOUTH YARRA\tVIC\t1269\n10003082\t-37.8388\t144.9756\t450 St Kilda Road MELBOURNE\tVIC\t1405\n10005684\t-37.8386\t144.9952\tCrane 2 625 Chapel Street SOUTH YARRA\tVIC\t827\n10005686\t-37.8386\t144.9956\tCrane 4 625 Chapel Street SOUTH YARRA\tVIC\t685\n10010073\t-37.8375\t144.9941\t16-22 Claremont Street SOUTH YARRA\tVIC\t255\n10010992\t-37.8373\t144.7389\t28 Prosperity Street TRUGANINA\tVIC\t502\n10000431\t-37.8367\t144.9668\t74 Eastern Road SOUTH MELBOURNE\tVIC\t703\n10005538\t-37.8364\t144.6929\t540 Derrimut Road Tarneit\tVIC\t275\n10002164\t-37.8358\t144.76\t2 National Drive TRUGANINA\tVIC\t599\n10009651\t-37.8342\t145.0011\t135-141 Alexandra Avenue SOUTH YARRA\tVIC\t654\n10004028\t-37.8328\t144.9599\t228 Dorcas Street SOUTH MELBOURNE\tVIC\t1443\n10005876\t-37.8317\t144.9085\tWestgate Park off West Gate Freeway PORT MELBOURNE\tVIC\t1132\n10000537\t-37.8315\t144.9479\t165-167 Gladstone Street SOUTH MELBOURNE\tVIC\t964\n10009650\t-37.8305\t144.9902\tcnr Cremorne and Bent Streets CREMORNE\tVIC\t873\n10003393\t-37.8302\t144.653502\tCnr of Leakes Rd and Davis Rd TARNEIT\tVIC\t1155\n10004825\t-37.8301\t145.0589\tAldi Camberwell 15-25 Station Street Camberwell\tVIC\t1038\n10010979\t-37.8294\t144.9701\t25-29 Coventry Street SOUTHBANK\tVIC\t294\n10004299\t-37.829\t145.0547\tCamberwell Village 139 - 159 Camberwell Rd CAMBERWELL\tVIC\t454\n10000616\t-37.8274\t144.9563\t52 Haig Street SOUTHBANK\tVIC\t1388\n10000827\t-37.8257\t144.8899\tWestgate Bridge Structure_1 Westgate Bridge Freeway PORT MELBOURNE SPOTSWOOD\tVIC\t287\n10008690\t-37.8257\t144.9629\t93-119 Kavanagh Street SOUTHBANK\tVIC\t305\n10005413\t-37.8241\t144.9638\t54-68 Kavanagh Street SOUTHBANK\tVIC\t207\n10004412\t-37.824\t144.8541\t62-70 Export Drive BROOKLYN\tVIC\t424\n10008582\t-37.8228\t145.2368\tAquinas College Great Ryrie Street RINGWOOD\tVIC\t910\n10000634\t-37.8226\t144.93\t808 Lorimer Street PORT MELBOURNE\tVIC\t1330\n10000091\t-37.8222\t144.9661\tOaks Southbank 57-61 City Road SOUTHBANK\tVIC\t1288\n10005950\t-37.8222\t144.9797\tCrane between Rod Laver Arena and Melbourne Park cnr Batman Avenue and Swan Street MELBOURNE\tVIC\t993\n10008877\t-37.8217\t144.9246\tUnit 1, 706 Lorimer Street PORT MELBOURNE\tVIC\t525\n10002675\t-37.8209\t145.0344\t1 Grace Street HAWTHORN\tVIC\t988\n10001696\t-37.8208\t145.0085\t203 Burnley Street RICHMOND\tVIC\t195\n10000801\t-37.8203\t145.01347\t642 Bridge Road Richmond\tVIC\t1272\n10010537\t-37.8201\t144.9215\t29 South Wharf Lorimer St PORT MELBOURNE\tVIC\t1458\n10007586\t-37.8201\t145.123236\t545 Station St Box Hill\tVIC\t1433\n10010153\t-37.8192\t144.9518\t664 Collins Street DOCKLANDS\tVIC\t303\n10000143\t-37.8189\t144.9751\tCircus Oz Birrarung Marr MELBOURNE\tVIC\t448\n10005902\t-37.8188\t144.9587\tCrane 2 477 Collins Street MELBOURNE\tVIC\t643\n10005901\t-37.8184\t144.9586\tCrane 1 477 Collins Street MELBOURNE\tVIC\t223\n10001257\t-37.818\t145.3128\t135 -141 Canterbury Rd KILSYTH\tVIC\t1427\n10010142\t-37.8179\t144.9652\t276 Flinders Street MELBOURNE\tVIC\t285\n10005825\t-37.8179\t144.9956\t153-177 Bridge Road RICHMOND\tVIC\t452\n10010212\t-37.8179\t145.1257\t999 Whitehorse Road BOX HILL\tVIC\t850\n10002361\t-37.8178\t144.9956\tCrane 153-177 Bridge Road RICHMOND\tVIC\t750\n10003387\t-37.8174\t144.9961\t2 Hull Street RICHMOND\tVIC\t542\n10000609\t-37.8171\t144.994\tTelstra Site Leigh Place Richmond\tVIC\t639\n10008951\t-37.817\t144.9688\tTower crane 1 180 Flinders Street MELBOURNE\tVIC\t845\n10008950\t-37.8166\t144.9686\tTower crane 2 180 Flinders Street MELBOURNE\tVIC\t463\n10006243\t-37.8164\t145.131858\tTower Crane 40 Dorking Rd Box Hill\tVIC\t383\n10010754\t-37.8163\t145.1067\t692 Whitehorse Road MONT ALBERT\tVIC\t881\n10005999\t-37.8162\t144.9657\t257 Collins Street Melbourne\tVIC\t884\n10008522\t-37.8162\t145.1817\tWhitehorse Centre 379 Whitehorse Road NUNAWADING\tVIC\t785\n10002105\t-37.816\t145.1212\t19 Irving Avenue BOX HILL\tVIC\t1325\n10000476\t-37.8152\t144.9391\t429 Docklands Drive DOCKLANDS\tVIC\t1161\n10010419\t-37.8152\t144.9512\tShop MM4 Spencer Outlet Centre 201 Spencer Street DOCKLANDS\tVIC\t1296\n10009796\t-37.8151\t144.9686\tShop 1/161 Collins Street MELBOURNE\tVIC\t1060\n10002092\t-37.815\t144.9543\t605 Lonsdale Street MELBOURNE\tVIC\t327\n10008990\t-37.8149\t144.9993\t130-140 Church Street RICHMOND\tVIC\t1348\n10008817\t-37.8149\t144.964888\tPower Pole 287-297 Little Collins St MELBOURNE\tVIC\t351\n10002652\t-37.8148\t145.012\t9-15 David Street RICHMOND\tVIC\t1306\n10007624\t-37.8144\t144.9512\tPolice Complex 263 - 283 Spencer St MELBOURNE\tVIC\t828\n10010458\t-37.8143\t144.7672\t9-15 Foundation Road TRUGANINA\tVIC\t560\n10002244\t-37.8142\t144.955\t580 Lonsdale Street MELBOURNE\tVIC\t744\n10009577\t-37.814\t144.9704\t90 Collins Street MELBOURNE\tVIC\t896\n10005262\t-37.814\t144.94102\tCrane 2 387-395 Docklands Drive DOCKLANDS\tVIC\t960\n10000738\t-37.814\t145.2305\tCrane at Eastland Shopping Centre 171 Maroondah Highway RINGWOOD\tVIC\t1113\n10010617\t-37.8139\t145.1244\t757 Station Street BOX HILL\tVIC\t446\n10010529\t-37.8134\t144.9384\tThe District Docklands Shopping Precinct SCF11 107-109 Studio Lane DOCKLANDS\tVIC\t120\n10010413\t-37.8133\t144.8863\t111 Sommerville Road FOOTSCRAY\tVIC\t884\n10007065\t-37.8126\t144.958396\tMelbourne Childrens Court of Victoria 477 Little Lonsdale Street Melbourne\tVIC\t736\n10010414\t-37.8125\t144.8787\t221 Sommerville Road FOOTSCRAY\tVIC\t706\n10000503\t-37.8123\t144.9608\t388 Lonsdale Street MELBOURNE\tVIC\t1014\n10008964\t-37.8119\t144.8127\t5-11 Normanby Avenue SUNSHINE WEST\tVIC\t863\n10003136\t-37.8119\t144.9682\tBillboard The Venue 170 Russell Street MELBOURNE\tVIC\t134\n10010397\t-37.8118\t144.9773\t2 St Andrews Place EAST MELBOURNE\tVIC\t481\n10002963\t-37.8115\t144.9606\t296-300 Little Lonsdale Street MELBOURNE\tVIC\t874\n10000536\t-37.8113\t144.9929\t34-40 Elizabeth Street RICHMOND\tVIC\t1386\n10003565\t-37.811\t144.9696\tHer Majesty\u0027s Theatre 219 Exhibition St MELBOURNE\tVIC\t1177\n10000027\t-37.8109\t144.9371\tCostco Docklands 381-383 Footscray Road DOCKLANDS\tVIC\t843\n10009602\t-37.8109\t144.9679\t157 Lonsdale Street MELBOURNE\tVIC\t890\n10004104\t-37.8097\t144.9571\t229 Franklin Street MELBOURNE\tVIC\t708\n10008072\t-37.8094\t144.9628\t17 Little La Trobe Street MELBOURNE\tVIC\t133\n10010901\t-37.8088\t144.9675\t141 La Trobe Street MELBOURNE\tVIC\t712\n10010662\t-37.8083\t144.8273\t30-34 Strzelecki Avenue SUNSHINE WEST\tVIC\t1056\n10011029\t-37.8077\t144.9862\t36 Wellington COLLINGWOOD\tVIC\t546\n10003978\t-37.8076\t144.9682\t353 Exhibition Street MELBOURNE\tVIC\t753\n10010154\t-37.8071\t144.984\t15-21 Derby Street COLLINGWOOD\tVIC\t240\n10002771\t-37.8063\t144.9802\t166 Gertrude Street FITZROY\tVIC\t1335\n10003975\t-37.8055\t144.9481\t621 King Street WEST MELBOURNE\tVIC\t796\n10003245\t-37.8046\t144.98292\tFITZROY Rooftop 145 Smith St FITZROY?\tVIC\t225\n10005922\t-37.8038\t145.0378\t363-369 High Street Kew\tVIC\t637\n10006881\t-37.8024\t144.9601\tLaw Building Melbourne University cnr Barry and Pelham Streets CARLTON\tVIC\t676\n10010964\t-37.8024\t144.9933\t112-120 Vere Street ABBOTSFORD\tVIC\t1006\n10003464\t-37.802\t144.955614\t21 Bedford Street North Melbourne\tVIC\t679\n10010814\t-37.8018\t144.7715\t210 Swann Drive DERRIMUT\tVIC\t366\n10010333\t-37.8004\t144.9536\t15-27 Wreckyn Street NORTH MELBORNE\tVIC\t937\n10009847\t-37.8003\t144.9087\tcnr Maribyrnong Street and Hopkins Street FOOTSCRAY\tVIC\t1389\n10000635\t-37.8001\t144.9069\t18-24 Hopkins Street FOOTSCRAY\tVIC\t1238\n10008583\t-37.7998\t144.9098\t2 Hopkins St FOOTSCRAY\tVIC\t818\n10006882\t-37.7982\t144.9586\tKenneth Myer Carpark cnr Royal Parade and Genetics Lane PARKVILLE\tVIC\t182\n10000263\t-37.798\t144.9679\tLygon Court Shopping Centre 380 Lygon Street CARLTON\tVIC\t942\n10006883\t-37.7975\t144.9657\tEastern Carpark Melbourne University 375 Cardigan Street CARLTON\tVIC\t805\n10001901\t-37.7973\t144.9541\tBio21 Institute 30 Flemington Rd PARKVILLE\tVIC\t754\n10010274\t-37.7971\t144.9743\t1 Palmerston Street CARLTON\tVIC\t949\n10003963\t-37.7961\t144.9166\t71-86 Hobsons Road KENSINGTON\tVIC\t825\n10004212\t-37.7961\t144.9408\t113 Canning Street NORTH MELBOURNE\tVIC\t805\n10005738\t-37.7951\t144.9489\t179-191 Flemington Road NORTH MELBOURNE\tVIC\t506\n10004234\t-37.7932\t144.9991\t122-138 Roseneath Street CLIFTON HILL\tVIC\t1411\n10009846\t-37.7912\t144.8908\t124-188 Ballarat Road FOOTSCRAY\tVIC\t849\n10008587\t-37.7842\t145.1156\t535 Doncaster Road DONCASTER\tVIC\t850\n10005452\t-37.7837\t144.91531\tAscot Vale South 400 EPSOM RD FLEMINGTON\tVIC\t526\n10001637\t-37.7836\t145.1256\tMyer Doncaster Westfield Doncaster 619 Doncaster Road DONCASTER\tVIC\t447\n10009359\t-37.7815\t144.875\t108 Mitchell Street MAIDSTONE\tVIC\t1304\n10002345\t-37.7807\t145.6111\t2431 Warburton Highway YARRA JUNCTION\tVIC\t113\n10003303\t-37.7786\t144.971\t8 Lygon Street BRUNSWICK EAST\tVIC\t1364\n10003057\t-37.7784\t145.4589\tAldi Seville 638 Warburton Highway Seville\tVIC\t928\n10001695\t-37.778\t144.9711\t22-30 Lygon Street BRUNSWICK EAST\tVIC\t827\n10010661\t-37.7754\t144.9586\t325 Barkly Street BRUNSWICK\tVIC\t896\n10000529\t-37.7752\t145.48856\tNBN Co Site 773 Warburton Highway Seville East\tVIC\t1047\n10004074\t-37.767\t144.9986\t445-453 High Street NORTHCOTE\tVIC\t399\n10002849\t-37.7654\t144.9217\tCrane 5 40 Hall Street MOONEE PONDS\tVIC\t513\n10002848\t-37.7653\t144.9199\tCrane 1 40 Hall Street MOONEE PONDS\tVIC\t1018\n10004413\t-37.7636\t144.9617\t8 Breese Street BRUNSWICK\tVIC\t345\n10000380\t-37.7626\t144.9619\t26 Breese Street BRUNSWICK\tVIC\t682\n10008288\t-37.7611\t144.83769\tSunshine 2 42 Harvester Avenue SUNSHINE NORTH\tVIC\t372\n10010024\t-37.7563\t144.9169\t15-21 Russell Street ESSENDON\tVIC\t691\n10003357\t-37.7552\t145.0558\t443 Upper Heidelberg Road HEIDELBERG\tVIC\t888\n10006581\t-37.7541\t145.6534\tTelstra Site 3045 Warburton Highway Millgrove\tVIC\t919\n10002253\t-37.7533\t144.943947\t444-446 Moreland Rd Brunswick\tVIC\t1414\n10010176\t-37.7465\t145.0023\t165-191 High Street PRESTON\tVIC\t1326\n10002818\t-37.7417\t140.78\tMount Gambier Airport 109 Airport Road, Wandilo SA 5291 Wandilo\tSA\t1334\n10002233\t-37.7399\t145.0018\tALDI Preston Market 18 Cramer St Preston\tVIC\t623\n10001458\t-37.7379\t145.028781\tAldi Northland 2 - 50 Murray Road PRESTON\tVIC\t624\n10001005\t-37.7306\t145.1084\t4 Main Road LOWER PLENTY\tVIC\t846\n10004609\t-37.7303\t144.2568\tYaloak South Development nominal centre point Yaloak Creek off Glenmore Road BALLAN\tVIC\t686\n10005965\t-37.7286\t145.31313\tNBN Co Site 285 Edward Road CHIRNSIDE PARK\tVIC\t1200\n10007168\t-37.716\t145.006\tM8527 Reservoir Central 4 Edwardes Street RESERVOIR\tVIC\t907\n10009510\t-37.7105\t144.8627\t27 Assembly Drive TULLAMARINE\tVIC\t1201\n10005937\t-37.7082\t144.8535\tNSA Demo Location 1 6 Aerolink Dr Tullamarine\tVIC\t805\n10007166\t-37.7071\t144.45857\tParwan North 4300 Geelong Bacchus Marsh Road PARWAN\tVIC\t267\n10001609\t-37.7047\t144.8635\t140 Sharps Road MELBOURNE AIRPORT\tVIC\t756\n10010400\t-37.6924\t148.0908\tBoM AWS Compound Mt Nowa Nowa via Two Mile Road NOWA NOWA\tVIC\t1118\n10005716\t-37.6919\t145.014\t49B Temple Drive THOMASTOWN\tVIC\t1165\n10004309\t-37.6906\t144.8772\t47 Garden Drive TULLAMARINE\tVIC\t1480\n10000031\t-37.6905\t145.0248\t319 Settlement Road THOMASTOWN\tVIC\t499\n10001026\t-37.687\t144.560535\tAldi Melton West Woodgrove Shopping Centre High St Melton West\tVIC\t826\n10000623\t-37.6839\t144.873\t58 Springbank Street TULLAMARINE\tVIC\t1235\n10003324\t-37.6833\t145.0705\t7 Graduate Road BUNDOORA\tVIC\t368\n10001131\t-37.6826\t144.9561\t1497 Hume Highway CAMPBELLFIELD\tVIC\t1077\n10010882\t-37.6805\t144.9199\tShop G027, Broadmeadows Shopping Centre 1099-1169 Pascoe Vale Road BROADMEADOWS\tVIC\t683\n10000588\t-37.6801\t145.070292\tVHA Rooftop Site Uni Hill Factory Outlets 2 Janfield Drive BUNDOORA\tVIC\t602\n10005719\t-37.6773\t144.9548\t9 - 11 Fabio Court CAMPBELLFIELD\tVIC\t665\n10002230\t-37.6742\t144.9082\tConstruction site Valley Park off Erinbank Crescent WESTMEADOWS\tVIC\t259\n10005512\t-37.6703\t145.5417\t263 Don Rd HEALSVILLE\tVIC\t1318\n10006968\t-37.6605\t144.9381\tBroadcast Mast 44 Kyabram Street Coolaroo\tVIC\t641\n10008059\t-37.6591\t145.016019\t40 Deveny Street Epping\tVIC\t484\n10010787\t-37.6574\t145.0139\t60 Deveny Road EPPING\tVIC\t155\n10006259\t-37.6521\t145.0195\t113 Cooper St EPPING\tVIC\t660\n10009008\t-37.6521\t145.5222\t316-334 Maroondah Highway HEALESVILLE\tVIC\t663\n10001062\t-37.6507\t145.069338\tAldi Plenty Valley 400 McDonalds Rd Plenty Valley\tVIC\t199\n10009690\t-37.6439\t144.9504\t1835 Hume Highway Campbellfield\tVIC\t289\n10002101\t-37.6006\t145.0924\tMernda Police Station cnr Bridge Inn Road and Pimpinella Pass MERNDA\tVIC\t1180\n10001581\t-37.576\t144.7248\tSunbury Aquatic \u0026 Leisure Centre 20 Ligar Street SUNBURY\tVIC\t1328\n10005780\t-37.5637\t144.6903\tNBN Co Site 250A Reservoir Road SUNBURY\tVIC\t848\n10006696\t-37.5603\t143.8603\tThe Good Guys Ballarat 33 Grenville St North BALLARAT NORTH\tVIC\t1079\n10002589\t-37.535\t143.8218\tAnaconda Wendouree 333 Gillies Street WENDOUREE\tVIC\t1074\n10010948\t-37.5325\t147.0053\tBoM Site Reeves Knob off Marathon Road MOROKA\tVIC\t1283\n10001299\t-37.5292\t143.8095\t233-243 Learmonth Road WENDOUREE\tVIC\t293\n10008479\t-37.5206\t144.72498\tEmu Valley 420 SETTLEMENT ROAD SUNBURY\tVIC\t873\n10011052\t-37.4846\t144.5911\t6 Aitken Street GISBORNE\tVIC\t192\n10010466\t-37.4462\t145.2445\tTelstra Site 1600 Whittlesea-Yea Road Kinglake West\tVIC\t1172\n10005440\t-37.4077\t144.5788\t601 Mount Macedon Rd MOUNT MACEDON\tVIC\t258\n10011053\t-37.3908\t145.4768\tBoM Site 4427 Melba Highway GLENBURN\tVIC\t1309\n10001678\t-37.375\t145.28595\tNBN Co Site 2646 Whittlesea - Yea Road Flowerdale\tVIC\t483\n10009111\t-37.3555\t144.08838\tTelstra Site 3891 Midland Highway Eganstown Hepburn\tVIC\t1200\n10008624\t-37.2281\t143.2006\tBOM Site Ben Nevis via Ben Nevis Road EVERSLEY\tVIC\t377\n10000269\t-37.1924\t140.889014\tFire Tower Off Cumaum Forest Road Cumaum\tSA\t1494\n10006382\t-37.1732\t142.542144\tLakeside Tourist Park Tymna Drive HALLS GAP\tVIC\t247\n10009360\t-37.1453\t146.4468\t15 Summit Road MOUNT BULLER\tVIC\t1460\n10010949\t-37.1125\t148.8974\tBoM Site Mount Delegate Delegate Hill Track BENDOC\tVIC\t564\n10006027\t-37.097\t140.6662\tLimbert DGPS 1679 Moyhall Rd Naracoorte\tSA\t1434\n10009881\t-37.074\t149.9077\tWharf Weecoon St EDEN\tNSW\t410\n10006291\t-36.9078\t146.26305\tTelstra Site 3324 Tatong-Tolmie Road Archerton\tVIC\t1327\n10000288\t-36.8861\t149.89722\tSplash Hillcrest Site 95-97 Merimbula Drive Merimbula\tNSW\t345\n10007248\t-36.8051\t142.11983\tLower Norton 44 Push-Hannans Road Lower Norton\tVIC\t579\n10009724\t-36.7319\t149.98113\tTelstra Temporary East Cnr of Davidson and Pacific Sts Tathra\tNSW\t229\n10003143\t-36.7291\t146.1149\tTelstra Site 47 Tiger Hill Road Tatong\tVIC\t218\n10003445\t-36.7265\t149.8427\tBOM Site 41 Grandview Road Black Range\tNSW\t438\n10010401\t-36.7141\t142.1967\t24 Darlot Street HORSHAM\tVIC\t1013\n10002033\t-36.6694\t142.30356\tLongerenong optus monopole 229 Longerenong Road Longerenong\tVIC\t884\n10007418\t-36.6547\t146.6813\tTelstra Site 109 McLees Road Buffalo River Alpine\tVIC\t929\n10007350\t-36.6401\t146.20889\tTelstra Site 2081 Kilfeera Rd Upper Ryans Creek\tVIC\t1003\n10005017\t-36.6052\t146.87034\tTelstra Site 182 Havilah Road Rosewhite Alpine\tVIC\t147\n10004144\t-36.513\t142.5535\t548 Minyp - Coromby Rd MINYP\tVIC\t994\n10003600\t-36.4259\t145.240377\tCnr Dhurringile AND Pyke Rd TATURA\tVIC\t611\n10010950\t-36.4206\t146.3056\tBoM Site Wangaratta Aerodrome Brian Higgins Drive LACEBY\tVIC\t1314\n10004652\t-36.3993\t148.739244\t423 Avonside Rd Avonside\tNSW\t357\n10003953\t-36.3979\t144.978774\t5 Olympic Street GIRGARRE\tVIC\t759\n10000161\t-36.3814\t145.3981\tShepparton Police Station 155 Welsford Street SHEPPARTON\tVIC\t571\n10007790\t-36.3396\t146.0163\tSite 460 Bungeet Road BUNGEET WEST\tVIC\t1417\n10003101\t-36.3204\t142.416\tAWIB Site Warracknabeal Aerodrome WARRACKNABEAL 3393\tVIC\t1477\n10004608\t-36.2093\t140.589117\tWirrega Lot 3 Dukes Highway WIRREGA\tSA\t533\n10003110\t-36.1387\t146.8949\tAldi White Box Rise 6 Wark Street Wodonga\tVIC\t1461\n10009564\t-36.1185\t146.8797\t88 Elgin Boulevard WODONGA\tVIC\t578\n10007672\t-36.1009\t147.035083\tHume Weir Sewer Filtration Plant 14 Trout Farm Rd Lake Hume Village\tNSW\t1367\n10010756\t-36.085\t146.913\t569 Hume Street ALBURY\tNSW\t1427\n10007787\t-36.085\t150.0479\tSite 42 Princes Highway BODALLA\tNSW\t225\n10007671\t-36.0475\t146.896625\tGlenmorus Gardens 54 Glenmorus St Glenroy\tNSW\t999\n10010951\t-36.0294\t146.0306\tBoM Site Yarrawonga Aerodrome Cahills Road YARRAWONGA\tVIC\t735\n10004184\t-36.0211\t148.724023\tAdaminaby Lot 13 Old Adaminaby Adaminaby\tNSW\t1207\n10002883\t-35.9796\t146.64048\tHowlong optus site 160 Pell Street NSW 2643 Howlong\tNSW\t1115\n10002747\t-35.9745\t146.7435\tYaparra Via Chambers Road BUNGOWANNAH\tNSW\t1387\n10011020\t-35.9122\t150.080486\tNominal Planning Site Campbell St MORUYA\tNSW\t207\n10002255\t-35.8178\t149.1652\tFibre Repeater Site Monaro Highway Colinton\tNSW\t147\n10003102\t-35.7151\t142.357\tAWIB Site Hopetoun Aerodrome HOPETOUN 3396\tVIC\t262\n10005254\t-35.6542\t137.637\t14 Murray Street KINGSCOTE\tSA\t312\n10008174\t-35.625\t137.2065\tOptus Rooftop Site Stokes Bay North Coast Rd and Lightburn Road STOKES BAY\tSA\t1215\n10003097\t-35.5569\t138.6228\tBeachside Car Park Cnr Albert Pl and Esplanade VICTOR HARBOUR\tSA\t1057\n10004368\t-35.5248\t144.98275\t315 Victoria St DENILIQUIN\tNSW\t1004\n10005116\t-35.4449\t138.3139\t15 Jetty Road NORMANVILLE\tSA\t616\n10009405\t-35.4309\t149.22075\tHill 800 Reservoir Old Cooma Road GOOGONG\tNSW\t967\n10006612\t-35.4174\t149.0643\tThe Good Guys Tuggeranong Hyperdome Shopping Centre 76 Athllon Dr GREENWAY\tACT\t790\n10009406\t-35.4026\t149.20583\tHomestead Rise Reservoir Constance Road JERRABOMBERRA\tNSW\t284\n10009481\t-35.3945\t149.1651\t71 Seppard Street HUME\tACT\t1331\n10008744\t-35.3599\t149.2095\tLetchworth Neighbourhood Centre 28 Miller Street QUEANBEYAN WEST\tNSW\t513\n10002396\t-35.3378\t149.1787\t337 Canberra Ave FYSHWICK\tACT\t943\n10009831\t-35.3088\t139.5106\tMcCall Repeater site, The Bend Motorsport Park Corner Dukes Hwy and Malley Hwy TAILEM BEND\tSA\t679\n10005318\t-35.2888\t149.1434\t51 Constitution Avenue CAMPBELL\tACT\t1364\n10009512\t-35.2769\t149.1346\tCommSol CommSite 51 Cooyong Street BRADDON\tACT\t832\n10002746\t-35.2649\t141.1807\t27 Poole Street MURRAYVILLE\tVIC\t694\n10010182\t-35.2615\t149.4436\tMajara Street between King and Forster Streets BUNGENDORE\tNSW\t862\n10003179\t-35.2279\t144.39442\tRIVALEA NIEMUR optus monopole 297 Balpool Ln Niemur\tNSW\t218\n10007741\t-35.2114\t144.8175\tTelstra Site Lot 1 cnr Brodribb \u0026 Morris Sts Wanganella Conargo\tNSW\t1407\n10004489\t-35.1415\t138.4961\tZorich Colonnades 54 Beach Rd NOARLUNGA CENTRE\tSA\t274\n10000471\t-35.1221\t150.07516\tTelstra Site 6218 Nerriga Road Nerriga\tNSW\t895\n10000492\t-35.0952\t138.55264\tTelstra Site Cnr Rothschild Street and Frenshams Drive Woodcroft\tSA\t1024\n10003197\t-35.0871\t150.6145\tSt Georges Basin 50M LATTICE TOWER The Wool Road ST? GEORGES BASIN\tNSW\t571\n10006280\t-35.0825\t139.0658\tBOM Site Callington Hill Adjacent to 325 Highland Road Callington\tSA\t257\n10007930\t-35.0076\t138.7191\tOB Site, Stirling Oval Mount Barker Road STIRLING\tSA\t1284\n10010181\t-34.9956\t149.0085\tScrubby Lane MURRUMBATEMAN\tNSW\t694\n10005689\t-34.9868\t138.595636\tColonel Light Gardens Primary School Windsor Ave Colonel Light Gardens\tSA\t900\n10002612\t-34.9803\t138.572311\tTarget Castle Plaza 922 South Rd EDWARDSTOWN\tSA\t281\n10007931\t-34.9572\t138.7449\tOB Site Greenhill Road URAIDLA\tSA\t1095\n10010359\t-34.9384\t138.5229\t20 Butler Boulevard ADELAIDE AIRPORT\tSA\t137\n10005630\t-34.9372\t138.537918\tJames Scofield Drive ADELAIDE AIRPORT\tSA\t1414\n10008117\t-34.9291\t139.03413\tNBN Co Site Lot 1790 Harrogate Road Harrogate\tSA\t1023\n10003108\t-34.9279\t138.6209\tOB site Wakefield Road ADELAIDE\tSA\t418\n10008321\t-34.9256\t138.641\t315 Portrush Road Norwood\tSA\t437\n10010215\t-34.9242\t138.5957\tLuminesque 108 Currie St ADELAIDE\tSA\t1244\n10005384\t-34.9224\t150.597\tSouth Coast Correctional Centre 55 Links Road NOWRA HILL\tNSW\t267\n10007717\t-34.919\t138.614916\tO\u0027Bahn Tunnel Development East Terrace ? Hackney Road Adelaide\tSA\t642\n10003098\t-34.9153\t138.5994\tAdelaide OB Site Cnr King William St and Sir Edwin Flack Ave ADELAIDE\tSA\t1128\n10005645\t-34.9144\t138.59653\tScoreboard Northern End Of Adelaide Oval War Memorial Drive North Adelaide\tSA\t726\n10005929\t-34.9043\t138.692589\tRepeater Site 12 Blue Crescent Woodforde\tSA\t894\n10006080\t-34.8824\t150.551472\tNowra Waste Depot 108 Flatrock Rd Mundamia\tNSW\t907\n10003099\t-34.8809\t138.7011\tCampbelltown OB Site Maryvale Road ATHELSTONE\tSA\t799\n10003096\t-34.848\t138.7835\tParacombe OB Site Paracombe Road PARACOMBE\tSA\t847\n10010605\t-34.8358\t138.6067\tBCF 720 Main North Rd GEPPS CROSS\tSA\t1376\n10000511\t-34.821\t138.6018\tObela Global 3 Norman Crescent Cavan\tSA\t1076\n10008615\t-34.7662\t138.62422\tTelstra Site 155-185 Winzor Street Salisbury Downs\tSA\t320\n10004145\t-34.7615\t138.6055\tBethany Christian School 37 Countess Street PARALOWIE\tSA\t745\n10001975\t-34.7345\t135.85658\tPort Lincoln South 10 Winsor Ave Port Lincoln\tSA\t1281\n10003504\t-34.6454\t150.85457\tDTRS Site Kiama Downs Behind 29 Cliff Dr KIAMA DOWNS\tNSW\t988\n10004479\t-34.6367\t150.85344\t13 Johnson Street Kiama Downs\tNSW\t816\n10009290\t-34.6041\t135.85413\tTelstra Site Lot 97 Murray Drive North Shields\tSA\t154\n10003095\t-34.5994\t138.8873\tLyndoch OB Site Barossa Valley Way LYNDOCH\tSA\t764\n10008495\t-34.5953\t138.51449\tA0515 Two Wells Central 43 Old Port Wakefield Rd TWO WELLS\tSA\t454\n10005207\t-34.5887\t146.385733\t3 Mile Regulator Tower Research Rd near Amato Rd Leeton\tNSW\t1299\n10004303\t-34.5876\t150.8673\tShell Cove Marina SHELL COVE\tNSW\t952\n10005576\t-34.5722\t139.29423\tTelstra Exchange 2703 Stott Highway Sedan\tSA\t1341\n10010436\t-34.5596\t150.37395\tMoss Vale South 38-40 Arthur Street MOSS VALE\tNSW\t1105\n10010943\t-34.551\t150.3738\tMoss Vale Aquatic Leisure Centre 8 Kirkham Street MOSS VALE\tNSW\t458\n10007237\t-34.5458\t139.0807\t476 Eden Valley Rd ANGASTON\tSA\t325\n10005353\t-34.5416\t148.32283\tMast 1 250m SW of Junction of Burley Griffin Hwy / Wombat Harden\tNSW\t349\n10005354\t-34.541\t148.32489\tOld Substation Compound 313 Burley Griffin Hwy Harden\tNSW\t628\n10009765\t-34.4946\t150.893\t178 Shellharbour Road PORT KEMBLA\tNSW\t720\n10007806\t-34.4738\t138.9938\tALDI Nuriootpa 1 Murray St NURIOOTPA\tSA\t811\n10006666\t-34.4667\t139.10616\tMoculta Lot281 Moculta Road Moculta\tSA\t1410\n10005308\t-34.4655\t147.745226\tSpringdale 6106 Burley Griffin Way Springdale\tNSW\t806\n10001281\t-34.4469\t138.505571\tGrainflow Site Mallala-Two Wells Rd 1km South of Mallala Mallala\tSA\t699\n10005256\t-34.446\t116.033\tCnr Brockman and Dean Streets PEMBERTON\tWA\t1177\n10010120\t-34.4375\t138.586331\tcnr Coleman and Farrelly Roads PINKERTON PLAINS\tSA\t1317\n10001302\t-34.4256\t150.9026\t25-29 Harbour Street WOLLONGONG\tNSW\t219\n10006144\t-34.4254\t150.8933\tTrade Secret 200 Crown St WOLLONGONG\tNSW\t1461\n10009803\t-34.4254\t150.9034\t2-4 Parkside Avenue WOLLONGONG\tNSW\t489\n10009766\t-34.4249\t150.9027\t17 Harbour Street WOLLONGONG\tNSW\t516\n10008275\t-34.4249\t150.888219\t45 Denison Street Wollongong\tNSW\t1240\n10008396\t-34.4248\t150.894743\tDavid Jones Wollongong Central 200 Crown St Wollongong\tNSW\t801\n10005657\t-34.4243\t138.26161\tNBN Co Monopole Section 400 North Parham Road Windsor\tSA\t651\n10004793\t-34.4243\t138.26172\tPort Parham North Parham Road WINDSOR?\tSA\t1474\n10005968\t-34.4167\t149.3255\tcnr Boobalaga Road \u0026 Red Hill Rd Lost River\tNSW\t1229\n10002763\t-34.4076\t139.126036\t1 Railway Terrace Truro\tSA\t1264\n10001297\t-34.3839\t137.667154\tGrainflow Site Minlaton-Maitland Rd 2km S of Maitland Maitland\tSA\t1265\n10007778\t-34.3169\t148.302\tAlfred Oval 2 Lachlan Street YOUNG\tNSW\t1462\n10005933\t-34.3126\t148.52728\tTelstra Site 1581 Geegullalong Road Murringo Young\tNSW\t180\n10010237\t-34.2102\t142.1415\tMildura Gateway Tavern 795-807 Fifteenth Street MILDURA\tVIC\t1219\n10005851\t-34.1572\t138.74715\tTelstra Exchange Lot 241 Plan F23878 Charles Street RIVERTON\tSA\t1302\n10008322\t-34.1318\t150.82303\tNBN Co Monopole 29 Pheasants Road Wedderburn\tNSW\t194\n10000530\t-34.0858\t151.0077\t11 Veno Street HEATHCOTE\tNSW\t937\n10004156\t-34.064\t150.8177\t18-22 Broughton Street CAMPBELLTOWN\tNSW\t632\n10003396\t-34.0632\t150.4531\tNattai RT Burragorang Road Nattai\tNSW\t435\n10009556\t-34.0604\t148.8532\tFrogmore Road HOVELLS CREEK\tNSW\t1492\n10006637\t-34.059\t150.8157\tThe Good Guys Campbelltown Homebase Campbelltown 24 Blaxland Rd CAMPBELLTOWN\tNSW\t603\n10004206\t-34.049\t151.1567\t21-23 Prince Street CRONULLA\tNSW\t1248\n10002149\t-34.0483\t150.7592\tMt Annan Marketplace 11-13 Main Street MT ANNAN\tNSW\t547\n10010773\t-34.0204\t150.7639\tENZOS 1 Gregory Hills Dr GLEDSWOOD HILLS\tNSW\t475\n10006025\t-34.0149\t151.0655\t38 Railway Cres JANNALI\tNSW\t195\n10003440\t-34.0106\t150.8886\tBOM Site near Ingleburn Weir Holsworthy\tNSW\t1133\n10006281\t-33.9993\t138.9095\tBOM Site Waterloo East Schutz Road 2.9 km East of Waterloo\tSA\t1007\n10002202\t-33.965\t151.1359\t13-19 Hogben Street KOGARAH\tNSW\t187\n10007569\t-33.9527\t118.77068\tTelstra Exchange Lot 5 Gnowangerup-Jerramungup Road Needilup Jerramungup\tWA\t1277\n10000534\t-33.952\t151.2311\tSouthport Shopping Centre 232-262 Bunnerong Road HILLSDALE\tNSW\t708\n10010572\t-33.951\t150.9246\tConstruction site 400 Moorebank Avenue MOOREBANK\tNSW\t759\n10009479\t-33.9478\t151.1942\t5/1A Hale Street BOTANY\tNSW\t1488\n10001010\t-33.9436\t151.22626\tCrane 4 Cnr Banks Ave \u0026 Westfield Drive Eastgardens\tNSW\t227\n10005720\t-33.9419\t150.9998\t91 Marigold St REVESBY\tNSW\t597\n10002217\t-33.9413\t151.0004\t71 Marigold St REVESBY\tNSW\t215\n10002934\t-33.9352\t151.2186\tEastlake Golf Club Cnr Gardeners Road \u0026 Isaac Smith Street Eastlakes\tNSW\t431\n10010612\t-33.9316\t151.0555\t1347 Canterbury Road PUNCHBOWL\tNSW\t964\n10004933\t-33.9306\t138.6773\tBOM Site Mount Horrocks 4.5 km WSW of Mintaro\tSA\t328\n10006279\t-33.9292\t138.8145\tBOM Site Cooinda 695 Bowmans Road Mintaro\tSA\t1450\n10002349\t-33.9278\t151.1546\t3A Magdalene Terrace WOLLI CREEK\tNSW\t617\n10004154\t-33.924\t151.1867\t246 Coward Street MASCOT\tNSW\t1253\n10008058\t-33.9225\t151.06803\tKing Georges Rd and The Boulevarde MC Cnr King Georges Rd and The Boulevarde WILEY PARK\tNSW\t1168\n10001367\t-33.9218\t150.921182\tAldi Liverpool Plaza 165 - 191 Macquarie st LIVERPOOL\tNSW\t286\n10006735\t-33.9216\t151.1671\t634-726 Princes Highway Tempe\tNSW\t1013\n10009534\t-33.9179\t151.26035\tCoogee North -V 23 Baden Street COOGEE\tNSW\t264\n10006837\t-33.9159\t151.2166\tAustralian Golf Club Broadcast Site 53 Bannerman Cr Rosebery\tNSW\t1085\n10002413\t-33.9128\t151.1176\t211-215 Canterbury Road CANTERBURY\tNSW\t323\n10007573\t-33.9126\t115.54033\tTelstra Site Cnr of Jalbarragup \u0026 Mowen Rd Barrabup\tWA\t1065\n10003457\t-33.9122\t151.1196\tTelstra Site 208 Canterbury Road Canterbury\tNSW\t1323\n10010887\t-33.9082\t150.921\tLiverpool Fashion Spree Outlet 5 Viscount Place LIVERPOOL\tNSW\t262\n10000535\t-33.9074\t150.8677\tThe Valley Plaza 187 Wilson Road GREEN VALLEY\tNSW\t775\n10001310\t-33.9065\t151.172783\tAldi Marrickville Marrickville metro shopping centre MARRICKVILLE\tNSW\t1164\n10000718\t-33.9053\t151.1317\t630-634 New Canterbury Road HURLSTONE PARK\tNSW\t1055\n10004363\t-33.9028\t151.0664\t77-79 Roberts Road GREENACRE\tNSW\t433\n10010354\t-33.8974\t151.2559\t131 Birrell St WAVERLEY\tNSW\t142\n10003582\t-33.8969\t151.1944\tLot 9 Australian Technology Park REDFERN\tNSW\t1480\n10011006\t-33.8956\t151.22148\tTelstra Street Cell Anzac Parade Moore Park Sydney\tNSW\t1453\n10009785\t-33.8924\t150.77902\tTelstra Street Cell NE Cnr of Western \u0026 Tavistock Rds Kemps Creek\tNSW\t426\n10005051\t-33.8856\t151.199344\tCrnr O\u0027Conner St and Carlton St Chippendale\tNSW\t1036\n10005733\t-33.8845\t150.95661\tLight Pole Parkes Reserve, Prospect Road Canley Vale\tNSW\t911\n10010483\t-33.8844\t151.2042\t18 Lee Street HAYMARKET\tNSW\t177\n10003389\t-33.8817\t151.2053\t11 Rawson Place SYDNEY\tNSW\t343\n10000833\t-33.8782\t151.1774\tCrane Precinct 5 Ross Street FOREST LODGE\tNSW\t1039\n10009224\t-33.8752\t151.2042\t319 - 325 Sussex St SYDNEY\tNSW\t1296\n10003340\t-33.874\t151.0983\t10 Gladstone Street BURWOOD\tNSW\t436\n10000572\t-33.871\t151.1987\tShop 412 Harbourside Shopping Centre 231/2-10 Darling Drive DARLING HARBOUR\tNSW\t666\n10009885\t-33.8702\t151.2099\tDavid Jones Department Store 86 - 108 Castlereagh st SYDNEY\tNSW\t1362\n10004587\t-33.8684\t151.1937\t100 Harris St PYRMONT\tNSW\t972\n10001724\t-33.8656\t151.20513\tIBC 34 Clarence Street Sydney\tNSW\t1363\n10005589\t-33.8655\t151.21077\tTelstra Rooftop Site Sofitel Hotel 61- 101 Phillip Street SYDNEY\tNSW\t260\n10010806\t-33.8637\t151.1947\t26 - 32 Pirrama Rd PYRMOUNT\tNSW\t231\n10004178\t-33.8627\t151.222243\tLight Pole SC10 Macquarie\u0027s Chair 1D Mrs Macquaries Rd SYDNEY\tNSW\t876\n10001703\t-33.8618\t151.0804\t2-6 Hillcrest Street HOMEBUSH\tNSW\t1229\n10003223\t-33.8616\t151.1789\t100-104 Reynolds Street BALMAIN\tNSW\t1451\n10009495\t-33.8612\t151.0183\tAuburn Tennis Centre 181 Chisholm Rd AUBURN\tNSW\t1305\n10007983\t-33.8607\t151.0574\t38 Birnie Ave LIDCOMBE\tNSW\t574\n10008876\t-33.8596\t116.40619\tBoyup Brook 5241 Kojonup Road Boyup Brook\tWA\t1270\n10009385\t-33.8595\t151.2221\tOB Site Mrs Macquarie\u0027s Rd SYDNEY\tNSW\t501\n10002153\t-33.8556\t151.2736\tVaucluse House 69A Wentworth Rd VAUCLUSE\tNSW\t215\n10007702\t-33.8539\t150.98703\t291 Guildford Road GUILDFORD\tNSW\t678\n10010233\t-33.8484\t151.072684\tCnr Figtree Dve AND Australia Ave SYDNEY OLYMPIC PARK\tNSW\t283\n10004376\t-33.8452\t150.68505\tOrchard Hills North Littlefields Road Orchards Hills\tNSW\t1101\n10004398\t-33.8444\t151.0746\t4 Murray Rose Avenue OLYMPIC PARK\tNSW\t646\n10000517\t-33.8383\t151.206852\tNth cnr Miller Street and Pacific Highway NORTH SYDNEY\tNSW\t885\n10010452\t-33.8374\t121.8983\tKleenheat Esperance 40 Norseman Road CHADWICK\tWA\t238\n10009060\t-33.8368\t151.12591\tASHBURN HOUSE RPTR 20-34 ASHBURN PLACE GLADESVILLE\tNSW\t1233\n10010873\t-33.8309\t150.9699\t11-19 Centenary Road MERRYLANDS\tNSW\t477\n10010670\t-33.8255\t151.2002\t31 Hume St CROWN NEST\tNSW\t740\n10009647\t-33.8228\t151.1925\t3 Herbert Street ST LEONARDS\tNSW\t251\n10005798\t-33.8212\t150.787\t111-113 Quarry Road ERSKINE PARK\tNSW\t987\n10002154\t-33.8211\t151.0179\tElizabeth Farm 70 Alice Street ROSEHILL\tNSW\t186\n10008719\t-33.8177\t149.32024\tTelstra Site 67 Hobbys Yards Road Trunkey Creek Bathurst\tNSW\t838\n10005707\t-33.8173\t151.002\tMyer Westfield Parramatta 159-175 Church Street PARRAMATTA\tNSW\t355\n10003557\t-33.8046\t151.03239\tDTRS Site Rydalmere Off Calder Rd RYDALMERE\tNSW\t1130\n10009996\t-33.8019\t150.9845\tDragonfly Drive WESTMEAD\tNSW\t307\n10008381\t-33.8006\t151.04955\t20 Dorahy Street DUNDAS\tNSW\t288\n10006944\t-33.8001\t150.919\tFantastic Furniture 19 Stoddart Road Prospect\tNSW\t468\n10002820\t-33.7974\t150.941\t140 Gilba Road GIRRAWEEN\tNSW\t929\n10007501\t-33.7955\t151.04497\t7A Evans Road TELOPEA\tNSW\t1245\n10000029\t-33.7876\t150.8815\t27 Holbeche Road ARNDELL PARK\tNSW\t1382\n10010007\t-33.7871\t151.158\tHamilton Corner LINDFIELD\tNSW\t650\n10009018\t-33.7847\t151.120567\tOCSF1 Lyon Park Road Macquarie Park\tNSW\t1164\n10003616\t-33.7828\t150.9489\tDTRS Site Toongabbie Off Portico Pde TOONGABBIE\tNSW\t361\n10003240\t-33.7749\t151.0862\t3 - 7 Forest Grove EPPING\tNSW\t325\n10002036\t-33.7744\t151.1692\tcnr Lindfield Avenue and Havilah Lane LINDFIELD\tNSW\t1186\n10007754\t-33.7709\t122.0249\tLot 29 Angove Road MYRUP\tWA\t853\n10002094\t-33.7692\t151.0825\tCrane 2 20-28 Cambridge Street EPPING\tNSW\t251\n10000723\t-33.7692\t151.083\t20-28 Cambridge Street EPPING\tNSW\t1263\n10003620\t-33.7686\t150.81325\tDTRS Site St Marys Mount Druit Rd Carpark MOUNT DRUITT\tNSW\t1410\n10006629\t-33.7659\t150.6805\tThe Good Guys Penrith 88 - 90 Mulgoa Rd JAMISONTOWN\tNSW\t915\n10009680\t-33.7494\t150.8585\t50 Owen St GLENDENNING\tNSW\t681\n10005507\t-33.7418\t150.7678\t38-52 Dunheved Circuit ST MARYS\tNSW\t440\n10011044\t-33.7397\t150.7671\t17-19 Dunheved Circuit ST MARYS\tNSW\t999\n10004155\t-33.7386\t151.0685\tcnr Fisher Avenue and Trebor Road PENNANT HILLS\tNSW\t1238\n10002635\t-33.7342\t150.962933\tCnr Century Circuit \u0026 Norwest Boulevard Baulkham Hills\tNSW\t343\n10003693\t-33.7341\t150.46815\tDTRS Site Woodford 3 Rail Access Track off Railway Pde WOODFORD\tNSW\t223\n10002354\t-33.7333\t151.2196\t5 Hews Parade BELROSE\tNSW\t255\n10003686\t-33.7321\t150.60423\tDTRS Site Blaxland 2 Off Great Western Hwy WARRIMOO\tNSW\t466\n10004885\t-33.7301\t150.961807\tBuilding Site Solent Circuit Baulkham Hills\tNSW\t1065\n10009299\t-33.7278\t150.9855\tTower crane Hills Showground Station 129 Showground Road CASTLE HILL\tNSW\t336\n10010322\t-33.7275\t151.1664\t124 - 128 Killeaton Street ST IVES\tNSW\t1101\n10006615\t-33.7257\t150.9766\tThe Good Guys Castle Hill Home Hub 18 - 46 Victoria Ave CASTLE HILL\tNSW\t462\n10005089\t-33.7256\t150.883972\t7 Nirimba Dr Quakers Hill\tNSW\t1003\n10007812\t-33.7218\t150.8421\tToys R US 43 Hollinsworth Rd MARSDEN PARK\tNSW\t1111\n10005826\t-33.721\t151.1036\t40-50 Pennant Hills Road NORMANHURST\tNSW\t1301\n10001971\t-33.7192\t150.8406\tHome Hub Marsden Park 16 Hollingworth Rd MARSDEN PARK\tNSW\t515\n10000026\t-33.7187\t150.8341\tDulux Store Harris Avenue MARSDEN PARK\tNSW\t1399\n10000399\t-33.7101\t151.29573\tOptus Light Pole Intersection of Pittwater Road and Wakehurst Parkway NORTH NARRABEEN\tNSW\t574\n10010886\t-33.6909\t150.9254\tShop GR100, Rouse Hill Town Centre 10-14 Market Lane ROUSE HILL\tNSW\t1237\n10010086\t-33.6863\t151.1085\t18-22 Lords Avenue ASQUITH\tNSW\t466\n10008330\t-33.645\t115.152\tAnniebrook 231 Quindalup Road Quindalup\tWA\t1373\n10010211\t-33.644\t148.334\tDGPS Site 3331 Warraderry Way GOOLOOGONG\tNSW\t226\n10002969\t-33.6437\t150.65973\tNBN Co Site 1 Hillcrest Road Yarramundi\tNSW\t528\n10006257\t-33.6366\t120.4498\tDGPS transmitter Coujinup Road 8km NNW of JERDACUTTUP\tWA\t709\n10009557\t-33.6358\t151.3087\tTelstra Site 165-167 Hudson Parade Clareville\tNSW\t789\n10001236\t-33.614\t148.435861\tGooloogong Hotel 10-20 Main St Gooloogong\tNSW\t1415\n10003442\t-33.5931\t150.6994\tBOM Site St John Of God Hospital 177 Grose Vale Road North Richmond\tNSW\t1420\n10005654\t-33.5858\t138.32666\tNBN Co Site Section 356 Hundred of Koolunga Koolunga\tSA\t340\n10006783\t-33.5766\t121.19552\tSouth Cascade Lot 1091 Beltana Rd Cascade\tWA\t548\n10007823\t-33.5672\t148.6651\tSite Belmore Street CANOWINDRA\tNSW\t1420\n10004042\t-33.5431\t151.011128\tForest Glen 3291 Old Northern Road Forest Glen\tNSW\t1047\n10009061\t-33.5292\t151.20141\t99 Pacific Highway Mooney Mooney\tNSW\t816\n10003819\t-33.5192\t150.27342\tDTRS Site Bell 2 Rail Access Track off Bells Line of Rd BELL\tNSW\t1264\n10003439\t-33.4972\t150.8769\tBOM Site 952 Sackville Ferry Road Sackville North\tNSW\t672\n10003646\t-33.4936\t151.25574\tDTRS Site Wondabyne Station Rail Corridor WONDABYNE\tNSW\t1029\n10003647\t-33.4848\t151.267886\tDTRS Site Woy Woy Tunnel Location 1 Rail Corridor WONDABYNE\tNSW\t379\n10004013\t-33.4837\t150.24538\tDTRS Site Newnes 3 Rail Access Track DARGAN\tNSW\t1478\n10003991\t-33.4757\t150.202901\tDTRS Site Zig Zag Tunnel 10 Location 1 Zig Zag Tunnel 10 Country End Portal CLARENCE\tNSW\t434\n10003993\t-33.4698\t150.19865\tDTRS Site Zig Zag Halt Fixed Station Location 2 Rail Access Track near Zig Zag Station CLARENCE\tNSW\t1283\n10008062\t-33.4475\t149.5564\tBathurst Race Track Mt Panorama Race Circuit Mt Panorama\tNSW\t1289\n10010932\t-33.4427\t151.4405\t156-160 Terrigal Drive TERRIGAL\tNSW\t342\n10006618\t-33.4351\t151.3922\tThe Good Guys Erina Erina Fair 620 - 658 Terrigal Dr ERINA\tNSW\t796\n10002577\t-33.4283\t151.3208\tAnaconda West Gosford 28 Central Coast Highway WEST GOSFORD\tNSW\t988\n10001892\t-33.4276\t151.3278\t10 Central Coast Highway WEST GOSFORD\tNSW\t455\n10010394\t-33.4261\t151.3344\t14-16 Batley Street WEST GOSFORD\tNSW\t682\n10009464\t-33.3914\t115.76002\tDardanup Recreation Road Paradise\tWA\t657\n10009480\t-33.3234\t151.4143\t3/3 Corella Close BERKELEY VALE\tNSW\t1049\n10005431\t-33.2999\t115.74331\tTelstra Site 382 Clifton Road Waterloo\tWA\t916\n10007540\t-33.266\t121.388656\tComms Site Grass Patch Road GRASS PATCH\tWA\t491\n10001489\t-33.2535\t115.8388\tBurnswick Bakery South West Hway Burnswick\tWA\t765\n10006066\t-33.1867\t148.6967\tManildra Mills Opposite 95 Kiewa Street Manildra\tNSW\t825\n10004223\t-33.1822\t138.0095\tJohn Pirie Secondary School 40 Mary Elie Street Port Pirie\tSA\t484\n10000578\t-33.1815\t151.44925\tNBN Co Site 155 Wyee Farms Road WYEE\tNSW\t601\n10004620\t-33.1805\t138.009479\tTarget Florence St PORT PIRIE\tSA\t1129\n10000582\t-33.1725\t151.37582\tNBN Co Site Buangi Road Fire Trail Durren Durren\tNSW\t1104\n10008349\t-33.1466\t149.3541\t3567 Freemantle Rd GOWAN\tNSW\t496\n10001621\t-33.1092\t151.48009\tOpposite 21 Ourimbah Street Morisset Lake\tNSW\t553\n10000625\t-33.097\t119.0087\tOff Lake Grace-Newdegate Road NEWDEGATE\tWA\t1283\n10006662\t-33.0922\t151.46817\tTelstra Site 242-246 Freemans Dr COORANBONG\tNSW\t1259\n10010056\t-33.0464\t151.6698\tBelmont WWTP Ocean Park Road BELMONT SOUTH\tNSW\t536\n10005846\t-32.9677\t138.0396\tBaroota Substation Cnr Bridle Track Road \u0026 Garden Road Baroota\tSA\t469\n10000647\t-32.9639\t151.6945\tShop MM3 Level 2 Charlestown Square 30 Pearson Street CHARLESTOWN\tNSW\t584\n10006825\t-32.9419\t151.710029\tKotara Shopping Centre Lexington Parade Kotara\tNSW\t850\n10000291\t-32.926\t151.76453\tCustoms House 28 Honeysuckle Drive NEWCASTLE\tNSW\t1016\n10008516\t-32.9004\t151.70462\tOptus Site S8615 40 Compton Street NORTH LAMBTON\tNSW\t542\n10010028\t-32.8238\t151.7386\t118 Enterprise Dr TOMAGO\tNSW\t130\n10005252\t-32.8052\t117.2067\t\u0027Williams\u0027 Farm Block 3576 Parsons Road CUBBALLING\tWA\t410\n10007225\t-32.7938\t119.5133\tTelstra Site 53 Pitt Street Varley Lake Grace\tWA\t1292\n10006939\t-32.7828\t116.380394\tHotham Farm Comms Site off Siding Road 1.9 km S of Gold Mine Road Intersection Marradong\tWA\t963\n10000652\t-32.7702\t151.94145\tNBN Co 365 Lemon Tree Passage Road Salt Ash\tNSW\t514\n10008309\t-32.7172\t151.5033\t175 Racecourse Rd RUTHERFORD\tNSW\t442\n10010993\t-32.6817\t151.12608\tTelstra Site Lot 43 Plan 755264 Broke Rd Mt Thorley\tNSW\t1480\n10002678\t-32.6558\t151.9596\t5 William Street KARUAH\tNSW\t316\n10008251\t-32.634\t115.64\tTelstra Exchange 13 Dawesville Road Dawesville Mandurah\tWA\t264\n10008253\t-32.5968\t115.6501\tTelstra Site 3 Duke Street Wannanup Mandurah\tWA\t1158\n10009302\t-32.5789\t134.70685\tTelstra Site Lot 106 Plan 650600 Eyre Highway Cungena\tSA\t999\n10001936\t-32.5755\t151.0788\tWarkworth Depot 186 Long Point Rd West WARKWORTH\tNSW\t838\n10003448\t-32.5553\t151.379\tBOM Site Via Cranky Corner Road North Glendonbrook\tNSW\t1349\n10003149\t-32.5372\t115.7374\t303 Pinjarra Road MANDURAH\tWA\t356\n10000382\t-32.5344\t115.7187\t3 Mandurah Terrace Mandurah\tWA\t927\n10010982\t-32.4981\t149.85\t888 Kains Flat Road KAINS FLAT\tNSW\t647\n10004594\t-32.4726\t151.95924\tTelstra Exchange 1 Plan 90013 The Bucketts Way BOORAL\tNSW\t1006\n10003583\t-32.4717\t115.7611\tALDI Lakelands Crn Mandurah Rd and Banksiadale Gate LAKELANDS\tWA\t1426\n10003446\t-32.471\t150.1059\tBOM Site Glenview Lot 96 Upper Bylong Road Upper Bylong\tNSW\t482\n10003585\t-32.4086\t115.7594\tALDI Town Secret Harbour 420 Secret Harbour Blvd TOWN SECRET HARBOUR\tWA\t485\n10009571\t-32.3499\t148.60677\tMonopole Cumboogle View 11R Benolong Road DUBBO\tNSW\t1362\n10008159\t-32.3198\t149.02631\tGollan SCAX Forestvale Rd Gollan\tNSW\t227\n10005635\t-32.2841\t149.771139\tMoolarben Coal Mine 4250 Ulan Road (3km E of) ULAN\tNSW\t728\n10003221\t-32.2503\t150.8943\t20 Hunter Street MUSWELLBROOK\tNSW\t1045\n10005479\t-32.2285\t115.7742\tTronox Pigment Plant Mason Road KWINANA\tWA\t773\n10009687\t-32.189\t115.666\tGarden Island RASS Site Garden Island\tWA\t845\n10002234\t-32.125\t133.7\tBristow Hangar Ceduna Airport CEDUNA SA 5690\tSA\t709\n10006149\t-32.1173\t115.76285\tCoogee Beach SLSWA Clubhouse 20 Poore Grove Coogee\tWA\t160\n10005615\t-32.067\t148.66035\tTelstra Exchange 138L Mogriguy Road MOGRIGUY\tNSW\t117\n10009709\t-32.0576\t115.865692\tTelstra Site 77 Wheatley Drive Bull Creek Melville\tWA\t833\n10000585\t-32.0573\t115.879736\tSouthlands Boulevarde Shopping Centre 45 Burrendah Boulevard Willetton\tWA\t1220\n10000995\t-32.0538\t115.74048\tN Cnr Shed A WA Maritime Museum Victoria Quay Victoria Quay Road FREMANTLE\tWA\t559\n10006234\t-32.0525\t115.791803\tFremantle Depot Stock Road O\u0027Connor\tWA\t833\n10006761\t-32.0449\t115.8669\t34 Bull Creek Rd ROSSMOYNE\tWA\t1266\n10009349\t-32.0425\t115.738883\tTyne ACFS Lot R114 Port Beach Road NORTH FREMANTLE\tWA\t1438\n10005710\t-32.0331\t115.8363\tMyer Garden City Shopping Centre 125 Risely Street BOORAGOON\tWA\t1243\n10005647\t-32.0301\t118.0947\tTelstra Exchange 112 Main Street ARDATH\tWA\t238\n10010920\t-32.0113\t115.8644\tTelstra Site 3 Plan D86115 Ley St Manning\tWA\t174\n10007979\t-32.0095\t117.40081\tTelstra Exchange 45 McLennan Street Quairading\tWA\t530\n10006723\t-32.0054\t117.37562\tQuairading Lot 2 Weir Road QUAIRADING\tWA\t445\n10002224\t-31.9973\t147.76258\tNSW Telco Authority Site Bogan-Cathundral Road, Cathundral, 21 W of Trangie\tNSW\t495\n10009478\t-31.9901\t115.9206\t272 Rutland Avenue WELSHPOOL\tWA\t587\n10002731\t-31.9834\t118.234941\tSchilling Property 1442 Bruce Rock Narembeen Road BRUCE ROCK\tWA\t1160\n10003152\t-31.9591\t115.89387\tTelstra IBC Crown Towers Hotel 61 Boulton Ave Burswood\tWA\t1066\n10000873\t-31.9543\t115.848113\tConstructionCrane 39 Mount Street PERTH\tWA\t781\n10007560\t-31.9539\t115.859\tNike Perth City 670 Hay Street Mall PERTH\tWA\t134\n10008252\t-31.9178\t116.0781\tTelstra Site 1 Montrose Avenue Darlington Mundaring\tWA\t684\n10005732\t-31.9048\t115.9492\tTelstra Exchange 1 Wilson Street BASSENDEAN\tWA\t842\n10010902\t-31.9025\t115.931361\t10 Hanwell Way BASSENDEAN\tWA\t909\n10006605\t-31.8968\t116.0118\tThe Good Guys Midland Midland Central 541 Clayton St MIDLAND\tWA\t188\n10008538\t-31.896\t115.7561\tScarborough Beach Pool 309 West Coast Highway SCARBOROUGH\tWA\t370\n10004421\t-31.8874\t116.00226\tMidland Courthouse 26 Spring Park Road Midland\tWA\t657\n10008523\t-31.8771\t152.17082\tNBN Co 40m monopole 1577 Nowendoc Road Mount George\tNSW\t442\n10005711\t-31.8767\t115.7776\tMyer Karrinyup Shopping Centre Karrinyup Road KARRINYUP\tWA\t773\n10000485\t-31.8361\t115.8396\tTelstra Exchange 111 Girrawheen Avenue Girrawheen\tWA\t431\n10009945\t-31.8308\t115.821967\tItalian Aged Care 1 Marangaroo Drive MARANGAROO\tWA\t230\n10003449\t-31.8293\t150.3479\tBOM Site Mount Palmer\tNSW\t173\n10002520\t-31.806\t115.888\tIntelsat Antenna 620 Gnangara Road LANDSDALE\tWA\t1157\n10000627\t-31.777\t117.9529\tBOM Station Approximately 1.2km South of Fire Road SOUTH DOODLAKINE\tWA\t481\n10002559\t-31.7624\t115.7728\tAnaconda Edgewater 6 The Gateway EDGEWATER\tWA\t1456\n10001676\t-31.7435\t115.76564\tIBC 420 Joondalup Drive Joondalup\tWA\t152\n10008989\t-31.7367\t115.795998\tTelstra Site Info Centre 1140 Wanneroo Rd Ashby\tWA\t239\n10003451\t-31.664\t152.3705\tBOM Site 320 The Den Road Mooral Creek\tNSW\t184\n10010825\t-31.6627\t116.314771\tTelstra Site 80 McGellin Way Morangup\tWA\t555\n10002636\t-31.6542\t115.958028\t1635 Neaves Road BULLSBROOK\tWA\t839\n10001665\t-31.6432\t116.84944\tLeeming Road Meenar\tWA\t1271\n10002677\t-31.622\t152.6956\t12 Claywood Place KENDALL\tNSW\t441\n10003453\t-31.5949\t151.8274\tBOM Site Hawkins Road Cooplacurripa\tNSW\t1324\n10002420\t-31.5822\t152.73277\t5494 Pacific Highway HERONS CREEK\tNSW\t802\n10009736\t-31.5273\t138.6059\tOptus Rootop Site Wilpena Pound Vistor Centre Flinders Rangers Way FLINDERS RANGES\tSA\t258\n10009788\t-31.4948\t118.27783\tMerriden DC Opposite 57 French Ave Merriden\tWA\t570\n10005519\t-31.4751\t116.09155\tTelstra Site 9 Martin Road Chittering\tWA\t549\n10004362\t-31.4641\t152.82137\tPort Macquarie Interchange 1065 Oxley Highway THRUMSTER\tNSW\t1036\n10003452\t-31.4621\t152.3245\tBOM Site Yarras Mountain\tNSW\t360\n10002585\t-31.4497\t152.8832\tAnaconda Port Macquarie 180 Lake Road PORT MACQUARIE\tNSW\t1444\n10006311\t-31.4457\t116.4271\tCoondle BS Bindi Bindi - Toodyay Rd Coondle\tWA\t1073\n10003450\t-31.445\t152.477\tBOM Site Via Oxley Highway Long Flat\tNSW\t908\n10010249\t-31.2746\t149.0672\tSiding Springs OB Site Observatory Road COONABARABRAN\tNSW\t296\n10005026\t-31.2548\t118.170117\tTelstra Site Merredin-Nungarin Road Elabbin Elabbin\tWA\t618\n10007494\t-31.1337\t138.3949\tOptus Rooftop Site Parachilna West Terrace PARACHILNA\tSA\t1127\n10009791\t-31.1244\t117.97555\tKwelkin Waters Lot 25627 Plan 150101 South Kununoppin\tWA\t980\n10002536\t-31.0943\t150.912358\tCnr Bridge and Out St TAMWORTH\tNSW\t1463\n10008460\t-31.0798\t150.94153\tTamworth East Piper Street 184 Piper St EAST TAMWORTH\tNSW\t924\n10005614\t-31.0352\t152.87461\tTelstra Exchange 37 Edgar Street FREDERICKTON\tNSW\t707\n10002071\t-31.0218\t152.94127\tRawson Street SMITHTOWN\tNSW\t627\n10006790\t-30.9473\t151.144\tMt Moonbi Bullimbulla Rd Bendemeer\tNSW\t235\n10008149\t-30.8396\t116.386\tTelstra Site 29 Denton St Piawaning\tWA\t865\n10009079\t-30.7253\t115.585277\tTelstra Site 4km East of Cataby, off Cataby Rd Dandaragan\tWA\t945\n10002223\t-30.6338\t148.06627\t925 Toora Road Conimbia\tNSW\t144\n10005332\t-30.5552\t150.1145\tTrailer Maules Creek Mine Site 6.5 km South of MAULES CREEK\tNSW\t1328\n10003443\t-30.4025\t152.7289\tBOM Site 291 Mountain Top Road Dorrigo Mountain\tNSW\t395\n10007235\t-30.3963\t115.3124\tDGPS Badgingarra Wind Farm Seville Street Badgingarra\tWA\t581\n10010362\t-30.3691\t152.18167\tDoughbouy Mountain 1763 Wongwibinda Road WONGWIBINDA\tNSW\t1247\n10005800\t-30.3441\t149.7133\t501 Yarrie Lake Rd Narrabri\tNSW\t1076\n10000437\t-30.3091\t153.1008\t2 - 10 Hurley Dr COFF HARBOUR\tNSW\t232\n10001686\t-30.3009\t153.124972\t2AIR-FM Glenreagh Street Studios 24 Glenreagh St Coffs Harbour\tNSW\t1000\n10010846\t-30.2912\t115.476\tBoothendara (Nexgen) Brand Hwy Boothendara\tWA\t1429\n10003455\t-29.9594\t151.605\tBOM Site Beulah 709 Maybole Road Ben Lomond\tNSW\t1185\n10003444\t-29.9125\t153.1275\tBOM Site Browns Knob Barcoongere\tNSW\t442\n10006246\t-29.8125\t151.5514\t154 Jenkins Roads MATHESON\tNSW\t188\n10003454\t-29.7853\t151.1606\tBOM Site Lot 7021 Fisher Road Inverell\tNSW\t116\n10003956\t-29.6675\t153.115555\tCandole St TUCABIA\tNSW\t1149\n10006973\t-29.6673\t153.11448\tTelstra Site 29 Aradin Street Tucabia Clarence Valley\tNSW\t316\n10005428\t-29.6577\t151.44307\tLot 1 on Deposited Plan 838627, Western Feeder Rd Kings Plains\tNSW\t483\n10006323\t-29.6487\t138.0629\tOptus Rooftop Site Marree Marree Community Hall High Street MARREE\tSA\t817\n10008250\t-29.5887\t141.809117\tGood Friday Mine Site Office 30 km SW of Tibooburra\tNSW\t1260\n10010386\t-29.5361\t115.7649\t132 Railway Rd Three Springs\tWA\t1084\n10008207\t-29.4029\t130.7388\tOptus Rooftop Site Oak Valley Community Kali Street OAK VALLEY\tSA\t545\n10008201\t-29.3397\t127.0969\tOptus Rooftop Site Tjuntuntjara CRC Tjuntuntjara GREAT VICTORIA DESERT\tWA\t128\n10009447\t-29.2825\t114.919503\tACORN RADAR Surf Life Saving White Tops Drive Dongara\tWA\t424\n10007760\t-29.2129\t151.3131\tRocky Creek Rd Rocky Creek\tNSW\t440\n10000583\t-29.0535\t151.982356\tTanterfield Kildare Rd Tanterfield\tNSW\t256\n10008171\t-29.0318\t167.947313\tGlonet PMTS site 3B Taylors Road NORFOLK ISLAND\tEXT\t341\n10006492\t-28.9807\t142.037\tEast Comms Site Naryilco Station\tQLD\t880\n10009849\t-28.8875\t152.55932\tTabulam SCAX 5650 Bruxner Hwy Tabulam\tNSW\t872\n10006491\t-28.7889\t141.789\tMiddle Comms Site Naryilco Station\tQLD\t1478\n10007828\t-28.785\t115.8446\tSite 739 Pallotine Road TARDUN\tWA\t347\n10010064\t-28.7768\t114.6269\tALDI Wonthella 81 - 85 North West Coastal Hwy WONTHELLA\tWA\t888\n10007756\t-28.7767\t114.6031\tPort Authority Building 298 Marine Terrace Geraldton\tWA\t1256\n10007757\t-28.7568\t114.5656\tWaverider Buoy Channel Entrance 5 km NW of Geraldton\tWA\t1120\n10007755\t-28.7207\t114.5902\tWaverider Buoy Northern Channel 6.4 km N of Geraldton\tWA\t1039\n10008790\t-28.6472\t153.6122\t108-110 Jonson Street BYRON BAY\tNSW\t404\n10006490\t-28.5594\t141.914\tNaryilco Homestead Comms Site Naryilco Station\tQLD\t693\n10008676\t-28.4798\t122.802811\tYGP2 Great Central Road (42km ENE of) LAVERTON\tWA\t1253\n10006493\t-28.4297\t142.102\tDingera Comms Site Naryilco Station\tQLD\t349\n10002741\t-28.4196\t151.0759\t70 Regent Street INGLEWOOD\tQLD\t696\n10006812\t-28.399\t152.3768\tKoreela 988 Acacia Plateau Road Legume\tNSW\t533\n10000821\t-28.3271\t153.4126\t148 Tweed Valley Way SOUTH MURWILLUMBAH\tNSW\t1459\n10002748\t-28.3179\t152.7511\t12318 Mt Lindsay Highway PALEN CREEK\tQLD\t814\n10006494\t-28.3178\t141.709\t7 Mile Comms Site Naryilco Station\tQLD\t220\n10009300\t-28.2623\t152.0365\tMorgan Park Raceway off Old Stanthorpe Road MORGAN PARK\tQLD\t1234\n10002341\t-28.259\t153.3496\tOutside Broadcast Site Dungay Creek Road DUNGAY\tNSW\t1235\n10006488\t-28.235\t141.362\tSantos Comms Site Naryilco Station\tQLD\t446\n10005483\t-28.1825\t123.9436\tNexusSite4 Great Central Road Laverton East\tWA\t1414\n10006517\t-28.1542\t140.82\tBore Track South 1 Comms Site Innamincka Station\tSA\t843\n10009341\t-28.1157\t148.72619\tTelstra Site 320 Bundoran Rd St George\tQLD\t584\n10002732\t-28.1024\t153.43492\tWest Burleigh Lot 174 on SP156739 near 56 Kortum Drive BURLEIGH HEADS\tQLD\t936\n10006335\t-28.0193\t138.6639\tOptus Rooftop Site Mungerannie Pub Mangerannie Hotel Birdsville Track MUNGERANNIE\tSA\t475\n10000360\t-28.0178\t153.4299\tCrowne Plaza Surfers Paradise 2807 Gold Coast Highway SURFERS PARADISE\tQLD\t1470\n10008020\t-28.0044\t153.3745\tOB Site Royal Pines Resort BENOWA\tQLD\t313\n10002469\t-28.0016\t153.4289\t27-29 Cavill Avenue SURFERS PARADISE\tQLD\t807\n10008681\t-27.9968\t153.4271\t18 Cypress Ave Surfers Paradise\tQLD\t1471\n10002008\t-27.9913\t153.429353\tPhilcomm Site 3440 Surfers Paradise Blvd SURFERS PARADISE\tQLD\t347\n10010092\t-27.9857\t153.382696\tAshmore Tavern 161 Cotlew Street ASHMORE\tQLD\t255\n10004268\t-27.971\t144.63569\tSES Depot Harlequin Dr YOWAH\tQLD\t1007\n10004935\t-27.9639\t153.416\tGold Coast Aquatic Centre Marine Parade Gold Coast\tQLD\t1040\n10003383\t-27.9618\t153.3841\t32 davenport st SOUTHPORT\tNSW\t735\n10006518\t-27.9592\t140.852\tBore Track North Comms Site Innamincka Station\tSA\t305\n10008375\t-27.941\t122.367356\tToohey\u0027s Pit approx 12km N of Bandya\tWA\t137\n10004263\t-27.9206\t153.3396\t2 Town Centre Drive Helensvale\tQLD\t385\n10006489\t-27.8856\t141.881\tRiver Comms Site Naryilco Station\tQLD\t101\n10004929\t-27.8659\t153.319453\tCoomera Indoor Sports Centre 35 Beattie Road Coomera\tQLD\t169\n10000159\t-27.8396\t153.11489\tNBN Co 59-67 Pine Forest Way Tamborine\tQLD\t573\n10000299\t-27.8076\t153.09282\tNBNCo 775 Camp Cable Road Logan Village\tQLD\t117\n10006503\t-27.7954\t136.432\tManarrinna 2 Comms Site Macumba Station\tSA\t649\n10000099\t-27.7917\t152.72621\tNBN Co Site 115 - 117 Mollenhauers Road Peak Crossing\tQLD\t1274\n10000684\t-27.7825\t145.7594\tBA Nardoo COONGOOLA LANE Coongoola\tQLD\t1469\n10003222\t-27.7475\t153.2315\t79 Elderslie Road YATALA\tQLD\t764\n10006996\t-27.7468\t140.7378\tOptus Rooftop Site Innamincka Hotal Lot 1 South Terrace INNAMINCKA\tSA\t271\n10000242\t-27.7432\t152.70847\tNBN Co Site 55 Bill Morrow Road Peak Crossing\tQLD\t914\n10006512\t-27.7242\t140.763\tInnamincka Homestead Comms Site Innamincka Station\tSA\t293\n10006511\t-27.7146\t140.771\tKellys Comms Site Innamincka Station\tSA\t587\n10008973\t-27.6861\t153.06174\tTelstra Rooftop Site 24 Melastoma Place Heritage Park Logan\tQLD\t136\n10004275\t-27.6651\t152.89058\tBrookwater 118 Augusta Parkway AUGUSTINE HEIGHTS\tQLD\t403\n10004054\t-27.6621\t153.1106\t68 -70 Laughlin Street KINGSTON\tQLD\t1110\n10006431\t-27.656\t153.1681\tThe Good Guys Loganholme Logan Hyperdome Home Centre 3890 Pacific Highway LOGANHOLME\tQLD\t495\n10003111\t-27.645\t152.87\tAldi Redbank Plains Cnr Argyle \u0026 Redbank Plains Road Redbank Plains\tQLD\t931\n10002563\t-27.6364\t153.1352\tAnaconda Slacks Creek 3525 Pacific Highway SLACKS CREEK\tQLD\t1447\n10003267\t-27.6303\t152.2338\t996 Tenthill Creek Rd GATTON\tQLD\t143\n10009757\t-27.6282\t152.3935\tTelstra Site 2 Cribb Street Laidley Lockyer Valley\tQLD\t1112\n10000725\t-27.6106\t152.893561\t18 Kristine Ave Goodna\tQLD\t1165\n10004123\t-27.6091\t153.1236\t2 Pannikin Street ROCHEDALE SOUTH\tQLD\t163\n10007857\t-27.5998\t152.1345\tSubstation Flagstone Creek Rd CARPENDALE\tQLD\t1366\n10002592\t-27.5972\t151.9494\tAnaconda Toowoomba South 910 Ruthven Street TOOWOOMBA SOUTH\tQLD\t565\n10009220\t-27.5877\t152.87963\tOptus Redbank RPTR 112 Monash Road REDBANK\tQLD\t253\n10006504\t-27.5658\t136.554\tManarrinna Comms Site Macumba Station\tSA\t1301\n10003411\t-27.5656\t114.41439\tKalbarri Loop Von Bibra Road Kalbarri\tWA\t307\n10000761\t-27.5634\t153.071641\tTrade Secret Macgregor Kessels Court 567 Kessels Road MACGREGOR\tQLD\t103\n10010883\t-27.5631\t153.0819\tShop 1058, Westfield Garden City cnr Logan and Kessel Streets UPPER MT GRAVATT\tQLD\t173\n10009576\t-27.5578\t153.0837\t76 Mount Gravatt-Capalaba Road UPPER MOUNT GRAVATT\tQLD\t364\n10006451\t-27.5475\t151.940833\t26 Gladstone St TOOWOOMBA\tQLD\t263\n10008768\t-27.5259\t153.0089\tOB Site Queensland Tennis Centre 190 King Arthur Terrace TENNYSON\tQLD\t827\n10006509\t-27.5202\t140.692\tPacksaddle Comms Site Innamincka Station\tSA\t1474\n10003417\t-27.5165\t152.4604\tLockrose 40m monopole LOT 16 Cricket Road BRIGHTVIEW\tQLD\t853\n10009025\t-27.5142\t152.58148\tNBN Co site 281 Lehmanns Road Coorana\tQLD\t834\n10006982\t-27.5019\t153.0062\tIGA St Lucia 242 Hawken Dr ST LUCIA\tQLD\t1483\n10005324\t-27.5009\t153.0367\t264 Ipswich Road WOOLLOONGABBA\tQLD\t754\n10002845\t-27.4985\t152.973\tShop 2090 Indooroopilly Shopping Centre 318 - 322 Moggill Road INDOOROOPILLY\tQLD\t1377\n10007742\t-27.4946\t153.0585\t280A Old Cleveland Rd COORPAROO\tQLD\t237\n10006546\t-27.4944\t141.812\tGoonabrinna Comms Site Durham Downs Station\tQLD\t624\n10001710\t-27.4811\t153.0363\t706 Main Street KANGAROO POINT\tQLD\t139\n10006893\t-27.4779\t153.0413\t232 Wellington Rd EAST BRISBANE\tQLD\t188\n10001709\t-27.4765\t153.0079\t215 Montague Road WEST END\tQLD\t1026\n10008808\t-27.4752\t153.0258\tBasement IBC 1 William St Brisbane City\tQLD\t118\n10009841\t-27.4742\t153.0258\tQueen Wharf Project Queens Wharf Rd BRISBANE CITY\tQLD\t118\n10009482\t-27.4735\t153.0136\tTower Crane 3 1 Cordelia Street SOUTH BRISBANE\tQLD\t161\n10009489\t-27.4735\t153.0376\t67 Cairns Street KANGAROO POINT\tQLD\t897\n10005558\t-27.4717\t153.0247\t171 George St Brisbane\tQLD\t1354\n10005708\t-27.4709\t153.0246\tMyer Centre 91 Queen Street BRISBANE\tQLD\t1045\n10003568\t-27.4708\t153.035\t2 Scott Street KANGAROO POINT\tQLD\t999\n10008077\t-27.4648\t153.0127\t2 Caxton St PETRIE TERRACE\tQLD\t1012\n10010415\t-27.4577\t153.0347\t312 Brunswick Street FORTITUDE VALLEY\tQLD\t512\n10010238\t-27.4573\t153.0252\t285 Gregory Terrace SPRING HILL\tQLD\t1287\n10009432\t-27.4541\t153.0403\t7 Chester Street NEWSTEAD\tQLD\t1272\n10010997\t-27.4535\t153.01513\tTelstra Site SW cnr of Blamey and Ramsgate St Kelvin Grove\tQLD\t157\n10000695\t-27.4517\t153.0415\t14/24 Stratton Street Newstead\tQLD\t1220\n10008223\t-27.4516\t153.0451\t21 Longland St NEWSTEAD\tQLD\t1327\n10008581\t-27.4512\t153.0329\tDairy Hall and Sugar Building Gregory Terrace BOWEN HILLS\tQLD\t136\n10009858\t-27.4492\t153.0266\tSurgical Building Herston Quarter 300 Herston Rd HERSTON\tQLD\t920\n10001603\t-27.4465\t153.045\tDonaldson Tower 36 Evelyn Street NEWSTEAD\tQLD\t516\n10005076\t-27.4392\t152.98963\tAshgrove North 115 Stewart Road ASHGROVE\tQLD\t965\n10003569\t-27.4377\t153.0079\tTower crane cnr Edmondstone Street and Enoggera Road NEWMARKET\tQLD\t408\n10005327\t-27.4306\t153.1055\t1275 Kingsford Smith MEEANDAH\tQLD\t503\n10003572\t-27.428\t153.1496\t67-77 Trade Street LYTTON\tQLD\t1250\n10009080\t-27.427\t153.1523\t120 Trade St LYTTON\tQLD\t1341\n10006507\t-27.4255\t136.068\tDuck Hole Comms Site Macumba Station\tSA\t1203\n10008175\t-27.424\t153.082809\t41 Tradecoast Drive Eagle Farm\tQLD\t858\n10007995\t-27.4197\t153.0983\tcnr Lomandra Drive and Logistics Road BRISBANE AIRPORT\tQLD\t152\n10006508\t-27.4125\t140.121\tTirrawarra Comms Site Innamincka Station\tSA\t841\n10005885\t-27.4108\t151.03629\tQGC Harry 216 Well Off Halliford Road Ducklo\tQLD\t1133\n10006510\t-27.3841\t140.983\tMerninie Comms Site Innamincka Station\tSA\t413\n10002855\t-27.375\t153.125\tToll Aviation Hangar 8 Acacia St BRISBANE AIRPORT 4009\tQLD\t796\n10009010\t-27.3477\t152.90335\tNBN Monopole 40 Albert Road Draper\tQLD\t1185\n10000522\t-27.2872\t152.986983\t15 Walter Crescent LAWNTON\tQLD\t635\n10005862\t-27.276\t151.4159\tDGPS Site Auchmah Rd BOWENVILLE\tQLD\t1077\n10006505\t-27.2529\t135.65\tMacumba Homestead Comms Site Macumba Station\tSA\t1163\n10007861\t-27.2419\t153.021\t4 N Lakes Dr NORTH LAKES\tQLD\t684\n10007813\t-27.2396\t153.0116\tToys R US Cnr North lake Dr and Prospect St NORTH LAKES\tQLD\t142\n10007858\t-27.2374\t152.4987\tSubstation Paddy Gully Rd ESK\tQLD\t1405\n10010399\t-27.2133\t153.0855\tLot 888 Spinnaker Boulevard NEWPORT\tQLD\t845\n10006544\t-27.2044\t142.372\tNo Mans Comms Site Durham Downs Station\tQLD\t746\n10006513\t-27.1908\t140.057\tCoongie SW Comms Site Innamincka Station\tSA\t1088\n10006548\t-27.1859\t141.734\tBlacks Comms Site Durham Downs Station\tQLD\t787\n10005886\t-27.1534\t150.88731\tQGC David 210 Well Grahams Road, 18 km SE of Kogan\tQLD\t339\n10002372\t-27.129\t152.79686\tNBN Co Site 2562 Mt Mee Road Ocean View\tQLD\t1418\n10006514\t-27.1199\t140.405\tCoongie SE Comms Site Innamincka Station\tSA\t371\n10007305\t-27.1111\t150.29955\tNBN Co Site 78 Tolmah Court Tara\tQLD\t269\n10006506\t-27.0896\t135.695\tHorseshoe Bore Comms Site Macumba Station\tSA\t573\n10006501\t-27.075\t136.474\tUlowarrina Comms Site Macumba Station\tSA\t1374\n10005842\t-26.9135\t152.92068\tNBNCo Site 2001 Old Gympie Road GLASS HOUSE MOUNTAINS\tQLD\t1224\n10006545\t-26.9071\t141.642\tMidway Comms Site Durham Downs Station\tQLD\t157\n10006515\t-26.874\t140.061\tCoongie NW Comms Site Innamincka Station\tSA\t540\n10006516\t-26.8338\t140.499\tCoongie NE Comms Site Innamincka Station\tSA\t1471\n10006502\t-26.7395\t136.08\tOolgana Comms Site Macumba Station\tSA\t1026\n10010884\t-26.7039\t153.1319\tShop 511, Kawana Shoppingworld 119 Point Cartwright Drive BUDDINA\tQLD\t1301\n10006244\t-26.6923\t151.7736\t13 Mustons Rd HALY CREEK\tQLD\t318\n10001516\t-26.6585\t153.095238\tAldi Maroochydore 102 Aerodrome Road MAROOCHYDORE\tQLD\t923\n10005709\t-26.6545\t153.0867\tMyer Sunshine Plaza Amaroo Street MAROOCHYDORE\tQLD\t114\n10010264\t-26.6529\t153.0936\t10-12 Duporth Avenue MAROOCHYDORE\tQLD\t1122\n10005253\t-26.6379\t149.9161\tUlimaroa Silos Warrego Highway DRILLHAM\tQLD\t117\n10005701\t-26.6371\t149.7567\tNBN Co Site Lot 3 Harrisons Road DULACCA\tQLD\t843\n10004269\t-26.586\t149.181398\tSES Depot Showgrounds Warrego Hwy WALLUMBILLA\tQLD\t369\n10009051\t-26.5766\t151.7611\t253 Beils Rd INVERLAW\tQLD\t1264\n10006997\t-26.4246\t135.5041\tOptus Rooftop Site Dalhousie Springs Witjira National Park WITJIRA\tSA\t446\n10009919\t-26.4112\t151.81499\tTelstra Exchange 25-27 Alexander St Wooroolin\tQLD\t1163\n10008212\t-26.3878\t149.29309\tMuggelton Off Yuleba Taroom Road YULEBA NORTH\tQLD\t1018\n10004717\t-26.3602\t120.6056\tJundee Mine White House Goldfields Highway Wiluna 6646\tWA\t1184\n10000681\t-26.3565\t152.55895\tGympie muster-COW 1563 Amamoor Creek Road AMAMOOR CREEK?\tQLD\t910\n10004794\t-26.2002\t152.66575\tNorth Monkland 45 Excelsior Road GYMPIE?\tQLD\t1249\n10001652\t-26.0132\t152.3427\tRepeater Site Mt Kunjoli (6.5km NW of) WOOLOOGA\tQLD\t850\n10003189\t-25.9931\t116.0397\tCB Repeater Earilier Hill 37km north east of BALLYTHUNA HOMESTEAD\tWA\t1356\n10006499\t-25.9222\t141.296\tBeal Block Comms Site Morney Plains Station\tQLD\t836\n10002781\t-25.8898\t148.9119\tTaylor Repeater off Waybara Road PONY HILLS\tQLD\t1310\n10006537\t-25.8528\t140.04\tRingamurra Comms Site Durrie Station\tQLD\t115\n10006326\t-25.8395\t133.2998\tOptus Rooftop Site Kulgera Kulgera Roadhouse South Stuart Hwy KULGERA\tNT\t189\n10003169\t-25.8332\t147.583572\tCB Repeater Site Redford Station 70km N MUNGALLALA\tQLD\t925\n10006498\t-25.7147\t141.595\tBeefwood Comms Site Morney Plains Station\tQLD\t264\n10006543\t-25.6993\t140.193\t8 Mile Comms Site Durrie Station\tQLD\t1168\n10006541\t-25.6874\t140.229\tDurrie Homestead Comms Site Durrie Station\tQLD\t1008\n10006500\t-25.5066\t140.916\tAlleogera Comms Site Morney Plains Station\tQLD\t1217\n10006536\t-25.4699\t140.231\tWantatta Comms Site Durrie Station\tQLD\t1482\n10006496\t-25.4241\t141.517\tMt Collins Comms Site Morney Plains Station\tQLD\t879\n10006497\t-25.3712\t141.469\tMorney Plains Homestead Comms Site Morney Plains Station\tQLD\t523\n10008897\t-25.3481\t148.8873\tSantos Castle Hill RT off Arcadia Valley South Rd CASTLE HILL GASFIELD\tQLD\t262\n10003059\t-25.292\t152.8913\tAldi Urangan 1C Cartwright Court Urangan\tQLD\t111\n10006495\t-25.2758\t140.467\tTackraminta Comms Site Morney Plains Station\tQLD\t389\n10008896\t-25.259\t148.8716\tSantos Site Mt Kinglsey Dam Arcadia Valley\tQLD\t398\n10006540\t-25.2542\t140.138\tJimos East Comms Site Durrie Station\tQLD\t569\n10006539\t-25.1996\t139.942\tJimos West Comms Site Durrie Station\tQLD\t115\n10005941\t-25.196\t152.53379\tTelstra Exchange 56 Travis Street Buxton Bundaberg\tQLD\t1472\n10009737\t-25.0719\t148.2743\tOptus Site Sandstone Park O\u0027Briens Road CANARVON GORGE\tQLD\t1091\n10008205\t-25.0713\t148.2551\tOptus Rooftop Site Canarvon Wilderness Lodge 4043 O\u0027Briens Road CANARVON PARK\tQLD\t649\n10008204\t-25.0614\t148.2351\tOptus Rooftop Site Canarvon Gorge Visitor Centre Canarvon Gorge NP CANARVON PARK\tQLD\t1289\n10006532\t-24.9975\t139.052\tDam West Comms Site Glengyle Station\tQLD\t383\n10006529\t-24.9799\t139.638\tLake Koolivoo Comms Site Glengyle Station\tQLD\t1127\n10002736\t-24.9625\t152.0495\tCouncil Tower Delan Rd BULLYARD\tQLD\t1213\n10006533\t-24.9486\t139.321\tDam East Comms Site Glengyle Station\tQLD\t905\n10003058\t-24.8181\t152.4552\tAldi Bargara 699 Bargara Road, Bargara\tQLD\t916\n10006531\t-24.7988\t138.727\tDubbo Comms Site Glengyle Station\tQLD\t1404\n10006530\t-24.7846\t139.592\tGlengyle Homestead Comms Site Glengyle Station\tQLD\t113\n10008936\t-24.7147\t119.898436\tTWR2 Kalium Lakes 88 km NE of Kumarina\tWA\t246\n10010632\t-24.6943\t151.30439\tTelstra Site 4 Pine Street Kalpowar\tQLD\t307\n10006528\t-24.6772\t138.973\tTommydonka Comms Site Glengyle Station\tQLD\t1101\n10006534\t-24.624\t139.195\tCarrawillia Comms Site Glengyle Station\tQLD\t389\n10006688\t-24.5638\t149.97689\tMarch IT Facility MOUR03 28-30 Okano St Moura\tQLD\t1377\n10006535\t-24.5585\t139.418\tBullock North Comms Site Glengyle Station\tQLD\t662\n10009180\t-24.4601\t150.4644\t361 Crowsdale Camboon Road Biloela\tQLD\t810\n10006803\t-24.4053\t131.817782\tOptus Rooftop site Kings Creek Station 12725 Luritja Road PETERMANN\tNT\t1121\n10006331\t-24.2513\t131.5113\tOptus Rooftop Site Kings Canyon Resort Kings Canyon Resort 20000 Larapinta Drive PETERMANN\tNT\t1277\n10008099\t-24.1424\t148.15007\tNBN Co Site Dawson Highway Orion\tQLD\t1451\n10007261\t-24.0775\t132.76\tParks \u0026 Wildlife Site Palm Valley Finke Gorge National Park NAMATJIRA\tNT\t775\n10002893\t-23.8104\t150.647777\t1879 South Ulam Road Bajool\tQLD\t439\n10004911\t-23.7649\t148.1016\t312 Howards Rd GINDIE\tQLD\t108\n10006324\t-23.6851\t132.672\tOptus Rooftop Site Glen Helen Homestead Glen Helen Homestead Lodge 8495 Namatjira Drive MOUNT ZEIL\tNT\t194\n10009738\t-23.6322\t132.7267\tOptus Rooftop Site Ormiston Poud Ranger Station Ormiston Gorge Access Road MOUNT ZEIL\tNT\t359\n10005239\t-23.5272\t148.4098\tBauhinias Rd COMET\tQLD\t1194\n10009842\t-23.4445\t144.2457\t144-150 Emu St LONGREACH\tQLD\t707\n10004676\t-23.442\t144.248697\tTarget 111 Eagle St LONGREACH\tQLD\t1055\n10003460\t-23.4389\t144.2816\tBoM Wind Profiler Longreach Airport Longreach\tQLD\t1197\n10008110\t-23.3978\t120.1006\tBHP 30m skid 3km SSE of McCamey\u0027s Monster\tWA\t749\n10002526\t-23.3907\t120.1154\tBHP Billiton LTE site JIM_12 BHP Jimblebar mine\tWA\t675\n10002525\t-23.3888\t120.1834\tBHP Billiton LTE site JIM_11 BHP Jimblebar mine\tWA\t1084\n10002529\t-23.3841\t120.0829\tBHP Billiton LTE site Skid 3 BHP Jimblebar mine\tWA\t1045\n10005175\t-23.3838\t119.6575\tMicrowave site OB35 Mid Pit BHP Mt Whaleback mine\tWA\t999\n10008109\t-23.3831\t120.1348\tBHP 30m skid 1.5km SSE of Wheelarra Hill\tWA\t1067\n10005174\t-23.3786\t119.7073\tMicrowave site OB29 BHP Mt Whaleback mine\tWA\t227\n10008113\t-23.3769\t120.1539\tBHP 50m tower 2.8km ESE of Wheelarra Hill\tWA\t751\n10003364\t-23.375\t150.535555\tLandfill Site Lakes Creek Road ROCKHAMPTON\tQLD\t239\n10008115\t-23.3725\t120.0919\tBHP 50m tower Jimblebar mine McCamey\u0027s Monster\tWA\t450\n10001792\t-23.3718\t120.1264\tBHP Billiton LTE site WH4 Wheelarra Hill\tWA\t1158\n10001482\t-23.3694\t120.0508\tRail loadout BHP Jimblebar mine, 5 km west of McCameys Monster\tWA\t1304\n10008114\t-23.3683\t120.1063\tBHP 50m tower 1.5km ENE of McCamey\u0027s Monster\tWA\t545\n10008106\t-23.3681\t120.1641\tBHP 30m skid 3.8km East of Wheelarra Hill\tWA\t1124\n10008107\t-23.3639\t120.1946\tBHP 30m skid 7km East of Wheelarra Hill\tWA\t724\n10008111\t-23.3635\t120.092\tBHP 30m skid 1km North of McCamey\u0027s Monster\tWA\t1485\n10005173\t-23.3586\t119.6464\tRabbit Flats tower W29 BHP Mt Whaleback mine\tWA\t1445\n10006422\t-23.3416\t150.5217\tThe Good Guys Rockhampton Red Hill Homemaker Centre 396 Yaamba Road NORMAN GARDENS\tQLD\t612\n10008116\t-23.3272\t120.0458\tBHP 50m tower 2.5km East of Shovelanna Hill\tWA\t918\n10008112\t-23.3212\t120.0644\tBHP 30m skid 4.5km ENE of Shovelanna Hill\tWA\t867\n10008108\t-23.3164\t120.1129\tBHP 30m skid 9.5km ENE of Shovelanna Hill\tWA\t1240\n10002527\t-23.3015\t120.0925\tBHP Billiton LTE site Skid 1 BHP Jimblebar mine\tWA\t221\n10008704\t-22.892\t113.92455\tTelstra Site Minilya-Exmouth Road Lyndon Carnarvon\tWA\t828\n10001801\t-22.865\t119.689\tBHP Billiton LTE site Poonda North SER Mount Newman Railway\tWA\t1219\n10010482\t-22.4826\t119.86845\tTrailer 1 Roy Hill Mine ROY HILL\tWA\t1466\n10010480\t-22.4815\t119.973306\tTrailer 3 Roy Hill Mine ROY HILL\tWA\t511\n10008202\t-22.4809\t118.4629\tOptus Rooftop Site Karajini Vistor Centre Banijima Drive MULGA DOWNS\tWA\t339\n10009741\t-22.4708\t118.5437\tOptus Site Karajini Campground Banijima Drive MULGA DOWNS\tWA\t113\n10008715\t-22.4424\t119.924856\tPSA Waste Water Treatment Plant Roy Hill Mine Roy Hill\tWA\t1498\n10005527\t-22.2775\t117.5014\t55km NNW of Tom Price Tom Price\tWA\t619\n10006447\t-22.255\t117.851667\tSolomon Mine Airport 100Km North of Paraburdoo HAMERSLEY RANGE\tWA\t126\n10003944\t-22.1252\t117.83833\tTrinity (TNTY) 26.5 km NE of Mount Sheila Hamersley Range\tWA\t448\n10004273\t-22.0865\t148.25659\tRamp 40 Site Poitrel Mine COPPABELLA\tQLD\t801\n10007911\t-21.9973\t148.0385\t9 Barcoo Dr MORANBAH\tQLD\t1058\n10001139\t-21.8393\t140.893773\tAFRU Site Cannington Mine TREPELL AIRPORT\tQLD\t212\n10004041\t-21.7658\t149.375003\tWest Hill Lot28MC573 Bruce HW Carmilla\tQLD\t1420\n10003406\t-21.6406\t121.1889\tWoodie Woodie Airport Woodie Woodie Road WOODIE WOODIE\tWA\t393\n10009740\t-21.5912\t117.0754\tOptus Rooftop Site Millstream Homestead off Kajenjie Millstream Rd MILLSTREAM\tWA\t679\n10003047\t-21.5415\t115.0327\tWaveRider buoy 14 km North west of ONSLOW\tWA\t808\n10010327\t-21.1227\t118.869\tPilgangoora Lithium-Tantalum Mine off Port Hedland-Wittenoom Road, 95 km SSE of PORT HEDLAND\tWA\t492\n10005374\t-20.986\t137.8496\tLake Nash Community Office 13 Antyiper Street ALPURRURULAM\tNT\t1334\n10002023\t-20.812\t116.7738\tLot 126 Warlu Road Cooya Pooya\tWA\t1052\n10001860\t-20.7746\t116.763\t15.8KP SER Pilbara\tWA\t117\n10000669\t-20.7355\t116.846\t16 Sharpe Avenue Karratha\tWA\t531\n10008789\t-20.7323\t116.840964\tKarratha Health Campus 62 Balmoral Road Karratha\tWA\t710\n10001859\t-20.679\t117.118653\t9.78KP SER Pilbara\tWA\t1353\n10009833\t-20.6481\t116.72204\tDampier Power Station via Parker Point Road DAMPIER\tWA\t693\n10007825\t-20.6279\t117.1961\tSite 9 Meares Drive POINT SAMSON\tWA\t532\n10005330\t-20.515\t147.844447\tAlmoola SER 1.2 km East of Bowen Developmental Road Springlands\tQLD\t121\n10009893\t-20.175\t129.666667\tNorthern Star Resources nominal LTE site Tanami 6 Tanami Desert\tNT\t798\n10004557\t-20.1094\t139.865093\tGereta Station Lot 2585 Three Rivers\tQLD\t1061\n10006804\t-19.9217\t138.1195\tOptus Rooftop site Post Office Hotel 39 Barkly St CAMOOWEAL\tQLD\t146\n10009894\t-19.875\t130.0\tNorthern Star Resources nominal LTE site Tanami 5 Tanami Desert\tNT\t351\n10009892\t-19.875\t129.0\tNorthern Star Resources nominal LTE site West Tanami Tanami Desert\tWA\t1232\n10007511\t-19.7027\t139.35347\tSouth Esperanza Ridge 3km WSW of Waggaboonya Lake Gunpowder\tQLD\t1332\n10007627\t-19.6863\t147.28585\tIoT Trial Site Ayr-Dalbeg Road Mona Park\tQLD\t549\n10005604\t-19.593\t147.135\t419 Bartlett Rd GIRU\tQLD\t709\n10006964\t-19.5548\t147.35763\tTelstra Site 91 Drysdale Street Brandon\tQLD\t352\n10004603\t-19.4366\t134.208275\tOptus Rooftop Site 3 Ways Roadhouse National Hwy 87 Tennant Creek\tNT\t705\n10007830\t-19.3167\t146.8223\tFairfield Central Shopping Centre 2-14 Darcy Dr IDALIA\tQLD\t1259\n10005147\t-19.3162\t146.700233\tHarris Crossing Estate 308 Hervey Range Road BOHLE PLAINS\tQLD\t484\n10006481\t-19.3081\t128.379\tLake Wilson Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t193\n10010261\t-19.2939\t146.7893\tMundingburra State School 77 Ross River Rd MUNDINGBURRA\tQLD\t189\n10006424\t-19.2742\t146.7579\tThe Good Guys Townsville Domain Central Shopping Centre 103 Duckworth Street GARBUTT\tQLD\t1011\n10005913\t-19.2734\t146.7766\t44 Punari Street CURRAJONG\tQLD\t867\n10002140\t-19.264\t146.821244\tQFES Communications Centre 2-8 Morey Street SOUTH TOWNSVILLE\tQLD\t109\n10010100\t-19.2531\t146.70435\tTower North Shore Boulevard Townsville\tQLD\t586\n10006479\t-19.1626\t128.163\tSturt Creek Homested Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t332\n10006484\t-19.1332\t127.828\tClay Hole Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t997\n10006485\t-19.0957\t127.518\tCarranya Bush Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t440\n10006550\t-19.0469\t134.487\tSpinifex Comms Site Brunchilly Station\tNT\t816\n10006478\t-19.0046\t127.586\tWest Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t1463\n10000422\t-18.9991\t144.98033\tTelstra Exchange Cassia Court Greenvale\tQLD\t176\n10006551\t-18.9761\t134.793\tKidman Comms Site Brunchilly Station\tNT\t1425\n10006486\t-18.9616\t127.965\tBush Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t1131\n10006487\t-18.9314\t128.374\tBorderline Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t575\n10006553\t-18.8683\t134.5\tBrunchilly Homestead Comms Site Brunchilly Station\tNT\t445\n10006552\t-18.8627\t134.563\tChow Chowra Comms Site Brunchilly Station\tNT\t112\n10006526\t-18.7108\t134.365\tCoolibah Comms Site Brunchilly Station\tNT\t810\n10008206\t-18.6908\t138.5308\tOptus Rooftop Site Boodjamulla National Park Adels Grove LAWN HILL\tQLD\t518\n10006482\t-18.6832\t127.685\tHughes Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t190\n10006483\t-18.6281\t128.147\tDry Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t376\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_-637137243",
+ "id": "20220727-124935_1965232665",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:46:48+0000",
+ "dateFinished": "2022-08-16T04:46:48+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Populate COST and REVENUE column",
+ "text": "%python\nsite_df[\u0027COST\u0027] \u003d [np.random.randint(10000, 30000) for i in range(len(site_df))]\nsite_df[\u0027REVENUE\u0027] \u003d [np.random.randint(18000, 30000) for i in range(len(site_df))]\nz.show(site_df)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:52+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {
+ "0": {
+ "graph": {
+ "mode": "table",
+ "height": 300.0,
+ "optionOpen": false,
+ "setting": {
+ "table": {
+ "tableGridState": {
+ "columns": [
+ {
+ "name": "SITE_ID0",
+ "visible": true,
+ "width": "*",
+ "sort": {},
+ "filters": [
+ {}
+ ],
+ "pinned": ""
+ },
+ {
+ "name": "LATITUDE1",
+ "visible": true,
+ "width": "*",
+ "sort": {},
+ "filters": [
+ {}
+ ],
+ "pinned": ""
+ },
+ {
+ "name": "LONGITUDE2",
+ "visible": true,
+ "width": "*",
+ "sort": {},
+ "filters": [
+ {}
+ ],
+ "pinned": ""
+ },
+ {
+ "name": "NAME3",
+ "visible": true,
+ "width": "*",
+ "sort": {},
+ "filters": [
+ {}
+ ],
+ "pinned": ""
+ },
+ {
+ "name": "STATE4",
+ "visible": true,
+ "width": "*",
+ "sort": {},
+ "filters": [
+ {}
+ ],
+ "pinned": ""
+ },
+ {
+ "name": "ELEVATION5",
+ "visible": true,
+ "width": "*",
+ "sort": {},
+ "filters": [
+ {}
+ ],
+ "pinned": ""
+ },
+ {
+ "name": "COST6",
+ "visible": true,
+ "width": "*",
+ "sort": {},
+ "filters": [
+ {}
+ ],
+ "pinned": ""
+ },
+ {
+ "name": "REVENUE7",
+ "visible": true,
+ "width": "*",
+ "sort": {},
+ "filters": [
+ {}
+ ],
+ "pinned": ""
+ }
+ ],
+ "scrollFocus": {},
+ "selection": [],
+ "grouping": {
+ "grouping": [],
+ "aggregations": [],
+ "rowExpandedStates": {}
+ },
+ "treeView": {},
+ "pagination": {
+ "paginationCurrentPage": 1.0,
+ "paginationPageSize": 250.0
+ }
+ },
+ "tableColumnTypeState": {
+ "names": {
+ "SITE_ID": "number",
+ "LATITUDE": "number",
+ "LONGITUDE": "number",
+ "NAME": "string",
+ "STATE": "string",
+ "ELEVATION": "number",
+ "COST": "number",
+ "REVENUE": "number"
+ },
+ "updated": false
+ },
+ "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
+ "tableOptionValue": {
+ "useFilter": false,
+ "showPagination": true,
+ "showAggregationFooter": true
+ },
+ "updated": false,
+ "initialized": false
+ },
+ "multiBarChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default"
+ },
+ "stackedAreaChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default",
+ "style": "stack"
+ },
+ "lineChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default",
+ "lineWithFocus": false
+ }
+ },
+ "commonSetting": {},
+ "keys": [
+ {
+ "name": "SITE_ID",
+ "index": 0.0,
+ "aggr": "sum"
+ }
+ ],
+ "groups": [],
+ "values": [
+ {
+ "name": "COST",
+ "index": 6.0,
+ "aggr": "sum"
+ },
+ {
+ "name": "REVENUE",
+ "index": 7.0,
+ "aggr": "sum"
+ }
+ ]
+ },
+ "helium": {}
+ }
+ },
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TABLE",
+ "data": "SITE_ID\tLATITUDE\tLONGITUDE\tNAME\tSTATE\tELEVATION\tCOST\tREVENUE\n10009902\t-23.0\t116.466667\tNorthern Star Resources nominal LTE site Ashburton 1, 13 km east north east of Peak Edgar\tWA\t656\t13027\t25463\n10009903\t-23.0\t117.1\tNorthern Star Resources nominal LTE site Ashburton 2, 7 km west south west of Dolphin Hill\tWA\t157\t22480\t27407\n10009897\t-19.0\t129.7\tNorthern Star Resources nominal LTE site Tanami 2 Tanami Desert\tNT\t836\t25019\t25979\n10000187\t-38.34\t145.081063\tNBNCo 325 Myers Road Merricks North\tVIC\t327\t16288\t28689\n10000353\t-38.11\t145.2819\tCranbourne Park Shopping Centre High Street CRANBOURNE\tVIC\t163\t27689\t20374\n10000829\t-37.83\t144.899\tWestgate Bridge Structure_3 Westgate Bridge Freeway PORT SPOTSWOOD\tVIC\t552\t22402\t21001\n10007006\t-37.8\t144.7736\t176 Swann Dr DERRIMUT\tVIC\t1194\t14464\t26477\n10008365\t-37.72\t145.048389\tBorchardt Library La Trobe University The Agora Bundoora\tVIC\t1204\t18998\t27328\n10011002\t-34.74\t148.8444\tADFA site Yass Lachlan Valley Way Yass\tNSW\t1292\t26867\t21033\n10003498\t-34.47\t150.818413\tDTRS Site Kembla Grange Cnr W Dapto Rd and Prices Hwy KEMBLA GRANGE\tNSW\t481\t23851\t23735\n10007610\t-33.87\t116.0675\tGPS Transmitter Talisman Lithium Mine Maranup Ford Road GREENBUSHES\tWA\t705\t29605\t25214\n10010507\t-33.85\t151.0554\t30 Carter Street LIDCOMBE\tNSW\t349\t19070\t22918\n10007094\t-31.11\t150.89765\tTelstra Site Opposite 88 Duri Road West Tamworth\tNSW\t657\t27782\t24685\n10000636\t-30.36\t116.2896\tOff Edawa Road\tWA\t1399\t26501\t19005\n10009899\t-30.35\t121.933333\tNorthern Star Resources nominal LTE site Kanowna Belle East 42 km north east of Kanowna\tWA\t645\t27491\t25520\n10006332\t-30.16\t131.5803\tOptus Rooftop Site Maralinga Maralinga Village MARALINGA\tSA\t350\t14632\t26573\n10003562\t-28.87\t114.0\tKempton Fisheries Jackson Island ABROLHOS ISLANDS\tWA\t1230\t14248\t18627\n10009909\t-27.83\t153.334\tKerkin Road South COOMERA\tQLD\t833\t21215\t27075\n10006547\t-27.08\t141.907\tDurham Downs Homestead Comms Site Durham Downs Station\tQLD\t580\t22328\t23036\n10010405\t-26.75\t148.55294\tMarch IT Facility Roma Feedlot \u0026 Spelling Yards off Binya Lane MOUNT ABUNDANCE\tQLD\t1143\t19483\t23646\n10000233\t-26.71\t153.01285\tNBN Co 711 Ilkley Road TANAWHA\tQLD\t893\t19222\t28336\n10006538\t-25.55\t140.482\tParakunda Comms Site Durrie Station\tQLD\t149\t23954\t28182\n10005246\t-25.34\t152.7897\t2992 Maryborough Harvey Road SUNSHINE ACRES\tQLD\t283\t21587\t19925\n10006811\t-24.34\t133.458668\tOptus Rooftop site Stuarts Well Roadhouse 8844 Stuart Highway STUART WELL\tNT\t876\t25564\t26335\n10005015\t-22.96\t118.76\tJuna Downs Mast 108km WNW of Newman Newman\tWA\t248\t16671\t26189\n10010481\t-22.55\t119.972278\tTrailer 2 Roy Hill Mine ROY HILL\tWA\t758\t23387\t20752\n10004116\t-21.49\t114.99\tENSCO 107 Approximately 21km SW of ONSLOW\tWA\t404\t18467\t26904\n10009937\t-21.26\t114.04\tENSCO DPS-1 Offshore Australia\tEXT\t926\t25280\t26677\n10006878\t-21.21\t114.26\tAtwood Osprey Site Atwood Osprey Offshore Australia\tWA\t1254\t18044\t27492\n10008403\t-20.56\t145.55\tDGPS Site off Glen Houghton Rd via PENTLAND\tQLD\t452\t28637\t18630\n10001661\t-19.9\t130.178\tRamelius Resources Site 45k North East of Tanami Tanami\tNT\t405\t21468\t26030\n10008408\t-19.79\t147.22\tDGPS Site DGPS Site cnr Cussen and Granshaw Rds CLARE\tQLD\t1429\t25474\t25354\n10009895\t-19.75\t129.366667\tNorthern Star Resources nominal LTE site Tanami 4 Tanami Desert\tNT\t1054\t17790\t25830\n10010220\t-19.46\t116.56\tMcDermott DLV2000 Offshore Australia\tEXT\t450\t10234\t22519\n10009896\t-19.25\t129.166667\tNorthern Star Resources nominal LTE site Tanami 3 Tanami Desert\tNT\t421\t11731\t24236\n10009739\t-17.53\t128.3071\tOptus Site Purnululu National Park Reserve 39869 ORD RIVER\tWA\t1278\t17946\t27764\n10007618\t-12.67\t124.539\tNoble Tom Prosser Offshore Australia Timor Sea\tWA\t493\t22117\t25870\n10010885\t-42.8827\t147.3277\tH\u0026M Cat \u0026 Fiddle Arcade 93 Murray Street HOBART\tTAS\t970\t26935\t25121\n10007294\t-42.8823\t147.329101\tJettech Site 34 Elizabeth Street Hobart\tTAS\t1435\t29693\t19340\n10002567\t-42.8341\t147.4662\tAnaconda Cambridge Tasman Hwy CAMBRIDGE\tTAS\t711\t17040\t24960\n10010563\t-42.7921\t147.26671\t100 Cadbury Rd CLEREMONT\tTAS\t795\t16627\t19182\n10009655\t-42.5306\t147.978\tAquaculture Barge Okehampton Bay near Triabunna\tTAS\t612\t14865\t27294\n10010472\t-42.3886\t146.5032\tTelstra Site Wayatinah Community Centre Third Street Wayatinah\tTAS\t1403\t22065\t21228\n10003968\t-42.2869\t146.897825\tComms site 2.56km ESE of Hermitage HERMITAGE\tTAS\t479\t23308\t25203\n10005471\t-42.2703\t146.54465\tTelstra Site Bradys Lake Bradys Tower Rd, Tarraleah Bradys Sugarloaf\tTAS\t806\t24323\t28372\n10009706\t-41.586\t145.72\tTasmanet Site off Belvoir Rd West Coast off Belvoir Rd West Coast\tTAS\t1271\t22842\t18834\n10000557\t-41.5461\t146.41005\t80 Baldocks Rd Mole Creek\tTAS\t960\t17345\t18836\n10006786\t-41.5124\t146.64953\tDeloraine 36 Archer St DELORAINE\tTAS\t411\t17597\t22257\n10004946\t-41.4676\t147.1585\tColes Meadow Mews Shopping Centre 102 - 106 Hobart Rd KINGS MEADOWS\tTAS\t1233\t26556\t27887\n10002510\t-41.2341\t147.00945\tMount Direction optus monopole 71 Bullocks Head Road 7252 Mount Direction\tTAS\t748\t18439\t22116\n10004699\t-41.2286\t146.41077\tLatrobe Central 52 Hawkins Street West Latrobe\tTAS\t506\t28291\t19000\n10009686\t-40.683\t144.689\tCape Grim RASS Site Woolnorth\tTAS\t480\t22149\t29731\n10000004\t-39.5964\t143.9339\tCape Wickham Links Clubhouse KING ISLAND\tTAS\t1266\t18265\t23929\n10000847\t-38.8133\t146.1019\tTelstra Exchange 285 Waratah Road Sandy Point\tVIC\t1193\t19034\t25678\n10008493\t-38.522\t143.9732\tLorne North 2 Holliday Road LORNE\tVIC\t711\t19288\t25337\n10009484\t-38.468\t144.10447\tAIREYS INLET-V Split Point Light Station AIREYS INLET\tVIC\t727\t11062\t27269\n10004568\t-38.425\t143.54494\tTelstra Exchange site 410 G Barrys Road BARONGAROOK WEST\tVIC\t297\t20055\t29436\n10002273\t-38.3946\t143.68778\t420 Yeo-Yeodene Road Yeodene\tVIC\t472\t12958\t26476\n10004715\t-38.3842\t142.59992\tAllansford Allansford Recreation Reserve, ,Zeigler Parade ALLANSFORD\tVIC\t197\t29573\t29911\n10003109\t-38.3803\t142.5205\tAldi Gateway Plaza Warrnambool 154 Raglan Parade Warrnambool\tVIC\t313\t11177\t26492\n10008078\t-38.3791\t142.50816\tTelstra Site 2-64 Grafton Road Warrnambool\tVIC\t1046\t12851\t26082\n10002213\t-38.354\t144.9506\t795 Arthurs Seat Road ARTHURS SEAT\tVIC\t338\t10799\t18072\n10008464\t-38.348\t144.937\tMc Crae Freeway 2 CORNELL ST MCCRAE\tVIC\t761\t14331\t19500\n10004472\t-38.3429\t143.585742\t95-97 Gellibrand Street COLAC\tVIC\t353\t17974\t20406\n10000451\t-38.3341\t143.79031\tNBN Co Cnr Barray \u0026 Strachan Streets Birregurra\tVIC\t593\t29755\t22094\n10005040\t-38.3303\t144.9872\tAldi Dromana 120 Napean Hwy DROMANA\tVIC\t1006\t26164\t23417\n10005601\t-38.3124\t143.649992\t20 Warrowie Rd Colac\tVIC\t1317\t19173\t21418\n10008770\t-38.2778\t144.4535\tOB Site 13th Beach Golf Links 36 Fourteenth Road BARWON HEADS\tVIC\t1168\t27985\t18388\n10000791\t-38.2218\t145.0459\t99 Tanti Avenue MORNINGTON\tVIC\t1256\t26150\t18820\n10007176\t-38.187\t146.48831\tM8372 Traralgon West Scrubby Lane MARYVALE\tVIC\t329\t10234\t25081\n10010440\t-38.1856\t144.3801\t63 Leather Street BREAKWATER\tVIC\t1237\t29651\t23493\n10004132\t-38.1838\t145.0893\tcnr Mt Eliza Way and Canadian Bay Road MT ELIZA\tVIC\t918\t23228\t23755\n10002162\t-38.1574\t145.16951\tTelstra IBC McClelland Drive Peninsula Private Hospital Langwarrin\tVIC\t773\t14209\t23629\n10010422\t-38.1532\t145.1341\t47-49 Moorooduc Highway FRANKSTON\tVIC\t284\t22921\t27822\n10000719\t-38.1515\t144.365917\tUniversity Hospital Geelong Helipad Ryrie St GEELONG 3220\tVIC\t1238\t29357\t27529\n10010704\t-38.148\t144.3563\t73 Ryrie Street GEELONG\tVIC\t993\t13607\t24936\n10010456\t-38.1458\t144.3539\tcnr Latrobe Terrace and Gordon Avenue GEELONG\tVIC\t276\t26342\t29634\n10009959\t-38.1454\t144.3612\t26 Moorabool Street GEELONG\tVIC\t1153\t16152\t26616\n10010936\t-38.1238\t144.351\tGeelong Arena 110 Victoria Street NORTH GEELONG\tVIC\t652\t26537\t18268\n10009330\t-38.1238\t145.1508\tPines Forest Aquatic Centre 61 Forest Drive FRANKSTON NORTH\tVIC\t789\t27689\t26015\n10010368\t-38.1236\t145.31349\tNBN Co Site 1B/369 Casey Fields Blvd Cranbourne East\tVIC\t1446\t14340\t22026\n10004085\t-38.1025\t147.158611\tRAAF Interim Radar Site East Sale Talbots Road SALE\tVIC\t1027\t25713\t23203\n10001424\t-38.0781\t145.250748\tAldi Lyndhurst Marriot Blvd LYNDHURST\tVIC\t1123\t29286\t28148\n10007163\t-38.0756\t145.12337\tCarrum Central -O 506 Station Street CARRUM\tVIC\t1322\t14547\t20305\n10010705\t-38.0648\t145.4584\t4 Olympic Way PAKENHAM\tVIC\t148\t29938\t22261\n10010358\t-38.0466\t145.24\tM2 Industry Park cnr National Drive and Bayliss Road DANDENONG SOUTH\tVIC\t1408\t16595\t27250\n10008301\t-38.0363\t145.2362\t29 National Drive DANDENONG SOUTH\tVIC\t526\t21016\t19172\n10010757\t-38.0348\t145.1977\t42-46 Villas Road DANDENONG SOUTH\tVIC\t618\t10976\t23355\n10005573\t-38.0168\t145.38457\tGuys Hill 335 Beaconsfield Emerald Road BEACONSFIELD\tVIC\t891\t13758\t24265\n10009153\t-38.0118\t140.95955\tTelstra Site 13 Dry Creek Road Donovans DC of Grant\tSA\t599\t26842\t26467\n10011051\t-38.0111\t145.116\t71-81 Canterbury Road BRAESIDE\tVIC\t1462\t26066\t29168\n10000428\t-37.9887\t145.2439\tPool in the Park cnr Kidds Road and Tristiana Street DOVETON\tVIC\t678\t26936\t21058\n10000516\t-37.9867\t144.3509\tBarwon Prison 1140 Bacchus Marsh Road LARA\tVIC\t497\t29604\t21516\n10000567\t-37.9867\t145.1289\tSt Marks Primary School 4-6 Dimar Court DINGLEY VILLAGE\tVIC\t712\t29058\t22688\n10000179\t-37.9661\t145.0564\t2-6 Railway Road CHELTENHAM\tVIC\t674\t16817\t26888\n10000882\t-37.9659\t145.0571\tThe Village Cheltenham 1228 Nepean Hwy CHELTENHAM\tVIC\t1033\t24771\t25845\n10004279\t-37.9651\t144.7069\t50 Quay Boulevard WERRIBEE SOUTH\tVIC\t1379\t10129\t18454\n10001465\t-37.9591\t145.054976\tAldi Southland 1239 Nepean Highway CHELTENHAM\tVIC\t263\t11623\t23675\n10005706\t-37.9584\t145.0513\tMyer Westfield Southland 1156 Nepean Highway CHELTENHAM\tVIC\t943\t21098\t28440\n10010954\t-37.9568\t145.151903\tSpringvale Library 411 Springvale Road Springvale\tVIC\t991\t19999\t28121\n10009183\t-37.9535\t145.0477\tVista Kingston Park 1144 Nepean Hwy HIGHETT\tVIC\t214\t27828\t19505\n10010908\t-37.9502\t145.0078\t6 Fernhill Road SANDRINGHAM\tVIC\t1309\t24844\t19840\n10010755\t-37.949\t145.0787\tShop 7 430 Warrigal Road HEATHERTON\tVIC\t1375\t22607\t24786\n10010306\t-37.9391\t145.002\t293-295 Hampton Street HAMPTON\tVIC\t411\t16383\t29237\n10010195\t-37.9343\t145.0035\t514-518 Hampton Street HAMPTON\tVIC\t321\t20166\t29067\n10009358\t-37.9331\t145.0325\t336-338 South Road HAMPTON EAST\tVIC\t1487\t26158\t20068\n10010640\t-37.9209\t145.1403\tM-City cnr Dandenong and Blackburn Roads CLAYTON\tVIC\t539\t28351\t25287\n10005856\t-37.9198\t145.03905\t79/83 Mitchell St Bentleigh\tVIC\t930\t16407\t28253\n10000030\t-37.9192\t145.3463\tBelgrave Heights Christian School Wattle Valley Road BELGRAVE\tVIC\t197\t24131\t24715\n10002772\t-37.9172\t145.0312\t261 Centre Road BENTLEIGH\tVIC\t1490\t17506\t19997\n10000364\t-37.9158\t145.0608\tGlen Eira Sports and Aquatic Centre 200 East Boundary Road BENTLEIGH EAST\tVIC\t1003\t26970\t28905\n10000138\t-37.914\t145.132754\t21 Wellington Rd Clayton\tVIC\t814\t12394\t21563\n10000843\t-37.911\t145.1297\t18 Innovation Walk Monash University CLAYTON\tVIC\t890\t10657\t27340\n10010267\t-37.9094\t144.6638\tMacKillop Catholic Regional College 1 - 29 Russell St WERRIBEE\tVIC\t1245\t27263\t18784\n10000874\t-37.9083\t145.2388\t949 Stud Road ROWVILLE\tVIC\t564\t24305\t21058\n10010473\t-37.9044\t145.1598\tVillage Green Hotel cnr Springvale and Ferntree Gully Roads MULGRAVE\tVIC\t1438\t16884\t26794\n10010815\t-37.9038\t144.6562\t116 Watton Street WERRIBEE\tVIC\t1270\t26266\t29927\n10010165\t-37.9019\t142.7887\tSalt Creek Wind Farm off Woorndoo-Chatsworth Road WOORNDOO\tVIC\t1355\t28223\t28073\n10010633\t-37.8989\t145.0945\t89 Atherton Road OAKLEIGH\tVIC\t1231\t19832\t29852\n10005839\t-37.8979\t144.98963\tTelstra Street Cell 382 St Kilda Street BRIGHTON\tVIC\t1418\t20710\t20183\n10001088\t-37.8958\t144.753035\tAldi Sanctuary Lakes 300 Point Cook Road Point Cook\tVIC\t1294\t16499\t29480\n10008757\t-37.8916\t145.173288\tWIA Site Mt View Waverley Road Glen Waverley\tVIC\t590\t12260\t19241\n10002505\t-37.8905\t145.0655\t401 Neerim Road CARNEGIE\tVIC\t595\t17589\t26286\n10004702\t-37.8892\t145.0594\t316-320 Neerim Road CARNEGIE\tVIC\t398\t22663\t22858\n10005401\t-37.8886\t145.0541\t247 Neerim Road CARNEGIE\tVIC\t1141\t11971\t21572\n10001645\t-37.8876\t145.0813\tMyer Chadstone Shopping Centre 1341 Dandenong Road CHADSTONE\tVIC\t870\t24968\t18096\n10002193\t-37.887\t145.0831\ttoys R Us Chadstone Shopping Centre 1341 Dandenong Rd CHADSTONE\tVIC\t643\t14469\t26741\n10002276\t-37.8848\t145.0846\tShop m018 Chadstone Shopping Centre 1341 Dandenong Road CHADSTONE\tVIC\t929\t24749\t18224\n10010805\t-37.8841\t145.0559\t1060 Dandenong Road CARNEGIE\tVIC\t535\t25657\t22696\n10005820\t-37.8815\t145.29087\tTXA Ferntree Gully Site Monopole 1 Bruce Crescent FERNTREE GULLY\tVIC\t804\t17518\t18331\n10004169\t-37.8792\t145.1656\t263 Springfield Rd GLEN WAVERLEY\tVIC\t1494\t21262\t27783\n10010758\t-37.8765\t145.0035\tCaulfield Grammar School 217 Glen Eira Road ST KILDA EAST\tVIC\t999\t10918\t24323\n10008983\t-37.8763\t145.038\tTower Crane 2 Village Gate 22 Station St Caulfield East\tVIC\t1138\t28568\t21627\n10008982\t-37.8762\t145.0374\tTower Crane 1 Village Gate 22 Station St Caulfield East\tVIC\t829\t22877\t18909\n10008984\t-37.8761\t145.0376\tTower Crane 3 Village Gate 22 Station St Caulfield East\tVIC\t1478\t14233\t22175\n10009960\t-37.874\t145.0552\t61A The Avenue MALVERN EAST\tVIC\t327\t23026\t18718\n10008474\t-37.872\t145.20491\tScoresby North 55R Pumps Road WANTIRNA SOUTH\tVIC\t500\t29774\t22442\n10010025\t-37.8666\t144.7417\t111 Overton Road WILLIAMS LANDING\tVIC\t473\t13353\t27345\n10003297\t-37.8651\t144.70304\tTruganina West 20m monopole 2 Boyanich Court HOPPERS CROSSING\tVIC\t610\t16939\t26779\n10004405\t-37.8618\t144.985197\t194 St Kilda Road ST KILDA\tVIC\t1401\t11987\t27313\n10001653\t-37.8604\t144.9855\tJewish Museum of Victoria 26 Alma Road ST KILDA\tVIC\t1147\t29201\t29399\n10003199\t-37.8599\t144.67668\tTarneit North West 25m light pole 260-280 Hogans Road HOPPERS CROSSING\tVIC\t331\t11262\t25460\n10010759\t-37.8589\t145.0498\t2A Scott Grove GLEN IRIS\tVIC\t110\t18921\t18095\n10008714\t-37.8565\t144.9853\t35 Wellington Street ST KILDA\tVIC\t841\t24473\t23102\n10008974\t-37.853\t144.983\tJewish Care cnr Union Street and Punt Road WINDSOR\tVIC\t1124\t16535\t23821\n10004495\t-37.8514\t145.1297\t373 Burwood Highway BURWOOD\tVIC\t622\t14257\t18438\n10010784\t-37.8503\t144.9905\t14 Porter Street PRAHRAN\tVIC\t1396\t28513\t29097\n10010343\t-37.8501\t144.786567\tDHL Supply Chain 26 - 38 Harcourt Road Altona\tVIC\t655\t25867\t23403\n10010076\t-37.8454\t145.0126\t30 Springfield Avenue TOORAK\tVIC\t902\t26404\t18367\n10004159\t-37.8452\t144.9947\t402 Chapel Street SOUTH YARRA\tVIC\t847\t14152\t25451\n10000859\t-37.8433\t144.9959\t8-12 Garden Street SOUTH YARRA\tVIC\t1043\t26208\t23495\n10001697\t-37.8425\t144.9773\t478 St Kilda Road MELBOURNE\tVIC\t763\t14099\t19447\n10005683\t-37.8393\t144.9952\tCrane 1 625 Chapel Street SOUTH YARRA\tVIC\t1351\t22409\t27412\n10005685\t-37.839\t144.9954\tCrane 3 625 Chapel Street SOUTH YARRA\tVIC\t931\t22981\t25702\n10005734\t-37.8389\t144.9954\t625 Chapel Street SOUTH YARRA\tVIC\t1269\t20939\t25155\n10003082\t-37.8388\t144.9756\t450 St Kilda Road MELBOURNE\tVIC\t1405\t26766\t29562\n10005684\t-37.8386\t144.9952\tCrane 2 625 Chapel Street SOUTH YARRA\tVIC\t827\t29265\t29729\n10005686\t-37.8386\t144.9956\tCrane 4 625 Chapel Street SOUTH YARRA\tVIC\t685\t15084\t19303\n10010073\t-37.8375\t144.9941\t16-22 Claremont Street SOUTH YARRA\tVIC\t255\t15299\t22554\n10010992\t-37.8373\t144.7389\t28 Prosperity Street TRUGANINA\tVIC\t502\t27892\t28140\n10000431\t-37.8367\t144.9668\t74 Eastern Road SOUTH MELBOURNE\tVIC\t703\t25272\t26899\n10005538\t-37.8364\t144.6929\t540 Derrimut Road Tarneit\tVIC\t275\t24837\t26365\n10002164\t-37.8358\t144.76\t2 National Drive TRUGANINA\tVIC\t599\t22976\t19030\n10009651\t-37.8342\t145.0011\t135-141 Alexandra Avenue SOUTH YARRA\tVIC\t654\t22046\t20484\n10004028\t-37.8328\t144.9599\t228 Dorcas Street SOUTH MELBOURNE\tVIC\t1443\t21442\t20788\n10005876\t-37.8317\t144.9085\tWestgate Park off West Gate Freeway PORT MELBOURNE\tVIC\t1132\t28889\t18764\n10000537\t-37.8315\t144.9479\t165-167 Gladstone Street SOUTH MELBOURNE\tVIC\t964\t16181\t19742\n10009650\t-37.8305\t144.9902\tcnr Cremorne and Bent Streets CREMORNE\tVIC\t873\t27395\t23977\n10003393\t-37.8302\t144.653502\tCnr of Leakes Rd and Davis Rd TARNEIT\tVIC\t1155\t25448\t20492\n10004825\t-37.8301\t145.0589\tAldi Camberwell 15-25 Station Street Camberwell\tVIC\t1038\t22140\t22520\n10010979\t-37.8294\t144.9701\t25-29 Coventry Street SOUTHBANK\tVIC\t294\t24287\t24086\n10004299\t-37.829\t145.0547\tCamberwell Village 139 - 159 Camberwell Rd CAMBERWELL\tVIC\t454\t19347\t18427\n10000616\t-37.8274\t144.9563\t52 Haig Street SOUTHBANK\tVIC\t1388\t26251\t26567\n10000827\t-37.8257\t144.8899\tWestgate Bridge Structure_1 Westgate Bridge Freeway PORT MELBOURNE SPOTSWOOD\tVIC\t287\t16253\t22634\n10008690\t-37.8257\t144.9629\t93-119 Kavanagh Street SOUTHBANK\tVIC\t305\t28027\t27800\n10005413\t-37.8241\t144.9638\t54-68 Kavanagh Street SOUTHBANK\tVIC\t207\t21946\t19388\n10004412\t-37.824\t144.8541\t62-70 Export Drive BROOKLYN\tVIC\t424\t20405\t20496\n10008582\t-37.8228\t145.2368\tAquinas College Great Ryrie Street RINGWOOD\tVIC\t910\t18823\t25905\n10000634\t-37.8226\t144.93\t808 Lorimer Street PORT MELBOURNE\tVIC\t1330\t21204\t18253\n10000091\t-37.8222\t144.9661\tOaks Southbank 57-61 City Road SOUTHBANK\tVIC\t1288\t21677\t29992\n10005950\t-37.8222\t144.9797\tCrane between Rod Laver Arena and Melbourne Park cnr Batman Avenue and Swan Street MELBOURNE\tVIC\t993\t24120\t28317\n10008877\t-37.8217\t144.9246\tUnit 1, 706 Lorimer Street PORT MELBOURNE\tVIC\t525\t25495\t26974\n10002675\t-37.8209\t145.0344\t1 Grace Street HAWTHORN\tVIC\t988\t27146\t20965\n10001696\t-37.8208\t145.0085\t203 Burnley Street RICHMOND\tVIC\t195\t13883\t24781\n10000801\t-37.8203\t145.01347\t642 Bridge Road Richmond\tVIC\t1272\t29219\t21786\n10010537\t-37.8201\t144.9215\t29 South Wharf Lorimer St PORT MELBOURNE\tVIC\t1458\t13687\t24791\n10007586\t-37.8201\t145.123236\t545 Station St Box Hill\tVIC\t1433\t24176\t22727\n10010153\t-37.8192\t144.9518\t664 Collins Street DOCKLANDS\tVIC\t303\t29656\t29075\n10000143\t-37.8189\t144.9751\tCircus Oz Birrarung Marr MELBOURNE\tVIC\t448\t16170\t25677\n10005902\t-37.8188\t144.9587\tCrane 2 477 Collins Street MELBOURNE\tVIC\t643\t18713\t27166\n10005901\t-37.8184\t144.9586\tCrane 1 477 Collins Street MELBOURNE\tVIC\t223\t28979\t18264\n10001257\t-37.818\t145.3128\t135 -141 Canterbury Rd KILSYTH\tVIC\t1427\t24577\t24213\n10010142\t-37.8179\t144.9652\t276 Flinders Street MELBOURNE\tVIC\t285\t11413\t20701\n10005825\t-37.8179\t144.9956\t153-177 Bridge Road RICHMOND\tVIC\t452\t21669\t28429\n10010212\t-37.8179\t145.1257\t999 Whitehorse Road BOX HILL\tVIC\t850\t16170\t20261\n10002361\t-37.8178\t144.9956\tCrane 153-177 Bridge Road RICHMOND\tVIC\t750\t10219\t25136\n10003387\t-37.8174\t144.9961\t2 Hull Street RICHMOND\tVIC\t542\t20182\t20507\n10000609\t-37.8171\t144.994\tTelstra Site Leigh Place Richmond\tVIC\t639\t15590\t21568\n10008951\t-37.817\t144.9688\tTower crane 1 180 Flinders Street MELBOURNE\tVIC\t845\t14683\t19884\n10008950\t-37.8166\t144.9686\tTower crane 2 180 Flinders Street MELBOURNE\tVIC\t463\t14890\t29239\n10006243\t-37.8164\t145.131858\tTower Crane 40 Dorking Rd Box Hill\tVIC\t383\t19725\t28740\n10010754\t-37.8163\t145.1067\t692 Whitehorse Road MONT ALBERT\tVIC\t881\t10546\t23495\n10005999\t-37.8162\t144.9657\t257 Collins Street Melbourne\tVIC\t884\t18346\t24092\n10008522\t-37.8162\t145.1817\tWhitehorse Centre 379 Whitehorse Road NUNAWADING\tVIC\t785\t20077\t24993\n10002105\t-37.816\t145.1212\t19 Irving Avenue BOX HILL\tVIC\t1325\t26324\t23691\n10000476\t-37.8152\t144.9391\t429 Docklands Drive DOCKLANDS\tVIC\t1161\t24449\t19002\n10010419\t-37.8152\t144.9512\tShop MM4 Spencer Outlet Centre 201 Spencer Street DOCKLANDS\tVIC\t1296\t22859\t19459\n10009796\t-37.8151\t144.9686\tShop 1/161 Collins Street MELBOURNE\tVIC\t1060\t27927\t26634\n10002092\t-37.815\t144.9543\t605 Lonsdale Street MELBOURNE\tVIC\t327\t12312\t27921\n10008990\t-37.8149\t144.9993\t130-140 Church Street RICHMOND\tVIC\t1348\t12580\t29509\n10008817\t-37.8149\t144.964888\tPower Pole 287-297 Little Collins St MELBOURNE\tVIC\t351\t21548\t23552\n10002652\t-37.8148\t145.012\t9-15 David Street RICHMOND\tVIC\t1306\t28525\t26633\n10007624\t-37.8144\t144.9512\tPolice Complex 263 - 283 Spencer St MELBOURNE\tVIC\t828\t28275\t28903\n10010458\t-37.8143\t144.7672\t9-15 Foundation Road TRUGANINA\tVIC\t560\t27110\t28707\n10002244\t-37.8142\t144.955\t580 Lonsdale Street MELBOURNE\tVIC\t744\t18641\t23280\n10009577\t-37.814\t144.9704\t90 Collins Street MELBOURNE\tVIC\t896\t14486\t18566\n10005262\t-37.814\t144.94102\tCrane 2 387-395 Docklands Drive DOCKLANDS\tVIC\t960\t17560\t21273\n10000738\t-37.814\t145.2305\tCrane at Eastland Shopping Centre 171 Maroondah Highway RINGWOOD\tVIC\t1113\t12452\t28625\n10010617\t-37.8139\t145.1244\t757 Station Street BOX HILL\tVIC\t446\t13316\t22653\n10010529\t-37.8134\t144.9384\tThe District Docklands Shopping Precinct SCF11 107-109 Studio Lane DOCKLANDS\tVIC\t120\t18151\t21185\n10010413\t-37.8133\t144.8863\t111 Sommerville Road FOOTSCRAY\tVIC\t884\t13437\t24408\n10007065\t-37.8126\t144.958396\tMelbourne Childrens Court of Victoria 477 Little Lonsdale Street Melbourne\tVIC\t736\t18663\t22593\n10010414\t-37.8125\t144.8787\t221 Sommerville Road FOOTSCRAY\tVIC\t706\t28788\t18302\n10000503\t-37.8123\t144.9608\t388 Lonsdale Street MELBOURNE\tVIC\t1014\t17810\t28939\n10008964\t-37.8119\t144.8127\t5-11 Normanby Avenue SUNSHINE WEST\tVIC\t863\t18630\t21315\n10003136\t-37.8119\t144.9682\tBillboard The Venue 170 Russell Street MELBOURNE\tVIC\t134\t24363\t25748\n10010397\t-37.8118\t144.9773\t2 St Andrews Place EAST MELBOURNE\tVIC\t481\t19171\t29451\n10002963\t-37.8115\t144.9606\t296-300 Little Lonsdale Street MELBOURNE\tVIC\t874\t27820\t26355\n10000536\t-37.8113\t144.9929\t34-40 Elizabeth Street RICHMOND\tVIC\t1386\t18211\t22494\n10003565\t-37.811\t144.9696\tHer Majesty\u0027s Theatre 219 Exhibition St MELBOURNE\tVIC\t1177\t27475\t29353\n10000027\t-37.8109\t144.9371\tCostco Docklands 381-383 Footscray Road DOCKLANDS\tVIC\t843\t20341\t19731\n10009602\t-37.8109\t144.9679\t157 Lonsdale Street MELBOURNE\tVIC\t890\t23731\t25221\n10004104\t-37.8097\t144.9571\t229 Franklin Street MELBOURNE\tVIC\t708\t22489\t29936\n10008072\t-37.8094\t144.9628\t17 Little La Trobe Street MELBOURNE\tVIC\t133\t17527\t22452\n10010901\t-37.8088\t144.9675\t141 La Trobe Street MELBOURNE\tVIC\t712\t15025\t24560\n10010662\t-37.8083\t144.8273\t30-34 Strzelecki Avenue SUNSHINE WEST\tVIC\t1056\t27340\t19753\n10011029\t-37.8077\t144.9862\t36 Wellington COLLINGWOOD\tVIC\t546\t29334\t24854\n10003978\t-37.8076\t144.9682\t353 Exhibition Street MELBOURNE\tVIC\t753\t26233\t20635\n10010154\t-37.8071\t144.984\t15-21 Derby Street COLLINGWOOD\tVIC\t240\t24798\t25341\n10002771\t-37.8063\t144.9802\t166 Gertrude Street FITZROY\tVIC\t1335\t13854\t22282\n10003975\t-37.8055\t144.9481\t621 King Street WEST MELBOURNE\tVIC\t796\t25744\t18988\n10003245\t-37.8046\t144.98292\tFITZROY Rooftop 145 Smith St FITZROY?\tVIC\t225\t29886\t22227\n10005922\t-37.8038\t145.0378\t363-369 High Street Kew\tVIC\t637\t19108\t19393\n10006881\t-37.8024\t144.9601\tLaw Building Melbourne University cnr Barry and Pelham Streets CARLTON\tVIC\t676\t11937\t24539\n10010964\t-37.8024\t144.9933\t112-120 Vere Street ABBOTSFORD\tVIC\t1006\t18645\t24754\n10003464\t-37.802\t144.955614\t21 Bedford Street North Melbourne\tVIC\t679\t29916\t25490\n10010814\t-37.8018\t144.7715\t210 Swann Drive DERRIMUT\tVIC\t366\t29002\t25655\n10010333\t-37.8004\t144.9536\t15-27 Wreckyn Street NORTH MELBORNE\tVIC\t937\t22623\t20539\n10009847\t-37.8003\t144.9087\tcnr Maribyrnong Street and Hopkins Street FOOTSCRAY\tVIC\t1389\t26927\t29769\n10000635\t-37.8001\t144.9069\t18-24 Hopkins Street FOOTSCRAY\tVIC\t1238\t20169\t21470\n10008583\t-37.7998\t144.9098\t2 Hopkins St FOOTSCRAY\tVIC\t818\t21896\t20137\n10006882\t-37.7982\t144.9586\tKenneth Myer Carpark cnr Royal Parade and Genetics Lane PARKVILLE\tVIC\t182\t27872\t25946\n10000263\t-37.798\t144.9679\tLygon Court Shopping Centre 380 Lygon Street CARLTON\tVIC\t942\t20451\t27654\n10006883\t-37.7975\t144.9657\tEastern Carpark Melbourne University 375 Cardigan Street CARLTON\tVIC\t805\t15653\t23648\n10001901\t-37.7973\t144.9541\tBio21 Institute 30 Flemington Rd PARKVILLE\tVIC\t754\t13524\t18322\n10010274\t-37.7971\t144.9743\t1 Palmerston Street CARLTON\tVIC\t949\t29190\t23545\n10003963\t-37.7961\t144.9166\t71-86 Hobsons Road KENSINGTON\tVIC\t825\t18206\t22138\n10004212\t-37.7961\t144.9408\t113 Canning Street NORTH MELBOURNE\tVIC\t805\t23677\t22343\n10005738\t-37.7951\t144.9489\t179-191 Flemington Road NORTH MELBOURNE\tVIC\t506\t20914\t20599\n10004234\t-37.7932\t144.9991\t122-138 Roseneath Street CLIFTON HILL\tVIC\t1411\t24370\t25931\n10009846\t-37.7912\t144.8908\t124-188 Ballarat Road FOOTSCRAY\tVIC\t849\t24286\t19324\n10008587\t-37.7842\t145.1156\t535 Doncaster Road DONCASTER\tVIC\t850\t20331\t18857\n10005452\t-37.7837\t144.91531\tAscot Vale South 400 EPSOM RD FLEMINGTON\tVIC\t526\t13112\t23732\n10001637\t-37.7836\t145.1256\tMyer Doncaster Westfield Doncaster 619 Doncaster Road DONCASTER\tVIC\t447\t14804\t18218\n10009359\t-37.7815\t144.875\t108 Mitchell Street MAIDSTONE\tVIC\t1304\t26151\t22884\n10002345\t-37.7807\t145.6111\t2431 Warburton Highway YARRA JUNCTION\tVIC\t113\t22635\t25195\n10003303\t-37.7786\t144.971\t8 Lygon Street BRUNSWICK EAST\tVIC\t1364\t25737\t26041\n10003057\t-37.7784\t145.4589\tAldi Seville 638 Warburton Highway Seville\tVIC\t928\t14021\t19708\n10001695\t-37.778\t144.9711\t22-30 Lygon Street BRUNSWICK EAST\tVIC\t827\t27675\t29149\n10010661\t-37.7754\t144.9586\t325 Barkly Street BRUNSWICK\tVIC\t896\t18877\t18253\n10000529\t-37.7752\t145.48856\tNBN Co Site 773 Warburton Highway Seville East\tVIC\t1047\t19731\t28278\n10004074\t-37.767\t144.9986\t445-453 High Street NORTHCOTE\tVIC\t399\t27596\t23853\n10002849\t-37.7654\t144.9217\tCrane 5 40 Hall Street MOONEE PONDS\tVIC\t513\t21517\t24284\n10002848\t-37.7653\t144.9199\tCrane 1 40 Hall Street MOONEE PONDS\tVIC\t1018\t25008\t24975\n10004413\t-37.7636\t144.9617\t8 Breese Street BRUNSWICK\tVIC\t345\t10936\t23011\n10000380\t-37.7626\t144.9619\t26 Breese Street BRUNSWICK\tVIC\t682\t22475\t29945\n10008288\t-37.7611\t144.83769\tSunshine 2 42 Harvester Avenue SUNSHINE NORTH\tVIC\t372\t11223\t27511\n10010024\t-37.7563\t144.9169\t15-21 Russell Street ESSENDON\tVIC\t691\t24370\t18435\n10003357\t-37.7552\t145.0558\t443 Upper Heidelberg Road HEIDELBERG\tVIC\t888\t25377\t20111\n10006581\t-37.7541\t145.6534\tTelstra Site 3045 Warburton Highway Millgrove\tVIC\t919\t23572\t18571\n10002253\t-37.7533\t144.943947\t444-446 Moreland Rd Brunswick\tVIC\t1414\t23227\t21001\n10010176\t-37.7465\t145.0023\t165-191 High Street PRESTON\tVIC\t1326\t13938\t20250\n10002818\t-37.7417\t140.78\tMount Gambier Airport 109 Airport Road, Wandilo SA 5291 Wandilo\tSA\t1334\t28427\t18112\n10002233\t-37.7399\t145.0018\tALDI Preston Market 18 Cramer St Preston\tVIC\t623\t25758\t18628\n10001458\t-37.7379\t145.028781\tAldi Northland 2 - 50 Murray Road PRESTON\tVIC\t624\t24780\t19650\n10001005\t-37.7306\t145.1084\t4 Main Road LOWER PLENTY\tVIC\t846\t14735\t23858\n10004609\t-37.7303\t144.2568\tYaloak South Development nominal centre point Yaloak Creek off Glenmore Road BALLAN\tVIC\t686\t23588\t20884\n10005965\t-37.7286\t145.31313\tNBN Co Site 285 Edward Road CHIRNSIDE PARK\tVIC\t1200\t12106\t20660\n10007168\t-37.716\t145.006\tM8527 Reservoir Central 4 Edwardes Street RESERVOIR\tVIC\t907\t25814\t20982\n10009510\t-37.7105\t144.8627\t27 Assembly Drive TULLAMARINE\tVIC\t1201\t29821\t27283\n10005937\t-37.7082\t144.8535\tNSA Demo Location 1 6 Aerolink Dr Tullamarine\tVIC\t805\t27791\t27700\n10007166\t-37.7071\t144.45857\tParwan North 4300 Geelong Bacchus Marsh Road PARWAN\tVIC\t267\t10170\t26684\n10001609\t-37.7047\t144.8635\t140 Sharps Road MELBOURNE AIRPORT\tVIC\t756\t29944\t18963\n10010400\t-37.6924\t148.0908\tBoM AWS Compound Mt Nowa Nowa via Two Mile Road NOWA NOWA\tVIC\t1118\t11394\t27459\n10005716\t-37.6919\t145.014\t49B Temple Drive THOMASTOWN\tVIC\t1165\t19548\t21691\n10004309\t-37.6906\t144.8772\t47 Garden Drive TULLAMARINE\tVIC\t1480\t27107\t28010\n10000031\t-37.6905\t145.0248\t319 Settlement Road THOMASTOWN\tVIC\t499\t15399\t29889\n10001026\t-37.687\t144.560535\tAldi Melton West Woodgrove Shopping Centre High St Melton West\tVIC\t826\t22400\t24094\n10000623\t-37.6839\t144.873\t58 Springbank Street TULLAMARINE\tVIC\t1235\t21933\t27116\n10003324\t-37.6833\t145.0705\t7 Graduate Road BUNDOORA\tVIC\t368\t26561\t27964\n10001131\t-37.6826\t144.9561\t1497 Hume Highway CAMPBELLFIELD\tVIC\t1077\t24745\t21642\n10010882\t-37.6805\t144.9199\tShop G027, Broadmeadows Shopping Centre 1099-1169 Pascoe Vale Road BROADMEADOWS\tVIC\t683\t26633\t24282\n10000588\t-37.6801\t145.070292\tVHA Rooftop Site Uni Hill Factory Outlets 2 Janfield Drive BUNDOORA\tVIC\t602\t16433\t26805\n10005719\t-37.6773\t144.9548\t9 - 11 Fabio Court CAMPBELLFIELD\tVIC\t665\t12856\t20107\n10002230\t-37.6742\t144.9082\tConstruction site Valley Park off Erinbank Crescent WESTMEADOWS\tVIC\t259\t24502\t23213\n10005512\t-37.6703\t145.5417\t263 Don Rd HEALSVILLE\tVIC\t1318\t25822\t21193\n10006968\t-37.6605\t144.9381\tBroadcast Mast 44 Kyabram Street Coolaroo\tVIC\t641\t12162\t27031\n10008059\t-37.6591\t145.016019\t40 Deveny Street Epping\tVIC\t484\t25381\t18448\n10010787\t-37.6574\t145.0139\t60 Deveny Road EPPING\tVIC\t155\t14800\t21116\n10006259\t-37.6521\t145.0195\t113 Cooper St EPPING\tVIC\t660\t15202\t20877\n10009008\t-37.6521\t145.5222\t316-334 Maroondah Highway HEALESVILLE\tVIC\t663\t26791\t28358\n10001062\t-37.6507\t145.069338\tAldi Plenty Valley 400 McDonalds Rd Plenty Valley\tVIC\t199\t29109\t25882\n10009690\t-37.6439\t144.9504\t1835 Hume Highway Campbellfield\tVIC\t289\t22810\t29934\n10002101\t-37.6006\t145.0924\tMernda Police Station cnr Bridge Inn Road and Pimpinella Pass MERNDA\tVIC\t1180\t18706\t20023\n10001581\t-37.576\t144.7248\tSunbury Aquatic \u0026 Leisure Centre 20 Ligar Street SUNBURY\tVIC\t1328\t20262\t21398\n10005780\t-37.5637\t144.6903\tNBN Co Site 250A Reservoir Road SUNBURY\tVIC\t848\t23084\t18687\n10006696\t-37.5603\t143.8603\tThe Good Guys Ballarat 33 Grenville St North BALLARAT NORTH\tVIC\t1079\t20956\t22666\n10002589\t-37.535\t143.8218\tAnaconda Wendouree 333 Gillies Street WENDOUREE\tVIC\t1074\t12671\t25030\n10010948\t-37.5325\t147.0053\tBoM Site Reeves Knob off Marathon Road MOROKA\tVIC\t1283\t26243\t18177\n10001299\t-37.5292\t143.8095\t233-243 Learmonth Road WENDOUREE\tVIC\t293\t24447\t27017\n10008479\t-37.5206\t144.72498\tEmu Valley 420 SETTLEMENT ROAD SUNBURY\tVIC\t873\t18350\t28548\n10011052\t-37.4846\t144.5911\t6 Aitken Street GISBORNE\tVIC\t192\t15903\t23945\n10010466\t-37.4462\t145.2445\tTelstra Site 1600 Whittlesea-Yea Road Kinglake West\tVIC\t1172\t15596\t23576\n10005440\t-37.4077\t144.5788\t601 Mount Macedon Rd MOUNT MACEDON\tVIC\t258\t29835\t21534\n10011053\t-37.3908\t145.4768\tBoM Site 4427 Melba Highway GLENBURN\tVIC\t1309\t13326\t23174\n10001678\t-37.375\t145.28595\tNBN Co Site 2646 Whittlesea - Yea Road Flowerdale\tVIC\t483\t11216\t24978\n10009111\t-37.3555\t144.08838\tTelstra Site 3891 Midland Highway Eganstown Hepburn\tVIC\t1200\t21922\t19504\n10008624\t-37.2281\t143.2006\tBOM Site Ben Nevis via Ben Nevis Road EVERSLEY\tVIC\t377\t26721\t25925\n10000269\t-37.1924\t140.889014\tFire Tower Off Cumaum Forest Road Cumaum\tSA\t1494\t26955\t29515\n10006382\t-37.1732\t142.542144\tLakeside Tourist Park Tymna Drive HALLS GAP\tVIC\t247\t15915\t21257\n10009360\t-37.1453\t146.4468\t15 Summit Road MOUNT BULLER\tVIC\t1460\t17102\t18211\n10010949\t-37.1125\t148.8974\tBoM Site Mount Delegate Delegate Hill Track BENDOC\tVIC\t564\t19299\t24997\n10006027\t-37.097\t140.6662\tLimbert DGPS 1679 Moyhall Rd Naracoorte\tSA\t1434\t15666\t18756\n10009881\t-37.074\t149.9077\tWharf Weecoon St EDEN\tNSW\t410\t27576\t21834\n10006291\t-36.9078\t146.26305\tTelstra Site 3324 Tatong-Tolmie Road Archerton\tVIC\t1327\t24617\t25497\n10000288\t-36.8861\t149.89722\tSplash Hillcrest Site 95-97 Merimbula Drive Merimbula\tNSW\t345\t16610\t21718\n10007248\t-36.8051\t142.11983\tLower Norton 44 Push-Hannans Road Lower Norton\tVIC\t579\t12089\t26829\n10009724\t-36.7319\t149.98113\tTelstra Temporary East Cnr of Davidson and Pacific Sts Tathra\tNSW\t229\t19937\t21164\n10003143\t-36.7291\t146.1149\tTelstra Site 47 Tiger Hill Road Tatong\tVIC\t218\t17407\t24424\n10003445\t-36.7265\t149.8427\tBOM Site 41 Grandview Road Black Range\tNSW\t438\t21227\t20776\n10010401\t-36.7141\t142.1967\t24 Darlot Street HORSHAM\tVIC\t1013\t17015\t24233\n10002033\t-36.6694\t142.30356\tLongerenong optus monopole 229 Longerenong Road Longerenong\tVIC\t884\t29617\t29962\n10007418\t-36.6547\t146.6813\tTelstra Site 109 McLees Road Buffalo River Alpine\tVIC\t929\t22565\t28528\n10007350\t-36.6401\t146.20889\tTelstra Site 2081 Kilfeera Rd Upper Ryans Creek\tVIC\t1003\t12132\t18375\n10005017\t-36.6052\t146.87034\tTelstra Site 182 Havilah Road Rosewhite Alpine\tVIC\t147\t18383\t21055\n10004144\t-36.513\t142.5535\t548 Minyp - Coromby Rd MINYP\tVIC\t994\t23972\t27022\n10003600\t-36.4259\t145.240377\tCnr Dhurringile AND Pyke Rd TATURA\tVIC\t611\t15793\t19811\n10010950\t-36.4206\t146.3056\tBoM Site Wangaratta Aerodrome Brian Higgins Drive LACEBY\tVIC\t1314\t19068\t25392\n10004652\t-36.3993\t148.739244\t423 Avonside Rd Avonside\tNSW\t357\t23273\t28929\n10003953\t-36.3979\t144.978774\t5 Olympic Street GIRGARRE\tVIC\t759\t19470\t21018\n10000161\t-36.3814\t145.3981\tShepparton Police Station 155 Welsford Street SHEPPARTON\tVIC\t571\t23812\t19638\n10007790\t-36.3396\t146.0163\tSite 460 Bungeet Road BUNGEET WEST\tVIC\t1417\t24988\t20094\n10003101\t-36.3204\t142.416\tAWIB Site Warracknabeal Aerodrome WARRACKNABEAL 3393\tVIC\t1477\t19901\t18620\n10004608\t-36.2093\t140.589117\tWirrega Lot 3 Dukes Highway WIRREGA\tSA\t533\t27638\t21412\n10003110\t-36.1387\t146.8949\tAldi White Box Rise 6 Wark Street Wodonga\tVIC\t1461\t22249\t27052\n10009564\t-36.1185\t146.8797\t88 Elgin Boulevard WODONGA\tVIC\t578\t19324\t23101\n10007672\t-36.1009\t147.035083\tHume Weir Sewer Filtration Plant 14 Trout Farm Rd Lake Hume Village\tNSW\t1367\t14321\t26374\n10010756\t-36.085\t146.913\t569 Hume Street ALBURY\tNSW\t1427\t28138\t27913\n10007787\t-36.085\t150.0479\tSite 42 Princes Highway BODALLA\tNSW\t225\t10259\t26052\n10007671\t-36.0475\t146.896625\tGlenmorus Gardens 54 Glenmorus St Glenroy\tNSW\t999\t22209\t29291\n10010951\t-36.0294\t146.0306\tBoM Site Yarrawonga Aerodrome Cahills Road YARRAWONGA\tVIC\t735\t21246\t20691\n10004184\t-36.0211\t148.724023\tAdaminaby Lot 13 Old Adaminaby Adaminaby\tNSW\t1207\t17004\t22659\n10002883\t-35.9796\t146.64048\tHowlong optus site 160 Pell Street NSW 2643 Howlong\tNSW\t1115\t23379\t27988\n10002747\t-35.9745\t146.7435\tYaparra Via Chambers Road BUNGOWANNAH\tNSW\t1387\t21824\t29387\n10011020\t-35.9122\t150.080486\tNominal Planning Site Campbell St MORUYA\tNSW\t207\t11298\t28820\n10002255\t-35.8178\t149.1652\tFibre Repeater Site Monaro Highway Colinton\tNSW\t147\t13911\t21463\n10003102\t-35.7151\t142.357\tAWIB Site Hopetoun Aerodrome HOPETOUN 3396\tVIC\t262\t14507\t25752\n10005254\t-35.6542\t137.637\t14 Murray Street KINGSCOTE\tSA\t312\t11650\t28911\n10008174\t-35.625\t137.2065\tOptus Rooftop Site Stokes Bay North Coast Rd and Lightburn Road STOKES BAY\tSA\t1215\t17467\t20519\n10003097\t-35.5569\t138.6228\tBeachside Car Park Cnr Albert Pl and Esplanade VICTOR HARBOUR\tSA\t1057\t27174\t29981\n10004368\t-35.5248\t144.98275\t315 Victoria St DENILIQUIN\tNSW\t1004\t21903\t26007\n10005116\t-35.4449\t138.3139\t15 Jetty Road NORMANVILLE\tSA\t616\t18105\t23038\n10009405\t-35.4309\t149.22075\tHill 800 Reservoir Old Cooma Road GOOGONG\tNSW\t967\t16050\t19153\n10006612\t-35.4174\t149.0643\tThe Good Guys Tuggeranong Hyperdome Shopping Centre 76 Athllon Dr GREENWAY\tACT\t790\t11815\t22584\n10009406\t-35.4026\t149.20583\tHomestead Rise Reservoir Constance Road JERRABOMBERRA\tNSW\t284\t20194\t21577\n10009481\t-35.3945\t149.1651\t71 Seppard Street HUME\tACT\t1331\t26593\t24323\n10008744\t-35.3599\t149.2095\tLetchworth Neighbourhood Centre 28 Miller Street QUEANBEYAN WEST\tNSW\t513\t18173\t26840\n10002396\t-35.3378\t149.1787\t337 Canberra Ave FYSHWICK\tACT\t943\t11629\t29523\n10009831\t-35.3088\t139.5106\tMcCall Repeater site, The Bend Motorsport Park Corner Dukes Hwy and Malley Hwy TAILEM BEND\tSA\t679\t21796\t18842\n10005318\t-35.2888\t149.1434\t51 Constitution Avenue CAMPBELL\tACT\t1364\t10192\t26984\n10009512\t-35.2769\t149.1346\tCommSol CommSite 51 Cooyong Street BRADDON\tACT\t832\t12420\t18496\n10002746\t-35.2649\t141.1807\t27 Poole Street MURRAYVILLE\tVIC\t694\t23438\t19485\n10010182\t-35.2615\t149.4436\tMajara Street between King and Forster Streets BUNGENDORE\tNSW\t862\t20263\t19154\n10003179\t-35.2279\t144.39442\tRIVALEA NIEMUR optus monopole 297 Balpool Ln Niemur\tNSW\t218\t17614\t25617\n10007741\t-35.2114\t144.8175\tTelstra Site Lot 1 cnr Brodribb \u0026 Morris Sts Wanganella Conargo\tNSW\t1407\t27616\t25500\n10004489\t-35.1415\t138.4961\tZorich Colonnades 54 Beach Rd NOARLUNGA CENTRE\tSA\t274\t24713\t29742\n10000471\t-35.1221\t150.07516\tTelstra Site 6218 Nerriga Road Nerriga\tNSW\t895\t24649\t28816\n10000492\t-35.0952\t138.55264\tTelstra Site Cnr Rothschild Street and Frenshams Drive Woodcroft\tSA\t1024\t13219\t21486\n10003197\t-35.0871\t150.6145\tSt Georges Basin 50M LATTICE TOWER The Wool Road ST? GEORGES BASIN\tNSW\t571\t12061\t22219\n10006280\t-35.0825\t139.0658\tBOM Site Callington Hill Adjacent to 325 Highland Road Callington\tSA\t257\t25804\t18471\n10007930\t-35.0076\t138.7191\tOB Site, Stirling Oval Mount Barker Road STIRLING\tSA\t1284\t17246\t23575\n10010181\t-34.9956\t149.0085\tScrubby Lane MURRUMBATEMAN\tNSW\t694\t28480\t26996\n10005689\t-34.9868\t138.595636\tColonel Light Gardens Primary School Windsor Ave Colonel Light Gardens\tSA\t900\t23338\t29956\n10002612\t-34.9803\t138.572311\tTarget Castle Plaza 922 South Rd EDWARDSTOWN\tSA\t281\t21612\t28167\n10007931\t-34.9572\t138.7449\tOB Site Greenhill Road URAIDLA\tSA\t1095\t15174\t25284\n10010359\t-34.9384\t138.5229\t20 Butler Boulevard ADELAIDE AIRPORT\tSA\t137\t14948\t28275\n10005630\t-34.9372\t138.537918\tJames Scofield Drive ADELAIDE AIRPORT\tSA\t1414\t22857\t22767\n10008117\t-34.9291\t139.03413\tNBN Co Site Lot 1790 Harrogate Road Harrogate\tSA\t1023\t24085\t25040\n10003108\t-34.9279\t138.6209\tOB site Wakefield Road ADELAIDE\tSA\t418\t11701\t19906\n10008321\t-34.9256\t138.641\t315 Portrush Road Norwood\tSA\t437\t28248\t21981\n10010215\t-34.9242\t138.5957\tLuminesque 108 Currie St ADELAIDE\tSA\t1244\t16549\t24789\n10005384\t-34.9224\t150.597\tSouth Coast Correctional Centre 55 Links Road NOWRA HILL\tNSW\t267\t18424\t24793\n10007717\t-34.919\t138.614916\tO\u0027Bahn Tunnel Development East Terrace ? Hackney Road Adelaide\tSA\t642\t16114\t25637\n10003098\t-34.9153\t138.5994\tAdelaide OB Site Cnr King William St and Sir Edwin Flack Ave ADELAIDE\tSA\t1128\t21390\t28741\n10005645\t-34.9144\t138.59653\tScoreboard Northern End Of Adelaide Oval War Memorial Drive North Adelaide\tSA\t726\t13981\t26323\n10005929\t-34.9043\t138.692589\tRepeater Site 12 Blue Crescent Woodforde\tSA\t894\t26397\t24181\n10006080\t-34.8824\t150.551472\tNowra Waste Depot 108 Flatrock Rd Mundamia\tNSW\t907\t10645\t26986\n10003099\t-34.8809\t138.7011\tCampbelltown OB Site Maryvale Road ATHELSTONE\tSA\t799\t24866\t19648\n10003096\t-34.848\t138.7835\tParacombe OB Site Paracombe Road PARACOMBE\tSA\t847\t18848\t25761\n10010605\t-34.8358\t138.6067\tBCF 720 Main North Rd GEPPS CROSS\tSA\t1376\t12627\t19728\n10000511\t-34.821\t138.6018\tObela Global 3 Norman Crescent Cavan\tSA\t1076\t16644\t20746\n10008615\t-34.7662\t138.62422\tTelstra Site 155-185 Winzor Street Salisbury Downs\tSA\t320\t17742\t20323\n10004145\t-34.7615\t138.6055\tBethany Christian School 37 Countess Street PARALOWIE\tSA\t745\t14058\t18744\n10001975\t-34.7345\t135.85658\tPort Lincoln South 10 Winsor Ave Port Lincoln\tSA\t1281\t29504\t20225\n10003504\t-34.6454\t150.85457\tDTRS Site Kiama Downs Behind 29 Cliff Dr KIAMA DOWNS\tNSW\t988\t29943\t20295\n10004479\t-34.6367\t150.85344\t13 Johnson Street Kiama Downs\tNSW\t816\t14149\t22049\n10009290\t-34.6041\t135.85413\tTelstra Site Lot 97 Murray Drive North Shields\tSA\t154\t22334\t18681\n10003095\t-34.5994\t138.8873\tLyndoch OB Site Barossa Valley Way LYNDOCH\tSA\t764\t10232\t22191\n10008495\t-34.5953\t138.51449\tA0515 Two Wells Central 43 Old Port Wakefield Rd TWO WELLS\tSA\t454\t11219\t23150\n10005207\t-34.5887\t146.385733\t3 Mile Regulator Tower Research Rd near Amato Rd Leeton\tNSW\t1299\t20131\t21370\n10004303\t-34.5876\t150.8673\tShell Cove Marina SHELL COVE\tNSW\t952\t18896\t25147\n10005576\t-34.5722\t139.29423\tTelstra Exchange 2703 Stott Highway Sedan\tSA\t1341\t18167\t23784\n10010436\t-34.5596\t150.37395\tMoss Vale South 38-40 Arthur Street MOSS VALE\tNSW\t1105\t22811\t23867\n10010943\t-34.551\t150.3738\tMoss Vale Aquatic Leisure Centre 8 Kirkham Street MOSS VALE\tNSW\t458\t27983\t27614\n10007237\t-34.5458\t139.0807\t476 Eden Valley Rd ANGASTON\tSA\t325\t15130\t26012\n10005353\t-34.5416\t148.32283\tMast 1 250m SW of Junction of Burley Griffin Hwy / Wombat Harden\tNSW\t349\t15964\t19243\n10005354\t-34.541\t148.32489\tOld Substation Compound 313 Burley Griffin Hwy Harden\tNSW\t628\t17577\t29232\n10009765\t-34.4946\t150.893\t178 Shellharbour Road PORT KEMBLA\tNSW\t720\t25245\t29640\n10007806\t-34.4738\t138.9938\tALDI Nuriootpa 1 Murray St NURIOOTPA\tSA\t811\t23389\t21512\n10006666\t-34.4667\t139.10616\tMoculta Lot281 Moculta Road Moculta\tSA\t1410\t15305\t29735\n10005308\t-34.4655\t147.745226\tSpringdale 6106 Burley Griffin Way Springdale\tNSW\t806\t24600\t23989\n10001281\t-34.4469\t138.505571\tGrainflow Site Mallala-Two Wells Rd 1km South of Mallala Mallala\tSA\t699\t21308\t25724\n10005256\t-34.446\t116.033\tCnr Brockman and Dean Streets PEMBERTON\tWA\t1177\t16126\t21992\n10010120\t-34.4375\t138.586331\tcnr Coleman and Farrelly Roads PINKERTON PLAINS\tSA\t1317\t20681\t18970\n10001302\t-34.4256\t150.9026\t25-29 Harbour Street WOLLONGONG\tNSW\t219\t26030\t27434\n10006144\t-34.4254\t150.8933\tTrade Secret 200 Crown St WOLLONGONG\tNSW\t1461\t17180\t20764\n10009803\t-34.4254\t150.9034\t2-4 Parkside Avenue WOLLONGONG\tNSW\t489\t22752\t22538\n10009766\t-34.4249\t150.9027\t17 Harbour Street WOLLONGONG\tNSW\t516\t17732\t21050\n10008275\t-34.4249\t150.888219\t45 Denison Street Wollongong\tNSW\t1240\t26484\t27341\n10008396\t-34.4248\t150.894743\tDavid Jones Wollongong Central 200 Crown St Wollongong\tNSW\t801\t26203\t26172\n10005657\t-34.4243\t138.26161\tNBN Co Monopole Section 400 North Parham Road Windsor\tSA\t651\t16407\t26582\n10004793\t-34.4243\t138.26172\tPort Parham North Parham Road WINDSOR?\tSA\t1474\t19641\t26735\n10005968\t-34.4167\t149.3255\tcnr Boobalaga Road \u0026 Red Hill Rd Lost River\tNSW\t1229\t23389\t20525\n10002763\t-34.4076\t139.126036\t1 Railway Terrace Truro\tSA\t1264\t18690\t22536\n10001297\t-34.3839\t137.667154\tGrainflow Site Minlaton-Maitland Rd 2km S of Maitland Maitland\tSA\t1265\t27096\t24645\n10007778\t-34.3169\t148.302\tAlfred Oval 2 Lachlan Street YOUNG\tNSW\t1462\t12528\t29930\n10005933\t-34.3126\t148.52728\tTelstra Site 1581 Geegullalong Road Murringo Young\tNSW\t180\t27074\t26024\n10010237\t-34.2102\t142.1415\tMildura Gateway Tavern 795-807 Fifteenth Street MILDURA\tVIC\t1219\t13684\t21072\n10005851\t-34.1572\t138.74715\tTelstra Exchange Lot 241 Plan F23878 Charles Street RIVERTON\tSA\t1302\t20041\t29719\n10008322\t-34.1318\t150.82303\tNBN Co Monopole 29 Pheasants Road Wedderburn\tNSW\t194\t23862\t28278\n10000530\t-34.0858\t151.0077\t11 Veno Street HEATHCOTE\tNSW\t937\t10312\t29069\n10004156\t-34.064\t150.8177\t18-22 Broughton Street CAMPBELLTOWN\tNSW\t632\t15204\t23073\n10003396\t-34.0632\t150.4531\tNattai RT Burragorang Road Nattai\tNSW\t435\t23546\t27691\n10009556\t-34.0604\t148.8532\tFrogmore Road HOVELLS CREEK\tNSW\t1492\t15256\t21559\n10006637\t-34.059\t150.8157\tThe Good Guys Campbelltown Homebase Campbelltown 24 Blaxland Rd CAMPBELLTOWN\tNSW\t603\t13115\t24507\n10004206\t-34.049\t151.1567\t21-23 Prince Street CRONULLA\tNSW\t1248\t14717\t20256\n10002149\t-34.0483\t150.7592\tMt Annan Marketplace 11-13 Main Street MT ANNAN\tNSW\t547\t17250\t27145\n10010773\t-34.0204\t150.7639\tENZOS 1 Gregory Hills Dr GLEDSWOOD HILLS\tNSW\t475\t24672\t21464\n10006025\t-34.0149\t151.0655\t38 Railway Cres JANNALI\tNSW\t195\t14584\t24586\n10003440\t-34.0106\t150.8886\tBOM Site near Ingleburn Weir Holsworthy\tNSW\t1133\t17646\t19978\n10006281\t-33.9993\t138.9095\tBOM Site Waterloo East Schutz Road 2.9 km East of Waterloo\tSA\t1007\t26427\t20803\n10002202\t-33.965\t151.1359\t13-19 Hogben Street KOGARAH\tNSW\t187\t10361\t24955\n10007569\t-33.9527\t118.77068\tTelstra Exchange Lot 5 Gnowangerup-Jerramungup Road Needilup Jerramungup\tWA\t1277\t13538\t26118\n10000534\t-33.952\t151.2311\tSouthport Shopping Centre 232-262 Bunnerong Road HILLSDALE\tNSW\t708\t18245\t24611\n10010572\t-33.951\t150.9246\tConstruction site 400 Moorebank Avenue MOOREBANK\tNSW\t759\t19884\t28429\n10009479\t-33.9478\t151.1942\t5/1A Hale Street BOTANY\tNSW\t1488\t16046\t23905\n10001010\t-33.9436\t151.22626\tCrane 4 Cnr Banks Ave \u0026 Westfield Drive Eastgardens\tNSW\t227\t21764\t19380\n10005720\t-33.9419\t150.9998\t91 Marigold St REVESBY\tNSW\t597\t21694\t26199\n10002217\t-33.9413\t151.0004\t71 Marigold St REVESBY\tNSW\t215\t16595\t26809\n10002934\t-33.9352\t151.2186\tEastlake Golf Club Cnr Gardeners Road \u0026 Isaac Smith Street Eastlakes\tNSW\t431\t26126\t23240\n10010612\t-33.9316\t151.0555\t1347 Canterbury Road PUNCHBOWL\tNSW\t964\t27644\t25243\n10004933\t-33.9306\t138.6773\tBOM Site Mount Horrocks 4.5 km WSW of Mintaro\tSA\t328\t20926\t22267\n10006279\t-33.9292\t138.8145\tBOM Site Cooinda 695 Bowmans Road Mintaro\tSA\t1450\t29961\t24591\n10002349\t-33.9278\t151.1546\t3A Magdalene Terrace WOLLI CREEK\tNSW\t617\t22682\t29191\n10004154\t-33.924\t151.1867\t246 Coward Street MASCOT\tNSW\t1253\t10646\t18386\n10008058\t-33.9225\t151.06803\tKing Georges Rd and The Boulevarde MC Cnr King Georges Rd and The Boulevarde WILEY PARK\tNSW\t1168\t24646\t21550\n10001367\t-33.9218\t150.921182\tAldi Liverpool Plaza 165 - 191 Macquarie st LIVERPOOL\tNSW\t286\t15218\t26729\n10006735\t-33.9216\t151.1671\t634-726 Princes Highway Tempe\tNSW\t1013\t17091\t25632\n10009534\t-33.9179\t151.26035\tCoogee North -V 23 Baden Street COOGEE\tNSW\t264\t23820\t28277\n10006837\t-33.9159\t151.2166\tAustralian Golf Club Broadcast Site 53 Bannerman Cr Rosebery\tNSW\t1085\t17912\t18058\n10002413\t-33.9128\t151.1176\t211-215 Canterbury Road CANTERBURY\tNSW\t323\t21122\t23007\n10007573\t-33.9126\t115.54033\tTelstra Site Cnr of Jalbarragup \u0026 Mowen Rd Barrabup\tWA\t1065\t28648\t18922\n10003457\t-33.9122\t151.1196\tTelstra Site 208 Canterbury Road Canterbury\tNSW\t1323\t15789\t25147\n10010887\t-33.9082\t150.921\tLiverpool Fashion Spree Outlet 5 Viscount Place LIVERPOOL\tNSW\t262\t13066\t22865\n10000535\t-33.9074\t150.8677\tThe Valley Plaza 187 Wilson Road GREEN VALLEY\tNSW\t775\t29298\t27926\n10001310\t-33.9065\t151.172783\tAldi Marrickville Marrickville metro shopping centre MARRICKVILLE\tNSW\t1164\t10458\t20398\n10000718\t-33.9053\t151.1317\t630-634 New Canterbury Road HURLSTONE PARK\tNSW\t1055\t11838\t18629\n10004363\t-33.9028\t151.0664\t77-79 Roberts Road GREENACRE\tNSW\t433\t11314\t25072\n10010354\t-33.8974\t151.2559\t131 Birrell St WAVERLEY\tNSW\t142\t26986\t27612\n10003582\t-33.8969\t151.1944\tLot 9 Australian Technology Park REDFERN\tNSW\t1480\t21996\t24792\n10011006\t-33.8956\t151.22148\tTelstra Street Cell Anzac Parade Moore Park Sydney\tNSW\t1453\t15926\t22043\n10009785\t-33.8924\t150.77902\tTelstra Street Cell NE Cnr of Western \u0026 Tavistock Rds Kemps Creek\tNSW\t426\t14961\t27218\n10005051\t-33.8856\t151.199344\tCrnr O\u0027Conner St and Carlton St Chippendale\tNSW\t1036\t27200\t18017\n10005733\t-33.8845\t150.95661\tLight Pole Parkes Reserve, Prospect Road Canley Vale\tNSW\t911\t24685\t23227\n10010483\t-33.8844\t151.2042\t18 Lee Street HAYMARKET\tNSW\t177\t25819\t27178\n10003389\t-33.8817\t151.2053\t11 Rawson Place SYDNEY\tNSW\t343\t25181\t29664\n10000833\t-33.8782\t151.1774\tCrane Precinct 5 Ross Street FOREST LODGE\tNSW\t1039\t10322\t24164\n10009224\t-33.8752\t151.2042\t319 - 325 Sussex St SYDNEY\tNSW\t1296\t17188\t26433\n10003340\t-33.874\t151.0983\t10 Gladstone Street BURWOOD\tNSW\t436\t20215\t19335\n10000572\t-33.871\t151.1987\tShop 412 Harbourside Shopping Centre 231/2-10 Darling Drive DARLING HARBOUR\tNSW\t666\t23040\t23882\n10009885\t-33.8702\t151.2099\tDavid Jones Department Store 86 - 108 Castlereagh st SYDNEY\tNSW\t1362\t18336\t28646\n10004587\t-33.8684\t151.1937\t100 Harris St PYRMONT\tNSW\t972\t22765\t29031\n10001724\t-33.8656\t151.20513\tIBC 34 Clarence Street Sydney\tNSW\t1363\t25843\t25939\n10005589\t-33.8655\t151.21077\tTelstra Rooftop Site Sofitel Hotel 61- 101 Phillip Street SYDNEY\tNSW\t260\t24015\t21614\n10010806\t-33.8637\t151.1947\t26 - 32 Pirrama Rd PYRMOUNT\tNSW\t231\t19586\t26934\n10004178\t-33.8627\t151.222243\tLight Pole SC10 Macquarie\u0027s Chair 1D Mrs Macquaries Rd SYDNEY\tNSW\t876\t21231\t29870\n10001703\t-33.8618\t151.0804\t2-6 Hillcrest Street HOMEBUSH\tNSW\t1229\t11289\t24395\n10003223\t-33.8616\t151.1789\t100-104 Reynolds Street BALMAIN\tNSW\t1451\t28711\t20300\n10009495\t-33.8612\t151.0183\tAuburn Tennis Centre 181 Chisholm Rd AUBURN\tNSW\t1305\t29863\t28247\n10007983\t-33.8607\t151.0574\t38 Birnie Ave LIDCOMBE\tNSW\t574\t18870\t29964\n10008876\t-33.8596\t116.40619\tBoyup Brook 5241 Kojonup Road Boyup Brook\tWA\t1270\t16712\t20485\n10009385\t-33.8595\t151.2221\tOB Site Mrs Macquarie\u0027s Rd SYDNEY\tNSW\t501\t27661\t27985\n10002153\t-33.8556\t151.2736\tVaucluse House 69A Wentworth Rd VAUCLUSE\tNSW\t215\t28634\t21835\n10007702\t-33.8539\t150.98703\t291 Guildford Road GUILDFORD\tNSW\t678\t25804\t24243\n10010233\t-33.8484\t151.072684\tCnr Figtree Dve AND Australia Ave SYDNEY OLYMPIC PARK\tNSW\t283\t22051\t27951\n10004376\t-33.8452\t150.68505\tOrchard Hills North Littlefields Road Orchards Hills\tNSW\t1101\t13081\t24783\n10004398\t-33.8444\t151.0746\t4 Murray Rose Avenue OLYMPIC PARK\tNSW\t646\t22945\t27627\n10000517\t-33.8383\t151.206852\tNth cnr Miller Street and Pacific Highway NORTH SYDNEY\tNSW\t885\t20500\t26532\n10010452\t-33.8374\t121.8983\tKleenheat Esperance 40 Norseman Road CHADWICK\tWA\t238\t14661\t20264\n10009060\t-33.8368\t151.12591\tASHBURN HOUSE RPTR 20-34 ASHBURN PLACE GLADESVILLE\tNSW\t1233\t26316\t18178\n10010873\t-33.8309\t150.9699\t11-19 Centenary Road MERRYLANDS\tNSW\t477\t26141\t27815\n10010670\t-33.8255\t151.2002\t31 Hume St CROWN NEST\tNSW\t740\t12007\t19564\n10009647\t-33.8228\t151.1925\t3 Herbert Street ST LEONARDS\tNSW\t251\t23315\t22850\n10005798\t-33.8212\t150.787\t111-113 Quarry Road ERSKINE PARK\tNSW\t987\t23893\t25833\n10002154\t-33.8211\t151.0179\tElizabeth Farm 70 Alice Street ROSEHILL\tNSW\t186\t14958\t20392\n10008719\t-33.8177\t149.32024\tTelstra Site 67 Hobbys Yards Road Trunkey Creek Bathurst\tNSW\t838\t11846\t28341\n10005707\t-33.8173\t151.002\tMyer Westfield Parramatta 159-175 Church Street PARRAMATTA\tNSW\t355\t24206\t20176\n10003557\t-33.8046\t151.03239\tDTRS Site Rydalmere Off Calder Rd RYDALMERE\tNSW\t1130\t22731\t23974\n10009996\t-33.8019\t150.9845\tDragonfly Drive WESTMEAD\tNSW\t307\t16951\t19695\n10008381\t-33.8006\t151.04955\t20 Dorahy Street DUNDAS\tNSW\t288\t14819\t25862\n10006944\t-33.8001\t150.919\tFantastic Furniture 19 Stoddart Road Prospect\tNSW\t468\t22231\t29546\n10002820\t-33.7974\t150.941\t140 Gilba Road GIRRAWEEN\tNSW\t929\t29242\t28724\n10007501\t-33.7955\t151.04497\t7A Evans Road TELOPEA\tNSW\t1245\t29133\t24987\n10000029\t-33.7876\t150.8815\t27 Holbeche Road ARNDELL PARK\tNSW\t1382\t22598\t18059\n10010007\t-33.7871\t151.158\tHamilton Corner LINDFIELD\tNSW\t650\t18438\t19509\n10009018\t-33.7847\t151.120567\tOCSF1 Lyon Park Road Macquarie Park\tNSW\t1164\t10549\t22891\n10003616\t-33.7828\t150.9489\tDTRS Site Toongabbie Off Portico Pde TOONGABBIE\tNSW\t361\t15457\t19245\n10003240\t-33.7749\t151.0862\t3 - 7 Forest Grove EPPING\tNSW\t325\t24885\t22774\n10002036\t-33.7744\t151.1692\tcnr Lindfield Avenue and Havilah Lane LINDFIELD\tNSW\t1186\t26974\t26387\n10007754\t-33.7709\t122.0249\tLot 29 Angove Road MYRUP\tWA\t853\t25197\t23312\n10002094\t-33.7692\t151.0825\tCrane 2 20-28 Cambridge Street EPPING\tNSW\t251\t26995\t22145\n10000723\t-33.7692\t151.083\t20-28 Cambridge Street EPPING\tNSW\t1263\t19258\t26279\n10003620\t-33.7686\t150.81325\tDTRS Site St Marys Mount Druit Rd Carpark MOUNT DRUITT\tNSW\t1410\t21103\t20987\n10006629\t-33.7659\t150.6805\tThe Good Guys Penrith 88 - 90 Mulgoa Rd JAMISONTOWN\tNSW\t915\t28117\t19281\n10009680\t-33.7494\t150.8585\t50 Owen St GLENDENNING\tNSW\t681\t23155\t19644\n10005507\t-33.7418\t150.7678\t38-52 Dunheved Circuit ST MARYS\tNSW\t440\t12527\t25161\n10011044\t-33.7397\t150.7671\t17-19 Dunheved Circuit ST MARYS\tNSW\t999\t10008\t29992\n10004155\t-33.7386\t151.0685\tcnr Fisher Avenue and Trebor Road PENNANT HILLS\tNSW\t1238\t15472\t22998\n10002635\t-33.7342\t150.962933\tCnr Century Circuit \u0026 Norwest Boulevard Baulkham Hills\tNSW\t343\t18555\t26881\n10003693\t-33.7341\t150.46815\tDTRS Site Woodford 3 Rail Access Track off Railway Pde WOODFORD\tNSW\t223\t14341\t26858\n10002354\t-33.7333\t151.2196\t5 Hews Parade BELROSE\tNSW\t255\t28006\t25141\n10003686\t-33.7321\t150.60423\tDTRS Site Blaxland 2 Off Great Western Hwy WARRIMOO\tNSW\t466\t12214\t23865\n10004885\t-33.7301\t150.961807\tBuilding Site Solent Circuit Baulkham Hills\tNSW\t1065\t21759\t26272\n10009299\t-33.7278\t150.9855\tTower crane Hills Showground Station 129 Showground Road CASTLE HILL\tNSW\t336\t13133\t22283\n10010322\t-33.7275\t151.1664\t124 - 128 Killeaton Street ST IVES\tNSW\t1101\t23198\t21218\n10006615\t-33.7257\t150.9766\tThe Good Guys Castle Hill Home Hub 18 - 46 Victoria Ave CASTLE HILL\tNSW\t462\t12965\t25343\n10005089\t-33.7256\t150.883972\t7 Nirimba Dr Quakers Hill\tNSW\t1003\t19343\t23378\n10007812\t-33.7218\t150.8421\tToys R US 43 Hollinsworth Rd MARSDEN PARK\tNSW\t1111\t28088\t27031\n10005826\t-33.721\t151.1036\t40-50 Pennant Hills Road NORMANHURST\tNSW\t1301\t15424\t26657\n10001971\t-33.7192\t150.8406\tHome Hub Marsden Park 16 Hollingworth Rd MARSDEN PARK\tNSW\t515\t14638\t29402\n10000026\t-33.7187\t150.8341\tDulux Store Harris Avenue MARSDEN PARK\tNSW\t1399\t14962\t27271\n10000399\t-33.7101\t151.29573\tOptus Light Pole Intersection of Pittwater Road and Wakehurst Parkway NORTH NARRABEEN\tNSW\t574\t17598\t19934\n10010886\t-33.6909\t150.9254\tShop GR100, Rouse Hill Town Centre 10-14 Market Lane ROUSE HILL\tNSW\t1237\t28692\t27339\n10010086\t-33.6863\t151.1085\t18-22 Lords Avenue ASQUITH\tNSW\t466\t11185\t24659\n10008330\t-33.645\t115.152\tAnniebrook 231 Quindalup Road Quindalup\tWA\t1373\t28170\t29493\n10010211\t-33.644\t148.334\tDGPS Site 3331 Warraderry Way GOOLOOGONG\tNSW\t226\t21761\t27007\n10002969\t-33.6437\t150.65973\tNBN Co Site 1 Hillcrest Road Yarramundi\tNSW\t528\t10011\t22346\n10006257\t-33.6366\t120.4498\tDGPS transmitter Coujinup Road 8km NNW of JERDACUTTUP\tWA\t709\t26291\t23610\n10009557\t-33.6358\t151.3087\tTelstra Site 165-167 Hudson Parade Clareville\tNSW\t789\t14053\t18277\n10001236\t-33.614\t148.435861\tGooloogong Hotel 10-20 Main St Gooloogong\tNSW\t1415\t17017\t23869\n10003442\t-33.5931\t150.6994\tBOM Site St John Of God Hospital 177 Grose Vale Road North Richmond\tNSW\t1420\t22044\t27244\n10005654\t-33.5858\t138.32666\tNBN Co Site Section 356 Hundred of Koolunga Koolunga\tSA\t340\t14869\t19384\n10006783\t-33.5766\t121.19552\tSouth Cascade Lot 1091 Beltana Rd Cascade\tWA\t548\t11846\t26597\n10007823\t-33.5672\t148.6651\tSite Belmore Street CANOWINDRA\tNSW\t1420\t10038\t21690\n10004042\t-33.5431\t151.011128\tForest Glen 3291 Old Northern Road Forest Glen\tNSW\t1047\t18111\t18142\n10009061\t-33.5292\t151.20141\t99 Pacific Highway Mooney Mooney\tNSW\t816\t27959\t23890\n10003819\t-33.5192\t150.27342\tDTRS Site Bell 2 Rail Access Track off Bells Line of Rd BELL\tNSW\t1264\t18918\t23169\n10003439\t-33.4972\t150.8769\tBOM Site 952 Sackville Ferry Road Sackville North\tNSW\t672\t11043\t18716\n10003646\t-33.4936\t151.25574\tDTRS Site Wondabyne Station Rail Corridor WONDABYNE\tNSW\t1029\t21901\t21116\n10003647\t-33.4848\t151.267886\tDTRS Site Woy Woy Tunnel Location 1 Rail Corridor WONDABYNE\tNSW\t379\t13696\t24894\n10004013\t-33.4837\t150.24538\tDTRS Site Newnes 3 Rail Access Track DARGAN\tNSW\t1478\t14572\t22606\n10003991\t-33.4757\t150.202901\tDTRS Site Zig Zag Tunnel 10 Location 1 Zig Zag Tunnel 10 Country End Portal CLARENCE\tNSW\t434\t29038\t21337\n10003993\t-33.4698\t150.19865\tDTRS Site Zig Zag Halt Fixed Station Location 2 Rail Access Track near Zig Zag Station CLARENCE\tNSW\t1283\t24648\t27611\n10008062\t-33.4475\t149.5564\tBathurst Race Track Mt Panorama Race Circuit Mt Panorama\tNSW\t1289\t12377\t19053\n10010932\t-33.4427\t151.4405\t156-160 Terrigal Drive TERRIGAL\tNSW\t342\t17702\t29746\n10006618\t-33.4351\t151.3922\tThe Good Guys Erina Erina Fair 620 - 658 Terrigal Dr ERINA\tNSW\t796\t18337\t20372\n10002577\t-33.4283\t151.3208\tAnaconda West Gosford 28 Central Coast Highway WEST GOSFORD\tNSW\t988\t26782\t26627\n10001892\t-33.4276\t151.3278\t10 Central Coast Highway WEST GOSFORD\tNSW\t455\t24751\t22651\n10010394\t-33.4261\t151.3344\t14-16 Batley Street WEST GOSFORD\tNSW\t682\t26314\t23431\n10009464\t-33.3914\t115.76002\tDardanup Recreation Road Paradise\tWA\t657\t24398\t28013\n10009480\t-33.3234\t151.4143\t3/3 Corella Close BERKELEY VALE\tNSW\t1049\t18117\t21216\n10005431\t-33.2999\t115.74331\tTelstra Site 382 Clifton Road Waterloo\tWA\t916\t10443\t27662\n10007540\t-33.266\t121.388656\tComms Site Grass Patch Road GRASS PATCH\tWA\t491\t17326\t24497\n10001489\t-33.2535\t115.8388\tBurnswick Bakery South West Hway Burnswick\tWA\t765\t29708\t28928\n10006066\t-33.1867\t148.6967\tManildra Mills Opposite 95 Kiewa Street Manildra\tNSW\t825\t22932\t22136\n10004223\t-33.1822\t138.0095\tJohn Pirie Secondary School 40 Mary Elie Street Port Pirie\tSA\t484\t18135\t24965\n10000578\t-33.1815\t151.44925\tNBN Co Site 155 Wyee Farms Road WYEE\tNSW\t601\t10948\t29098\n10004620\t-33.1805\t138.009479\tTarget Florence St PORT PIRIE\tSA\t1129\t22876\t29108\n10000582\t-33.1725\t151.37582\tNBN Co Site Buangi Road Fire Trail Durren Durren\tNSW\t1104\t23447\t20715\n10008349\t-33.1466\t149.3541\t3567 Freemantle Rd GOWAN\tNSW\t496\t11216\t27833\n10001621\t-33.1092\t151.48009\tOpposite 21 Ourimbah Street Morisset Lake\tNSW\t553\t12337\t25456\n10000625\t-33.097\t119.0087\tOff Lake Grace-Newdegate Road NEWDEGATE\tWA\t1283\t13500\t19372\n10006662\t-33.0922\t151.46817\tTelstra Site 242-246 Freemans Dr COORANBONG\tNSW\t1259\t22710\t21901\n10010056\t-33.0464\t151.6698\tBelmont WWTP Ocean Park Road BELMONT SOUTH\tNSW\t536\t26208\t20504\n10005846\t-32.9677\t138.0396\tBaroota Substation Cnr Bridle Track Road \u0026 Garden Road Baroota\tSA\t469\t22196\t23826\n10000647\t-32.9639\t151.6945\tShop MM3 Level 2 Charlestown Square 30 Pearson Street CHARLESTOWN\tNSW\t584\t20043\t24917\n10006825\t-32.9419\t151.710029\tKotara Shopping Centre Lexington Parade Kotara\tNSW\t850\t23920\t21178\n10000291\t-32.926\t151.76453\tCustoms House 28 Honeysuckle Drive NEWCASTLE\tNSW\t1016\t29277\t27331\n10008516\t-32.9004\t151.70462\tOptus Site S8615 40 Compton Street NORTH LAMBTON\tNSW\t542\t20764\t23627\n10010028\t-32.8238\t151.7386\t118 Enterprise Dr TOMAGO\tNSW\t130\t25556\t27868\n10005252\t-32.8052\t117.2067\t\u0027Williams\u0027 Farm Block 3576 Parsons Road CUBBALLING\tWA\t410\t12727\t29644\n10007225\t-32.7938\t119.5133\tTelstra Site 53 Pitt Street Varley Lake Grace\tWA\t1292\t29313\t23868\n10006939\t-32.7828\t116.380394\tHotham Farm Comms Site off Siding Road 1.9 km S of Gold Mine Road Intersection Marradong\tWA\t963\t27560\t29652\n10000652\t-32.7702\t151.94145\tNBN Co 365 Lemon Tree Passage Road Salt Ash\tNSW\t514\t18949\t21347\n10008309\t-32.7172\t151.5033\t175 Racecourse Rd RUTHERFORD\tNSW\t442\t14431\t28548\n10010993\t-32.6817\t151.12608\tTelstra Site Lot 43 Plan 755264 Broke Rd Mt Thorley\tNSW\t1480\t14837\t29977\n10002678\t-32.6558\t151.9596\t5 William Street KARUAH\tNSW\t316\t22431\t25098\n10008251\t-32.634\t115.64\tTelstra Exchange 13 Dawesville Road Dawesville Mandurah\tWA\t264\t15463\t28660\n10008253\t-32.5968\t115.6501\tTelstra Site 3 Duke Street Wannanup Mandurah\tWA\t1158\t16698\t20699\n10009302\t-32.5789\t134.70685\tTelstra Site Lot 106 Plan 650600 Eyre Highway Cungena\tSA\t999\t22209\t21064\n10001936\t-32.5755\t151.0788\tWarkworth Depot 186 Long Point Rd West WARKWORTH\tNSW\t838\t26068\t29156\n10003448\t-32.5553\t151.379\tBOM Site Via Cranky Corner Road North Glendonbrook\tNSW\t1349\t21755\t29778\n10003149\t-32.5372\t115.7374\t303 Pinjarra Road MANDURAH\tWA\t356\t26297\t22219\n10000382\t-32.5344\t115.7187\t3 Mandurah Terrace Mandurah\tWA\t927\t13943\t24579\n10010982\t-32.4981\t149.85\t888 Kains Flat Road KAINS FLAT\tNSW\t647\t13284\t20768\n10004594\t-32.4726\t151.95924\tTelstra Exchange 1 Plan 90013 The Bucketts Way BOORAL\tNSW\t1006\t13219\t24179\n10003583\t-32.4717\t115.7611\tALDI Lakelands Crn Mandurah Rd and Banksiadale Gate LAKELANDS\tWA\t1426\t26861\t27752\n10003446\t-32.471\t150.1059\tBOM Site Glenview Lot 96 Upper Bylong Road Upper Bylong\tNSW\t482\t18262\t21593\n10003585\t-32.4086\t115.7594\tALDI Town Secret Harbour 420 Secret Harbour Blvd TOWN SECRET HARBOUR\tWA\t485\t15838\t25177\n10009571\t-32.3499\t148.60677\tMonopole Cumboogle View 11R Benolong Road DUBBO\tNSW\t1362\t17728\t22500\n10008159\t-32.3198\t149.02631\tGollan SCAX Forestvale Rd Gollan\tNSW\t227\t28053\t25278\n10005635\t-32.2841\t149.771139\tMoolarben Coal Mine 4250 Ulan Road (3km E of) ULAN\tNSW\t728\t21452\t18923\n10003221\t-32.2503\t150.8943\t20 Hunter Street MUSWELLBROOK\tNSW\t1045\t17542\t19946\n10005479\t-32.2285\t115.7742\tTronox Pigment Plant Mason Road KWINANA\tWA\t773\t11056\t21386\n10009687\t-32.189\t115.666\tGarden Island RASS Site Garden Island\tWA\t845\t15443\t27487\n10002234\t-32.125\t133.7\tBristow Hangar Ceduna Airport CEDUNA SA 5690\tSA\t709\t10235\t22457\n10006149\t-32.1173\t115.76285\tCoogee Beach SLSWA Clubhouse 20 Poore Grove Coogee\tWA\t160\t12331\t19147\n10005615\t-32.067\t148.66035\tTelstra Exchange 138L Mogriguy Road MOGRIGUY\tNSW\t117\t20708\t29594\n10009709\t-32.0576\t115.865692\tTelstra Site 77 Wheatley Drive Bull Creek Melville\tWA\t833\t18807\t25661\n10000585\t-32.0573\t115.879736\tSouthlands Boulevarde Shopping Centre 45 Burrendah Boulevard Willetton\tWA\t1220\t17800\t23954\n10000995\t-32.0538\t115.74048\tN Cnr Shed A WA Maritime Museum Victoria Quay Victoria Quay Road FREMANTLE\tWA\t559\t12049\t21257\n10006234\t-32.0525\t115.791803\tFremantle Depot Stock Road O\u0027Connor\tWA\t833\t16078\t25474\n10006761\t-32.0449\t115.8669\t34 Bull Creek Rd ROSSMOYNE\tWA\t1266\t21157\t21552\n10009349\t-32.0425\t115.738883\tTyne ACFS Lot R114 Port Beach Road NORTH FREMANTLE\tWA\t1438\t26604\t22761\n10005710\t-32.0331\t115.8363\tMyer Garden City Shopping Centre 125 Risely Street BOORAGOON\tWA\t1243\t19794\t22819\n10005647\t-32.0301\t118.0947\tTelstra Exchange 112 Main Street ARDATH\tWA\t238\t20099\t25402\n10010920\t-32.0113\t115.8644\tTelstra Site 3 Plan D86115 Ley St Manning\tWA\t174\t15479\t23148\n10007979\t-32.0095\t117.40081\tTelstra Exchange 45 McLennan Street Quairading\tWA\t530\t19939\t25106\n10006723\t-32.0054\t117.37562\tQuairading Lot 2 Weir Road QUAIRADING\tWA\t445\t29592\t27621\n10002224\t-31.9973\t147.76258\tNSW Telco Authority Site Bogan-Cathundral Road, Cathundral, 21 W of Trangie\tNSW\t495\t19726\t22215\n10009478\t-31.9901\t115.9206\t272 Rutland Avenue WELSHPOOL\tWA\t587\t17679\t29642\n10002731\t-31.9834\t118.234941\tSchilling Property 1442 Bruce Rock Narembeen Road BRUCE ROCK\tWA\t1160\t28745\t28345\n10003152\t-31.9591\t115.89387\tTelstra IBC Crown Towers Hotel 61 Boulton Ave Burswood\tWA\t1066\t12856\t28801\n10000873\t-31.9543\t115.848113\tConstructionCrane 39 Mount Street PERTH\tWA\t781\t10503\t25834\n10007560\t-31.9539\t115.859\tNike Perth City 670 Hay Street Mall PERTH\tWA\t134\t25903\t18847\n10008252\t-31.9178\t116.0781\tTelstra Site 1 Montrose Avenue Darlington Mundaring\tWA\t684\t18216\t21195\n10005732\t-31.9048\t115.9492\tTelstra Exchange 1 Wilson Street BASSENDEAN\tWA\t842\t18199\t26203\n10010902\t-31.9025\t115.931361\t10 Hanwell Way BASSENDEAN\tWA\t909\t18940\t20604\n10006605\t-31.8968\t116.0118\tThe Good Guys Midland Midland Central 541 Clayton St MIDLAND\tWA\t188\t23485\t27375\n10008538\t-31.896\t115.7561\tScarborough Beach Pool 309 West Coast Highway SCARBOROUGH\tWA\t370\t25776\t24452\n10004421\t-31.8874\t116.00226\tMidland Courthouse 26 Spring Park Road Midland\tWA\t657\t22995\t27472\n10008523\t-31.8771\t152.17082\tNBN Co 40m monopole 1577 Nowendoc Road Mount George\tNSW\t442\t26579\t20782\n10005711\t-31.8767\t115.7776\tMyer Karrinyup Shopping Centre Karrinyup Road KARRINYUP\tWA\t773\t20924\t22300\n10000485\t-31.8361\t115.8396\tTelstra Exchange 111 Girrawheen Avenue Girrawheen\tWA\t431\t26048\t22619\n10009945\t-31.8308\t115.821967\tItalian Aged Care 1 Marangaroo Drive MARANGAROO\tWA\t230\t19903\t23970\n10003449\t-31.8293\t150.3479\tBOM Site Mount Palmer\tNSW\t173\t11561\t28740\n10002520\t-31.806\t115.888\tIntelsat Antenna 620 Gnangara Road LANDSDALE\tWA\t1157\t22676\t23244\n10000627\t-31.777\t117.9529\tBOM Station Approximately 1.2km South of Fire Road SOUTH DOODLAKINE\tWA\t481\t21483\t29000\n10002559\t-31.7624\t115.7728\tAnaconda Edgewater 6 The Gateway EDGEWATER\tWA\t1456\t21060\t18360\n10001676\t-31.7435\t115.76564\tIBC 420 Joondalup Drive Joondalup\tWA\t152\t23772\t25736\n10008989\t-31.7367\t115.795998\tTelstra Site Info Centre 1140 Wanneroo Rd Ashby\tWA\t239\t22218\t20215\n10003451\t-31.664\t152.3705\tBOM Site 320 The Den Road Mooral Creek\tNSW\t184\t17250\t25933\n10010825\t-31.6627\t116.314771\tTelstra Site 80 McGellin Way Morangup\tWA\t555\t17514\t25949\n10002636\t-31.6542\t115.958028\t1635 Neaves Road BULLSBROOK\tWA\t839\t21086\t23340\n10001665\t-31.6432\t116.84944\tLeeming Road Meenar\tWA\t1271\t21557\t23089\n10002677\t-31.622\t152.6956\t12 Claywood Place KENDALL\tNSW\t441\t10910\t21101\n10003453\t-31.5949\t151.8274\tBOM Site Hawkins Road Cooplacurripa\tNSW\t1324\t17649\t23551\n10002420\t-31.5822\t152.73277\t5494 Pacific Highway HERONS CREEK\tNSW\t802\t22036\t28072\n10009736\t-31.5273\t138.6059\tOptus Rootop Site Wilpena Pound Vistor Centre Flinders Rangers Way FLINDERS RANGES\tSA\t258\t27131\t27640\n10009788\t-31.4948\t118.27783\tMerriden DC Opposite 57 French Ave Merriden\tWA\t570\t19637\t18901\n10005519\t-31.4751\t116.09155\tTelstra Site 9 Martin Road Chittering\tWA\t549\t29059\t29726\n10004362\t-31.4641\t152.82137\tPort Macquarie Interchange 1065 Oxley Highway THRUMSTER\tNSW\t1036\t28304\t28378\n10003452\t-31.4621\t152.3245\tBOM Site Yarras Mountain\tNSW\t360\t22268\t27256\n10002585\t-31.4497\t152.8832\tAnaconda Port Macquarie 180 Lake Road PORT MACQUARIE\tNSW\t1444\t10999\t18471\n10006311\t-31.4457\t116.4271\tCoondle BS Bindi Bindi - Toodyay Rd Coondle\tWA\t1073\t18117\t18636\n10003450\t-31.445\t152.477\tBOM Site Via Oxley Highway Long Flat\tNSW\t908\t27496\t29167\n10010249\t-31.2746\t149.0672\tSiding Springs OB Site Observatory Road COONABARABRAN\tNSW\t296\t26012\t19640\n10005026\t-31.2548\t118.170117\tTelstra Site Merredin-Nungarin Road Elabbin Elabbin\tWA\t618\t15390\t19501\n10007494\t-31.1337\t138.3949\tOptus Rooftop Site Parachilna West Terrace PARACHILNA\tSA\t1127\t27049\t18311\n10009791\t-31.1244\t117.97555\tKwelkin Waters Lot 25627 Plan 150101 South Kununoppin\tWA\t980\t24768\t27581\n10002536\t-31.0943\t150.912358\tCnr Bridge and Out St TAMWORTH\tNSW\t1463\t26777\t19692\n10008460\t-31.0798\t150.94153\tTamworth East Piper Street 184 Piper St EAST TAMWORTH\tNSW\t924\t27828\t26389\n10005614\t-31.0352\t152.87461\tTelstra Exchange 37 Edgar Street FREDERICKTON\tNSW\t707\t29800\t21773\n10002071\t-31.0218\t152.94127\tRawson Street SMITHTOWN\tNSW\t627\t19726\t24545\n10006790\t-30.9473\t151.144\tMt Moonbi Bullimbulla Rd Bendemeer\tNSW\t235\t21256\t18000\n10008149\t-30.8396\t116.386\tTelstra Site 29 Denton St Piawaning\tWA\t865\t27805\t26385\n10009079\t-30.7253\t115.585277\tTelstra Site 4km East of Cataby, off Cataby Rd Dandaragan\tWA\t945\t26408\t21475\n10002223\t-30.6338\t148.06627\t925 Toora Road Conimbia\tNSW\t144\t13215\t18788\n10005332\t-30.5552\t150.1145\tTrailer Maules Creek Mine Site 6.5 km South of MAULES CREEK\tNSW\t1328\t19304\t26356\n10003443\t-30.4025\t152.7289\tBOM Site 291 Mountain Top Road Dorrigo Mountain\tNSW\t395\t28449\t27458\n10007235\t-30.3963\t115.3124\tDGPS Badgingarra Wind Farm Seville Street Badgingarra\tWA\t581\t24760\t22159\n10010362\t-30.3691\t152.18167\tDoughbouy Mountain 1763 Wongwibinda Road WONGWIBINDA\tNSW\t1247\t15074\t20277\n10005800\t-30.3441\t149.7133\t501 Yarrie Lake Rd Narrabri\tNSW\t1076\t19805\t24985\n10000437\t-30.3091\t153.1008\t2 - 10 Hurley Dr COFF HARBOUR\tNSW\t232\t10400\t28362\n10001686\t-30.3009\t153.124972\t2AIR-FM Glenreagh Street Studios 24 Glenreagh St Coffs Harbour\tNSW\t1000\t25015\t19172\n10010846\t-30.2912\t115.476\tBoothendara (Nexgen) Brand Hwy Boothendara\tWA\t1429\t16611\t20335\n10003455\t-29.9594\t151.605\tBOM Site Beulah 709 Maybole Road Ben Lomond\tNSW\t1185\t25697\t28126\n10003444\t-29.9125\t153.1275\tBOM Site Browns Knob Barcoongere\tNSW\t442\t21867\t26647\n10006246\t-29.8125\t151.5514\t154 Jenkins Roads MATHESON\tNSW\t188\t20785\t19888\n10003454\t-29.7853\t151.1606\tBOM Site Lot 7021 Fisher Road Inverell\tNSW\t116\t23778\t27485\n10003956\t-29.6675\t153.115555\tCandole St TUCABIA\tNSW\t1149\t12156\t21931\n10006973\t-29.6673\t153.11448\tTelstra Site 29 Aradin Street Tucabia Clarence Valley\tNSW\t316\t13222\t18308\n10005428\t-29.6577\t151.44307\tLot 1 on Deposited Plan 838627, Western Feeder Rd Kings Plains\tNSW\t483\t28510\t25549\n10006323\t-29.6487\t138.0629\tOptus Rooftop Site Marree Marree Community Hall High Street MARREE\tSA\t817\t20417\t25042\n10008250\t-29.5887\t141.809117\tGood Friday Mine Site Office 30 km SW of Tibooburra\tNSW\t1260\t23278\t19867\n10010386\t-29.5361\t115.7649\t132 Railway Rd Three Springs\tWA\t1084\t10810\t19819\n10008207\t-29.4029\t130.7388\tOptus Rooftop Site Oak Valley Community Kali Street OAK VALLEY\tSA\t545\t13511\t28832\n10008201\t-29.3397\t127.0969\tOptus Rooftop Site Tjuntuntjara CRC Tjuntuntjara GREAT VICTORIA DESERT\tWA\t128\t19236\t20143\n10009447\t-29.2825\t114.919503\tACORN RADAR Surf Life Saving White Tops Drive Dongara\tWA\t424\t29796\t22991\n10007760\t-29.2129\t151.3131\tRocky Creek Rd Rocky Creek\tNSW\t440\t11179\t29332\n10000583\t-29.0535\t151.982356\tTanterfield Kildare Rd Tanterfield\tNSW\t256\t13558\t19078\n10008171\t-29.0318\t167.947313\tGlonet PMTS site 3B Taylors Road NORFOLK ISLAND\tEXT\t341\t21209\t18679\n10006492\t-28.9807\t142.037\tEast Comms Site Naryilco Station\tQLD\t880\t29099\t24469\n10009849\t-28.8875\t152.55932\tTabulam SCAX 5650 Bruxner Hwy Tabulam\tNSW\t872\t23861\t27147\n10006491\t-28.7889\t141.789\tMiddle Comms Site Naryilco Station\tQLD\t1478\t24006\t22153\n10007828\t-28.785\t115.8446\tSite 739 Pallotine Road TARDUN\tWA\t347\t21711\t27805\n10010064\t-28.7768\t114.6269\tALDI Wonthella 81 - 85 North West Coastal Hwy WONTHELLA\tWA\t888\t29844\t28517\n10007756\t-28.7767\t114.6031\tPort Authority Building 298 Marine Terrace Geraldton\tWA\t1256\t13790\t28896\n10007757\t-28.7568\t114.5656\tWaverider Buoy Channel Entrance 5 km NW of Geraldton\tWA\t1120\t25323\t21440\n10007755\t-28.7207\t114.5902\tWaverider Buoy Northern Channel 6.4 km N of Geraldton\tWA\t1039\t19356\t19073\n10008790\t-28.6472\t153.6122\t108-110 Jonson Street BYRON BAY\tNSW\t404\t24659\t26248\n10006490\t-28.5594\t141.914\tNaryilco Homestead Comms Site Naryilco Station\tQLD\t693\t14687\t22558\n10008676\t-28.4798\t122.802811\tYGP2 Great Central Road (42km ENE of) LAVERTON\tWA\t1253\t16488\t23411\n10006493\t-28.4297\t142.102\tDingera Comms Site Naryilco Station\tQLD\t349\t23119\t22346\n10002741\t-28.4196\t151.0759\t70 Regent Street INGLEWOOD\tQLD\t696\t17646\t26854\n10006812\t-28.399\t152.3768\tKoreela 988 Acacia Plateau Road Legume\tNSW\t533\t14781\t27893\n10000821\t-28.3271\t153.4126\t148 Tweed Valley Way SOUTH MURWILLUMBAH\tNSW\t1459\t28373\t26456\n10002748\t-28.3179\t152.7511\t12318 Mt Lindsay Highway PALEN CREEK\tQLD\t814\t14684\t26080\n10006494\t-28.3178\t141.709\t7 Mile Comms Site Naryilco Station\tQLD\t220\t29809\t27284\n10009300\t-28.2623\t152.0365\tMorgan Park Raceway off Old Stanthorpe Road MORGAN PARK\tQLD\t1234\t12755\t27323\n10002341\t-28.259\t153.3496\tOutside Broadcast Site Dungay Creek Road DUNGAY\tNSW\t1235\t25524\t29566\n10006488\t-28.235\t141.362\tSantos Comms Site Naryilco Station\tQLD\t446\t24387\t20247\n10005483\t-28.1825\t123.9436\tNexusSite4 Great Central Road Laverton East\tWA\t1414\t14260\t25060\n10006517\t-28.1542\t140.82\tBore Track South 1 Comms Site Innamincka Station\tSA\t843\t17530\t27718\n10009341\t-28.1157\t148.72619\tTelstra Site 320 Bundoran Rd St George\tQLD\t584\t25033\t23207\n10002732\t-28.1024\t153.43492\tWest Burleigh Lot 174 on SP156739 near 56 Kortum Drive BURLEIGH HEADS\tQLD\t936\t22723\t27640\n10006335\t-28.0193\t138.6639\tOptus Rooftop Site Mungerannie Pub Mangerannie Hotel Birdsville Track MUNGERANNIE\tSA\t475\t11360\t29582\n10000360\t-28.0178\t153.4299\tCrowne Plaza Surfers Paradise 2807 Gold Coast Highway SURFERS PARADISE\tQLD\t1470\t11905\t29747\n10008020\t-28.0044\t153.3745\tOB Site Royal Pines Resort BENOWA\tQLD\t313\t26245\t23214\n10002469\t-28.0016\t153.4289\t27-29 Cavill Avenue SURFERS PARADISE\tQLD\t807\t27401\t24225\n10008681\t-27.9968\t153.4271\t18 Cypress Ave Surfers Paradise\tQLD\t1471\t23355\t26584\n10002008\t-27.9913\t153.429353\tPhilcomm Site 3440 Surfers Paradise Blvd SURFERS PARADISE\tQLD\t347\t26210\t24187\n10010092\t-27.9857\t153.382696\tAshmore Tavern 161 Cotlew Street ASHMORE\tQLD\t255\t17793\t21534\n10004268\t-27.971\t144.63569\tSES Depot Harlequin Dr YOWAH\tQLD\t1007\t16996\t25829\n10004935\t-27.9639\t153.416\tGold Coast Aquatic Centre Marine Parade Gold Coast\tQLD\t1040\t16825\t23110\n10003383\t-27.9618\t153.3841\t32 davenport st SOUTHPORT\tNSW\t735\t19085\t27604\n10006518\t-27.9592\t140.852\tBore Track North Comms Site Innamincka Station\tSA\t305\t25066\t25898\n10008375\t-27.941\t122.367356\tToohey\u0027s Pit approx 12km N of Bandya\tWA\t137\t27641\t29161\n10004263\t-27.9206\t153.3396\t2 Town Centre Drive Helensvale\tQLD\t385\t24107\t18766\n10006489\t-27.8856\t141.881\tRiver Comms Site Naryilco Station\tQLD\t101\t26515\t27926\n10004929\t-27.8659\t153.319453\tCoomera Indoor Sports Centre 35 Beattie Road Coomera\tQLD\t169\t14194\t26033\n10000159\t-27.8396\t153.11489\tNBN Co 59-67 Pine Forest Way Tamborine\tQLD\t573\t26936\t19874\n10000299\t-27.8076\t153.09282\tNBNCo 775 Camp Cable Road Logan Village\tQLD\t117\t19776\t22475\n10006503\t-27.7954\t136.432\tManarrinna 2 Comms Site Macumba Station\tSA\t649\t17756\t19009\n10000099\t-27.7917\t152.72621\tNBN Co Site 115 - 117 Mollenhauers Road Peak Crossing\tQLD\t1274\t28544\t26799\n10000684\t-27.7825\t145.7594\tBA Nardoo COONGOOLA LANE Coongoola\tQLD\t1469\t14512\t27535\n10003222\t-27.7475\t153.2315\t79 Elderslie Road YATALA\tQLD\t764\t28139\t20927\n10006996\t-27.7468\t140.7378\tOptus Rooftop Site Innamincka Hotal Lot 1 South Terrace INNAMINCKA\tSA\t271\t18111\t25350\n10000242\t-27.7432\t152.70847\tNBN Co Site 55 Bill Morrow Road Peak Crossing\tQLD\t914\t10845\t19594\n10006512\t-27.7242\t140.763\tInnamincka Homestead Comms Site Innamincka Station\tSA\t293\t22384\t24396\n10006511\t-27.7146\t140.771\tKellys Comms Site Innamincka Station\tSA\t587\t24053\t27697\n10008973\t-27.6861\t153.06174\tTelstra Rooftop Site 24 Melastoma Place Heritage Park Logan\tQLD\t136\t20167\t28066\n10004275\t-27.6651\t152.89058\tBrookwater 118 Augusta Parkway AUGUSTINE HEIGHTS\tQLD\t403\t17238\t28806\n10004054\t-27.6621\t153.1106\t68 -70 Laughlin Street KINGSTON\tQLD\t1110\t12833\t23824\n10006431\t-27.656\t153.1681\tThe Good Guys Loganholme Logan Hyperdome Home Centre 3890 Pacific Highway LOGANHOLME\tQLD\t495\t29127\t23524\n10003111\t-27.645\t152.87\tAldi Redbank Plains Cnr Argyle \u0026 Redbank Plains Road Redbank Plains\tQLD\t931\t12104\t23712\n10002563\t-27.6364\t153.1352\tAnaconda Slacks Creek 3525 Pacific Highway SLACKS CREEK\tQLD\t1447\t23065\t25597\n10003267\t-27.6303\t152.2338\t996 Tenthill Creek Rd GATTON\tQLD\t143\t11623\t18713\n10009757\t-27.6282\t152.3935\tTelstra Site 2 Cribb Street Laidley Lockyer Valley\tQLD\t1112\t16976\t26197\n10000725\t-27.6106\t152.893561\t18 Kristine Ave Goodna\tQLD\t1165\t29646\t20166\n10004123\t-27.6091\t153.1236\t2 Pannikin Street ROCHEDALE SOUTH\tQLD\t163\t11935\t19212\n10007857\t-27.5998\t152.1345\tSubstation Flagstone Creek Rd CARPENDALE\tQLD\t1366\t12444\t29467\n10002592\t-27.5972\t151.9494\tAnaconda Toowoomba South 910 Ruthven Street TOOWOOMBA SOUTH\tQLD\t565\t28669\t19986\n10009220\t-27.5877\t152.87963\tOptus Redbank RPTR 112 Monash Road REDBANK\tQLD\t253\t29728\t19223\n10006504\t-27.5658\t136.554\tManarrinna Comms Site Macumba Station\tSA\t1301\t22318\t18771\n10003411\t-27.5656\t114.41439\tKalbarri Loop Von Bibra Road Kalbarri\tWA\t307\t11575\t28645\n10000761\t-27.5634\t153.071641\tTrade Secret Macgregor Kessels Court 567 Kessels Road MACGREGOR\tQLD\t103\t20146\t24097\n10010883\t-27.5631\t153.0819\tShop 1058, Westfield Garden City cnr Logan and Kessel Streets UPPER MT GRAVATT\tQLD\t173\t27250\t29097\n10009576\t-27.5578\t153.0837\t76 Mount Gravatt-Capalaba Road UPPER MOUNT GRAVATT\tQLD\t364\t20362\t24641\n10006451\t-27.5475\t151.940833\t26 Gladstone St TOOWOOMBA\tQLD\t263\t12391\t25111\n10008768\t-27.5259\t153.0089\tOB Site Queensland Tennis Centre 190 King Arthur Terrace TENNYSON\tQLD\t827\t26587\t28525\n10006509\t-27.5202\t140.692\tPacksaddle Comms Site Innamincka Station\tSA\t1474\t28560\t27531\n10003417\t-27.5165\t152.4604\tLockrose 40m monopole LOT 16 Cricket Road BRIGHTVIEW\tQLD\t853\t21982\t23603\n10009025\t-27.5142\t152.58148\tNBN Co site 281 Lehmanns Road Coorana\tQLD\t834\t27373\t25014\n10006982\t-27.5019\t153.0062\tIGA St Lucia 242 Hawken Dr ST LUCIA\tQLD\t1483\t22370\t25734\n10005324\t-27.5009\t153.0367\t264 Ipswich Road WOOLLOONGABBA\tQLD\t754\t23610\t25582\n10002845\t-27.4985\t152.973\tShop 2090 Indooroopilly Shopping Centre 318 - 322 Moggill Road INDOOROOPILLY\tQLD\t1377\t24819\t19047\n10007742\t-27.4946\t153.0585\t280A Old Cleveland Rd COORPAROO\tQLD\t237\t21051\t26037\n10006546\t-27.4944\t141.812\tGoonabrinna Comms Site Durham Downs Station\tQLD\t624\t18139\t21211\n10001710\t-27.4811\t153.0363\t706 Main Street KANGAROO POINT\tQLD\t139\t21955\t24786\n10006893\t-27.4779\t153.0413\t232 Wellington Rd EAST BRISBANE\tQLD\t188\t19721\t25542\n10001709\t-27.4765\t153.0079\t215 Montague Road WEST END\tQLD\t1026\t15140\t28330\n10008808\t-27.4752\t153.0258\tBasement IBC 1 William St Brisbane City\tQLD\t118\t28330\t19348\n10009841\t-27.4742\t153.0258\tQueen Wharf Project Queens Wharf Rd BRISBANE CITY\tQLD\t118\t24907\t22486\n10009482\t-27.4735\t153.0136\tTower Crane 3 1 Cordelia Street SOUTH BRISBANE\tQLD\t161\t12221\t26423\n10009489\t-27.4735\t153.0376\t67 Cairns Street KANGAROO POINT\tQLD\t897\t23795\t28493\n10005558\t-27.4717\t153.0247\t171 George St Brisbane\tQLD\t1354\t17653\t29851\n10005708\t-27.4709\t153.0246\tMyer Centre 91 Queen Street BRISBANE\tQLD\t1045\t20065\t18608\n10003568\t-27.4708\t153.035\t2 Scott Street KANGAROO POINT\tQLD\t999\t28027\t18744\n10008077\t-27.4648\t153.0127\t2 Caxton St PETRIE TERRACE\tQLD\t1012\t27735\t26029\n10010415\t-27.4577\t153.0347\t312 Brunswick Street FORTITUDE VALLEY\tQLD\t512\t19088\t25824\n10010238\t-27.4573\t153.0252\t285 Gregory Terrace SPRING HILL\tQLD\t1287\t28987\t24107\n10009432\t-27.4541\t153.0403\t7 Chester Street NEWSTEAD\tQLD\t1272\t28128\t19717\n10010997\t-27.4535\t153.01513\tTelstra Site SW cnr of Blamey and Ramsgate St Kelvin Grove\tQLD\t157\t27828\t18004\n10000695\t-27.4517\t153.0415\t14/24 Stratton Street Newstead\tQLD\t1220\t13966\t23642\n10008223\t-27.4516\t153.0451\t21 Longland St NEWSTEAD\tQLD\t1327\t19627\t25486\n10008581\t-27.4512\t153.0329\tDairy Hall and Sugar Building Gregory Terrace BOWEN HILLS\tQLD\t136\t23759\t20406\n10009858\t-27.4492\t153.0266\tSurgical Building Herston Quarter 300 Herston Rd HERSTON\tQLD\t920\t23482\t27538\n10001603\t-27.4465\t153.045\tDonaldson Tower 36 Evelyn Street NEWSTEAD\tQLD\t516\t14372\t21585\n10005076\t-27.4392\t152.98963\tAshgrove North 115 Stewart Road ASHGROVE\tQLD\t965\t12038\t25235\n10003569\t-27.4377\t153.0079\tTower crane cnr Edmondstone Street and Enoggera Road NEWMARKET\tQLD\t408\t12245\t20117\n10005327\t-27.4306\t153.1055\t1275 Kingsford Smith MEEANDAH\tQLD\t503\t12354\t21477\n10003572\t-27.428\t153.1496\t67-77 Trade Street LYTTON\tQLD\t1250\t26001\t22103\n10009080\t-27.427\t153.1523\t120 Trade St LYTTON\tQLD\t1341\t12545\t28139\n10006507\t-27.4255\t136.068\tDuck Hole Comms Site Macumba Station\tSA\t1203\t21274\t27142\n10008175\t-27.424\t153.082809\t41 Tradecoast Drive Eagle Farm\tQLD\t858\t21088\t20955\n10007995\t-27.4197\t153.0983\tcnr Lomandra Drive and Logistics Road BRISBANE AIRPORT\tQLD\t152\t12197\t23101\n10006508\t-27.4125\t140.121\tTirrawarra Comms Site Innamincka Station\tSA\t841\t15652\t22119\n10005885\t-27.4108\t151.03629\tQGC Harry 216 Well Off Halliford Road Ducklo\tQLD\t1133\t12043\t29345\n10006510\t-27.3841\t140.983\tMerninie Comms Site Innamincka Station\tSA\t413\t26226\t28395\n10002855\t-27.375\t153.125\tToll Aviation Hangar 8 Acacia St BRISBANE AIRPORT 4009\tQLD\t796\t22943\t20137\n10009010\t-27.3477\t152.90335\tNBN Monopole 40 Albert Road Draper\tQLD\t1185\t27405\t25094\n10000522\t-27.2872\t152.986983\t15 Walter Crescent LAWNTON\tQLD\t635\t10394\t22147\n10005862\t-27.276\t151.4159\tDGPS Site Auchmah Rd BOWENVILLE\tQLD\t1077\t26926\t28820\n10006505\t-27.2529\t135.65\tMacumba Homestead Comms Site Macumba Station\tSA\t1163\t17985\t21982\n10007861\t-27.2419\t153.021\t4 N Lakes Dr NORTH LAKES\tQLD\t684\t28178\t22074\n10007813\t-27.2396\t153.0116\tToys R US Cnr North lake Dr and Prospect St NORTH LAKES\tQLD\t142\t12952\t29443\n10007858\t-27.2374\t152.4987\tSubstation Paddy Gully Rd ESK\tQLD\t1405\t13914\t25563\n10010399\t-27.2133\t153.0855\tLot 888 Spinnaker Boulevard NEWPORT\tQLD\t845\t15653\t27243\n10006544\t-27.2044\t142.372\tNo Mans Comms Site Durham Downs Station\tQLD\t746\t23293\t29105\n10006513\t-27.1908\t140.057\tCoongie SW Comms Site Innamincka Station\tSA\t1088\t13942\t18741\n10006548\t-27.1859\t141.734\tBlacks Comms Site Durham Downs Station\tQLD\t787\t29773\t18357\n10005886\t-27.1534\t150.88731\tQGC David 210 Well Grahams Road, 18 km SE of Kogan\tQLD\t339\t14176\t20601\n10002372\t-27.129\t152.79686\tNBN Co Site 2562 Mt Mee Road Ocean View\tQLD\t1418\t13498\t19423\n10006514\t-27.1199\t140.405\tCoongie SE Comms Site Innamincka Station\tSA\t371\t25034\t21694\n10007305\t-27.1111\t150.29955\tNBN Co Site 78 Tolmah Court Tara\tQLD\t269\t21178\t29820\n10006506\t-27.0896\t135.695\tHorseshoe Bore Comms Site Macumba Station\tSA\t573\t28232\t19291\n10006501\t-27.075\t136.474\tUlowarrina Comms Site Macumba Station\tSA\t1374\t24306\t23470\n10005842\t-26.9135\t152.92068\tNBNCo Site 2001 Old Gympie Road GLASS HOUSE MOUNTAINS\tQLD\t1224\t10684\t24512\n10006545\t-26.9071\t141.642\tMidway Comms Site Durham Downs Station\tQLD\t157\t24807\t25325\n10006515\t-26.874\t140.061\tCoongie NW Comms Site Innamincka Station\tSA\t540\t11943\t21784\n10006516\t-26.8338\t140.499\tCoongie NE Comms Site Innamincka Station\tSA\t1471\t14045\t24674\n10006502\t-26.7395\t136.08\tOolgana Comms Site Macumba Station\tSA\t1026\t17411\t18642\n10010884\t-26.7039\t153.1319\tShop 511, Kawana Shoppingworld 119 Point Cartwright Drive BUDDINA\tQLD\t1301\t20995\t22036\n10006244\t-26.6923\t151.7736\t13 Mustons Rd HALY CREEK\tQLD\t318\t21253\t28974\n10001516\t-26.6585\t153.095238\tAldi Maroochydore 102 Aerodrome Road MAROOCHYDORE\tQLD\t923\t13808\t19458\n10005709\t-26.6545\t153.0867\tMyer Sunshine Plaza Amaroo Street MAROOCHYDORE\tQLD\t114\t11922\t28646\n10010264\t-26.6529\t153.0936\t10-12 Duporth Avenue MAROOCHYDORE\tQLD\t1122\t15065\t28106\n10005253\t-26.6379\t149.9161\tUlimaroa Silos Warrego Highway DRILLHAM\tQLD\t117\t29732\t18315\n10005701\t-26.6371\t149.7567\tNBN Co Site Lot 3 Harrisons Road DULACCA\tQLD\t843\t27682\t29548\n10004269\t-26.586\t149.181398\tSES Depot Showgrounds Warrego Hwy WALLUMBILLA\tQLD\t369\t26156\t23416\n10009051\t-26.5766\t151.7611\t253 Beils Rd INVERLAW\tQLD\t1264\t20712\t27682\n10006997\t-26.4246\t135.5041\tOptus Rooftop Site Dalhousie Springs Witjira National Park WITJIRA\tSA\t446\t22058\t29275\n10009919\t-26.4112\t151.81499\tTelstra Exchange 25-27 Alexander St Wooroolin\tQLD\t1163\t16931\t19153\n10008212\t-26.3878\t149.29309\tMuggelton Off Yuleba Taroom Road YULEBA NORTH\tQLD\t1018\t25005\t27016\n10004717\t-26.3602\t120.6056\tJundee Mine White House Goldfields Highway Wiluna 6646\tWA\t1184\t25798\t19062\n10000681\t-26.3565\t152.55895\tGympie muster-COW 1563 Amamoor Creek Road AMAMOOR CREEK?\tQLD\t910\t22013\t29324\n10004794\t-26.2002\t152.66575\tNorth Monkland 45 Excelsior Road GYMPIE?\tQLD\t1249\t16366\t22562\n10001652\t-26.0132\t152.3427\tRepeater Site Mt Kunjoli (6.5km NW of) WOOLOOGA\tQLD\t850\t16659\t22951\n10003189\t-25.9931\t116.0397\tCB Repeater Earilier Hill 37km north east of BALLYTHUNA HOMESTEAD\tWA\t1356\t18344\t19930\n10006499\t-25.9222\t141.296\tBeal Block Comms Site Morney Plains Station\tQLD\t836\t23674\t28380\n10002781\t-25.8898\t148.9119\tTaylor Repeater off Waybara Road PONY HILLS\tQLD\t1310\t14890\t29458\n10006537\t-25.8528\t140.04\tRingamurra Comms Site Durrie Station\tQLD\t115\t17945\t27432\n10006326\t-25.8395\t133.2998\tOptus Rooftop Site Kulgera Kulgera Roadhouse South Stuart Hwy KULGERA\tNT\t189\t21650\t22084\n10003169\t-25.8332\t147.583572\tCB Repeater Site Redford Station 70km N MUNGALLALA\tQLD\t925\t14672\t26794\n10006498\t-25.7147\t141.595\tBeefwood Comms Site Morney Plains Station\tQLD\t264\t13264\t20553\n10006543\t-25.6993\t140.193\t8 Mile Comms Site Durrie Station\tQLD\t1168\t18940\t21148\n10006541\t-25.6874\t140.229\tDurrie Homestead Comms Site Durrie Station\tQLD\t1008\t27456\t22242\n10006500\t-25.5066\t140.916\tAlleogera Comms Site Morney Plains Station\tQLD\t1217\t12827\t24595\n10006536\t-25.4699\t140.231\tWantatta Comms Site Durrie Station\tQLD\t1482\t12972\t21168\n10006496\t-25.4241\t141.517\tMt Collins Comms Site Morney Plains Station\tQLD\t879\t15565\t22281\n10006497\t-25.3712\t141.469\tMorney Plains Homestead Comms Site Morney Plains Station\tQLD\t523\t13116\t29533\n10008897\t-25.3481\t148.8873\tSantos Castle Hill RT off Arcadia Valley South Rd CASTLE HILL GASFIELD\tQLD\t262\t16346\t19856\n10003059\t-25.292\t152.8913\tAldi Urangan 1C Cartwright Court Urangan\tQLD\t111\t28368\t28297\n10006495\t-25.2758\t140.467\tTackraminta Comms Site Morney Plains Station\tQLD\t389\t12698\t28768\n10008896\t-25.259\t148.8716\tSantos Site Mt Kinglsey Dam Arcadia Valley\tQLD\t398\t12631\t20333\n10006540\t-25.2542\t140.138\tJimos East Comms Site Durrie Station\tQLD\t569\t25453\t24410\n10006539\t-25.1996\t139.942\tJimos West Comms Site Durrie Station\tQLD\t115\t17636\t24271\n10005941\t-25.196\t152.53379\tTelstra Exchange 56 Travis Street Buxton Bundaberg\tQLD\t1472\t15488\t22102\n10009737\t-25.0719\t148.2743\tOptus Site Sandstone Park O\u0027Briens Road CANARVON GORGE\tQLD\t1091\t10128\t22884\n10008205\t-25.0713\t148.2551\tOptus Rooftop Site Canarvon Wilderness Lodge 4043 O\u0027Briens Road CANARVON PARK\tQLD\t649\t21618\t21136\n10008204\t-25.0614\t148.2351\tOptus Rooftop Site Canarvon Gorge Visitor Centre Canarvon Gorge NP CANARVON PARK\tQLD\t1289\t15901\t29006\n10006532\t-24.9975\t139.052\tDam West Comms Site Glengyle Station\tQLD\t383\t21082\t28373\n10006529\t-24.9799\t139.638\tLake Koolivoo Comms Site Glengyle Station\tQLD\t1127\t14532\t22589\n10002736\t-24.9625\t152.0495\tCouncil Tower Delan Rd BULLYARD\tQLD\t1213\t16115\t21686\n10006533\t-24.9486\t139.321\tDam East Comms Site Glengyle Station\tQLD\t905\t10106\t27022\n10003058\t-24.8181\t152.4552\tAldi Bargara 699 Bargara Road, Bargara\tQLD\t916\t25948\t18059\n10006531\t-24.7988\t138.727\tDubbo Comms Site Glengyle Station\tQLD\t1404\t11252\t23592\n10006530\t-24.7846\t139.592\tGlengyle Homestead Comms Site Glengyle Station\tQLD\t113\t10973\t21771\n10008936\t-24.7147\t119.898436\tTWR2 Kalium Lakes 88 km NE of Kumarina\tWA\t246\t22239\t26207\n10010632\t-24.6943\t151.30439\tTelstra Site 4 Pine Street Kalpowar\tQLD\t307\t19869\t20940\n10006528\t-24.6772\t138.973\tTommydonka Comms Site Glengyle Station\tQLD\t1101\t11716\t27768\n10006534\t-24.624\t139.195\tCarrawillia Comms Site Glengyle Station\tQLD\t389\t29743\t22671\n10006688\t-24.5638\t149.97689\tMarch IT Facility MOUR03 28-30 Okano St Moura\tQLD\t1377\t14207\t27374\n10006535\t-24.5585\t139.418\tBullock North Comms Site Glengyle Station\tQLD\t662\t20898\t27236\n10009180\t-24.4601\t150.4644\t361 Crowsdale Camboon Road Biloela\tQLD\t810\t20171\t19407\n10006803\t-24.4053\t131.817782\tOptus Rooftop site Kings Creek Station 12725 Luritja Road PETERMANN\tNT\t1121\t16999\t21460\n10006331\t-24.2513\t131.5113\tOptus Rooftop Site Kings Canyon Resort Kings Canyon Resort 20000 Larapinta Drive PETERMANN\tNT\t1277\t14501\t20864\n10008099\t-24.1424\t148.15007\tNBN Co Site Dawson Highway Orion\tQLD\t1451\t28940\t28219\n10007261\t-24.0775\t132.76\tParks \u0026 Wildlife Site Palm Valley Finke Gorge National Park NAMATJIRA\tNT\t775\t16671\t24835\n10002893\t-23.8104\t150.647777\t1879 South Ulam Road Bajool\tQLD\t439\t22959\t22954\n10004911\t-23.7649\t148.1016\t312 Howards Rd GINDIE\tQLD\t108\t17803\t27842\n10006324\t-23.6851\t132.672\tOptus Rooftop Site Glen Helen Homestead Glen Helen Homestead Lodge 8495 Namatjira Drive MOUNT ZEIL\tNT\t194\t13234\t21685\n10009738\t-23.6322\t132.7267\tOptus Rooftop Site Ormiston Poud Ranger Station Ormiston Gorge Access Road MOUNT ZEIL\tNT\t359\t26555\t25877\n10005239\t-23.5272\t148.4098\tBauhinias Rd COMET\tQLD\t1194\t24496\t20044\n10009842\t-23.4445\t144.2457\t144-150 Emu St LONGREACH\tQLD\t707\t23652\t28596\n10004676\t-23.442\t144.248697\tTarget 111 Eagle St LONGREACH\tQLD\t1055\t17954\t27986\n10003460\t-23.4389\t144.2816\tBoM Wind Profiler Longreach Airport Longreach\tQLD\t1197\t14359\t29327\n10008110\t-23.3978\t120.1006\tBHP 30m skid 3km SSE of McCamey\u0027s Monster\tWA\t749\t11653\t23710\n10002526\t-23.3907\t120.1154\tBHP Billiton LTE site JIM_12 BHP Jimblebar mine\tWA\t675\t15284\t23169\n10002525\t-23.3888\t120.1834\tBHP Billiton LTE site JIM_11 BHP Jimblebar mine\tWA\t1084\t12433\t24695\n10002529\t-23.3841\t120.0829\tBHP Billiton LTE site Skid 3 BHP Jimblebar mine\tWA\t1045\t12868\t26487\n10005175\t-23.3838\t119.6575\tMicrowave site OB35 Mid Pit BHP Mt Whaleback mine\tWA\t999\t21271\t27116\n10008109\t-23.3831\t120.1348\tBHP 30m skid 1.5km SSE of Wheelarra Hill\tWA\t1067\t18431\t19110\n10005174\t-23.3786\t119.7073\tMicrowave site OB29 BHP Mt Whaleback mine\tWA\t227\t22816\t20317\n10008113\t-23.3769\t120.1539\tBHP 50m tower 2.8km ESE of Wheelarra Hill\tWA\t751\t23431\t28393\n10003364\t-23.375\t150.535555\tLandfill Site Lakes Creek Road ROCKHAMPTON\tQLD\t239\t13532\t23408\n10008115\t-23.3725\t120.0919\tBHP 50m tower Jimblebar mine McCamey\u0027s Monster\tWA\t450\t18761\t18633\n10001792\t-23.3718\t120.1264\tBHP Billiton LTE site WH4 Wheelarra Hill\tWA\t1158\t15884\t19840\n10001482\t-23.3694\t120.0508\tRail loadout BHP Jimblebar mine, 5 km west of McCameys Monster\tWA\t1304\t28903\t18198\n10008114\t-23.3683\t120.1063\tBHP 50m tower 1.5km ENE of McCamey\u0027s Monster\tWA\t545\t25996\t27368\n10008106\t-23.3681\t120.1641\tBHP 30m skid 3.8km East of Wheelarra Hill\tWA\t1124\t15166\t28162\n10008107\t-23.3639\t120.1946\tBHP 30m skid 7km East of Wheelarra Hill\tWA\t724\t25515\t26060\n10008111\t-23.3635\t120.092\tBHP 30m skid 1km North of McCamey\u0027s Monster\tWA\t1485\t23731\t23657\n10005173\t-23.3586\t119.6464\tRabbit Flats tower W29 BHP Mt Whaleback mine\tWA\t1445\t14913\t25408\n10006422\t-23.3416\t150.5217\tThe Good Guys Rockhampton Red Hill Homemaker Centre 396 Yaamba Road NORMAN GARDENS\tQLD\t612\t18861\t27728\n10008116\t-23.3272\t120.0458\tBHP 50m tower 2.5km East of Shovelanna Hill\tWA\t918\t26541\t18169\n10008112\t-23.3212\t120.0644\tBHP 30m skid 4.5km ENE of Shovelanna Hill\tWA\t867\t23262\t18740\n10008108\t-23.3164\t120.1129\tBHP 30m skid 9.5km ENE of Shovelanna Hill\tWA\t1240\t17295\t22749\n10002527\t-23.3015\t120.0925\tBHP Billiton LTE site Skid 1 BHP Jimblebar mine\tWA\t221\t20726\t18533\n10008704\t-22.892\t113.92455\tTelstra Site Minilya-Exmouth Road Lyndon Carnarvon\tWA\t828\t24687\t22482\n10001801\t-22.865\t119.689\tBHP Billiton LTE site Poonda North SER Mount Newman Railway\tWA\t1219\t15576\t27462\n10010482\t-22.4826\t119.86845\tTrailer 1 Roy Hill Mine ROY HILL\tWA\t1466\t12103\t21317\n10010480\t-22.4815\t119.973306\tTrailer 3 Roy Hill Mine ROY HILL\tWA\t511\t26189\t24967\n10008202\t-22.4809\t118.4629\tOptus Rooftop Site Karajini Vistor Centre Banijima Drive MULGA DOWNS\tWA\t339\t28694\t20948\n10009741\t-22.4708\t118.5437\tOptus Site Karajini Campground Banijima Drive MULGA DOWNS\tWA\t113\t16720\t27894\n10008715\t-22.4424\t119.924856\tPSA Waste Water Treatment Plant Roy Hill Mine Roy Hill\tWA\t1498\t13035\t18284\n10005527\t-22.2775\t117.5014\t55km NNW of Tom Price Tom Price\tWA\t619\t22610\t19101\n10006447\t-22.255\t117.851667\tSolomon Mine Airport 100Km North of Paraburdoo HAMERSLEY RANGE\tWA\t126\t24611\t21879\n10003944\t-22.1252\t117.83833\tTrinity (TNTY) 26.5 km NE of Mount Sheila Hamersley Range\tWA\t448\t26393\t22228\n10004273\t-22.0865\t148.25659\tRamp 40 Site Poitrel Mine COPPABELLA\tQLD\t801\t24351\t24574\n10007911\t-21.9973\t148.0385\t9 Barcoo Dr MORANBAH\tQLD\t1058\t27211\t23986\n10001139\t-21.8393\t140.893773\tAFRU Site Cannington Mine TREPELL AIRPORT\tQLD\t212\t19336\t25011\n10004041\t-21.7658\t149.375003\tWest Hill Lot28MC573 Bruce HW Carmilla\tQLD\t1420\t12094\t20418\n10003406\t-21.6406\t121.1889\tWoodie Woodie Airport Woodie Woodie Road WOODIE WOODIE\tWA\t393\t26866\t20078\n10009740\t-21.5912\t117.0754\tOptus Rooftop Site Millstream Homestead off Kajenjie Millstream Rd MILLSTREAM\tWA\t679\t25962\t28741\n10003047\t-21.5415\t115.0327\tWaveRider buoy 14 km North west of ONSLOW\tWA\t808\t11783\t25365\n10010327\t-21.1227\t118.869\tPilgangoora Lithium-Tantalum Mine off Port Hedland-Wittenoom Road, 95 km SSE of PORT HEDLAND\tWA\t492\t17611\t27190\n10005374\t-20.986\t137.8496\tLake Nash Community Office 13 Antyiper Street ALPURRURULAM\tNT\t1334\t13436\t27544\n10002023\t-20.812\t116.7738\tLot 126 Warlu Road Cooya Pooya\tWA\t1052\t14542\t27222\n10001860\t-20.7746\t116.763\t15.8KP SER Pilbara\tWA\t117\t29751\t25428\n10000669\t-20.7355\t116.846\t16 Sharpe Avenue Karratha\tWA\t531\t23949\t29976\n10008789\t-20.7323\t116.840964\tKarratha Health Campus 62 Balmoral Road Karratha\tWA\t710\t11975\t20875\n10001859\t-20.679\t117.118653\t9.78KP SER Pilbara\tWA\t1353\t15639\t21048\n10009833\t-20.6481\t116.72204\tDampier Power Station via Parker Point Road DAMPIER\tWA\t693\t17416\t18977\n10007825\t-20.6279\t117.1961\tSite 9 Meares Drive POINT SAMSON\tWA\t532\t20668\t28339\n10005330\t-20.515\t147.844447\tAlmoola SER 1.2 km East of Bowen Developmental Road Springlands\tQLD\t121\t27191\t25452\n10009893\t-20.175\t129.666667\tNorthern Star Resources nominal LTE site Tanami 6 Tanami Desert\tNT\t798\t19373\t19859\n10004557\t-20.1094\t139.865093\tGereta Station Lot 2585 Three Rivers\tQLD\t1061\t14787\t18717\n10006804\t-19.9217\t138.1195\tOptus Rooftop site Post Office Hotel 39 Barkly St CAMOOWEAL\tQLD\t146\t20724\t21194\n10009894\t-19.875\t130.0\tNorthern Star Resources nominal LTE site Tanami 5 Tanami Desert\tNT\t351\t15158\t28203\n10009892\t-19.875\t129.0\tNorthern Star Resources nominal LTE site West Tanami Tanami Desert\tWA\t1232\t26363\t18533\n10007511\t-19.7027\t139.35347\tSouth Esperanza Ridge 3km WSW of Waggaboonya Lake Gunpowder\tQLD\t1332\t23190\t21641\n10007627\t-19.6863\t147.28585\tIoT Trial Site Ayr-Dalbeg Road Mona Park\tQLD\t549\t12012\t21757\n10005604\t-19.593\t147.135\t419 Bartlett Rd GIRU\tQLD\t709\t16947\t24118\n10006964\t-19.5548\t147.35763\tTelstra Site 91 Drysdale Street Brandon\tQLD\t352\t19980\t20867\n10004603\t-19.4366\t134.208275\tOptus Rooftop Site 3 Ways Roadhouse National Hwy 87 Tennant Creek\tNT\t705\t28743\t18828\n10007830\t-19.3167\t146.8223\tFairfield Central Shopping Centre 2-14 Darcy Dr IDALIA\tQLD\t1259\t27425\t19406\n10005147\t-19.3162\t146.700233\tHarris Crossing Estate 308 Hervey Range Road BOHLE PLAINS\tQLD\t484\t15537\t24670\n10006481\t-19.3081\t128.379\tLake Wilson Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t193\t25245\t23519\n10010261\t-19.2939\t146.7893\tMundingburra State School 77 Ross River Rd MUNDINGBURRA\tQLD\t189\t18527\t28560\n10006424\t-19.2742\t146.7579\tThe Good Guys Townsville Domain Central Shopping Centre 103 Duckworth Street GARBUTT\tQLD\t1011\t22539\t18739\n10005913\t-19.2734\t146.7766\t44 Punari Street CURRAJONG\tQLD\t867\t25886\t28974\n10002140\t-19.264\t146.821244\tQFES Communications Centre 2-8 Morey Street SOUTH TOWNSVILLE\tQLD\t109\t28481\t27732\n10010100\t-19.2531\t146.70435\tTower North Shore Boulevard Townsville\tQLD\t586\t18879\t20944\n10006479\t-19.1626\t128.163\tSturt Creek Homested Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t332\t27945\t28112\n10006484\t-19.1332\t127.828\tClay Hole Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t997\t26804\t28510\n10006485\t-19.0957\t127.518\tCarranya Bush Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t440\t28421\t26603\n10006550\t-19.0469\t134.487\tSpinifex Comms Site Brunchilly Station\tNT\t816\t25655\t29857\n10006478\t-19.0046\t127.586\tWest Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t1463\t13631\t23294\n10000422\t-18.9991\t144.98033\tTelstra Exchange Cassia Court Greenvale\tQLD\t176\t24085\t19065\n10006551\t-18.9761\t134.793\tKidman Comms Site Brunchilly Station\tNT\t1425\t17883\t22842\n10006486\t-18.9616\t127.965\tBush Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t1131\t25125\t26558\n10006487\t-18.9314\t128.374\tBorderline Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t575\t25753\t20936\n10006553\t-18.8683\t134.5\tBrunchilly Homestead Comms Site Brunchilly Station\tNT\t445\t12027\t21348\n10006552\t-18.8627\t134.563\tChow Chowra Comms Site Brunchilly Station\tNT\t112\t18559\t24404\n10006526\t-18.7108\t134.365\tCoolibah Comms Site Brunchilly Station\tNT\t810\t15271\t28878\n10008206\t-18.6908\t138.5308\tOptus Rooftop Site Boodjamulla National Park Adels Grove LAWN HILL\tQLD\t518\t18248\t29381\n10006482\t-18.6832\t127.685\tHughes Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t190\t28359\t18977\n10006483\t-18.6281\t128.147\tDry Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t376\t28661\t27427\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_-1511429632",
+ "id": "20220727-124935_815444613",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:46:50+0000",
+ "dateFinished": "2022-08-16T04:46:51+0000",
+ "status": "FINISHED"
+ },
+ {
+ "text": "%python\nz.show(site_df)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:52+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "language": "sql",
+ "editOnDblClick": false
+ },
+ "colWidth": 12.0,
+ "editorMode": "ace/mode/undefined",
+ "fontSize": 9.0,
+ "results": {
+ "0": {
+ "graph": {
+ "mode": "stackedAreaChart",
+ "height": 300.0,
+ "optionOpen": false,
+ "setting": {
+ "table": {
+ "tableGridState": {},
+ "tableColumnTypeState": {
+ "names": {
+ "SITE_ID": "number",
+ "LATITUDE": "number",
+ "LONGITUDE": "number",
+ "NAME": "string",
+ "STATE": "string",
+ "ELEVATION": "number",
+ "COST": "number",
+ "REVENUE": "number"
+ },
+ "updated": false
+ },
+ "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
+ "tableOptionValue": {
+ "useFilter": false,
+ "showPagination": false,
+ "showAggregationFooter": false
+ },
+ "updated": false,
+ "initialized": false
+ },
+ "stackedAreaChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default",
+ "style": "stack"
+ },
+ "pieChart": {},
+ "multiBarChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default"
+ }
+ },
+ "commonSetting": {},
+ "keys": [
+ {
+ "name": "SITE_ID",
+ "index": 0.0,
+ "aggr": "sum"
+ }
+ ],
+ "groups": [],
+ "values": [
+ {
+ "name": "REVENUE",
+ "index": 7.0,
+ "aggr": "sum"
+ },
+ {
+ "name": "COST",
+ "index": 6.0,
+ "aggr": "sum"
+ }
+ ]
+ },
+ "helium": {}
+ }
+ },
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TABLE",
+ "data": "SITE_ID\tLATITUDE\tLONGITUDE\tNAME\tSTATE\tELEVATION\tCOST\tREVENUE\n10009902\t-23.0\t116.466667\tNorthern Star Resources nominal LTE site Ashburton 1, 13 km east north east of Peak Edgar\tWA\t656\t13027\t25463\n10009903\t-23.0\t117.1\tNorthern Star Resources nominal LTE site Ashburton 2, 7 km west south west of Dolphin Hill\tWA\t157\t22480\t27407\n10009897\t-19.0\t129.7\tNorthern Star Resources nominal LTE site Tanami 2 Tanami Desert\tNT\t836\t25019\t25979\n10000187\t-38.34\t145.081063\tNBNCo 325 Myers Road Merricks North\tVIC\t327\t16288\t28689\n10000353\t-38.11\t145.2819\tCranbourne Park Shopping Centre High Street CRANBOURNE\tVIC\t163\t27689\t20374\n10000829\t-37.83\t144.899\tWestgate Bridge Structure_3 Westgate Bridge Freeway PORT SPOTSWOOD\tVIC\t552\t22402\t21001\n10007006\t-37.8\t144.7736\t176 Swann Dr DERRIMUT\tVIC\t1194\t14464\t26477\n10008365\t-37.72\t145.048389\tBorchardt Library La Trobe University The Agora Bundoora\tVIC\t1204\t18998\t27328\n10011002\t-34.74\t148.8444\tADFA site Yass Lachlan Valley Way Yass\tNSW\t1292\t26867\t21033\n10003498\t-34.47\t150.818413\tDTRS Site Kembla Grange Cnr W Dapto Rd and Prices Hwy KEMBLA GRANGE\tNSW\t481\t23851\t23735\n10007610\t-33.87\t116.0675\tGPS Transmitter Talisman Lithium Mine Maranup Ford Road GREENBUSHES\tWA\t705\t29605\t25214\n10010507\t-33.85\t151.0554\t30 Carter Street LIDCOMBE\tNSW\t349\t19070\t22918\n10007094\t-31.11\t150.89765\tTelstra Site Opposite 88 Duri Road West Tamworth\tNSW\t657\t27782\t24685\n10000636\t-30.36\t116.2896\tOff Edawa Road\tWA\t1399\t26501\t19005\n10009899\t-30.35\t121.933333\tNorthern Star Resources nominal LTE site Kanowna Belle East 42 km north east of Kanowna\tWA\t645\t27491\t25520\n10006332\t-30.16\t131.5803\tOptus Rooftop Site Maralinga Maralinga Village MARALINGA\tSA\t350\t14632\t26573\n10003562\t-28.87\t114.0\tKempton Fisheries Jackson Island ABROLHOS ISLANDS\tWA\t1230\t14248\t18627\n10009909\t-27.83\t153.334\tKerkin Road South COOMERA\tQLD\t833\t21215\t27075\n10006547\t-27.08\t141.907\tDurham Downs Homestead Comms Site Durham Downs Station\tQLD\t580\t22328\t23036\n10010405\t-26.75\t148.55294\tMarch IT Facility Roma Feedlot \u0026 Spelling Yards off Binya Lane MOUNT ABUNDANCE\tQLD\t1143\t19483\t23646\n10000233\t-26.71\t153.01285\tNBN Co 711 Ilkley Road TANAWHA\tQLD\t893\t19222\t28336\n10006538\t-25.55\t140.482\tParakunda Comms Site Durrie Station\tQLD\t149\t23954\t28182\n10005246\t-25.34\t152.7897\t2992 Maryborough Harvey Road SUNSHINE ACRES\tQLD\t283\t21587\t19925\n10006811\t-24.34\t133.458668\tOptus Rooftop site Stuarts Well Roadhouse 8844 Stuart Highway STUART WELL\tNT\t876\t25564\t26335\n10005015\t-22.96\t118.76\tJuna Downs Mast 108km WNW of Newman Newman\tWA\t248\t16671\t26189\n10010481\t-22.55\t119.972278\tTrailer 2 Roy Hill Mine ROY HILL\tWA\t758\t23387\t20752\n10004116\t-21.49\t114.99\tENSCO 107 Approximately 21km SW of ONSLOW\tWA\t404\t18467\t26904\n10009937\t-21.26\t114.04\tENSCO DPS-1 Offshore Australia\tEXT\t926\t25280\t26677\n10006878\t-21.21\t114.26\tAtwood Osprey Site Atwood Osprey Offshore Australia\tWA\t1254\t18044\t27492\n10008403\t-20.56\t145.55\tDGPS Site off Glen Houghton Rd via PENTLAND\tQLD\t452\t28637\t18630\n10001661\t-19.9\t130.178\tRamelius Resources Site 45k North East of Tanami Tanami\tNT\t405\t21468\t26030\n10008408\t-19.79\t147.22\tDGPS Site DGPS Site cnr Cussen and Granshaw Rds CLARE\tQLD\t1429\t25474\t25354\n10009895\t-19.75\t129.366667\tNorthern Star Resources nominal LTE site Tanami 4 Tanami Desert\tNT\t1054\t17790\t25830\n10010220\t-19.46\t116.56\tMcDermott DLV2000 Offshore Australia\tEXT\t450\t10234\t22519\n10009896\t-19.25\t129.166667\tNorthern Star Resources nominal LTE site Tanami 3 Tanami Desert\tNT\t421\t11731\t24236\n10009739\t-17.53\t128.3071\tOptus Site Purnululu National Park Reserve 39869 ORD RIVER\tWA\t1278\t17946\t27764\n10007618\t-12.67\t124.539\tNoble Tom Prosser Offshore Australia Timor Sea\tWA\t493\t22117\t25870\n10010885\t-42.8827\t147.3277\tH\u0026M Cat \u0026 Fiddle Arcade 93 Murray Street HOBART\tTAS\t970\t26935\t25121\n10007294\t-42.8823\t147.329101\tJettech Site 34 Elizabeth Street Hobart\tTAS\t1435\t29693\t19340\n10002567\t-42.8341\t147.4662\tAnaconda Cambridge Tasman Hwy CAMBRIDGE\tTAS\t711\t17040\t24960\n10010563\t-42.7921\t147.26671\t100 Cadbury Rd CLEREMONT\tTAS\t795\t16627\t19182\n10009655\t-42.5306\t147.978\tAquaculture Barge Okehampton Bay near Triabunna\tTAS\t612\t14865\t27294\n10010472\t-42.3886\t146.5032\tTelstra Site Wayatinah Community Centre Third Street Wayatinah\tTAS\t1403\t22065\t21228\n10003968\t-42.2869\t146.897825\tComms site 2.56km ESE of Hermitage HERMITAGE\tTAS\t479\t23308\t25203\n10005471\t-42.2703\t146.54465\tTelstra Site Bradys Lake Bradys Tower Rd, Tarraleah Bradys Sugarloaf\tTAS\t806\t24323\t28372\n10009706\t-41.586\t145.72\tTasmanet Site off Belvoir Rd West Coast off Belvoir Rd West Coast\tTAS\t1271\t22842\t18834\n10000557\t-41.5461\t146.41005\t80 Baldocks Rd Mole Creek\tTAS\t960\t17345\t18836\n10006786\t-41.5124\t146.64953\tDeloraine 36 Archer St DELORAINE\tTAS\t411\t17597\t22257\n10004946\t-41.4676\t147.1585\tColes Meadow Mews Shopping Centre 102 - 106 Hobart Rd KINGS MEADOWS\tTAS\t1233\t26556\t27887\n10002510\t-41.2341\t147.00945\tMount Direction optus monopole 71 Bullocks Head Road 7252 Mount Direction\tTAS\t748\t18439\t22116\n10004699\t-41.2286\t146.41077\tLatrobe Central 52 Hawkins Street West Latrobe\tTAS\t506\t28291\t19000\n10009686\t-40.683\t144.689\tCape Grim RASS Site Woolnorth\tTAS\t480\t22149\t29731\n10000004\t-39.5964\t143.9339\tCape Wickham Links Clubhouse KING ISLAND\tTAS\t1266\t18265\t23929\n10000847\t-38.8133\t146.1019\tTelstra Exchange 285 Waratah Road Sandy Point\tVIC\t1193\t19034\t25678\n10008493\t-38.522\t143.9732\tLorne North 2 Holliday Road LORNE\tVIC\t711\t19288\t25337\n10009484\t-38.468\t144.10447\tAIREYS INLET-V Split Point Light Station AIREYS INLET\tVIC\t727\t11062\t27269\n10004568\t-38.425\t143.54494\tTelstra Exchange site 410 G Barrys Road BARONGAROOK WEST\tVIC\t297\t20055\t29436\n10002273\t-38.3946\t143.68778\t420 Yeo-Yeodene Road Yeodene\tVIC\t472\t12958\t26476\n10004715\t-38.3842\t142.59992\tAllansford Allansford Recreation Reserve, ,Zeigler Parade ALLANSFORD\tVIC\t197\t29573\t29911\n10003109\t-38.3803\t142.5205\tAldi Gateway Plaza Warrnambool 154 Raglan Parade Warrnambool\tVIC\t313\t11177\t26492\n10008078\t-38.3791\t142.50816\tTelstra Site 2-64 Grafton Road Warrnambool\tVIC\t1046\t12851\t26082\n10002213\t-38.354\t144.9506\t795 Arthurs Seat Road ARTHURS SEAT\tVIC\t338\t10799\t18072\n10008464\t-38.348\t144.937\tMc Crae Freeway 2 CORNELL ST MCCRAE\tVIC\t761\t14331\t19500\n10004472\t-38.3429\t143.585742\t95-97 Gellibrand Street COLAC\tVIC\t353\t17974\t20406\n10000451\t-38.3341\t143.79031\tNBN Co Cnr Barray \u0026 Strachan Streets Birregurra\tVIC\t593\t29755\t22094\n10005040\t-38.3303\t144.9872\tAldi Dromana 120 Napean Hwy DROMANA\tVIC\t1006\t26164\t23417\n10005601\t-38.3124\t143.649992\t20 Warrowie Rd Colac\tVIC\t1317\t19173\t21418\n10008770\t-38.2778\t144.4535\tOB Site 13th Beach Golf Links 36 Fourteenth Road BARWON HEADS\tVIC\t1168\t27985\t18388\n10000791\t-38.2218\t145.0459\t99 Tanti Avenue MORNINGTON\tVIC\t1256\t26150\t18820\n10007176\t-38.187\t146.48831\tM8372 Traralgon West Scrubby Lane MARYVALE\tVIC\t329\t10234\t25081\n10010440\t-38.1856\t144.3801\t63 Leather Street BREAKWATER\tVIC\t1237\t29651\t23493\n10004132\t-38.1838\t145.0893\tcnr Mt Eliza Way and Canadian Bay Road MT ELIZA\tVIC\t918\t23228\t23755\n10002162\t-38.1574\t145.16951\tTelstra IBC McClelland Drive Peninsula Private Hospital Langwarrin\tVIC\t773\t14209\t23629\n10010422\t-38.1532\t145.1341\t47-49 Moorooduc Highway FRANKSTON\tVIC\t284\t22921\t27822\n10000719\t-38.1515\t144.365917\tUniversity Hospital Geelong Helipad Ryrie St GEELONG 3220\tVIC\t1238\t29357\t27529\n10010704\t-38.148\t144.3563\t73 Ryrie Street GEELONG\tVIC\t993\t13607\t24936\n10010456\t-38.1458\t144.3539\tcnr Latrobe Terrace and Gordon Avenue GEELONG\tVIC\t276\t26342\t29634\n10009959\t-38.1454\t144.3612\t26 Moorabool Street GEELONG\tVIC\t1153\t16152\t26616\n10010936\t-38.1238\t144.351\tGeelong Arena 110 Victoria Street NORTH GEELONG\tVIC\t652\t26537\t18268\n10009330\t-38.1238\t145.1508\tPines Forest Aquatic Centre 61 Forest Drive FRANKSTON NORTH\tVIC\t789\t27689\t26015\n10010368\t-38.1236\t145.31349\tNBN Co Site 1B/369 Casey Fields Blvd Cranbourne East\tVIC\t1446\t14340\t22026\n10004085\t-38.1025\t147.158611\tRAAF Interim Radar Site East Sale Talbots Road SALE\tVIC\t1027\t25713\t23203\n10001424\t-38.0781\t145.250748\tAldi Lyndhurst Marriot Blvd LYNDHURST\tVIC\t1123\t29286\t28148\n10007163\t-38.0756\t145.12337\tCarrum Central -O 506 Station Street CARRUM\tVIC\t1322\t14547\t20305\n10010705\t-38.0648\t145.4584\t4 Olympic Way PAKENHAM\tVIC\t148\t29938\t22261\n10010358\t-38.0466\t145.24\tM2 Industry Park cnr National Drive and Bayliss Road DANDENONG SOUTH\tVIC\t1408\t16595\t27250\n10008301\t-38.0363\t145.2362\t29 National Drive DANDENONG SOUTH\tVIC\t526\t21016\t19172\n10010757\t-38.0348\t145.1977\t42-46 Villas Road DANDENONG SOUTH\tVIC\t618\t10976\t23355\n10005573\t-38.0168\t145.38457\tGuys Hill 335 Beaconsfield Emerald Road BEACONSFIELD\tVIC\t891\t13758\t24265\n10009153\t-38.0118\t140.95955\tTelstra Site 13 Dry Creek Road Donovans DC of Grant\tSA\t599\t26842\t26467\n10011051\t-38.0111\t145.116\t71-81 Canterbury Road BRAESIDE\tVIC\t1462\t26066\t29168\n10000428\t-37.9887\t145.2439\tPool in the Park cnr Kidds Road and Tristiana Street DOVETON\tVIC\t678\t26936\t21058\n10000516\t-37.9867\t144.3509\tBarwon Prison 1140 Bacchus Marsh Road LARA\tVIC\t497\t29604\t21516\n10000567\t-37.9867\t145.1289\tSt Marks Primary School 4-6 Dimar Court DINGLEY VILLAGE\tVIC\t712\t29058\t22688\n10000179\t-37.9661\t145.0564\t2-6 Railway Road CHELTENHAM\tVIC\t674\t16817\t26888\n10000882\t-37.9659\t145.0571\tThe Village Cheltenham 1228 Nepean Hwy CHELTENHAM\tVIC\t1033\t24771\t25845\n10004279\t-37.9651\t144.7069\t50 Quay Boulevard WERRIBEE SOUTH\tVIC\t1379\t10129\t18454\n10001465\t-37.9591\t145.054976\tAldi Southland 1239 Nepean Highway CHELTENHAM\tVIC\t263\t11623\t23675\n10005706\t-37.9584\t145.0513\tMyer Westfield Southland 1156 Nepean Highway CHELTENHAM\tVIC\t943\t21098\t28440\n10010954\t-37.9568\t145.151903\tSpringvale Library 411 Springvale Road Springvale\tVIC\t991\t19999\t28121\n10009183\t-37.9535\t145.0477\tVista Kingston Park 1144 Nepean Hwy HIGHETT\tVIC\t214\t27828\t19505\n10010908\t-37.9502\t145.0078\t6 Fernhill Road SANDRINGHAM\tVIC\t1309\t24844\t19840\n10010755\t-37.949\t145.0787\tShop 7 430 Warrigal Road HEATHERTON\tVIC\t1375\t22607\t24786\n10010306\t-37.9391\t145.002\t293-295 Hampton Street HAMPTON\tVIC\t411\t16383\t29237\n10010195\t-37.9343\t145.0035\t514-518 Hampton Street HAMPTON\tVIC\t321\t20166\t29067\n10009358\t-37.9331\t145.0325\t336-338 South Road HAMPTON EAST\tVIC\t1487\t26158\t20068\n10010640\t-37.9209\t145.1403\tM-City cnr Dandenong and Blackburn Roads CLAYTON\tVIC\t539\t28351\t25287\n10005856\t-37.9198\t145.03905\t79/83 Mitchell St Bentleigh\tVIC\t930\t16407\t28253\n10000030\t-37.9192\t145.3463\tBelgrave Heights Christian School Wattle Valley Road BELGRAVE\tVIC\t197\t24131\t24715\n10002772\t-37.9172\t145.0312\t261 Centre Road BENTLEIGH\tVIC\t1490\t17506\t19997\n10000364\t-37.9158\t145.0608\tGlen Eira Sports and Aquatic Centre 200 East Boundary Road BENTLEIGH EAST\tVIC\t1003\t26970\t28905\n10000138\t-37.914\t145.132754\t21 Wellington Rd Clayton\tVIC\t814\t12394\t21563\n10000843\t-37.911\t145.1297\t18 Innovation Walk Monash University CLAYTON\tVIC\t890\t10657\t27340\n10010267\t-37.9094\t144.6638\tMacKillop Catholic Regional College 1 - 29 Russell St WERRIBEE\tVIC\t1245\t27263\t18784\n10000874\t-37.9083\t145.2388\t949 Stud Road ROWVILLE\tVIC\t564\t24305\t21058\n10010473\t-37.9044\t145.1598\tVillage Green Hotel cnr Springvale and Ferntree Gully Roads MULGRAVE\tVIC\t1438\t16884\t26794\n10010815\t-37.9038\t144.6562\t116 Watton Street WERRIBEE\tVIC\t1270\t26266\t29927\n10010165\t-37.9019\t142.7887\tSalt Creek Wind Farm off Woorndoo-Chatsworth Road WOORNDOO\tVIC\t1355\t28223\t28073\n10010633\t-37.8989\t145.0945\t89 Atherton Road OAKLEIGH\tVIC\t1231\t19832\t29852\n10005839\t-37.8979\t144.98963\tTelstra Street Cell 382 St Kilda Street BRIGHTON\tVIC\t1418\t20710\t20183\n10001088\t-37.8958\t144.753035\tAldi Sanctuary Lakes 300 Point Cook Road Point Cook\tVIC\t1294\t16499\t29480\n10008757\t-37.8916\t145.173288\tWIA Site Mt View Waverley Road Glen Waverley\tVIC\t590\t12260\t19241\n10002505\t-37.8905\t145.0655\t401 Neerim Road CARNEGIE\tVIC\t595\t17589\t26286\n10004702\t-37.8892\t145.0594\t316-320 Neerim Road CARNEGIE\tVIC\t398\t22663\t22858\n10005401\t-37.8886\t145.0541\t247 Neerim Road CARNEGIE\tVIC\t1141\t11971\t21572\n10001645\t-37.8876\t145.0813\tMyer Chadstone Shopping Centre 1341 Dandenong Road CHADSTONE\tVIC\t870\t24968\t18096\n10002193\t-37.887\t145.0831\ttoys R Us Chadstone Shopping Centre 1341 Dandenong Rd CHADSTONE\tVIC\t643\t14469\t26741\n10002276\t-37.8848\t145.0846\tShop m018 Chadstone Shopping Centre 1341 Dandenong Road CHADSTONE\tVIC\t929\t24749\t18224\n10010805\t-37.8841\t145.0559\t1060 Dandenong Road CARNEGIE\tVIC\t535\t25657\t22696\n10005820\t-37.8815\t145.29087\tTXA Ferntree Gully Site Monopole 1 Bruce Crescent FERNTREE GULLY\tVIC\t804\t17518\t18331\n10004169\t-37.8792\t145.1656\t263 Springfield Rd GLEN WAVERLEY\tVIC\t1494\t21262\t27783\n10010758\t-37.8765\t145.0035\tCaulfield Grammar School 217 Glen Eira Road ST KILDA EAST\tVIC\t999\t10918\t24323\n10008983\t-37.8763\t145.038\tTower Crane 2 Village Gate 22 Station St Caulfield East\tVIC\t1138\t28568\t21627\n10008982\t-37.8762\t145.0374\tTower Crane 1 Village Gate 22 Station St Caulfield East\tVIC\t829\t22877\t18909\n10008984\t-37.8761\t145.0376\tTower Crane 3 Village Gate 22 Station St Caulfield East\tVIC\t1478\t14233\t22175\n10009960\t-37.874\t145.0552\t61A The Avenue MALVERN EAST\tVIC\t327\t23026\t18718\n10008474\t-37.872\t145.20491\tScoresby North 55R Pumps Road WANTIRNA SOUTH\tVIC\t500\t29774\t22442\n10010025\t-37.8666\t144.7417\t111 Overton Road WILLIAMS LANDING\tVIC\t473\t13353\t27345\n10003297\t-37.8651\t144.70304\tTruganina West 20m monopole 2 Boyanich Court HOPPERS CROSSING\tVIC\t610\t16939\t26779\n10004405\t-37.8618\t144.985197\t194 St Kilda Road ST KILDA\tVIC\t1401\t11987\t27313\n10001653\t-37.8604\t144.9855\tJewish Museum of Victoria 26 Alma Road ST KILDA\tVIC\t1147\t29201\t29399\n10003199\t-37.8599\t144.67668\tTarneit North West 25m light pole 260-280 Hogans Road HOPPERS CROSSING\tVIC\t331\t11262\t25460\n10010759\t-37.8589\t145.0498\t2A Scott Grove GLEN IRIS\tVIC\t110\t18921\t18095\n10008714\t-37.8565\t144.9853\t35 Wellington Street ST KILDA\tVIC\t841\t24473\t23102\n10008974\t-37.853\t144.983\tJewish Care cnr Union Street and Punt Road WINDSOR\tVIC\t1124\t16535\t23821\n10004495\t-37.8514\t145.1297\t373 Burwood Highway BURWOOD\tVIC\t622\t14257\t18438\n10010784\t-37.8503\t144.9905\t14 Porter Street PRAHRAN\tVIC\t1396\t28513\t29097\n10010343\t-37.8501\t144.786567\tDHL Supply Chain 26 - 38 Harcourt Road Altona\tVIC\t655\t25867\t23403\n10010076\t-37.8454\t145.0126\t30 Springfield Avenue TOORAK\tVIC\t902\t26404\t18367\n10004159\t-37.8452\t144.9947\t402 Chapel Street SOUTH YARRA\tVIC\t847\t14152\t25451\n10000859\t-37.8433\t144.9959\t8-12 Garden Street SOUTH YARRA\tVIC\t1043\t26208\t23495\n10001697\t-37.8425\t144.9773\t478 St Kilda Road MELBOURNE\tVIC\t763\t14099\t19447\n10005683\t-37.8393\t144.9952\tCrane 1 625 Chapel Street SOUTH YARRA\tVIC\t1351\t22409\t27412\n10005685\t-37.839\t144.9954\tCrane 3 625 Chapel Street SOUTH YARRA\tVIC\t931\t22981\t25702\n10005734\t-37.8389\t144.9954\t625 Chapel Street SOUTH YARRA\tVIC\t1269\t20939\t25155\n10003082\t-37.8388\t144.9756\t450 St Kilda Road MELBOURNE\tVIC\t1405\t26766\t29562\n10005684\t-37.8386\t144.9952\tCrane 2 625 Chapel Street SOUTH YARRA\tVIC\t827\t29265\t29729\n10005686\t-37.8386\t144.9956\tCrane 4 625 Chapel Street SOUTH YARRA\tVIC\t685\t15084\t19303\n10010073\t-37.8375\t144.9941\t16-22 Claremont Street SOUTH YARRA\tVIC\t255\t15299\t22554\n10010992\t-37.8373\t144.7389\t28 Prosperity Street TRUGANINA\tVIC\t502\t27892\t28140\n10000431\t-37.8367\t144.9668\t74 Eastern Road SOUTH MELBOURNE\tVIC\t703\t25272\t26899\n10005538\t-37.8364\t144.6929\t540 Derrimut Road Tarneit\tVIC\t275\t24837\t26365\n10002164\t-37.8358\t144.76\t2 National Drive TRUGANINA\tVIC\t599\t22976\t19030\n10009651\t-37.8342\t145.0011\t135-141 Alexandra Avenue SOUTH YARRA\tVIC\t654\t22046\t20484\n10004028\t-37.8328\t144.9599\t228 Dorcas Street SOUTH MELBOURNE\tVIC\t1443\t21442\t20788\n10005876\t-37.8317\t144.9085\tWestgate Park off West Gate Freeway PORT MELBOURNE\tVIC\t1132\t28889\t18764\n10000537\t-37.8315\t144.9479\t165-167 Gladstone Street SOUTH MELBOURNE\tVIC\t964\t16181\t19742\n10009650\t-37.8305\t144.9902\tcnr Cremorne and Bent Streets CREMORNE\tVIC\t873\t27395\t23977\n10003393\t-37.8302\t144.653502\tCnr of Leakes Rd and Davis Rd TARNEIT\tVIC\t1155\t25448\t20492\n10004825\t-37.8301\t145.0589\tAldi Camberwell 15-25 Station Street Camberwell\tVIC\t1038\t22140\t22520\n10010979\t-37.8294\t144.9701\t25-29 Coventry Street SOUTHBANK\tVIC\t294\t24287\t24086\n10004299\t-37.829\t145.0547\tCamberwell Village 139 - 159 Camberwell Rd CAMBERWELL\tVIC\t454\t19347\t18427\n10000616\t-37.8274\t144.9563\t52 Haig Street SOUTHBANK\tVIC\t1388\t26251\t26567\n10000827\t-37.8257\t144.8899\tWestgate Bridge Structure_1 Westgate Bridge Freeway PORT MELBOURNE SPOTSWOOD\tVIC\t287\t16253\t22634\n10008690\t-37.8257\t144.9629\t93-119 Kavanagh Street SOUTHBANK\tVIC\t305\t28027\t27800\n10005413\t-37.8241\t144.9638\t54-68 Kavanagh Street SOUTHBANK\tVIC\t207\t21946\t19388\n10004412\t-37.824\t144.8541\t62-70 Export Drive BROOKLYN\tVIC\t424\t20405\t20496\n10008582\t-37.8228\t145.2368\tAquinas College Great Ryrie Street RINGWOOD\tVIC\t910\t18823\t25905\n10000634\t-37.8226\t144.93\t808 Lorimer Street PORT MELBOURNE\tVIC\t1330\t21204\t18253\n10000091\t-37.8222\t144.9661\tOaks Southbank 57-61 City Road SOUTHBANK\tVIC\t1288\t21677\t29992\n10005950\t-37.8222\t144.9797\tCrane between Rod Laver Arena and Melbourne Park cnr Batman Avenue and Swan Street MELBOURNE\tVIC\t993\t24120\t28317\n10008877\t-37.8217\t144.9246\tUnit 1, 706 Lorimer Street PORT MELBOURNE\tVIC\t525\t25495\t26974\n10002675\t-37.8209\t145.0344\t1 Grace Street HAWTHORN\tVIC\t988\t27146\t20965\n10001696\t-37.8208\t145.0085\t203 Burnley Street RICHMOND\tVIC\t195\t13883\t24781\n10000801\t-37.8203\t145.01347\t642 Bridge Road Richmond\tVIC\t1272\t29219\t21786\n10010537\t-37.8201\t144.9215\t29 South Wharf Lorimer St PORT MELBOURNE\tVIC\t1458\t13687\t24791\n10007586\t-37.8201\t145.123236\t545 Station St Box Hill\tVIC\t1433\t24176\t22727\n10010153\t-37.8192\t144.9518\t664 Collins Street DOCKLANDS\tVIC\t303\t29656\t29075\n10000143\t-37.8189\t144.9751\tCircus Oz Birrarung Marr MELBOURNE\tVIC\t448\t16170\t25677\n10005902\t-37.8188\t144.9587\tCrane 2 477 Collins Street MELBOURNE\tVIC\t643\t18713\t27166\n10005901\t-37.8184\t144.9586\tCrane 1 477 Collins Street MELBOURNE\tVIC\t223\t28979\t18264\n10001257\t-37.818\t145.3128\t135 -141 Canterbury Rd KILSYTH\tVIC\t1427\t24577\t24213\n10010142\t-37.8179\t144.9652\t276 Flinders Street MELBOURNE\tVIC\t285\t11413\t20701\n10005825\t-37.8179\t144.9956\t153-177 Bridge Road RICHMOND\tVIC\t452\t21669\t28429\n10010212\t-37.8179\t145.1257\t999 Whitehorse Road BOX HILL\tVIC\t850\t16170\t20261\n10002361\t-37.8178\t144.9956\tCrane 153-177 Bridge Road RICHMOND\tVIC\t750\t10219\t25136\n10003387\t-37.8174\t144.9961\t2 Hull Street RICHMOND\tVIC\t542\t20182\t20507\n10000609\t-37.8171\t144.994\tTelstra Site Leigh Place Richmond\tVIC\t639\t15590\t21568\n10008951\t-37.817\t144.9688\tTower crane 1 180 Flinders Street MELBOURNE\tVIC\t845\t14683\t19884\n10008950\t-37.8166\t144.9686\tTower crane 2 180 Flinders Street MELBOURNE\tVIC\t463\t14890\t29239\n10006243\t-37.8164\t145.131858\tTower Crane 40 Dorking Rd Box Hill\tVIC\t383\t19725\t28740\n10010754\t-37.8163\t145.1067\t692 Whitehorse Road MONT ALBERT\tVIC\t881\t10546\t23495\n10005999\t-37.8162\t144.9657\t257 Collins Street Melbourne\tVIC\t884\t18346\t24092\n10008522\t-37.8162\t145.1817\tWhitehorse Centre 379 Whitehorse Road NUNAWADING\tVIC\t785\t20077\t24993\n10002105\t-37.816\t145.1212\t19 Irving Avenue BOX HILL\tVIC\t1325\t26324\t23691\n10000476\t-37.8152\t144.9391\t429 Docklands Drive DOCKLANDS\tVIC\t1161\t24449\t19002\n10010419\t-37.8152\t144.9512\tShop MM4 Spencer Outlet Centre 201 Spencer Street DOCKLANDS\tVIC\t1296\t22859\t19459\n10009796\t-37.8151\t144.9686\tShop 1/161 Collins Street MELBOURNE\tVIC\t1060\t27927\t26634\n10002092\t-37.815\t144.9543\t605 Lonsdale Street MELBOURNE\tVIC\t327\t12312\t27921\n10008990\t-37.8149\t144.9993\t130-140 Church Street RICHMOND\tVIC\t1348\t12580\t29509\n10008817\t-37.8149\t144.964888\tPower Pole 287-297 Little Collins St MELBOURNE\tVIC\t351\t21548\t23552\n10002652\t-37.8148\t145.012\t9-15 David Street RICHMOND\tVIC\t1306\t28525\t26633\n10007624\t-37.8144\t144.9512\tPolice Complex 263 - 283 Spencer St MELBOURNE\tVIC\t828\t28275\t28903\n10010458\t-37.8143\t144.7672\t9-15 Foundation Road TRUGANINA\tVIC\t560\t27110\t28707\n10002244\t-37.8142\t144.955\t580 Lonsdale Street MELBOURNE\tVIC\t744\t18641\t23280\n10009577\t-37.814\t144.9704\t90 Collins Street MELBOURNE\tVIC\t896\t14486\t18566\n10005262\t-37.814\t144.94102\tCrane 2 387-395 Docklands Drive DOCKLANDS\tVIC\t960\t17560\t21273\n10000738\t-37.814\t145.2305\tCrane at Eastland Shopping Centre 171 Maroondah Highway RINGWOOD\tVIC\t1113\t12452\t28625\n10010617\t-37.8139\t145.1244\t757 Station Street BOX HILL\tVIC\t446\t13316\t22653\n10010529\t-37.8134\t144.9384\tThe District Docklands Shopping Precinct SCF11 107-109 Studio Lane DOCKLANDS\tVIC\t120\t18151\t21185\n10010413\t-37.8133\t144.8863\t111 Sommerville Road FOOTSCRAY\tVIC\t884\t13437\t24408\n10007065\t-37.8126\t144.958396\tMelbourne Childrens Court of Victoria 477 Little Lonsdale Street Melbourne\tVIC\t736\t18663\t22593\n10010414\t-37.8125\t144.8787\t221 Sommerville Road FOOTSCRAY\tVIC\t706\t28788\t18302\n10000503\t-37.8123\t144.9608\t388 Lonsdale Street MELBOURNE\tVIC\t1014\t17810\t28939\n10008964\t-37.8119\t144.8127\t5-11 Normanby Avenue SUNSHINE WEST\tVIC\t863\t18630\t21315\n10003136\t-37.8119\t144.9682\tBillboard The Venue 170 Russell Street MELBOURNE\tVIC\t134\t24363\t25748\n10010397\t-37.8118\t144.9773\t2 St Andrews Place EAST MELBOURNE\tVIC\t481\t19171\t29451\n10002963\t-37.8115\t144.9606\t296-300 Little Lonsdale Street MELBOURNE\tVIC\t874\t27820\t26355\n10000536\t-37.8113\t144.9929\t34-40 Elizabeth Street RICHMOND\tVIC\t1386\t18211\t22494\n10003565\t-37.811\t144.9696\tHer Majesty\u0027s Theatre 219 Exhibition St MELBOURNE\tVIC\t1177\t27475\t29353\n10000027\t-37.8109\t144.9371\tCostco Docklands 381-383 Footscray Road DOCKLANDS\tVIC\t843\t20341\t19731\n10009602\t-37.8109\t144.9679\t157 Lonsdale Street MELBOURNE\tVIC\t890\t23731\t25221\n10004104\t-37.8097\t144.9571\t229 Franklin Street MELBOURNE\tVIC\t708\t22489\t29936\n10008072\t-37.8094\t144.9628\t17 Little La Trobe Street MELBOURNE\tVIC\t133\t17527\t22452\n10010901\t-37.8088\t144.9675\t141 La Trobe Street MELBOURNE\tVIC\t712\t15025\t24560\n10010662\t-37.8083\t144.8273\t30-34 Strzelecki Avenue SUNSHINE WEST\tVIC\t1056\t27340\t19753\n10011029\t-37.8077\t144.9862\t36 Wellington COLLINGWOOD\tVIC\t546\t29334\t24854\n10003978\t-37.8076\t144.9682\t353 Exhibition Street MELBOURNE\tVIC\t753\t26233\t20635\n10010154\t-37.8071\t144.984\t15-21 Derby Street COLLINGWOOD\tVIC\t240\t24798\t25341\n10002771\t-37.8063\t144.9802\t166 Gertrude Street FITZROY\tVIC\t1335\t13854\t22282\n10003975\t-37.8055\t144.9481\t621 King Street WEST MELBOURNE\tVIC\t796\t25744\t18988\n10003245\t-37.8046\t144.98292\tFITZROY Rooftop 145 Smith St FITZROY?\tVIC\t225\t29886\t22227\n10005922\t-37.8038\t145.0378\t363-369 High Street Kew\tVIC\t637\t19108\t19393\n10006881\t-37.8024\t144.9601\tLaw Building Melbourne University cnr Barry and Pelham Streets CARLTON\tVIC\t676\t11937\t24539\n10010964\t-37.8024\t144.9933\t112-120 Vere Street ABBOTSFORD\tVIC\t1006\t18645\t24754\n10003464\t-37.802\t144.955614\t21 Bedford Street North Melbourne\tVIC\t679\t29916\t25490\n10010814\t-37.8018\t144.7715\t210 Swann Drive DERRIMUT\tVIC\t366\t29002\t25655\n10010333\t-37.8004\t144.9536\t15-27 Wreckyn Street NORTH MELBORNE\tVIC\t937\t22623\t20539\n10009847\t-37.8003\t144.9087\tcnr Maribyrnong Street and Hopkins Street FOOTSCRAY\tVIC\t1389\t26927\t29769\n10000635\t-37.8001\t144.9069\t18-24 Hopkins Street FOOTSCRAY\tVIC\t1238\t20169\t21470\n10008583\t-37.7998\t144.9098\t2 Hopkins St FOOTSCRAY\tVIC\t818\t21896\t20137\n10006882\t-37.7982\t144.9586\tKenneth Myer Carpark cnr Royal Parade and Genetics Lane PARKVILLE\tVIC\t182\t27872\t25946\n10000263\t-37.798\t144.9679\tLygon Court Shopping Centre 380 Lygon Street CARLTON\tVIC\t942\t20451\t27654\n10006883\t-37.7975\t144.9657\tEastern Carpark Melbourne University 375 Cardigan Street CARLTON\tVIC\t805\t15653\t23648\n10001901\t-37.7973\t144.9541\tBio21 Institute 30 Flemington Rd PARKVILLE\tVIC\t754\t13524\t18322\n10010274\t-37.7971\t144.9743\t1 Palmerston Street CARLTON\tVIC\t949\t29190\t23545\n10003963\t-37.7961\t144.9166\t71-86 Hobsons Road KENSINGTON\tVIC\t825\t18206\t22138\n10004212\t-37.7961\t144.9408\t113 Canning Street NORTH MELBOURNE\tVIC\t805\t23677\t22343\n10005738\t-37.7951\t144.9489\t179-191 Flemington Road NORTH MELBOURNE\tVIC\t506\t20914\t20599\n10004234\t-37.7932\t144.9991\t122-138 Roseneath Street CLIFTON HILL\tVIC\t1411\t24370\t25931\n10009846\t-37.7912\t144.8908\t124-188 Ballarat Road FOOTSCRAY\tVIC\t849\t24286\t19324\n10008587\t-37.7842\t145.1156\t535 Doncaster Road DONCASTER\tVIC\t850\t20331\t18857\n10005452\t-37.7837\t144.91531\tAscot Vale South 400 EPSOM RD FLEMINGTON\tVIC\t526\t13112\t23732\n10001637\t-37.7836\t145.1256\tMyer Doncaster Westfield Doncaster 619 Doncaster Road DONCASTER\tVIC\t447\t14804\t18218\n10009359\t-37.7815\t144.875\t108 Mitchell Street MAIDSTONE\tVIC\t1304\t26151\t22884\n10002345\t-37.7807\t145.6111\t2431 Warburton Highway YARRA JUNCTION\tVIC\t113\t22635\t25195\n10003303\t-37.7786\t144.971\t8 Lygon Street BRUNSWICK EAST\tVIC\t1364\t25737\t26041\n10003057\t-37.7784\t145.4589\tAldi Seville 638 Warburton Highway Seville\tVIC\t928\t14021\t19708\n10001695\t-37.778\t144.9711\t22-30 Lygon Street BRUNSWICK EAST\tVIC\t827\t27675\t29149\n10010661\t-37.7754\t144.9586\t325 Barkly Street BRUNSWICK\tVIC\t896\t18877\t18253\n10000529\t-37.7752\t145.48856\tNBN Co Site 773 Warburton Highway Seville East\tVIC\t1047\t19731\t28278\n10004074\t-37.767\t144.9986\t445-453 High Street NORTHCOTE\tVIC\t399\t27596\t23853\n10002849\t-37.7654\t144.9217\tCrane 5 40 Hall Street MOONEE PONDS\tVIC\t513\t21517\t24284\n10002848\t-37.7653\t144.9199\tCrane 1 40 Hall Street MOONEE PONDS\tVIC\t1018\t25008\t24975\n10004413\t-37.7636\t144.9617\t8 Breese Street BRUNSWICK\tVIC\t345\t10936\t23011\n10000380\t-37.7626\t144.9619\t26 Breese Street BRUNSWICK\tVIC\t682\t22475\t29945\n10008288\t-37.7611\t144.83769\tSunshine 2 42 Harvester Avenue SUNSHINE NORTH\tVIC\t372\t11223\t27511\n10010024\t-37.7563\t144.9169\t15-21 Russell Street ESSENDON\tVIC\t691\t24370\t18435\n10003357\t-37.7552\t145.0558\t443 Upper Heidelberg Road HEIDELBERG\tVIC\t888\t25377\t20111\n10006581\t-37.7541\t145.6534\tTelstra Site 3045 Warburton Highway Millgrove\tVIC\t919\t23572\t18571\n10002253\t-37.7533\t144.943947\t444-446 Moreland Rd Brunswick\tVIC\t1414\t23227\t21001\n10010176\t-37.7465\t145.0023\t165-191 High Street PRESTON\tVIC\t1326\t13938\t20250\n10002818\t-37.7417\t140.78\tMount Gambier Airport 109 Airport Road, Wandilo SA 5291 Wandilo\tSA\t1334\t28427\t18112\n10002233\t-37.7399\t145.0018\tALDI Preston Market 18 Cramer St Preston\tVIC\t623\t25758\t18628\n10001458\t-37.7379\t145.028781\tAldi Northland 2 - 50 Murray Road PRESTON\tVIC\t624\t24780\t19650\n10001005\t-37.7306\t145.1084\t4 Main Road LOWER PLENTY\tVIC\t846\t14735\t23858\n10004609\t-37.7303\t144.2568\tYaloak South Development nominal centre point Yaloak Creek off Glenmore Road BALLAN\tVIC\t686\t23588\t20884\n10005965\t-37.7286\t145.31313\tNBN Co Site 285 Edward Road CHIRNSIDE PARK\tVIC\t1200\t12106\t20660\n10007168\t-37.716\t145.006\tM8527 Reservoir Central 4 Edwardes Street RESERVOIR\tVIC\t907\t25814\t20982\n10009510\t-37.7105\t144.8627\t27 Assembly Drive TULLAMARINE\tVIC\t1201\t29821\t27283\n10005937\t-37.7082\t144.8535\tNSA Demo Location 1 6 Aerolink Dr Tullamarine\tVIC\t805\t27791\t27700\n10007166\t-37.7071\t144.45857\tParwan North 4300 Geelong Bacchus Marsh Road PARWAN\tVIC\t267\t10170\t26684\n10001609\t-37.7047\t144.8635\t140 Sharps Road MELBOURNE AIRPORT\tVIC\t756\t29944\t18963\n10010400\t-37.6924\t148.0908\tBoM AWS Compound Mt Nowa Nowa via Two Mile Road NOWA NOWA\tVIC\t1118\t11394\t27459\n10005716\t-37.6919\t145.014\t49B Temple Drive THOMASTOWN\tVIC\t1165\t19548\t21691\n10004309\t-37.6906\t144.8772\t47 Garden Drive TULLAMARINE\tVIC\t1480\t27107\t28010\n10000031\t-37.6905\t145.0248\t319 Settlement Road THOMASTOWN\tVIC\t499\t15399\t29889\n10001026\t-37.687\t144.560535\tAldi Melton West Woodgrove Shopping Centre High St Melton West\tVIC\t826\t22400\t24094\n10000623\t-37.6839\t144.873\t58 Springbank Street TULLAMARINE\tVIC\t1235\t21933\t27116\n10003324\t-37.6833\t145.0705\t7 Graduate Road BUNDOORA\tVIC\t368\t26561\t27964\n10001131\t-37.6826\t144.9561\t1497 Hume Highway CAMPBELLFIELD\tVIC\t1077\t24745\t21642\n10010882\t-37.6805\t144.9199\tShop G027, Broadmeadows Shopping Centre 1099-1169 Pascoe Vale Road BROADMEADOWS\tVIC\t683\t26633\t24282\n10000588\t-37.6801\t145.070292\tVHA Rooftop Site Uni Hill Factory Outlets 2 Janfield Drive BUNDOORA\tVIC\t602\t16433\t26805\n10005719\t-37.6773\t144.9548\t9 - 11 Fabio Court CAMPBELLFIELD\tVIC\t665\t12856\t20107\n10002230\t-37.6742\t144.9082\tConstruction site Valley Park off Erinbank Crescent WESTMEADOWS\tVIC\t259\t24502\t23213\n10005512\t-37.6703\t145.5417\t263 Don Rd HEALSVILLE\tVIC\t1318\t25822\t21193\n10006968\t-37.6605\t144.9381\tBroadcast Mast 44 Kyabram Street Coolaroo\tVIC\t641\t12162\t27031\n10008059\t-37.6591\t145.016019\t40 Deveny Street Epping\tVIC\t484\t25381\t18448\n10010787\t-37.6574\t145.0139\t60 Deveny Road EPPING\tVIC\t155\t14800\t21116\n10006259\t-37.6521\t145.0195\t113 Cooper St EPPING\tVIC\t660\t15202\t20877\n10009008\t-37.6521\t145.5222\t316-334 Maroondah Highway HEALESVILLE\tVIC\t663\t26791\t28358\n10001062\t-37.6507\t145.069338\tAldi Plenty Valley 400 McDonalds Rd Plenty Valley\tVIC\t199\t29109\t25882\n10009690\t-37.6439\t144.9504\t1835 Hume Highway Campbellfield\tVIC\t289\t22810\t29934\n10002101\t-37.6006\t145.0924\tMernda Police Station cnr Bridge Inn Road and Pimpinella Pass MERNDA\tVIC\t1180\t18706\t20023\n10001581\t-37.576\t144.7248\tSunbury Aquatic \u0026 Leisure Centre 20 Ligar Street SUNBURY\tVIC\t1328\t20262\t21398\n10005780\t-37.5637\t144.6903\tNBN Co Site 250A Reservoir Road SUNBURY\tVIC\t848\t23084\t18687\n10006696\t-37.5603\t143.8603\tThe Good Guys Ballarat 33 Grenville St North BALLARAT NORTH\tVIC\t1079\t20956\t22666\n10002589\t-37.535\t143.8218\tAnaconda Wendouree 333 Gillies Street WENDOUREE\tVIC\t1074\t12671\t25030\n10010948\t-37.5325\t147.0053\tBoM Site Reeves Knob off Marathon Road MOROKA\tVIC\t1283\t26243\t18177\n10001299\t-37.5292\t143.8095\t233-243 Learmonth Road WENDOUREE\tVIC\t293\t24447\t27017\n10008479\t-37.5206\t144.72498\tEmu Valley 420 SETTLEMENT ROAD SUNBURY\tVIC\t873\t18350\t28548\n10011052\t-37.4846\t144.5911\t6 Aitken Street GISBORNE\tVIC\t192\t15903\t23945\n10010466\t-37.4462\t145.2445\tTelstra Site 1600 Whittlesea-Yea Road Kinglake West\tVIC\t1172\t15596\t23576\n10005440\t-37.4077\t144.5788\t601 Mount Macedon Rd MOUNT MACEDON\tVIC\t258\t29835\t21534\n10011053\t-37.3908\t145.4768\tBoM Site 4427 Melba Highway GLENBURN\tVIC\t1309\t13326\t23174\n10001678\t-37.375\t145.28595\tNBN Co Site 2646 Whittlesea - Yea Road Flowerdale\tVIC\t483\t11216\t24978\n10009111\t-37.3555\t144.08838\tTelstra Site 3891 Midland Highway Eganstown Hepburn\tVIC\t1200\t21922\t19504\n10008624\t-37.2281\t143.2006\tBOM Site Ben Nevis via Ben Nevis Road EVERSLEY\tVIC\t377\t26721\t25925\n10000269\t-37.1924\t140.889014\tFire Tower Off Cumaum Forest Road Cumaum\tSA\t1494\t26955\t29515\n10006382\t-37.1732\t142.542144\tLakeside Tourist Park Tymna Drive HALLS GAP\tVIC\t247\t15915\t21257\n10009360\t-37.1453\t146.4468\t15 Summit Road MOUNT BULLER\tVIC\t1460\t17102\t18211\n10010949\t-37.1125\t148.8974\tBoM Site Mount Delegate Delegate Hill Track BENDOC\tVIC\t564\t19299\t24997\n10006027\t-37.097\t140.6662\tLimbert DGPS 1679 Moyhall Rd Naracoorte\tSA\t1434\t15666\t18756\n10009881\t-37.074\t149.9077\tWharf Weecoon St EDEN\tNSW\t410\t27576\t21834\n10006291\t-36.9078\t146.26305\tTelstra Site 3324 Tatong-Tolmie Road Archerton\tVIC\t1327\t24617\t25497\n10000288\t-36.8861\t149.89722\tSplash Hillcrest Site 95-97 Merimbula Drive Merimbula\tNSW\t345\t16610\t21718\n10007248\t-36.8051\t142.11983\tLower Norton 44 Push-Hannans Road Lower Norton\tVIC\t579\t12089\t26829\n10009724\t-36.7319\t149.98113\tTelstra Temporary East Cnr of Davidson and Pacific Sts Tathra\tNSW\t229\t19937\t21164\n10003143\t-36.7291\t146.1149\tTelstra Site 47 Tiger Hill Road Tatong\tVIC\t218\t17407\t24424\n10003445\t-36.7265\t149.8427\tBOM Site 41 Grandview Road Black Range\tNSW\t438\t21227\t20776\n10010401\t-36.7141\t142.1967\t24 Darlot Street HORSHAM\tVIC\t1013\t17015\t24233\n10002033\t-36.6694\t142.30356\tLongerenong optus monopole 229 Longerenong Road Longerenong\tVIC\t884\t29617\t29962\n10007418\t-36.6547\t146.6813\tTelstra Site 109 McLees Road Buffalo River Alpine\tVIC\t929\t22565\t28528\n10007350\t-36.6401\t146.20889\tTelstra Site 2081 Kilfeera Rd Upper Ryans Creek\tVIC\t1003\t12132\t18375\n10005017\t-36.6052\t146.87034\tTelstra Site 182 Havilah Road Rosewhite Alpine\tVIC\t147\t18383\t21055\n10004144\t-36.513\t142.5535\t548 Minyp - Coromby Rd MINYP\tVIC\t994\t23972\t27022\n10003600\t-36.4259\t145.240377\tCnr Dhurringile AND Pyke Rd TATURA\tVIC\t611\t15793\t19811\n10010950\t-36.4206\t146.3056\tBoM Site Wangaratta Aerodrome Brian Higgins Drive LACEBY\tVIC\t1314\t19068\t25392\n10004652\t-36.3993\t148.739244\t423 Avonside Rd Avonside\tNSW\t357\t23273\t28929\n10003953\t-36.3979\t144.978774\t5 Olympic Street GIRGARRE\tVIC\t759\t19470\t21018\n10000161\t-36.3814\t145.3981\tShepparton Police Station 155 Welsford Street SHEPPARTON\tVIC\t571\t23812\t19638\n10007790\t-36.3396\t146.0163\tSite 460 Bungeet Road BUNGEET WEST\tVIC\t1417\t24988\t20094\n10003101\t-36.3204\t142.416\tAWIB Site Warracknabeal Aerodrome WARRACKNABEAL 3393\tVIC\t1477\t19901\t18620\n10004608\t-36.2093\t140.589117\tWirrega Lot 3 Dukes Highway WIRREGA\tSA\t533\t27638\t21412\n10003110\t-36.1387\t146.8949\tAldi White Box Rise 6 Wark Street Wodonga\tVIC\t1461\t22249\t27052\n10009564\t-36.1185\t146.8797\t88 Elgin Boulevard WODONGA\tVIC\t578\t19324\t23101\n10007672\t-36.1009\t147.035083\tHume Weir Sewer Filtration Plant 14 Trout Farm Rd Lake Hume Village\tNSW\t1367\t14321\t26374\n10010756\t-36.085\t146.913\t569 Hume Street ALBURY\tNSW\t1427\t28138\t27913\n10007787\t-36.085\t150.0479\tSite 42 Princes Highway BODALLA\tNSW\t225\t10259\t26052\n10007671\t-36.0475\t146.896625\tGlenmorus Gardens 54 Glenmorus St Glenroy\tNSW\t999\t22209\t29291\n10010951\t-36.0294\t146.0306\tBoM Site Yarrawonga Aerodrome Cahills Road YARRAWONGA\tVIC\t735\t21246\t20691\n10004184\t-36.0211\t148.724023\tAdaminaby Lot 13 Old Adaminaby Adaminaby\tNSW\t1207\t17004\t22659\n10002883\t-35.9796\t146.64048\tHowlong optus site 160 Pell Street NSW 2643 Howlong\tNSW\t1115\t23379\t27988\n10002747\t-35.9745\t146.7435\tYaparra Via Chambers Road BUNGOWANNAH\tNSW\t1387\t21824\t29387\n10011020\t-35.9122\t150.080486\tNominal Planning Site Campbell St MORUYA\tNSW\t207\t11298\t28820\n10002255\t-35.8178\t149.1652\tFibre Repeater Site Monaro Highway Colinton\tNSW\t147\t13911\t21463\n10003102\t-35.7151\t142.357\tAWIB Site Hopetoun Aerodrome HOPETOUN 3396\tVIC\t262\t14507\t25752\n10005254\t-35.6542\t137.637\t14 Murray Street KINGSCOTE\tSA\t312\t11650\t28911\n10008174\t-35.625\t137.2065\tOptus Rooftop Site Stokes Bay North Coast Rd and Lightburn Road STOKES BAY\tSA\t1215\t17467\t20519\n10003097\t-35.5569\t138.6228\tBeachside Car Park Cnr Albert Pl and Esplanade VICTOR HARBOUR\tSA\t1057\t27174\t29981\n10004368\t-35.5248\t144.98275\t315 Victoria St DENILIQUIN\tNSW\t1004\t21903\t26007\n10005116\t-35.4449\t138.3139\t15 Jetty Road NORMANVILLE\tSA\t616\t18105\t23038\n10009405\t-35.4309\t149.22075\tHill 800 Reservoir Old Cooma Road GOOGONG\tNSW\t967\t16050\t19153\n10006612\t-35.4174\t149.0643\tThe Good Guys Tuggeranong Hyperdome Shopping Centre 76 Athllon Dr GREENWAY\tACT\t790\t11815\t22584\n10009406\t-35.4026\t149.20583\tHomestead Rise Reservoir Constance Road JERRABOMBERRA\tNSW\t284\t20194\t21577\n10009481\t-35.3945\t149.1651\t71 Seppard Street HUME\tACT\t1331\t26593\t24323\n10008744\t-35.3599\t149.2095\tLetchworth Neighbourhood Centre 28 Miller Street QUEANBEYAN WEST\tNSW\t513\t18173\t26840\n10002396\t-35.3378\t149.1787\t337 Canberra Ave FYSHWICK\tACT\t943\t11629\t29523\n10009831\t-35.3088\t139.5106\tMcCall Repeater site, The Bend Motorsport Park Corner Dukes Hwy and Malley Hwy TAILEM BEND\tSA\t679\t21796\t18842\n10005318\t-35.2888\t149.1434\t51 Constitution Avenue CAMPBELL\tACT\t1364\t10192\t26984\n10009512\t-35.2769\t149.1346\tCommSol CommSite 51 Cooyong Street BRADDON\tACT\t832\t12420\t18496\n10002746\t-35.2649\t141.1807\t27 Poole Street MURRAYVILLE\tVIC\t694\t23438\t19485\n10010182\t-35.2615\t149.4436\tMajara Street between King and Forster Streets BUNGENDORE\tNSW\t862\t20263\t19154\n10003179\t-35.2279\t144.39442\tRIVALEA NIEMUR optus monopole 297 Balpool Ln Niemur\tNSW\t218\t17614\t25617\n10007741\t-35.2114\t144.8175\tTelstra Site Lot 1 cnr Brodribb \u0026 Morris Sts Wanganella Conargo\tNSW\t1407\t27616\t25500\n10004489\t-35.1415\t138.4961\tZorich Colonnades 54 Beach Rd NOARLUNGA CENTRE\tSA\t274\t24713\t29742\n10000471\t-35.1221\t150.07516\tTelstra Site 6218 Nerriga Road Nerriga\tNSW\t895\t24649\t28816\n10000492\t-35.0952\t138.55264\tTelstra Site Cnr Rothschild Street and Frenshams Drive Woodcroft\tSA\t1024\t13219\t21486\n10003197\t-35.0871\t150.6145\tSt Georges Basin 50M LATTICE TOWER The Wool Road ST? GEORGES BASIN\tNSW\t571\t12061\t22219\n10006280\t-35.0825\t139.0658\tBOM Site Callington Hill Adjacent to 325 Highland Road Callington\tSA\t257\t25804\t18471\n10007930\t-35.0076\t138.7191\tOB Site, Stirling Oval Mount Barker Road STIRLING\tSA\t1284\t17246\t23575\n10010181\t-34.9956\t149.0085\tScrubby Lane MURRUMBATEMAN\tNSW\t694\t28480\t26996\n10005689\t-34.9868\t138.595636\tColonel Light Gardens Primary School Windsor Ave Colonel Light Gardens\tSA\t900\t23338\t29956\n10002612\t-34.9803\t138.572311\tTarget Castle Plaza 922 South Rd EDWARDSTOWN\tSA\t281\t21612\t28167\n10007931\t-34.9572\t138.7449\tOB Site Greenhill Road URAIDLA\tSA\t1095\t15174\t25284\n10010359\t-34.9384\t138.5229\t20 Butler Boulevard ADELAIDE AIRPORT\tSA\t137\t14948\t28275\n10005630\t-34.9372\t138.537918\tJames Scofield Drive ADELAIDE AIRPORT\tSA\t1414\t22857\t22767\n10008117\t-34.9291\t139.03413\tNBN Co Site Lot 1790 Harrogate Road Harrogate\tSA\t1023\t24085\t25040\n10003108\t-34.9279\t138.6209\tOB site Wakefield Road ADELAIDE\tSA\t418\t11701\t19906\n10008321\t-34.9256\t138.641\t315 Portrush Road Norwood\tSA\t437\t28248\t21981\n10010215\t-34.9242\t138.5957\tLuminesque 108 Currie St ADELAIDE\tSA\t1244\t16549\t24789\n10005384\t-34.9224\t150.597\tSouth Coast Correctional Centre 55 Links Road NOWRA HILL\tNSW\t267\t18424\t24793\n10007717\t-34.919\t138.614916\tO\u0027Bahn Tunnel Development East Terrace ? Hackney Road Adelaide\tSA\t642\t16114\t25637\n10003098\t-34.9153\t138.5994\tAdelaide OB Site Cnr King William St and Sir Edwin Flack Ave ADELAIDE\tSA\t1128\t21390\t28741\n10005645\t-34.9144\t138.59653\tScoreboard Northern End Of Adelaide Oval War Memorial Drive North Adelaide\tSA\t726\t13981\t26323\n10005929\t-34.9043\t138.692589\tRepeater Site 12 Blue Crescent Woodforde\tSA\t894\t26397\t24181\n10006080\t-34.8824\t150.551472\tNowra Waste Depot 108 Flatrock Rd Mundamia\tNSW\t907\t10645\t26986\n10003099\t-34.8809\t138.7011\tCampbelltown OB Site Maryvale Road ATHELSTONE\tSA\t799\t24866\t19648\n10003096\t-34.848\t138.7835\tParacombe OB Site Paracombe Road PARACOMBE\tSA\t847\t18848\t25761\n10010605\t-34.8358\t138.6067\tBCF 720 Main North Rd GEPPS CROSS\tSA\t1376\t12627\t19728\n10000511\t-34.821\t138.6018\tObela Global 3 Norman Crescent Cavan\tSA\t1076\t16644\t20746\n10008615\t-34.7662\t138.62422\tTelstra Site 155-185 Winzor Street Salisbury Downs\tSA\t320\t17742\t20323\n10004145\t-34.7615\t138.6055\tBethany Christian School 37 Countess Street PARALOWIE\tSA\t745\t14058\t18744\n10001975\t-34.7345\t135.85658\tPort Lincoln South 10 Winsor Ave Port Lincoln\tSA\t1281\t29504\t20225\n10003504\t-34.6454\t150.85457\tDTRS Site Kiama Downs Behind 29 Cliff Dr KIAMA DOWNS\tNSW\t988\t29943\t20295\n10004479\t-34.6367\t150.85344\t13 Johnson Street Kiama Downs\tNSW\t816\t14149\t22049\n10009290\t-34.6041\t135.85413\tTelstra Site Lot 97 Murray Drive North Shields\tSA\t154\t22334\t18681\n10003095\t-34.5994\t138.8873\tLyndoch OB Site Barossa Valley Way LYNDOCH\tSA\t764\t10232\t22191\n10008495\t-34.5953\t138.51449\tA0515 Two Wells Central 43 Old Port Wakefield Rd TWO WELLS\tSA\t454\t11219\t23150\n10005207\t-34.5887\t146.385733\t3 Mile Regulator Tower Research Rd near Amato Rd Leeton\tNSW\t1299\t20131\t21370\n10004303\t-34.5876\t150.8673\tShell Cove Marina SHELL COVE\tNSW\t952\t18896\t25147\n10005576\t-34.5722\t139.29423\tTelstra Exchange 2703 Stott Highway Sedan\tSA\t1341\t18167\t23784\n10010436\t-34.5596\t150.37395\tMoss Vale South 38-40 Arthur Street MOSS VALE\tNSW\t1105\t22811\t23867\n10010943\t-34.551\t150.3738\tMoss Vale Aquatic Leisure Centre 8 Kirkham Street MOSS VALE\tNSW\t458\t27983\t27614\n10007237\t-34.5458\t139.0807\t476 Eden Valley Rd ANGASTON\tSA\t325\t15130\t26012\n10005353\t-34.5416\t148.32283\tMast 1 250m SW of Junction of Burley Griffin Hwy / Wombat Harden\tNSW\t349\t15964\t19243\n10005354\t-34.541\t148.32489\tOld Substation Compound 313 Burley Griffin Hwy Harden\tNSW\t628\t17577\t29232\n10009765\t-34.4946\t150.893\t178 Shellharbour Road PORT KEMBLA\tNSW\t720\t25245\t29640\n10007806\t-34.4738\t138.9938\tALDI Nuriootpa 1 Murray St NURIOOTPA\tSA\t811\t23389\t21512\n10006666\t-34.4667\t139.10616\tMoculta Lot281 Moculta Road Moculta\tSA\t1410\t15305\t29735\n10005308\t-34.4655\t147.745226\tSpringdale 6106 Burley Griffin Way Springdale\tNSW\t806\t24600\t23989\n10001281\t-34.4469\t138.505571\tGrainflow Site Mallala-Two Wells Rd 1km South of Mallala Mallala\tSA\t699\t21308\t25724\n10005256\t-34.446\t116.033\tCnr Brockman and Dean Streets PEMBERTON\tWA\t1177\t16126\t21992\n10010120\t-34.4375\t138.586331\tcnr Coleman and Farrelly Roads PINKERTON PLAINS\tSA\t1317\t20681\t18970\n10001302\t-34.4256\t150.9026\t25-29 Harbour Street WOLLONGONG\tNSW\t219\t26030\t27434\n10006144\t-34.4254\t150.8933\tTrade Secret 200 Crown St WOLLONGONG\tNSW\t1461\t17180\t20764\n10009803\t-34.4254\t150.9034\t2-4 Parkside Avenue WOLLONGONG\tNSW\t489\t22752\t22538\n10009766\t-34.4249\t150.9027\t17 Harbour Street WOLLONGONG\tNSW\t516\t17732\t21050\n10008275\t-34.4249\t150.888219\t45 Denison Street Wollongong\tNSW\t1240\t26484\t27341\n10008396\t-34.4248\t150.894743\tDavid Jones Wollongong Central 200 Crown St Wollongong\tNSW\t801\t26203\t26172\n10005657\t-34.4243\t138.26161\tNBN Co Monopole Section 400 North Parham Road Windsor\tSA\t651\t16407\t26582\n10004793\t-34.4243\t138.26172\tPort Parham North Parham Road WINDSOR?\tSA\t1474\t19641\t26735\n10005968\t-34.4167\t149.3255\tcnr Boobalaga Road \u0026 Red Hill Rd Lost River\tNSW\t1229\t23389\t20525\n10002763\t-34.4076\t139.126036\t1 Railway Terrace Truro\tSA\t1264\t18690\t22536\n10001297\t-34.3839\t137.667154\tGrainflow Site Minlaton-Maitland Rd 2km S of Maitland Maitland\tSA\t1265\t27096\t24645\n10007778\t-34.3169\t148.302\tAlfred Oval 2 Lachlan Street YOUNG\tNSW\t1462\t12528\t29930\n10005933\t-34.3126\t148.52728\tTelstra Site 1581 Geegullalong Road Murringo Young\tNSW\t180\t27074\t26024\n10010237\t-34.2102\t142.1415\tMildura Gateway Tavern 795-807 Fifteenth Street MILDURA\tVIC\t1219\t13684\t21072\n10005851\t-34.1572\t138.74715\tTelstra Exchange Lot 241 Plan F23878 Charles Street RIVERTON\tSA\t1302\t20041\t29719\n10008322\t-34.1318\t150.82303\tNBN Co Monopole 29 Pheasants Road Wedderburn\tNSW\t194\t23862\t28278\n10000530\t-34.0858\t151.0077\t11 Veno Street HEATHCOTE\tNSW\t937\t10312\t29069\n10004156\t-34.064\t150.8177\t18-22 Broughton Street CAMPBELLTOWN\tNSW\t632\t15204\t23073\n10003396\t-34.0632\t150.4531\tNattai RT Burragorang Road Nattai\tNSW\t435\t23546\t27691\n10009556\t-34.0604\t148.8532\tFrogmore Road HOVELLS CREEK\tNSW\t1492\t15256\t21559\n10006637\t-34.059\t150.8157\tThe Good Guys Campbelltown Homebase Campbelltown 24 Blaxland Rd CAMPBELLTOWN\tNSW\t603\t13115\t24507\n10004206\t-34.049\t151.1567\t21-23 Prince Street CRONULLA\tNSW\t1248\t14717\t20256\n10002149\t-34.0483\t150.7592\tMt Annan Marketplace 11-13 Main Street MT ANNAN\tNSW\t547\t17250\t27145\n10010773\t-34.0204\t150.7639\tENZOS 1 Gregory Hills Dr GLEDSWOOD HILLS\tNSW\t475\t24672\t21464\n10006025\t-34.0149\t151.0655\t38 Railway Cres JANNALI\tNSW\t195\t14584\t24586\n10003440\t-34.0106\t150.8886\tBOM Site near Ingleburn Weir Holsworthy\tNSW\t1133\t17646\t19978\n10006281\t-33.9993\t138.9095\tBOM Site Waterloo East Schutz Road 2.9 km East of Waterloo\tSA\t1007\t26427\t20803\n10002202\t-33.965\t151.1359\t13-19 Hogben Street KOGARAH\tNSW\t187\t10361\t24955\n10007569\t-33.9527\t118.77068\tTelstra Exchange Lot 5 Gnowangerup-Jerramungup Road Needilup Jerramungup\tWA\t1277\t13538\t26118\n10000534\t-33.952\t151.2311\tSouthport Shopping Centre 232-262 Bunnerong Road HILLSDALE\tNSW\t708\t18245\t24611\n10010572\t-33.951\t150.9246\tConstruction site 400 Moorebank Avenue MOOREBANK\tNSW\t759\t19884\t28429\n10009479\t-33.9478\t151.1942\t5/1A Hale Street BOTANY\tNSW\t1488\t16046\t23905\n10001010\t-33.9436\t151.22626\tCrane 4 Cnr Banks Ave \u0026 Westfield Drive Eastgardens\tNSW\t227\t21764\t19380\n10005720\t-33.9419\t150.9998\t91 Marigold St REVESBY\tNSW\t597\t21694\t26199\n10002217\t-33.9413\t151.0004\t71 Marigold St REVESBY\tNSW\t215\t16595\t26809\n10002934\t-33.9352\t151.2186\tEastlake Golf Club Cnr Gardeners Road \u0026 Isaac Smith Street Eastlakes\tNSW\t431\t26126\t23240\n10010612\t-33.9316\t151.0555\t1347 Canterbury Road PUNCHBOWL\tNSW\t964\t27644\t25243\n10004933\t-33.9306\t138.6773\tBOM Site Mount Horrocks 4.5 km WSW of Mintaro\tSA\t328\t20926\t22267\n10006279\t-33.9292\t138.8145\tBOM Site Cooinda 695 Bowmans Road Mintaro\tSA\t1450\t29961\t24591\n10002349\t-33.9278\t151.1546\t3A Magdalene Terrace WOLLI CREEK\tNSW\t617\t22682\t29191\n10004154\t-33.924\t151.1867\t246 Coward Street MASCOT\tNSW\t1253\t10646\t18386\n10008058\t-33.9225\t151.06803\tKing Georges Rd and The Boulevarde MC Cnr King Georges Rd and The Boulevarde WILEY PARK\tNSW\t1168\t24646\t21550\n10001367\t-33.9218\t150.921182\tAldi Liverpool Plaza 165 - 191 Macquarie st LIVERPOOL\tNSW\t286\t15218\t26729\n10006735\t-33.9216\t151.1671\t634-726 Princes Highway Tempe\tNSW\t1013\t17091\t25632\n10009534\t-33.9179\t151.26035\tCoogee North -V 23 Baden Street COOGEE\tNSW\t264\t23820\t28277\n10006837\t-33.9159\t151.2166\tAustralian Golf Club Broadcast Site 53 Bannerman Cr Rosebery\tNSW\t1085\t17912\t18058\n10002413\t-33.9128\t151.1176\t211-215 Canterbury Road CANTERBURY\tNSW\t323\t21122\t23007\n10007573\t-33.9126\t115.54033\tTelstra Site Cnr of Jalbarragup \u0026 Mowen Rd Barrabup\tWA\t1065\t28648\t18922\n10003457\t-33.9122\t151.1196\tTelstra Site 208 Canterbury Road Canterbury\tNSW\t1323\t15789\t25147\n10010887\t-33.9082\t150.921\tLiverpool Fashion Spree Outlet 5 Viscount Place LIVERPOOL\tNSW\t262\t13066\t22865\n10000535\t-33.9074\t150.8677\tThe Valley Plaza 187 Wilson Road GREEN VALLEY\tNSW\t775\t29298\t27926\n10001310\t-33.9065\t151.172783\tAldi Marrickville Marrickville metro shopping centre MARRICKVILLE\tNSW\t1164\t10458\t20398\n10000718\t-33.9053\t151.1317\t630-634 New Canterbury Road HURLSTONE PARK\tNSW\t1055\t11838\t18629\n10004363\t-33.9028\t151.0664\t77-79 Roberts Road GREENACRE\tNSW\t433\t11314\t25072\n10010354\t-33.8974\t151.2559\t131 Birrell St WAVERLEY\tNSW\t142\t26986\t27612\n10003582\t-33.8969\t151.1944\tLot 9 Australian Technology Park REDFERN\tNSW\t1480\t21996\t24792\n10011006\t-33.8956\t151.22148\tTelstra Street Cell Anzac Parade Moore Park Sydney\tNSW\t1453\t15926\t22043\n10009785\t-33.8924\t150.77902\tTelstra Street Cell NE Cnr of Western \u0026 Tavistock Rds Kemps Creek\tNSW\t426\t14961\t27218\n10005051\t-33.8856\t151.199344\tCrnr O\u0027Conner St and Carlton St Chippendale\tNSW\t1036\t27200\t18017\n10005733\t-33.8845\t150.95661\tLight Pole Parkes Reserve, Prospect Road Canley Vale\tNSW\t911\t24685\t23227\n10010483\t-33.8844\t151.2042\t18 Lee Street HAYMARKET\tNSW\t177\t25819\t27178\n10003389\t-33.8817\t151.2053\t11 Rawson Place SYDNEY\tNSW\t343\t25181\t29664\n10000833\t-33.8782\t151.1774\tCrane Precinct 5 Ross Street FOREST LODGE\tNSW\t1039\t10322\t24164\n10009224\t-33.8752\t151.2042\t319 - 325 Sussex St SYDNEY\tNSW\t1296\t17188\t26433\n10003340\t-33.874\t151.0983\t10 Gladstone Street BURWOOD\tNSW\t436\t20215\t19335\n10000572\t-33.871\t151.1987\tShop 412 Harbourside Shopping Centre 231/2-10 Darling Drive DARLING HARBOUR\tNSW\t666\t23040\t23882\n10009885\t-33.8702\t151.2099\tDavid Jones Department Store 86 - 108 Castlereagh st SYDNEY\tNSW\t1362\t18336\t28646\n10004587\t-33.8684\t151.1937\t100 Harris St PYRMONT\tNSW\t972\t22765\t29031\n10001724\t-33.8656\t151.20513\tIBC 34 Clarence Street Sydney\tNSW\t1363\t25843\t25939\n10005589\t-33.8655\t151.21077\tTelstra Rooftop Site Sofitel Hotel 61- 101 Phillip Street SYDNEY\tNSW\t260\t24015\t21614\n10010806\t-33.8637\t151.1947\t26 - 32 Pirrama Rd PYRMOUNT\tNSW\t231\t19586\t26934\n10004178\t-33.8627\t151.222243\tLight Pole SC10 Macquarie\u0027s Chair 1D Mrs Macquaries Rd SYDNEY\tNSW\t876\t21231\t29870\n10001703\t-33.8618\t151.0804\t2-6 Hillcrest Street HOMEBUSH\tNSW\t1229\t11289\t24395\n10003223\t-33.8616\t151.1789\t100-104 Reynolds Street BALMAIN\tNSW\t1451\t28711\t20300\n10009495\t-33.8612\t151.0183\tAuburn Tennis Centre 181 Chisholm Rd AUBURN\tNSW\t1305\t29863\t28247\n10007983\t-33.8607\t151.0574\t38 Birnie Ave LIDCOMBE\tNSW\t574\t18870\t29964\n10008876\t-33.8596\t116.40619\tBoyup Brook 5241 Kojonup Road Boyup Brook\tWA\t1270\t16712\t20485\n10009385\t-33.8595\t151.2221\tOB Site Mrs Macquarie\u0027s Rd SYDNEY\tNSW\t501\t27661\t27985\n10002153\t-33.8556\t151.2736\tVaucluse House 69A Wentworth Rd VAUCLUSE\tNSW\t215\t28634\t21835\n10007702\t-33.8539\t150.98703\t291 Guildford Road GUILDFORD\tNSW\t678\t25804\t24243\n10010233\t-33.8484\t151.072684\tCnr Figtree Dve AND Australia Ave SYDNEY OLYMPIC PARK\tNSW\t283\t22051\t27951\n10004376\t-33.8452\t150.68505\tOrchard Hills North Littlefields Road Orchards Hills\tNSW\t1101\t13081\t24783\n10004398\t-33.8444\t151.0746\t4 Murray Rose Avenue OLYMPIC PARK\tNSW\t646\t22945\t27627\n10000517\t-33.8383\t151.206852\tNth cnr Miller Street and Pacific Highway NORTH SYDNEY\tNSW\t885\t20500\t26532\n10010452\t-33.8374\t121.8983\tKleenheat Esperance 40 Norseman Road CHADWICK\tWA\t238\t14661\t20264\n10009060\t-33.8368\t151.12591\tASHBURN HOUSE RPTR 20-34 ASHBURN PLACE GLADESVILLE\tNSW\t1233\t26316\t18178\n10010873\t-33.8309\t150.9699\t11-19 Centenary Road MERRYLANDS\tNSW\t477\t26141\t27815\n10010670\t-33.8255\t151.2002\t31 Hume St CROWN NEST\tNSW\t740\t12007\t19564\n10009647\t-33.8228\t151.1925\t3 Herbert Street ST LEONARDS\tNSW\t251\t23315\t22850\n10005798\t-33.8212\t150.787\t111-113 Quarry Road ERSKINE PARK\tNSW\t987\t23893\t25833\n10002154\t-33.8211\t151.0179\tElizabeth Farm 70 Alice Street ROSEHILL\tNSW\t186\t14958\t20392\n10008719\t-33.8177\t149.32024\tTelstra Site 67 Hobbys Yards Road Trunkey Creek Bathurst\tNSW\t838\t11846\t28341\n10005707\t-33.8173\t151.002\tMyer Westfield Parramatta 159-175 Church Street PARRAMATTA\tNSW\t355\t24206\t20176\n10003557\t-33.8046\t151.03239\tDTRS Site Rydalmere Off Calder Rd RYDALMERE\tNSW\t1130\t22731\t23974\n10009996\t-33.8019\t150.9845\tDragonfly Drive WESTMEAD\tNSW\t307\t16951\t19695\n10008381\t-33.8006\t151.04955\t20 Dorahy Street DUNDAS\tNSW\t288\t14819\t25862\n10006944\t-33.8001\t150.919\tFantastic Furniture 19 Stoddart Road Prospect\tNSW\t468\t22231\t29546\n10002820\t-33.7974\t150.941\t140 Gilba Road GIRRAWEEN\tNSW\t929\t29242\t28724\n10007501\t-33.7955\t151.04497\t7A Evans Road TELOPEA\tNSW\t1245\t29133\t24987\n10000029\t-33.7876\t150.8815\t27 Holbeche Road ARNDELL PARK\tNSW\t1382\t22598\t18059\n10010007\t-33.7871\t151.158\tHamilton Corner LINDFIELD\tNSW\t650\t18438\t19509\n10009018\t-33.7847\t151.120567\tOCSF1 Lyon Park Road Macquarie Park\tNSW\t1164\t10549\t22891\n10003616\t-33.7828\t150.9489\tDTRS Site Toongabbie Off Portico Pde TOONGABBIE\tNSW\t361\t15457\t19245\n10003240\t-33.7749\t151.0862\t3 - 7 Forest Grove EPPING\tNSW\t325\t24885\t22774\n10002036\t-33.7744\t151.1692\tcnr Lindfield Avenue and Havilah Lane LINDFIELD\tNSW\t1186\t26974\t26387\n10007754\t-33.7709\t122.0249\tLot 29 Angove Road MYRUP\tWA\t853\t25197\t23312\n10002094\t-33.7692\t151.0825\tCrane 2 20-28 Cambridge Street EPPING\tNSW\t251\t26995\t22145\n10000723\t-33.7692\t151.083\t20-28 Cambridge Street EPPING\tNSW\t1263\t19258\t26279\n10003620\t-33.7686\t150.81325\tDTRS Site St Marys Mount Druit Rd Carpark MOUNT DRUITT\tNSW\t1410\t21103\t20987\n10006629\t-33.7659\t150.6805\tThe Good Guys Penrith 88 - 90 Mulgoa Rd JAMISONTOWN\tNSW\t915\t28117\t19281\n10009680\t-33.7494\t150.8585\t50 Owen St GLENDENNING\tNSW\t681\t23155\t19644\n10005507\t-33.7418\t150.7678\t38-52 Dunheved Circuit ST MARYS\tNSW\t440\t12527\t25161\n10011044\t-33.7397\t150.7671\t17-19 Dunheved Circuit ST MARYS\tNSW\t999\t10008\t29992\n10004155\t-33.7386\t151.0685\tcnr Fisher Avenue and Trebor Road PENNANT HILLS\tNSW\t1238\t15472\t22998\n10002635\t-33.7342\t150.962933\tCnr Century Circuit \u0026 Norwest Boulevard Baulkham Hills\tNSW\t343\t18555\t26881\n10003693\t-33.7341\t150.46815\tDTRS Site Woodford 3 Rail Access Track off Railway Pde WOODFORD\tNSW\t223\t14341\t26858\n10002354\t-33.7333\t151.2196\t5 Hews Parade BELROSE\tNSW\t255\t28006\t25141\n10003686\t-33.7321\t150.60423\tDTRS Site Blaxland 2 Off Great Western Hwy WARRIMOO\tNSW\t466\t12214\t23865\n10004885\t-33.7301\t150.961807\tBuilding Site Solent Circuit Baulkham Hills\tNSW\t1065\t21759\t26272\n10009299\t-33.7278\t150.9855\tTower crane Hills Showground Station 129 Showground Road CASTLE HILL\tNSW\t336\t13133\t22283\n10010322\t-33.7275\t151.1664\t124 - 128 Killeaton Street ST IVES\tNSW\t1101\t23198\t21218\n10006615\t-33.7257\t150.9766\tThe Good Guys Castle Hill Home Hub 18 - 46 Victoria Ave CASTLE HILL\tNSW\t462\t12965\t25343\n10005089\t-33.7256\t150.883972\t7 Nirimba Dr Quakers Hill\tNSW\t1003\t19343\t23378\n10007812\t-33.7218\t150.8421\tToys R US 43 Hollinsworth Rd MARSDEN PARK\tNSW\t1111\t28088\t27031\n10005826\t-33.721\t151.1036\t40-50 Pennant Hills Road NORMANHURST\tNSW\t1301\t15424\t26657\n10001971\t-33.7192\t150.8406\tHome Hub Marsden Park 16 Hollingworth Rd MARSDEN PARK\tNSW\t515\t14638\t29402\n10000026\t-33.7187\t150.8341\tDulux Store Harris Avenue MARSDEN PARK\tNSW\t1399\t14962\t27271\n10000399\t-33.7101\t151.29573\tOptus Light Pole Intersection of Pittwater Road and Wakehurst Parkway NORTH NARRABEEN\tNSW\t574\t17598\t19934\n10010886\t-33.6909\t150.9254\tShop GR100, Rouse Hill Town Centre 10-14 Market Lane ROUSE HILL\tNSW\t1237\t28692\t27339\n10010086\t-33.6863\t151.1085\t18-22 Lords Avenue ASQUITH\tNSW\t466\t11185\t24659\n10008330\t-33.645\t115.152\tAnniebrook 231 Quindalup Road Quindalup\tWA\t1373\t28170\t29493\n10010211\t-33.644\t148.334\tDGPS Site 3331 Warraderry Way GOOLOOGONG\tNSW\t226\t21761\t27007\n10002969\t-33.6437\t150.65973\tNBN Co Site 1 Hillcrest Road Yarramundi\tNSW\t528\t10011\t22346\n10006257\t-33.6366\t120.4498\tDGPS transmitter Coujinup Road 8km NNW of JERDACUTTUP\tWA\t709\t26291\t23610\n10009557\t-33.6358\t151.3087\tTelstra Site 165-167 Hudson Parade Clareville\tNSW\t789\t14053\t18277\n10001236\t-33.614\t148.435861\tGooloogong Hotel 10-20 Main St Gooloogong\tNSW\t1415\t17017\t23869\n10003442\t-33.5931\t150.6994\tBOM Site St John Of God Hospital 177 Grose Vale Road North Richmond\tNSW\t1420\t22044\t27244\n10005654\t-33.5858\t138.32666\tNBN Co Site Section 356 Hundred of Koolunga Koolunga\tSA\t340\t14869\t19384\n10006783\t-33.5766\t121.19552\tSouth Cascade Lot 1091 Beltana Rd Cascade\tWA\t548\t11846\t26597\n10007823\t-33.5672\t148.6651\tSite Belmore Street CANOWINDRA\tNSW\t1420\t10038\t21690\n10004042\t-33.5431\t151.011128\tForest Glen 3291 Old Northern Road Forest Glen\tNSW\t1047\t18111\t18142\n10009061\t-33.5292\t151.20141\t99 Pacific Highway Mooney Mooney\tNSW\t816\t27959\t23890\n10003819\t-33.5192\t150.27342\tDTRS Site Bell 2 Rail Access Track off Bells Line of Rd BELL\tNSW\t1264\t18918\t23169\n10003439\t-33.4972\t150.8769\tBOM Site 952 Sackville Ferry Road Sackville North\tNSW\t672\t11043\t18716\n10003646\t-33.4936\t151.25574\tDTRS Site Wondabyne Station Rail Corridor WONDABYNE\tNSW\t1029\t21901\t21116\n10003647\t-33.4848\t151.267886\tDTRS Site Woy Woy Tunnel Location 1 Rail Corridor WONDABYNE\tNSW\t379\t13696\t24894\n10004013\t-33.4837\t150.24538\tDTRS Site Newnes 3 Rail Access Track DARGAN\tNSW\t1478\t14572\t22606\n10003991\t-33.4757\t150.202901\tDTRS Site Zig Zag Tunnel 10 Location 1 Zig Zag Tunnel 10 Country End Portal CLARENCE\tNSW\t434\t29038\t21337\n10003993\t-33.4698\t150.19865\tDTRS Site Zig Zag Halt Fixed Station Location 2 Rail Access Track near Zig Zag Station CLARENCE\tNSW\t1283\t24648\t27611\n10008062\t-33.4475\t149.5564\tBathurst Race Track Mt Panorama Race Circuit Mt Panorama\tNSW\t1289\t12377\t19053\n10010932\t-33.4427\t151.4405\t156-160 Terrigal Drive TERRIGAL\tNSW\t342\t17702\t29746\n10006618\t-33.4351\t151.3922\tThe Good Guys Erina Erina Fair 620 - 658 Terrigal Dr ERINA\tNSW\t796\t18337\t20372\n10002577\t-33.4283\t151.3208\tAnaconda West Gosford 28 Central Coast Highway WEST GOSFORD\tNSW\t988\t26782\t26627\n10001892\t-33.4276\t151.3278\t10 Central Coast Highway WEST GOSFORD\tNSW\t455\t24751\t22651\n10010394\t-33.4261\t151.3344\t14-16 Batley Street WEST GOSFORD\tNSW\t682\t26314\t23431\n10009464\t-33.3914\t115.76002\tDardanup Recreation Road Paradise\tWA\t657\t24398\t28013\n10009480\t-33.3234\t151.4143\t3/3 Corella Close BERKELEY VALE\tNSW\t1049\t18117\t21216\n10005431\t-33.2999\t115.74331\tTelstra Site 382 Clifton Road Waterloo\tWA\t916\t10443\t27662\n10007540\t-33.266\t121.388656\tComms Site Grass Patch Road GRASS PATCH\tWA\t491\t17326\t24497\n10001489\t-33.2535\t115.8388\tBurnswick Bakery South West Hway Burnswick\tWA\t765\t29708\t28928\n10006066\t-33.1867\t148.6967\tManildra Mills Opposite 95 Kiewa Street Manildra\tNSW\t825\t22932\t22136\n10004223\t-33.1822\t138.0095\tJohn Pirie Secondary School 40 Mary Elie Street Port Pirie\tSA\t484\t18135\t24965\n10000578\t-33.1815\t151.44925\tNBN Co Site 155 Wyee Farms Road WYEE\tNSW\t601\t10948\t29098\n10004620\t-33.1805\t138.009479\tTarget Florence St PORT PIRIE\tSA\t1129\t22876\t29108\n10000582\t-33.1725\t151.37582\tNBN Co Site Buangi Road Fire Trail Durren Durren\tNSW\t1104\t23447\t20715\n10008349\t-33.1466\t149.3541\t3567 Freemantle Rd GOWAN\tNSW\t496\t11216\t27833\n10001621\t-33.1092\t151.48009\tOpposite 21 Ourimbah Street Morisset Lake\tNSW\t553\t12337\t25456\n10000625\t-33.097\t119.0087\tOff Lake Grace-Newdegate Road NEWDEGATE\tWA\t1283\t13500\t19372\n10006662\t-33.0922\t151.46817\tTelstra Site 242-246 Freemans Dr COORANBONG\tNSW\t1259\t22710\t21901\n10010056\t-33.0464\t151.6698\tBelmont WWTP Ocean Park Road BELMONT SOUTH\tNSW\t536\t26208\t20504\n10005846\t-32.9677\t138.0396\tBaroota Substation Cnr Bridle Track Road \u0026 Garden Road Baroota\tSA\t469\t22196\t23826\n10000647\t-32.9639\t151.6945\tShop MM3 Level 2 Charlestown Square 30 Pearson Street CHARLESTOWN\tNSW\t584\t20043\t24917\n10006825\t-32.9419\t151.710029\tKotara Shopping Centre Lexington Parade Kotara\tNSW\t850\t23920\t21178\n10000291\t-32.926\t151.76453\tCustoms House 28 Honeysuckle Drive NEWCASTLE\tNSW\t1016\t29277\t27331\n10008516\t-32.9004\t151.70462\tOptus Site S8615 40 Compton Street NORTH LAMBTON\tNSW\t542\t20764\t23627\n10010028\t-32.8238\t151.7386\t118 Enterprise Dr TOMAGO\tNSW\t130\t25556\t27868\n10005252\t-32.8052\t117.2067\t\u0027Williams\u0027 Farm Block 3576 Parsons Road CUBBALLING\tWA\t410\t12727\t29644\n10007225\t-32.7938\t119.5133\tTelstra Site 53 Pitt Street Varley Lake Grace\tWA\t1292\t29313\t23868\n10006939\t-32.7828\t116.380394\tHotham Farm Comms Site off Siding Road 1.9 km S of Gold Mine Road Intersection Marradong\tWA\t963\t27560\t29652\n10000652\t-32.7702\t151.94145\tNBN Co 365 Lemon Tree Passage Road Salt Ash\tNSW\t514\t18949\t21347\n10008309\t-32.7172\t151.5033\t175 Racecourse Rd RUTHERFORD\tNSW\t442\t14431\t28548\n10010993\t-32.6817\t151.12608\tTelstra Site Lot 43 Plan 755264 Broke Rd Mt Thorley\tNSW\t1480\t14837\t29977\n10002678\t-32.6558\t151.9596\t5 William Street KARUAH\tNSW\t316\t22431\t25098\n10008251\t-32.634\t115.64\tTelstra Exchange 13 Dawesville Road Dawesville Mandurah\tWA\t264\t15463\t28660\n10008253\t-32.5968\t115.6501\tTelstra Site 3 Duke Street Wannanup Mandurah\tWA\t1158\t16698\t20699\n10009302\t-32.5789\t134.70685\tTelstra Site Lot 106 Plan 650600 Eyre Highway Cungena\tSA\t999\t22209\t21064\n10001936\t-32.5755\t151.0788\tWarkworth Depot 186 Long Point Rd West WARKWORTH\tNSW\t838\t26068\t29156\n10003448\t-32.5553\t151.379\tBOM Site Via Cranky Corner Road North Glendonbrook\tNSW\t1349\t21755\t29778\n10003149\t-32.5372\t115.7374\t303 Pinjarra Road MANDURAH\tWA\t356\t26297\t22219\n10000382\t-32.5344\t115.7187\t3 Mandurah Terrace Mandurah\tWA\t927\t13943\t24579\n10010982\t-32.4981\t149.85\t888 Kains Flat Road KAINS FLAT\tNSW\t647\t13284\t20768\n10004594\t-32.4726\t151.95924\tTelstra Exchange 1 Plan 90013 The Bucketts Way BOORAL\tNSW\t1006\t13219\t24179\n10003583\t-32.4717\t115.7611\tALDI Lakelands Crn Mandurah Rd and Banksiadale Gate LAKELANDS\tWA\t1426\t26861\t27752\n10003446\t-32.471\t150.1059\tBOM Site Glenview Lot 96 Upper Bylong Road Upper Bylong\tNSW\t482\t18262\t21593\n10003585\t-32.4086\t115.7594\tALDI Town Secret Harbour 420 Secret Harbour Blvd TOWN SECRET HARBOUR\tWA\t485\t15838\t25177\n10009571\t-32.3499\t148.60677\tMonopole Cumboogle View 11R Benolong Road DUBBO\tNSW\t1362\t17728\t22500\n10008159\t-32.3198\t149.02631\tGollan SCAX Forestvale Rd Gollan\tNSW\t227\t28053\t25278\n10005635\t-32.2841\t149.771139\tMoolarben Coal Mine 4250 Ulan Road (3km E of) ULAN\tNSW\t728\t21452\t18923\n10003221\t-32.2503\t150.8943\t20 Hunter Street MUSWELLBROOK\tNSW\t1045\t17542\t19946\n10005479\t-32.2285\t115.7742\tTronox Pigment Plant Mason Road KWINANA\tWA\t773\t11056\t21386\n10009687\t-32.189\t115.666\tGarden Island RASS Site Garden Island\tWA\t845\t15443\t27487\n10002234\t-32.125\t133.7\tBristow Hangar Ceduna Airport CEDUNA SA 5690\tSA\t709\t10235\t22457\n10006149\t-32.1173\t115.76285\tCoogee Beach SLSWA Clubhouse 20 Poore Grove Coogee\tWA\t160\t12331\t19147\n10005615\t-32.067\t148.66035\tTelstra Exchange 138L Mogriguy Road MOGRIGUY\tNSW\t117\t20708\t29594\n10009709\t-32.0576\t115.865692\tTelstra Site 77 Wheatley Drive Bull Creek Melville\tWA\t833\t18807\t25661\n10000585\t-32.0573\t115.879736\tSouthlands Boulevarde Shopping Centre 45 Burrendah Boulevard Willetton\tWA\t1220\t17800\t23954\n10000995\t-32.0538\t115.74048\tN Cnr Shed A WA Maritime Museum Victoria Quay Victoria Quay Road FREMANTLE\tWA\t559\t12049\t21257\n10006234\t-32.0525\t115.791803\tFremantle Depot Stock Road O\u0027Connor\tWA\t833\t16078\t25474\n10006761\t-32.0449\t115.8669\t34 Bull Creek Rd ROSSMOYNE\tWA\t1266\t21157\t21552\n10009349\t-32.0425\t115.738883\tTyne ACFS Lot R114 Port Beach Road NORTH FREMANTLE\tWA\t1438\t26604\t22761\n10005710\t-32.0331\t115.8363\tMyer Garden City Shopping Centre 125 Risely Street BOORAGOON\tWA\t1243\t19794\t22819\n10005647\t-32.0301\t118.0947\tTelstra Exchange 112 Main Street ARDATH\tWA\t238\t20099\t25402\n10010920\t-32.0113\t115.8644\tTelstra Site 3 Plan D86115 Ley St Manning\tWA\t174\t15479\t23148\n10007979\t-32.0095\t117.40081\tTelstra Exchange 45 McLennan Street Quairading\tWA\t530\t19939\t25106\n10006723\t-32.0054\t117.37562\tQuairading Lot 2 Weir Road QUAIRADING\tWA\t445\t29592\t27621\n10002224\t-31.9973\t147.76258\tNSW Telco Authority Site Bogan-Cathundral Road, Cathundral, 21 W of Trangie\tNSW\t495\t19726\t22215\n10009478\t-31.9901\t115.9206\t272 Rutland Avenue WELSHPOOL\tWA\t587\t17679\t29642\n10002731\t-31.9834\t118.234941\tSchilling Property 1442 Bruce Rock Narembeen Road BRUCE ROCK\tWA\t1160\t28745\t28345\n10003152\t-31.9591\t115.89387\tTelstra IBC Crown Towers Hotel 61 Boulton Ave Burswood\tWA\t1066\t12856\t28801\n10000873\t-31.9543\t115.848113\tConstructionCrane 39 Mount Street PERTH\tWA\t781\t10503\t25834\n10007560\t-31.9539\t115.859\tNike Perth City 670 Hay Street Mall PERTH\tWA\t134\t25903\t18847\n10008252\t-31.9178\t116.0781\tTelstra Site 1 Montrose Avenue Darlington Mundaring\tWA\t684\t18216\t21195\n10005732\t-31.9048\t115.9492\tTelstra Exchange 1 Wilson Street BASSENDEAN\tWA\t842\t18199\t26203\n10010902\t-31.9025\t115.931361\t10 Hanwell Way BASSENDEAN\tWA\t909\t18940\t20604\n10006605\t-31.8968\t116.0118\tThe Good Guys Midland Midland Central 541 Clayton St MIDLAND\tWA\t188\t23485\t27375\n10008538\t-31.896\t115.7561\tScarborough Beach Pool 309 West Coast Highway SCARBOROUGH\tWA\t370\t25776\t24452\n10004421\t-31.8874\t116.00226\tMidland Courthouse 26 Spring Park Road Midland\tWA\t657\t22995\t27472\n10008523\t-31.8771\t152.17082\tNBN Co 40m monopole 1577 Nowendoc Road Mount George\tNSW\t442\t26579\t20782\n10005711\t-31.8767\t115.7776\tMyer Karrinyup Shopping Centre Karrinyup Road KARRINYUP\tWA\t773\t20924\t22300\n10000485\t-31.8361\t115.8396\tTelstra Exchange 111 Girrawheen Avenue Girrawheen\tWA\t431\t26048\t22619\n10009945\t-31.8308\t115.821967\tItalian Aged Care 1 Marangaroo Drive MARANGAROO\tWA\t230\t19903\t23970\n10003449\t-31.8293\t150.3479\tBOM Site Mount Palmer\tNSW\t173\t11561\t28740\n10002520\t-31.806\t115.888\tIntelsat Antenna 620 Gnangara Road LANDSDALE\tWA\t1157\t22676\t23244\n10000627\t-31.777\t117.9529\tBOM Station Approximately 1.2km South of Fire Road SOUTH DOODLAKINE\tWA\t481\t21483\t29000\n10002559\t-31.7624\t115.7728\tAnaconda Edgewater 6 The Gateway EDGEWATER\tWA\t1456\t21060\t18360\n10001676\t-31.7435\t115.76564\tIBC 420 Joondalup Drive Joondalup\tWA\t152\t23772\t25736\n10008989\t-31.7367\t115.795998\tTelstra Site Info Centre 1140 Wanneroo Rd Ashby\tWA\t239\t22218\t20215\n10003451\t-31.664\t152.3705\tBOM Site 320 The Den Road Mooral Creek\tNSW\t184\t17250\t25933\n10010825\t-31.6627\t116.314771\tTelstra Site 80 McGellin Way Morangup\tWA\t555\t17514\t25949\n10002636\t-31.6542\t115.958028\t1635 Neaves Road BULLSBROOK\tWA\t839\t21086\t23340\n10001665\t-31.6432\t116.84944\tLeeming Road Meenar\tWA\t1271\t21557\t23089\n10002677\t-31.622\t152.6956\t12 Claywood Place KENDALL\tNSW\t441\t10910\t21101\n10003453\t-31.5949\t151.8274\tBOM Site Hawkins Road Cooplacurripa\tNSW\t1324\t17649\t23551\n10002420\t-31.5822\t152.73277\t5494 Pacific Highway HERONS CREEK\tNSW\t802\t22036\t28072\n10009736\t-31.5273\t138.6059\tOptus Rootop Site Wilpena Pound Vistor Centre Flinders Rangers Way FLINDERS RANGES\tSA\t258\t27131\t27640\n10009788\t-31.4948\t118.27783\tMerriden DC Opposite 57 French Ave Merriden\tWA\t570\t19637\t18901\n10005519\t-31.4751\t116.09155\tTelstra Site 9 Martin Road Chittering\tWA\t549\t29059\t29726\n10004362\t-31.4641\t152.82137\tPort Macquarie Interchange 1065 Oxley Highway THRUMSTER\tNSW\t1036\t28304\t28378\n10003452\t-31.4621\t152.3245\tBOM Site Yarras Mountain\tNSW\t360\t22268\t27256\n10002585\t-31.4497\t152.8832\tAnaconda Port Macquarie 180 Lake Road PORT MACQUARIE\tNSW\t1444\t10999\t18471\n10006311\t-31.4457\t116.4271\tCoondle BS Bindi Bindi - Toodyay Rd Coondle\tWA\t1073\t18117\t18636\n10003450\t-31.445\t152.477\tBOM Site Via Oxley Highway Long Flat\tNSW\t908\t27496\t29167\n10010249\t-31.2746\t149.0672\tSiding Springs OB Site Observatory Road COONABARABRAN\tNSW\t296\t26012\t19640\n10005026\t-31.2548\t118.170117\tTelstra Site Merredin-Nungarin Road Elabbin Elabbin\tWA\t618\t15390\t19501\n10007494\t-31.1337\t138.3949\tOptus Rooftop Site Parachilna West Terrace PARACHILNA\tSA\t1127\t27049\t18311\n10009791\t-31.1244\t117.97555\tKwelkin Waters Lot 25627 Plan 150101 South Kununoppin\tWA\t980\t24768\t27581\n10002536\t-31.0943\t150.912358\tCnr Bridge and Out St TAMWORTH\tNSW\t1463\t26777\t19692\n10008460\t-31.0798\t150.94153\tTamworth East Piper Street 184 Piper St EAST TAMWORTH\tNSW\t924\t27828\t26389\n10005614\t-31.0352\t152.87461\tTelstra Exchange 37 Edgar Street FREDERICKTON\tNSW\t707\t29800\t21773\n10002071\t-31.0218\t152.94127\tRawson Street SMITHTOWN\tNSW\t627\t19726\t24545\n10006790\t-30.9473\t151.144\tMt Moonbi Bullimbulla Rd Bendemeer\tNSW\t235\t21256\t18000\n10008149\t-30.8396\t116.386\tTelstra Site 29 Denton St Piawaning\tWA\t865\t27805\t26385\n10009079\t-30.7253\t115.585277\tTelstra Site 4km East of Cataby, off Cataby Rd Dandaragan\tWA\t945\t26408\t21475\n10002223\t-30.6338\t148.06627\t925 Toora Road Conimbia\tNSW\t144\t13215\t18788\n10005332\t-30.5552\t150.1145\tTrailer Maules Creek Mine Site 6.5 km South of MAULES CREEK\tNSW\t1328\t19304\t26356\n10003443\t-30.4025\t152.7289\tBOM Site 291 Mountain Top Road Dorrigo Mountain\tNSW\t395\t28449\t27458\n10007235\t-30.3963\t115.3124\tDGPS Badgingarra Wind Farm Seville Street Badgingarra\tWA\t581\t24760\t22159\n10010362\t-30.3691\t152.18167\tDoughbouy Mountain 1763 Wongwibinda Road WONGWIBINDA\tNSW\t1247\t15074\t20277\n10005800\t-30.3441\t149.7133\t501 Yarrie Lake Rd Narrabri\tNSW\t1076\t19805\t24985\n10000437\t-30.3091\t153.1008\t2 - 10 Hurley Dr COFF HARBOUR\tNSW\t232\t10400\t28362\n10001686\t-30.3009\t153.124972\t2AIR-FM Glenreagh Street Studios 24 Glenreagh St Coffs Harbour\tNSW\t1000\t25015\t19172\n10010846\t-30.2912\t115.476\tBoothendara (Nexgen) Brand Hwy Boothendara\tWA\t1429\t16611\t20335\n10003455\t-29.9594\t151.605\tBOM Site Beulah 709 Maybole Road Ben Lomond\tNSW\t1185\t25697\t28126\n10003444\t-29.9125\t153.1275\tBOM Site Browns Knob Barcoongere\tNSW\t442\t21867\t26647\n10006246\t-29.8125\t151.5514\t154 Jenkins Roads MATHESON\tNSW\t188\t20785\t19888\n10003454\t-29.7853\t151.1606\tBOM Site Lot 7021 Fisher Road Inverell\tNSW\t116\t23778\t27485\n10003956\t-29.6675\t153.115555\tCandole St TUCABIA\tNSW\t1149\t12156\t21931\n10006973\t-29.6673\t153.11448\tTelstra Site 29 Aradin Street Tucabia Clarence Valley\tNSW\t316\t13222\t18308\n10005428\t-29.6577\t151.44307\tLot 1 on Deposited Plan 838627, Western Feeder Rd Kings Plains\tNSW\t483\t28510\t25549\n10006323\t-29.6487\t138.0629\tOptus Rooftop Site Marree Marree Community Hall High Street MARREE\tSA\t817\t20417\t25042\n10008250\t-29.5887\t141.809117\tGood Friday Mine Site Office 30 km SW of Tibooburra\tNSW\t1260\t23278\t19867\n10010386\t-29.5361\t115.7649\t132 Railway Rd Three Springs\tWA\t1084\t10810\t19819\n10008207\t-29.4029\t130.7388\tOptus Rooftop Site Oak Valley Community Kali Street OAK VALLEY\tSA\t545\t13511\t28832\n10008201\t-29.3397\t127.0969\tOptus Rooftop Site Tjuntuntjara CRC Tjuntuntjara GREAT VICTORIA DESERT\tWA\t128\t19236\t20143\n10009447\t-29.2825\t114.919503\tACORN RADAR Surf Life Saving White Tops Drive Dongara\tWA\t424\t29796\t22991\n10007760\t-29.2129\t151.3131\tRocky Creek Rd Rocky Creek\tNSW\t440\t11179\t29332\n10000583\t-29.0535\t151.982356\tTanterfield Kildare Rd Tanterfield\tNSW\t256\t13558\t19078\n10008171\t-29.0318\t167.947313\tGlonet PMTS site 3B Taylors Road NORFOLK ISLAND\tEXT\t341\t21209\t18679\n10006492\t-28.9807\t142.037\tEast Comms Site Naryilco Station\tQLD\t880\t29099\t24469\n10009849\t-28.8875\t152.55932\tTabulam SCAX 5650 Bruxner Hwy Tabulam\tNSW\t872\t23861\t27147\n10006491\t-28.7889\t141.789\tMiddle Comms Site Naryilco Station\tQLD\t1478\t24006\t22153\n10007828\t-28.785\t115.8446\tSite 739 Pallotine Road TARDUN\tWA\t347\t21711\t27805\n10010064\t-28.7768\t114.6269\tALDI Wonthella 81 - 85 North West Coastal Hwy WONTHELLA\tWA\t888\t29844\t28517\n10007756\t-28.7767\t114.6031\tPort Authority Building 298 Marine Terrace Geraldton\tWA\t1256\t13790\t28896\n10007757\t-28.7568\t114.5656\tWaverider Buoy Channel Entrance 5 km NW of Geraldton\tWA\t1120\t25323\t21440\n10007755\t-28.7207\t114.5902\tWaverider Buoy Northern Channel 6.4 km N of Geraldton\tWA\t1039\t19356\t19073\n10008790\t-28.6472\t153.6122\t108-110 Jonson Street BYRON BAY\tNSW\t404\t24659\t26248\n10006490\t-28.5594\t141.914\tNaryilco Homestead Comms Site Naryilco Station\tQLD\t693\t14687\t22558\n10008676\t-28.4798\t122.802811\tYGP2 Great Central Road (42km ENE of) LAVERTON\tWA\t1253\t16488\t23411\n10006493\t-28.4297\t142.102\tDingera Comms Site Naryilco Station\tQLD\t349\t23119\t22346\n10002741\t-28.4196\t151.0759\t70 Regent Street INGLEWOOD\tQLD\t696\t17646\t26854\n10006812\t-28.399\t152.3768\tKoreela 988 Acacia Plateau Road Legume\tNSW\t533\t14781\t27893\n10000821\t-28.3271\t153.4126\t148 Tweed Valley Way SOUTH MURWILLUMBAH\tNSW\t1459\t28373\t26456\n10002748\t-28.3179\t152.7511\t12318 Mt Lindsay Highway PALEN CREEK\tQLD\t814\t14684\t26080\n10006494\t-28.3178\t141.709\t7 Mile Comms Site Naryilco Station\tQLD\t220\t29809\t27284\n10009300\t-28.2623\t152.0365\tMorgan Park Raceway off Old Stanthorpe Road MORGAN PARK\tQLD\t1234\t12755\t27323\n10002341\t-28.259\t153.3496\tOutside Broadcast Site Dungay Creek Road DUNGAY\tNSW\t1235\t25524\t29566\n10006488\t-28.235\t141.362\tSantos Comms Site Naryilco Station\tQLD\t446\t24387\t20247\n10005483\t-28.1825\t123.9436\tNexusSite4 Great Central Road Laverton East\tWA\t1414\t14260\t25060\n10006517\t-28.1542\t140.82\tBore Track South 1 Comms Site Innamincka Station\tSA\t843\t17530\t27718\n10009341\t-28.1157\t148.72619\tTelstra Site 320 Bundoran Rd St George\tQLD\t584\t25033\t23207\n10002732\t-28.1024\t153.43492\tWest Burleigh Lot 174 on SP156739 near 56 Kortum Drive BURLEIGH HEADS\tQLD\t936\t22723\t27640\n10006335\t-28.0193\t138.6639\tOptus Rooftop Site Mungerannie Pub Mangerannie Hotel Birdsville Track MUNGERANNIE\tSA\t475\t11360\t29582\n10000360\t-28.0178\t153.4299\tCrowne Plaza Surfers Paradise 2807 Gold Coast Highway SURFERS PARADISE\tQLD\t1470\t11905\t29747\n10008020\t-28.0044\t153.3745\tOB Site Royal Pines Resort BENOWA\tQLD\t313\t26245\t23214\n10002469\t-28.0016\t153.4289\t27-29 Cavill Avenue SURFERS PARADISE\tQLD\t807\t27401\t24225\n10008681\t-27.9968\t153.4271\t18 Cypress Ave Surfers Paradise\tQLD\t1471\t23355\t26584\n10002008\t-27.9913\t153.429353\tPhilcomm Site 3440 Surfers Paradise Blvd SURFERS PARADISE\tQLD\t347\t26210\t24187\n10010092\t-27.9857\t153.382696\tAshmore Tavern 161 Cotlew Street ASHMORE\tQLD\t255\t17793\t21534\n10004268\t-27.971\t144.63569\tSES Depot Harlequin Dr YOWAH\tQLD\t1007\t16996\t25829\n10004935\t-27.9639\t153.416\tGold Coast Aquatic Centre Marine Parade Gold Coast\tQLD\t1040\t16825\t23110\n10003383\t-27.9618\t153.3841\t32 davenport st SOUTHPORT\tNSW\t735\t19085\t27604\n10006518\t-27.9592\t140.852\tBore Track North Comms Site Innamincka Station\tSA\t305\t25066\t25898\n10008375\t-27.941\t122.367356\tToohey\u0027s Pit approx 12km N of Bandya\tWA\t137\t27641\t29161\n10004263\t-27.9206\t153.3396\t2 Town Centre Drive Helensvale\tQLD\t385\t24107\t18766\n10006489\t-27.8856\t141.881\tRiver Comms Site Naryilco Station\tQLD\t101\t26515\t27926\n10004929\t-27.8659\t153.319453\tCoomera Indoor Sports Centre 35 Beattie Road Coomera\tQLD\t169\t14194\t26033\n10000159\t-27.8396\t153.11489\tNBN Co 59-67 Pine Forest Way Tamborine\tQLD\t573\t26936\t19874\n10000299\t-27.8076\t153.09282\tNBNCo 775 Camp Cable Road Logan Village\tQLD\t117\t19776\t22475\n10006503\t-27.7954\t136.432\tManarrinna 2 Comms Site Macumba Station\tSA\t649\t17756\t19009\n10000099\t-27.7917\t152.72621\tNBN Co Site 115 - 117 Mollenhauers Road Peak Crossing\tQLD\t1274\t28544\t26799\n10000684\t-27.7825\t145.7594\tBA Nardoo COONGOOLA LANE Coongoola\tQLD\t1469\t14512\t27535\n10003222\t-27.7475\t153.2315\t79 Elderslie Road YATALA\tQLD\t764\t28139\t20927\n10006996\t-27.7468\t140.7378\tOptus Rooftop Site Innamincka Hotal Lot 1 South Terrace INNAMINCKA\tSA\t271\t18111\t25350\n10000242\t-27.7432\t152.70847\tNBN Co Site 55 Bill Morrow Road Peak Crossing\tQLD\t914\t10845\t19594\n10006512\t-27.7242\t140.763\tInnamincka Homestead Comms Site Innamincka Station\tSA\t293\t22384\t24396\n10006511\t-27.7146\t140.771\tKellys Comms Site Innamincka Station\tSA\t587\t24053\t27697\n10008973\t-27.6861\t153.06174\tTelstra Rooftop Site 24 Melastoma Place Heritage Park Logan\tQLD\t136\t20167\t28066\n10004275\t-27.6651\t152.89058\tBrookwater 118 Augusta Parkway AUGUSTINE HEIGHTS\tQLD\t403\t17238\t28806\n10004054\t-27.6621\t153.1106\t68 -70 Laughlin Street KINGSTON\tQLD\t1110\t12833\t23824\n10006431\t-27.656\t153.1681\tThe Good Guys Loganholme Logan Hyperdome Home Centre 3890 Pacific Highway LOGANHOLME\tQLD\t495\t29127\t23524\n10003111\t-27.645\t152.87\tAldi Redbank Plains Cnr Argyle \u0026 Redbank Plains Road Redbank Plains\tQLD\t931\t12104\t23712\n10002563\t-27.6364\t153.1352\tAnaconda Slacks Creek 3525 Pacific Highway SLACKS CREEK\tQLD\t1447\t23065\t25597\n10003267\t-27.6303\t152.2338\t996 Tenthill Creek Rd GATTON\tQLD\t143\t11623\t18713\n10009757\t-27.6282\t152.3935\tTelstra Site 2 Cribb Street Laidley Lockyer Valley\tQLD\t1112\t16976\t26197\n10000725\t-27.6106\t152.893561\t18 Kristine Ave Goodna\tQLD\t1165\t29646\t20166\n10004123\t-27.6091\t153.1236\t2 Pannikin Street ROCHEDALE SOUTH\tQLD\t163\t11935\t19212\n10007857\t-27.5998\t152.1345\tSubstation Flagstone Creek Rd CARPENDALE\tQLD\t1366\t12444\t29467\n10002592\t-27.5972\t151.9494\tAnaconda Toowoomba South 910 Ruthven Street TOOWOOMBA SOUTH\tQLD\t565\t28669\t19986\n10009220\t-27.5877\t152.87963\tOptus Redbank RPTR 112 Monash Road REDBANK\tQLD\t253\t29728\t19223\n10006504\t-27.5658\t136.554\tManarrinna Comms Site Macumba Station\tSA\t1301\t22318\t18771\n10003411\t-27.5656\t114.41439\tKalbarri Loop Von Bibra Road Kalbarri\tWA\t307\t11575\t28645\n10000761\t-27.5634\t153.071641\tTrade Secret Macgregor Kessels Court 567 Kessels Road MACGREGOR\tQLD\t103\t20146\t24097\n10010883\t-27.5631\t153.0819\tShop 1058, Westfield Garden City cnr Logan and Kessel Streets UPPER MT GRAVATT\tQLD\t173\t27250\t29097\n10009576\t-27.5578\t153.0837\t76 Mount Gravatt-Capalaba Road UPPER MOUNT GRAVATT\tQLD\t364\t20362\t24641\n10006451\t-27.5475\t151.940833\t26 Gladstone St TOOWOOMBA\tQLD\t263\t12391\t25111\n10008768\t-27.5259\t153.0089\tOB Site Queensland Tennis Centre 190 King Arthur Terrace TENNYSON\tQLD\t827\t26587\t28525\n10006509\t-27.5202\t140.692\tPacksaddle Comms Site Innamincka Station\tSA\t1474\t28560\t27531\n10003417\t-27.5165\t152.4604\tLockrose 40m monopole LOT 16 Cricket Road BRIGHTVIEW\tQLD\t853\t21982\t23603\n10009025\t-27.5142\t152.58148\tNBN Co site 281 Lehmanns Road Coorana\tQLD\t834\t27373\t25014\n10006982\t-27.5019\t153.0062\tIGA St Lucia 242 Hawken Dr ST LUCIA\tQLD\t1483\t22370\t25734\n10005324\t-27.5009\t153.0367\t264 Ipswich Road WOOLLOONGABBA\tQLD\t754\t23610\t25582\n10002845\t-27.4985\t152.973\tShop 2090 Indooroopilly Shopping Centre 318 - 322 Moggill Road INDOOROOPILLY\tQLD\t1377\t24819\t19047\n10007742\t-27.4946\t153.0585\t280A Old Cleveland Rd COORPAROO\tQLD\t237\t21051\t26037\n10006546\t-27.4944\t141.812\tGoonabrinna Comms Site Durham Downs Station\tQLD\t624\t18139\t21211\n10001710\t-27.4811\t153.0363\t706 Main Street KANGAROO POINT\tQLD\t139\t21955\t24786\n10006893\t-27.4779\t153.0413\t232 Wellington Rd EAST BRISBANE\tQLD\t188\t19721\t25542\n10001709\t-27.4765\t153.0079\t215 Montague Road WEST END\tQLD\t1026\t15140\t28330\n10008808\t-27.4752\t153.0258\tBasement IBC 1 William St Brisbane City\tQLD\t118\t28330\t19348\n10009841\t-27.4742\t153.0258\tQueen Wharf Project Queens Wharf Rd BRISBANE CITY\tQLD\t118\t24907\t22486\n10009482\t-27.4735\t153.0136\tTower Crane 3 1 Cordelia Street SOUTH BRISBANE\tQLD\t161\t12221\t26423\n10009489\t-27.4735\t153.0376\t67 Cairns Street KANGAROO POINT\tQLD\t897\t23795\t28493\n10005558\t-27.4717\t153.0247\t171 George St Brisbane\tQLD\t1354\t17653\t29851\n10005708\t-27.4709\t153.0246\tMyer Centre 91 Queen Street BRISBANE\tQLD\t1045\t20065\t18608\n10003568\t-27.4708\t153.035\t2 Scott Street KANGAROO POINT\tQLD\t999\t28027\t18744\n10008077\t-27.4648\t153.0127\t2 Caxton St PETRIE TERRACE\tQLD\t1012\t27735\t26029\n10010415\t-27.4577\t153.0347\t312 Brunswick Street FORTITUDE VALLEY\tQLD\t512\t19088\t25824\n10010238\t-27.4573\t153.0252\t285 Gregory Terrace SPRING HILL\tQLD\t1287\t28987\t24107\n10009432\t-27.4541\t153.0403\t7 Chester Street NEWSTEAD\tQLD\t1272\t28128\t19717\n10010997\t-27.4535\t153.01513\tTelstra Site SW cnr of Blamey and Ramsgate St Kelvin Grove\tQLD\t157\t27828\t18004\n10000695\t-27.4517\t153.0415\t14/24 Stratton Street Newstead\tQLD\t1220\t13966\t23642\n10008223\t-27.4516\t153.0451\t21 Longland St NEWSTEAD\tQLD\t1327\t19627\t25486\n10008581\t-27.4512\t153.0329\tDairy Hall and Sugar Building Gregory Terrace BOWEN HILLS\tQLD\t136\t23759\t20406\n10009858\t-27.4492\t153.0266\tSurgical Building Herston Quarter 300 Herston Rd HERSTON\tQLD\t920\t23482\t27538\n10001603\t-27.4465\t153.045\tDonaldson Tower 36 Evelyn Street NEWSTEAD\tQLD\t516\t14372\t21585\n10005076\t-27.4392\t152.98963\tAshgrove North 115 Stewart Road ASHGROVE\tQLD\t965\t12038\t25235\n10003569\t-27.4377\t153.0079\tTower crane cnr Edmondstone Street and Enoggera Road NEWMARKET\tQLD\t408\t12245\t20117\n10005327\t-27.4306\t153.1055\t1275 Kingsford Smith MEEANDAH\tQLD\t503\t12354\t21477\n10003572\t-27.428\t153.1496\t67-77 Trade Street LYTTON\tQLD\t1250\t26001\t22103\n10009080\t-27.427\t153.1523\t120 Trade St LYTTON\tQLD\t1341\t12545\t28139\n10006507\t-27.4255\t136.068\tDuck Hole Comms Site Macumba Station\tSA\t1203\t21274\t27142\n10008175\t-27.424\t153.082809\t41 Tradecoast Drive Eagle Farm\tQLD\t858\t21088\t20955\n10007995\t-27.4197\t153.0983\tcnr Lomandra Drive and Logistics Road BRISBANE AIRPORT\tQLD\t152\t12197\t23101\n10006508\t-27.4125\t140.121\tTirrawarra Comms Site Innamincka Station\tSA\t841\t15652\t22119\n10005885\t-27.4108\t151.03629\tQGC Harry 216 Well Off Halliford Road Ducklo\tQLD\t1133\t12043\t29345\n10006510\t-27.3841\t140.983\tMerninie Comms Site Innamincka Station\tSA\t413\t26226\t28395\n10002855\t-27.375\t153.125\tToll Aviation Hangar 8 Acacia St BRISBANE AIRPORT 4009\tQLD\t796\t22943\t20137\n10009010\t-27.3477\t152.90335\tNBN Monopole 40 Albert Road Draper\tQLD\t1185\t27405\t25094\n10000522\t-27.2872\t152.986983\t15 Walter Crescent LAWNTON\tQLD\t635\t10394\t22147\n10005862\t-27.276\t151.4159\tDGPS Site Auchmah Rd BOWENVILLE\tQLD\t1077\t26926\t28820\n10006505\t-27.2529\t135.65\tMacumba Homestead Comms Site Macumba Station\tSA\t1163\t17985\t21982\n10007861\t-27.2419\t153.021\t4 N Lakes Dr NORTH LAKES\tQLD\t684\t28178\t22074\n10007813\t-27.2396\t153.0116\tToys R US Cnr North lake Dr and Prospect St NORTH LAKES\tQLD\t142\t12952\t29443\n10007858\t-27.2374\t152.4987\tSubstation Paddy Gully Rd ESK\tQLD\t1405\t13914\t25563\n10010399\t-27.2133\t153.0855\tLot 888 Spinnaker Boulevard NEWPORT\tQLD\t845\t15653\t27243\n10006544\t-27.2044\t142.372\tNo Mans Comms Site Durham Downs Station\tQLD\t746\t23293\t29105\n10006513\t-27.1908\t140.057\tCoongie SW Comms Site Innamincka Station\tSA\t1088\t13942\t18741\n10006548\t-27.1859\t141.734\tBlacks Comms Site Durham Downs Station\tQLD\t787\t29773\t18357\n10005886\t-27.1534\t150.88731\tQGC David 210 Well Grahams Road, 18 km SE of Kogan\tQLD\t339\t14176\t20601\n10002372\t-27.129\t152.79686\tNBN Co Site 2562 Mt Mee Road Ocean View\tQLD\t1418\t13498\t19423\n10006514\t-27.1199\t140.405\tCoongie SE Comms Site Innamincka Station\tSA\t371\t25034\t21694\n10007305\t-27.1111\t150.29955\tNBN Co Site 78 Tolmah Court Tara\tQLD\t269\t21178\t29820\n10006506\t-27.0896\t135.695\tHorseshoe Bore Comms Site Macumba Station\tSA\t573\t28232\t19291\n10006501\t-27.075\t136.474\tUlowarrina Comms Site Macumba Station\tSA\t1374\t24306\t23470\n10005842\t-26.9135\t152.92068\tNBNCo Site 2001 Old Gympie Road GLASS HOUSE MOUNTAINS\tQLD\t1224\t10684\t24512\n10006545\t-26.9071\t141.642\tMidway Comms Site Durham Downs Station\tQLD\t157\t24807\t25325\n10006515\t-26.874\t140.061\tCoongie NW Comms Site Innamincka Station\tSA\t540\t11943\t21784\n10006516\t-26.8338\t140.499\tCoongie NE Comms Site Innamincka Station\tSA\t1471\t14045\t24674\n10006502\t-26.7395\t136.08\tOolgana Comms Site Macumba Station\tSA\t1026\t17411\t18642\n10010884\t-26.7039\t153.1319\tShop 511, Kawana Shoppingworld 119 Point Cartwright Drive BUDDINA\tQLD\t1301\t20995\t22036\n10006244\t-26.6923\t151.7736\t13 Mustons Rd HALY CREEK\tQLD\t318\t21253\t28974\n10001516\t-26.6585\t153.095238\tAldi Maroochydore 102 Aerodrome Road MAROOCHYDORE\tQLD\t923\t13808\t19458\n10005709\t-26.6545\t153.0867\tMyer Sunshine Plaza Amaroo Street MAROOCHYDORE\tQLD\t114\t11922\t28646\n10010264\t-26.6529\t153.0936\t10-12 Duporth Avenue MAROOCHYDORE\tQLD\t1122\t15065\t28106\n10005253\t-26.6379\t149.9161\tUlimaroa Silos Warrego Highway DRILLHAM\tQLD\t117\t29732\t18315\n10005701\t-26.6371\t149.7567\tNBN Co Site Lot 3 Harrisons Road DULACCA\tQLD\t843\t27682\t29548\n10004269\t-26.586\t149.181398\tSES Depot Showgrounds Warrego Hwy WALLUMBILLA\tQLD\t369\t26156\t23416\n10009051\t-26.5766\t151.7611\t253 Beils Rd INVERLAW\tQLD\t1264\t20712\t27682\n10006997\t-26.4246\t135.5041\tOptus Rooftop Site Dalhousie Springs Witjira National Park WITJIRA\tSA\t446\t22058\t29275\n10009919\t-26.4112\t151.81499\tTelstra Exchange 25-27 Alexander St Wooroolin\tQLD\t1163\t16931\t19153\n10008212\t-26.3878\t149.29309\tMuggelton Off Yuleba Taroom Road YULEBA NORTH\tQLD\t1018\t25005\t27016\n10004717\t-26.3602\t120.6056\tJundee Mine White House Goldfields Highway Wiluna 6646\tWA\t1184\t25798\t19062\n10000681\t-26.3565\t152.55895\tGympie muster-COW 1563 Amamoor Creek Road AMAMOOR CREEK?\tQLD\t910\t22013\t29324\n10004794\t-26.2002\t152.66575\tNorth Monkland 45 Excelsior Road GYMPIE?\tQLD\t1249\t16366\t22562\n10001652\t-26.0132\t152.3427\tRepeater Site Mt Kunjoli (6.5km NW of) WOOLOOGA\tQLD\t850\t16659\t22951\n10003189\t-25.9931\t116.0397\tCB Repeater Earilier Hill 37km north east of BALLYTHUNA HOMESTEAD\tWA\t1356\t18344\t19930\n10006499\t-25.9222\t141.296\tBeal Block Comms Site Morney Plains Station\tQLD\t836\t23674\t28380\n10002781\t-25.8898\t148.9119\tTaylor Repeater off Waybara Road PONY HILLS\tQLD\t1310\t14890\t29458\n10006537\t-25.8528\t140.04\tRingamurra Comms Site Durrie Station\tQLD\t115\t17945\t27432\n10006326\t-25.8395\t133.2998\tOptus Rooftop Site Kulgera Kulgera Roadhouse South Stuart Hwy KULGERA\tNT\t189\t21650\t22084\n10003169\t-25.8332\t147.583572\tCB Repeater Site Redford Station 70km N MUNGALLALA\tQLD\t925\t14672\t26794\n10006498\t-25.7147\t141.595\tBeefwood Comms Site Morney Plains Station\tQLD\t264\t13264\t20553\n10006543\t-25.6993\t140.193\t8 Mile Comms Site Durrie Station\tQLD\t1168\t18940\t21148\n10006541\t-25.6874\t140.229\tDurrie Homestead Comms Site Durrie Station\tQLD\t1008\t27456\t22242\n10006500\t-25.5066\t140.916\tAlleogera Comms Site Morney Plains Station\tQLD\t1217\t12827\t24595\n10006536\t-25.4699\t140.231\tWantatta Comms Site Durrie Station\tQLD\t1482\t12972\t21168\n10006496\t-25.4241\t141.517\tMt Collins Comms Site Morney Plains Station\tQLD\t879\t15565\t22281\n10006497\t-25.3712\t141.469\tMorney Plains Homestead Comms Site Morney Plains Station\tQLD\t523\t13116\t29533\n10008897\t-25.3481\t148.8873\tSantos Castle Hill RT off Arcadia Valley South Rd CASTLE HILL GASFIELD\tQLD\t262\t16346\t19856\n10003059\t-25.292\t152.8913\tAldi Urangan 1C Cartwright Court Urangan\tQLD\t111\t28368\t28297\n10006495\t-25.2758\t140.467\tTackraminta Comms Site Morney Plains Station\tQLD\t389\t12698\t28768\n10008896\t-25.259\t148.8716\tSantos Site Mt Kinglsey Dam Arcadia Valley\tQLD\t398\t12631\t20333\n10006540\t-25.2542\t140.138\tJimos East Comms Site Durrie Station\tQLD\t569\t25453\t24410\n10006539\t-25.1996\t139.942\tJimos West Comms Site Durrie Station\tQLD\t115\t17636\t24271\n10005941\t-25.196\t152.53379\tTelstra Exchange 56 Travis Street Buxton Bundaberg\tQLD\t1472\t15488\t22102\n10009737\t-25.0719\t148.2743\tOptus Site Sandstone Park O\u0027Briens Road CANARVON GORGE\tQLD\t1091\t10128\t22884\n10008205\t-25.0713\t148.2551\tOptus Rooftop Site Canarvon Wilderness Lodge 4043 O\u0027Briens Road CANARVON PARK\tQLD\t649\t21618\t21136\n10008204\t-25.0614\t148.2351\tOptus Rooftop Site Canarvon Gorge Visitor Centre Canarvon Gorge NP CANARVON PARK\tQLD\t1289\t15901\t29006\n10006532\t-24.9975\t139.052\tDam West Comms Site Glengyle Station\tQLD\t383\t21082\t28373\n10006529\t-24.9799\t139.638\tLake Koolivoo Comms Site Glengyle Station\tQLD\t1127\t14532\t22589\n10002736\t-24.9625\t152.0495\tCouncil Tower Delan Rd BULLYARD\tQLD\t1213\t16115\t21686\n10006533\t-24.9486\t139.321\tDam East Comms Site Glengyle Station\tQLD\t905\t10106\t27022\n10003058\t-24.8181\t152.4552\tAldi Bargara 699 Bargara Road, Bargara\tQLD\t916\t25948\t18059\n10006531\t-24.7988\t138.727\tDubbo Comms Site Glengyle Station\tQLD\t1404\t11252\t23592\n10006530\t-24.7846\t139.592\tGlengyle Homestead Comms Site Glengyle Station\tQLD\t113\t10973\t21771\n10008936\t-24.7147\t119.898436\tTWR2 Kalium Lakes 88 km NE of Kumarina\tWA\t246\t22239\t26207\n10010632\t-24.6943\t151.30439\tTelstra Site 4 Pine Street Kalpowar\tQLD\t307\t19869\t20940\n10006528\t-24.6772\t138.973\tTommydonka Comms Site Glengyle Station\tQLD\t1101\t11716\t27768\n10006534\t-24.624\t139.195\tCarrawillia Comms Site Glengyle Station\tQLD\t389\t29743\t22671\n10006688\t-24.5638\t149.97689\tMarch IT Facility MOUR03 28-30 Okano St Moura\tQLD\t1377\t14207\t27374\n10006535\t-24.5585\t139.418\tBullock North Comms Site Glengyle Station\tQLD\t662\t20898\t27236\n10009180\t-24.4601\t150.4644\t361 Crowsdale Camboon Road Biloela\tQLD\t810\t20171\t19407\n10006803\t-24.4053\t131.817782\tOptus Rooftop site Kings Creek Station 12725 Luritja Road PETERMANN\tNT\t1121\t16999\t21460\n10006331\t-24.2513\t131.5113\tOptus Rooftop Site Kings Canyon Resort Kings Canyon Resort 20000 Larapinta Drive PETERMANN\tNT\t1277\t14501\t20864\n10008099\t-24.1424\t148.15007\tNBN Co Site Dawson Highway Orion\tQLD\t1451\t28940\t28219\n10007261\t-24.0775\t132.76\tParks \u0026 Wildlife Site Palm Valley Finke Gorge National Park NAMATJIRA\tNT\t775\t16671\t24835\n10002893\t-23.8104\t150.647777\t1879 South Ulam Road Bajool\tQLD\t439\t22959\t22954\n10004911\t-23.7649\t148.1016\t312 Howards Rd GINDIE\tQLD\t108\t17803\t27842\n10006324\t-23.6851\t132.672\tOptus Rooftop Site Glen Helen Homestead Glen Helen Homestead Lodge 8495 Namatjira Drive MOUNT ZEIL\tNT\t194\t13234\t21685\n10009738\t-23.6322\t132.7267\tOptus Rooftop Site Ormiston Poud Ranger Station Ormiston Gorge Access Road MOUNT ZEIL\tNT\t359\t26555\t25877\n10005239\t-23.5272\t148.4098\tBauhinias Rd COMET\tQLD\t1194\t24496\t20044\n10009842\t-23.4445\t144.2457\t144-150 Emu St LONGREACH\tQLD\t707\t23652\t28596\n10004676\t-23.442\t144.248697\tTarget 111 Eagle St LONGREACH\tQLD\t1055\t17954\t27986\n10003460\t-23.4389\t144.2816\tBoM Wind Profiler Longreach Airport Longreach\tQLD\t1197\t14359\t29327\n10008110\t-23.3978\t120.1006\tBHP 30m skid 3km SSE of McCamey\u0027s Monster\tWA\t749\t11653\t23710\n10002526\t-23.3907\t120.1154\tBHP Billiton LTE site JIM_12 BHP Jimblebar mine\tWA\t675\t15284\t23169\n10002525\t-23.3888\t120.1834\tBHP Billiton LTE site JIM_11 BHP Jimblebar mine\tWA\t1084\t12433\t24695\n10002529\t-23.3841\t120.0829\tBHP Billiton LTE site Skid 3 BHP Jimblebar mine\tWA\t1045\t12868\t26487\n10005175\t-23.3838\t119.6575\tMicrowave site OB35 Mid Pit BHP Mt Whaleback mine\tWA\t999\t21271\t27116\n10008109\t-23.3831\t120.1348\tBHP 30m skid 1.5km SSE of Wheelarra Hill\tWA\t1067\t18431\t19110\n10005174\t-23.3786\t119.7073\tMicrowave site OB29 BHP Mt Whaleback mine\tWA\t227\t22816\t20317\n10008113\t-23.3769\t120.1539\tBHP 50m tower 2.8km ESE of Wheelarra Hill\tWA\t751\t23431\t28393\n10003364\t-23.375\t150.535555\tLandfill Site Lakes Creek Road ROCKHAMPTON\tQLD\t239\t13532\t23408\n10008115\t-23.3725\t120.0919\tBHP 50m tower Jimblebar mine McCamey\u0027s Monster\tWA\t450\t18761\t18633\n10001792\t-23.3718\t120.1264\tBHP Billiton LTE site WH4 Wheelarra Hill\tWA\t1158\t15884\t19840\n10001482\t-23.3694\t120.0508\tRail loadout BHP Jimblebar mine, 5 km west of McCameys Monster\tWA\t1304\t28903\t18198\n10008114\t-23.3683\t120.1063\tBHP 50m tower 1.5km ENE of McCamey\u0027s Monster\tWA\t545\t25996\t27368\n10008106\t-23.3681\t120.1641\tBHP 30m skid 3.8km East of Wheelarra Hill\tWA\t1124\t15166\t28162\n10008107\t-23.3639\t120.1946\tBHP 30m skid 7km East of Wheelarra Hill\tWA\t724\t25515\t26060\n10008111\t-23.3635\t120.092\tBHP 30m skid 1km North of McCamey\u0027s Monster\tWA\t1485\t23731\t23657\n10005173\t-23.3586\t119.6464\tRabbit Flats tower W29 BHP Mt Whaleback mine\tWA\t1445\t14913\t25408\n10006422\t-23.3416\t150.5217\tThe Good Guys Rockhampton Red Hill Homemaker Centre 396 Yaamba Road NORMAN GARDENS\tQLD\t612\t18861\t27728\n10008116\t-23.3272\t120.0458\tBHP 50m tower 2.5km East of Shovelanna Hill\tWA\t918\t26541\t18169\n10008112\t-23.3212\t120.0644\tBHP 30m skid 4.5km ENE of Shovelanna Hill\tWA\t867\t23262\t18740\n10008108\t-23.3164\t120.1129\tBHP 30m skid 9.5km ENE of Shovelanna Hill\tWA\t1240\t17295\t22749\n10002527\t-23.3015\t120.0925\tBHP Billiton LTE site Skid 1 BHP Jimblebar mine\tWA\t221\t20726\t18533\n10008704\t-22.892\t113.92455\tTelstra Site Minilya-Exmouth Road Lyndon Carnarvon\tWA\t828\t24687\t22482\n10001801\t-22.865\t119.689\tBHP Billiton LTE site Poonda North SER Mount Newman Railway\tWA\t1219\t15576\t27462\n10010482\t-22.4826\t119.86845\tTrailer 1 Roy Hill Mine ROY HILL\tWA\t1466\t12103\t21317\n10010480\t-22.4815\t119.973306\tTrailer 3 Roy Hill Mine ROY HILL\tWA\t511\t26189\t24967\n10008202\t-22.4809\t118.4629\tOptus Rooftop Site Karajini Vistor Centre Banijima Drive MULGA DOWNS\tWA\t339\t28694\t20948\n10009741\t-22.4708\t118.5437\tOptus Site Karajini Campground Banijima Drive MULGA DOWNS\tWA\t113\t16720\t27894\n10008715\t-22.4424\t119.924856\tPSA Waste Water Treatment Plant Roy Hill Mine Roy Hill\tWA\t1498\t13035\t18284\n10005527\t-22.2775\t117.5014\t55km NNW of Tom Price Tom Price\tWA\t619\t22610\t19101\n10006447\t-22.255\t117.851667\tSolomon Mine Airport 100Km North of Paraburdoo HAMERSLEY RANGE\tWA\t126\t24611\t21879\n10003944\t-22.1252\t117.83833\tTrinity (TNTY) 26.5 km NE of Mount Sheila Hamersley Range\tWA\t448\t26393\t22228\n10004273\t-22.0865\t148.25659\tRamp 40 Site Poitrel Mine COPPABELLA\tQLD\t801\t24351\t24574\n10007911\t-21.9973\t148.0385\t9 Barcoo Dr MORANBAH\tQLD\t1058\t27211\t23986\n10001139\t-21.8393\t140.893773\tAFRU Site Cannington Mine TREPELL AIRPORT\tQLD\t212\t19336\t25011\n10004041\t-21.7658\t149.375003\tWest Hill Lot28MC573 Bruce HW Carmilla\tQLD\t1420\t12094\t20418\n10003406\t-21.6406\t121.1889\tWoodie Woodie Airport Woodie Woodie Road WOODIE WOODIE\tWA\t393\t26866\t20078\n10009740\t-21.5912\t117.0754\tOptus Rooftop Site Millstream Homestead off Kajenjie Millstream Rd MILLSTREAM\tWA\t679\t25962\t28741\n10003047\t-21.5415\t115.0327\tWaveRider buoy 14 km North west of ONSLOW\tWA\t808\t11783\t25365\n10010327\t-21.1227\t118.869\tPilgangoora Lithium-Tantalum Mine off Port Hedland-Wittenoom Road, 95 km SSE of PORT HEDLAND\tWA\t492\t17611\t27190\n10005374\t-20.986\t137.8496\tLake Nash Community Office 13 Antyiper Street ALPURRURULAM\tNT\t1334\t13436\t27544\n10002023\t-20.812\t116.7738\tLot 126 Warlu Road Cooya Pooya\tWA\t1052\t14542\t27222\n10001860\t-20.7746\t116.763\t15.8KP SER Pilbara\tWA\t117\t29751\t25428\n10000669\t-20.7355\t116.846\t16 Sharpe Avenue Karratha\tWA\t531\t23949\t29976\n10008789\t-20.7323\t116.840964\tKarratha Health Campus 62 Balmoral Road Karratha\tWA\t710\t11975\t20875\n10001859\t-20.679\t117.118653\t9.78KP SER Pilbara\tWA\t1353\t15639\t21048\n10009833\t-20.6481\t116.72204\tDampier Power Station via Parker Point Road DAMPIER\tWA\t693\t17416\t18977\n10007825\t-20.6279\t117.1961\tSite 9 Meares Drive POINT SAMSON\tWA\t532\t20668\t28339\n10005330\t-20.515\t147.844447\tAlmoola SER 1.2 km East of Bowen Developmental Road Springlands\tQLD\t121\t27191\t25452\n10009893\t-20.175\t129.666667\tNorthern Star Resources nominal LTE site Tanami 6 Tanami Desert\tNT\t798\t19373\t19859\n10004557\t-20.1094\t139.865093\tGereta Station Lot 2585 Three Rivers\tQLD\t1061\t14787\t18717\n10006804\t-19.9217\t138.1195\tOptus Rooftop site Post Office Hotel 39 Barkly St CAMOOWEAL\tQLD\t146\t20724\t21194\n10009894\t-19.875\t130.0\tNorthern Star Resources nominal LTE site Tanami 5 Tanami Desert\tNT\t351\t15158\t28203\n10009892\t-19.875\t129.0\tNorthern Star Resources nominal LTE site West Tanami Tanami Desert\tWA\t1232\t26363\t18533\n10007511\t-19.7027\t139.35347\tSouth Esperanza Ridge 3km WSW of Waggaboonya Lake Gunpowder\tQLD\t1332\t23190\t21641\n10007627\t-19.6863\t147.28585\tIoT Trial Site Ayr-Dalbeg Road Mona Park\tQLD\t549\t12012\t21757\n10005604\t-19.593\t147.135\t419 Bartlett Rd GIRU\tQLD\t709\t16947\t24118\n10006964\t-19.5548\t147.35763\tTelstra Site 91 Drysdale Street Brandon\tQLD\t352\t19980\t20867\n10004603\t-19.4366\t134.208275\tOptus Rooftop Site 3 Ways Roadhouse National Hwy 87 Tennant Creek\tNT\t705\t28743\t18828\n10007830\t-19.3167\t146.8223\tFairfield Central Shopping Centre 2-14 Darcy Dr IDALIA\tQLD\t1259\t27425\t19406\n10005147\t-19.3162\t146.700233\tHarris Crossing Estate 308 Hervey Range Road BOHLE PLAINS\tQLD\t484\t15537\t24670\n10006481\t-19.3081\t128.379\tLake Wilson Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t193\t25245\t23519\n10010261\t-19.2939\t146.7893\tMundingburra State School 77 Ross River Rd MUNDINGBURRA\tQLD\t189\t18527\t28560\n10006424\t-19.2742\t146.7579\tThe Good Guys Townsville Domain Central Shopping Centre 103 Duckworth Street GARBUTT\tQLD\t1011\t22539\t18739\n10005913\t-19.2734\t146.7766\t44 Punari Street CURRAJONG\tQLD\t867\t25886\t28974\n10002140\t-19.264\t146.821244\tQFES Communications Centre 2-8 Morey Street SOUTH TOWNSVILLE\tQLD\t109\t28481\t27732\n10010100\t-19.2531\t146.70435\tTower North Shore Boulevard Townsville\tQLD\t586\t18879\t20944\n10006479\t-19.1626\t128.163\tSturt Creek Homested Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t332\t27945\t28112\n10006484\t-19.1332\t127.828\tClay Hole Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t997\t26804\t28510\n10006485\t-19.0957\t127.518\tCarranya Bush Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t440\t28421\t26603\n10006550\t-19.0469\t134.487\tSpinifex Comms Site Brunchilly Station\tNT\t816\t25655\t29857\n10006478\t-19.0046\t127.586\tWest Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t1463\t13631\t23294\n10000422\t-18.9991\t144.98033\tTelstra Exchange Cassia Court Greenvale\tQLD\t176\t24085\t19065\n10006551\t-18.9761\t134.793\tKidman Comms Site Brunchilly Station\tNT\t1425\t17883\t22842\n10006486\t-18.9616\t127.965\tBush Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t1131\t25125\t26558\n10006487\t-18.9314\t128.374\tBorderline Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t575\t25753\t20936\n10006553\t-18.8683\t134.5\tBrunchilly Homestead Comms Site Brunchilly Station\tNT\t445\t12027\t21348\n10006552\t-18.8627\t134.563\tChow Chowra Comms Site Brunchilly Station\tNT\t112\t18559\t24404\n10006526\t-18.7108\t134.365\tCoolibah Comms Site Brunchilly Station\tNT\t810\t15271\t28878\n10008206\t-18.6908\t138.5308\tOptus Rooftop Site Boodjamulla National Park Adels Grove LAWN HILL\tQLD\t518\t18248\t29381\n10006482\t-18.6832\t127.685\tHughes Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t190\t28359\t18977\n10006483\t-18.6281\t128.147\tDry Comms Site Ruby Plains \u0026 Sturt Creek Station\tWA\t376\t28661\t27427\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1659329616439_1282261666",
+ "id": "paragraph_1659329616439_1282261666",
+ "dateCreated": "2022-08-01T04:53:36+0000",
+ "dateStarted": "2022-08-16T04:46:53+0000",
+ "dateFinished": "2022-08-16T04:46:53+0000",
+ "status": "FINISHED"
+ },
+ {
+ "text": "%python\nsite_df.count()",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:52+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TEXT",
+ "data": "SITE_ID 103912\nLATITUDE 103912\nLONGITUDE 103912\nNAME 103912\nSTATE 103675\nELEVATION 103912\nCOST 103912\nREVENUE 103912\ndtype: int64\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_95991454",
+ "id": "20220727-124935_1325158235",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:46:55+0000",
+ "dateFinished": "2022-08-16T04:46:55+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Save SITE dataframe in a DB table",
+ "text": "%python\n\ncr \u003d oml.cursor()\n\ntry:\n\n oml_df \u003d oml.create(site_df, table\u003d\u0027SITE_OPERATION_COST_REVENUE\u0027)\n print(\"Table Created !!\")\n \nexcept Exception as e:\n print(\"Exception occured and handled:\",e)\n \n query \u003d \"TRUNCATE table SITE_OPERATION_COST_REVENUE\"\n cr.execute(query)\n \n try:\n oml_df \u003d oml.create(site_df, table\u003d\u0027SITE_OPERATION_COST_REVENUE\u0027, append\u003dTrue)\n print(\"Records Updated !!\")\n \n except Exception as a:\n \n print(\"Exception occured and handled :\", a)\n oml_df \u003d oml.create(site_df, table\u003d\u0027SITE_OPERATION_COST_REVENUE\u0027)\n print(\"Records Updated !!\")\n \nfinally:\n z.show(oml_df)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:52+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "language": "sql",
+ "editOnDblClick": false
+ },
+ "colWidth": 12.0,
+ "editorMode": "ace/mode/undefined",
+ "fontSize": 9.0,
+ "title": true,
+ "results": {
+ "1": {
+ "graph": {
+ "mode": "table",
+ "height": 300.0,
+ "optionOpen": false,
+ "setting": {
+ "table": {
+ "tableGridState": {},
+ "tableColumnTypeState": {
+ "names": {
+ "SITE_ID": "number",
+ "LATITUDE": "number",
+ "LONGITUDE": "number",
+ "NAME": "string",
+ "STATE": "string",
+ "ELEVATION": "number",
+ "COST": "number",
+ "REVENUE": "number"
+ },
+ "updated": false
+ },
+ "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
+ "tableOptionValue": {
+ "useFilter": false,
+ "showPagination": false,
+ "showAggregationFooter": false
+ },
+ "updated": false,
+ "initialized": false
+ }
+ },
+ "commonSetting": {}
+ }
+ }
+ },
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TEXT",
+ "data": "Exception occured and handled: ORA-00955: name is already used by an existing object\nRecords Updated !!\n"
+ },
+ {
+ "type": "TABLE",
+ "data": "SITE_ID\tLATITUDE\tLONGITUDE\tNAME\tSTATE\tELEVATION\tCOST\tREVENUE\n10000223\t-42.812265\t147.245496\tTasmanet Rooftop Site 11-13 Coraki St CHIGWELL\tTAS\t823\t27467\t22171\n10008457\t-42.811789\t147.260646\tMONA FOMA 13 MONA Main Rd BERRIEDALE\tTAS\t599\t25272\t19105\n10010005\t-42.810572\t147.258433\tWWTP Alcorso Dve CAMERON BAY\tTAS\t773\t13722\t20112\n100028\t-42.801254\t147.29781\tOptus Site Roebourne Road Reservoir OTAGO\tTAS\t114\t20210\t27639\n100032\t-42.778523\t147.187946\tOptus Site Sky Farm Road MT FAULKNER\tTAS\t1135\t20248\t29847\n10002890\t-42.77815\t147.24504\tTelstra Site 30B Wakehurst Road Austins Ferry\tTAS\t340\t11627\t21751\n10009104\t-42.775361\t146.654658\tDPFEM Site Abbotts Lookout Maydena\tTAS\t486\t23284\t27538\n10003081\t-42.77094\t147.0521\tTelstra Site 10 Howell Drive New Nortfolk\tTAS\t1087\t25336\t29671\n100090\t-42.770115\t147.251946\tMill Site 231 Main Road AUSTINS FERRY\tTAS\t578\t23533\t22839\n10005400\t-42.768911\t146.046036\tOptus Rooftop Site Gordon River Rd STRATHGORDON\tTAS\t1061\t25323\t27956\n10003304\t-42.768676\t146.04593\tPedder Wilderness Lodge Main Building, Gordon River Rd Strathgordon\tTAS\t117\t29604\t21984\n10002087\t-42.738533\t147.278474\tGreen point Bridgewater 5A Hakea Cst GAGEBROOK\tTAS\t1379\t11543\t29390\n10005682\t-42.667305\t147.416971\tVHA Monopole 21 Water Lane CAMPANIA\tTAS\t1304\t13294\t23458\n10007497\t-42.664078\t147.591925\tJettech Site Mount Phipps 3 km SE of Runnymede\tTAS\t1216\t13325\t24025\n10009371\t-42.631966\t147.223198\t49 Quarrytown Rd BAGDAD\tTAS\t189\t29234\t21098\n10002464\t-42.56642\t147.866\tOrford optus 35 monopole 1 Mary St Orford\tTAS\t165\t18611\t25844\n10009411\t-42.564215\t146.845557\tVHA Monopole 239 Hamilton Plains Road HAMILTON\tTAS\t544\t13263\t29374\n10009636\t-42.550833\t147.951389\tJettech Site Point Home off Freestone Point Road Triabunna\tTAS\t1337\t19386\t21773\n10003420\t-42.54688\t147.94858\tTelstra Site 1 Plan 121810 Freestone Point Road Triabunna\tTAS\t930\t15802\t28630\n10009637\t-42.543263\t147.980642\tAquaculture Lease Okehampton Bay near Triabunna\tTAS\t1390\t21788\t26577\n10004122\t-42.535353\t147.365283\tTelstra Exchange 20 Richmond Street Colebrook\tTAS\t1064\t15678\t27678\n10004032\t-42.527775\t147.198752\tKempton Football Oval Main Street KEMPTON\tTAS\t549\t24079\t21505\n10008573\t-42.430794\t147.288128\tUTAS Bisdee Tier Observatory Midland Highway MELTON MOWBRAY\tTAS\t1382\t25311\t24852\n10002659\t-42.42745\t147.49103\tNear 3372 Woodsdale Road Baden\tTAS\t1346\t11185\t23912\n100005\t-42.41492\t147.263412\tOptus Site Midlands Highway SPRING HILL TIER\tTAS\t878\t22891\t18540\n10000259\t-42.380311\t147.290553\tTasNetworks Jericho Town Hall Jericho Road JERICHO\tTAS\t171\t20141\t21095\n10008772\t-42.368473\t147.34234\tJericho East 42Stonor Road Jericho\tTAS\t493\t18668\t25891\n10008629\t-42.315111\t145.383554\tSalmon Farm Pontoon Pontoon Macquarie Harbour\tTAS\t537\t26502\t23532\n10005737\t-42.300689\t147.3714\tTelstra Exchange 24 Church St OATLANDS\tTAS\t896\t28581\t24366\n10007568\t-42.30065\t146.44366\tTarraleah Palana Crescent TARRALEAH\tTAS\t725\t12716\t25882\n100006\t-42.245977\t147.419598\tGSM Site St Peters Pass VINCENTS HILL\tTAS\t685\t26904\t24463\n10004869\t-42.20956\t146.928101\tVHA Tower 4191 Highland Lakes Road BOTHWELL\tTAS\t641\t13613\t21567\n10007016\t-42.177922\t147.522288\tOne Tree Hill Glen Morey Rd WOODBURY\tTAS\t1147\t16542\t23393\n10004879\t-42.176707\t145.308078\tTasmanet Site THUB off Macquarie Heads Rd, STRAHAN\tTAS\t1054\t15939\t23173\n10009412\t-42.150051\t148.044137\tVHA Monopole 79 Trangle Marsh Road SWANSEA\tTAS\t689\t16893\t26523\n10000716\t-42.080139\t145.555056\tAM Site (SE) McNamara Street QUEENSTOWN\tTAS\t1194\t17981\t25836\n10010801\t-42.07455\t145.53633\tNBN Co Site Crown Land, Lyell Hwy Queenstown\tTAS\t823\t19048\t28100\n10010800\t-42.07311\t145.5527\tNBN Co Site 5-7 Penghana Road Queenstown\tTAS\t725\t13790\t23080\n10000387\t-41.87357\t146.82809\tTelstra Site 50 Cramps Bay Road Cramps Bay\tTAS\t615\t12901\t28693\n10010958\t-41.86061\t146.69551\tTelstra Site Highland Lakes Road Reynolds Neck\tTAS\t378\t19325\t23777\n10010799\t-41.84532\t145.53872\tNBN Co Site Mt Read, Murchison Highway West Coast\tTAS\t225\t13815\t27357\n10008369\t-41.797485\t145.537713\tBald Hill via Mount Read Road ROSEBERY\tTAS\t790\t16201\t24429\n10000896\t-41.782436\t147.722448\tAvoca Exchange 20 Arthur St Avoca\tTAS\t658\t12924\t26790\n10008602\t-41.678225\t147.262792\t24 Powranna Rd POWRANNA\tTAS\t334\t23739\t25044\n10004704\t-41.663654\t147.083277\tCressy North 974 Cressy Road CRESSY\tTAS\t548\t14761\t24137\n10008938\t-41.659464\t146.305411\tWestern Bluff Mackenzie Road Mersey Forest\tTAS\t584\t24032\t28727\n10005981\t-41.65557\t147.750748\tTelstra Site Rossarden Road Rossarden Northern Midlands\tTAS\t834\t12951\t18345\n10000858\t-41.64542\t147.328331\tNile Exchange 1067-1075 Nile Road Nile\tTAS\t100\t27566\t25958\n10005316\t-41.640007\t147.020829\tDGPS site Bishopsbourne 220 Armstrong Lane Bishopsbourne\tTAS\t157\t19279\t24426\n10004484\t-41.58076\t145.93099\tCradle Mountain Cradle Mountain Road? CRADLE MOUNTAIN\tTAS\t148\t21000\t22250\n10000258\t-41.579344\t148.182319\tTasNetwork Depot 20 Clive Street ST MARYS\tTAS\t264\t28034\t29793\n10006861\t-41.552859\t146.416368\tMole Creek 2172 Mole Creek Road Mole Creek\tTAS\t717\t14403\t27192\n10008357\t-41.542884\t147.202327\tAvis Hobart Airport Evandale Rd WESTERN JUNCTION\tTAS\t588\t22786\t22524\n100014\t-41.540577\t146.536594\tOptus Site off Mole Creek Road GARDNERS RIDGE\tTAS\t821\t19366\t26580\n10007017\t-41.540205\t146.53634\tNeedles Hill Mole Creek Main NEEDLES\tTAS\t399\t28524\t26919\n10000352\t-41.539468\t147.173956\tMidlands Hwy (1.5km S of Evandale Rd roundabout) BREADALBANE\tTAS\t904\t19937\t20882\n10004723\t-41.536359\t147.016885\tEast St CARRICK\tTAS\t1017\t17963\t23956\n10005883\t-41.53042\t146.85267\tWestbury Central 49 Kings Street Westbury\tTAS\t168\t27415\t22230\n10003366\t-41.51546\t145.21498\tTMN Repeter Site Savage River Reece Ct SAVAGE RIVER\tTAS\t1054\t11847\t22522\n10008603\t-41.513992\t147.296942\tDalness Dam 970 Blessington Rd WHITE HILLS\tTAS\t636\t11645\t24306\n10002497\t-41.512366\t146.649387\tDeloraine 222-250 Weetah Rd 7304 Deloraine\tTAS\t1006\t29513\t18014\n10004435\t-41.51121\t147.07549\tOptus Site Hadspen Bartley Street Hadspen\tTAS\t945\t10485\t20162\n10004880\t-41.47868\t147.88879\tTelstra Exchange 14 Dunn Street Mathinna Break O\u0027Day\tTAS\t1479\t15381\t28491\n10003408\t-41.476399\t147.143462\tVHA Monopole 55 Oakden Road PROSPECT\tTAS\t996\t23190\t25407\n10005276\t-41.476333\t147.165276\t257 Hobart Rd KINGS MEADOWS\tTAS\t290\t29569\t25552\n10005112\t-41.436111\t146.272222\t60 Perkins Drive CLAUDE ROAD\tTAS\t794\t27854\t25385\n10004527\t-41.434142\t147.139164\tMAIB 33 George Street Launceston\tTAS\t239\t18147\t27475\n10002582\t-41.43356\t147.1369\tAnaconda Launceston 69 William St LAUNCESTON\tTAS\t996\t29958\t19231\n10000629\t-41.432539\t147.145829\tBroadcast Site Corner of Brisbane and Lawrence Street LAUNCESTON\tTAS\t1494\t21901\t18725\n10010596\t-41.428196\t147.140859\t2 Invermay St INVERMAY\tTAS\t947\t18625\t29235\n100019\t-41.427686\t147.106531\tOptus Site Water Reserve Grinter St West RIVERSIDE\tTAS\t998\t16235\t18723\n10005377\t-41.427512\t147.106721\tVHA Monopole Lot1 Plan 139914 Elouera Street TREVALLYN\tTAS\t1409\t26007\t29189\n10007489\t-41.424552\t146.181685\tTelstra Street Cell 512 Staverton Rd Promised Land\tTAS\t1040\t16479\t26728\n10003414\t-41.423477\t147.178538\tLink 1 - Feed Link 28 Ormond Street RAVENSWOOD\tTAS\t815\t18037\t23801\n10004347\t-41.40593\t147.135519\tTarget 21 Vermont Rd MOWBRAY\tTAS\t1368\t11994\t26032\n10005983\t-41.389466\t147.295259\tTelstra Site 9 Patersonia Rd Nunamara Launceston City\tTAS\t564\t23197\t19243\n10000386\t-41.38258\t147.29978\tTelstra Site 82 Patersonia Road Nunamara\tTAS\t564\t16221\t18220\n10007393\t-41.38043\t147.12967\tTelstra Site 188 George Town Road Newnham Launceston City\tTAS\t885\t22018\t25239\n10000617\t-41.377304\t147.421683\tAirservices VHF Tower Mt Barrow Compound MT BARROW\tTAS\t1169\t17045\t25500\n10004314\t-41.373537\t147.119964\tRocherlea 280 George Town Road Richerlea\tTAS\t239\t25202\t24992\n10003407\t-41.372761\t147.119149\tVHA Monopole 288 George Town Road ROCHERLEA\tTAS\t1359\t27028\t23460\n10004415\t-41.370299\t147.055495\tOptus Site Legana 9 Legana Park Drive Legana\tTAS\t566\t29555\t23519\n10006065\t-41.342882\t146.542396\tParramatta Creek Off Bass Hwy Sassafras\tTAS\t1490\t15500\t26360\n10008788\t-41.342702\t146.542366\t7218 Bass Hwy SASSAFRAS\tTAS\t1116\t13588\t29388\n10002726\t-41.33445\t147.34822\t38588 Tasman Highway Nunamara\tTAS\t1040\t25055\t25741\n10006940\t-41.327118\t148.248026\tMarine Rescue The Esplanade ST HELENS\tTAS\t847\t27400\t21373\n10005517\t-41.32226\t146.51465\tSassafras 59 Evans Rd Sassafras\tTAS\t552\t29508\t18194\n10005007\t-41.319597\t146.410322\tNE Corner of Mine Pit Cement Works Road Railton\tTAS\t1189\t25534\t27008\n10000385\t-41.31553\t147.37228\tTelstra Site off Camden Hill Road Targa\tTAS\t542\t23406\t23011\n10010911\t-41.30629\t148.22151\t25606 Tasman Hwy St Helens\tTAS\t1122\t19645\t22780\n10000226\t-41.30509\t147.017546\tNBN Co NBN Co Site, 228 Los Angelos Rd SWAN BAY\tTAS\t1181\t20392\t26301\n100015\t-41.303633\t146.775368\tOptus Site KELLYS LOOKOUT\tTAS\t387\t24666\t29799\n10006304\t-41.297657\t146.411755\tTasNetworks Dulverton Hill Rd RAILTON\tTAS\t1453\t14981\t28567\n10006862\t-41.297226\t147.016973\tSwan Bay Los Angelos Rd Swan Bay\tTAS\t551\t18874\t19311\n10008604\t-41.287642\t146.394739\t145 Dawson Siding Rd LATROBE\tTAS\t660\t22910\t24202\n10005213\t-41.28521\t145.95939\tLoyetea CMTS 415 Loyetea Rd LOYETEA\tTAS\t1192\t15632\t27049\n10004397\t-41.276512\t146.144556\tTelstra Exchange 1449 Castra Road SPRENT\tTAS\t111\t18204\t24695\n10006064\t-41.268911\t146.354087\tBrown Mountain 230 James Road Acacia Hills\tTAS\t993\t20221\t22996\n10005214\t-41.23928\t145.97197\tSouth Riana CMTS 862 SOUTH RIANA RD SOUTH RIANA\tTAS\t870\t18986\t28870\n10005314\t-41.213227\t146.160013\tDGPS site Ulverstone 361 Top Gawler Road Ulverstone\tTAS\t1031\t19905\t21641\n100007\t-41.210755\t146.327361\tOptus Site KELCEY TIER\tTAS\t1197\t28885\t29577\n10010224\t-41.20422\t146.3479\tTelstra Site 2 Doric Court Quoiba\tTAS\t683\t11455\t25987\n10010167\t-41.199694\t146.374304\tDevonport East Cameray Street Devenport\tTAS\t342\t13262\t22817\n10005964\t-41.19857\t144.728\tTelstra Site Temma CMTS Kaywood Rd Temma\tTAS\t1158\t25180\t23956\n10000225\t-41.19808\t147.53018\tNBN Co 190 Davies Road SCOTTSDALE\tTAS\t881\t14025\t26968\n10009763\t-41.194467\t147.904531\tTelstra Exchange 13 Main Rd Weldborough\tTAS\t960\t23715\t23735\n10005315\t-41.193376\t146.279314\tDGPS site Forth 393 Forth Road Forth\tTAS\t295\t14499\t22972\n10008560\t-41.191622\t146.364814\tTasrail Rail Office Westport Rd DEVONPORT\tTAS\t645\t11747\t19896\n10004416\t-41.187398\t146.877777\tOptus Site Kayena Tamar Ridge Winery, 653 Auburn Road Kayena\tTAS\t1319\t22968\t27167\n10002553\t-41.183738\t146.331305\tDEVONPORT WEST Optus monopole 23 Hillcrest Rd., Devonport Devonport\tTAS\t1372\t21305\t19666\n10007104\t-41.182853\t146.366517\tVessel Searoad Mersey II Devonport Berth 2 Wright Street East Devonport\tTAS\t1208\t23589\t21688\n10005008\t-41.182303\t146.362956\tCompressor Building Cement Silos Port Road Devonport\tTAS\t833\t27948\t18897\n10004687\t-41.180195\t146.360281\tTarget 39-41 Rooke St DEVONPORT\tTAS\t898\t14380\t22252\n10006370\t-41.18005\t146.26218\tForth 244 Braddons Lookout Road Leith\tTAS\t1142\t11416\t18980\n10000890\t-41.178071\t146.36058\t127 Rooke Street Devonport\tTAS\t964\t11032\t20693\n10005410\t-41.177661\t146.358448\t17 Fenton Way Devonport\tTAS\t809\t21215\t22812\n10007751\t-41.17719\t147.22766\tTelstra Street Cell 2891 Golconda Road Lebrina Launceston City\tTAS\t847\t23659\t26842\n10000864\t-41.16941\t146.34435\tMobile Network Site 91 Percy Street Devonport\tTAS\t714\t21025\t28245\n10004248\t-41.16765\t146.35986\tDevonport North 35m monopole James S DEVONPORT\tTAS\t724\t13386\t27306\n10006073\t-41.165342\t147.531641\tScottsdale West Ringarooma Road Scottsdale\tTAS\t886\t27078\t28492\n10007650\t-41.16523\t147.53264\tScottsdale West Ringarooma Rd SCOTTSDALE\tTAS\t1189\t19461\t27843\n10004701\t-41.16255\t146.31128\tLillico 10363 Bass Highway Lillico\tTAS\t203\t12666\t26871\n10004784\t-41.160269\t146.222299\tTasmanet Rooftop Site Camp Clayton 41 Clayton Rd ULVERSTONE\tTAS\t783\t16033\t25317\n10004228\t-41.157958\t146.204967\tBotanical Resources 44 Industrial Drive Ulverstone\tTAS\t437\t23384\t24338\n10006181\t-41.15497\t145.65425\tVHA Tower 120 Tysons Road TAKONE\tTAS\t1274\t16602\t23749\n10003306\t-41.151642\t146.818495\tTelstra Ilfraville Exchange 154 Charles Street BEAUTY POINT\tTAS\t1498\t10067\t29141\n10003083\t-41.14542\t146.13614\tTelstra Site 84 Olivers Road West Ulverstone\tTAS\t755\t10089\t21617\n100011\t-41.144326\t146.078107\tOptus Site Off White Hills Road SULLOCKS HILL\tTAS\t263\t26048\t24616\n10008366\t-41.143661\t145.83886\tNBN Co Site Ridgley Highway Ridgley\tTAS\t1174\t14868\t25910\n10010175\t-41.140659\t145.726708\tVHA Monopole 631 East Yolla Road YOLLA\tTAS\t665\t21062\t21503\n10004826\t-41.12539\t145.71775\tTelstra Exchange 1574 Murchison Highway YOLLA\tTAS\t515\t27416\t19260\n10004910\t-41.106944\t146.822222\t7TFM 29-63 Macquarie Street George Town\tTAS\t706\t20032\t27856\n10009666\t-41.06028\t145.89239\tTelstra Site 46 Terrylands Street Montello Burnie City\tTAS\t1078\t10974\t27105\n10004520\t-41.053269\t145.904194\tTarget 64 Mount St BURNIE\tTAS\t283\t17596\t29724\n10000680\t-41.053073\t145.905943\tBroadcast Site Council Chambers 80 Wilson Street BURNIE Wilson Street BURNIE\tTAS\t894\t23112\t27718\n10003309\t-41.05208\t145.90474\tBurnie Central Rooftop 46-48 Wilson Street BURNIE\tTAS\t868\t15157\t24243\n10002127\t-41.051685\t145.903308\tTasmanet Rooftop Site 34A Alexander Street BURNIE\tTAS\t1018\t27225\t24350\n10000507\t-41.050503\t145.886486\tTasmanet Rooftop Site Marist Middle Campus 32A Futuna Ave PARK GROVE\tTAS\t327\t29817\t28007\n10010628\t-41.04365\t145.84335\tNorth End of Golf Course 284 Scarfe Street Camdale\tTAS\t398\t22134\t18217\n10005918\t-41.041268\t145.831884\tTelstra Street Cell 35 Wragg Street Somerset Waratah-Wynyard\tTAS\t160\t21490\t26027\n10009462\t-41.033154\t145.696377\tWynyard South DEEP CREEK RD Wynyard\tTAS\t522\t16059\t24972\n10000872\t-41.02976\t146.98293\tMobile Network Site 720 Beechford Road Stony Head\tTAS\t1333\t14848\t28995\n10005572\t-41.014886\t147.145092\tTelstra Exchange Weymouth Road Weymouth\tTAS\t215\t15615\t22888\n10009149\t-41.006094\t147.386249\tDorset Council Depot Building Maxwell St BRIDPORT\tTAS\t543\t29842\t18873\n10003961\t-41.00195\t147.06887\t3 Henry Street Lulworth\tTAS\t848\t16144\t21876\n10002271\t-41.001197\t147.39437\tBridport Surflife Saving Club Goftons Beach Bridport\tTAS\t635\t11241\t21914\n10006132\t-40.88675\t145.46825\tTelstra Exchange Rocky Cape Post Office 19332 Bass Hwy Rocky Cape Circular Head\tTAS\t273\t27074\t28358\n10002261\t-40.843342\t145.131082\tReservoir 31-33 Massey St SMITHTON\tTAS\t1103\t17856\t21973\n10008738\t-40.047192\t144.0599\tCommunity Radio Mast Water Tower 2 Blackwood St GRASSY\tTAS\t188\t19103\t21373\n10008041\t-38.83091\t143.51715\tCape Otway CMTS 20 Manna Gum Drive Cape Otway\tVIC\t1250\t19913\t19942\n10005166\t-38.80634\t146.04163\tWaratah Bay CMTS Waratah Ave Waratah Bay\tVIC\t1255\t28068\t21353\n10008377\t-38.74757\t143.63444\tNBN Co Site 300 Montrose Ave Apollo Bay\tVIC\t268\t28381\t27588\n10000512\t-38.717514\t143.715747\tNBN Co 90 Old Coach Road Skenes Creek\tVIC\t1026\t26168\t21492\n10002088\t-38.692753\t146.457496\tPort Welshpool 35 Smith Street Port Welshpool\tVIC\t434\t28203\t26975\n10007661\t-38.684474\t143.157651\tDGPS Base Site Great Ocean Road 0.8 km NE of Princetown\tVIC\t446\t16691\t23555\n10006256\t-38.673252\t143.407264\tLeavers Hill Colac-Leavers Hill Road Leavers Hill\tVIC\t110\t27207\t24340\n10008284\t-38.671154\t143.857305\tKennett River CMTS 15 Grey River Rd Kennett River\tVIC\t336\t12454\t22730\n10010868\t-38.66807\t146.328307\t67 Toora Jetty Road TOORA\tVIC\t1131\t16835\t22202\n10004383\t-38.652847\t146.198916\tSGW HQ Foster 14-18 Pioneer Street Foster\tVIC\t774\t13948\t25490\n10004771\t-38.64903\t145.68631\tRACV Resort 70 Cape Paterson-Inverloch Road Inverloch\tVIC\t263\t26876\t27799\n10004485\t-38.63987\t143.88482\tWye River Birds Road Road WYE RIVER\tVIC\t1207\t27224\t22024\n10000445\t-38.639686\t143.885053\tEAS Site Kennett River Jeep Track Wye River\tVIC\t601\t12351\t25123\n10009103\t-38.63673\t145.70322\tInverloch West 190Toorak Road Inverloch\tVIC\t1478\t12045\t24003\n10010437\t-38.63388\t145.70093\tInverloch 190 TOORAK ROAD INVERLOCH\tVIC\t1451\t20306\t28727\n10005331\t-38.62961\t143.111938\t12Apostles 396 Booringa Road Prince Town\tVIC\t1231\t21405\t28442\n10008616\t-38.626059\t145.738823\tInverloch East 46 Inverloch-Bay Rd Inverloch\tVIC\t1339\t27183\t25779\n10007883\t-38.619366\t143.004621\tSite 49 McRea St PORT CAMPBELL\tVIC\t880\t21643\t22660\n10007052\t-38.607661\t145.59023\tWonthaggi Court 75 Watt Street Wonthaggi\tVIC\t1352\t12746\t20441\n10001434\t-38.604273\t145.592667\tAldi Wonthaggi Cnr Murray and McKenzie Streets WONTHAGGI\tVIC\t1490\t20906\t21155\n10004504\t-38.60393\t145.585431\tTarget Plaza 2 Biggs Dr WONTHAGGI\tVIC\t433\t24028\t19849\n10005305\t-38.558641\t145.878425\tLeongatha South 129 Toshs Road Leongatha South\tVIC\t1364\t23348\t26442\n10007231\t-38.522006\t143.973221\tLorne North Holiday Road Lorne\tVIC\t1386\t26157\t19144\n10002719\t-38.52066\t145.90277\tHolcim Quarry Whitelaws Track Leongatha South\tVIC\t1113\t13719\t29197\n10007252\t-38.52065\t143.52809\tTelstra Site 30 Greens Road Gellibrand Colac Otway\tVIC\t296\t28506\t24834\n10006301\t-38.51762\t146.17542\tTelstra Site 55 Treases Outlet Rd Dumbalk North\tVIC\t513\t26228\t19397\n10008263\t-38.515952\t145.666104\tLance Creek Relay Willmott Rd Lance Creek\tVIC\t205\t17032\t23008\n10008262\t-38.509878\t145.679947\tMain Building Lance Creek Reservoir - Kongwak Road Lance Creek\tVIC\t362\t17513\t23666\n10009169\t-38.50562\t145.148655\tVentnor Rd VENTNOR\tVIC\t341\t11574\t28763\n10005382\t-38.50305\t145.089303\tEntry to the Port of Hastings 2.5 km NW of Round Island Western Port Bay\tVIC\t1252\t23769\t20630\n10003563\t-38.494264\t145.859183\tWoorayl Airservices Leongatha Aerodrome 105 Aerodrome Road LEONGATHA 3953\tVIC\t951\t22993\t27844\n10006019\t-38.49409\t143.58147\tTelstra Site 200 Bull Hill Rd Kawarren\tVIC\t151\t15217\t20054\n10002617\t-38.488392\t145.272325\tNewhaven College 1770 Phillip Island Rd Rhyll\tVIC\t867\t12614\t23307\n10006403\t-38.485035\t145.258723\tBroadcast Site Smiths Beach Rd COWES\tVIC\t122\t16393\t19302\n10007884\t-38.482887\t142.972207\tSite 61 Bailey St TIMBOON\tVIC\t1312\t20307\t28197\n10001455\t-38.478651\t145.944805\tAldi Leongatha 10 Bruce Street LEONGATHA\tVIC\t1454\t20175\t19074\n10010286\t-38.478534\t145.960883\tLeongatha Secondary College Nerrene Road LEONGATHA\tVIC\t1102\t24499\t21708\n10004538\t-38.477488\t145.943978\tTarget 52 McCartin St LEONGATHA\tVIC\t116\t24840\t18241\n10008798\t-38.477431\t146.232714\tMirboo CMTS 275 Clear Creek Rd Mirboo\tVIC\t760\t17462\t21156\n10006789\t-38.47688\t143.759404\tNBN Co Site 30 McNamas Road BARWON DOWNS\tVIC\t268\t18636\t29317\n10006397\t-38.475784\t145.944997\tBroadcast Site 15 Smith St LEONGATHA\tVIC\t726\t10055\t20662\n10001718\t-38.47473\t143.75674\tNBN Co Site 15 Old Mill Road Barwon Downs\tVIC\t348\t18415\t23236\n10008376\t-38.47293\t146.63509\tTelstra Site 523 Bulga Park Road Macks Creek\tVIC\t1374\t24588\t24325\n10005530\t-38.470524\t145.947543\t52 Roughead Street Leongatha\tVIC\t1407\t29467\t26320\n10008311\t-38.468211\t145.014778\tVHA Guyed Mast 5 King Street FLINDERS\tVIC\t602\t14794\t27874\n10000813\t-38.466499\t144.903655\tNBN Co 275 Cape Schanck Road Cape Schanck\tVIC\t678\t19392\t26188\n10007179\t-38.46171\t146.03958\tBoorool 260 Timmins and Lester Road Boorool\tVIC\t273\t21406\t22473\n10010629\t-38.46169\t144.8935\tTelstra IBC 21 Trent Jones Drive Cape Schanck\tVIC\t1070\t25172\t19401\n10007472\t-38.459293\t144.909328\tTelstra site (via Long Point Road) 1255 Boneo Road Cape Schanck\tVIC\t603\t19575\t24478\n10001467\t-38.450485\t145.238506\tAldi Cowes 68 - 80 Thompson Avenue COWES\tVIC\t1122\t20252\t18198\n10007044\t-38.434552\t145.824609\tKorumburra Court Bridge Street Korumburra\tVIC\t771\t28238\t21674\n10000811\t-38.43115\t144.97055\tTelstra Site 11A Baldrys Road Flinders\tVIC\t1388\t19100\t22875\n10006791\t-38.427494\t144.113824\tST965 Water Reclamation Plant 245 Distillery Creek Road Aireys Inlet\tVIC\t1499\t25074\t23356\n10005644\t-38.42492\t145.56438\tNBN Co Site 475 Grantville-Glen Alvie Road Grantville\tVIC\t474\t20218\t22412\n10006814\t-38.41741\t146.72511\t205 Carrajung Lower Rd Carrajung Lower\tVIC\t129\t18894\t22810\n10001717\t-38.410058\t143.890885\tNBN Co Site 85 Old Lorne Road Deans Marsh\tVIC\t120\t15934\t29510\n10004317\t-38.40936\t144.83191\tSt Andrews Beach 36 Foam Rd Fingal\tVIC\t1279\t22771\t28619\n10007522\t-38.40643\t145.0742\t3649 Frankston Flinders Rd MERRICKS\tVIC\t766\t20695\t18957\n10010753\t-38.406218\t146.154167\tMirboo North Central 880 BERRYS CREEK ROAD Mirboo North\tVIC\t307\t21511\t27058\n10005309\t-38.40382\t141.543882\tPortland West CMTS off Cape Nelson Lighthouse Rd Portland West\tVIC\t699\t25561\t22253\n10000198\t-38.40334\t144.86427\tNBNCo 433 Truemans Road Boneo\tVIC\t1140\t29057\t28303\n10005061\t-38.39701\t142.47274\tWarnambool Breakwater 2 Pertrobe Road WARRNAMBOOL\tVIC\t1062\t11972\t28193\n10006793\t-38.395917\t146.562374\tTelstra RT site (MVVF) / Vic SMR, RMR site Off Traralgon-Balook Rd Mount Tassie\tVIC\t671\t29004\t29879\n10007822\t-38.394373\t145.875059\tTelstra Site 445 Fairbank Road Arawata South Gippsland\tVIC\t802\t18051\t28413\n10000185\t-38.390265\t145.088217\tNBN Co Site 3450 Frankston - Flinders Road MERRICKS\tVIC\t434\t27456\t27860\n10000197\t-38.38987\t145.01965\tNBNCo 83 Shoreham Road Red Hill South\tVIC\t1343\t19931\t18833\n10006705\t-38.38596\t142.5323\tThe Good Guys Warrnambool 70 Mahoneys Rd WARRNAMBOOL\tVIC\t1457\t27082\t18282\n10010980\t-38.385907\t144.926944\tTelstra Site 26 Duells Rd Rosebud\tVIC\t1464\t15400\t23238\n10000139\t-38.382962\t142.481536\tWarrnambool Hotel Cnr Koroit and Kepler Streets Warrnambool\tVIC\t392\t17393\t24499\n10008335\t-38.38284\t144.92505\tTelstra Street Cell Outside 36 Bellbangra Avenue Rosebud\tVIC\t1273\t16638\t21086\n10004321\t-38.382763\t142.482394\tTarget 154 Koroit St WARRNAMBOOL\tVIC\t1005\t21793\t26000\n10010728\t-38.38111\t142.483927\tSilvan Accountants 132A Lava Street Warrnambool\tVIC\t1451\t29540\t26151\n10009269\t-38.380698\t141.622508\tPoint Danger 606Maserra Packet Road Portland\tVIC\t1322\t11972\t27834\n10007061\t-38.380692\t142.478252\tWarrnambool Court 218 Koroit Street Warrnambool\tVIC\t731\t29421\t23702\n10005464\t-38.380244\t145.026159\tTelstra Site 169 Shoreham Rd Red Hill South\tVIC\t697\t27702\t24447\n10001699\t-38.38017\t142.22221\tOptus 30m Concrete Monopole 121 Hamilton-Port Fairy Road Port Fairy\tVIC\t912\t17826\t29897\n10001036\t-38.379958\t142.478913\tAldi Warrnambool 251 - 257 Lava Street Warrnambool\tVIC\t1457\t16237\t24174\n10010371\t-38.378805\t145.177512\t93 South Beach Rd HMAS Cerberus\tVIC\t1147\t19147\t19395\n10004075\t-38.378219\t142.461587\tWCC Depot Monopole Scott St WARRNAMBOOL\tVIC\t732\t26477\t28147\n10001888\t-38.37643\t144.214141\tGreat Ocean Road Chocolaterie and Ice Creamery 1200 Great Ocean Road Bellbrae\tVIC\t577\t26784\t29707\n10005394\t-38.37498\t142.460966\t33 McMeekin Road Warrnambool\tVIC\t526\t28963\t28094\n10007766\t-38.37135\t145.97798\tTelstra Site 25 Brownhill Road Mount Eccles South Gippsland\tVIC\t663\t26121\t20464\n10007543\t-38.37026\t141.38371\tTelstra site 1.2 km NW of corner Blowholes Rd and Nicholson Rd Cape Bridgewater\tVIC\t118\t25899\t23667\n10008937\t-38.368742\t144.2138\tEumeralla Scout Camp 1415 Great Ocean Rd ANGLESEA\tVIC\t941\t28422\t24264\n10003967\t-38.367989\t144.082959\tOptus Repeater 445 Gum Flats Road WENSLEYDALE\tVIC\t1143\t21736\t23139\n10004510\t-38.361638\t144.890358\tTarget Plaza cnr Boneo Rd and McCombe St ROSEBUD\tVIC\t1133\t14597\t28723\n10001437\t-38.359561\t144.893634\tAldi Rosebud 1313 - 1335 Point Nepean Road ROSEBUD\tVIC\t1357\t11305\t23884\n10003128\t-38.358581\t144.772133\tScotts\u0027 Shed 2900 Point Nepean Road Blairgowrie\tVIC\t975\t22498\t24533\n10011017\t-38.35537\t144.76403\tTelstra Site Timber Pole Opposite 2987 Point Nepean Road Blairgowrie\tVIC\t1034\t24585\t28515\n10007173\t-38.35502\t142.45304\tWarranambool North 180 HARRINGTON RD DENNINGTON\tVIC\t729\t26607\t21735\n10008773\t-38.354033\t144.950608\tThe Eagle 795 Arthurs Seat Road Arthurs Seat\tVIC\t239\t10879\t27214\n10007060\t-38.351876\t141.608023\tPortland Court 67 Cliff Street Portland\tVIC\t1344\t23089\t21447\n10010143\t-38.350294\t143.589117\tBluewater Leisure Centre 118 - 134 Hearn Street Colac\tVIC\t785\t24212\t29918\n10001080\t-38.347105\t141.602019\tAldi Portland 29 Henty Street Portland\tVIC\t370\t22656\t29114\n10004549\t-38.345007\t141.602182\tTarget 1 Frederick Lane PORTLAND\tVIC\t1118\t18799\t19192\n10001630\t-38.343622\t145.917928\t25 McIntoshs Road North Strzlecki\tVIC\t1201\t14355\t24010\n10001053\t-38.341632\t143.590224\tAldi Colac 62 - 70 Hesse St Colac\tVIC\t412\t14369\t20944\n10001672\t-38.34056\t144.3115\t1 Great Ocean Rd JAN JUC\tVIC\t641\t14829\t23528\n10002404\t-38.339471\t143.585631\tTarget 147 Murray St COLAC\tVIC\t1081\t14007\t29069\n10006398\t-38.339258\t143.586785\tBroadcast Site 119 Murray St COLAC\tVIC\t1316\t20040\t18071\n10002314\t-38.339211\t143.606186\t18 Forest Street COLAC\tVIC\t1128\t17868\t20591\n100024\t-38.338656\t144.290453\tBarwon Water Water Great Ocean Road JAN JUC\tVIC\t1131\t16078\t21914\n10007070\t-38.338154\t144.956452\tDromana Court Codrington Street Dromana\tVIC\t694\t12091\t18538\n10007025\t-38.337838\t143.592698\tColac Court Queen Street Colac\tVIC\t158\t17435\t20942\n10006765\t-38.335553\t141.603651\tAmbulance Station 1 New Street Portland\tVIC\t705\t11713\t25488\n10000188\t-38.33551\t145.11954\tNBNCo 234 Myers Road Balnarring\tVIC\t257\t29505\t25477\n10008477\t-38.33549\t145.07614\tMerricks North 29 TUBBARUBBA RD MERRICKS NORTH\tVIC\t982\t23624\t18118\n10000812\t-38.33136\t145.00414\tNBN Co 163 Napean Highway Dromana\tVIC\t1307\t21737\t19067\n10000852\t-38.32854\t145.90193\tTelstra Exchange 1800 Korumburra-Warragul Road Strzelecki\tVIC\t645\t16403\t25104\n10008589\t-38.327932\t143.609998\tRepeater 2 2 Clark St Colac\tVIC\t364\t15643\t20130\n10008588\t-38.327865\t143.609452\tRepeater 1 2 Clark St Colac\tVIC\t1012\t21932\t19081\n10003132\t-38.327063\t145.962836\tTrida CMTS Mottons Road Trida\tVIC\t388\t26327\t26225\n10009551\t-38.321538\t148.731862\tOcean Monarch Mobile Offshore Drilling Unit 56 km S of CAPE CONRAN\tVIC\t1443\t10818\t24638\n10002599\t-38.32076\t144.26881\tNBN Co Site 1435 Angelsea Road Bellbrae\tVIC\t305\t15788\t29094\n10010252\t-38.311748\t145.181073\t10 Pound Road HASTINGS\tVIC\t1107\t27572\t21693\n10008526\t-38.311449\t143.656196\tCnr Pyles Rd and Princes Hwy IRREWARRA\tVIC\t789\t28076\t24347\n10005646\t-38.309216\t146.543515\tTelstra Exchange 36 Redhill Road TRARALGON\tVIC\t382\t27480\t25857\n10001453\t-38.308825\t145.188954\tAldi Hastings 9 Queen Street HASTINGS\tVIC\t575\t15673\t26307\n10010253\t-38.308593\t145.179019\t185 High Street HASTINGS\tVIC\t206\t24873\t25199\n10000379\t-38.305111\t145.186112\tVicTrack Radio Hut 45m N of Hastings Railway Station Hastings\tVIC\t1498\t23506\t20393\n10008478\t-38.30404\t145.12512\tTuerong 899 Stumpy Gully Road TUERONG\tVIC\t648\t27271\t19915\n10005823\t-38.30196\t141.55983\tPortland North 34COCKATOO VALLEY ROAD Portland North\tVIC\t317\t16718\t24535\n10005468\t-38.29804\t144.99223\tTelstra Exchange 59 Bradford Road Mount Martha\tVIC\t332\t15356\t19860\n10003020\t-38.29495\t146.70174\t35m Monopole Telstra Exchange 49 Main Road Gormandale\tVIC\t221\t11378\t22128\n10007875\t-38.291797\t142.368295\tSite 95 Commercial Rd KOROIT\tVIC\t1447\t10519\t20002\n10008473\t-38.27984\t144.32821\tMt Duneed North 1133 Surf Coast Highway MOUNT DUNEED\tVIC\t1328\t25846\t24773\n10000189\t-38.27529\t145.13643\tNBN Co 1084 Stumpy Gully Road MOOROODUC\tVIC\t1464\t13745\t20812\n10007341\t-38.27359\t146.386712\tMillion Gallon Camera Pole Hazelwood Coal Mine Morwell\tVIC\t1175\t16155\t19979\n10002355\t-38.27079\t144.40363\tNBN Co Site 192-220 Bluestone School Rd Connewarre\tVIC\t435\t10271\t22754\n10004316\t-38.269562\t143.891361\t3820 Princes Highway Winchelsea\tVIC\t282\t17490\t24270\n10004639\t-38.266443\t144.522732\tTarget 89 Presidents Ave OCEAN GROVE\tVIC\t1157\t24078\t29377\n10005385\t-38.263114\t143.776657\tMt Gellibrand Windfarm Mooleric Rd OMBERSLEY\tVIC\t327\t18257\t22431\n10008940\t-38.26304\t145.998709\tAmateur Site 4651 Mcdonalds Track SEAVIEW\tVIC\t810\t27359\t19406\n10000587\t-38.259399\t144.547567\t145 Shell Road OCEAN GROVE\tVIC\t1341\t23939\t27409\n10007024\t-38.257328\t143.798836\tGellibrand Wind Farm Lot 365 Mooleric Road OMBERSLEY\tVIC\t571\t10849\t18629\n10000186\t-38.256158\t145.10479\tNBNCo 700 Derril Road Moorooduc\tVIC\t1084\t28102\t27047\n10006768\t-38.254384\t144.538046\tAmbulance Station 9-11 Adco Grove Ocean Grove\tVIC\t484\t19683\t28890\n10006888\t-38.25299\t141.906707\tTyrendarra Heath Condon Prince HW Tyrendarra East\tVIC\t854\t13289\t18782\n100001\t-38.248652\t144.605442\tTelstra/Vodafone Site Highfields Queenscliff-Portarlington Rd MARCUS HILL\tVIC\t808\t12066\t23338\n10007292\t-38.24702\t146.41418\tMorwell South Ridge Road MORWELL\tVIC\t605\t10681\t28910\n10007613\t-38.244477\t146.411338\t3 Electra Avenue Morwell\tVIC\t1181\t22878\t19374\n10007887\t-38.242946\t143.991483\tSite 1 Main St WINCHELSEA\tVIC\t1339\t22645\t29207\n10004165\t-38.24103\t143.99782\tNBN Co Site 70 Hopkins St Winchelsea\tVIC\t1400\t19261\t28788\n10010999\t-38.239117\t145.189418\tTelstra Site 1280A Frankston - Flinders Rd Somerville\tVIC\t467\t26408\t29236\n10006302\t-38.238979\t146.402589\t256 Commercial Road Morwell\tVIC\t1431\t17020\t23853\n10001451\t-38.237923\t146.404038\tAldi Morwell Cnr Princes Hwy and McDonalds St MORWELL\tVIC\t970\t12074\t29572\n10002702\t-38.237613\t146.43021\tTarget Mid Valley Princes Hwy MORWELL\tVIC\t265\t22670\t20190\n10007047\t-38.236788\t146.393466\tLatrobe Valley Court 134 Commercial Road Morwell\tVIC\t313\t20757\t25073\n10000193\t-38.23672\t145.23306\tNBNCo 44 Bungower Road Somerville\tVIC\t392\t19976\t20263\n10005258\t-38.233033\t145.909938\tLarge Shed 89 Hunters Road Warragul South 3821\tVIC\t137\t14530\t26590\n10007880\t-38.232898\t144.300371\tSite 325 Ghazeepore Rd MT DUNEED\tVIC\t184\t26853\t23436\n10004153\t-38.232859\t143.146165\tShire Council Office 181 Manafold St Camperdown\tVIC\t452\t16962\t24950\n10008467\t-38.23178\t145.12965\tM7912 Moorooduc Eas 1589 Stumpy Gully Road MOOROODUC\tVIC\t522\t12828\t21600\n10007493\t-38.231258\t144.339978\tBuilding D 2-38 Burvilles Road Geelong\tVIC\t409\t11922\t28979\n10000024\t-38.229606\t146.414233\t85 Vincent Road Morwell\tVIC\t382\t26102\t23873\n10002040\t-38.229131\t146.450744\tEnergy Centre West / Boiler Room Cnr National Road and Princes Highway Morwell\tVIC\t663\t19010\t27346\n10003286\t-38.227274\t145.130822\tNBN Co Site 1625 Stumply Gully Road Moorooduc\tVIC\t584\t28697\t27651\n10006158\t-38.226487\t145.05735\t40 Robertson Drive Mornington\tVIC\t873\t13089\t22139\n10004346\t-38.224956\t145.169639\tTarget 49 Eramosa Rd SOMERVILLE\tVIC\t1062\t25595\t23480\n10001445\t-38.224862\t145.177563\tAldi Somerville 1089 - 1097 Frankston - Flinders Road SOMERVILLE\tVIC\t1085\t13773\t19587\n10002198\t-38.22445\t144.54944\tNBN Co Site 1621-1639 Bellarine Hwy Wallington\tVIC\t1496\t19088\t23024\n10009118\t-38.224039\t143.530321\tAce Radio Site Warrion Hill off Warrion Hill Rd WARRION\tVIC\t967\t17020\t22502\n10008879\t-38.223906\t143.529952\tRural Ambulance Site Warrion Hill off Warrion Hill Rd WARRION\tVIC\t818\t25706\t21267\n10001420\t-38.223078\t145.040379\tAldi Mornington 241 Main Street MORNINGTON\tVIC\t719\t17395\t22967\n10004725\t-38.221786\t143.176921\tChocolyn South 284 Wire Lane CHOCOLYN\tVIC\t640\t21331\t26608\n10007844\t-38.220656\t142.539738\tDGPS Site Grassmere-Hexham Road Grassmere\tVIC\t593\t19054\t25854\n10001477\t-38.219927\t145.062943\tAldi Mornington Peninsular 1128 Nepean Highway MORNINGTON\tVIC\t1186\t28595\t23503\n10006717\t-38.21988\t145.0607\tThe Good Guys Mornington 1132 Nepean Hwy MORNINGTON\tVIC\t740\t29409\t19437\n10007765\t-38.216774\t145.037238\tTower Crane 16-20 Main Street Mornington\tVIC\t1094\t27154\t18455\n10007466\t-38.21507\t146.1345\tPump Station Sunny Creek Road TRAFALGAR\tVIC\t403\t29921\t25058\n10002868\t-38.214976\t145.420399\tAirport 3260 South Gippsland Hwy TOORADIN\tVIC\t634\t26679\t29060\n10002869\t-38.214444\t145.423435\tA W I S 3260 South Gippsland Hwy TOORADIN\tVIC\t813\t23012\t23739\n10005987\t-38.212736\t146.525647\tGW Tower Hyde Park Road Traralgon\tVIC\t299\t14626\t26124\n10009410\t-38.205752\t146.16435\tVHA Monopole Between Hardy Dr and Davey Dr Princess Freeway TRAFALGAR EAST\tVIC\t159\t12099\t22122\n10000192\t-38.20571\t145.18419\tNBNCo 127 Grant Road BAXTER\tVIC\t667\t26939\t25889\n10004943\t-38.205686\t146.538378\t28 Janette Street Traralgon\tVIC\t257\t20971\t20851\n10009574\t-38.204621\t146.318507\tMonopole VIC track Property, Hagens Track 440m west of Haunted Hills Road NEW BOROUGH\tVIC\t1256\t10018\t25949\n10009117\t-38.202827\t146.063478\tVHA Monopole Opposite No 82 Waterloo Road YARRAGON\tVIC\t1394\t10850\t22777\n10000456\t-38.20279\t144.3107\tOfficeworks Waurn Ponds 213 - 217 Colac Rd WAURN PONDS\tVIC\t1359\t11450\t27275\n10008599\t-38.202534\t146.308046\tLandfill Haunted Hills Rd MOE SOUTH\tVIC\t1058\t19166\t20506\n10004760\t-38.20217\t145.30027\tCannons Creek 1370 Baxter - Tooradin Road CANNON CREEK\tVIC\t1370\t24016\t27086\n10007437\t-38.20157\t146.313373\t3GCR Tower off Haunted Hills Rd HERNES OAK\tVIC\t1296\t16213\t22869\n10008133\t-38.201104\t144.493993\t1050 Bellarine Hwy WALLINGTON\tVIC\t1482\t14537\t26669\n10002494\t-38.200297\t144.298664\t75 Pigdons Road WAURN PONDS\tVIC\t1055\t22622\t20392\n10002405\t-38.199998\t144.318931\tTarget Princes Hwy WAURN PONDS\tVIC\t1423\t16109\t28699\n10008496\t-38.19895\t144.39078\tMoolap South 30 Woods Road ST ALBANS PARK\tVIC\t1064\t27550\t26170\n10004546\t-38.198494\t146.533525\tTarget cnr Princes Hwy and Deakin St TRARALGON\tVIC\t743\t25040\t28526\n10008229\t-38.198389\t147.300614\tDutson Tower 2054 Longford-Loch Sport Road Dutson Downs\tVIC\t791\t22608\t24117\n10001024\t-38.196181\t144.318746\tAldi Highton 245 - 253 South Valley Road Highton\tVIC\t312\t18690\t22970\n10007429\t-38.196042\t146.563028\tTraralgon Greyhound Racing Track Glenview Park McNairn Road TRARALGON\tVIC\t1262\t12366\t27675\n10000025\t-38.195525\t146.561853\tGlenview Park McNairn Road Traralgon\tVIC\t447\t22277\t23354\n10001093\t-38.19455\t144.47803\tNBN Co Site 21-39 Mollers Lane Leopold\tVIC\t439\t29168\t29232\n10006722\t-38.19361\t146.5479\tThe Good Guys Traralgon 77 Argyle St TRARALGON\tVIC\t990\t10702\t26569\n10001084\t-38.193122\t144.343556\tAldi Grovedale 142 - 144 Surf Coast Highway Grovedale\tVIC\t295\t19370\t24875\n10001441\t-38.192518\t146.55551\tAldi Traralgon 141 - 143 Argyle Street TRARALGON\tVIC\t1129\t10448\t22447\n10007421\t-38.188665\t144.557745\tSt Ignatius College Geelong 27 Peninsula Drive Drysdale\tVIC\t1384\t24870\t24622\n10000574\t-38.18848\t145.39261\tNBN Co 310 Tooradin Station Road Dalmore\tVIC\t928\t10241\t25130\n10007578\t-38.186712\t144.374612\tSewerage Reserve 42c Leather Street BREAKWATER\tVIC\t1458\t26925\t23811\n10002284\t-38.186565\t144.351438\tSP024 18 Crows Rd Belmont\tVIC\t1305\t24146\t24732\n10007465\t-38.18589\t146.0092\tDarnum Water Treatment Plant Pedder Street DARNUM\tVIC\t494\t10617\t27750\n10003435\t-38.18493\t144.45447\tAldi Leopold 621-659 Bellarine Highway Leopold\tVIC\t997\t16880\t26801\n10002067\t-38.18487\t144.4548\t641-659 Bellarine Highway LEOPOLD\tVIC\t508\t11283\t26530\n10005223\t-38.184167\t146.444167\tWoodyard Australian Paper Maryvale, Maryvale Road Morwell\tVIC\t1257\t14118\t20908\n10007563\t-38.182364\t144.317584\t3 Berry Court Highton\tVIC\t778\t28151\t22219\n10003377\t-38.181272\t146.615652\t1590 Princess Highway FLYNN\tVIC\t964\t23314\t20078\n10010272\t-38.18116\t146.563\tTraralgon North 65-67 Eastern Road TRARALGON\tVIC\t1122\t23608\t22800\n10002565\t-38.17985\t144.3518\tAnaconda Belmont 25 - 27 Settlement Road BELMONT\tVIC\t332\t23746\t19447\n10010956\t-38.178633\t146.317473\tGreenkeepers Hut Yallourn Golf Club Golf Links Road Newborough\tVIC\t382\t25406\t21383\n10000194\t-38.17702\t145.2548\tNBNCo 137-145 Smiths Lane Pearcedale\tVIC\t289\t17799\t22031\n10000107\t-38.17653\t146.26095\tMoe Service Centre and Library 19 George St Moe\tVIC\t400\t29709\t26655\n10003299\t-38.17624\t144.47691\tLeopold North 841 - 849 Portarlington road Leopold north\tVIC\t1480\t15288\t26427\n10005379\t-38.17558\t144.47113\tLeopold Central 2-130 Alexander Avenue LEOPOLD\tVIC\t1193\t24354\t18147\n10001456\t-38.175262\t146.258015\tAldi Moe 7 Saviges Road MOE\tVIC\t787\t28582\t27760\n10007050\t-38.175111\t146.2621\tVCAT 69 Albert Street Moe\tVIC\t336\t14309\t18370\n10006572\t-38.175084\t146.262148\tMoe Town Hall 69 Albert Street Moe\tVIC\t475\t20182\t24465\n10009731\t-38.17432\t146.29799\tMoe East Southwell Ave NEWBOROUGH\tVIC\t971\t13740\t24734\n10001033\t-38.174094\t144.344449\tAldi Belmont 149 - 151 High Street Belmont\tVIC\t1218\t16751\t20198\n10001086\t-38.173763\t144.571996\tAldi Drysdale 12 - 22 Murradoc Rd Drysdale\tVIC\t1040\t21518\t27972\n10010990\t-38.173752\t145.926644\tHelipad Comms Mast West Gippsland Hospital 41 Landsborough Street Warragal\tVIC\t686\t25007\t22743\n10007458\t-38.172604\t144.400452\tTelstra site Moolap Exchange, 131 Bellarine Highway Newcomb\tVIC\t1038\t18792\t26195\n10000575\t-38.171132\t145.293918\tNBN Co 15 Meadow Road Devon Meadows\tVIC\t484\t26283\t22717\n10000496\t-38.17005\t145.82907\tFire Station 509 Main South Road DROUIN SOUTH\tVIC\t1152\t22090\t21907\n10001058\t-38.169536\t144.392101\tAldi Newcomb Newcomb Shopping Centre Bellarine Hwy Newcomb\tVIC\t887\t10596\t29861\n10007164\t-38.16871\t144.65596\tM2104 St Leonards West 391 to 469 Old St Leonards Road SAINT LEONARDS\tVIC\t1007\t23853\t20308\n10008711\t-38.16718\t145.926475\t23 Burke Street Warragul\tVIC\t555\t18926\t29143\n10002777\t-38.166926\t145.927558\t21 Burke St WARRAGUL\tVIC\t272\t20634\t20929\n10007542\t-38.166644\t144.562537\tSport Pavilion Community Drive Drysdale\tVIC\t1011\t15911\t18478\n10009866\t-38.166353\t144.421768\t325 Portarlington Road MOOLAP\tVIC\t1124\t28781\t18903\n10002669\t-38.16486\t144.19238\tNBN Co Site 1350 Barrabool Road Gnarwarre\tVIC\t1261\t16698\t22903\n10010129\t-38.16417\t145.943\tWarragul Central 11 Olympic Street WARRAGUL\tVIC\t920\t27072\t18147\n10006402\t-38.164093\t145.933888\tBroadcast Site 121 Queen St WARRAGUL\tVIC\t603\t24247\t26570\n10008297\t-38.163018\t145.933729\tCFA Site 4/24 Mason Street Warragul\tVIC\t662\t16189\t18192\n10002285\t-38.162988\t144.347213\tSP030 31 Fernleigh St Newtown\tVIC\t118\t29699\t22648\n10001454\t-38.162645\t145.926914\tAldi Warragul 12 - 28 Queen Street WARRAGUL\tVIC\t200\t29997\t21219\n10006698\t-38.16198\t144.3528\tThe Good Guys Geelong 40 - 50 Fyans St SOUTH GEELONG\tVIC\t670\t14614\t26900\n10008644\t-38.161523\t145.929998\tOptus Repeater 41 Victoria Street WARRAGUL\tVIC\t758\t20178\t21006\n10004693\t-38.161079\t145.930812\tTarget cnr Victoria and Palmerston St WARRAGUL\tVIC\t1138\t22453\t20204\n10000196\t-38.16073\t145.26126\tNBNCo 28 Scott Road Cranbourne South\tVIC\t1404\t22364\t24312\n10004404\t-38.160598\t145.929293\t55 Victoria St WARRAGUL\tVIC\t876\t20886\t21149\n10003458\t-38.158304\t144.3553\tSimonds Stadium Moorabool Street SOUTH GEELONG\tVIC\t129\t25827\t19127\n10001869\t-38.15723\t145.30202\tNBN Co Site 46 Browns Road Devon Meadows\tVIC\t859\t19988\t21347\n10002506\t-38.15504\t145.941877\t188 Normanby St Warragul\tVIC\t877\t28276\t19236\n10011047\t-38.153618\t144.363163\tCFA Site G1 Apartments 148 Bellarine Street GEELONG\tVIC\t297\t17063\t18066\n10005004\t-38.151469\t145.163079\t14 Liardet Crescent KARINGAL\tVIC\t1100\t11849\t23418\n10002196\t-38.151401\t144.353977\tGeelong SDA Church 6-10 Little Myers Street GEELONG\tVIC\t1042\t18148\t26467\n10008998\t-38.150731\t145.166294\tVillage Cinemas 195 Karingal Dr KARINGAL\tVIC\t1180\t14630\t22340\n10004636\t-38.15014\t145.196955\tTarget 230 Cranbourne-Frankston Rd LANGWARRIN\tVIC\t590\t19015\t19960\n10002569\t-38.14978\t145.1384\tAnaconda Frankston 1 Gertrude St FRANKSTON\tVIC\t1344\t19843\t20004\n10001953\t-38.149617\t144.356037\t20 Little Ryrie Street Geelong\tVIC\t869\t23330\t26902\n10006714\t-38.14824\t145.1391\tThe Good Guys Frankston 115 Cranbourne Rd FRANKSTON\tVIC\t370\t12893\t26103\n10005767\t-38.14811\t144.3592\t86 Little Malop St GEELONG\tVIC\t938\t19901\t19398\n10008018\t-38.14792\t144.36577\tCFA Site Ritz Apartments 10 Bellerine Street Geelong\tVIC\t1357\t25975\t20202\n10008673\t-38.14715\t145.11877\tFrankston Waterfront High Street FRANKSTON\tVIC\t1061\t26664\t26457\n10007633\t-38.146537\t144.359488\tNational Disability Insurance Service 13-19 Malop Street Geelong\tVIC\t798\t15853\t24678\n10004567\t-38.14639\t145.92359\tWarragul North West LOT 1 Sutton Street WARRAGUL\tVIC\t504\t28408\t27425\n10006297\t-38.14542\t145.311588\tClyde South 1870South Gippsland HW Devon Meadows\tVIC\t150\t17476\t18220\n10007908\t-38.14525\t145.1206\tGrand Hotel 499 Nepean Hwy FRANKSTON\tVIC\t863\t24584\t19731\n10004996\t-38.145186\t145.122203\t38 Playne St Frankston\tVIC\t826\t29121\t24741\n10004998\t-38.145186\t145.122203\t38 Playne St Frankston\tVIC\t630\t19940\t18661\n10007026\t-38.144958\t144.356147\tGeelong Court Railway Terrace Geelong\tVIC\t998\t19825\t25475\n10003409\t-38.144937\t144.359739\tBusport Geelong 30-54 Brougham Street Geelong\tVIC\t1371\t18210\t25889\n10002207\t-38.14404\t145.24581\tSettlers Run-Botanic Ridge -V 30m Monopole 247 Pearcedale Road? CRANBOURNE SOUTH\tVIC\t1056\t26859\t21807\n10004300\t-38.14387\t144.3583\tDeakin University 19 Brougham St GEELONG\tVIC\t580\t19734\t28901\n10007185\t-38.142789\t144.356762\tMirramar Apartments 18-20 Cavendish Street Geelong\tVIC\t1257\t17636\t19251\n10000754\t-38.14274\t145.123371\tTrade Secret Frankston Balmoral Shopping Centre 10 Shannon Street FRANKSTON\tVIC\t525\t21506\t28383\n10007284\t-38.14272\t144.30312\tTelstra Site 69 Hamilton Highway Fyansford Greater Geelong\tVIC\t1263\t21093\t27270\n10008299\t-38.142644\t146.261646\tGreenham Meat Works 330 Moe-Walhalla Road Moe\tVIC\t947\t22493\t23906\n10000195\t-38.14076\t145.42484\tNBNCo Cardinia Road Cardinia\tVIC\t661\t12468\t25717\n10007128\t-38.140662\t144.355744\tThe Mercer Apartments 53 Mercer Street Geelong\tVIC\t495\t23931\t19718\n10001087\t-38.139962\t144.337735\tAldi Geelong West 117 - 127 Albert Street Geelong West\tVIC\t860\t18286\t26931\n10001474\t-38.139712\t145.126104\tAldi Frankston 28 Beach Street FRANKSTON\tVIC\t440\t10000\t25057\n10004844\t-38.139021\t146.266694\tTanjil River Pump Station 400 Moe Walhalla Rd MOE\tVIC\t496\t22178\t27586\n10007071\t-38.138765\t145.125747\tFrankston Court 15 Fletcher Road Frankston\tVIC\t557\t14445\t26960\n10006055\t-38.137061\t144.421774\t420-430 Point Henry Road Moolap\tVIC\t1292\t24813\t22412\n10007318\t-38.136768\t145.857522\t40 Princes Way Drouin\tVIC\t1404\t19313\t23845\n10008368\t-38.13676\t144.32711\tTelstra Site 93-95 Minerva Road Herne Hill Greater Geelong\tVIC\t1220\t24116\t23078\n10004822\t-38.135698\t144.691913\tIndented Heads 592-610, Batman Road INDENTED HEAD\tVIC\t220\t24273\t22266\n10002507\t-38.135237\t145.859273\t33 Young St Drouin\tVIC\t1052\t15389\t19223\n10001122\t-38.134456\t144.62434\t80 Greenhills Road Bellarine\tVIC\t702\t20847\t18201\n10007873\t-38.131973\t141.629709\tSite 22 Scott St HEYWOOD\tVIC\t302\t27002\t25780\n10006368\t-38.131104\t141.628663\tWater Tower 33 Hunter Street Heywood\tVIC\t737\t29200\t23435\n10006841\t-38.130716\t146.471288\tSCA Site Old Boola Rd TYERS\tVIC\t268\t27918\t18984\n10004024\t-38.125025\t145.38655\t55 McCormacks Road CLYDE NORTH\tVIC\t335\t22223\t24551\n10009475\t-38.11883\t144.336928\tMcKellar Centre 45-95 Ballarat Rd North Geelong\tVIC\t764\t20189\t25884\n10009363\t-38.116237\t144.356348\t24 Mackay St NORTH GEELONG\tVIC\t859\t14937\t22348\n10009014\t-38.114812\t144.6562\tFire Station 8 Fisher St PORTARLINGTON\tVIC\t814\t29985\t19283\n10006343\t-38.114027\t144.359224\tCnr Mackey \u0026 McLeod St North Geelong\tVIC\t762\t29910\t27438\n10007994\t-38.11274\t145.89971\tDrouin East 145 Lardners Track DROUIN EAST\tVIC\t657\t24709\t20144\n10010916\t-38.11244\t145.7706\t Long Warry 14 Mackey Street LONGWARRY\tVIC\t1038\t26473\t27665\n10001446\t-38.11145\t145.284233\tAldi Cranbourne Cnr Bakewell and Codrington Streets CRANBOURNE\tVIC\t369\t11120\t26441\n10007035\t-38.111268\t147.06508\tSale Court 79 Foster Street (Princes Highway) Sale\tVIC\t558\t25534\t27933\n10003207\t-38.11055\t145.20298\tBallarto Road 30m monopole 290 Hall Road SKYE\tVIC\t1172\t24022\t25621\n10008756\t-38.110306\t145.247888\t1000 Cranbourne-Frankston Rd CRANBOURNE\tVIC\t206\t20635\t26201\n10002172\t-38.110246\t144.326441\tKardinia International College 29-31 Kardinia Drive Bell Post Hill\tVIC\t1373\t23275\t26795\n10001433\t-38.110177\t145.161066\tAldi Carrum Downs 493 Frankston - Dandenong Road CARRUM DOWNS\tVIC\t329\t26844\t20560\n10009629\t-38.109805\t145.258461\t1005 Cranbourne-Frankston Rd CRANBOURNE\tVIC\t835\t26527\t20277\n10001887\t-38.109724\t144.327449\tKardinia International College 29-31 Kardinia Drive Bell Post Hill\tVIC\t1121\t24356\t28833\n10002278\t-38.10961\t144.3629\t32 Crowle Street NORTH GEELONG\tVIC\t1448\t10622\t18851\n10004352\t-38.108946\t145.282739\tTarget 125 High St CRANBOURNE\tVIC\t857\t26688\t24133\n10005486\t-38.108767\t147.08075\tSale Hospital 155 Guthridge Prd Sale\tVIC\t1164\t16710\t25832\n10004077\t-38.106585\t145.229449\t735 Dandenong-Hastings Road SKYE\tVIC\t1171\t23835\t28603\n10002693\t-38.106513\t147.063379\tTarget Gippsland 37-39 Cunningham St SALE\tVIC\t642\t28672\t27302\n10002032\t-38.104598\t147.122958\tSale RAAF Lot 2 Aerodrome Road Sale\tVIC\t322\t18153\t21929\n10001608\t-38.104394\t145.333667\t30 Hardys Rd CLYDE NORTH\tVIC\t397\t28799\t20513\n10006466\t-38.104366\t145.162723\tConcrete Plant 20 Frankston Gardens Dr CARRUM DOWNS\tVIC\t391\t29875\t21552\n10009002\t-38.103998\t145.16116\t36 Frankston Gardens Drive Carrum Downs\tVIC\t1477\t15188\t26712\n10001461\t-38.103948\t147.066239\tAldi Sale 396 - 420 Raymond Street SALE\tVIC\t558\t19177\t18482\n10000050\t-38.103396\t147.054383\tSale Station Pettit Drive SALE\tVIC\t1415\t17144\t22745\n10002668\t-38.103176\t144.047358\tNBN Co Site 10 Railway Street Inverleigh\tVIC\t692\t23452\t25253\n10009015\t-38.102598\t145.18692\tLibrary 203 Lyrebird Dr Carrum Downs\tVIC\t987\t27929\t21367\n10005055\t-38.10228\t147.09164\tSale North 344-350 Raglan Street SALE\tVIC\t871\t14541\t24851\n10009328\t-38.100827\t144.058284\tDGPS Site Intersection of Hamilton Hwy and Inverleigh-Wichelsea Rd Inverleigh\tVIC\t1238\t20572\t27951\n10007172\t-38.10059\t145.83482\tM1109 Doruin North McGlone Road DROUIN\tVIC\t948\t25216\t28672\n10001468\t-38.100178\t145.293285\tAldi Hunt Club Village 1S Linsell Boulrvard CRANBOURNE EAST\tVIC\t1416\t17385\t29644\n10000851\t-38.09943\t145.48022\tPakenhamBusPark LOT 16 Corporate Terrace PAKENHAM\tVIC\t1256\t16236\t21935\n10008157\t-38.099411\t144.362041\t45 N Shore Rd Norlane\tVIC\t282\t25447\t25009\n10000474\t-38.098938\t145.491527\t10 Livestock Way PAKENHAM\tVIC\t1133\t20422\t20094\n10002044\t-38.097968\t146.961873\tSale West Sale Airport, 110 Princes Hwy Fulham\tVIC\t1134\t27718\t20245\n10006475\t-38.097083\t145.494352\tConcrete Plant Lt 18 Drovers Pl PAKENHAM\tVIC\t1200\t12073\t28911\n10005817\t-38.09672\t144.3348\tAldi Bell Park 220 - 224 Anakie Rd BELL PARK\tVIC\t1433\t14213\t27958\n10002754\t-38.09659\t145.159\t81 Frankston Gardens Dr CARRUM DOWNS\tVIC\t910\t10218\t18460\n10006453\t-38.09568\t145.1611\t92 Frankston Garden Dr CURRUM DOWNS\tVIC\t315\t14579\t29021\n10008466\t-38.09486\t145.3251\tM8547 Cranbourne East Central 585 BERWICK-CRANBOURNE RD CLYDE NORTH\tVIC\t426\t12704\t24182\n10009635\t-38.094309\t147.060746\tLivestock Sales Yard Saleyard Road SALE\tVIC\t244\t18192\t29039\n10010101\t-38.093479\t145.609719\t420 Nar Nar Goon-Longwarry Road TYNONG\tVIC\t197\t28089\t20551\n10002059\t-38.09129\t145.60909\tPakenham Racecourse monopole 420 Nar Naar Goon-Longwarry Road 3814 Tynong\tVIC\t1241\t18831\t29658\n10000566\t-38.090911\t145.159542\t12 Capital Place CARRUM DOWNS\tVIC\t987\t12023\t19548\n10010531\t-38.089787\t145.668497\tGarfield NAR NAR Goon-Longwarry Rd GARFIELD\tVIC\t1190\t14894\t23034\n10006712\t-38.08849\t145.2807\tThe Good Guys Crandbourne 60 Pepperbush Circuit CRANBOURNE\tVIC\t1304\t29951\t19423\n10005511\t-38.08834\t145.5013\t99 Bald Hill Rd PAKENHAM\tVIC\t315\t16890\t26838\n10006468\t-38.08734\t145.311002\tConcrete Plant 1550 Thompsons Rd CRANBOURNE\tVIC\t256\t24977\t27003\n10001929\t-38.08605\t145.47122\t1 Livingstone Bvd Pakenham\tVIC\t1404\t10977\t23037\n10004359\t-38.08518\t145.50997\tPakenham Central East 42 Bate Close PAKENHAM PAKENHAM\tVIC\t1492\t16947\t20400\n10008130\t-38.08317\t145.4957\t70 - 80 Bald Hill Rd PAKENHAM\tVIC\t1216\t14133\t19522\n10004475\t-38.081501\t142.808439\tMoyne Shire Council Office Mortlake 1 Jamieson Avenue Mortlake\tVIC\t835\t27390\t19963\n10010001\t-38.08104\t142.80111\t2/40 Scott Street MORTLAKE\tVIC\t351\t13944\t28654\n10005587\t-38.080902\t145.244089\t4 Latchford St CRANBOURNE WEST\tVIC\t656\t22036\t18966\n10006720\t-38.07912\t145.4846\tThe Good Guys Pakenham 1 Cook Dr PAKENHAM\tVIC\t521\t18505\t22245\n10009604\t-38.078718\t145.488214\tLot AA, PS741830, Station Street Pakenham\tVIC\t1390\t24429\t27830\n10009605\t-38.078281\t145.488597\t30 Ascot Park Drive Pakenham\tVIC\t1029\t24904\t21464\n10004324\t-38.078267\t145.47623\tTarget 67-79 Main St PAKENHAM\tVIC\t967\t18669\t25305\n10010978\t-38.07763\t145.4841\tPakenham Central Marketplace 50-54 John St PAKENHAM\tVIC\t607\t14481\t21163\n10009098\t-38.077385\t145.543123\tDGPS Site Cnr Princes Fwy and Mt Ararat Road Pakenham\tVIC\t1294\t22397\t27070\n10001436\t-38.076632\t145.123567\tAldi Carrum 516 - 520 Station Road CARRUM\tVIC\t110\t12847\t19012\n10005098\t-38.075825\t145.475247\t11 McGregor Road Pakenham\tVIC\t182\t11118\t25600\n10003144\t-38.073934\t145.787531\tGPS Site 85 Labertouche Rd Labertouche 3816\tVIC\t682\t24412\t21874\n10005492\t-38.071312\t145.655449\t2705 Princes Highway Tynong\tVIC\t1352\t19739\t23130\n10003204\t-38.07102\t145.31548\tBerwick Springs Park 30m monopole 22I Ashmore Avenue NARRE WARREN SOUTH\tVIC\t1448\t12558\t24101\n10009871\t-38.070631\t145.338566\tSt Francis Xavier College 75 Ridgemont Drive Berwick\tVIC\t383\t17053\t25690\n10008483\t-38.06915\t145.16715\tEastern Treatment Plant 1M Rossiter Road CARRUM DOWNS\tVIC\t958\t15216\t23045\n10001476\t-38.068132\t145.30057\tAldi Casey Central 400 Narre Warren - Cranbourne Road NARRE WARREN SOUTH\tVIC\t1002\t28849\t29299\n10000160\t-38.06505\t144.31321\tNBNCo 200 Evans Road Lovely Banks\tVIC\t921\t13569\t18405\n10001057\t-38.064949\t144.380146\tAldi Corio 465 Princes Highway Corio\tVIC\t965\t28985\t18785\n10001459\t-38.064573\t145.454704\tAldi Pakenham 1 - 3 Portobello Road PAKENHAM\tVIC\t998\t29385\t29155\n10001411\t-38.062625\t145.33958\tAldi Eden Rise 1 O\u0027Shea Road BERWICK\tVIC\t296\t18753\t27323\n10000573\t-38.06208\t145.46155\tOfficerEast 50 Mary Street PAKENHAM\tVIC\t760\t18008\t27162\n10009872\t-38.061898\t145.43331\tSt Francis Xavier College 21 Majestic Drive Officer\tVIC\t380\t29540\t21652\n10005627\t-38.06143\t145.3398\tColes Eden Rise Villiage 95 O?Shea Rd BERWICK\tVIC\t1374\t14328\t27091\n10000540\t-38.059358\t144.368773\tME980Y McManus Rd Corio\tVIC\t1111\t18611\t29885\n10003358\t-38.057983\t145.220358\t1 Columbia Court DANDENONG SOUTH\tVIC\t225\t14365\t21609\n10009832\t-38.05558\t145.2281\t2 Portlink Dr DANDENONG SOUTH\tVIC\t1206\t28002\t28284\n10000491\t-38.05417\t144.35894\tCorioWest 340 Bacchus Marsh Rd CORIO\tVIC\t781\t22734\t23870\n10002500\t-38.05274\t140.69908\t15 Church Street Port Macdonnell\tSA\t306\t12991\t27673\n10009873\t-38.052484\t145.372973\tSt Francis Xavier College 4 Beaconsfield Avenue Beaconsfield\tVIC\t603\t28328\t25132\n10005170\t-38.05076\t145.3\tCasey Site 20 College Drive NARRE WARREN SOUTH\tVIC\t1199\t25896\t29666\n10008934\t-38.050391\t144.379032\t100 Heales Road Lara\tVIC\t1481\t22912\t20235\n10010879\t-38.049498\t145.451269\tVHA Guyed Mast 130 Thewlis Road PAKENHAM\tVIC\t1371\t22778\t22737\n10009285\t-38.04783\t145.35127\tTelstra Site 72 Kangan Drive Berwick Casey\tVIC\t195\t26483\t22670\n10008487\t-38.04781\t145.24344\tLyndhurst 149 National Drive LYNDHURST\tVIC\t1239\t25913\t21145\n10003283\t-38.04776\t145.36966\tTelstra Site 52 Old Princess Hwy Beaconsfield\tVIC\t1488\t17081\t23908\n10008104\t-38.045562\t145.347398\tTower Crane Casey Hospital 62-70 Kangan Drive Berwick\tVIC\t1191\t13579\t21244\n10001414\t-38.04484\t145.367994\tAldi Beaconsfield Cnr Beaconsfield - Emerald Rd and Princess Hwy BEACONSFIELD\tVIC\t929\t29814\t26014\n10010772\t-38.043818\t145.247037\t4 Business Park Drive LYNBROOK\tVIC\t959\t17755\t22613\n10002173\t-38.042679\t144.306081\tKardinia International College Grove 885 Anakie Rd Moorabool\tVIC\t1031\t14987\t29473\n10000564\t-38.04227\t145.55247\tNBN Co 160 Seymour Road Nar Nar Goon North\tVIC\t747\t18480\t21487\n10000084\t-38.04036\t145.21577\t1-7 Vision St DANDENONG SOUTH\tVIC\t1434\t15008\t21588\n10010861\t-38.039222\t145.346555\t57 Gloucester Ave BERWICK\tVIC\t669\t11954\t26819\n10002000\t-38.03921\t144.47624\tAvalon Airshow Mobile Control Tower 3 AVALON AIRPORT\tVIC\t657\t22734\t24319\n10010672\t-38.03535\t145.196\t63 - 75 Villas Rd DANDENONG SOUTH\tVIC\t633\t25718\t22643\n10000085\t-38.03522\t145.19963\t18-24 Villas Rd DANDENONG SOUTH\tVIC\t333\t23882\t24162\n10001417\t-38.034596\t145.284289\tAldi Hampton Park 400 Pound Road HAMPTON PARK\tVIC\t778\t15566\t24555\n10004377\t-38.034564\t145.108198\t8-10 Clydebank Rd EDITHVALE\tVIC\t802\t21442\t21091\n10000191\t-38.032015\t145.401169\tNBNCo 368 ONeil Road Officer\tVIC\t949\t24458\t29122\n10001999\t-38.03181\t144.47012\tAvalon Airshow Flight Operations Centre AVALON AIRPORT\tVIC\t195\t12239\t23222\n10002001\t-38.03162\t144.49115\tAvalon Airshow MCT 1 Avalon East AVALON AIRPORT\tVIC\t1128\t19654\t26882\n10000309\t-38.028573\t144.345439\tNBNCo 270 Elcho Road Lovely Banks\tVIC\t1117\t14119\t25190\n10005287\t-38.027452\t145.13317\tChelsea Heights Hotel Cnr Springvale Rd \u0026 Wells Rd CHELSEA HEIGHTS\tVIC\t1251\t10645\t18873\n10011003\t-38.026801\t145.182618\t39 Naxos Way Keysborough\tVIC\t593\t20010\t25779\n10002572\t-38.02506\t145.3087\tAnaconda Narre Warren 430 Princes Highway NARRE WARREN\tVIC\t105\t10817\t28464\n10009198\t-38.023244\t145.312658\t55-75 Victor Crescent Narre Warren\tVIC\t1085\t16230\t22780\n10002028\t-38.022778\t144.480833\tAvalon Airport Australia 80 Beach Rd Avalon\tVIC\t752\t28706\t21664\n10005275\t-38.022053\t145.117795\tShopping Centre Narelle Dr Aspendale Gardens\tVIC\t616\t19862\t18272\n10006766\t-38.021468\t145.954096\tAmbulance Station 41 Main Neerim Road Neerim South\tVIC\t127\t11572\t25678\n10006898\t-38.021387\t145.229595\t30 Commercial Drive Dandenong\tVIC\t233\t11142\t18650\n10006718\t-38.02122\t145.3119\tThe Good Guys Narre Warren 48 Victor Cres NARRE WARREN\tVIC\t255\t28127\t18739\n10000755\t-38.021088\t145.302829\tTrade Secret Fountain Gate Fountain Gate Westfield Shopping Centre Overland Drive FOUNTAIN GATE\tVIC\t928\t14611\t29835\n10007564\t-38.02103\t145.197625\t60-64 Thomas Murrell Crescent DANDENONG SOUTH\tVIC\t1109\t27216\t26193\n10005260\t-38.02028\t144.415891\t85 Mill Road LARA\tVIC\t1137\t23945\t23445\n10010246\t-38.02025\t145.22658\t4 Advantage Drive DANDENONG\tVIC\t703\t27527\t18776\n10008362\t-38.019626\t144.487758\tAirport Beach Rd AVALON\tVIC\t621\t19392\t23784\n10002300\t-38.01952\t145.27329\t2-4 Centre Road Hallam\tVIC\t860\t26627\t27007\n10010461\t-38.018258\t145.185765\tOptus Keysborough Atlantic Dr Keysborough\tVIC\t562\t20136\t29568\n10000717\t-38.017889\t145.304782\tFountain Gate Shopping Centre Fountain Gate Shopping Centre Narre Warren\tVIC\t1371\t25396\t24361\n10001432\t-38.017649\t145.300979\tAldi Fountain Gate 229 Princes Highway NARRE WARREN\tVIC\t1494\t18523\t23840\n10002877\t-38.01753\t145.2978\tMax Pawsey Reserve 340 - 350 Princess Hwy NARRE WARREN\tVIC\t1289\t11483\t26767\n10005849\t-38.016361\t144.377803\tVHA Monopole 225 O\u0027Hallorans Road LARA\tVIC\t810\t10046\t25794\n10005812\t-38.014979\t146.15091\tTelstra Exchange 2358 Willow Grove Road HILL END\tVIC\t189\t27134\t20152\n10009748\t-38.013775\t145.270167\t21 Star Crescent Hallam\tVIC\t1219\t17886\t23741\n10008710\t-38.013045\t145.224291\t95 Greens Road Dandenong\tVIC\t1123\t15503\t19217\n10004757\t-38.011403\t145.26516\t53 Westpool Drive Hallam\tVIC\t1489\t29440\t23058\n10009186\t-38.01054\t145.51134\tCFA Site 2 Bourkes Creek Rd PAKENHAM UPPER\tVIC\t486\t17195\t22449\n10003200\t-38.01008\t145.28371\tHallam 3 Replacement HVT 41 Saffron Drive HALLAM\tVIC\t781\t29568\t28098\n10001224\t-38.007115\t145.186111\t111 Indian Drive Keysborough\tVIC\t1440\t19484\t28387\n10004920\t-38.006168\t145.195139\tRooftop 6 Oppenheim Way DANDENONG SOUTH\tVIC\t1055\t29773\t25978\n10001413\t-38.006061\t145.085412\tAldi Mordialloc 542 Main Street MORDIALLOC\tVIC\t1461\t13375\t29634\n10010683\t-38.00605\t145.08711\tMordialloc Railway Station Bear St / Albert St Mordialloc\tVIC\t754\t29845\t20079\n10009163\t-38.005958\t145.247305\tCFA Site 45 Assembly Drive DANDENONG SOUTH\tVIC\t548\t29294\t25104\n10006713\t-38.00537\t145.2192\tThe Good Guys Dandenong 55 - 67 Frankston-Dandenong Rd DANDENONG\tVIC\t490\t20537\t23949\n10010919\t-38.00514\t145.41098\tTelstra Exchange 6 Salisbury Road Beaconsfield Upper\tVIC\t584\t25842\t22031\n10000565\t-38.00355\t145.501142\tNBN Co 60 Hoyles Road Pakenham Upper\tVIC\t369\t12854\t25620\n10000500\t-38.00157\t144.4421\tNBN Co Site 105-135 St Andrews Drive LARA\tVIC\t827\t27444\t24736\n10010462\t-38.000519\t145.113965\tOptus Braeside Braeside Dr Braeside\tVIC\t919\t16236\t18328\n10006660\t-37.999667\t145.12213\t145 Woodlands Dr Braeside\tVIC\t232\t11657\t28284\n10006469\t-37.999424\t145.227188\tConcrete Plant 10-12 Claredale Rd DANDENONG\tVIC\t215\t17432\t22931\n10008595\t-37.999027\t145.155163\tTatterson Park 400 Cheltenham Rd Keysborough\tVIC\t394\t24009\t21519\n10009572\t-37.998952\t144.445177\tMonopole cnr Plains Road and Mill Road LARA\tVIC\t1326\t19269\t20775\n10008476\t-37.99833\t145.19043\tDandenong West 100 Kirkham Road KEYSBOROUGH\tVIC\t1194\t11128\t21331\n10006112\t-37.996123\t145.154181\t400 Cheltenham Rd Keysborough\tVIC\t571\t14265\t21741\n10008723\t-37.995299\t145.144153\t855 Springvale Rd Keysborough\tVIC\t758\t19247\t27930\n10003210\t-37.99465\t145.07684\tParkdale Central 64 Parkers Road PARKDALE\tVIC\t1452\t22358\t22132\n10006864\t-37.99058\t145.194994\tSES Greater Dandenong Unit Unit 10, 42 Mills Road Dandenong\tVIC\t1234\t18736\t28359\n10009161\t-37.99044\t145.21428\tTelstra Site 157-163 Lonsdale Street Dandenong Greater Dandenong\tVIC\t870\t28754\t29188\n10007069\t-37.98989\t145.216513\tDandenong Court Cnr Foster \u0026 Puttney Streets Dandenong\tVIC\t1227\t10217\t27868\n10006659\t-37.989027\t145.112553\t394 Lower Dandenong Road Braeside\tVIC\t870\t16912\t29698\n10005976\t-37.988227\t145.112918\t394 Lower Dandenong Road Braeside\tVIC\t675\t20324\t25620\n10009715\t-37.987754\t145.214865\tDrum Theatre Cnr Lonsdale Street \u0026 Walker Street Dandenong\tVIC\t657\t15464\t20507\n10009708\t-37.987053\t145.21082\t35 Robinson Street Dandenong\tVIC\t398\t19882\t28652\n10005815\t-37.986981\t142.181803\tMacArthur Wind Farm Gerrigerrup Rd Gerrigerrup\tVIC\t547\t20461\t26883\n10001463\t-37.986756\t145.217055\tAldi Dandenong Plaza Cnr McCrae and Walker St DANDENONG\tVIC\t127\t28165\t27459\n10002787\t-37.986165\t145.216286\tTarget Plaza Cnr Walker and McCrae Sts DANDENONG\tVIC\t112\t14375\t21891\n10000752\t-37.986012\t145.216438\tTrade Secret Dandenong Dandenong Plaza Corner McCrae and Walker Streets DANDENONG\tVIC\t1091\t18776\t25100\n10008475\t-37.98598\t145.05256\tMentone South 40 Beach Road MENTONE\tVIC\t193\t18320\t26669\n10002909\t-37.985812\t144.350623\tDHHS Site Barwon Prison 1140 Bacchus Marsh Road Lara\tVIC\t1309\t26357\t25423\n10002837\t-37.984682\t145.232298\tMyuna Farm 182 Kidds Rd Doveton\tVIC\t1136\t19716\t20685\n10001443\t-37.983399\t145.216115\tAldi Dandenong Market 18 King St DANDENONG\tVIC\t1078\t22162\t27978\n10010869\t-37.982719\t144.360961\tNew Lara prison Via Bacchus Marsh Road Lara\tVIC\t1320\t23452\t24397\n10005150\t-37.982347\t145.070622\t7 Balcombe Road MENTONE\tVIC\t134\t16703\t24547\n10008484\t-37.98148\t145.19218\tYarraman Station 67 POPES ROAD NOBLE PARK\tVIC\t269\t13450\t24815\n10001930\t-37.980942\t145.063986\tCrane 116 Balcombe Rd Mentone\tVIC\t609\t10598\t28528\n10000539\t-37.980642\t144.349936\tLara 10 SPS 1140 Bacchus-Marsh Rd Lara\tVIC\t529\t17908\t27469\n10005939\t-37.978533\t145.316069\tNSA Demo Location 3 15-31 Abeckett Rd Narre Warren North\tVIC\t842\t19385\t23859\n10010138\t-37.978107\t146.795021\tFJ Hopper Corner of Weir and Portas Mill Lane Heyfield\tVIC\t1334\t22539\t27476\n10004592\t-37.977917\t146.796039\tCnr Weir Road \u0026 Portas Mill Lane Heyfield\tVIC\t1473\t17113\t23389\n10001442\t-37.977189\t145.258513\tAldi Endeavour Hills 974 Heatherton Road ENDEAVOUR HILLS\tVIC\t1208\t23850\t26359\n10005818\t-37.97678\t145.2604\tKmart Endeavor Hills 92 Matthew Flinders Ave ENDEAVOR HILLS\tVIC\t488\t28166\t26618\n10003184\t-37.976658\t144.638106\tGate 15 East Road Werribee\tVIC\t120\t12980\t24076\n10010604\t-37.97635\t145.0674\tBCF Shop 5 25 Nepean Hwy MENTONE\tVIC\t769\t14327\t19224\n10009132\t-37.975549\t145.06683\t27-29 Nepean Hwy MENTONE\tVIC\t375\t21088\t18502\n10001466\t-37.975239\t145.067563\tAldi Mentone 27 - 29 Nepean Highway MENTONE\tVIC\t868\t24330\t26717\n10000096\t-37.975073\t144.349602\tMarngoneet Correctional Centre, Karrenga 1200 Bacchus Marsh Road Lara\tVIC\t110\t15037\t26469\n10000310\t-37.97502\t144.13996\tNBNCo 2699 Midland Highway Lethbridge\tVIC\t611\t16872\t25386\n10002358\t-37.971654\t146.976702\tMurray Goulburn 8 Bundalaguah Road Maffra\tVIC\t1398\t11929\t26756\n10001425\t-37.970728\t145.090791\tAldi Moorabbin Airport 288 Centre Dandenong Road MOORABBIN\tVIC\t688\t21653\t27374\n10006716\t-37.97046\t145.0901\tThe Good Guys Moorabbin 288 Centre Dandenong Rd MENTONE\tVIC\t1257\t22736\t25321\n10009992\t-37.967509\t145.528047\tGembrook South 115 Mount Burnett Road Mount Burnett\tVIC\t1105\t25777\t27054\n10004245\t-37.96615\t145.012337\tTelstra Street Cell 227 Beach Road BLACK ROCK\tVIC\t1143\t27838\t24430\n10006285\t-37.965826\t145.057271\t1228 Nepean Hwy Cheltenham\tVIC\t822\t11807\t19783\n10000531\t-37.96567\t144.68668\tNBNCo 625 Diggers Road Werribee South\tVIC\t1285\t19211\t26081\n10007877\t-37.965296\t144.135393\tSite 35 Russell St LETHBRIDGE\tVIC\t821\t24218\t19482\n10006283\t-37.965257\t144.705889\t33 Quay Blvd Werribee south\tVIC\t859\t17076\t20641\n10009925\t-37.964128\t145.055114\t22-24 Barker Street CHELTENHAM\tVIC\t1000\t26010\t26746\n10006111\t-37.963439\t145.173061\tAquatic Centre 9 Memorial Dr Noble Park\tVIC\t1445\t16348\t22844\n10000066\t-37.963172\t145.127531\t66-78 Tootal Rd SPRINGVALE\tVIC\t1318\t24429\t22125\n10000501\t-37.962741\t144.496096\tNBNCo 39 You Yangs Road Little River\tVIC\t1386\t24176\t26783\n10008470\t-37.96206\t144.50132\tLittle River Station River Street LITTLE RIVER\tVIC\t845\t20344\t18505\n10000190\t-37.96161\t145.3609\tNBN Co Site 505 Berwick Road Narre Warren East\tVIC\t1323\t22515\t27822\n10001431\t-37.961547\t145.143129\tAldi Springvale South 792 - 806 Heatherton Road SPRINGVALE SOUTH\tVIC\t1049\t27352\t18493\n10005251\t-37.960714\t144.500989\t6 Boadles Lane LITTLE RIVER\tVIC\t1355\t28248\t23786\n10001590\t-37.960335\t142.518115\t9 Brown St Caramut\tVIC\t899\t15299\t19587\n10010445\t-37.959671\t145.038555\t350 Reserve Rd CHELTENHAM\tVIC\t591\t24160\t22388\n10008469\t-37.95914\t145.00988\tBlackrock Foreshore 178 Beach Road SANDRINGHAM\tVIC\t673\t21154\t26738\n10002406\t-37.957886\t145.055643\tTarget Southland 1239 Nepean Hwy CHELTENHAM\tVIC\t1466\t18805\t23481\n10007078\t-37.956379\t145.152328\tVCAT 397-405 Springvale Road Springvale\tVIC\t1307\t13424\t20546\n10008597\t-37.956248\t145.15353\tTown Hall 397-405 Springvale Rd Springvale\tVIC\t370\t14714\t27804\n10001450\t-37.955834\t145.033438\tAldi Cheltenham 280 - 282 Bay Road CHELTENHAM\tVIC\t137\t20061\t20183\n10003338\t-37.952917\t144.636512\tCocoroc Site Sheds Western Treatment Plant Werribee\tVIC\t1090\t14001\t23203\n10005148\t-37.952144\t145.182675\tMaplex 221-239 Browns Road Noble Park\tVIC\t408\t29594\t19437\n10002552\t-37.950831\t145.080357\t20 Corporate Drive Heatherton\tVIC\t916\t23665\t27156\n10008596\t-37.950344\t145.151675\tCarpark 8 Balmoral Ave Springvale\tVIC\t1352\t20090\t20951\n10002316\t-37.950147\t145.182486\tOneSteel Reinforcing 180 Browns Road Noble Park\tVIC\t1275\t23040\t28346\n10008485\t-37.94907\t145.22734\tTirhantuan Lakes Golf Course Tirhatuan Lakes Golf Club POLICE ROAD ROWVILLE\tVIC\t1194\t16464\t26586\n10010682\t-37.949033\t145.153053\tSpringvale Railway Station Springvale Rd / Lightwood Rd Springvale\tVIC\t1245\t22928\t19235\n10001101\t-37.94772\t145.1714\tHighways Hotel Corrigan Rd SPRINGVALE\tVIC\t276\t24486\t25930\n10006842\t-37.947307\t145.040082\tTower Crane 10-14 Major Street Highett\tVIC\t346\t27026\t20600\n10002593\t-37.94677\t145.046\tAnaconda Highett 1121A Nepean Highway HIGHETT\tVIC\t723\t14085\t26253\n10006467\t-37.945946\t145.116287\tConcrete Plant 596-602 Clayton Rd CLAYTON\tVIC\t837\t10903\t29921\n10005721\t-37.944781\t145.523213\t311 Belgrave - Gembrook Rd GEMBROOK\tVIC\t1393\t28666\t26711\n10009660\t-37.943767\t145.129589\tRooftop Unit 5 80 Fairbank Road CLAYTON SOUTH\tVIC\t994\t29868\t29567\n10005585\t-37.94025\t144.582617\tWaste Refuse Disposal 470 Wests Rd WERRIBEE\tVIC\t964\t12772\t26069\n10010131\t-37.939195\t145.001539\t23-31 Small Street Hampton\tVIC\t1016\t20556\t20144\n10002258\t-37.938342\t145.213185\tValley Private Hospital Crner Police Rd and Gladstone Rd Mulgrave\tVIC\t473\t24368\t21174\n10007690\t-37.93799\t145.2027\t433 Police Rd MULGRAVE\tVIC\t1472\t19028\t19377\n10000438\t-37.93749\t145.1191\tViridian CSR 13 - 27 Whiteside Rd CLAYTON SOUTH\tVIC\t286\t24174\t25516\n10004850\t-37.937155\t145.043847\tMoorabbin Reserve Redevelopment 32-60 Linton St Moorabbin\tVIC\t746\t16730\t23152\n10004320\t-37.936446\t145.190899\tTarget cnr Police and Jacksons Rds MULGRAVE\tVIC\t1427\t27751\t24768\n10001462\t-37.935453\t145.189698\tAldi Waverley Gardens Cnr Police and Jacksons Rd MULGRAVE\tVIC\t713\t21793\t20116\n10010677\t-37.935394\t145.189638\tWaverley Gardens Shopping Centre Cnr Police and Jacksons Road Mulgrave\tVIC\t1315\t23118\t24747\n10005555\t-37.93408\t145.1421\t12 - 14 Westall Rd SPRINGVALE\tVIC\t659\t11608\t26606\n10008471\t-37.93273\t144.57697\tManor Station Galvin Road LITTLE RIVER\tVIC\t932\t10039\t20610\n10009499\t-37.93251\t145.3034\t550 Lysterfield Rd LYSTERFIELD\tVIC\t508\t10075\t28876\n10001253\t-37.930806\t144.641889\tWWRWS Site William Thwaites Dr WERRIBEE\tVIC\t372\t29763\t29914\n10010157\t-37.92977\t145.1257\t1408 - 1418 Centre Rd CLAYTON SOUTH\tVIC\t1122\t16131\t24852\n10007254\t-37.929672\t142.773119\tDGPS Site Salt Creek Windfarm off Hexham-Woorndoo Road Woorndoo\tVIC\t484\t13215\t18643\n10003078\t-37.928914\t144.749303\tRMIT University Campus Williams Rd Point Cook Airport POINT COOK\tVIC\t304\t22018\t24951\n10006476\t-37.928666\t145.276833\tConcrete Plant 1322 Wellington Rd LYSTERFIELD\tVIC\t920\t26064\t19502\n10001473\t-37.928633\t145.251407\tAldi Rowville 1100 Wellington Road ROWVILLE\tVIC\t481\t23918\t26006\n10002580\t-37.92749\t145.1434\tAnaconda Springvale 917 Princes Highway SPRINGVALE\tVIC\t427\t22533\t18916\n10004151\t-37.926114\t145.101506\t1213 Centre Road OAKLEIGH SOUTH\tVIC\t600\t15200\t26088\n10007320\t-37.923081\t145.155608\t41-43 Miles St MULGRAVE\tVIC\t1138\t24419\t27694\n10001617\t-37.92259\t145.14618\tClayton Industrial 60-74 Garden Road MULGRAVE\tVIC\t720\t21929\t28284\n10001478\t-37.92239\t144.6673\tWerribee Zoo K Road WERRIBEE SOUTH\tVIC\t581\t13033\t29118\n10007321\t-37.92217\t145.11701\tTelstra Site Opposite 358 Haughton Road Clayton Monash\tVIC\t538\t12331\t21876\n10001994\t-37.92189\t145.1566\t783 Springvale Rd MULGRAVE\tVIC\t372\t15703\t24029\n10010645\t-37.921768\t145.140405\tTC5 cnr Dandenong and Blackburn Roads CLAYTON\tVIC\t961\t10560\t29767\n10010644\t-37.921372\t145.139776\tTC4 cnr Dandenong and Blackburn Roads CLAYTON\tVIC\t608\t15234\t29087\n10010646\t-37.921077\t145.140641\tTC6 cnr Dandenong and Blackburn Roads CLAYTON\tVIC\t1264\t28721\t27187\n10010643\t-37.920843\t145.14001\tTC3 cnr Dandenong and Blackburn Roads CLAYTON\tVIC\t187\t28791\t25108\n10008461\t-37.92062\t145.23669\tM2504 Stud Park SC Rptr Stud Park Shopping Centre ROWVILLE\tVIC\t1017\t13002\t22882\n10007726\t-37.920618\t145.121883\tMonash Medical Centre 246 Clayton Road Clayton\tVIC\t243\t21202\t26804\n10010641\t-37.920392\t145.140823\tTC1 cnr Dandenong and Blackburn Roads CLAYTON\tVIC\t383\t13866\t29159\n10010642\t-37.920349\t145.140107\tTC2 cnr Dandenong and Blackburn Roads CLAYTON\tVIC\t264\t10297\t23363\n10010356\t-37.92028\t145.0542\t677 Centre Rd BENTLEIGH EAST\tVIC\t1085\t14631\t18966\n10007904\t-37.920021\t145.053405\tTower Crane 663 Centre Road Bentleigh East\tVIC\t575\t25894\t24300\n10004729\t-37.918182\t145.038431\tTarget 401 Centre Rd BENTLEIGH\tVIC\t942\t18694\t28972\n10010044\t-37.91778\t145.1428\t1 - 13 Renver Rd CLAYTON\tVIC\t1248\t14931\t19059\n10001430\t-37.917627\t145.03389\tAldi Bentleigh 285 - 305 Centre Road BENTLEIGH\tVIC\t448\t14227\t18731\n10004815\t-37.916776\t145.121056\tMonash University Accomodation 221 Clayton Rd Clayton\tVIC\t804\t15733\t26010\n10002728\t-37.916741\t146.874706\t177 Upper Maffra Rd Newry\tVIC\t225\t21715\t29339\n10006707\t-37.91664\t145.0196\tThe Good Guys Brighton 681 - 721 Nepean Hwy BRIGHTON EAST\tVIC\t897\t12912\t23606\n10000028\t-37.916514\t145.038261\t14-18 Bent Street BENTLEIGH\tVIC\t354\t26138\t26222\n10010867\t-37.916513\t145.289765\tAmateur Repeater 3 Carrera Close Lysterfield\tVIC\t1339\t29697\t22382\n10002910\t-37.916422\t145.038742\t15-19 Vickery Street Bentleigh\tVIC\t1134\t16287\t18985\n10002321\t-37.916191\t145.148516\t195 Wellington Road CLAYTON\tVIC\t455\t16236\t21697\n10007491\t-37.915569\t145.036667\tTower Crane 37-39 Nicholson st Bentleigh\tVIC\t1488\t20072\t28437\n10003244\t-37.91537\t144.66271\tWERRIBEE 6 Rooftop 68-72 Lock Ave WERRIBEE\tVIC\t984\t21256\t22970\n10005149\t-37.915225\t144.987294\tBrighton Savoy Hotel 150 Esplenade BRIGHTON\tVIC\t982\t16112\t20841\n10003201\t-37.91521\t144.98785\tBeach Road Brighton Rooftop 150 The Esplanade BRIGHTON\tVIC\t1434\t28914\t21936\n10002145\t-37.914419\t145.13353\t21 Wellington Road CLAYTON\tVIC\t580\t29201\t21147\n10002189\t-37.914354\t145.093697\tOkleigh Golf Course Golf Rd South Okleigh\tVIC\t647\t16459\t22331\n10010262\t-37.91405\t145.1427\tAustralian Synchrotron 800 Blackburn Rd CLAYTON\tVIC\t1092\t11837\t21994\n10006578\t-37.913514\t145.220002\t42 Lakeview Drive Scoresby\tVIC\t1146\t25936\t28556\n10010342\t-37.913121\t145.325073\t3MDR Studio Forest Park Homestead Riley Road Upwey South\tVIC\t1326\t21365\t18306\n10006450\t-37.912433\t145.039756\tTower Crane 1 Claire Street McKinnon\tVIC\t1196\t19563\t26837\n10004755\t-37.91212\t144.995612\t8B Lindsay Street Brighton\tVIC\t260\t21554\t21501\n10003955\t-37.911906\t145.040208\t6-10 Claire Street MCKINNON\tVIC\t211\t18404\t26545\n10005233\t-37.911877\t145.133562\tYOS Monash University Chancellors Walk CLAYTON\tVIC\t1336\t24966\t26390\n10006097\t-37.911028\t145.152468\t1 Lexia Place Mulgrave\tVIC\t1422\t28681\t28056\n10007115\t-37.910532\t145.134839\tMonash Biomedical Learning \u0026 Teaching Exhibition Walk Clayton\tVIC\t959\t12867\t26710\n10008480\t-37.90974\t145.46417\tEmerald North 7 Paton Road EMERALD\tVIC\t537\t19632\t24949\n10010695\t-37.909555\t145.35679\tCFA tower 4 Bayview Road Belgrave\tVIC\t161\t10094\t21762\n10004573\t-37.90924\t145.13073\tMonash University North -V Wellington Road CLAYTON\tVIC\t233\t26806\t20389\n10000475\t-37.908589\t144.74998\t42 Parkwood Terrace POINT COOK\tVIC\t682\t28733\t29927\n10007359\t-37.908506\t145.158609\tTower Crane 10 Nexus Court Mulgrave\tVIC\t184\t20614\t19449\n10007910\t-37.908275\t145.132728\tNew Horizons 20 Research Way, Clayton Campus, Monash University CLAYTON\tVIC\t171\t22186\t29176\n10010731\t-37.90785\t145.018248\t709-723 Hawthorn Rd Brighton East\tVIC\t1375\t19331\t20994\n10008671\t-37.907028\t145.102917\t235 Huntingdale Road Oakleigh\tVIC\t741\t24224\t23497\n10010636\t-37.906767\t144.65346\tWyndham Lodge 120 Synnot Street WERRIBEE\tVIC\t403\t27280\t19895\n10005169\t-37.90662\t145.1642\t6-30 Brandon Park Drive WHEELERS HILL\tVIC\t187\t28365\t28558\n10007197\t-37.906431\t145.104167\t235 Huntingdale Rd Oakleigh\tVIC\t281\t15045\t22825\n10010145\t-37.906356\t144.99685\tFirbank Grammar School 51 Outer Cresent Brighton\tVIC\t787\t10776\t19837\n10001416\t-37.90577\t145.162761\tAldi Brandon Park Cnr Springvale and Ferntree Gully Rd BRANDON PARK\tVIC\t902\t20101\t26911\n10001038\t-37.905135\t144.657881\tAldi Werribee 77 - 83 Synott Street Werribee\tVIC\t1154\t27693\t25586\n10002340\t-37.902972\t145.251151\t81-83 Rushdale Street Knoxfield\tVIC\t586\t21008\t19239\n10004229\t-37.902466\t145.091976\t37-41 Oxford Street OAKLEIGH\tVIC\t259\t26720\t26779\n10007079\t-37.902426\t144.663869\tWerribee Court Cnr Duncans Road \u0026 Salisbury Street Werribee\tVIC\t593\t20950\t19886\n10010729\t-37.901566\t145.091596\tAustralian Scholarships Group 23 Hanover Street Oakleigh\tVIC\t899\t21059\t27982\n10002147\t-37.90151\t145.49374\tNBN Co Site 48 Merretts Road Avonsleigh\tVIC\t162\t25542\t20165\n10001472\t-37.901232\t145.23302\tAldi Scoresby 800 Stud Road SCORESBY\tVIC\t1268\t18159\t23320\n10010917\t-37.901231\t144.752968\tTelstra Exchange 330 Point Cook Road Point Cook\tVIC\t486\t18145\t27196\n10006577\t-37.899824\t145.240257\t1A Millennium Ct Knoxfield\tVIC\t1149\t25400\t29998\n10005168\t-37.899367\t145.132181\tRooftop 307 Ferntree Gully Road MOUNT WAVERLEY\tVIC\t411\t28286\t28790\n10003198\t-37.89935\t144.73091\tPoint Cook South West 35m monopole 29-31 Windorah Drive POINT COOK\tVIC\t1252\t28883\t24591\n10010676\t-37.899272\t144.661527\tWerribee Railway Station Manly St Werribee\tVIC\t618\t18397\t23969\n10009191\t-37.899144\t145.142569\t541 Blackburn Rd Mount Waverley\tVIC\t824\t10308\t21057\n10009192\t-37.897511\t145.141897\t497 Blackburn Rd Mount Waverley\tVIC\t1103\t20780\t29102\n10008553\t-37.89729\t144.6706\tWyndham City Council 45 Princes Hwy WERRIBEE\tVIC\t1042\t11438\t23679\n10005560\t-37.895154\t145.120091\tMount Waverley 53 Ian Grove, Mount Waverley\tVIC\t612\t27682\t23632\n10007137\t-37.894653\t145.051883\tCarnegie Swim Centre Koornang Park Moria Ave Carnegie\tVIC\t1407\t13951\t25203\n10007136\t-37.893799\t145.021637\tCaulfield Recreation Centre 6 Maple St Caulfield South\tVIC\t1335\t21041\t28332\n10008037\t-37.893678\t145.076578\tTower Crane 67-73 Poath Road Murrumbeena\tVIC\t1420\t16204\t18158\n10006835\t-37.890644\t145.039506\tTower Crane 23-25 Rothschild St Glen Huntly\tVIC\t995\t11477\t21656\n10005407\t-37.890115\t145.067429\tTrain Station Neerim Road Murrumbeena\tVIC\t1221\t22048\t18625\n10005135\t-37.88981\t145.12762\tMt Waverley Replacement -V 418-422 Stephensons Road MOUNT WAVERLEY\tVIC\t999\t16254\t22741\n10008558\t-37.889382\t144.692593\t250 Princes Hwy Werribee\tVIC\t502\t28297\t27963\n10006834\t-37.889364\t145.059733\tTower Crane 322 Neerim Rd Carnegie\tVIC\t257\t10441\t26128\n10007900\t-37.888522\t145.060139\tTower Crane 3-9 Elliot Ave Carnegie\tVIC\t1090\t10939\t23530\n10005151\t-37.888492\t145.082525\tChadstone Towers 1341 Dandenong Road CHADSTONE\tVIC\t112\t21738\t27800\n10001415\t-37.888302\t145.288962\tAldi Ferntree Gully Cnr Burwood Hwy and Glenfern Rd FERNTREE GULLY\tVIC\t159\t10534\t25297\n10008494\t-37.88782\t144.27014\tAnakie North 275 MOUNT ROAD ANAKIE\tVIC\t1237\t27295\t29754\n10009995\t-37.887819\t144.270135\tAnakie North 245-275 Mount Rd Anakie North\tVIC\t858\t11265\t29082\n10001077\t-37.887396\t144.607224\tAldi Vale Greens Road Wyndham Vale\tVIC\t1425\t16148\t26532\n10005469\t-37.887249\t144.990204\tTower Crane 164-168 Ormond Rd Elwood\tVIC\t1483\t15978\t21999\n10002350\t-37.88699\t145.0822\tPeter Alexander Chadstone Shopping Centre 1341 Dandenong Rd MALVERN EAST\tVIC\t319\t17559\t24085\n10002158\t-37.88681\t145.0818\tShop G85 Chadstone Shopping Centre 1341 Dandenong Road CHADSTONE\tVIC\t1037\t12623\t18053\n10002638\t-37.88645\t145.0842\tColonial Fresh 1341 Dandenong Rd CHADSTONE\tVIC\t1089\t13171\t25697\n10001460\t-37.886261\t145.084158\tAldi Chadstone 1341 Dandenong Road CHADSTONE\tVIC\t439\t16277\t29296\n10009935\t-37.886154\t144.698711\tMercy Hospital 300 Princes Highway WERRIBEE\tVIC\t411\t12878\t28689\n10005620\t-37.885557\t145.081791\tShop B, 212A, 1341 Dandenong Road Chadstone\tVIC\t1052\t11884\t25336\n10009107\t-37.88517\t145.0833\tShop G85 Chatstone Shopping Centre 1341 Dandenong Rd MALVERN EAST\tVIC\t967\t10526\t29531\n10002237\t-37.88506\t145.0825\tNike Chadstone Shopping Centre 1341 Dandenong rd CHADSTONE\tVIC\t514\t13682\t29835\n10002066\t-37.88486\t145.0842\tUniqulo Chadstone Shopping Centre 1341 Dandenong Road CHADSTONE\tVIC\t443\t21827\t25200\n10007147\t-37.88482\t145.0832\tTelstra Chadstone Shopping Centre 1341 Dandernong Rd CHADSTONE\tVIC\t128\t17817\t24299\n10006202\t-37.88478\t144.19598\t110 Butchers Rd Steiglitz\tVIC\t764\t13930\t26204\n10009710\t-37.884702\t145.007153\tTower Crane 1 441-459 Glenhuntly Rd Elsternwick\tVIC\t213\t23596\t21478\n10009711\t-37.884666\t145.006726\tTower Crane 2 441-459 Glenhuntly Rd Elsternwick\tVIC\t698\t12680\t23960\n10001226\t-37.88459\t145.0844\tHoyts Chadstone 1341 Dandenong Rd CHADSTONE\tVIC\t887\t20750\t22572\n10005819\t-37.88453\t144.9985\t5 - 7 Napean Hwy ELSTERNWICK\tVIC\t1066\t10290\t28570\n10001422\t-37.884487\t145.058825\tAldi Carnegie 2 - 18 Koornang Road CARNEGIE\tVIC\t889\t16480\t26455\n10002759\t-37.884408\t145.084309\tStore G072 Chadstone Shopping Centre 1341 Dandenong Road Chadstone\tVIC\t1236\t16867\t23025\n10002402\t-37.884273\t144.736053\tTarget Cnr Main St and Dunnings Rd POINT COOK\tVIC\t1047\t19253\t24166\n10010117\t-37.883553\t145.0737\tSydare Ave MALVERN EAST\tVIC\t707\t29823\t27008\n10001063\t-37.882594\t144.736065\tAldi Point Cook Cheltham St Stockland Point Cook Point Cook\tVIC\t515\t18711\t24524\n10002616\t-37.882423\t145.001377\tSholem Aleichem College 11 Sinclair St Elsternwick\tVIC\t589\t15830\t23109\n10002511\t-37.882284\t147.974646\tLakes Entrance Central 1 ESPLANADE 3909 LAKES ENTRANCE\tVIC\t387\t26772\t18048\n10001470\t-37.881945\t147.974167\tAldi Lakes Entrance 6 - 12 marine Parade LAKES ENTRANCE\tVIC\t1073\t23137\t25175\n10010542\t-37.881466\t145.050558\t2107-2115 Dandenong Rd CLAYTON\tVIC\t1235\t28461\t23744\n10008559\t-37.88133\t145.164668\tVillage Cinemas Century City 285-287 Springvale Rd GLEN WAVERLEY\tVIC\t699\t15540\t22195\n10011038\t-37.881082\t145.162824\t54 Montclair Avenue Glen Waverley\tVIC\t263\t11022\t25876\n10007474\t-37.88022\t145.2829\t9 Commercial Rd FERNTREE GULLY\tVIC\t1200\t26068\t28191\n10004666\t-37.879808\t147.986379\tTarget 371 The Esplanade LAKES ENTRANCE\tVIC\t343\t22949\t27458\n10007080\t-37.879522\t145.068669\t60 Belgrave Road Malvern East\tVIC\t1100\t14726\t21569\n10007102\t-37.879367\t145.332781\t8 One Tree Hill Rd FERNY CREEK\tVIC\t233\t23405\t22445\n10010795\t-37.878985\t145.603025\tGembrook North 2395 Gembrook-Launching Place Road Gembrook\tVIC\t964\t28932\t20270\n10009855\t-37.878889\t145.164714\tTower Crane 52-54 Osullivan Road Glen Waverley\tVIC\t1009\t13266\t24146\n10005880\t-37.87839\t145.007\tTelstra Street Cell 137 Orrong Road Elsternwick Glen Eira\tVIC\t1255\t13702\t29259\n10010369\t-37.878225\t145.164867\tTC3 235 Springvale Road GLEN WAVERLEY\tVIC\t1135\t28501\t18773\n10006699\t-37.87817\t144.7079\tThe Good Guys Hoppers Crossing 159 Old Geelong Rd HOPPERS CROSSING\tVIC\t483\t25053\t21405\n10005082\t-37.87804\t145.47324\tNBN Co Site 529 Macclesfield Road Macclesfield\tVIC\t1396\t21980\t19511\n10002055\t-37.877668\t145.038316\tRptr Site Grandstand Racecourse Station St CAULFIELD EAST\tVIC\t1480\t23494\t27521\n10002615\t-37.877503\t144.998169\t168-176 Hotham Street ELSTERNWICK\tVIC\t417\t24926\t19584\n10006708\t-37.87746\t145.0925\tThe Good Guys Chadstone 675 - 685 Warrigal Rd CHADSTONE\tVIC\t1053\t25957\t23357\n10010691\t-37.877326\t145.042342\tCaulfield Railway Station Station St / Normanby Ave Caulfield\tVIC\t765\t11939\t20444\n10005768\t-37.87727\t145.04\tThe Classhouse Gate 22 Station St CAULFIELD EAST\tVIC\t209\t23751\t24380\n10004170\t-37.87648\t145.1273\t33 Hamiltion Place Mt WAVERLEY\tVIC\t720\t14522\t19853\n10001457\t-37.876399\t145.408961\tAldi Monbulk 32 - 36 Main Street MONBULK\tVIC\t468\t27985\t26886\n10009579\t-37.876076\t144.681841\tVillage Cinemas cnr Heaths and Derrimut Rds WERRIBEE\tVIC\t796\t25979\t25985\n10009659\t-37.875968\t145.046426\tRooftop 60 Waverley Road MALVERN EAST\tVIC\t445\t26049\t21792\n10000312\t-37.87594\t144.6801\tUniQlo 250 Heaths Rd HOPPERS CROSSING\tVIC\t1039\t27093\t21636\n10007833\t-37.875878\t142.292688\tSite 23 French Street PENSHURST\tVIC\t1330\t13277\t20835\n10002718\t-37.87587\t145.164689\tTarget The Glen 235 Springvale Rd GLEN WAVERLEY\tVIC\t189\t17484\t28322\n10003343\t-37.875853\t144.710167\tCommunications Tower 7 Nevada Court Hoppers Crossing\tVIC\t1387\t29806\t23429\n10006583\t-37.87538\t145.1646\tShop L-O15 235 Springvale Rd GLEN WAVERLEY\tVIC\t320\t26790\t26304\n10009022\t-37.875338\t144.614961\tFire station 475 Ballan Rd WYNDHAM VALE\tVIC\t185\t19445\t21315\n10004752\t-37.875003\t145.041856\t865-871 Dandenong Rd Malvern East\tVIC\t137\t26584\t28369\n10006932\t-37.87497\t145.1648\tAldi Glen Waverly The Glen 235 Springvale Rd GLEN WAVERLY\tVIC\t207\t29781\t22765\n10005416\t-37.874667\t144.805931\tKooringal Golf Club Wilga Avenue Altona\tVIC\t917\t29483\t18738\n10000425\t-37.874411\t144.67845\tMyer Werribee Cnr Derrimut \u0026 Heaths Rd Werribee\tVIC\t530\t16227\t24070\n10010940\t-37.87432\t144.7174\t10/269-281 Old Geelong Rd HOPPERS CROSSING\tVIC\t191\t24048\t23801\n10005070\t-37.87424\t144.6782\tAldi Pacific Werribee Heaths Rd HOOPERS CROSSING\tVIC\t1131\t13350\t18897\n10005326\t-37.87419\t144.6778\tHeaths Rd and Derrimut Rd WERRIBEE\tVIC\t442\t22853\t20579\n10007795\t-37.874113\t145.009768\tTower Crane 6 St Aubins Ave Caulfield North\tVIC\t1300\t26671\t20875\n10002988\t-37.873888\t145.039098\tCrane 2 803 Dandenong Road Malvern East\tVIC\t404\t19447\t26899\n10000426\t-37.873706\t145.234678\tUni Campus 369 Stud Rd WANTIRNA\tVIC\t891\t23768\t24792\n10002987\t-37.873569\t145.038833\tCrane 1 803 Dandenong Road Malvern East\tVIC\t1243\t21020\t29020\n10002584\t-37.87317\t144.7209\tAnaconda Hoppers Crossing 323 Old Geelong Road HOPPERS CROSSING\tVIC\t1440\t13602\t27101\n10001039\t-37.871914\t144.775034\tAldi Altona Meadows 1 Central Avenue Altona Meadows\tVIC\t285\t29295\t29064\n10008399\t-37.870962\t145.239574\tTower Crane 456 Burwood Hwy Wantirna South\tVIC\t549\t23032\t22680\n10008735\t-37.87084\t144.98076\tTelstra Rooftop Site 220 Barkly Street St Kilda Port Phillip\tVIC\t1366\t22195\t21199\n10008486\t-37.87021\t145.1596\tGlen Waverley Station West 11 Madeline Street GLEN WAVERLEY\tVIC\t672\t22204\t22512\n10003228\t-37.869647\t144.981047\t202 Barkly Street St. Kilda\tVIC\t1366\t24114\t22091\n10007530\t-37.86939\t145.24364\tShop 2219 Knox Ozone 509 Burwood Highway WANTIRNA SOUTH\tVIC\t257\t14797\t18459\n10002409\t-37.868981\t145.24011\tTarget Knox City 425 Burwood Rd WANTIRNA SOUTH\tVIC\t1135\t20522\t20006\n10006477\t-37.86898\t144.724907\tConcrete Plant 1 Industrial Ave HOPPERS CROSSING\tVIC\t408\t15826\t19900\n10006848\t-37.868927\t145.24374\tCinema Knox City 435 Burwood Hwy WANTIRNA SOUTH\tVIC\t202\t22303\t20367\n10005568\t-37.868742\t144.994753\tTower Crane 308 Carlisle St Balaclava\tVIC\t508\t13651\t23305\n10007966\t-37.868371\t145.082041\tAmateur Radio Victoria Site 40G Victory Blvd Ashburton\tVIC\t894\t24405\t22584\n10010681\t-37.867855\t144.990689\tSt Kilda Police Station 92 Chapel Street St Kilda\tVIC\t869\t25161\t20279\n10006769\t-37.867457\t144.985218\tTower Crane 78 Carlisle Street St Kilda\tVIC\t1047\t20568\t22579\n10004572\t-37.866896\t145.085004\tPool \u0026 Recreation Centre 8 Warner Avenue Ashburton\tVIC\t650\t14126\t28603\n10006010\t-37.866024\t144.727922\t13 Richards Rd Hoppers Crossing\tVIC\t759\t12833\t19049\n10001115\t-37.865296\t144.908602\t31 Nelson Place Williamstown\tVIC\t212\t26283\t25675\n10000546\t-37.86506\t144.9868\t111 - 113 Inkernab St ST KILDA\tVIC\t437\t22128\t21481\n10001448\t-37.864977\t144.987448\tAldi St Kilda 135 Inkerman Street ST KILDA\tVIC\t1416\t14969\t20682\n10001227\t-37.86458\t144.9081\t57 Nelson Place WILLIAMSTOWN\tVIC\t220\t15550\t20778\n10003194\t-37.86393\t145.35305\tSassafras Cnr Woodlands Ave Mount Dandenong Tourist Road SASSAFRAS\tVIC\t1340\t28102\t19205\n10009291\t-37.863651\t144.980832\tTower Crane 101 Grey St St Kilda\tVIC\t1285\t23800\t20747\n10004870\t-37.863634\t147.426528\tGuyed Mast 160 Lindenow-Glenaladale Road LINDENOW SOUTH\tVIC\t1249\t16871\t21261\n10004357\t-37.863056\t142.445278\tDGPS Site 651 North Gums Road Penshurst\tVIC\t863\t24168\t29099\n10007651\t-37.86287\t147.59668\tBairnsdale South 360 Forge Creek Road BAIRNSDALE\tVIC\t548\t16444\t20618\n10005995\t-37.862773\t145.029374\t154 Wattletree Road MALVERN\tVIC\t932\t24468\t23410\n10010722\t-37.862531\t145.034243\t2 Coonil Crescent MALVERN\tVIC\t630\t21942\t27268\n10005996\t-37.861464\t145.033091\tCabrini Hospital MC3 Plantroom 183 Wattletree Road MALVERN\tVIC\t257\t19012\t28165\n10004252\t-37.860914\t144.985442\t29 Alma Road ST KILDA\tVIC\t1398\t26271\t18403\n10007619\t-37.860853\t148.071978\tLake Tyers Beach 35 Bream Road Lake Tyres Beach\tVIC\t1388\t14482\t19272\n10001702\t-37.86015\t144.66621\t540 Tarneit Road Tarneit\tVIC\t738\t12699\t23991\n10009007\t-37.85933\t148.0732\tTelstra Site 55 Bream Road Lake Tyers Beach East Gippsland\tVIC\t1360\t14376\t23005\n10008436\t-37.85932\t145.1676\t2 Vision Dr BURWOOD EAST\tVIC\t515\t29956\t21987\n10010976\t-37.85819\t144.59414\tTelstra Site 772 Ballan Road Wyndham Vale\tVIC\t1088\t16811\t18551\n10000047\t-37.857886\t144.789906\tSCT Logistics 7 Westlink Court ALTONA\tVIC\t110\t11304\t23236\n10005998\t-37.857761\t144.889969\tBristol Apartments 184 Ferguson St Williamstown\tVIC\t1469\t11922\t27043\n10010022\t-37.85691\t148.07867\tNBN Co Site 81A Blays Road Lake Tyers Beach\tVIC\t1213\t21584\t27007\n10001449\t-37.855617\t145.18229\tAldi Vermont South 495 Burwood Highway VERMONT SOUTH\tVIC\t1477\t16721\t18383\n10007138\t-37.855615\t145.02271\tCOS Armadale 1055 High Street Armadale\tVIC\t273\t14072\t25086\n10007009\t-37.855172\t144.979758\tJunction Oval Lakeside Dr St Kilda\tVIC\t194\t22528\t20573\n10004356\t-37.854654\t142.654555\tDGPS Site near 30 Chatsworth-Wickliffe Road Chatsworth\tVIC\t1331\t14455\t25823\n10001874\t-37.85443\t145.01664\tCrane 881 High St Armadale\tVIC\t1218\t19428\t21968\n10001421\t-37.853824\t145.150857\tAldi Burwood East 172 - 210 Burwood Highway BURWOOD EAST\tVIC\t1358\t13798\t26532\n10009088\t-37.853518\t145.162455\t315 Burwood Highway Burwood East\tVIC\t1232\t20644\t20761\n10009549\t-37.85324\t145.0057\t525 High St PRAHRAN\tVIC\t1322\t29586\t22243\n10003085\t-37.853037\t144.979858\t78 Queens Road Melbourne\tVIC\t1380\t27846\t21699\n10004700\t-37.852556\t145.034907\t1220 Malvern Road Malvern\tVIC\t1464\t15036\t29309\n10008429\t-37.85243\t144.85801\tWilliamstown North 3-7 Fink Street WILLIAMSTOWN NORTH\tVIC\t559\t25797\t23007\n10000867\t-37.852375\t144.996\t242 High Street WINDSOR\tVIC\t532\t16531\t25364\n10000060\t-37.852314\t144.607033\t772 Ballan Rd WYNDHAM VALE\tVIC\t1382\t26349\t20183\n10010023\t-37.852273\t144.99383\t5 Victoria Street WINDSOR\tVIC\t1416\t17491\t28758\n10004830\t-37.852259\t144.958418\t208 Beaconsville Parade Middle Park\tVIC\t839\t23527\t23962\n10006799\t-37.852122\t145.130276\tRooftop 382-386 Burwood Highway BURWOOD\tVIC\t936\t14880\t29020\n10008358\t-37.85195\t144.991171\tTower Crane 144 High Street Windsor\tVIC\t978\t26768\t26179\n10009880\t-37.851831\t144.991277\t138 High Street PRAHRAN\tVIC\t1107\t23683\t22868\n10008337\t-37.851822\t144.991792\t144 High Street Windsor\tVIC\t910\t28841\t23964\n10004290\t-37.851546\t144.982709\tBuilding K13 13k Raleigh Street WINDSOR\tVIC\t1092\t17736\t25303\n10009902\t-23.0\t116.466667\tNorthern Star Resources nominal LTE site Ashburton 1, 13 km east north east of Peak Edgar\tWA\t656\t13027\t25463\n10009903\t-23.0\t117.1\tNorthern Star Resources nominal LTE site Ashburton 2, 7 km west south west of Dolphin Hill\tWA\t157\t22480\t27407\n10009897\t-19.0\t129.7\tNorthern Star Resources nominal LTE site Tanami 2 Tanami Desert\tNT\t836\t25019\t25979\n10000187\t-38.34\t145.081063\tNBNCo 325 Myers Road Merricks North\tVIC\t327\t16288\t28689\n10000353\t-38.11\t145.2819\tCranbourne Park Shopping Centre High Street CRANBOURNE\tVIC\t163\t27689\t20374\n10000829\t-37.83\t144.899\tWestgate Bridge Structure_3 Westgate Bridge Freeway PORT SPOTSWOOD\tVIC\t552\t22402\t21001\n10007006\t-37.8\t144.7736\t176 Swann Dr DERRIMUT\tVIC\t1194\t14464\t26477\n10008365\t-37.72\t145.048389\tBorchardt Library La Trobe University The Agora Bundoora\tVIC\t1204\t18998\t27328\n10011002\t-34.74\t148.8444\tADFA site Yass Lachlan Valley Way Yass\tNSW\t1292\t26867\t21033\n10003498\t-34.47\t150.818413\tDTRS Site Kembla Grange Cnr W Dapto Rd and Prices Hwy KEMBLA GRANGE\tNSW\t481\t23851\t23735\n10007610\t-33.87\t116.0675\tGPS Transmitter Talisman Lithium Mine Maranup Ford Road GREENBUSHES\tWA\t705\t29605\t25214\n10010507\t-33.85\t151.0554\t30 Carter Street LIDCOMBE\tNSW\t349\t19070\t22918\n10007094\t-31.11\t150.89765\tTelstra Site Opposite 88 Duri Road West Tamworth\tNSW\t657\t27782\t24685\n10000636\t-30.36\t116.2896\tOff Edawa Road\tWA\t1399\t26501\t19005\n10009899\t-30.35\t121.933333\tNorthern Star Resources nominal LTE site Kanowna Belle East 42 km north east of Kanowna\tWA\t645\t27491\t25520\n10006332\t-30.16\t131.5803\tOptus Rooftop Site Maralinga Maralinga Village MARALINGA\tSA\t350\t14632\t26573\n10003562\t-28.87\t114.0\tKempton Fisheries Jackson Island ABROLHOS ISLANDS\tWA\t1230\t14248\t18627\n10009909\t-27.83\t153.334\tKerkin Road South COOMERA\tQLD\t833\t21215\t27075\n10006547\t-27.08\t141.907\tDurham Downs Homestead Comms Site Durham Downs Station\tQLD\t580\t22328\t23036\n10010405\t-26.75\t148.55294\tMarch IT Facility Roma Feedlot \u0026 Spelling Yards off Binya Lane MOUNT ABUNDANCE\tQLD\t1143\t19483\t23646\n10000233\t-26.71\t153.01285\tNBN Co 711 Ilkley Road TANAWHA\tQLD\t893\t19222\t28336\n10006538\t-25.55\t140.482\tParakunda Comms Site Durrie Station\tQLD\t149\t23954\t28182\n10005246\t-25.34\t152.7897\t2992 Maryborough Harvey Road SUNSHINE ACRES\tQLD\t283\t21587\t19925\n10006811\t-24.34\t133.458668\tOptus Rooftop site Stuarts Well Roadhouse 8844 Stuart Highway STUART WELL\tNT\t876\t25564\t26335\n10005015\t-22.96\t118.76\tJuna Downs Mast 108km WNW of Newman Newman\tWA\t248\t16671\t26189\n10010481\t-22.55\t119.972278\tTrailer 2 Roy Hill Mine ROY HILL\tWA\t758\t23387\t20752\n10004116\t-21.49\t114.99\tENSCO 107 Approximately 21km SW of ONSLOW\tWA\t404\t18467\t26904\n10009937\t-21.26\t114.04\tENSCO DPS-1 Offshore Australia\tEXT\t926\t25280\t26677\n10006878\t-21.21\t114.26\tAtwood Osprey Site Atwood Osprey Offshore Australia\tWA\t1254\t18044\t27492\n10008403\t-20.56\t145.55\tDGPS Site off Glen Houghton Rd via PENTLAND\tQLD\t452\t28637\t18630\n10001661\t-19.9\t130.178\tRamelius Resources Site 45k North East of Tanami Tanami\tNT\t405\t21468\t26030\n10008408\t-19.79\t147.22\tDGPS Site DGPS Site cnr Cussen and Granshaw Rds CLARE\tQLD\t1429\t25474\t25354\n10009895\t-19.75\t129.366667\tNorthern Star Resources nominal LTE site Tanami 4 Tanami Desert\tNT\t1054\t17790\t25830\n10010220\t-19.46\t116.56\tMcDermott DLV2000 Offshore Australia\tEXT\t450\t10234\t22519\n10009896\t-19.25\t129.166667\tNorthern Star Resources nominal LTE site Tanami 3 Tanami Desert\tNT\t421\t11731\t24236\n10009739\t-17.53\t128.3071\tOptus Site Purnululu National Park Reserve 39869 ORD RIVER\tWA\t1278\t17946\t27764\n10007618\t-12.67\t124.539\tNoble Tom Prosser Offshore Australia Timor Sea\tWA\t493\t22117\t25870\n10010885\t-42.8827\t147.3277\tH\u0026M Cat \u0026 Fiddle Arcade 93 Murray Street HOBART\tTAS\t970\t26935\t25121\n10007294\t-42.8823\t147.329101\tJettech Site 34 Elizabeth Street Hobart\tTAS\t1435\t29693\t19340\n10002567\t-42.8341\t147.4662\tAnaconda Cambridge Tasman Hwy CAMBRIDGE\tTAS\t711\t17040\t24960\n10010563\t-42.7921\t147.26671\t100 Cadbury Rd CLEREMONT\tTAS\t795\t16627\t19182\n10009655\t-42.5306\t147.978\tAquaculture Barge Okehampton Bay near Triabunna\tTAS\t612\t14865\t27294\n10010472\t-42.3886\t146.5032\tTelstra Site Wayatinah Community Centre Third Street Wayatinah\tTAS\t1403\t22065\t21228\n10003968\t-42.2869\t146.897825\tComms site 2.56km ESE of Hermitage HERMITAGE\tTAS\t479\t23308\t25203\n10005471\t-42.2703\t146.54465\tTelstra Site Bradys Lake Bradys Tower Rd, Tarraleah Bradys Sugarloaf\tTAS\t806\t24323\t28372\n10009706\t-41.586\t145.72\tTasmanet Site off Belvoir Rd West Coast off Belvoir Rd West Coast\tTAS\t1271\t22842\t18834\n10000557\t-41.5461\t146.41005\t80 Baldocks Rd Mole Creek\tTAS\t960\t17345\t18836\n10006786\t-41.5124\t146.64953\tDeloraine 36 Archer St DELORAINE\tTAS\t411\t17597\t22257\n10004946\t-41.4676\t147.1585\tColes Meadow Mews Shopping Centre 102 - 106 Hobart Rd KINGS MEADOWS\tTAS\t1233\t26556\t27887\n10002510\t-41.2341\t147.00945\tMount Direction optus monopole 71 Bullocks Head Road 7252 Mount Direction\tTAS\t748\t18439\t22116\n10004699\t-41.2286\t146.41077\tLatrobe Central 52 Hawkins Street West Latrobe\tTAS\t506\t28291\t19000\n10009686\t-40.683\t144.689\tCape Grim RASS Site Woolnorth\tTAS\t480\t22149\t29731\n10000004\t-39.5964\t143.9339\tCape Wickham Links Clubhouse KING ISLAND\tTAS\t1266\t18265\t23929\n10000847\t-38.8133\t146.1019\tTelstra Exchange 285 Waratah Road Sandy Point\tVIC\t1193\t19034\t25678\n10008493\t-38.522\t143.9732\tLorne North 2 Holliday Road LORNE\tVIC\t711\t19288\t25337\n10009484\t-38.468\t144.10447\tAIREYS INLET-V Split Point Light Station AIREYS INLET\tVIC\t727\t11062\t27269\n10004568\t-38.425\t143.54494\tTelstra Exchange site 410 G Barrys Road BARONGAROOK WEST\tVIC\t297\t20055\t29436\n10002273\t-38.3946\t143.68778\t420 Yeo-Yeodene Road Yeodene\tVIC\t472\t12958\t26476\n10004715\t-38.3842\t142.59992\tAllansford Allansford Recreation Reserve, ,Zeigler Parade ALLANSFORD\tVIC\t197\t29573\t29911\n10003109\t-38.3803\t142.5205\tAldi Gateway Plaza Warrnambool 154 Raglan Parade Warrnambool\tVIC\t313\t11177\t26492\n10008078\t-38.3791\t142.50816\tTelstra Site 2-64 Grafton Road Warrnambool\tVIC\t1046\t12851\t26082\n10002213\t-38.354\t144.9506\t795 Arthurs Seat Road ARTHURS SEAT\tVIC\t338\t10799\t18072\n10008464\t-38.348\t144.937\tMc Crae Freeway 2 CORNELL ST MCCRAE\tVIC\t761\t14331\t19500\n10004472\t-38.3429\t143.585742\t95-97 Gellibrand Street COLAC\tVIC\t353\t17974\t20406\n10000451\t-38.3341\t143.79031\tNBN Co Cnr Barray \u0026 Strachan Streets Birregurra\tVIC\t593\t29755\t22094\n10005040\t-38.3303\t144.9872\tAldi Dromana 120 Napean Hwy DROMANA\tVIC\t1006\t26164\t23417\n10005601\t-38.3124\t143.649992\t20 Warrowie Rd Colac\tVIC\t1317\t19173\t21418\n10008770\t-38.2778\t144.4535\tOB Site 13th Beach Golf Links 36 Fourteenth Road BARWON HEADS\tVIC\t1168\t27985\t18388\n10000791\t-38.2218\t145.0459\t99 Tanti Avenue MORNINGTON\tVIC\t1256\t26150\t18820\n10007176\t-38.187\t146.48831\tM8372 Traralgon West Scrubby Lane MARYVALE\tVIC\t329\t10234\t25081\n10010440\t-38.1856\t144.3801\t63 Leather Street BREAKWATER\tVIC\t1237\t29651\t23493\n10004132\t-38.1838\t145.0893\tcnr Mt Eliza Way and Canadian Bay Road MT ELIZA\tVIC\t918\t23228\t23755\n10002162\t-38.1574\t145.16951\tTelstra IBC McClelland Drive Peninsula Private Hospital Langwarrin\tVIC\t773\t14209\t23629\n10010422\t-38.1532\t145.1341\t47-49 Moorooduc Highway FRANKSTON\tVIC\t284\t22921\t27822\n10000719\t-38.1515\t144.365917\tUniversity Hospital Geelong Helipad Ryrie St GEELONG 3220\tVIC\t1238\t29357\t27529\n10010704\t-38.148\t144.3563\t73 Ryrie Street GEELONG\tVIC\t993\t13607\t24936\n10010456\t-38.1458\t144.3539\tcnr Latrobe Terrace and Gordon Avenue GEELONG\tVIC\t276\t26342\t29634\n10009959\t-38.1454\t144.3612\t26 Moorabool Street GEELONG\tVIC\t1153\t16152\t26616\n10010936\t-38.1238\t144.351\tGeelong Arena 110 Victoria Street NORTH GEELONG\tVIC\t652\t26537\t18268\n10009330\t-38.1238\t145.1508\tPines Forest Aquatic Centre 61 Forest Drive FRANKSTON NORTH\tVIC\t789\t27689\t26015\n10010368\t-38.1236\t145.31349\tNBN Co Site 1B/369 Casey Fields Blvd Cranbourne East\tVIC\t1446\t14340\t22026\n10004085\t-38.1025\t147.158611\tRAAF Interim Radar Site East Sale Talbots Road SALE\tVIC\t1027\t25713\t23203\n10001424\t-38.0781\t145.250748\tAldi Lyndhurst Marriot Blvd LYNDHURST\tVIC\t1123\t29286\t28148\n10007163\t-38.0756\t145.12337\tCarrum Central -O 506 Station Street CARRUM\tVIC\t1322\t14547\t20305\n10010705\t-38.0648\t145.4584\t4 Olympic Way PAKENHAM\tVIC\t148\t29938\t22261\n10010358\t-38.0466\t145.24\tM2 Industry Park cnr National Drive and Bayliss Road DANDENONG SOUTH\tVIC\t1408\t16595\t27250\n10008301\t-38.0363\t145.2362\t29 National Drive DANDENONG SOUTH\tVIC\t526\t21016\t19172\n10010757\t-38.0348\t145.1977\t42-46 Villas Road DANDENONG SOUTH\tVIC\t618\t10976\t23355\n10005573\t-38.0168\t145.38457\tGuys Hill 335 Beaconsfield Emerald Road BEACONSFIELD\tVIC\t891\t13758\t24265\n10009153\t-38.0118\t140.95955\tTelstra Site 13 Dry Creek Road Donovans DC of Grant\tSA\t599\t26842\t26467\n10011051\t-38.0111\t145.116\t71-81 Canterbury Road BRAESIDE\tVIC\t1462\t26066\t29168\n10000428\t-37.9887\t145.2439\tPool in the Park cnr Kidds Road and Tristiana Street DOVETON\tVIC\t678\t26936\t21058\n10000516\t-37.9867\t144.3509\tBarwon Prison 1140 Bacchus Marsh Road LARA\tVIC\t497\t29604\t21516\n10000567\t-37.9867\t145.1289\tSt Marks Primary School 4-6 Dimar Court DINGLEY VILLAGE\tVIC\t712\t29058\t22688\n10000179\t-37.9661\t145.0564\t2-6 Railway Road CHELTENHAM\tVIC\t674\t16817\t26888\n10000882\t-37.9659\t145.0571\tThe Village Cheltenham 1228 Nepean Hwy CHELTENHAM\tVIC\t1033\t24771\t25845\n10004279\t-37.9651\t144.7069\t50 Quay Boulevard WERRIBEE SOUTH\tVIC\t1379\t10129\t18454\n10001465\t-37.9591\t145.054976\tAldi Southland 1239 Nepean Highway CHELTENHAM\tVIC\t263\t11623\t23675\n10005706\t-37.9584\t145.0513\tMyer Westfield Southland 1156 Nepean Highway CHELTENHAM\tVIC\t943\t21098\t28440\n10010954\t-37.9568\t145.151903\tSpringvale Library 411 Springvale Road Springvale\tVIC\t991\t19999\t28121\n10009183\t-37.9535\t145.0477\tVista Kingston Park 1144 Nepean Hwy HIGHETT\tVIC\t214\t27828\t19505\n10010908\t-37.9502\t145.0078\t6 Fernhill Road SANDRINGHAM\tVIC\t1309\t24844\t19840\n10010755\t-37.949\t145.0787\tShop 7 430 Warrigal Road HEATHERTON\tVIC\t1375\t22607\t24786\n10010306\t-37.9391\t145.002\t293-295 Hampton Street HAMPTON\tVIC\t411\t16383\t29237\n10010195\t-37.9343\t145.0035\t514-518 Hampton Street HAMPTON\tVIC\t321\t20166\t29067\n10009358\t-37.9331\t145.0325\t336-338 South Road HAMPTON EAST\tVIC\t1487\t26158\t20068\n10010640\t-37.9209\t145.1403\tM-City cnr Dandenong and Blackburn Roads CLAYTON\tVIC\t539\t28351\t25287\n10005856\t-37.9198\t145.03905\t79/83 Mitchell St Bentleigh\tVIC\t930\t16407\t28253\n10000030\t-37.9192\t145.3463\tBelgrave Heights Christian School Wattle Valley Road BELGRAVE\tVIC\t197\t24131\t24715\n10002772\t-37.9172\t145.0312\t261 Centre Road BENTLEIGH\tVIC\t1490\t17506\t19997\n10000364\t-37.9158\t145.0608\tGlen Eira Sports and Aquatic Centre 200 East Boundary Road BENTLEIGH EAST\tVIC\t1003\t26970\t28905\n10000138\t-37.914\t145.132754\t21 Wellington Rd Clayton\tVIC\t814\t12394\t21563\n10000843\t-37.911\t145.1297\t18 Innovation Walk Monash University CLAYTON\tVIC\t890\t10657\t27340\n10010267\t-37.9094\t144.6638\tMacKillop Catholic Regional College 1 - 29 Russell St WERRIBEE\tVIC\t1245\t27263\t18784\n10000874\t-37.9083\t145.2388\t949 Stud Road ROWVILLE\tVIC\t564\t24305\t21058\n10010473\t-37.9044\t145.1598\tVillage Green Hotel cnr Springvale and Ferntree Gully Roads MULGRAVE\tVIC\t1438\t16884\t26794\n10010815\t-37.9038\t144.6562\t116 Watton Street WERRIBEE\tVIC\t1270\t26266\t29927\n10010165\t-37.9019\t142.7887\tSalt Creek Wind Farm off Woorndoo-Chatsworth Road WOORNDOO\tVIC\t1355\t28223\t28073\n10010633\t-37.8989\t145.0945\t89 Atherton Road OAKLEIGH\tVIC\t1231\t19832\t29852\n10005839\t-37.8979\t144.98963\tTelstra Street Cell 382 St Kilda Street BRIGHTON\tVIC\t1418\t20710\t20183\n10001088\t-37.8958\t144.753035\tAldi Sanctuary Lakes 300 Point Cook Road Point Cook\tVIC\t1294\t16499\t29480\n10008757\t-37.8916\t145.173288\tWIA Site Mt View Waverley Road Glen Waverley\tVIC\t590\t12260\t19241\n10002505\t-37.8905\t145.0655\t401 Neerim Road CARNEGIE\tVIC\t595\t17589\t26286\n10004702\t-37.8892\t145.0594\t316-320 Neerim Road CARNEGIE\tVIC\t398\t22663\t22858\n10005401\t-37.8886\t145.0541\t247 Neerim Road CARNEGIE\tVIC\t1141\t11971\t21572\n10001645\t-37.8876\t145.0813\tMyer Chadstone Shopping Centre 1341 Dandenong Road CHADSTONE\tVIC\t870\t24968\t18096\n10002193\t-37.887\t145.0831\ttoys R Us Chadstone Shopping Centre 1341 Dandenong Rd CHADSTONE\tVIC\t643\t14469\t26741\n10002276\t-37.8848\t145.0846\tShop m018 Chadstone Shopping Centre 1341 Dandenong Road CHADSTONE\tVIC\t929\t24749\t18224\n10010805\t-37.8841\t145.0559\t1060 Dandenong Road CARNEGIE\tVIC\t535\t25657\t22696\n10005820\t-37.8815\t145.29087\tTXA Ferntree Gully Site Monopole 1 Bruce Crescent FERNTREE GULLY\tVIC\t804\t17518\t18331\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926693374_1839869185",
+ "id": "paragraph_1658926693374_1839869185",
+ "dateCreated": "2022-07-27T12:58:13+0000",
+ "dateStarted": "2022-08-16T04:46:57+0000",
+ "dateFinished": "2022-08-16T04:47:00+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Create a dataframe object of NEW DEVELOPMENT ROLLOUT table",
+ "text": "%python\n\nNEW_DEVELOPMENT_ROLLOUT_TABLE \u003d oml.sync(query\u003d\u0027SELECT LOC_UID, DEVELOPMENT_NAME, STATUS, DEVELOPMENT_SHAPE FROM NEW_DEVELOPMENT_ROLLOUT\u0027)\nnew_site_df \u003d pd.DataFrame(NEW_DEVELOPMENT_ROLLOUT_TABLE.pull())\nz.show(new_site_df)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:52+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {
+ "0": {
+ "graph": {
+ "mode": "table",
+ "height": 300.0,
+ "optionOpen": false,
+ "setting": {
+ "table": {
+ "tableGridState": {},
+ "tableColumnTypeState": {
+ "names": {
+ "LOC_UID": "number",
+ "DEVELOPMENT_NAME": "string",
+ "STATUS": "string",
+ "DEVELOPMENT_SHAPE": "string"
+ },
+ "updated": false
+ },
+ "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
+ "tableOptionValue": {
+ "useFilter": false,
+ "showPagination": false,
+ "showAggregationFooter": false
+ },
+ "updated": false,
+ "initialized": false
+ }
+ },
+ "commonSetting": {}
+ }
+ }
+ },
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TABLE",
+ "data": "LOC_UID\tDEVELOPMENT_NAME\tSTATUS\tDEVELOPMENT_SHAPE\n8\tMandalay\tReady for service\tPOLYGON ((144.9582 -37.46798, 144.9567 -37.47636, 144.95571 -37.48181, 144.93863 -37.47984, 144.93726 -37.47967, 144.93966 -37.4656, 144.94151 -37.46591, 144.95816 -37.46764, 144.9582 -37.46798))\n23\tBrighton\tReady for service\tPOLYGON ((115.70471 -31.65684, 115.70459 -31.65681, 115.70434 -31.6566, 115.70414 -31.6564, 115.70306 -31.65532, 115.70213 -31.65461, 115.69924 -31.65204, 115.69808 -31.65102, 115.69702 -31.64993, 115.69682 -31.6497, 115.69669 -31.64946, 115.69645 -31.64893, 115.69539 -31.64694, 115.69497 -31.64612, 115.69466 -31.64546, 115.69396 -31.644, 115.69356 -31.64307, 115.69357 -31.6427, 115.69425 -31.64246, 115.69421 -31.64154, 115.69459 -31.64143, 115.69465 -31.64128, 115.69502 -31.64128, 115.6952 -31.64113, 115.69545 -31.64108, 115.69555 -31.641, 115.69588 -31.64097, 115.69603 -31.64088, 115.69629 -31.64088, 115.6963 -31.64073, 115.69678 -31.64057, 115.69712 -31.6405, 115.69716 -31.63908, 115.69727 -31.63888, 115.6974 -31.63878, 115.69792 -31.63926, 115.698 -31.63926, 115.69823 -31.63901, 115.69823 -31.63821, 115.70003 -31.63822, 115.70118 -31.63794, 115.70272 -31.64007, 115.70373 -31.64136, 115.70389 -31.64154, 115.7038 -31.6417, 115.70388 -31.64186, 115.70411 -31.64197, 115.7042 -31.64195, 115.70479 -31.64276, 115.70495 -31.64293, 115.70508 -31.64286, 115.70535 -31.6427, 115.70539 -31.64259, 115.70538 -31.64246, 115.70542 -31.6416, 115.70548 -31.64151, 115.7062 -31.64171, 115.7071 -31.64192, 115.70714 -31.64209, 115.70722 -31.64305, 115.70795 -31.64303, 115.7089 -31.64302, 115.70894 -31.64294, 115.709 -31.64273, 115.709 -31.6424, 115.70906 -31.64229, 115.70919 -31.64228, 115.70992 -31.64251, 115.70998 -31.64253, 115.71002 -31.64256, 115.71071 -31.64256, 115.71109 -31.64246, 115.7113 -31.6425, 115.7119 -31.64263, 115.71269 -31.64281, 115.71277 -31.64315, 115.71328 -31.64326, 115.71329 -31.64343, 115.71373 -31.64344, 115.71373 -31.64352, 115.71373 -31.64352, 115.71413 -31.64352, 115.71414 -31.64368, 115.71457 -31.64368, 115.71458 -31.64386, 115.71496 -31.64385, 115.71495 -31.64423, 115.71564 -31.64424, 115.71564 -31.64454, 115.71586 -31.64454, 115.71588 -31.64561, 115.71627 -31.64561, 115.71628 -31.64629, 115.71645 -31.64629, 115.71645 -31.64656, 115.71624 -31.64656, 115.71624 -31.64669, 115.71624 -31.64854, 115.71584 -31.64861, 115.71584 -31.64934, 115.71612 -31.64933, 115.71612 -31.64944, 115.71614 -31.65012, 115.71668 -31.65014, 115.71669 -31.65127, 115.71671 -31.65148, 115.71654 -31.65158, 115.71641 -31.65158, 115.71627 -31.65162, 115.71618 -31.65158, 115.71609 -31.65161, 115.71597 -31.65151, 115.71586 -31.6516, 115.71557 -31.65184, 115.71542 -31.65171, 115.71516 -31.6519, 115.71511 -31.65198, 115.71458 -31.6523, 115.71461 -31.65267, 115.71302 -31.6527, 115.71224 -31.65299, 115.71294 -31.65392, 115.7131 -31.65397, 115.71339 -31.65435, 115.7129 -31.65468, 115.71217 -31.65499, 115.71089 -31.65541, 115.7091 -31.65559, 115.70778 -31.6557, 115.70714 -31.65582, 115.7067 -31.65595, 115.70626 -31.65611, 115.70533 -31.65659, 115.70471 -31.65684))\n119\tArcadia\tReady for service\tPOLYGON ((145.43561612126868 -38.070844946421779, 145.43411408422352 -38.077567863893748, 145.43192540166396 -38.078175936505247, 145.42973671911346 -38.078040809694961, 145.40716324803984 -38.074662558297007, 145.39772187231441 -38.073311214044089, 145.394975290284 -38.073040942197693, 145.39282952306633 -38.072500395508129, 145.39347325322984 -38.070844946421779, 145.40033970831024 -38.071824706528389, 145.40081177709743 -38.069425960242491, 145.40282879827163 -38.069831387673887, 145.40300045964798 -38.068446168006204, 145.40312920569144 -38.068344809440426, 145.40823613164869 -38.0692908172665, 145.40879403112851 -38.069257031483147, 145.41051064490085 -38.06898674465662, 145.41484509466909 -38.0696962454469, 145.41553174017446 -38.07027059818914, 145.41608963964529 -38.069459745947832, 145.41690503118514 -38.06912188819436, 145.41797791479397 -38.068885386839128, 145.41887913702647 -38.068344809440426, 145.41935120581365 -38.067871800940182, 145.4351440524905 -38.070946301524863, 145.43561612126868 -38.070844946421779))\n37\tSpringfield Central\tReady for service\tPOLYGON ((152.91246017602205 -27.682974884308496, 152.91265865949379 -27.68373493962827, 152.91295370248017 -27.684946266861616, 152.91324338106003 -27.686395091591351, 152.91336676267002 -27.687297628427526, 152.91336676267002 -27.687791645430448, 152.91301807550192 -27.68826665967261, 152.9121168532694 -27.688903175516757, 152.91122635987685 -27.689406685421048, 152.9102500358006 -27.689881692636131, 152.91015347627697 -27.69024269673816, 152.91000863698704 -27.690570449427678, 152.90983161119522 -27.691273451878441, 152.90987452653704 -27.691425451813458, 152.90999254373162 -27.69162970139266, 152.91043242601691 -27.69228994741793, 152.9093273558972 -27.692527445011063, 152.90956875471073 -27.693510679551785, 152.9081042685919 -27.69380517319814, 152.90805062441015 -27.693619927287248, 152.907825318852 -27.693653176576522, 152.90750345377026 -27.69249894532712, 152.90859779504999 -27.692285197460652, 152.90843686249565 -27.691643951349427, 152.90800770906827 -27.691729451046214, 152.90766975073109 -27.690190446216157, 152.90674707082766 -27.690418448300665, 152.90612479834405 -27.69036144782417, 152.90586730627507 -27.69098845142878, 152.90311535981124 -27.691111951716945, 152.90255209593388 -27.690746200463359, 152.90172061113864 -27.690518199063305, 152.90062626984988 -27.689857942325354, 152.8996392169247 -27.688375912655758, 152.89955875067449 -27.687853397397259, 152.89745589880764 -27.687264377201053, 152.89481660513187 -27.685991322695347, 152.89470931676829 -27.68169702937703, 152.89599141267084 -27.67997736457507, 152.89504727509646 -27.67724104653092, 152.89496144440383 -27.674998734813204, 152.89571246293093 -27.675041491186995, 152.89583048012545 -27.674898969873816, 152.89615234520724 -27.674775451253229, 152.8963883796053 -27.674765949814777, 152.89726814415789 -27.67483245986493, 152.89835175659769 -27.674870465589038, 152.90170988228968 -27.675069995427158, 152.90305098679849 -27.675012986938604, 152.90508946564361 -27.674737445495293, 152.90525039818897 -27.675069995427158, 152.90566882279435 -27.675507059511183, 152.90613016274156 -27.676058137821432, 152.90645202782332 -27.676324174631564, 152.90726741936317 -27.677008266310562, 152.90811499741389 -27.6779488853742, 152.90875872757741 -27.678984507096608, 152.90928444054637 -27.679564070930788, 152.91135510591135 -27.681768285623697, 152.91229924348568 -27.682737365935935, 152.91246017602205 -27.682974884308496))\n35\tYarrabilba\tReady for service\tPOLYGON ((153.101112401 -27.797998206, 153.097860177 -27.807122487, 153.097715464 -27.8163131, 153.100598081 -27.821068293, 153.103789404 -27.825046709, 153.106078824 -27.830224804, 153.108248251 -27.836106915, 153.110692137 -27.837863953, 153.116288014 -27.840655525, 153.119923205 -27.844817942, 153.122317372 -27.853523235, 153.127785181 -27.851776938, 153.131234286 -27.851150309, 153.135634115 -27.849740655, 153.138235543 -27.848667877, 153.141702556 -27.847075291, 153.152204703 -27.844959644, 153.15548911 -27.843380913, 153.158613317 -27.841545667, 153.161936609 -27.84058971, 153.156360679 -27.838491612, 153.15709719 -27.834509947, 153.150360063 -27.83270459, 153.151126372 -27.827536316, 153.151689864 -27.822563851, 153.14849171 -27.820801492, 153.148374771 -27.817968784, 153.139018666 -27.81580407, 153.139814105 -27.808556369, 153.126485712 -27.805759965, 153.124678962 -27.803584281, 153.120764096 -27.80295276, 153.121396647 -27.797353389, 153.100468927 -27.793620173, 153.09982846 -27.793327332, 153.101112401 -27.797998206))\n63\tElliot Springs\tReady for service\tPOLYGON ((146.86272523475841 -19.401424360582585, 146.86598680091777 -19.370253030825211, 146.87276742530554 -19.370900807465254, 146.87448403907788 -19.354705619195496, 146.87491319252322 -19.354300718879195, 146.87705895973193 -19.356811084636384, 146.87971971107862 -19.358349676807865, 146.88916108680405 -19.359321411753072, 146.90006158424185 -19.367580924969729, 146.88495538307035 -19.385070277111986, 146.88341043068334 -19.402557751012733, 146.86272523475841 -19.401424360582585))\n73\tAlkimos Beach\tReady for service\tPOLYGON ((115.681571085 -31.603789876, 115.66484586 -31.60441615, 115.661566552 -31.610171621, 115.66333228 -31.61274436, 115.66392473 -31.616089765, 115.663816018 -31.618554753, 115.663953044 -31.620753676, 115.665543293 -31.623223779, 115.666318538 -31.625258444, 115.667624539 -31.627593927, 115.669081749 -31.630469262, 115.669316217 -31.631381115, 115.67351817 -31.63133169, 115.684710627 -31.631224653, 115.684558817 -31.62481191, 115.6851295 -31.623932319, 115.685971217 -31.622380167, 115.68884267 -31.62192083, 115.690931109 -31.621406698, 115.692879156 -31.619809412, 115.693845515 -31.619494743, 115.698676203 -31.619372823, 115.701569632 -31.62056546, 115.702742506 -31.621367414, 115.705721617 -31.623525252, 115.707237508 -31.624035159, 115.708668761 -31.6242125, 115.708622933 -31.617427904, 115.703317867 -31.603111134, 115.682776791 -31.60374249, 115.681571085 -31.603789876))\n274\tAlkimos Vista\tReady for service\tPOLYGON ((115.6701798417717 -31.603299491660572, 115.70301008012855 -31.602184683770115, 115.70869636323656 -31.617425327227426, 115.70871782090747 -31.624423491706466, 115.69942664887844 -31.61950838680848, 115.69363307740687 -31.619526659055179, 115.69202375199809 -31.620586443194664, 115.68962049272041 -31.621975107592277, 115.68923425462589 -31.622176096775345, 115.68929862763865 -31.622705975266779, 115.68635892656104 -31.623071406951702, 115.68573665406844 -31.623235850741583, 115.68496417787043 -31.624185964725744, 115.68477105882319 -31.631238430603442, 115.66945028093348 -31.631658638376962, 115.66438627031809 -31.622559802190811, 115.66327047136741 -31.613862090913443, 115.66816282060647 -31.621865476945167, 115.6739134767362 -31.619782470124438, 115.67897748735162 -31.618978490108461, 115.6807370164658 -31.616420325668148, 115.68369817522331 -31.615543224530459, 115.68489980485769 -31.614300650436409, 115.68678808000635 -31.614958485846515, 115.68738889482803 -31.612802230201872, 115.68558645037201 -31.609001251174902, 115.68039369371313 -31.606881407001882, 115.67490052965238 -31.606625560475315, 115.66914987352264 -31.608124080128952, 115.66155385759505 -31.611596167127558, 115.66103887346605 -31.610792116396794, 115.6701798417717 -31.603299491660572))\n66\tCalderwood Valley\tReady for service\tPOLYGON ((150.75436137069624 -34.555469949730963, 150.75773022521921 -34.556194500822592, 150.75906060088806 -34.554586342297874, 150.75910351623892 -34.549125440159777, 150.7581593786735 -34.546845540018772, 150.75678608765384 -34.546916235534937, 150.7540395056235 -34.544229763692627, 150.75094960084044 -34.545997189137637, 150.748996952679 -34.544159065894377, 150.74745200029196 -34.544653949222415, 150.7450916563561 -34.544883715482179, 150.74373982301634 -34.545802774175783, 150.74283860078384 -34.546014863202281, 150.741765717175 -34.548471521701948, 150.74133656372965 -34.548665930429195, 150.73929808488455 -34.54907241993569, 150.73740980972687 -34.549938412699241, 150.73346159806215 -34.554427291963435, 150.73534987320184 -34.554674703463647, 150.73436282029465 -34.563368983176353, 150.72972796311558 -34.56287421115659, 150.72895548691758 -34.56167260971268, 150.72835467209592 -34.562944893054329, 150.72577975144188 -34.576232022492285, 150.72629473557089 -34.577786760565317, 150.73041460862095 -34.57700939516365, 150.7350494658 -34.577574752539704, 150.73616526475067 -34.577292074332327, 150.73685191025604 -34.5727690922774, 150.74286005844579 -34.571496959237336, 150.74663660874316 -34.572910439191674, 150.74775240769381 -34.573758515629407, 150.74869654526816 -34.574394567280393, 150.75324557175458 -34.572345050093453, 150.75573466172489 -34.571779657150344, 150.75839541306263 -34.571779657150344, 150.75513384690325 -34.56697366190248, 150.75680754532476 -34.566761626302572, 150.75732252945377 -34.56559542083906, 150.76097033372562 -34.559340039708253, 150.75655005326473 -34.558173730175348, 150.75367472519991 -34.556866030345262, 150.75371764054174 -34.556866030344516, 150.75436137069624 -34.555469949730963))\n263\tEynesbury\tUnder construction\tPOLYGON ((144.5355847930891 -37.7910746733703, 144.53197990416805 -37.790922060790926, 144.53170095442815 -37.79348251900074, 144.52758108138707 -37.793143390561362, 144.529404983523 -37.778644194134444, 144.54755817413573 -37.779627855291615, 144.55086265563696 -37.783664120911816, 144.55622707366319 -37.784274629293243, 144.55734287261387 -37.785054715997774, 144.56172023773291 -37.784274629293243, 144.5624497985801 -37.786284183761765, 144.56097994804577 -37.786606385724, 144.56157003402748 -37.788141065264391, 144.56197772979291 -37.789090685260767, 144.56446681976328 -37.789226344264257, 144.56596885680847 -37.788683706756721, 144.57296405792337 -37.7893620030187, 144.57493816375575 -37.790582920599178, 144.57686935424627 -37.792244692668035, 144.57712684631525 -37.792956869256408, 144.57618270874093 -37.793295998552637, 144.57541023254291 -37.796517649227809, 144.57536731720106 -37.79841666170438, 144.5752814865084 -37.798993137976062, 144.5732215499834 -37.797908002434895, 144.5710757827747 -37.800400399388955, 144.56813608169708 -37.79890836233573, 144.54835210800465 -37.797450206097672, 144.5364860153216 -37.793804689577954, 144.53571353912361 -37.793770776951661, 144.5355847930891 -37.7910746733703))\n9\tOran Park\tReady for service\tPOLYGON ((150.72662 -33.99488, 150.7281 -33.99383, 150.73016 -33.99218, 150.73169 -33.99049, 150.73287 -33.99125, 150.7334 -33.99136, 150.73394 -33.99127, 150.73456 -33.99154, 150.73497 -33.99198, 150.73664 -33.99237, 150.7377 -33.99303, 150.7384 -33.99282, 150.73896 -33.99227, 150.73945 -33.99195, 150.73993 -33.99147, 150.74072 -33.99117, 150.74136 -33.99035, 150.74364 -33.99058, 150.74748 -33.99093, 150.74821 -33.99099, 150.75042 -33.98803, 150.75269 -33.98656, 150.75336 -33.9854, 150.75495 -33.98362, 150.75596 -33.98344, 150.75546 -33.98449, 150.75557 -33.98487, 150.75555 -33.98531, 150.75576 -33.98579, 150.75611 -33.98625, 150.75666 -33.98624, 150.75696 -33.98657, 150.75628 -33.98698, 150.75563 -33.98746, 150.75542 -33.98794, 150.75598 -33.98841, 150.75583 -33.98876, 150.75619 -33.98915, 150.75628 -33.99001, 150.75615 -33.9906, 150.75566 -33.99083, 150.75544 -33.99125, 150.75574 -33.99152, 150.75559 -33.99173, 150.75651 -33.99243, 150.75632 -33.993, 150.75684 -33.99335, 150.75664 -33.99371, 150.75604 -33.99389, 150.75608 -33.99453, 150.75636 -33.99499, 150.75598 -33.99543, 150.7563 -33.99574, 150.75626 -33.99625, 150.75581 -33.99672, 150.75508 -33.99684, 150.75538 -33.99752, 150.75499 -33.99768, 150.75469 -33.99805, 150.7548 -33.9983, 150.75523 -33.99862, 150.75531 -33.9989, 150.75551 -33.99915, 150.75533 -33.99933, 150.75538 -33.9996, 150.75566 -33.99969, 150.75576 -33.99988, 150.75553 -34.00036, 150.7551 -34.00034, 150.75497 -34.00072, 150.75454 -34.00084, 150.75413 -34.00113, 150.75385 -34.00163, 150.75357 -34.00171, 150.75317 -34.00219, 150.75323 -34.00276, 150.75297 -34.00326, 150.75314 -34.00376, 150.75222 -34.00438, 150.74821 -34.00572, 150.74782 -34.00529, 150.74418 -34.00737, 150.74304 -34.0078, 150.74106 -34.00844, 150.74012 -34.0086, 150.74031 -34.0094, 150.74074 -34.01063, 150.74151 -34.01267, 150.74111 -34.01287, 150.74053 -34.01308, 150.738 -34.01324, 150.73591 -34.01406, 150.73302 -34.01462, 150.73167 -34.01422, 150.73044 -34.01361, 150.72888 -34.01253, 150.72825 -34.01212, 150.7245 -34.01166, 150.72456 -34.00963, 150.72433 -34.00774, 150.72349 -34.00515, 150.72304 -34.00399, 150.72298 -34.00296, 150.72302 -34.00168, 150.72336 -34.00022, 150.72411 -33.99864, 150.72527 -33.99675, 150.72662 -33.99488))\n133\tSpringfield Rise\tReady for service\tPOLYGON ((152.89595519065821 -27.695522398191628, 152.89635215759267 -27.696282366168443, 152.89698515892519 -27.6970898263458, 152.89829407692315 -27.698524240869244, 152.89889489174479 -27.698638233267836, 152.89958153725016 -27.698913714406725, 152.90027891159545 -27.699350683061478, 152.90106211662442 -27.699911140297878, 152.9014483547279 -27.700129622847154, 152.90184532166239 -27.700538089049321, 152.90224228859685 -27.700699575265332, 152.90243540764411 -27.700927555399115, 152.90264998436226 -27.70142151072206, 152.90273581505494 -27.701573496525633, 152.90889416695012 -27.704717655344481, 152.90994559287907 -27.703235827430284, 152.91037474632438 -27.702741880319987, 152.91044984817708 -27.702390416591474, 152.9103854751643 -27.701791975746776, 152.91025672912983 -27.701725482116743, 152.91028891564068 -27.7016019938402, 152.90991340637714 -27.701003548671743, 152.90965591430816 -27.7003481049598, 152.90926967621365 -27.69917019622083, 152.90907655716637 -27.698752225547366, 152.90857230186836 -27.698258258143387, 152.9083469963102 -27.697944777669406, 152.90831480979935 -27.697783287376328, 152.90722046851957 -27.697688292974721, 152.90593300819259 -27.697099325841211, 152.90589009285074 -27.69687133771037, 152.90651236534333 -27.69622536875298, 152.90664111137781 -27.695427401822275, 152.90829335212845 -27.69516141154876, 152.90863667488111 -27.696130372996226, 152.90893708229194 -27.696396360907723, 152.90936623573728 -27.696073375502177, 152.90960227012636 -27.695674392210456, 152.90985976219537 -27.694971418099861, 152.91050349235888 -27.694249439976804, 152.91071806907706 -27.693869449573643, 152.91069661140614 -27.693432458973867, 152.90797148704667 -27.693869449573643, 152.90745650291768 -27.692539472743537, 152.90861521721018 -27.692254475600532, 152.90844355583383 -27.691570479421731, 152.90805731773935 -27.691646479208515, 152.90769253730676 -27.690183474014852, 152.90651236534333 -27.690392475956656, 152.90612612724883 -27.690354475633004, 152.90580426216707 -27.691038479431217, 152.90301476478589 -27.691114479588347, 152.90198479652787 -27.690392475956656, 152.90039692879 -27.689708468111938, 152.8995386218993 -27.688264437477702, 152.89653454780893 -27.68708639834254, 152.8946891880021 -27.68606035390032, 152.89477501869479 -27.681348025989148, 152.89606247902179 -27.679865880823613, 152.89447461128395 -27.676369458700144, 152.88988266944671 -27.675647357579404, 152.89061223030288 -27.672492859876254, 152.88842354774337 -27.671732726329545, 152.88567696571297 -27.67139066450849, 152.88254414558813 -27.671694719513962, 152.88211499214276 -27.675571346657765, 152.87696515083474 -27.676939535160493, 152.87185822486848 -27.678231697456734, 152.87155781745764 -27.679599852639054, 152.86979828834347 -27.68062595777964, 152.87160073280847 -27.682108092631655, 152.87035618782329 -27.686782386179317, 152.88057003974674 -27.692406474169655, 152.89117012977371 -27.697840283977445, 152.89134179115007 -27.694838422488946, 152.89595519065821 -27.695522398191628))\n17325842\tPart Section 4574 Goode Road Subdivision\tCheck with carrier\tMULTIPOLYGON (((131.148793088 -12.640363029, 131.148777952 -12.630311017, 131.148309952 -12.628445033, 131.148290144 -12.619535044500001, 131.143110848 -12.614419979500001, 131.133918944 -12.6144039585, 131.133932992 -12.624888963, 131.134289056 -12.6252710065, 131.136919936 -12.628095031500001, 131.141148832 -12.628091979, 131.14114992 -12.6326340065, 131.148485984 -12.640480023, 131.148793088 -12.640363029)), ((131.133562912 -12.628095031500001, 131.126177888 -12.628101969, 131.124642112 -12.6281040225, 131.124366016 -12.6281040225, 131.123564992 -12.6281050215, 131.12277408 -12.628106002, 131.12198208 -12.628107001, 131.121188992 -12.6281079815, 131.120394848 -12.6281089805, 131.11959888 -12.628109961, 131.11880688 -12.62811096, 131.11881696 -12.6425089735, 131.118904096 -12.642599975, 131.119394048 -12.6426300375, 131.133558944 -12.642622027, 131.133562912 -12.628095031500001)), ((131.14870704 -12.6418040125, 131.148492128 -12.641029029, 131.14114992 -12.633174003, 131.141153888 -12.642618956, 131.148438112 -12.6426200475, 131.148548992 -12.6425310255, 131.14870704 -12.6418040125)), ((131.148286912 -12.6182490355, 131.148276832 -12.6136420175, 131.148185024 -12.613552015, 131.14353312 -12.6135510345, 131.148286912 -12.6182490355)), ((131.136419168 -12.6280940325, 131.13393408 -12.625427979, 131.133938048 -12.628095031500001, 131.136419168 -12.6280940325)))\n54\tAtherstone\tReady for service\tPOLYGON ((144.58145 -37.70794, 144.58007 -37.71018, 144.58093 -37.71085, 144.57982 -37.71303, 144.58256 -37.7133, 144.58308 -37.71445, 144.58239 -37.71554, 144.58127 -37.71663, 144.58213 -37.71805, 144.58299 -37.7188, 144.58351 -37.7207, 144.58308 -37.7226, 144.58188 -37.72471, 144.58059 -37.72572, 144.58136 -37.72674, 144.581263669 -37.727394685, 144.58062394 -37.727913906, 144.579897506 -37.728205102, 144.580152951 -37.72865978, 144.580045317 -37.729274243, 144.579812075 -37.729694428, 144.579333815 -37.730018248, 144.57885404 -37.730309006, 144.578862308 -37.730757048, 144.579028682 -37.730980412, 144.579237179 -37.731299284, 144.579374167 -37.732065401, 144.578264073 -37.733281384, 144.596556641 -37.735211378, 144.59767 -37.72912, 144.60076 -37.71147, 144.58033 -37.70508, 144.58145 -37.70794))\n307\tSanctuary Cove\tUnder construction\tPOLYGON ((153.3576214596788 -27.869021570119873, 153.356374281298 -27.865787338769938, 153.35243607772102 -27.867023306218769, 153.35138445487397 -27.864376451687559, 153.35101878873218 -27.864437402556749, 153.35105016612619 -27.8642193558593, 153.35092848930137 -27.864071375804532, 153.350725488016 -27.864029201288457, 153.35012667391598 -27.862433832996572, 153.35006548180175 -27.862053742065097, 153.350157582516 -27.861678587130346, 153.3503894736472 -27.861355515546251, 153.3517454332912 -27.860061592080388, 153.35249410893795 -27.858967048294623, 153.35274595127095 -27.859170742989356, 153.35398528804708 -27.857959950145393, 153.3555892692257 -27.858291575600706, 153.35612918279912 -27.857992791118011, 153.3563898374799 -27.856996961065626, 153.35635053001738 -27.856988759095511, 153.3565618181253 -27.85685364225262, 153.35634906221171 -27.856591097189472, 153.35662554096848 -27.856414294321816, 153.35358011365111 -27.852651527311831, 153.35372855105737 -27.852480473578495, 153.35310681188489 -27.851712637370181, 153.35409861619647 -27.850022406539566, 153.35412334333978 -27.849977395797239, 153.35415701964882 -27.849902938757964, 153.35418331818494 -27.849826063746434, 153.35420199035804 -27.849747583705167, 153.35421286986141 -27.849667860086402, 153.35421534169666 -27.849629585368092, 153.35425275040961 -27.848693538731045, 153.354263740375 -27.848596305225122, 153.35430075960014 -27.848468317979503, 153.35436225771159 -27.848347939589335, 153.35444632079276 -27.848238965674668, 153.35455044667847 -27.848144561570596, 153.35462548578607 -27.848093554836357, 153.35598896199971 -27.847269169297782, 153.35603485447456 -27.847243328048563, 153.3561689973358 -27.847186211102205, 153.35631225538859 -27.847150731838433, 153.35640517896096 -27.8471400222202, 153.35717815799259 -27.847088653827274, 153.35723317241684 -27.847086525796588, 153.35738143693067 -27.847096701805082, 153.3575255050238 -27.847129632940543, 153.35766085125405 -27.847184338132866, 153.35768551485583 -27.847197180758545, 153.35860191230574 -27.847694096374791, 153.35863186134495 -27.847709723017015, 153.35871246168622 -27.847746067036677, 153.3599713099012 -27.848217262533776, 153.36193275703596 -27.849252236994012, 153.3631739979437 -27.849934286090452, 153.36436433553 -27.850791915016959, 153.364888974739 -27.851277457154261, 153.36558445956646 -27.851860201127362, 153.36633082049519 -27.852352821700947, 153.36767128296606 -27.853332138429348, 153.36778288327446 -27.853419569312575, 153.36788680338714 -27.853514331274528, 153.36798262181006 -27.853615613157221, 153.368311522681 -27.853990108040293, 153.36838745968447 -27.854081604855541, 153.36845754583689 -27.854176546959312, 153.36852169707359 -27.854274844329524, 153.36857974466133 -27.854376136403292, 153.368631435808 -27.854479972586415, 153.36867668644254 -27.854586262855257, 153.36871532782504 -27.854694646645303, 153.36874719090838 -27.854804673136652, 153.36877227475736 -27.854916071570273, 153.36879041093272 -27.855028571633802, 153.36880159788637 -27.855141722057013, 153.36880583468084 -27.855255252077892, 153.36880312037812 -27.855368890933391, 153.36879328592534 -27.855482187797953, 153.36877658164059 -27.855594871234814, 153.36875300597583 -27.855706489968625, 153.36872247454764 -27.855816863710693, 153.36868523706633 -27.85592554051216, 153.36864137635007 -27.856032249380192, 153.36859105897096 -27.856136719097375, 153.36853428369258 -27.856238588638444, 153.3682193943385 -27.856766069843026, 153.3681785430698 -27.85687132643751, 153.36817573610713 -27.856982528609826, 153.3682111060044 -27.857089296634072, 153.36828143547027 -27.857181349950917, 153.3683799950017 -27.857250041956004, 153.36849738192294 -27.857288809059231, 153.36862244412583 -27.857293890284136, 153.368743370736 -27.857264865902266, 153.36885212676685 -27.857228111988604, 153.36896552857729 -27.857202988513471, 153.36908106329369 -27.857189411932431, 153.36919764338131 -27.857187746171991, 153.36931367725856 -27.857197905234354, 153.36942765709634 -27.85721980290279, 153.36953799100365 -27.857253262935188, 153.36964333681451 -27.857297657148166, 153.36981311056755 -27.857348196470554, 153.36999207641722 -27.857343203855642, 153.37015795751788 -27.857283280573668, 153.37029017546956 -27.8571758828495, 153.37050958203704 -27.856920954046075, 153.37059691735081 -27.856791925002042, 153.37064994992795 -27.856648998474185, 153.37066610718415 -27.856499131079026, 153.37064466097181 -27.85634981598384, 153.3705865575825 -27.8562083613171, 153.37049475272175 -27.856081889273103, 153.37043752768452 -27.856026265083891, 153.37034386583068 -27.855944745120951, 153.37026031392497 -27.855856067782145, 153.37019799200124 -27.855754607411807, 153.370159257958 -27.85564414844027, 153.37014563459738 -27.855529199573478, 153.37015772281964 -27.8554140914677, 153.37019495130161 -27.855303248165974, 153.37025591121392 -27.855201095945649, 153.37033818719712 -27.855111612498561, 153.37043869176429 -27.85503814552807, 153.37055341466251 -27.854983593939377, 153.37067800851912 -27.854950225763144, 153.37080745198526 -27.854939137533222, 153.37094141473978 -27.8549516839551, 153.37112188641561 -27.854971957373046, 153.3713037832805 -27.854968038263465, 153.37148300230723 -27.854940208435377, 153.37165552484402 -27.854888930002197, 153.37181758566663 -27.854815296201448, 153.37196542204362 -27.854721122322768, 153.37221821460227 -27.854533250802831, 153.37232341544197 -27.854462116437276, 153.372435598641 -27.854400078942479, 153.37255376043552 -27.854347502033658, 153.37267689768564 -27.8543049299377, 153.37280392288989 -27.854272726601515, 153.37293383168574 -27.854251075239862, 153.37306536877 -27.854240250005027, 153.37319752978675 -27.854240434119664, 153.37332905789177 -27.85425145047164, 153.37345886405095 -27.854273211754858, 153.37358585953746 -27.85430572092173, 153.37478584121914 -27.854666647106967, 153.37492620555633 -27.854714101114503, 153.37611434888117 -27.855161061226998, 153.37628428135721 -27.855233433977453, 153.37644588594617 -27.855319457804, 153.37659790422779 -27.855418504382364, 153.37969519519376 -27.857639322630813, 153.37977624388324 -27.857704083393092, 153.37984894309562 -27.857776268033806, 153.38093751861805 -27.858979438756183, 153.38101763297314 -27.859087884919187, 153.38147613543885 -27.859860557126968, 153.3814843052028 -27.859873531299385, 153.38157637249893 -27.860070394259342, 153.38162693718081 -27.860278744136195, 153.38171529576846 -27.860923012744202, 153.38172113595164 -27.861155584467387, 153.38167604906039 -27.861674316093431, 153.3816383950481 -27.861876140824457, 153.38156192980477 -27.862069047371065, 153.38154928534286 -27.8620938122916, 153.38148453602858 -27.862236053175479, 153.38143320255418 -27.862382498929449, 153.38139578435292 -27.862532245634249, 153.3813723614455 -27.86268421001617, 153.38136494059609 -27.862837393725787, 153.38137008401532 -27.86299072320643, 153.38143454096718 -27.863793546048718, 153.38144475050024 -27.863958414167847, 153.38144884663976 -27.86412356995362, 153.38144699561138 -27.864288651926074, 153.38143894611159 -27.864453660780107, 153.38142494844115 -27.86461832505697, 153.381404834739 -27.864782554963973, 153.38137877154819 -27.864946079272467, 153.38134667445118 -27.865108717702235, 153.38130862686518 -27.865270379763469, 153.38121088294804 -27.865654595705809, 153.38117729888543 -27.865823285292869, 153.38116189853869 -27.865994181001692, 153.38116475943696 -27.866165477518773, 153.38118587692915 -27.866335821026809, 153.38134393670555 -27.867221870874925, 153.38056085879808 -27.867992195803545, 153.36932467092709 -27.868496400223492, 153.36891726489478 -27.870331296839115, 153.36687640413047 -27.870422122284, 153.36677406198075 -27.868611512805323, 153.3576214596788 -27.869021570119873))\n75\tHarpley\tReady for service\tPOLYGON ((144.625651148 -37.912572931, 144.626340218 -37.90889239, 144.621953286 -37.908351263, 144.623229814 -37.901229329, 144.598997471 -37.898326402, 144.597555364 -37.906417448, 144.596688951 -37.911478274, 144.601576481 -37.911991441, 144.601295313 -37.914289839, 144.602583748 -37.916121097, 144.604465182 -37.917459241, 144.606839982 -37.918195642, 144.609320817 -37.918736861, 144.625651148 -37.912572931))\n137\tWestbrook\tReady for service\tPOLYGON ((144.69124098091331 -37.834372936889345, 144.69955046444164 -37.8353982229159, 144.70257599621192 -37.835482956660279, 144.70506508617328 -37.835804944003613, 144.71939344671335 -37.837016620621313, 144.72082574633029 -37.826195559027411, 144.71900720861885 -37.826051493470523, 144.71911986139787 -37.82513624689166, 144.7209544923648 -37.825271839693919, 144.72130317953295 -37.82276333252922, 144.70554251935798 -37.821509046972714, 144.693644240191 -37.819860646039956, 144.69154675273961 -37.832059635909452, 144.69146092205594 -37.833347636613475, 144.69124098091331 -37.834372936889345))\n28\tJordan Springs\tReady for service\tGEOMETRYCOLLECTION (POLYGON ((150.73509684920933 -33.713721832632558, 150.74857226730117 -33.715542405921916, 150.74861518264302 -33.716042164385414, 150.74522487044914 -33.71564949726617, 150.74320784926593 -33.715899376549494, 150.73994628310658 -33.715756588476864, 150.73406688094235 -33.716327739344123, 150.73101989150115 -33.716327739344123, 150.73050490737211 -33.715399617254882, 150.72857371688161 -33.715149736516381, 150.72844497084714 -33.715899376549494, 150.73436728835318 -33.719718869369387, 150.73277942061532 -33.722146122290575, 150.735440171962 -33.722324594061028, 150.73728553175988 -33.7210395890298, 150.73857299208692 -33.721575010130522, 150.73827258467608 -33.722253205397521, 150.73634139418553 -33.723573886066454, 150.73638430953636 -33.7241092913596, 150.74007502914108 -33.723788048584481, 150.74222079634978 -33.726857652623387, 150.73535434126939 -33.731711686090179, 150.72762957930726 -33.730855111899821, 150.7270287644856 -33.728999171821073, 150.72539798140591 -33.728356721672782, 150.72050563215782 -33.72771426671504, 150.72290889143557 -33.721646399358789, 150.72634211898026 -33.71821964945633, 150.72625628828757 -33.716863189832765, 150.72514048933689 -33.714578577812922, 150.73123446821933 -33.714721367844604, 150.73492518782405 -33.715221131087723, 150.73509684920933 -33.713721832632558)), POLYGON ((150.7529925477441 -33.72444837965098, 150.75741282819598 -33.724698233324709, 150.760245240919 -33.727517960073968, 150.75930110334465 -33.729445314927467, 150.75852862714666 -33.738688878162677, 150.75200549481895 -33.739688122646477, 150.75166217206623 -33.740758728819578, 150.73908797620692 -33.739616748426769, 150.73981753706309 -33.737903749331331, 150.74200621961361 -33.736333470112932, 150.74333659528247 -33.736119338901709, 150.74591151593654 -33.734798851289142, 150.74771396040154 -33.735512630900381, 150.74762812970886 -33.732907306599927, 150.74917308210487 -33.73322851524113, 150.75101844190274 -33.7307301941155, 150.74814311383787 -33.728731484843763, 150.7529925477441 -33.72444837965098)))\n40\tThe Hermitage\tReady for service\tPOLYGON ((150.782646178 -33.999267672, 150.771383339 -34.009138271, 150.763992979 -34.0158181, 150.761280902 -34.019853454, 150.761541651 -34.019997437, 150.761976053 -34.020213471, 150.762150748 -34.020429119, 150.76267271 -34.020788837, 150.763193167 -34.020933202, 150.763713676 -34.021077582, 150.764148087 -34.021293606, 150.764495886 -34.021509481, 150.764843674 -34.02172535, 150.765104397 -34.021869308, 150.765365123 -34.022013261, 150.765715036 -34.022227712, 150.766150631 -34.022442804, 150.766585363 -34.022586432, 150.766933159 -34.022730094, 150.767280934 -34.022873747, 150.767541863 -34.023089356, 150.767976564 -34.02330485, 150.768324202 -34.023376553, 150.768671892 -34.023520163, 150.769019559 -34.023663762, 150.769367076 -34.023663546, 150.769801454 -34.023663276, 150.77014906 -34.023806857, 150.770672351 -34.023947874, 150.771021838 -34.024088768, 150.771371373 -34.02415734, 150.77171973 -34.024371048, 150.772153619 -34.024370678, 150.772413676 -34.024227088, 150.772586711 -34.023940178, 150.77275989 -34.023724939, 150.773193468 -34.023437501, 150.773453762 -34.023221644, 150.773627204 -34.023005982, 150.77397432 -34.022789954, 150.774147955 -34.022502031, 150.774408535 -34.022285593, 150.774669068 -34.022069191, 150.775016399 -34.021852546, 150.775188951 -34.021566759, 150.77544795 -34.02128163, 150.775707107 -34.020996322, 150.775966647 -34.0207823, 150.776139327 -34.020496576, 150.776399809 -34.020208583, 150.776573737 -34.019775928, 150.776660923 -34.01963102, 150.776922058 -34.019341119, 150.777182829 -34.019123864, 150.777443207 -34.018907541, 150.777790299 -34.018691064, 150.778137269 -34.018402783, 150.778484217 -34.018185904, 150.778831014 -34.01804059, 150.779090917 -34.017751508, 150.7793506 -34.017462667, 150.779437055 -34.017246468, 150.779436915 -34.016815448, 150.779436865 -34.016528541, 150.779436801 -34.016169899, 150.779436751 -34.015882979, 150.779263597 -34.015524303, 150.77909046 -34.015237366, 150.778917317 -34.014878709, 150.778917264 -34.01459179, 150.778917177 -34.01401795, 150.778917143 -34.013802715, 150.779090149 -34.013515796, 150.779176609 -34.013157185, 150.779263093 -34.012942007, 150.779436102 -34.01265507, 150.779609186 -34.012296195, 150.779522608 -34.012009193, 150.779436019 -34.01165038, 150.779782341 -34.011506424, 150.780128804 -34.011362407, 150.780475382 -34.011361998, 150.780908717 -34.011505175, 150.781168736 -34.011720418, 150.781515511 -34.011720152, 150.781862089 -34.011648246, 150.782035631 -34.011360718, 150.782035926 -34.011001292, 150.782122844 -34.010713651, 150.782296472 -34.01042592, 150.782470141 -34.010138122, 150.782730116 -34.00985067, 150.782990077 -34.009706973, 150.783337147 -34.009490977, 150.7838575 -34.009490698, 150.784204273 -34.009490643, 150.784550859 -34.009562597, 150.784810518 -34.00977844, 150.785070138 -34.009994244, 150.785416496 -34.01013809, 150.785676032 -34.010353832, 150.786022304 -34.010497634, 150.786368689 -34.010569517, 150.786801995 -34.010497587, 150.787408314 -34.010497571, 150.787841005 -34.010425854, 150.78801399 -34.01042593, 150.788705811 -34.010426225, 150.790004397 -34.010282588, 150.791304294 -34.009994898, 150.792083699 -34.009420255, 150.792257434 -34.008270905, 150.791226576 -34.006110903, 150.791918926 -34.003883117, 150.793477953 -34.003164931, 150.793207829 -34.001520251, 150.787603469 -33.994492341, 150.782646178 -33.999267672))\n86\tArmstrong Creek\tReady for service\tPOLYGON ((144.337797674 -38.219653803999996, 144.334329076 -38.21921024, 144.332997821 -38.225141406, 144.32758333 -38.224454796, 144.329290013 -38.214605253, 144.320190559 -38.214928417, 144.313901514 -38.215341411, 144.307436181 -38.215991669, 144.300853112 -38.217127332, 144.299590074 -38.223868443, 144.300598375 -38.223471576, 144.301468532 -38.223242125, 144.30201333 -38.223174227, 144.302449462 -38.223102553, 144.302957019 -38.223148463, 144.303317429 -38.223015575, 144.304403256 -38.222470702, 144.304804605 -38.222105426, 144.306451044 -38.221486849, 144.307225542 -38.221131172, 144.30777861 -38.220973069, 144.308475304 -38.221084675, 144.309018461 -38.221425209, 144.309606658 -38.221385885, 144.310495694 -38.221330715, 144.310948021 -38.221024369, 144.31153447 -38.221012428, 144.312120423 -38.221090061, 144.312503876 -38.220692035, 144.312712238 -38.22005102, 144.313667401 -38.220231488, 144.314546274 -38.220469301, 144.315132334 -38.220576604, 144.31554505 -38.221266944, 144.316222268 -38.222577394, 144.316903356 -38.22291975, 144.317284781 -38.223367943, 144.317689581 -38.224046234, 144.318303576 -38.224903548, 144.317940464 -38.226949432, 144.325020812 -38.227905549, 144.324168361 -38.232450089, 144.335061341 -38.233800422, 144.337797674 -38.219653803999996))\n12\tWaterford County\tReady for service\tPOLYGON ((151.63323 -32.76639, 151.63714 -32.76419, 151.63851 -32.7637, 151.64121 -32.76354, 151.64357 -32.76365, 151.64703 -32.76352, 151.64864 -32.75403, 151.64334 -32.75004, 151.64302 -32.74946, 151.64297 -32.74896, 151.64302 -32.74452, 151.64027 -32.74412, 151.63499 -32.74619, 151.63327 -32.74654, 151.6322 -32.7474, 151.6257 -32.74912, 151.62355 -32.75865, 151.63445 -32.76027, 151.63323 -32.76639))\n17346815\tKilgariff\tCheck with carrier\tPOLYGON ((133.874777984 -23.770110992, 133.875308 -23.7729379955, 133.878160992 -23.7724860035, 133.878228 -23.772841999, 133.877851008 -23.7729019945, 133.877761984 -23.7730159915, 133.877804 -23.773239009, 133.878868 -23.773069993, 133.879559008 -23.776754009, 133.877053984 -23.7771519995, 133.876884 -23.776244001000002, 133.876342016 -23.7763310065, 133.875762016 -23.7732329965, 133.875374016 -23.7732950085, 133.876002016 -23.7767370075, 133.876144992 -23.7774770075, 133.876216 -23.777825991500002, 133.877108 -23.781026991, 133.904918016 -23.7810330035, 133.904898016 -23.7702240085, 133.89698 -23.7700899945, 133.893275008 -23.770094009, 133.874777984 -23.770110992))\nON-Q-CM\tCoomera Waters\tReady for service\tPOLYGON ((153.34836959838867 -27.844502585656677, 153.35339069366455 -27.84123913416736, 153.35626602172852 -27.8433641834974, 153.35806846618652 -27.842377558628446, 153.35932374000549 -27.844673344950078, 153.36686611175537 -27.845935058064075, 153.36625456809998 -27.848325632134266, 153.37134003639221 -27.848828404894746, 153.37165117263794 -27.841846295366697, 153.37511658668518 -27.837615070086226, 153.37763786315918 -27.833231877968903, 153.37433338165283 -27.829247004223753, 153.3696985244751 -27.832093357543346, 153.36300373077393 -27.831562043923782, 153.3546781539917 -27.837330452596927, 153.35128784179687 -27.83812737968551, 153.34789752960205 -27.840138645832106, 153.34746837615967 -27.844464639110523, 153.34836959838867 -27.844502585656677))\n150\tBrighton - Ridgewood\tReady for service\tPOLYGON ((115.72628719298541 -31.668997101580473, 115.7263622948381 -31.669481057213204, 115.72681290595435 -31.669316695205524, 115.72888357131933 -31.668622719078183, 115.72848660438487 -31.665865025858139, 115.72724205939969 -31.663034196011619, 115.72643739669981 -31.663235096457516, 115.72518212288364 -31.66427611908124, 115.72495681732552 -31.664321777700938, 115.7245276638802 -31.663874322258181, 115.72400195091123 -31.663061591552516, 115.72373373001126 -31.662422360159777, 115.72334749191674 -31.662047951159117, 115.72270376175324 -31.66163701271395, 115.72295052498228 -31.661490900828507, 115.72337967841864 -31.660632488863083, 115.72597605675257 -31.659591425411033, 115.7261799046308 -31.659262666108283, 115.72411996810578 -31.655061750405874, 115.72077257125373 -31.65511654618091, 115.72042924850106 -31.655299198530749, 115.72010738341932 -31.654824301674321, 115.72023612945382 -31.654477260128289, 115.71967822998295 -31.654714709747321, 115.71969968765387 -31.654933893472087, 115.71875018566405 -31.655285499617328, 115.71685654609988 -31.655303764835036, 115.71634156196188 -31.655276367006749, 115.71505410163488 -31.655961310290589, 115.71574074714023 -31.656874560149568, 115.7183317610497 -31.660942979212585, 115.7181171843315 -31.659344856043028, 115.71865362613144 -31.660805998302941, 115.71823520152606 -31.661920103837108, 115.71856779544775 -31.663025064162593, 115.7187931009969 -31.663709950329586, 115.71997327296933 -31.663335546517175, 115.72100324122734 -31.662824163263277, 115.72248382060162 -31.663865190491734, 115.72308463541431 -31.663267057852121, 115.72334212748332 -31.663481655501595, 115.72310072866973 -31.663974771626666, 115.72362644163869 -31.6639382445958, 115.72405023066855 -31.6640067327668, 115.72457594363752 -31.664764665150937, 115.72495145289207 -31.664527241213474, 115.72501046148935 -31.664604860644879, 115.72409314600141 -31.6654404068808, 115.72384101835688 -31.665787407480423, 115.72429162947313 -31.665997433529363, 115.72440428225221 -31.6660522228554, 115.72429162947313 -31.666289642895311, 115.72541279283928 -31.666622943080739, 115.72524113145398 -31.667033859471307, 115.72524113145398 -31.667362591274951, 115.72521967378306 -31.667618270762642, 115.7258312174357 -31.667892212289622, 115.72571320025011 -31.6682620320691, 115.72563809839743 -31.6686272847269, 115.72651786295002 -31.668526840389312, 115.72658223596278 -31.668691203794694, 115.72628719298541 -31.668997101580473))\n17348681\tJerberra Estate\tCheck with carrier\tPOLYGON ((150.617052 -35.0503108155, 150.616404 -35.050221812000004, 150.615750592 -35.050132087, 150.615110176 -35.050044064, 150.614445248 -35.0499528035, 150.61379616 -35.049863615, 150.613155712 -35.049775592, 150.61244688 -35.049678208, 150.611807168 -35.049590370000004, 150.611097952 -35.049492986000004, 150.6108816 -35.049463201, 150.610515488 -35.049412973500004, 150.610208768 -35.049370775, 150.609871072 -35.049324414000004, 150.609529088 -35.049277350000004, 150.609196448 -35.049231729, 150.60916368 -35.049227215, 150.608841472 -35.049182944500004, 150.608509568 -35.049137305, 150.608193856 -35.0490939225, 150.607861216 -35.049048209, 150.607517408 -35.04900096, 150.607212128 -35.0489590205, 150.606869056 -35.048911864000004, 150.606542176 -35.048866946000004, 150.606410048 -35.048848853, 150.605884448 -35.048776592, 150.605629216 -35.0487414975, 150.60557376 -35.0488410275, 150.605522656 -35.048932917, 150.6054312 -35.049097530000004, 150.605386912 -35.049177006, 150.6053808 -35.049183037, 150.605211968 -35.0493465585, 150.605039168 -35.0495136875, 150.604833952 -35.0497124145, 150.60470041599999 -35.0498416555, 150.604482592 -35.0500525185, 150.60438 -35.050100489, 150.604141696 -35.0502117295, 150.603552 -35.050487398, 150.603213952 -35.050663888, 150.602958368 -35.0507971805, 150.602833088 -35.050940648, 150.602646592 -35.0511545635, 150.602468768 -35.0513583225, 150.602302816 -35.05154841, 150.60218256 -35.0516862905, 150.602057632 -35.051829480500004, 150.60191472 -35.0519930945, 150.601869728 -35.0520444875, 150.601753792 -35.0521575225, 150.601575616 -35.052331404, 150.601411808 -35.052491336500005, 150.601267072 -35.052632362000004, 150.601597568 -35.0528120155, 150.601650848 -35.052735962, 150.602462272 -35.052682053, 150.602462656 -35.0527071575, 150.602464096 -35.0527381265, 150.602466976 -35.052769077, 150.602471296 -35.052799861000004, 150.602476672 -35.0528305525, 150.60248352 -35.0528609665, 150.602491808 -35.0528913065, 150.602501152 -35.0529212765, 150.602511968 -35.052950969, 150.60252384 -35.052980402500005, 150.602537152 -35.053009373500004, 150.602551552 -35.0530380855, 150.602567392 -35.053066261, 150.60258432 -35.053093974, 150.602602336 -35.053121169, 150.602621408 -35.053147883, 150.602641568 -35.0531739865, 150.602663168 -35.053199461, 150.60270096 -35.0532412155, 150.6027096 -35.0532509465, 150.60273264 -35.0532782155, 150.60275424 -35.053306206, 150.602774752 -35.053334733, 150.602794208 -35.053363889, 150.602812192 -35.0533935815, 150.60282912 -35.053423829, 150.602844256 -35.053454428, 150.602858656 -35.053485563500004, 150.602871232 -35.0535169765, 150.602882752 -35.0535488335, 150.602892832 -35.053580968, 150.602901472 -35.0536133615, 150.602908672 -35.0536460325, 150.602914432 -35.0536788885, 150.602918752 -35.053711837, 150.602922016 -35.053744952, 150.602923456 -35.053778067, 150.602923808 -35.0538112745, 150.602922368 -35.053844408, 150.60291984 -35.053877523000004, 150.60291552 -35.0539105455, 150.602910112 -35.0539434015, 150.602903296 -35.0539760725, 150.602900032 -35.053988301000004, 150.602895008 -35.0540085585, 150.60288528 -35.0540407855, 150.602874112 -35.0540726425, 150.602861536 -35.054104222, 150.60284784 -35.054135376, 150.602832736 -35.0541661415, 150.60281616 -35.0541964815, 150.602798528 -35.0542262665, 150.602779456 -35.054255515, 150.602759296 -35.054284227000004, 150.602737696 -35.05431231, 150.602726528 -35.054325815, 150.602715008 -35.054339764, 150.602691232 -35.054366589000004, 150.6026664 -35.054392674, 150.60264048 -35.0544179635, 150.60261312 -35.0544425315, 150.602585056 -35.054466304, 150.602555872 -35.054489244, 150.602525632 -35.054511296, 150.602494688 -35.0545324415, 150.602462656 -35.0545527915, 150.60271104 -35.054646753, 150.60289248 -35.054715425, 150.602972032 -35.054375765, 150.604056352 -35.0545221, 150.60473712 -35.0546139895, 150.604812 -35.054624072, 150.605382592 -35.054701106, 150.606048256 -35.0547909235, 150.6061008 -35.054798046, 150.606699136 -35.0548787615, 150.60721104 -35.054947896, 150.607363328 -35.0549684125, 150.608006272 -35.0550551775, 150.608290688 -35.055093509500004, 150.6086712 -35.055144902500004, 150.609325312 -35.055233184500004, 150.609388672 -35.055241731500004, 150.61045536 -35.055385643, 150.610087456 -35.0572101315, 150.61021488 -35.057227059, 150.610303808 -35.0572388435, 150.610671712 -35.0554148175, 150.61132944 -35.0555035435, 150.611564896 -35.0555353265, 150.611925952 -35.0555840185, 150.612534368 -35.055666084500004, 150.612647392 -35.055681384, 150.61318992 -35.0557544775, 150.61373712 -35.0558283665, 150.613860608 -35.0558450165, 150.614507872 -35.055932318, 150.614830816 -35.055975867, 150.615160576 -35.056020322500004, 150.61579632 -35.056106107, 150.61606848 -35.0547582525, 150.616086496 -35.054669878, 150.61610448 -35.054580412, 150.6163248 -35.053490244, 150.616568896 -35.0522813615, 150.616622176 -35.0521479025, 150.616672928 -35.052020271, 150.616714688 -35.0520316115, 150.617052 -35.0503108155))\n112\tTulliallan\tReady for service\tPOLYGON ((145.32472823624735 -38.073254203657612, 145.32321010592878 -38.080536392688842, 145.33387456897745 -38.081841155984577, 145.33515130045555 -38.074569654177004, 145.32472823624735 -38.073254203657612))\n103\tDelaray\tReady for service\tPOLYGON ((145.34451757431034 -38.1054664324721, 145.34378801346315 -38.109265353034878, 145.33644948959557 -38.108387397835372, 145.33080612182943 -38.107745808516192, 145.3306344604531 -38.108623771426693, 145.32938991546791 -38.10847181706265, 145.32928262710433 -38.108995214097526, 145.33215795516918 -38.10933288761295, 145.33194337845103 -38.110143297683138, 145.33385311127063 -38.110396548985989, 145.33353124618887 -38.111814740055728, 145.34741436004614 -38.113428087034954, 145.34889493942038 -38.105989851039091, 145.34458194732312 -38.105483317000314, 145.34451757431034 -38.1054664324721))\n177\tMovida\tReady for service\tPOLYGON ((116.02860284367573 -31.880915344780455, 116.03006196537908 -31.880897124046122, 116.03012633839184 -31.883411551245853, 116.0333879045512 -31.883447991714664, 116.03343081990204 -31.881881038516219, 116.03525472202897 -31.881972141175712, 116.03528690853986 -31.879767431509908, 116.03526545085994 -31.878564840361449, 116.03524399318903 -31.877653776009577, 116.03515816250535 -31.877134465297814, 116.03493285694722 -31.876032059172093, 116.0344286016492 -31.8745834228038, 116.03391361752017 -31.873326097304858, 116.03342009106207 -31.872342091468681, 116.03326988735667 -31.872114310841987, 116.03331280269849 -31.870866063012389, 116.03326988735667 -31.868405963047994, 116.03168201962781 -31.868460632649533, 116.02867794552843 -31.871850084610173, 116.02860284367573 -31.880915344780455))\n17330606\tBenjamin Estate\tCheck with carrier\tPOLYGON ((131.178166912 -12.5455349705, 131.178165824 -12.541618983, 131.178164032 -12.537321026, 131.178162976 -12.535118009, 131.178161888 -12.5324459985, 131.178161152 -12.5287430385, 131.178160096 -12.5256380355, 131.177769856 -12.525639034500001, 131.173661152 -12.5256459535, 131.173661152 -12.526727038, 131.173661152 -12.5279219715, 131.173947008 -12.5279209725, 131.173948096 -12.52917999, 131.175631072 -12.529178991, 131.175631072 -12.5300829565, 131.175538912 -12.530172959, 131.174553952 -12.530165041, 131.17467312 -12.530231992500001, 131.17467312 -12.530367986, 131.174553952 -12.530436029, 131.175538912 -12.5304440395, 131.175631072 -12.5305350225, 131.175631072 -12.5314880315, 131.174031968 -12.5314890305, 131.174033056 -12.5326940465, 131.173404832 -12.5326940465, 131.173404832 -12.5342810135, 131.17340592 -12.536549002500001, 131.17340592 -12.5373079835, 131.173459936 -12.537978035, 131.17454208 -12.5379690255, 131.175628928 -12.537961015, 131.175631072 -12.539457998, 131.17554 -12.539548981, 131.175105824 -12.539548981, 131.17522608 -12.539617024, 131.17522608 -12.5397520185, 131.175106912 -12.539819969, 131.17554 -12.539819969, 131.17563216 -12.5399099715, 131.175633952 -12.5416009825, 131.17473216 -12.541827959, 131.173895872 -12.541827959, 131.173263008 -12.541827959, 131.173263008 -12.543188042, 131.173710848 -12.543616983, 131.173973984 -12.5438699705, 131.174604 -12.544472978, 131.175413984 -12.544713996, 131.177247136 -12.545261004, 131.17799088 -12.545483041, 131.178166912 -12.5455349705))\n222\tAmber\tReady for service\tPOLYGON ((144.99267612456649 -37.5901190955084, 144.99763284682729 -37.590544168018262, 144.99550853728951 -37.605046187428584, 144.99035869597247 -37.604621197758533, 144.99267612456649 -37.5901190955084))\n95\tNorth Harbour\tReady for service\tPOLYGON ((152.99539619869421 -27.121898664584041, 152.98569733090878 -27.11926308786261, 152.9859977383106 -27.116512854647908, 152.98818642087016 -27.115519698261046, 152.98870140499915 -27.112119980820342, 152.98938805050449 -27.11085938518239, 152.99247795529649 -27.1102863824714, 152.99960190243695 -27.112158180465933, 153.00174766964565 -27.113533359041984, 153.00449425167602 -27.117506002218327, 153.00518089719034 -27.12247160782945, 153.00140434689297 -27.126214764807827, 152.99891525693158 -27.127360604144666, 152.99917274899161 -27.129957796510684, 152.9986577648626 -27.131332756283605, 152.99187714047486 -27.128964759492938, 152.99196297115853 -27.126902269818711, 152.9919415134876 -27.126310251867878, 152.99432331509436 -27.124629667705779, 152.99522453731788 -27.123407408817588, 152.99556786007057 -27.122185136573979, 152.99565369076325 -27.121955959041355, 152.99539619869421 -27.121898664584041))\n18\tTrinity\tReady for service\tPOLYGON ((115.6923 -31.63125, 115.6959 -31.63121, 115.69749 -31.63117, 115.6985 -31.63104, 115.70682 -31.63109, 115.708724769 -31.63106514, 115.708659268 -31.626854345999998, 115.708668132 -31.624348314, 115.707113692 -31.624206878, 115.705578589 -31.623594211, 115.703145088 -31.621865106, 115.701291155 -31.620598884, 115.698636225 -31.619540256, 115.693895697 -31.619628092, 115.693032765 -31.619921765, 115.691021706 -31.621554189, 115.686102056 -31.622551403, 115.68479 -31.62478, 115.68486 -31.63068, 115.68487 -31.63125, 115.68512 -31.63126, 115.68556 -31.63125, 115.68853 -31.63125, 115.6923 -31.63125))\n6\tGregory Hills\tReady for service\tPOLYGON ((150.76602 -34.02859, 150.77628 -34.03439, 150.78134 -34.03723, 150.78486 -34.03293, 150.7855 -34.03279, 150.78731 -34.02934, 150.78752 -34.02873, 150.78756 -34.02809, 150.78718 -34.02727, 150.78666 -34.02649, 150.78636 -34.02557, 150.78628 -34.02503, 150.78649 -34.02457, 150.78688 -34.02414, 150.78739 -34.02372, 150.78748 -34.02336, 150.78718 -34.02286, 150.78417 -34.01959, 150.78306 -34.02009, 150.78168 -34.02023, 150.78014 -34.01931, 150.77988 -34.01859, 150.77971 -34.01774, 150.77233 -34.02485, 150.76937 -34.02407, 150.76898 -34.02472, 150.76799 -34.02615, 150.76602 -34.02859))\n48\tWaterford Melton\tReady for service\tPOLYGON ((144.56231 -37.71846, 144.57212 -37.71974, 144.57256 -37.72068, 144.57286 -37.72148, 144.5728 -37.72231, 144.57243 -37.72482, 144.57233 -37.72553, 144.57239 -37.72589, 144.57288 -37.72679, 144.57368 -37.72798, 144.57582 -37.73133, 144.57595 -37.73167, 144.57631 -37.7327, 144.57631 -37.73373, 144.57662 -37.74037, 144.5767 -37.74108, 144.5768 -37.7416, 144.57692 -37.74213, 144.577 -37.74264, 144.57692 -37.74326, 144.57669 -37.74397, 144.57656 -37.74442, 144.57641 -37.74439, 144.57618 -37.74451, 144.5761 -37.74466, 144.576 -37.74478, 144.57578 -37.7448, 144.57559 -37.74476, 144.57537 -37.74456, 144.57528 -37.74445, 144.57506 -37.74436, 144.57476 -37.74432, 144.57441 -37.7444, 144.57401 -37.74447, 144.57368 -37.7444, 144.57323 -37.7445, 144.57291 -37.74443, 144.57273 -37.74424, 144.57263 -37.74407, 144.57243 -37.74364, 144.57216 -37.74315, 144.57194 -37.74286, 144.5713 -37.74255, 144.57106 -37.74242, 144.57085 -37.74214, 144.57082 -37.74163, 144.57079 -37.74121, 144.57067 -37.74102, 144.57048 -37.74086, 144.57018 -37.74062, 144.56999 -37.74028, 144.56976 -37.73944, 144.56975 -37.73883, 144.56969 -37.73856, 144.56981 -37.73841, 144.56996 -37.7383, 144.57006 -37.73813, 144.57007 -37.73798, 144.56999 -37.73788, 144.57001 -37.73773, 144.57016 -37.73766, 144.57032 -37.73757, 144.5703 -37.73681, 144.57005 -37.73667, 144.56961 -37.73667, 144.56926 -37.7367, 144.56891 -37.73671, 144.5686 -37.73666, 144.56842 -37.73659, 144.56831 -37.73655, 144.5682 -37.73645, 144.56814 -37.73634, 144.56798 -37.73603, 144.5678 -37.73554, 144.56771 -37.73507, 144.5678 -37.73465, 144.56789 -37.73433, 144.56773 -37.73407, 144.56741 -37.73368, 144.56718 -37.73313, 144.56724 -37.73279, 144.56741 -37.73228, 144.56741 -37.73204, 144.56732 -37.73191, 144.56718 -37.73178, 144.56683 -37.7317, 144.5666 -37.73164, 144.56646 -37.73151, 144.5664 -37.7312, 144.56634 -37.731, 144.56613 -37.73079, 144.5661 -37.73023, 144.5663 -37.72988, 144.56634 -37.72943, 144.5663 -37.72896, 144.56606 -37.72878, 144.56581 -37.7287, 144.56572 -37.7286, 144.56574 -37.72836, 144.566 -37.72822, 144.5661 -37.72788, 144.5662 -37.72778, 144.56622 -37.72765, 144.56609 -37.72754, 144.56568 -37.72751, 144.56497 -37.72757, 144.5648 -37.72757, 144.56456 -37.72715, 144.56429 -37.7268, 144.56407 -37.72659, 144.56385 -37.72645, 144.56357 -37.72634, 144.56353 -37.72578, 144.56363 -37.72482, 144.56346 -37.72457, 144.56331 -37.72439, 144.56306 -37.72424, 144.56275 -37.72415, 144.5624 -37.72423, 144.56228 -37.72433, 144.56216 -37.72434, 144.56211 -37.72423, 144.56194 -37.7241, 144.56181 -37.72369, 144.56166 -37.72349, 144.56148 -37.72329, 144.56131 -37.72321, 144.56115 -37.72319, 144.56204 -37.71843, 144.56231 -37.71846))\n265\tMt. Atkinson\tUnder construction\tPOLYGON ((144.68840633391846 -37.74787485827774, 144.68531642913541 -37.769724927629568, 144.69132457732516 -37.770403397880315, 144.69535861968257 -37.767893026856584, 144.69827686308923 -37.750521638743095, 144.68840633391846 -37.74787485827774))\n5\tSpringwood\tReady for service\tPOLYGON ((138.76311 -34.6028, 138.77564 -34.60331, 138.78195 -34.60405, 138.78401 -34.60736, 138.77989 -34.61101, 138.78015 -34.61121, 138.77624 -34.612, 138.76861 -34.61188, 138.76839 -34.61806, 138.76698 -34.61842, 138.76582 -34.61853, 138.76444 -34.61804, 138.76303 -34.61645, 138.76225 -34.61511, 138.76174 -34.6139, 138.76213 -34.61352, 138.7629 -34.61352, 138.76311 -34.6028))\n169\tThornhill Park\tReady for service\tPOLYGON ((144.62098096373794 -37.703104910270973, 144.62114726069879 -37.703020024702717, 144.63689182760933 -37.714308952010043, 144.63547562124782 -37.722668440121758, 144.61879228118738 -37.717139402082772, 144.62098096373794 -37.703104910270973))\n220\tBotanical\tReady for service\tPOLYGON ((144.8842612361972 -37.562781836766767, 144.88533411980603 -37.558019110699377, 144.88687907219307 -37.558155192812237, 144.88984023095057 -37.548969092440174, 144.89370261193164 -37.549377387611337, 144.89494715691683 -37.545889794320587, 144.88114987374325 -37.543746119428008, 144.87951909066356 -37.548101457775459, 144.87690125466767 -37.561880344122514, 144.8842612361972 -37.562781836766767))\n124\tSt. Germain\tUnder construction\tPOLYGON ((145.35089050295065 -38.091539588909242, 145.37925754548684 -38.094781964715374, 145.37797008516878 -38.101401368692862, 145.36870037081067 -38.100118061716131, 145.36531005861679 -38.10126628480905, 145.36715541842366 -38.102921045174881, 145.36406551363163 -38.104035454507532, 145.3638080215716 -38.104677076411747, 145.36183391573027 -38.102482030771547, 145.36406551363163 -38.101739077309468, 145.36355052950259 -38.101131200676207, 145.36149059297759 -38.102380719380683, 145.35114799501963 -38.091573364398812, 145.35089050295065 -38.091539588909242))\n29\tRopes Crossing\tReady for service\tPOLYGON ((150.78022 -33.71985, 150.78186 -33.72, 150.78885 -33.72581, 150.78799 -33.72984, 150.78984 -33.73177, 150.79027 -33.73687, 150.78529 -33.7397, 150.77851 -33.74291, 150.78022 -33.71985))\n302\tMount Gilead\tUnder construction\tPOLYGON ((150.79637561797068 -34.119222085536769, 150.78594718932902 -34.117836465787747, 150.7860330200127 -34.115633638938959, 150.78204189299714 -34.115313868982419, 150.78045402525933 -34.117694349657768, 150.77895198821415 -34.118404927918704, 150.77805076598162 -34.119577368995117, 150.7781365966743 -34.120998487900913, 150.78444515227486 -34.12174456576556, 150.784402236933 -34.125830113529851, 150.783114776606 -34.128423445761861, 150.7858613586364 -34.132686284775545, 150.7858613586364 -34.133290169583681, 150.79075370787547 -34.134604492193283, 150.79191242217692 -34.126682724685274, 150.79431568145463 -34.122988014245074, 150.79637561797068 -34.119222085536769))\n17352628\tWalgrove Stage 3\tCheck with carrier\tPOLYGON ((148.972882176 -34.879298351, 148.972516832 -34.8771119285, 148.971005792 -34.876377201000004, 148.970797824 -34.875983521, 148.970268256 -34.875164359500005, 148.969697952 -34.873646601000004, 148.96962128 -34.8734425645, 148.969511232 -34.873149783500004, 148.969455712 -34.873002024, 148.969212768 -34.872638536000004, 148.968001824 -34.8710133665, 148.967629504 -34.870542634, 148.967072352 -34.8698039105, 148.96663072 -34.869191468000004, 148.96653664 -34.869192948, 148.966276896 -34.86906219, 148.958015744 -34.8694997335, 148.958075328 -34.869564705500004, 148.958158944 -34.869633192500004, 148.95833344 -34.869833085, 148.95838928 -34.869901646, 148.958480224 -34.870055973, 148.958654592 -34.870227246, 148.958780352 -34.870398667, 148.958864256 -34.870541561, 148.958913376 -34.870667398, 148.958948832 -34.8708390595, 148.9589704 -34.8710222095, 148.958984544 -34.8710851465, 148.959012928 -34.8712396585, 148.958999776 -34.871428636000005, 148.95891088 -34.871783873, 148.958814624 -34.872036065, 148.958773824 -34.872265206, 148.958726112 -34.8724943655, 148.958726848 -34.872677571000004, 148.958713216 -34.8727520335, 148.958717984 -34.872997029000004, 148.958721984 -34.87320434, 148.958739904 -34.873442657, 148.958779968 -34.873559318, 148.958932576 -34.8740033735, 148.959009344 -34.874243855, 148.959072192 -34.87446715, 148.959142016 -34.874701915, 148.959147488 -34.8747173255, 148.959225728 -34.874936680000005, 148.959337216 -34.875171445, 148.959348992 -34.875199639, 148.959427872 -34.8753890235, 148.959567104 -34.8755836805, 148.95966416 -34.8756901295, 148.959734176 -34.875766904500004, 148.959922048 -34.8759443935, 148.960082112 -34.876133334, 148.960228384 -34.876362364, 148.960325984 -34.876591394, 148.960374976 -34.876831894, 148.96034752 -34.8770781105, 148.960243584 -34.8773186105, 148.960063136 -34.877501853, 148.959854912 -34.877673644, 148.959674464 -34.87785117, 148.959528832 -34.8780515805, 148.959390144 -34.8782806475, 148.959327936 -34.8785096775, 148.959286528 -34.878744461000004, 148.9593216 -34.878979226, 148.959335808 -34.8792197075, 148.95933616 -34.8794659425, 148.959322592 -34.879712140500004, 148.95928816 -34.8799526405, 148.959330176 -34.880175954, 148.959476416 -34.880382062500004, 148.959587904 -34.880599641, 148.959678528 -34.880822954500005, 148.959769216 -34.881040533000004, 148.959866816 -34.881269563000004, 148.959985248 -34.88147569, 148.960131456 -34.8816932685, 148.960263776 -34.881893660500005, 148.960584 -34.88226009, 148.960744096 -34.882449049, 148.96088336 -34.882643706, 148.9610296 -34.882838400000004, 148.961154976 -34.8830445085, 148.961176128 -34.8832735385, 148.961204288 -34.8835140385, 148.96133664 -34.883725882, 148.961455072 -34.883949177, 148.961566592 -34.884155304000004, 148.96169888 -34.8843557145, 148.961852032 -34.884556088000004, 148.961998304 -34.8847507635, 148.962172288 -34.8849282525, 148.96236016 -34.885100006500004, 148.962575872 -34.885266044, 148.962826272 -34.885414895000004, 148.963097376 -34.8854721155, 148.963368512 -34.8855236195, 148.963653536 -34.885563672, 148.963938496 -34.8855579185, 148.964209344 -34.8854547995, 148.964452448 -34.8853288145, 148.964716416 -34.885242863500004, 148.965001376 -34.88523711, 148.96530016 -34.885214170000005, 148.96557808 -34.885151159, 148.965849056 -34.885099581, 148.966126912 -34.8850136485, 148.96639088 -34.8849219995, 148.96663392 -34.884761623, 148.966814368 -34.884584115500004, 148.967015648 -34.884429474, 148.967411328 -34.8841030415, 148.967605696 -34.883936967000004, 148.967806944 -34.883747971, 148.967980416 -34.8835589935, 148.96812608 -34.883358546000004, 148.968306496 -34.883158117, 148.968507744 -34.8829634045, 148.968660352 -34.882774427, 148.96879904 -34.882568263, 148.9689864 -34.882390737, 148.96915984 -34.8821902895, 148.96928464 -34.881984144, 148.969374656 -34.881766547, 148.969416032 -34.8815374985, 148.969394848 -34.8813027335, 148.969408384 -34.8810622335, 148.969470592 -34.88083892, 148.969616256 -34.880638491, 148.969789696 -34.88045523, 148.970018816 -34.88031204, 148.970254912 -34.880197469500004, 148.97050496 -34.880100085500004, 148.970768896 -34.879985515, 148.971025792 -34.8798366085, 148.971247936 -34.879693418500004, 148.971477056 -34.879544512, 148.971678368 -34.8793898705, 148.971942368 -34.879326841, 148.972220384 -34.879343953500005, 148.97249136 -34.8793038085, 148.972790144 -34.879280868500004, 148.972882176 -34.879298351))\n36\tEcco Ripley\tReady for service\tMULTIPOLYGON (((152.79198552872987 -27.68858776424522, 152.79198868366885 -27.688573446863977, 152.79353363605588 -27.681733061634318, 152.79061539264916 -27.681201013712833, 152.78911335560397 -27.688041432268765, 152.79198552872987 -27.68858776424522)), ((152.792975736585 -27.690283476217093, 152.79422028157018 -27.690283476217093, 152.79542191120453 -27.690093474278456, 152.79640896412073 -27.689903472008329, 152.79752476307141 -27.689599467689497, 152.79885513874027 -27.682949161434131, 152.80085070225255 -27.686122358083146, 152.80548555943162 -27.684260253862291, 152.80574305149159 -27.683386193992703, 152.80585033985517 -27.682588133218538, 152.80559284779517 -27.682265106962355, 152.80529244038433 -27.682303110100428, 152.80477745624634 -27.682645137752885, 152.804090810741 -27.682683140759536, 152.80357582661196 -27.682474124060558, 152.80344708057748 -27.682037087852962, 152.80336124989384 -27.681657054945809, 152.80306084248295 -27.681106004881723, 152.803060842474 -27.680668963199526, 152.80331833454298 -27.680098906202648, 152.80402643771924 -27.679243815128778, 152.8044341334847 -27.678483728553953, 152.80477745624634 -27.678103683283144, 152.80593617053887 -27.677514610500946, 152.80694468112597 -27.676887529532156, 152.80737383457128 -27.676298450191716, 152.80722363086588 -27.675899394639192, 152.80675156207869 -27.675823383892904, 152.80632240863335 -27.675918397318096, 152.80539972873893 -27.676355458007873, 152.80479891391727 -27.6763364554058, 152.80441267581378 -27.676070418625578, 152.80348999591934 -27.675633356795394, 152.80267460437949 -27.675348315528975, 152.80185921283064 -27.67508227634238, 152.80127985568888 -27.674227145998444, 152.80089361758542 -27.67398010709767, 152.80072195620906 -27.673885091986733, 152.79462797733561 -27.678027674070634, 152.79449923131008 -27.678450474645445, 152.79479963871196 -27.677343588775543, 152.79486401173372 -27.676298450190913, 152.79565794561162 -27.672027529975033, 152.78956396672922 -27.671153372218189, 152.78883440588206 -27.675258052306891, 152.79037935826904 -27.675866139945548, 152.79222471807589 -27.676626244733392, 152.79299719426493 -27.677196319852879, 152.79479963872097 -27.678716505629325, 152.79670937153156 -27.680326929358422, 152.79490692707557 -27.68914345962369, 152.79198552872987 -27.68858776424522, 152.79164536091616 -27.690131474692155, 152.792975736585 -27.690283476217093)))\n85\tSomerfield\tReady for service\tMULTIPOLYGON (((145.166870139 -38.005877377, 145.1670012281989 -38.005138167930454, 145.16683361581025 -38.005873117602029, 145.166870139 -38.005877377)), ((145.172674007 -38.008171035, 145.176477343 -38.005557657, 145.177066796 -38.005907585, 145.179547696 -38.006070943, 145.180705471 -38.000245324, 145.180295684 -38.000032153, 145.179993648 -37.999933379, 145.178738567 -37.999753156, 145.174299527 -37.999050472, 145.171356839 -37.99870326, 145.171247857 -37.999329955, 145.170763892 -38.001536731, 145.167712417 -38.001109969, 145.16826937 -37.998411909, 145.162358082 -37.99766618, 145.162086505 -37.998803695, 145.164613362 -37.999268502, 145.164331649 -38.00071903, 145.163239468 -38.000659044, 145.162922562 -38.001736124, 145.161435624 -38.001649459, 145.161280984 -38.002399817, 145.167355868 -38.003138362, 145.1670012281989 -38.005138167930454, 145.167097863 -38.004714442, 145.173178271 -38.005404566, 145.172674007 -38.008171035)), ((145.163782188 -38.013076203, 145.164613656 -38.011643601, 145.165454784 -38.011159292, 145.166766728 -38.011033725, 145.167364211 -38.008345706, 145.166293694 -38.008240576, 145.16683361581025 -38.005873117602029, 145.160683651 -38.005155898, 145.159270503 -38.012724952, 145.163782188 -38.013076203)))\n1\tNoosa Waters\tUnder construction\tPOLYGON ((153.0615905 -26.4021826, 153.0607295 -26.4020517, 153.0608006 -26.401618, 153.0593938 -26.4014174, 153.0555294 -26.4013916, 153.0555475 -26.4028925, 153.0535465 -26.4029934, 153.0541366 -26.4045454, 153.0534071 -26.4055832, 153.05345 -26.4066835, 153.0502367 -26.4095903, 153.050639 -26.4100563, 153.0559283 -26.4096816, 153.059324 -26.4101428, 153.0588734 -26.4124874, 153.0600429 -26.4129631, 153.0613035 -26.4131024, 153.0628484 -26.4129054, 153.0683845 -26.4100035, 153.068862 -26.4068469, 153.0687386 -26.4061021, 153.068186 -26.4052661, 153.0680037 -26.4044685, 153.0685884 -26.4011387, 153.0671239 -26.4009514, 153.066161 -26.4024601, 153.0659866 -26.4028685, 153.0647676 -26.4024937, 153.064325 -26.4021466, 153.0616455 -26.401743, 153.0615905 -26.4021826))\n4\tFernbrooke\tReady for service\tPOLYGON ((152.84131999999997 -27.649980000000006, 152.85132 -27.651259999999994, 152.84981897886712 -27.659938249647734, 152.84974387701439 -27.660365871565098, 152.84967950399263 -27.661059565782473, 152.84971169050354 -27.661848281258131, 152.84741571958943 -27.661620219536925, 152.84712604101853 -27.660422887693446, 152.84652522619686 -27.660555925213028, 152.84641793783328 -27.661183099907717, 152.84689000662047 -27.662437438501943, 152.84716895636038 -27.663207139149364, 152.84687927778049 -27.663378183001619, 152.8471153121786 -27.663644250684481, 152.84707239682777 -27.664347426441861, 152.84469059522996 -27.664024346249843, 152.83914378698742 -27.663235646476657, 152.83970168646727 -27.661857783818984, 152.8410213332962 -27.660783989154694, 152.83708385046242 -27.660261341917209, 152.83771000000002 -27.656589999999998, 152.83797000000004 -27.655259999999995, 152.83973 -27.655599999999989, 152.84008 -27.655829999999998, 152.83999 -27.655710000000006, 152.84012 -27.655609999999992, 152.84131999999997 -27.649980000000006))\n27\tGrandvue\tReady for service\tPOLYGON ((145.42937690489117 -38.064221994805287, 145.4296558546221 -38.062431202729272, 145.43027812711469 -38.059390134648062, 145.43843204252209 -38.055943438040373, 145.44006282560179 -38.050874471677645, 145.44315273038487 -38.051415178148318, 145.44263774625583 -38.053172446593663, 145.4446118520882 -38.053240032999511, 145.44529849759354 -38.051888293034068, 145.44804507962391 -38.05242899201523, 145.44778758756391 -38.053442791841249, 145.44993335477258 -38.053915893620776, 145.4485600637619 -38.059998358374976, 145.42937690489117 -38.064221994805287))\n94\tThe Pines\tReady for service\tPOLYGON ((150.70886669973959 -23.15793858635379, 150.7092958531849 -23.157386181476589, 150.71041165213558 -23.158056958530974, 150.71363030295316 -23.156123533204774, 150.71393071036397 -23.155610578944515, 150.7150035939728 -23.153243072293382, 150.71551857810181 -23.154505747713404, 150.71624813894897 -23.155018706203954, 150.71732102255785 -23.155176539190727, 150.71822224479033 -23.155255455613961, 150.72156964163338 -23.156005159319111, 150.72345791678208 -23.156399738531523, 150.72345791678208 -23.155334371990723, 150.72431622367276 -23.154742498029886, 150.72641907553961 -23.155768411233982, 150.72826443533748 -23.15695214747571, 150.72667656759964 -23.161371337021304, 150.72530327658893 -23.1608978594012, 150.72277127127674 -23.160582206724815, 150.72096882682069 -23.161016228963152, 150.72071133475171 -23.160582206724815, 150.72023926596452 -23.160463836779275, 150.71886597495384 -23.161884269221147, 150.71908055167202 -23.165001276498238, 150.71620522360715 -23.165040731821833, 150.71448860983483 -23.164685633493491, 150.71195660453159 -23.165080187132954, 150.70869503836326 -23.166658390067731, 150.70749340872888 -23.1641727120232, 150.70796547751607 -23.1629495836662, 150.70865212302141 -23.162278831115067, 150.71045456747743 -23.162002637911296, 150.71062622885376 -23.160582206724815, 150.70998249869027 -23.160029812750071, 150.7094245992194 -23.159832528636031, 150.70860920767956 -23.159477416497964, 150.70805130819971 -23.159043389273155, 150.70886669973959 -23.15793858635379))\n30\tMarriott Waters\tReady for service\tPOLYGON ((145.239757322 -38.077606995, 145.258183486 -38.079930868, 145.259570821 -38.072657914, 145.241123001 -38.070404129, 145.239757322 -38.077606995))\n199\tVerdant Hill\tUnder construction\tPOLYGON ((144.67540298462276 -37.817526995212646, 144.68441520691192 -37.818815249580531, 144.6855310058626 -37.811288813970755, 144.6948007202117 -37.8117634767226, 144.69531570434071 -37.808508585144516, 144.67720542907881 -37.806609832130995, 144.67540298462276 -37.817526995212646))\n2\tAlamanda\tReady for service\tPOLYGON ((144.74352936555584 -37.91384960992702, 144.7339807014578 -37.912783092779321, 144.73659049083045 -37.898506356911732, 144.745484695925 -37.89952228497102, 144.7436500649581 -37.909748512976854, 144.7442508797798 -37.90981623160399, 144.74353204776358 -37.913828449022958, 144.74352936555584 -37.91384960992702))\n223\tRathdowne\tReady for service\tPOLYGON ((144.98134082402584 -37.603627946007521, 144.99037450398586 -37.6046479307561, 144.99243444050191 -37.590026813022625, 144.98398011768361 -37.589074640609446, 144.98134082402584 -37.603627946007521))\n166\tGen Fyansford\tReady for service\tPOLYGON ((144.31761507750321 -38.136044246407451, 144.31738977194507 -38.137225659119792, 144.31742195844694 -38.137369115075984, 144.31849484204682 -38.137512570749465, 144.31729321242145 -38.142972115306193, 144.31600575209444 -38.143444637820807, 144.31538347960185 -38.143444637820807, 144.31497578382744 -38.143259004340436, 144.31340937376049 -38.141942680659575, 144.3126798129133 -38.141301386161039, 144.31175713300988 -38.141132623513478, 144.31100611448281 -38.141014489428493, 144.30920367002676 -38.14108199464323, 144.30701498747624 -38.141453272209674, 144.30321697950797 -38.141200128619637, 144.30306677580253 -38.142162069589396, 144.2979598498363 -38.141588281764776, 144.29858212232887 -38.137250974897178, 144.29892544508158 -38.136829044127744, 144.30021290540859 -38.136153949821527, 144.30176858663557 -38.135478849270854, 144.30378560781875 -38.135023152868513, 144.30606012106193 -38.134499942379293, 144.30747632742344 -38.134111751527506, 144.30799131155246 -38.134364919708361, 144.30874233007955 -38.134736231451448, 144.30935387373216 -38.134955642048617, 144.31007270573943 -38.135054798543763, 144.31114558934826 -38.134936654619032, 144.31204681158974 -38.135031591716874, 144.31394581556941 -38.135453532878692, 144.31574826002543 -38.135706696404988, 144.31761507750321 -38.136044246407451))\n118\tEastland Shopping Centre\tReady for service\tPOLYGON ((145.23779297099972 -37.810439312310621, 145.23719215617803 -37.813863636019263, 145.23453140484031 -37.813761925722517, 145.23311519847883 -37.814067056192414, 145.23152733074096 -37.814541701083186, 145.22959614025044 -37.815660494824478, 145.22470379100238 -37.817660720165726, 145.22281551586266 -37.818338750354883, 145.22058391796133 -37.818338750354883, 145.21800899730729 -37.8185082569287, 145.21697902904029 -37.81860996068631, 145.21577739940594 -37.812439679113623, 145.21749401317828 -37.811625977122659, 145.21968269572884 -37.810778361345967, 145.22122764812485 -37.810269787209478, 145.22247219311004 -37.810201977059478, 145.23779297099972 -37.810439312310621))\n352\tThe Hermitage (SEKI)\tReady for service\tPOLYGON ((150.76310090845152 -34.017378825959447, 150.76415857759227 -34.015800002724575, 150.76516894598808 -34.0147291720617, 150.76825718912079 -34.012385939810223, 150.76963585631026 -34.011308927095357, 150.77035940493855 -34.0103940424016, 150.77078271067498 -34.010044945881639, 150.77090979555541 -34.00971542309081, 150.7714348659768 -34.009079190884371, 150.77177007867382 -34.00872314034639, 150.77170447710515 -34.008985320388668, 150.77652671890402 -34.010907870843248, 150.77652671890402 -34.010907870843248, 150.77655710942594 -34.010854423152175, 150.77659182859819 -34.010802836340943, 150.77663071302868 -34.010753353171481, 150.7766735797251 -34.010706206505795, 150.77672022695609 -34.010661618210285, 150.77677043520046 -34.010619798111691, 150.77682396818062 -34.010580943009721, 150.7768805739741 -34.010545235750989, 150.77693998619932 -34.010512844368719, 150.77700192526896 -34.010483921291872, 150.77706609970571 -34.01045860262812, 150.77713220751374 -34.010437007523173, 150.7771999375999 -34.01041923760031, 150.77726897123742 -34.010405376482069, 150.77733898356567 -34.010395489396856, 150.777820184963 -34.010342507109335, 150.77798124535107 -34.010301164526112, 150.77790822328464 -34.010012044492044, 150.77990842257677 -34.008844400646531, 150.78013176630341 -34.008823200079306, 150.78069123901761 -34.008819474893841, 150.78119012066384 -34.008759312890263, 150.78147372003437 -34.00871046934526, 150.78155389776492 -34.008477878262966, 150.78203179564991 -34.008589234240112, 150.78216637762017 -34.008153455948339, 150.78218775291759 -34.007384386520059, 150.7829730177871 -34.007710815084735, 150.78330647826402 -34.006291971131, 150.78624859422794 -34.006427818172313, 150.7844247006401 -34.009230792618553, 150.783090814625 -34.009175733322564, 150.78286105367982 -34.009212276782954, 150.78204278582956 -34.009098246042839, 150.78100749276695 -34.009240599049519, 150.78026453269484 -34.009297589736512, 150.779762370721 -34.009482408876387, 150.77979607512333 -34.009539668607104, 150.78050841166973 -34.010385920174926, 150.78010249168358 -34.010738317167316, 150.77973103261132 -34.010984697830622, 150.77938609216443 -34.011147120061509, 150.77893745382704 -34.011324266361036, 150.77850269471878 -34.011539109605749, 150.77835427372113 -34.011650477558064, 150.77818485375616 -34.011846518959075, 150.77808626113645 -34.011982689257849, 150.777588535636 -34.012832987582719, 150.77684684216905 -34.013181665078164, 150.77689892388955 -34.013343819680557, 150.77751968227241 -34.013127996923856, 150.77869254498364 -34.013005487091611, 150.77871524586604 -34.0132376693555, 150.778894755552 -34.013233743379509, 150.77890272118398 -34.013329722461627, 150.77923490227934 -34.013304087190875, 150.77939493273053 -34.014763450185292, 150.77907204029898 -34.014788210648994, 150.77916004591069 -34.015584047195993, 150.77951960970586 -34.01657283513741, 150.77957878180842 -34.017160257260308, 150.77947431003741 -34.017710540635292, 150.77913129048423 -34.017707946649544, 150.77912779238781 -34.018003192376895, 150.77916629445065 -34.018037393305761, 150.7775700508551 -34.019723469062946, 150.77742458405743 -34.019875582255821, 150.77711666867245 -34.019846292841933, 150.77615589937491 -34.019552074697309, 150.77582413002466 -34.019366669748827, 150.77512273643271 -34.01911054352604, 150.77496699016476 -34.019084418453282, 150.77292416531955 -34.018653817730836, 150.77288240299637 -34.018645652863469, 150.77269284799434 -34.018645199547464, 150.77269284799434 -34.018645199547464, 150.77254566578088 -34.018606382916055, 150.77239578415828 -34.01857554952506, 150.772243826914 -34.01855282769678, 150.77209042647209 -34.018538311994227, 150.77193622126123 -34.018532062827695, 150.77178185305857 -34.018534106203447, 150.77162796431909 -34.01854443361546, 150.77147519550263 -34.01856300208096, 150.77132418240862 -34.018589734319157, 150.77117555353072 -34.018624519072986, 150.77102992744176 -34.018667211571959, 150.77088791021959 -34.018717634134667, 150.7707500929252 -34.018775576908112, 150.76724578496825 -34.01907637997266, 150.76725346797897 -34.018964034501806, 150.76595258446341 -34.018851142805993, 150.76596203822075 -34.018483154890191, 150.76497947544087 -34.018016067260731, 150.76490615391563 -34.0180954267643, 150.76383501388381 -34.01765777284843, 150.7637964191581 -34.01771340405201, 150.76310090845152 -34.017378825959447))\n180\tBrookhaven\tReady for service\tGEOMETRYCOLLECTION (POLYGON ((153.16414318482177 -27.726875648298432, 153.16671810547578 -27.728490109796667, 153.16667519012498 -27.728718031846626, 153.17135296264584 -27.729724681865779, 153.17124567429127 -27.731491045280155, 153.16794119278109 -27.731206149891634, 153.16779098907563 -27.73114917072456, 153.16725454727572 -27.731642989182337, 153.16663227478313 -27.735612448582195, 153.16607437531229 -27.735498494825826, 153.1655808488542 -27.738841088823886, 153.16152534881689 -27.738290327550505, 153.16158972183865 -27.736979884363326, 153.15942249695001 -27.73696089231667, 153.15847835937569 -27.737340732610207, 153.15768442550677 -27.738803105376945, 153.15538845459264 -27.7375876280905, 153.15609655776893 -27.730826288214896, 153.15755567948125 -27.729629715280478, 153.16010914245541 -27.729534748611655, 153.163048843542 -27.730883267550766, 153.16345653930745 -27.730655350028552, 153.16414318482177 -27.726875648298432)), POLYGON ((153.17214689651479 -27.728737025329007, 153.17182503144198 -27.728860482885821, 153.1715460817021 -27.731623996207126, 153.1714709798494 -27.732060833823013, 153.172093252342 -27.733266876412994, 153.17202887932021 -27.733865144556077, 153.17473254600878 -27.734282980676014, 153.1756337682323 -27.729154881109693, 153.17214689651479 -27.728737025329007)), POLYGON ((153.17479691902153 -27.734339958204625, 153.174410680927 -27.735992293575535, 153.1732519666345 -27.735840355736613, 153.1735094586945 -27.73409305536569, 153.17479691902153 -27.734339958204625)))\n262\tBingara Gorge\tUnder construction\tGEOMETRYCOLLECTION (POLYGON ((150.67318723048177 -34.228315258791596, 150.67430302943245 -34.228403965050774, 150.6752686246777 -34.2261685388363, 150.67546174373396 -34.224926609745914, 150.67471072520686 -34.223879826719596, 150.67413136805612 -34.2232765899151, 150.67226455058733 -34.2248556418165, 150.67192122783467 -34.228226552439729, 150.67318723048177 -34.228315258791596)), POLYGON ((150.67522570933588 -34.22852815365605, 150.67636296595748 -34.225245964689456, 150.67756459560081 -34.225050803478709, 150.67872330989334 -34.2245717694994, 150.68003222789127 -34.223791115696216, 150.680354092973 -34.223489497515942, 150.68071887339661 -34.222992712277112, 150.68108365382921 -34.222850773098983, 150.68357274379056 -34.222318499051838, 150.68421647395408 -34.220579713725833, 150.6841521009413 -34.220224855167857, 150.68434521998856 -34.220100654319765, 150.68455979670674 -34.219994196304022, 150.68526789989198 -34.220650685257745, 150.68653390254809 -34.221378140015425, 150.68818614329871 -34.221981390415245, 150.68762824381886 -34.224145959230654, 150.68561122264464 -34.223986279824921, 150.68344399775609 -34.225121771244424, 150.68252131786161 -34.225352416068233, 150.68243548716896 -34.225902412715769, 150.68365857448322 -34.227002395235, 150.68827197398238 -34.226434664115956, 150.68831488933318 -34.226718530153839, 150.68829343165328 -34.227392708160238, 150.68932339992028 -34.227924950142544, 150.68962380733115 -34.228421706291094, 150.68970963801479 -34.229113611758386, 150.69001004542562 -34.23049740564003, 150.68777844752427 -34.230249034053465, 150.68674847926627 -34.235677560320468, 150.68091199245285 -34.234950229066186, 150.68108365382921 -34.233300405615253, 150.68065450038384 -34.233211704513757, 150.68080470408927 -34.23248435195876, 150.68172738399269 -34.23248435195876, 150.68230674113445 -34.229450691850317, 150.67522570933588 -34.22852815365605)))\n17350712\tThe Ridge\tCheck with carrier\tPOLYGON ((150.919743232 -33.541005243, 150.919726336 -33.5410001185, 150.919703648 -33.540993366, 150.919681312 -33.5409866135, 150.919658656 -33.540979861000004, 150.919570816 -33.54095385, 150.919482976 -33.5409281165, 150.919394752 -33.540902901, 150.91930656 -33.540878703000004, 150.919217632 -33.5408557445, 150.919124768 -33.540834155, 150.91903152 -33.540814434, 150.91893792 -33.5407953605, 150.918844672 -33.540775917, 150.918751808 -33.540754679, 150.918671872 -33.540734884, 150.918591968 -33.540714534, 150.918512416 -33.540693481, 150.918433216 -33.5406715215, 150.918354368 -33.5406486555, 150.9182784 -33.540624624, 150.918203168 -33.540598983, 150.918127936 -33.540572879500004, 150.918052672 -33.54054759, 150.917976352 -33.54052428, 150.917935328 -33.540512939500005, 150.917894272 -33.5405021355, 150.917852896 -33.5404915165, 150.91781184 -33.540480897500004, 150.917770816 -33.540470186, 150.917707808 -33.5404531845, 150.9176448 -33.540436072, 150.917518816 -33.540401514, 150.917455456 -33.54038442, 150.9173712 -33.5403620165, 150.917286592 -33.5403399645, 150.917202016 -33.5403179125, 150.91711776 -33.540295324, 150.917033536 -33.540271644, 150.91695792 -33.5402484265, 150.916882688 -33.540223766000004, 150.916807456 -33.540199013, 150.91673184 -33.540175351500004, 150.91665552 -33.5401541135, 150.916568416 -33.540134226, 150.916480192 -33.5401174835, 150.916391296 -33.540101999, 150.91630272 -33.540086422, 150.916214528 -33.5400689765, 150.916116608 -33.540047905, 150.916018688 -33.540026408, 150.915921472 -33.540003727, 150.915824992 -33.539979159, 150.9157296 -33.5399518715, 150.91564464 -33.5399249725, 150.915560416 -33.539896168, 150.915476896 -33.5398656615, 150.915394432 -33.5398336195, 150.915312736 -33.5398001345, 150.915243232 -33.5397680185, 150.9151752 -33.5397329055, 150.91510752 -33.539697533500004, 150.9150384 -33.5396646035, 150.914967136 -33.539636613, 150.914894048 -33.539615097500004, 150.914818816 -33.539597541, 150.914742496 -33.5395827965, 150.914665792 -33.5395692915, 150.91458912 -33.5395557865, 150.914499136 -33.5395420225, 150.914408416 -33.539531496, 150.914317696 -33.539521136, 150.91422768 -33.5395079085, 150.914140192 -33.5394890015, 150.914080096 -33.5394725365, 150.91402032 -33.539454536, 150.913961632 -33.539434556, 150.913904416 -33.539412245, 150.913849696 -33.539387122, 150.913780192 -33.539345016, 150.91371648 -33.539294881, 150.913654912 -33.5392415085, 150.91359264 -33.5391894865, 150.913525312 -33.539143329, 150.913488256 -33.5391224425, 150.913450816 -33.539102462500004, 150.91341264 -33.5390831115, 150.913374496 -33.539064297, 150.913335968 -33.539045575, 150.913299616 -33.539028111, 150.91326288 -33.539011017, 150.913226176 -33.538994182, 150.913189088 -33.538977717, 150.913152 -33.5389616035, 150.913116352 -33.538949819, 150.913080352 -33.538937757, 150.913044736 -33.5389255285, 150.913009088 -33.5389130965, 150.912973792 -33.538900498000004, 150.91290576 -33.5388747645, 150.912838432 -33.538847754500004, 150.912771488 -33.538820134, 150.91270416 -33.538792865, 150.91263648 -33.538766669000005, 150.912534976 -33.5387303165, 150.912432736 -33.5386957585, 150.91232976 -33.538662181, 150.912226816 -33.538628696, 150.91212384 -33.538594767, 150.912029536 -33.538562096, 150.911934848 -33.5385287035, 150.911840512 -33.538495681, 150.911745472 -33.538463824000004, 150.911649728 -33.538434113, 150.911581696 -33.538414503, 150.911513632 -33.5383956885, 150.911445248 -33.5383775955, 150.91137648 -33.538360316500004, 150.91130736 -33.5383438515, 150.91122672 -33.5383263875, 150.911145728 -33.538310551500004, 150.911064352 -33.538295511, 150.910983008 -33.5382807665, 150.910902016 -33.5382653745, 150.910842592 -33.5382537565, 150.910783552 -33.538242157, 150.910724512 -33.538230539000004, 150.91066512 -33.538218847, 150.91060608 -33.538207044, 150.909224032 -33.545795947500004, 150.904330208 -33.545117349, 150.90424416 -33.5451054535, 150.90406416 -33.545085751, 150.904243808 -33.545385007, 150.907374016 -33.5506537885, 150.907480576 -33.5508315365, 150.909997696 -33.555034089, 150.910066816 -33.55496316, 150.91032672 -33.553238849, 150.91303824 -33.552101062, 150.914255392 -33.546468145, 150.916333696 -33.5467552465, 150.918799328 -33.5470959055, 150.91890768 -33.547110835, 150.918970336 -33.546549249, 150.919042336 -33.545907188, 150.91901712 -33.545562385000004, 150.919168672 -33.544883435, 150.919472896 -33.5443337075, 150.919336448 -33.543715678, 150.919689952 -33.541164639, 150.919743232 -33.541005243))\n226\tFlourish\tUnder construction\tPOLYGON ((152.75919471740568 -27.680557076021895, 152.75859390258398 -27.681583172169795, 152.75820766448948 -27.681887198806489, 152.75837932586583 -27.683065294031163, 152.76284252166855 -27.688233561612098, 152.76301418304487 -27.688537569734908, 152.76773487090762 -27.689791594291982, 152.76859317778928 -27.686941517648975, 152.77674709319672 -27.689183584184, 152.77923618316706 -27.68557345443611, 152.77404342650817 -27.68295128537131, 152.77030979156166 -27.681735185593531, 152.76481662750089 -27.681089127079431, 152.75919471740568 -27.680557076021895))\n69\tUniversity Hill\tReady for service\tPOLYGON ((145.06972 -37.67879, 145.07055 -37.67888, 145.07175 -37.67918, 145.07278 -37.67938, 145.07321 -37.67949, 145.07356 -37.67983, 145.07386 -37.6803, 145.07441 -37.68074, 145.07476 -37.68121, 145.07467 -37.68233, 145.07549 -37.68253, 145.07579 -37.68291, 145.07587 -37.68343, 145.07617 -37.68394, 145.07695 -37.68414, 145.07738 -37.68475, 145.07772 -37.68519, 145.07845 -37.68567, 145.07944 -37.6856, 145.07969 -37.68472, 145.07991 -37.68394, 145.08115 -37.68363, 145.08278 -37.68352, 145.08441 -37.68403, 145.08527 -37.68444, 145.08695 -37.68387, 145.08845 -37.68282, 145.08922 -37.6822, 145.09102 -37.68309, 145.09373 -37.68407, 145.09398 -37.68621, 145.0924 -37.6873, 145.09098 -37.68831, 145.08905 -37.68835, 145.08759 -37.68873, 145.08613 -37.68835, 145.0854 -37.68791, 145.07922 -37.68719, 145.07645 -37.68692, 145.07551 -37.68685, 145.07333 -37.68663, 145.07004 -37.68625, 145.06855 -37.68609, 145.06837 -37.68604, 145.06847 -37.68569, 145.06842 -37.68564, 145.06875 -37.6845, 145.06894 -37.68331, 145.06917 -37.68191, 145.06957 -37.67976, 145.06972 -37.67879))\n17329992\tLots 2-3 Golf Links Road Wundowie\tCheck with carrier\tPOLYGON ((116.361575008 -31.731990994, 116.361572992 -31.720592996, 116.347972 -31.720596992, 116.347963008 -31.7291629915, 116.348277984 -31.7286720015, 116.350567008 -31.7281530025, 116.350643008 -31.727806997000002, 116.350057984 -31.727526000500003, 116.349651008 -31.7270060025, 116.3496 -31.726183992000003, 116.349777984 -31.7254919995, 116.355296992 -31.726595006500002, 116.354864992 -31.7278279945, 116.354483008 -31.728131006, 116.354483008 -31.7293429965, 116.355729984 -31.7294070065, 116.35578 -31.730618997, 116.358145984 -31.730639994500002, 116.358171008 -31.731873001, 116.361575008 -31.731990994))\n183\tThe Peninsula\tReady for service\tPOLYGON ((152.90982757569347 -27.67932432276379, 152.91862522126439 -27.674079621610755, 152.92609249116651 -27.6805024456331, 152.92162929536377 -27.68468277907127, 152.91716609956106 -27.68578484032367, 152.9148057556252 -27.685404820458956, 152.90982757569347 -27.67932432276379))\n17361458\tBlackmore Subdivision\tCheck with carrier\tPOLYGON ((130.919370368 -12.7275434465, 130.911943168 -12.727573768000001, 130.911910368 -12.742114860500001, 130.91934 -12.742129753, 130.919370368 -12.7275434465))\n17346227\tRidge View Estate\tCheck with carrier\tPOLYGON ((131.053826176 -12.8086149605, 131.03896608 -12.808550969, 131.038961056 -12.8158329575, 131.053808864 -12.815841967, 131.053826176 -12.8086149605))\n3\tBlakes Crossing\tReady for service\tPOLYGON ((138.70131 -34.67067, 138.69687 -34.67847, 138.69674 -34.67895, 138.69777 -34.6794, 138.69859 -34.68004, 138.70724 -34.68389, 138.71142 -34.67672, 138.70591 -34.67452, 138.70683 -34.67286, 138.70131 -34.67067))\n17317496\tRoche Creek Road Wandoan\tCheck with carrier\tPOLYGON ((149.992989856 -26.114619951, 149.989181056 -26.1174950175, 149.995942912 -26.1186239615, 150.009822016 -26.115216021000002, 150.010792928 -26.1089119795, 150.00450192 -26.110629982000003, 150.004184032 -26.1107170245, 149.996403008 -26.1128420085, 149.995587968 -26.1126569715, 149.995587968 -26.1126569715, 149.995587968 -26.1126569715, 149.992989856 -26.114619951))\n286\tMinta Farm\tUnder construction\tPOLYGON ((145.36372219087 -38.077836007648486, 145.3713611221394 -38.078883236828645, 145.3740218734861 -38.075437458503949, 145.37513767243678 -38.073815859585423, 145.37548099518946 -38.071890164172771, 145.35565410615521 -38.069626562638831, 145.36372219087 -38.077836007648486))\n237\tKinbrook\tReady for service\tPOLYGON ((144.9586871719261 -37.541772522962034, 144.96696983335903 -37.542657245078722, 144.96478115080848 -37.551367794539622, 144.96254955289817 -37.55684539215941, 144.96091876981845 -37.556471159173796, 144.96031795499681 -37.555042252303, 144.95898757932795 -37.5536813631445, 144.95602642057042 -37.550142935026187, 144.9586871719261 -37.541772522962034))\n42\tChancellor\tReady for service\tPOLYGON ((145.0934309349293 -37.686439194876371, 145.09347385028013 -37.684809008605235, 145.08124297716449 -37.68426560521916, 145.07999843218832 -37.685080708805025, 145.07969802477746 -37.685827879223496, 145.07823890307409 -37.6854203326557, 145.07785266497061 -37.68497882134664, 145.07849639513412 -37.684231642375117, 145.07909720995579 -37.683382566226648, 145.07841056445045 -37.683246713140619, 145.07748788454705 -37.682975006222158, 145.07699435808894 -37.681871186634, 145.07682269671261 -37.6810560477791, 145.07660811999443 -37.680716403945745, 145.07585710146734 -37.6806994217128, 145.07504170992749 -37.680801315049344, 145.07471984484573 -37.68109001207641, 145.07381862262221 -37.680291846967108, 145.07345384218962 -37.6795955682635, 145.07330363848422 -37.679391778138246, 145.0733894691769 -37.678712473677244, 145.07347529986055 -37.678508681126182, 145.06987041094851 -37.678236956854185, 145.06875461198885 -37.685946746550357, 145.08913940050294 -37.68825613110117, 145.0934309349293 -37.686439194876371))\n123\tSeaside\tReady for service\tPOLYGON ((151.81044193518323 -32.856728450325335, 151.80440160048263 -32.859251926338338, 151.8039724470373 -32.859432171877764, 151.80474492323532 -32.860045003973525, 151.80674048673859 -32.860621783253784, 151.80989476454337 -32.860603758958277, 151.81003423940882 -32.860684868261082, 151.81009861243058 -32.86098226840069, 151.809991324067 -32.861252631298676, 151.80926176321981 -32.861906004899168, 151.80887016070085 -32.861734776421322, 151.80853220236364 -32.862284508783588, 151.80832299006096 -32.862221424915532, 151.80806549799198 -32.86248277207865, 151.8079260231265 -32.862505301970351, 151.8079528452129 -32.862604433426888, 151.80818887961098 -32.862829731778774, 151.80937978041436 -32.863082065252655, 151.81157919180481 -32.863406492951313, 151.81219073545748 -32.863568706355231, 151.81568833600596 -32.864082380176988, 151.81819888363825 -32.864406804215712, 151.81997987042337 -32.863000958143516, 151.82113858471587 -32.860693880401435, 151.82036610851785 -32.859612417052432, 151.81965800534161 -32.8588193355503, 151.81978675137609 -32.8577017995794, 151.82167502651581 -32.857125001311722, 151.82150336513945 -32.854673566835935, 151.8194005132726 -32.854781719785251, 151.8194005132726 -32.853447824195712, 151.81785556088559 -32.853447824195712, 151.81746932278207 -32.855142228663631, 151.81631060848957 -32.855250381041621, 151.81583853970238 -32.85395254380397, 151.81442233334087 -32.854529362698152, 151.81407901058819 -32.856584249529917, 151.81403609524637 -32.857773899098881, 151.81360694180105 -32.859035631208776, 151.8135640264592 -32.860297345371372, 151.81360694180105 -32.861126462049839, 151.81352111111735 -32.86130670378013, 151.81309195767201 -32.86098226840145, 151.81322070370649 -32.859900808568575, 151.81317778836467 -32.858386742651128, 151.81296321163751 -32.85780994883703, 151.81253405820118 -32.857269201230423, 151.811804497345 -32.857593650189926, 151.81171866665233 -32.858134395818794, 151.811289513216 -32.858062296592323, 151.81133242855782 -32.857016851219058, 151.81094619046331 -32.85654819929443, 151.81044193518323 -32.856728450325335))\n61\tBerwick Waters\tReady for service\tGEOMETRYCOLLECTION (POLYGON ((145.35408159084116 -38.076906603088688, 145.35733242816059 -38.077295098020073, 145.35587598866496 -38.084416435612539, 145.35264392679974 -38.084038534441049, 145.35382409877215 -38.078369782485453, 145.35382946318762 -38.078175538132612, 145.35408159084116 -38.076906603088688)), POLYGON ((145.35105203575029 -38.076523384598765, 145.34963314717203 -38.083682798871337, 145.3435391682896 -38.082969211325128, 145.33717160409176 -38.076149665458715, 145.33861999696416 -38.07499260200597, 145.35105203575029 -38.076523384598765)))\n17362675\tGolf Links Road Wundowie\tCheck with carrier\tPOLYGON ((116.361575008 -31.731914996, 116.358171008 -31.731873001, 116.358145984 -31.730639994500002, 116.35578 -31.730618997, 116.355729984 -31.7294070065, 116.354483008 -31.7293429965, 116.354483008 -31.728131006, 116.354864992 -31.7278279945, 116.355296992 -31.726595006500002, 116.349777984 -31.7254919995, 116.3496 -31.726183992000003, 116.349651008 -31.7270060025, 116.350057984 -31.727526000500003, 116.350643008 -31.727806997000002, 116.350567008 -31.7281530025, 116.350211008 -31.728239009000003, 116.349168 -31.728433999, 116.348277984 -31.7286720015, 116.347947008 -31.7293429965, 116.347972 -31.731912998000002, 116.347997984 -31.7375840065, 116.351100992 -31.7375619915, 116.351152 -31.736978002, 116.351203008 -31.735766992000002, 116.361629984 -31.735789007, 116.361575008 -31.731914996))\n284\tSussex Inlet\tUnder construction\tGEOMETRYCOLLECTION (POLYGON ((150.57443891523891 -35.145224920974727, 150.57109151838688 -35.146979486463756, 150.57252918241929 -35.147330395021754, 150.57184253691395 -35.15117274474062, 150.57252918241929 -35.151471001742458, 150.57207857130305 -35.152278044618015, 150.57435308454626 -35.15408508985518, 150.57611261366043 -35.154628949981458, 150.57978187559422 -35.152471031946071, 150.58072601316857 -35.148453292241392, 150.58085475920308 -35.148067298069449, 150.57619844435308 -35.147470758021726, 150.57555471418956 -35.147558484773853, 150.57443891523891 -35.145224920974727)), POLYGON ((150.57924543379428 -35.158576212914213, 150.57971750258147 -35.156120160710486, 150.58439527510237 -35.156014899673309, 150.58630500792196 -35.15761134410559, 150.58643375395647 -35.158506041022662, 150.57924543379428 -35.158576212914213)), POLYGON ((150.58737789153079 -35.145242466816605, 150.58817182539073 -35.146453120789, 150.58712039946178 -35.147944481358458, 150.58784996030897 -35.14810238852457, 150.58742080687264 -35.149751622836391, 150.58692728041456 -35.149751622836391, 150.58688436506372 -35.151207833856624, 150.58772121428348 -35.151962246185128, 150.58810745237798 -35.1516815354383, 150.58890138624693 -35.151909612993819, 150.58870826719965 -35.1528745494246, 150.58398757932795 -35.1528745494246, 150.58450256346595 -35.145382833417692, 150.58737789153079 -35.145242466816605)))\n82\tModeina\tReady for service\tPOLYGON ((144.749644009 -37.741855443, 144.748985076 -37.746939275, 144.758919208 -37.747838665, 144.75936339 -37.744627723, 144.76032347 -37.743859214, 144.760415613 -37.743097614, 144.760577834 -37.742194299, 144.7611405 -37.741460404, 144.762340374 -37.740580777, 144.762937321 -37.739937495, 144.763182955 -37.738823247, 144.762696063 -37.737767899, 144.762096629 -37.737411544, 144.76158036 -37.737203215, 144.760602745 -37.737247452, 144.756822984 -37.73865128, 144.756213076 -37.738820145, 144.755526598 -37.738650622, 144.754973974 -37.738609326, 144.75412463 -37.738912929, 144.753905835 -37.739614534, 144.753520078 -37.740149264, 144.752929524 -37.740656762, 144.752233423 -37.741036112, 144.751690482 -37.741471026, 144.751274323 -37.741780951, 144.75079661 -37.741868172, 144.75040733 -37.741765516, 144.750081868 -37.741702956, 144.749644009 -37.741855443))\n68\tBrentwood Forest\tReady for service\tPOLYGON ((152.880475846 -27.642904867, 152.883313382 -27.644190701, 152.883588028 -27.643812654, 152.88401786 -27.643710397, 152.884504429 -27.643861928, 152.890337506 -27.644642686, 152.891585033 -27.642968595, 152.892788631 -27.640813241, 152.894215137 -27.640957716, 152.895087919 -27.639723374, 152.895866308 -27.639215474, 152.89329852 -27.637353907, 152.892542437 -27.635865622, 152.892087588 -27.635642128, 152.889160928 -27.635671411, 152.886453879 -27.635729125, 152.885711906 -27.635645152, 152.88523498 -27.635747808, 152.884757058 -27.635962506, 152.884530762 -27.63594193, 152.882941574 -27.638329253, 152.880475846 -27.642904867))\nON-Q-GC-EcoVill\tEco Village, Currumbin Valley\tReady for service\tPOLYGON ((153.42949161770866 -28.176020023448768, 153.42979202511833 -28.176398322033357, 153.43135843518303 -28.175424200464967, 153.43187341931389 -28.175991651000988, 153.43290338757561 -28.174062306896527, 153.433514931231 -28.173608338520616, 153.43501696827934 -28.174828374162296, 153.43814353010521 -28.177522439486232, 153.44076136610374 -28.179565207253187, 153.44023565313682 -28.181522823083892, 153.43728522322044 -28.183660082539284, 153.43633035681114 -28.1836695393446, 153.43577245733604 -28.182600915050994, 153.43406657240257 -28.183849218486774, 153.43294004461632 -28.185750016182844, 153.43274692556724 -28.188284360546415, 153.43093375227318 -28.1888706555365, 153.43021492025719 -28.185031310579038, 153.43083719274864 -28.184473364739898, 153.4314058210598 -28.184435537797977, 153.43029008631811 -28.182433238893246, 153.42917428736791 -28.180125726923684, 153.42878804926977 -28.176588706193588, 153.42949161770866 -28.176020023448768))\n136\tJindee\tReady for service\tPOLYGON ((115.69413457871279 -31.645613986187424, 115.68795476913772 -31.645687054640707, 115.68331991195868 -31.647148411636124, 115.68263326645332 -31.647038810658323, 115.68280492782965 -31.646454269927482, 115.68267618179517 -31.644737160274772, 115.68181787491348 -31.644262209453061, 115.68100248337365 -31.644335278967997, 115.68074499130464 -31.643275765376494, 115.67984376908112 -31.641193237957982, 115.68271909714599 -31.638452999239448, 115.68632398605804 -31.638635684332687, 115.68975721360272 -31.63644343952469, 115.69413457871279 -31.645613986187424))\n102\tAlira\tReady for service\tPOLYGON ((145.32106433870212 -38.04436956469803, 145.32363925935613 -38.045890426596181, 145.32275949480353 -38.046870520856828, 145.32690082551554 -38.047377461015834, 145.32655750276282 -38.049270006594817, 145.32732997896085 -38.0493544940954, 145.32683645250273 -38.051720104536471, 145.32853160860421 -38.051905970689212, 145.32752309800807 -38.057802751771973, 145.32745872499535 -38.058292720798335, 145.3227165794527 -38.057616900594063, 145.32200847627644 -38.057414153315712, 145.32127891542029 -38.056839699642964, 145.32091413499668 -38.055927322778039, 145.32067810060758 -38.052717017468, 145.32009874345687 -38.051703207590336, 145.318510875719 -38.050013493257829, 145.31829629900079 -38.049489673894513, 145.318253383659 -38.0491179288472, 145.3182748413299 -38.04883067001726, 145.31831775667172 -38.048442023923883, 145.31934772492977 -38.046025612791077, 145.32104288103119 -38.044403361972535, 145.32106433870212 -38.04436956469803))\n7\tLightsview\tReady for service\tPOLYGON ((138.63601 -34.85796, 138.63607 -34.85819, 138.63657 -34.86501, 138.63256 -34.86521, 138.62187 -34.86571, 138.62164 -34.86214, 138.62299 -34.86203, 138.6229 -34.86063, 138.62866 -34.8603, 138.62856 -34.85833, 138.63601 -34.85796))\nON-V-LSP\tLakeside, Pakenham\tReady for service\tPOLYGON ((145.435528 -38.072927, 145.435635 -38.073248, 145.434712 -38.077047999999991, 145.434991 -38.077521000000004, 145.435378 -38.078636, 145.436622 -38.079717, 145.43748 -38.080121999999996, 145.441815 -38.081507000000009, 145.448317 -38.073501000000007, 145.435893 -38.07111900000001, 145.435528 -38.072927))\n17324634\tDrivers Run\tCheck with carrier\tMULTIPOLYGON (((147.231934912 -41.444262001, 147.23042112 -41.4426709825, 147.230379008 -41.442626970999996, 147.229424992 -41.441694034499996, 147.227718976 -41.43988701, 147.21987312 -41.4315700205, 147.219622912 -41.4317240145, 147.21946992 -41.431805007499996, 147.219339968 -41.4318770095, 147.219114976 -41.431985993, 147.218753152 -41.432067984999996, 147.21838992 -41.432166996999996, 147.218136832 -41.432257979999996, 147.217979168 -41.432293980999994, 147.217825088 -41.432339971999994, 147.217650112 -41.4324029645, 147.217472992 -41.4324389655, 147.21729984 -41.432511966499995, 147.217038848 -41.432565968, 147.21682896 -41.4325940325, 147.216606112 -41.432639042999995, 147.216375008 -41.432649033, 147.216107872 -41.432685033999995, 147.215934016 -41.4327220155, 147.21580512 -41.432731024999995, 147.215698912 -41.432713024499996, 147.215517856 -41.432650013499995, 147.21527808 -41.4326150115, 147.214987936 -41.4326150115, 147.21462288 -41.432607000999994, 147.214284832 -41.4326079815, 147.214171072 -41.432661982999996, 147.21410592 -41.4327159845, 147.213977056 -41.4328149965, 147.213803168 -41.432824986499995, 147.213627136 -41.432779976, 147.21351696 -41.4327529845, 147.213396 -41.432698982999995, 147.21334704 -41.432662982, 147.213224992 -41.432924979, 147.214220032 -41.433958980999996, 147.214172896 -41.434003972999996, 147.214127872 -41.4340489835, 147.214150912 -41.434072015999995, 147.217929856 -41.437924011999996, 147.217794112 -41.438006003999995, 147.217832992 -41.438051994999995, 147.218652 -41.439031015, 147.217384096 -41.439654983, 147.21823008 -41.441715994, 147.218240896 -41.4417429855, 147.219557056 -41.4430849755, 147.227479936 -41.440503966499996, 147.22774992 -41.441793028, 147.228126112 -41.442584032499994, 147.228890048 -41.442641992999995, 147.229842976 -41.4431669675, 147.230028 -41.443332024499995, 147.230062912 -41.443362993499996, 147.230070848 -41.443374963, 147.23101584 -41.444747996, 147.231934912 -41.444262001)), ((147.21321888 -41.432627961499996, 147.21309216 -41.432627961499996, 147.213021952 -41.432645961999995, 147.212943136 -41.432681963, 147.212849152 -41.432717964, 147.213069856 -41.432960961499994, 147.21321888 -41.432627961499996)))\n17316139\tPort Hedland International Airport Precinct 3\tCheck with carrier\tPOLYGON ((118.610489152 -20.3850569715, 118.61332704 -20.3826960015, 118.616522048 -20.3800459505, 118.621292032 -20.384857079, 118.623948832 -20.382522305000002, 118.61974656 -20.3782323585, 118.619269184 -20.3787299715, 118.616431328 -20.375758446, 118.616853952 -20.375362176, 118.612415872 -20.370749219500002, 118.61101584 -20.372396034, 118.612638368 -20.3762472345, 118.611389504 -20.377399858500002, 118.610695072 -20.377909256, 118.609754048 -20.378725013500002, 118.610489152 -20.3850569715))\n140\tGreenlea\tReady for service\tPOLYGON ((115.8279660797097 -32.294402268913331, 115.83431755065212 -32.294257161025783, 115.83354507446307 -32.299480898632247, 115.8319142913744 -32.304776880795671, 115.82358871459964 -32.304921971841857, 115.82539115905564 -32.298537746057448, 115.8279660797097 -32.294402268913331))\n17348174\tCaviar Drive\tCheck with carrier\tPOLYGON ((146.298855616 -26.387840605, 146.29795344 -26.387710198500002, 146.296469152 -26.387495635500002, 146.294985248 -26.3872809985, 146.294397728 -26.3871951215, 146.293501312 -26.387066343, 146.292017056 -26.3868515025, 146.291723296 -26.386807861, 146.29053312 -26.3866364955, 146.289049216 -26.386421396, 146.28756528 -26.386206204, 146.286080992 -26.385991012, 146.284597088 -26.385775838500003, 146.283113152 -26.385560739000002, 146.281629248 -26.385345621000003, 146.281271776 -26.387341475, 146.281275008 -26.387369373000002, 146.281293376 -26.387392054, 146.28132144 -26.387403561, 146.282746336 -26.387609947, 146.28423024 -26.387824954, 146.285714176 -26.388039961, 146.287198432 -26.388254968000002, 146.288682368 -26.3884698825, 146.2913568 -26.388857254, 146.2921848 -26.388977134, 146.292600256 -26.389037333, 146.29403088 -26.3892445145, 146.29398336 -26.389511821, 146.292552352 -26.3893046395, 146.292521408 -26.3893075255, 146.292496192 -26.389323898, 146.292483616 -26.389349465000002, 146.2922856 -26.3904543035, 146.292174016 -26.391078086500002, 146.291877376 -26.391035074, 146.292186592 -26.389306434, 146.29218336 -26.3892786285, 146.292165376 -26.389255855000002, 146.292136928 -26.389244422, 146.290118752 -26.3889521035, 146.288634496 -26.388737189, 146.28715056 -26.388522182, 146.285666656 -26.388307175, 146.284182368 -26.388092242000003, 146.282203808 -26.3878055105, 146.280917536 -26.3876192155, 146.281076992 -26.3867282185, 146.281332256 -26.3853026085, 146.278969568 -26.384960155, 146.277715328 -26.3862410395, 146.277024128 -26.3869469995, 146.27854512 -26.3882556895, 146.278972448 -26.388623525, 146.279903776 -26.3905706685, 146.281712032 -26.3905516875, 146.283746048 -26.3905302645, 146.28527136 -26.390514151, 146.286797056 -26.390498037500002, 146.288320576 -26.390482016500002, 146.289569408 -26.3913792295, 146.289671296 -26.391452212, 146.292746752 -26.3936617225, 146.292910912 -26.393424201000002, 146.294552512 -26.391049911, 146.295467296 -26.389726735500002, 146.295988576 -26.3889728975, 146.298855616 -26.387840605))\n313\tCanopy\tUnder construction\tPOLYGON ((145.25756294999746 -38.110762840000092, 145.25798572999747 -38.110621570000063, 145.25803055999745 -38.110635930000086, 145.25808852999754 -38.110744080000082, 145.25809762999745 -38.110760170000077, 145.25810754999748 -38.110775950000104, 145.25811827999746 -38.110791410000054, 145.25812977999752 -38.110806500000095, 145.25814205999745 -38.110821220000076, 145.25815506999754 -38.110835530000024, 145.25816880999753 -38.110849410000093, 145.2581832499975 -38.110862840000074, 145.25819836999747 -38.110875800000031, 145.25821413999748 -38.110888260000067, 145.2582305399975 -38.110900210000082, 145.25824752999748 -38.110911630000047, 145.25826509999754 -38.110922480000077, 145.25828320999744 -38.110932770000048, 145.25830182999758 -38.110942470000076, 145.25832093999747 -38.110951570000076, 145.25834048999752 -38.110960040000123, 145.25836046999746 -38.110967890000062, 145.25838082999746 -38.110975080000081, 145.25840153999755 -38.1109816200001, 145.25842256999749 -38.110987490000063, 145.25844387999746 -38.110992680000066, 145.25846544999754 -38.110997190000049, 145.25848722999754 -38.111001, 145.25850917999753 -38.111004110000081, 145.25870932999749 -38.111029160000072, 145.25869501999753 -38.111100350000079, 145.25875133999753 -38.111107410000059, 145.25876564999749 -38.111036210000066, 145.25939358999747 -38.111114790000066, 145.25926452999749 -38.111759840000069, 145.25935081999754 -38.112361310000054, 145.25970067999754 -38.112768630000105, 145.26134310999751 -38.1129784600001, 145.26036703999753 -38.117927040000069, 145.26017498999752 -38.117897850000119, 145.25130360999751 -38.116646230000093, 145.25210137999747 -38.112674930000139, 145.25290362999746 -38.11277672000007, 145.25314880999744 -38.11157002000008, 145.25370828999746 -38.11151248000008, 145.25372588999753 -38.11151035000006, 145.25374334999751 -38.111507610000068, 145.25376063999747 -38.111504250000088, 145.25377772999749 -38.111500290000059, 145.25379456999744 -38.111495730000073, 145.25381113999751 -38.111490570000086, 145.25382739999748 -38.111484850000096, 145.25384331999746 -38.111478550000093, 145.25480365999746 -38.111060740000106, 145.2551016499975 -38.110924130000086, 145.25560372999743 -38.110805180000071, 145.25597807999745 -38.110826920000093, 145.25635579999752 -38.110881720000094, 145.25711215999752 -38.111021920000056, 145.25717739999754 -38.110780980000087, 145.25722159999751 -38.110788450000037, 145.25724296999752 -38.110791720000073, 145.25726447999753 -38.11079435000007, 145.25728609999751 -38.11079633000012, 145.25730779999756 -38.110797660000067, 145.25732954999751 -38.1107983200001, 145.2573513199975 -38.110798340000059, 145.2573730699975 -38.110797690000119, 145.25739476999752 -38.1107964000001, 145.2574163899975 -38.110794440000078, 145.25743790999752 -38.1107918400001, 145.25745927999753 -38.110788590000119, 145.25748047999753 -38.110784700000096, 145.2575014799975 -38.110780170000076, 145.25752223999748 -38.110775010000083, 145.25754273999746 -38.110769230000095, 145.25756294999746 -38.110762840000092))\nAYAA-J6EL5\tGrantham Rebuild Project\tReady for service\tPOLYGON ((152.189940289936 -27.5642384987419, 152.190378006066 -27.5650348994952, 152.190522484165 -27.5655159211782, 152.19066844661 -27.5660018805644, 152.191228547186 -27.5668165956637, 152.191699113072 -27.5680776192539, 152.19290428783 -27.5677732722113, 152.19336723009 -27.5676313928299, 152.193444005288 -27.5678448083489, 152.193321247901 -27.5681173733995, 152.193379403746 -27.5685735711148, 152.19326359707 -27.5689590609333, 152.193267871646 -27.5692241780475, 152.193451465795 -27.5694415514752, 152.19488371979 -27.5700794778929, 152.19508 -27.5703149999811, 152.19537 -27.5705699999812, 152.198761955311 -27.57089941635, 152.203352637528 -27.5715292745966, 152.203373608702 -27.5713866487479, 152.203730871972 -27.5707762290755, 152.203354899861 -27.5706969484843, 152.203010394178 -27.5706462237063, 152.202852010702 -27.5706273527498, 152.202729988241 -27.5705870286659, 152.202629260788 -27.5705003149577, 152.202590050853 -27.5703872229933, 152.202598007939 -27.5703271665326, 152.202712059487 -27.570218930053, 152.202882387027 -27.5701499799951, 152.203069448663 -27.5701478026869, 152.203261863328 -27.5701708896685, 152.203455729178 -27.5701733186776, 152.203648533369 -27.5701551006336, 152.203841091632 -27.5701153512837, 152.204016400171 -27.5700592029105, 152.204105405219 -27.5700234934014, 152.204142610769 -27.5700606903613, 152.204544711129 -27.5696433292774, 152.204429266822 -27.569584344524, 152.20410543981 -27.5698170864033, 152.20393645194 -27.5698929588389, 152.203783991793 -27.5699417892539, 152.203618801767 -27.5699759479919, 152.203450216455 -27.5699922840983, 152.2032806567 -27.5699904674032, 152.203077910522 -27.5699671453939, 152.202833469944 -27.5699699952316, 152.202833809669 -27.5699713464087, 152.202587993748 -27.5700693660897, 152.202327688666 -27.5701659908172, 152.201438806816 -27.5700899090188, 152.201291492697 -27.5700132766251, 152.200192659644 -27.5686115980226, 152.200130434074 -27.5684285884045, 152.199984427375 -27.5684269268222, 152.199545097913 -27.5684369919209, 152.198755697484 -27.5684541889419, 152.19777817637 -27.5676185156484, 152.197688563379 -27.567543884024, 152.197386134409 -27.5669986710673, 152.197254550219 -27.5668948257523, 152.196889580213 -27.5661348235591, 152.196191928823 -27.5664008941752, 152.196030459057 -27.5661999100145, 152.195192089666 -27.5644540408572, 152.195123110958 -27.5643028627848, 152.195098696668 -27.5641827872574, 152.195140022865 -27.5640664936362, 152.195237754778 -27.5639809032726, 152.195454220625 -27.5638631387931, 152.195581326209 -27.5638134378705, 152.195755998877 -27.5637788004233, 152.195846554349 -27.5635962325678, 152.195542512014 -27.563015875432, 152.194843299737 -27.5623858421214, 152.194700842226 -27.5622574778333, 152.194383156069 -27.5619712185637, 152.19406547156 -27.5616849585912, 152.193770008982 -27.5613855873941, 152.193511593594 -27.5611237516527, 152.19277233744 -27.5616359227474, 152.192547052587 -27.5616766723129, 152.191843633239 -27.5619894014807, 152.191227992871 -27.562203033793, 152.191291974529 -27.562308492569, 152.191368118013 -27.5624124336934, 152.191453994736 -27.5625101642493, 152.191614986928 -27.5626640749832, 152.19167595698 -27.5627229693164, 152.191788171779 -27.5628492428875, 152.191889228987 -27.5629827906392, 152.191973779003 -27.5631140262893, 152.191602973013 -27.5633190774183, 152.189940289936 -27.5642384987419))\n47\tMaplewood\tReady for service\tPOLYGON ((144.56265 -37.714, 144.56172 -37.71391, 144.56167 -37.71395, 144.56155 -37.71459, 144.55993 -37.71407, 144.55977 -37.71358, 144.55883 -37.71383, 144.55833 -37.71387, 144.55795 -37.71362, 144.55825 -37.71322, 144.55819 -37.71319, 144.5584 -37.71296, 144.55842 -37.71271, 144.55855 -37.71244, 144.55866 -37.71233, 144.55899 -37.71204, 144.55865 -37.71179, 144.55863 -37.71169, 144.55885 -37.71136, 144.55985 -37.71049, 144.56005 -37.71028, 144.55965 -37.71004, 144.55973 -37.70975, 144.55928 -37.70864, 144.55785 -37.70973, 144.55524 -37.71167, 144.55319 -37.71318, 144.55195 -37.71408, 144.55157 -37.71436, 144.55115 -37.71463, 144.55082 -37.71483, 144.55046 -37.71502, 144.55017 -37.71518, 144.54984 -37.71531, 144.56223 -37.71688, 144.56241 -37.71593, 144.56253 -37.71515, 144.56265 -37.714))\n17329519\tMcMahon Road North Dandalup\tCheck with carrier\tPOLYGON ((115.930991872 -32.503848031000004, 115.930772992 -32.504526981, 115.930772992 -32.5051759795, 115.93103904 -32.5051759795, 115.931256832 -32.513838031, 115.932264128 -32.513842989000004, 115.932284992 -32.5157360385, 115.93311984 -32.5157370375, 115.933047104 -32.517093957, 115.934654144 -32.517061027000004, 115.934654144 -32.516679964, 115.934955104 -32.516249043500004, 115.935765824 -32.5158939915, 115.93570608 -32.5149820155, 115.934594048 -32.515007046, 115.93470816 -32.504120018, 115.932741824 -32.5042340335, 115.932530144 -32.5041380185, 115.930991872 -32.503848031000004))\n32\tWoodlands\tReady for service\tPOLYGON ((153.15887 -27.72047, 153.15861 -27.71982, 153.15776 -27.71839, 153.15776 -27.71661, 153.152861784 -27.716484244, 153.150497716 -27.715947333, 153.14965 -27.71566, 153.14917 -27.71566, 153.146976212 -27.715084174, 153.146641252 -27.715354382, 153.146120547 -27.715987192, 153.145334684 -27.71699626, 153.144993834 -27.718361751, 153.15887 -27.72047))\nAYAA-GBGC1\tKrystal Park Estate\tUnder construction\tPOLYGON ((120.13371719996 -33.9119984699961, 120.132463651605 -33.9141361095848, 120.130071869065 -33.9131634751851, 120.12876107996 -33.9153998399957, 120.128741079062 -33.9166006086922, 120.130851485086 -33.9174600455855, 120.13071767996 -33.9195927599959, 120.129897256033 -33.9204879100533, 120.129760895532 -33.9204884668053, 120.129724398261 -33.9205906139313, 120.134310859193 -33.9216094215393, 120.134495162551 -33.9212907854824, 120.135564298001 -33.9194658014227, 120.134201966299 -33.9189118011653, 120.135530029999 -33.9166445393225, 120.13661961488 -33.9170874375212, 120.13371719996 -33.9119984699961))\n17347518\tRiver Bend\tCheck with carrier\tPOLYGON ((147.737944096 -37.800278003, 147.73650192 -37.808235001, 147.739766048 -37.808629014000005, 147.740486048 -37.806903001, 147.74462496 -37.8031249865, 147.742876096 -37.8008299875, 147.737944096 -37.800278003))\n238\tExford Waters\tUnder construction\tPOLYGON ((144.57431589126315 -37.728708325797342, 144.57262073516173 -37.726162596313721, 144.57255636214896 -37.725687383784347, 144.56260000228554 -37.725789215297226, 144.56294332503819 -37.72874226826621, 144.56362997054353 -37.729964186775184, 144.5642307853652 -37.730405430170876, 144.57431589126315 -37.728708325797342))\n224\tTrue North\tUnder construction\tPOLYGON ((144.91319690701724 -37.617046893210357, 144.9128106689227 -37.616638969002764, 144.91070781705585 -37.616706956526585, 144.90942035672882 -37.616265036513404, 144.90839038846184 -37.614531324945659, 144.90826164242733 -37.613375494776854, 144.90675960538215 -37.613273508899461, 144.90641628262949 -37.614157381856565, 144.90693126675848 -37.618168673241769, 144.9103644943032 -37.622655624119673, 144.91469894406242 -37.6223836954119, 144.91319690701724 -37.617046893210357))\n348\tDonnybrae\tUnder construction\tPOLYGON ((144.97504161146659 -37.538066721261295, 144.97566897774456 -37.536300875149941, 144.97684271809214 -37.533304143694409, 144.98108748142749 -37.533778843347925, 144.97937216663843 -37.542786027479153, 144.97920631104137 -37.5435525731924, 144.97598426182157 -37.543217674953674, 144.9762125215446 -37.539980073045562, 144.97655319517989 -37.540086798778312, 144.97662202008735 -37.538577894397804, 144.97504161146659 -37.538066721261295))\n45\tGreenvale Gardens\tReady for service\tPOLYGON ((144.88392554244993 -37.621736953627973, 144.87944088897632 -37.621176092646991, 144.87978421172 -37.619684691724558, 144.87579308470447 -37.619157807893927, 144.87520299873174 -37.62210660968659, 144.87408719978106 -37.627183883348543, 144.87812124213841 -37.627625738459756, 144.87918339690731 -37.622777934383578, 144.8835822196973 -37.623317539082642, 144.88392554244993 -37.621736953627973))\n55\tCraigieburn\tReady for service\tPOLYGON ((144.91833857808493 -37.591837135551522, 144.918943008 -37.587920927, 144.917978165 -37.587815539, 144.916858327 -37.587245462999995, 144.914594355 -37.586188033999996, 144.911599173 -37.58546149099999, 144.910693328 -37.591452076, 144.908180785 -37.591277929000015, 144.907863619 -37.593322927, 144.90992717060848 -37.593741397512304, 144.91027049337015 -37.591497083645173, 144.91074256214833 -37.591667109792922, 144.91087130818283 -37.590476918604324, 144.91473368916388 -37.59081697517194, 144.91473368916388 -37.591599099380154, 144.91833857808493 -37.591837135551522))\n46\tCurlewis Park\tReady for service\tPOLYGON ((144.552845283 -38.17030866, 144.54364 -38.16922, 144.542886401 -38.173393312, 144.552020618 -38.174486929, 144.552845283 -38.17030866))\n300\tRidgeview\tReady for service\tPOLYGON ((152.92398963929068 -27.180970349691385, 152.92123232842931 -27.179681898101673, 152.9206637001185 -27.181056245934968, 152.91959081650967 -27.183155911324686, 152.91806732178458 -27.18433934167664, 152.91780982972455 -27.185284168187671, 152.92061005593675 -27.185961766112214, 152.92141471863661 -27.185513215834533, 152.92505179405953 -27.186038114915789, 152.92497669220683 -27.186677534096912, 152.92581354142661 -27.185589564945111, 152.92804513931895 -27.184224816707307, 152.92880688668598 -27.184005310187715, 152.92849575043519 -27.182373313389373, 152.92758379937175 -27.182268330321417, 152.92419348717786 -27.181829309151539, 152.92350684167249 -27.182201522863981, 152.92332445145624 -27.1818197651936, 152.92332445145624 -27.1818197651936, 152.92333518029616 -27.181676605730544, 152.92334590912714 -27.181676605730544, 152.92345319749074 -27.181581165986195, 152.92398963929068 -27.180970349691385))\n17362862\tGillkrest\tCheck with carrier\tPOLYGON ((149.187270976 -33.508577629, 149.181759072 -33.510091632, 149.17950208 -33.5098926275, 149.17720608 -33.5094796335, 149.176788192 -33.5115136715, 149.17647232 -33.513051077, 149.176431424 -33.513250063, 149.176375136 -33.5135241035, 149.175991232 -33.5153926775, 149.177073184 -33.5148656495, 149.179218144 -33.5147856555, 149.181049664 -33.515063248000004, 149.181954112 -33.5151296445, 149.184076096 -33.514814645, 149.185950368 -33.514229157, 149.185994112 -33.514216244, 149.186011584 -33.5141311995, 149.18599408 -33.5141203955, 149.185976544 -33.514109647, 149.185958944 -33.514098954, 149.18594128 -33.514088335000004, 149.18592352 -33.514077753, 149.18590576 -33.514067245, 149.185887904 -33.5140567925, 149.185870048 -33.514046377, 149.185852096 -33.514036054, 149.185834112 -33.514025768, 149.185816064 -33.514015556000004, 149.185797984 -33.5140053995, 149.18577984 -33.513995317, 149.185761632 -33.513985271500005, 149.18574336 -33.5139753, 149.185725088 -33.513965384, 149.18570672 -33.5139555235, 149.18568832 -33.513945737, 149.185669856 -33.5139359875, 149.18578688 -33.5137804765, 149.185927744 -33.5137556495, 149.18625808 -33.513373143500004, 149.187270976 -33.508577629))\n53\tAspire\tReady for service\tMULTIPOLYGON (((144.72971384892659 -37.70656731152792, 144.72973530659749 -37.706541847057089, 144.72970947250676 -37.706545078809441, 144.72971384892659 -37.70656731152792)), ((144.72471421132394 -37.7071699681171, 144.72970947250676 -37.706545078809441, 144.72721403012525 -37.693867943139217, 144.7266132153126 -37.694003776770359, 144.72614114652541 -37.693901901570506, 144.72545450102007 -37.694071693492255, 144.7238666332822 -37.702221248500358, 144.72471421132394 -37.7071699681171)))\n168\tSunbury Fields\tReady for service\tPOLYGON ((144.72058211325393 -37.55414704520112, 144.71967016218144 -37.556273410303554, 144.71987401006865 -37.556307431652264, 144.71984182356678 -37.55643501157072, 144.7235540008424 -37.55694532906027, 144.72752367017807 -37.558255127953579, 144.72799573896521 -37.5584337351097, 144.73091398237193 -37.559326764468381, 144.73279152868963 -37.559930616350506, 144.73368202208221 -37.560228288012183, 144.73403607366583 -37.558978059040356, 144.73411117551854 -37.557489663863919, 144.73407898901667 -37.557081413134142, 144.73418627737126 -37.556681665460843, 144.73391805647131 -37.555524936707755, 144.72502385137673 -37.553534640798489, 144.72413335798419 -37.5547849611032, 144.72401534078963 -37.554793466611194, 144.72058211325393 -37.55414704520112))\n3\tGateway Business Park\tUnder construction\tPOLYGON ((150.69754581272881 -23.16892639545118, 150.6980953637491 -23.165521877688651, 150.70507099508211 -23.162171147951561, 150.70552460368521 -23.16297585167711, 150.70659475992059 -23.162461081517971, 150.708084694562 -23.160701345122241, 150.7076599802711 -23.160395425517, 150.70911225489419 -23.158992861805089, 150.711175051273 -23.16045711138354, 150.71055493788839 -23.161203727118369, 150.71008034017751 -23.161212022569309, 150.7089448132088 -23.161595041773811, 150.70813439454031 -23.16216675217817, 150.7076516240335 -23.163052511289742, 150.70895155965241 -23.165380881568549, 150.70684985294841 -23.16663974366368, 150.70469384304249 -23.16751276838416, 150.69754581272881 -23.16892639545118))\n17197764\tHeritage Hills \tCheck with carrier\tPOLYGON ((115.834854944 -33.2903079875, 115.844623904 -33.290303048, 115.844640128 -33.2853589785, 115.840487168 -33.285348988500004, 115.834913984 -33.2845980365, 115.834884832 -33.287446981, 115.834854944 -33.2903079875))\n25\tCasiana Grove\tReady for service\tPOLYGON ((145.241297532 -38.117325487, 145.250431205 -38.118535408, 145.251544198 -38.113079411, 145.242401488 -38.112025462, 145.241297532 -38.117325487))\n17345766\tAvon Ridge\tCheck with carrier\tPOLYGON ((116.094329984 -31.750261002000002, 116.0935 -31.750194994, 116.090935008 -31.748897996, 116.089951008 -31.7501990085, 116.088544992 -31.7503880045, 116.088521984 -31.749825993, 116.08732 -31.749268995, 116.086468992 -31.749854002, 116.087100992 -31.751820996, 116.087001984 -31.7534319945, 116.087441984 -31.753501998500003, 116.087527008 -31.753958005, 116.08732 -31.7542710065, 116.087456 -31.755881006000003, 116.087688992 -31.7561200075, 116.087775008 -31.7564319915, 116.08792 -31.756768007, 116.088416992 -31.757029005, 116.088028992 -31.757897006500002, 116.090111008 -31.7584619965, 116.09026 -31.7581970025, 116.090320992 -31.757932008500003, 116.090175008 -31.757693007, 116.090179008 -31.757212007, 116.090091008 -31.756783991000002, 116.091561984 -31.756844005, 116.091857984 -31.756505991500003, 116.092621984 -31.756478001, 116.09254 -31.755636991, 116.092083008 -31.7546470005, 116.094401984 -31.7546430045, 116.094329984 -31.750261002000002))\n192\tAlbright\tReady for service\tPOLYGON ((144.72443376542194 -37.823276292240273, 144.72853218080107 -37.8234966359699, 144.7287682151902 -37.8233779894281, 144.73065649033884 -37.823615282321676, 144.72981964111912 -37.829394823609704, 144.72063575745366 -37.829327031027923, 144.72089324952267 -37.82739491625771, 144.72280298234227 -37.8254288528077, 144.72327505112943 -37.82474241314543, 144.72357545854027 -37.824793260746723, 144.72359691621119 -37.824437326801913, 144.72440157892007 -37.8233356156164, 144.72443376542194 -37.823276292240273))\n49\tPasadena\tReady for service\tPOLYGON ((145.326901918 -38.1199733, 145.326697733 -38.119402879, 145.325712465 -38.118740298, 145.318544775 -38.117738927, 145.318287669 -38.118802605, 145.31910384 -38.118916548, 145.318745082 -38.120372803, 145.31908964 -38.120474443, 145.317672598 -38.121643994, 145.321857916 -38.124258191, 145.323724992 -38.125777732, 145.325576321 -38.125958841, 145.326901918 -38.1199733))\n187\tQuay 2\tReady for service\tPOLYGON ((144.32025705337773 -38.30801646041315, 144.32053600310866 -38.307864921736353, 144.3247631645223 -38.308319536816889, 144.32600770950745 -38.308050135631191, 144.3259218788148 -38.3084037244823, 144.32704840660543 -38.308530005796811, 144.32697330475273 -38.310188479987346, 144.32764922142709 -38.310853542740169, 144.32654415130739 -38.310904053586114, 144.32622228622563 -38.312057374995405, 144.32609354019112 -38.313581078077839, 144.32536397934396 -38.314153510740489, 144.31999956130872 -38.315163675004264, 144.31879793167437 -38.314793283075119, 144.31847606659264 -38.313648423331308, 144.31860481261813 -38.312890785620972, 144.32025705337773 -38.30801646041315))\n161\tAbiwood 660\tReady for service\tGEOMETRYCOLLECTION (LINESTRING (145.33178781032115 -38.096575922527705, 145.33177708148119 -38.096575922527705), POLYGON ((145.33177680983457 -38.096577213425213, 145.33177708148119 -38.096575922527705, 145.33176635264121 -38.096575922527705, 145.33177680983457 -38.096577213425213)), POLYGON ((145.33696983813107 -38.104520628828041, 145.33833240031083 -38.097386474107822, 145.33177680983457 -38.096577213425213, 145.33039306163053 -38.10315295135959, 145.33272121905551 -38.103566634282551, 145.33263538836286 -38.104056296756056, 145.33696983813107 -38.104520628828041)))\n17383368\tHumewood Pl Luddenham\tCheck with carrier\tPOLYGON ((150.755635008 -33.848964993500005, 150.755420992 -33.850007006, 150.755406016 -33.8501420005, 150.755443008 -33.850379004000004, 150.754168992 -33.850450007, 150.753531008 -33.853889009, 150.759063008 -33.8545879945, 150.759607008 -33.853785002, 150.758788992 -33.852559007, 150.758892992 -33.852533995, 150.762816992 -33.8504469915, 150.765383008 -33.849351995, 150.766006016 -33.8488489985, 150.766835008 -33.847495002, 150.767086016 -33.8464400025, 150.766323008 -33.8463310005, 150.76482 -33.846830001, 150.764103008 -33.847692008500005, 150.763935008 -33.847752004, 150.763847008 -33.847784009, 150.76348 -33.847866001, 150.763350016 -33.847888996500004, 150.763176992 -33.847901003000004, 150.761526016 -33.847827003, 150.760934016 -33.847792001, 150.760848 -33.847935006, 150.760835008 -33.847933008, 150.760794016 -33.8479269955, 150.760358016 -33.8478139975, 150.759772992 -33.848313997, 150.759428992 -33.848608998, 150.759179008 -33.848826003, 150.758932 -33.849042009, 150.758775008 -33.8491800005, 150.757736 -33.849602004, 150.758418016 -33.851347997, 150.758443008 -33.851380002, 150.758500992 -33.8514399975, 150.758514016 -33.851529001, 150.758475008 -33.8515850005, 150.758415008 -33.8516150075, 150.758336992 -33.8516160065, 150.758292 -33.851600004, 150.758226016 -33.8515119995, 150.758232 -33.8514059945, 150.757476 -33.8494330065, 150.757399008 -33.849230006, 150.757376992 -33.849120005, 150.757356 -33.848980996, 150.757374016 -33.8488410065, 150.756536 -33.848873992, 150.756532 -33.848984992, 150.755635008 -33.848964993500005))\n10\tParkBridge\tReady for service\tPOLYGON ((150.83601 -33.91103, 150.83593 -33.91011, 150.83868 -33.90868, 150.83988 -33.90918, 150.83979 -33.90797, 150.84048 -33.9074, 150.84202 -33.9069, 150.8428 -33.90854, 150.844 -33.9079, 150.84408 -33.90711, 150.84528 -33.90619, 150.84631 -33.90597, 150.84726 -33.90989, 150.84812 -33.91203, 150.84872 -33.9131, 150.83601 -33.91103))\n250\tAquarevo\tUnder construction\tPOLYGON ((145.24955213212104 -38.071266473632569, 145.25797426842843 -38.072423596032927, 145.25912225388996 -38.073783402610296, 145.25931537293724 -38.0733864430547, 145.25287807130215 -38.064382483935255, 145.25008857392996 -38.06412062613996, 145.24920880936835 -38.067093924072111, 145.24948775910826 -38.067212177741794, 145.24920880936835 -38.067811889835525, 145.24921953820831 -38.067820336449863, 145.24955213212104 -38.071266473632569))\n17376685\tHarold Circuit\tCheck with carrier\tPOLYGON ((152.890432 -31.080961009000003, 152.888388 -31.0908220085, 152.892935008 -31.0914609985, 152.894990016 -31.081654000500002, 152.890432 -31.080961009000003))\n70\tCentral Hills\tReady for service\tPOLYGON ((150.75842 -34.02411, 150.76121 -34.0202, 150.76293 -34.02105, 150.76417 -34.02158, 150.76696 -34.02297, 150.76911 -34.02393, 150.7693 -34.024, 150.76885 -34.02468, 150.76774 -34.02619, 150.76593 -34.0285, 150.75842 -34.02411))\n60\tStoneleigh\tReady for service\tPOLYGON ((153.116339917 -27.709207521, 153.113712765 -27.708752521, 153.114035999 -27.707402558, 153.10877074 -27.706614651, 153.107670551 -27.713015857, 153.109526755 -27.71318604, 153.109670912 -27.712225855, 153.110476057 -27.712393315, 153.110313346 -27.71333106, 153.114435073 -27.713881994, 153.114518274 -27.713175298, 153.115643545 -27.713346448, 153.116339917 -27.709207521))\n326\tMambourin\tUnder construction\tPOLYGON ((144.59766150734774 -37.890161567950948, 144.59766150734774 -37.890161567950948, 144.59763625531892 -37.890449593658417, 144.59777059389015 -37.890456990743935, 144.59775802757446 -37.8906003246329, 144.59772918608891 -37.890599188036759, 144.59779417063717 -37.891070367506778, 144.59779482298632 -37.891070311000277, 144.59789798013327 -37.89181825907356, 144.59792557727403 -37.891815868626658, 144.59795707148177 -37.892044215579091, 144.597459603501 -37.892087304866351, 144.597459603501 -37.892087304866337, 144.59730587299896 -37.892098010271219, 144.59730587716408 -37.892098054071205, 144.59730587716408 -37.892098054071205, 144.59719591879573 -37.8921026129111, 144.59719586316331 -37.892102614559889, 144.59719584909951 -37.892102341595212, 144.59717686098631 -37.892102956000222, 144.59711229598628 -37.892104152000272, 144.59708851208521 -37.892104263591541, 144.59708850471142 -37.892108660709042, 144.59708850471142 -37.892108660709042, 144.59708852105612 -37.892109073137654, 144.59708857140336 -37.892109483836045, 144.59708865553759 -37.892109891045592, 144.59708877309851 -37.89211029302249, 144.5970889235827 -37.892110688045491, 144.59708910634578 -37.892111074423, 144.59708932060514 -37.892111450500494, 144.59708956544327 -37.892111814667565, 144.59708983981173 -37.892112165364779, 144.59709014253565 -37.892112501090409, 144.59709047231871 -37.892112820406822, 144.59709082774876 -37.892113121946629, 144.59711064699795 -37.89212887012107, 144.59711064699795 -37.89212887012107, 144.59711130903159 -37.892129431889821, 144.5971119231348 -37.892130026866973, 144.59711248666181 -37.892130652489122, 144.59711299718467 -37.892131306060875, 144.59711345250386 -37.892131984766351, 144.59711385065771 -37.892132685681446, 144.59711418993078 -37.892133405786275, 144.59711446886132 -37.8921341419784, 144.59711468624764 -37.892134891085981, 144.59711484115309 -37.89213564988156, 144.5971149329103 -37.892136415095955, 144.59711559499169 -37.892142544843395, 144.59699242833361 -37.892153212485091, 144.59699242833361 -37.892153212485091, 144.59699149628389 -37.892145132578456, 144.59699092559737 -37.89213703159519, 144.59699091516811 -37.892136657892422, 144.59699091979422 -37.8921362841162, 144.59699091979422 -37.8921362841162, 144.59699098144489 -37.892135475638746, 144.5969911134664 -37.892134672472196, 144.5969913152272 -37.892133878458672, 144.59699158576208 -37.892133097396496, 144.59699192377693 -37.892132333022026, 144.59699232765473 -37.892131588991838, 144.59699279546351 -37.892130868865131, 144.59699332496533 -37.8921301760868, 144.59699391362727 -37.892129513970893, 144.5969945586333 -37.89212888568477, 144.59699525689791 -37.892128294233977, 144.59701455485242 -37.892113041595309, 144.59701455485242 -37.892113041595309, 144.5970149112928 -37.892112740805437, 144.59701524214594 -37.892112422185015, 144.59701554599513 -37.892112087098411, 144.59701582153917 -37.892111736980524, 144.59701606759816 -37.892111373330629, 144.59701628311845 -37.8921109977059, 144.59701646717713 -37.892110611714855, 144.59701661898603 -37.892110217010341, 144.59701673789513 -37.892109815282559, 144.59701682339519 -37.892109408251734, 144.59701687512009 -37.892108997660891, 144.59701689284839 -37.8921085852682, 144.59701690025102 -37.892104173487411, 144.59698313498626 -37.89210386500028, 144.59691857898628 -37.892102381000235, 144.59688560318531 -37.892101181957564, 144.59687668988306 -37.892101153769836, 144.59553697494923 -37.892042500793842, 144.59553697496736 -37.892042500533677, 144.59502709498756 -37.892020151586088, 144.59502709496869 -37.892020151856393, 144.59495837143868 -37.892017139413376, 144.59479167451613 -37.892079426229543, 144.59479159624956 -37.892079546837728, 144.59476037298623 -37.89217358100025, 144.59473415598617 -37.892421233000256, 144.59473206698624 -37.89244948800026, 144.59473060098628 -37.892477768000248, 144.59472975798622 -37.892506063000241, 144.59472953798627 -37.89253436600027, 144.59474587098623 -37.893047626000254, 144.59474711498626 -37.893075912000228, 144.59474897998621 -37.893104177000254, 144.59475146798624 -37.893132412000249, 144.59475722698619 -37.893181071000285, 144.5947624179862 -37.893218805000259, 144.59476231668046 -37.893218980057839, 144.59515678824181 -37.896086497076034, 144.59515668079936 -37.896086506357776, 144.59522486970238 -37.896582170977382, 144.59522486970238 -37.896582170977382, 144.59523013319136 -37.896614866768033, 144.59528013647085 -37.896885878247105, 144.59528013647085 -37.896885878247105, 144.59529638055236 -37.8969961007874, 144.59530455615524 -37.8971068831491, 144.59530463589553 -37.897217854763404, 144.59529661947002 -37.897328644426857, 144.59528053365779 -37.897438881542854, 144.59522981582484 -37.897715964613809, 144.59525979825295 -37.897747913738669, 144.59788869553765 -37.898050042714772, 144.59788863861655 -37.898050389977229, 144.59790548739406 -37.8980521241434, 144.59785758904303 -37.898327094519061, 144.597325617492 -37.898302573202095, 144.59716622600359 -37.898232203577187, 144.59701437592818 -37.898214599479729, 144.59701414889074 -37.898214653644409, 144.59665870642061 -37.898173448125824, 144.59665892451648 -37.898173319317586, 144.59665879876354 -37.898172996719282, 144.59647758201888 -37.898149720479338, 144.59589809839207 -37.898056774363454, 144.59506296446438 -37.897959957385595, 144.59506158330015 -37.897960987790576, 144.59505994287454 -37.89795960708188, 144.59393375345144 -37.8978301341895, 144.5939339509417 -37.897829064879069, 144.59293446973913 -37.8977151333046, 144.59293505369391 -37.897711919350279, 144.59293491299212 -37.8977119031102, 144.59293738001537 -37.897698581643837, 144.5929374750975 -37.897698592491835, 144.59294306410098 -37.897667831857724, 144.59294307439507 -37.897667833032173, 144.59294369285325 -37.897664493468945, 144.59023166059816 -37.897349884322423, 144.59026055383143 -37.897193399839246, 144.59026216385135 -37.897183581170346, 144.59026236248951 -37.897183604200848, 144.59026478570331 -37.89717048014208, 144.5902646550615 -37.897170464995213, 144.5903750429861 -37.896573324000236, 144.59036530857566 -37.896572238119127, 144.59039163998611 -37.896429563000289, 144.59086419108925 -37.894735346442694, 144.59086427773477 -37.89473493131365, 144.59058049552837 -37.894707383831779, 144.59058049504898 -37.89470738693359, 144.59056357051423 -37.894705744242927, 144.59056357099365 -37.894705741141109, 144.59053062920802 -37.894702543813359, 144.59053062873164 -37.894702546895495, 144.59045155016861 -37.894694870977219, 144.59045154993782 -37.894694871249158, 144.59045154998262 -37.894694870959171, 144.59044477116285 -37.894694212957013, 144.59044477155342 -37.894694210430046, 144.59041802003142 -37.894691613901934, 144.59041801963772 -37.894691616449236, 144.59040053135433 -37.894689916430956, 144.59040053096061 -37.894689918978266, 144.58957123065036 -37.894609420497282, 144.58960992767982 -37.894359069508965, 144.58960993041777 -37.894359069774737, 144.58960999678249 -37.894358622446518, 144.5896079574014 -37.894358424487194, 144.58961003048111 -37.894345012613421, 144.58961207275132 -37.89434521085316, 144.58962541115432 -37.894258923553139, 144.5896233688141 -37.894258725292431, 144.58962419809748 -37.894253360547914, 144.58962624044221 -37.894253558809041, 144.58962990312867 -37.89422986452248, 144.58962786075259 -37.894229666258326, 144.58962993397049 -37.894216254397911, 144.58963197634623 -37.894216452662043, 144.58963204545347 -37.894216005600036, 144.58968472485472 -37.894221119453029, 144.58971512904139 -37.894024415901939, 144.59093369689774 -37.894142693021109, 144.58977001956123 -37.892455099586414, 144.589651545824 -37.8924654660054, 144.5896224172796 -37.892256397217828, 144.58961497947482 -37.892257047995948, 144.58961232634795 -37.892238005238177, 144.58947360585262 -37.892250479525615, 144.58945413698606 -37.891997638000277, 144.58945448412604 -37.891997487675134, 144.58926612871659 -37.89172431829023, 144.58919528709509 -37.891730516706026, 144.58919481696174 -37.891730299856533, 144.58919471298606 -37.8917303090003, 144.58935316999003 -37.890893235248477, 144.58935317767367 -37.890893236162356, 144.58935317017765 -37.890893234257796, 144.58957609498606 -37.889716066000261, 144.58957765498604 -37.889716152000275, 144.59435066332702 -37.889979676063838, 144.59458131884514 -37.889959702963729, 144.59458636432382 -37.8899926610171, 144.59766150734774 -37.890161567950948))\n134\tBrookwater\tReady for service\tGEOMETRYCOLLECTION (POLYGON ((152.89150808811092 -27.664953051369498, 152.89260242939071 -27.6644114193901, 152.89276336193603 -27.664696489187531, 152.89283846378876 -27.664867530709113, 152.89285992145969 -27.665067078812612, 152.89275263309611 -27.665390155922317, 152.89270971775426 -27.665551694118655, 152.89252732753798 -27.665646716475941, 152.89248441219613 -27.665855765370935, 152.89248441219613 -27.665922280843937, 152.89233420849072 -27.665884272007364, 152.89210890293259 -27.665950787463064, 152.89150808811092 -27.664953051369498)), POLYGON ((152.8957406139221 -27.664007569236734, 152.89503787516128 -27.665292757775134, 152.89469723461636 -27.665922280843123, 152.89433781860825 -27.666537547054368, 152.89428685664316 -27.666701459090213, 152.89440487383771 -27.666672952666893, 152.8944504713873 -27.666694332484489, 152.89448802231368 -27.666713336764346, 152.8945228910323 -27.66677747618326, 152.89450143336137 -27.66685349322184, 152.89445583580277 -27.666881999598075, 152.89442096709314 -27.666898628314172, 152.89428685664316 -27.668231292901758, 152.89430294989862 -27.668392826898533, 152.89437805175132 -27.668473593807409, 152.89431636093732 -27.668521103725737, 152.89393280505055 -27.668126770775867, 152.89361362217653 -27.66835719441913, 152.89393816946603 -27.668727771631026, 152.89431904314503 -27.669095972103683, 152.89469723461636 -27.669428539205619, 152.89514784573259 -27.669784859978062, 152.89531414269348 -27.669639956337942, 152.89539997337712 -27.669544937452731, 152.89550994394844 -27.669445167534231, 152.89530877826897 -27.669243251945367, 152.89516393898805 -27.669057964370154, 152.89501641749035 -27.668796660846727, 152.89489571807908 -27.668452214337105, 152.89487157820045 -27.668209913384036, 152.89499495981946 -27.666765598515308, 152.895102248183 -27.666632568554515, 152.89541606663258 -27.666625441944305, 152.89563064335076 -27.666927134678637, 152.89755915163352 -27.664230874799447, 152.89662306069138 -27.664233250388548, 152.8957406139221 -27.664007569236734)), POLYGON ((152.90161062834122 -27.658654038139588, 152.9014523780036 -27.658858348997491, 152.901294127675 -27.658996139825373, 152.90100176688736 -27.659373875859607, 152.90057529565877 -27.660195862971968, 152.900510922637 -27.660314646724885, 152.90026684162467 -27.660730388846023, 152.89947290775575 -27.661911087848978, 152.89878894445815 -27.662609523508443, 152.89883320091283 -27.663168981506967, 152.89879967328915 -27.663253315691218, 152.89885599967869 -27.663493252029141, 152.89866019842367 -27.664125161052652, 152.89857973214649 -27.66415841932124, 152.89852072354918 -27.664198804347819, 152.89846171495194 -27.664255818477709, 152.89834637996512 -27.66442923627374, 152.89833565113415 -27.664507630528778, 152.89833565113415 -27.664571771242151, 152.89834906217288 -27.6646454142364, 152.89817203638103 -27.664678672345886, 152.89750416633888 -27.666317809519473, 152.8973217761226 -27.66690694267206, 152.896956995699 -27.667365419096637, 152.89679606315363 -27.667479444022813, 152.89666463491139 -27.667617223983083, 152.8958385145406 -27.667624350528641, 152.89595921394286 -27.667997305732168, 152.89602626917238 -27.668211101134563, 152.89600481149245 -27.668436773606285, 152.89683897849548 -27.669082906947487, 152.89701600429629 -27.669063903079707, 152.89742906448618 -27.669489113819544, 152.89773081300984 -27.669492677030934, 152.898594484316 -27.668765779479397, 152.89964054582944 -27.667886844610084, 152.8997049188512 -27.667701554734982, 152.8997800207039 -27.667687301655089, 152.90025745390656 -27.667349978212236, 152.90072415827825 -27.667022155840044, 152.90114794729911 -27.666893877253369, 152.9014778590041 -27.666705022391724, 152.90153686760138 -27.666581494508179, 152.90201430081302 -27.666246543196628, 152.90215645788624 -27.666227538836409, 152.9023308014703 -27.666158648001971, 152.90258561133152 -27.666008988452656, 152.9027036285261 -27.665942473032402, 152.90269826411063 -27.665909215306698, 152.90340234395731 -27.665405597082817, 152.90350426789641 -27.6652488098031, 152.90349890348094 -27.665061139885079, 152.9034908568577 -27.664666794450625, 152.90342380162821 -27.663870972524268, 152.90332992431235 -27.6627591877119, 152.90331919548137 -27.662645157861039, 152.90319044944687 -27.662504996006053, 152.90322263594874 -27.662438478453367, 152.90327091571504 -27.662208042330487, 152.90326018687512 -27.662117768253058, 152.9029892837674 -27.661245906879962, 152.90286321994066 -27.660830166719418, 152.90282566901428 -27.660749394162089, 152.90278275367245 -27.660704256530366, 152.90267546531786 -27.660651991881107, 152.90252526161248 -27.66064248921543, 152.90275593158609 -27.660509451802003, 152.90278007146472 -27.660488070773773, 152.90278543588917 -27.660445308704805, 152.90213902350897 -27.659647080354222, 152.90181715842721 -27.659226582718279, 152.90161062834122 -27.658654038139588)))\n167\tLife\tReady for service\tPOLYGON ((144.74404923692424 -37.907726676551668, 144.74368445649165 -37.90974133442252, 144.74426381364239 -37.909809053056264, 144.74357716813708 -37.913956700561052, 144.75074403061933 -37.914667702368192, 144.75177399888634 -37.908945635803455, 144.74404923692424 -37.907726676551668))\n308\tEllarook\tUnder construction\tPOLYGON ((144.72281371116424 -37.811745994778533, 144.71215997695549 -37.810915332763415, 144.71232090950085 -37.811330664938758, 144.71234236717177 -37.811669709881109, 144.71173082351916 -37.812195226464361, 144.71119438171024 -37.812432555308511, 144.71081887245569 -37.812754643234086, 144.70947776794685 -37.812983494327007, 144.70882330894341 -37.813195392854162, 144.70810447692719 -37.8141701182483, 144.722363100048 -37.815399101489739, 144.72281371116424 -37.811745994778533))\nAYAA-H5USB\tGap Ridge Industrial Area\tReady for service\tPOLYGON ((116.765896746965 -20.7372019200672, 116.764746285363 -20.737648445312, 116.764617983446 -20.7377504677582, 116.764266754941 -20.7375265832299, 116.762341873154 -20.7377360226073, 116.762979640391 -20.7428597824349, 116.764603582634 -20.7429687666225, 116.764614356408 -20.7429694896091, 116.76579012 -20.7469337399213, 116.764696242835 -20.7549575619153, 116.767530526295 -20.7547362907677, 116.767594944986 -20.7554407139414, 116.76864672 -20.7553645799222, 116.76863538 -20.7552741299222, 116.768744493333 -20.7552641658172, 116.768874993707 -20.7567473028615, 116.768884242911 -20.7568161775159, 116.768615076834 -20.7568432787459, 116.764340496727 -20.7571769968719, 116.763878626438 -20.7601640986088, 116.769648441523 -20.7594521661448, 116.769368566655 -20.7572819306867, 116.769536715409 -20.7570351504617, 116.769499800335 -20.7565969263569, 116.769390439776 -20.7565192329422, 116.769335384639 -20.7563940282585, 116.76909534295 -20.7542705844204, 116.769093433681 -20.7542284809513, 116.76922151092 -20.7540793924051, 116.76923814698 -20.754069691688, 116.769205993897 -20.7536687006179, 116.769135482364 -20.7536559172386, 116.769057882757 -20.7535954848788, 116.76900408308 -20.7534620976341, 116.768773070049 -20.7514158844498, 116.768908853482 -20.7512559887109, 116.768909237025 -20.7510035292522, 116.773279107608 -20.7505633886536, 116.773184330148 -20.7502464991855, 116.773085319699 -20.7503970203712, 116.768853003573 -20.7508048439114, 116.768599552007 -20.750686646994, 116.768034416829 -20.7493626673391, 116.768157419502 -20.7491211274923, 116.770298475985 -20.7483023486822, 116.771082619457 -20.7475242235998, 116.771379373273 -20.7474964945643, 116.770715505392 -20.7468053145629, 116.770522525057 -20.7467697037331, 116.770767667237 -20.7469841036197, 116.770825000468 -20.7470935313199, 116.770824828903 -20.74720742833, 116.770061472543 -20.747976716216, 116.768691053401 -20.7485242688923, 116.768299756205 -20.747649813162, 116.768937207906 -20.7473974169851, 116.768553365336 -20.7465396180129, 116.769288199454 -20.746248659924, 116.769132765565 -20.7459013020811, 116.768099935467 -20.7463091682661, 116.767431581796 -20.7447779566098, 116.767180645527 -20.7443675230774, 116.765082855198 -20.739679086499, 116.765391147003 -20.7390134675279, 116.76559353224 -20.7389343080078, 116.765491298886 -20.7386339196254, 116.765415518233 -20.7386458937743, 116.765260132705 -20.7386122113021, 116.764931145098 -20.7384729180511, 116.764824565547 -20.7383881538297, 116.764790043288 -20.7383038330355, 116.764812787761 -20.7381665648727, 116.764862843427 -20.7380634401222, 116.764997942166 -20.7379502620242, 116.76592759951 -20.73761821881, 116.766111083244 -20.7375495003614, 116.765969893039 -20.737145714814, 116.765896746965 -20.7372019200672))\n17291731\tFishermans Rd\tCheck with carrier\tPOLYGON ((115.577883712 -33.4777957195, 115.580933984 -33.479492669, 115.58180736 -33.4780608615, 115.582199392 -33.477702757, 115.582550752 -33.477362634500004, 115.582900672 -33.476851627500004, 115.58301264 -33.4763792115, 115.583131072 -33.4761931755, 115.583406464 -33.475760738, 115.583105504 -33.4754314195, 115.58339424 -33.474886021, 115.584069952 -33.4742748365, 115.58482704 -33.4741564735, 115.584995168 -33.4742470125, 115.58551104 -33.4748285045, 115.585511392 -33.475050449, 115.589207168 -33.4769497145, 115.593747104 -33.470484038500004, 115.59371184 -33.470407985, 115.589310112 -33.469245001000004, 115.587227872 -33.467873041000004, 115.577883712 -33.4777957195))\n21\tEvergreen Waters\tReady for service\tGEOMETRYCOLLECTION (LINESTRING (144.27743 -36.71427, 144.27743 -36.7143), POLYGON ((144.2837 -36.71591, 144.28563 -36.71441, 144.28881 -36.71282, 144.28605 -36.70903, 144.2841 -36.7075, 144.28542 -36.70646, 144.2866 -36.70542, 144.28549 -36.70453, 144.28456 -36.70456, 144.28393 -36.70463, 144.28328 -36.70477, 144.28236 -36.70516, 144.28177 -36.70556, 144.2808 -36.70637, 144.28006 -36.70723, 144.27974 -36.70747, 144.27984 -36.70765, 144.27985 -36.70782, 144.27889 -36.71056, 144.27941 -36.7109, 144.27743 -36.7143, 144.27868 -36.71506, 144.28031 -36.71358, 144.2837 -36.71591)))\n255\tRiverside at Tea Gardens\tContracted\tPOLYGON ((152.14687858579424 -32.644572203834592, 152.14880977629377 -32.650715136092963, 152.15149198530241 -32.650136995751325, 152.15235029219306 -32.651365539508859, 152.15338026045109 -32.650516400771984, 152.154431686389 -32.649594985786386, 152.15724264142315 -32.648420619592351, 152.15728555677399 -32.643397771680633, 152.16196332929485 -32.642458214854543, 152.16385160444355 -32.640434520476212, 152.16333662030556 -32.639278103133073, 152.16226373670568 -32.639314241401607, 152.16136251447321 -32.64036224483047, 152.16020380018065 -32.641771609393587, 152.16003213880435 -32.642096844216169, 152.15724264142315 -32.643108678323991, 152.15561185834346 -32.644337318637817, 152.15243612287674 -32.643000268074232, 152.15149198530241 -32.643180951750551, 152.14687858579424 -32.644572203834592))\n17339141\tSwan Bay Estate\tCheck with carrier\tPOLYGON ((147.034243072 -41.282250026999996, 147.039063136 -41.283351998, 147.035802976 -41.274411021999995, 147.032753056 -41.275356038999995, 147.028213088 -41.2778930365, 147.024883072 -41.283054998999994, 147.028722112 -41.2819190065, 147.033968032 -41.282236984499995, 147.034243072 -41.282250026999996))\n17271033\tMarshmead\tCheck with carrier\tPOLYGON ((150.223744992 -31.0154570045, 150.210464992 -31.0134590045, 150.209440992 -31.018447992000002, 150.222415008 -31.020394007, 150.223744992 -31.0154570045))\n342\tWestwood\tUnder construction\tPOLYGON ((144.71112482498938 -37.699409089000177, 144.7167569928869 -37.697324009727531, 144.71675712220994 -37.697323471484061, 144.71720114998965 -37.697157878000134, 144.71772256686413 -37.700016305722208, 144.71772256629015 -37.700016305789063, 144.71915594798963 -37.707786090000162, 144.71280016598948 -37.708524403000162, 144.71112482498938 -37.699409089000177))\n17314584\tFig Tree Fields Estate\tCheck with carrier\tMULTIPOLYGON (((153.560368096 -28.6500259885, 153.55934496 -28.649870995500002, 153.558523072 -28.6497469715, 153.558512992 -28.649744992000002, 153.556734976 -28.6494769825, 153.556193152 -28.6493949905, 153.555977152 -28.649363041, 153.554372992 -28.649126962500002, 153.552412096 -28.6488399535, 153.55186992 -28.6487600335, 153.551337856 -28.648682019000002, 153.550986848 -28.649598028, 153.550171072 -28.6496139565, 153.54966384 -28.6502210155, 153.549299168 -28.650554015500003, 153.548978048 -28.6514970345, 153.55019088 -28.652195964500002, 153.552053152 -28.6532700375, 153.55213488 -28.6538779845, 153.552223072 -28.6544520025, 153.551963168 -28.654890027, 153.553071968 -28.65534102, 153.553763872 -28.655580965000002, 153.553822912 -28.655601037500002, 153.55418112 -28.653146013500002, 153.55575216 -28.653352011000003, 153.555694912 -28.651920037, 153.555666848 -28.651212005, 153.556146016 -28.6511609635, 153.55786608 -28.650976019, 153.558564832 -28.650813034000002, 153.559608832 -28.6505700365, 153.56006496 -28.6506399665, 153.56011104 -28.6505479845, 153.559608128 -28.6504710245, 153.55874592 -28.6506710095, 153.558361088 -28.6504589625, 153.558354976 -28.6504560025, 153.55834992 -28.650453024, 153.558344896 -28.6504489725, 153.55833984 -28.6504450135, 153.558335168 -28.650440962, 153.558330848 -28.650437003, 153.55832688 -28.650431971, 153.558322912 -28.650427013, 153.558318976 -28.650422961500002, 153.558316096 -28.650418022, 153.558312832 -28.650411991000002, 153.558309952 -28.650407033, 153.55830816 -28.650402001, 153.558306016 -28.65039597, 153.55830384 -28.650391012, 153.558303136 -28.650384981000002, 153.558302048 -28.6503789685, 153.55830096 -28.6503730115, 153.55830096 -28.650366999, 153.558299872 -28.650360968, 153.55830096 -28.650355011000002, 153.558302048 -28.6503479995, 153.558303136 -28.6503419685, 153.55830384 -28.650336030000002, 153.558306016 -28.650329999, 153.55830816 -28.650323968000002, 153.55831104 -28.6503190285, 153.55831392 -28.650313978, 153.558316096 -28.6503090385, 153.558320032 -28.650303988, 153.558322912 -28.650299048500003, 153.55832688 -28.650294997, 153.558330848 -28.650290039, 153.558335168 -28.650285987500002, 153.55833984 -28.6502820285, 153.558344896 -28.650277977, 153.55834992 -28.650274018, 153.558354976 -28.650270965500003, 153.558361088 -28.650267987, 153.558366848 -28.650265027, 153.558371872 -28.650261956, 153.558378016 -28.6502599765, 153.558384832 -28.650257997, 153.558390976 -28.650256017500002, 153.558397088 -28.650254038, 153.558403936 -28.650252965, 153.558410048 -28.650251966000003, 153.558416896 -28.6502509855, 153.558423008 -28.6502509855, 153.558429856 -28.6502509855, 153.558435968 -28.6502509855, 153.558443168 -28.650251966000003, 153.558448928 -28.650251966000003, 153.558456128 -28.650254038, 153.558461888 -28.650255037, 153.558469088 -28.6502570165, 153.558474848 -28.650258996, 153.558942112 -28.6504649935, 153.559266112 -28.650390031500002, 153.55959984 -28.650312997500002, 153.560125088 -28.6503939905, 153.56020608 -28.6503540305, 153.560368096 -28.6500259885)), ((153.561143872 -28.6478800255, 153.56109888 -28.6478330355, 153.560592 -28.647650977, 153.560397952 -28.6475509845, 153.559734112 -28.64705598, 153.559410848 -28.646820993000002, 153.559392832 -28.646810004000002, 153.558240832 -28.646633976500002, 153.557349856 -28.646497983, 153.556836128 -28.646418951, 153.556800128 -28.6464140115, 153.556080128 -28.646304029, 153.556040896 -28.646297998, 153.553493152 -28.6459080365, 153.55251216 -28.645755023, 153.551692096 -28.6456310175, 153.551225152 -28.645559996, 153.550366912 -28.645430033500002, 153.54992304 -28.646819994, 153.550469888 -28.6483750115, 153.555941888 -28.649168994500002, 153.556769152 -28.649291039, 153.558556928 -28.649555996, 153.559134016 -28.6496409665, 153.559374112 -28.6496769675, 153.559389952 -28.649679021, 153.560482912 -28.649840045, 153.56065392 -28.649341988, 153.560791072 -28.648942018, 153.56097504 -28.6484319915, 153.56107008 -28.648168015, 153.561143872 -28.6478800255)), ((153.56134512 -28.647101971, 153.55982304 -28.6468810255, 153.560517856 -28.6474020225, 153.56068416 -28.6474889725, 153.56117088 -28.647640987000003, 153.561228832 -28.647617048, 153.56134512 -28.647101971)))\n17204078\tEurama Estate\tCheck with carrier\tPOLYGON ((150.53916096 -33.7120599615, 150.539851072 -33.708132985, 150.536943008 -33.7077880155, 150.536122912 -33.7076900025, 150.53242896 -33.707250997500005, 150.53233104 -33.707820964, 150.53229504 -33.708032012000004, 150.5322 -33.708581018000004, 150.53207184 -33.709328011000004, 150.53204016 -33.709515027500004, 150.531989056 -33.7098099545, 150.53180112 -33.7109040075, 150.531768 -33.7110959635, 150.53162112 -33.711955011, 150.531131872 -33.7147949645, 150.537927968 -33.715623968, 150.540715072 -33.7159639795, 150.541218016 -33.713115035, 150.539023072 -33.7128499855, 150.53916096 -33.7120599615))\n26\tJackson View\tReady for service\tPOLYGON ((145.85796 -38.1263, 145.8594 -38.12509, 145.86052 -38.12525, 145.86067 -38.12446, 145.86359 -38.12478, 145.86341 -38.12435, 145.86421 -38.12016, 145.85618 -38.11913, 145.85088 -38.11846, 145.85073 -38.11925, 145.85193 -38.11945, 145.85144 -38.12207, 145.85567 -38.12268, 145.85502 -38.12597, 145.85796 -38.1263))\n162\tClydevale\tReady for service\tPOLYGON ((145.33187213534754 -38.096327914488072, 145.33043447131513 -38.103690119612622, 145.33860984439346 -38.1046863243351, 145.34030500049488 -38.0973579924028, 145.33187213534754 -38.096327914488072))\n210\tMeridian\tReady for service\tPOLYGON ((145.34457658290762 -38.090788080233828, 145.34381483554057 -38.09429224009066, 145.34363244533327 -38.094461111021729, 145.34322474955886 -38.096394655366126, 145.35779450893045 -38.098345034732468, 145.35144303797907 -38.091674690771718, 145.34457658290762 -38.090788080233828))\n297\tThe Orchard\tUnder construction\tPOLYGON ((144.65684209824462 -37.816153962518605, 144.6557692146358 -37.8226798777851, 144.66501747132298 -37.82383244702261, 144.66594015122641 -37.81844233615422, 144.66285024643437 -37.817984667102223, 144.66310773850338 -37.816255669519876, 144.65855871201697 -37.8156454254104, 144.65840850831157 -37.81630652296797, 144.65684209824462 -37.816153962518605))\n10514\tMaddington\tReady for service\tPOLYGON ((116.00603342056274 -32.029747974646448, 116.00397348403931 -32.027674150743145, 116.00231051445007 -32.023842882032639, 116.00209593772888 -32.023952036395158, 115.99326610565186 -32.031483373294392, 116.00103378295898 -32.033822719919073, 116.00603342056274 -32.029747974646448))\n11\tTea Trees\tReady for service\tPOLYGON ((152.90857676178814 -27.6976693876262, 152.90857139737267 -27.697892624377545, 152.90869477898266 -27.698125360078418, 152.9087484231645 -27.698244102591, 152.90918830544078 -27.6986953229638, 152.90931168705978 -27.698951805291134, 152.909381424497 -27.699118043514549, 152.90993932396785 -27.700846906028346, 152.91043821484143 -27.701621085583529, 152.91047040135231 -27.701744573839257, 152.91050795227864 -27.702352513982873, 152.91050258786319 -27.70263273525218, 152.91032556206238 -27.70295095175349, 152.91041139275504 -27.702998446673821, 152.91146818310841 -27.703064939528165, 152.91161838681387 -27.703074438504281, 152.9117685905193 -27.703079187991232, 152.91192952305568 -27.702946202260165, 152.91271809250912 -27.702143534940351, 152.91333500057721 -27.701910807808513, 152.91398945958068 -27.701687579277184, 152.91416648537253 -27.701621085583529, 152.91462782532869 -27.701502346744419, 152.91482630879142 -27.701450101614487, 152.91507843644496 -27.701383607776918, 152.917138372961 -27.700737665526418, 152.91898909718333 -27.698690573285266, 152.91913930088876 -27.698438840033717, 152.92026046425491 -27.69777388148178, 152.9203489771553 -27.697348780855911, 152.9203597059863 -27.697021048516724, 152.919321691105 -27.695000010682815, 152.91843656212797 -27.695802730542393, 152.91754875093417 -27.695026134794386, 152.91712227971453 -27.695379997151175, 152.91492823273953 -27.693285305293234, 152.91484776646234 -27.693385053435605, 152.91465464741512 -27.693594049249, 152.91435960442877 -27.693940791420093, 152.91430596024694 -27.693993040144765, 152.91423622280973 -27.694135536539825, 152.91416648537253 -27.694126036785683, 152.91394654423883 -27.694401529313183, 152.91371587426522 -27.694648522021861, 152.91344765335629 -27.694976261484776, 152.91344228894081 -27.6950285097138, 152.91339400918349 -27.69509025758888, 152.91329744965088 -27.695109256927744, 152.91259471089009 -27.695869227780243, 152.91208509117655 -27.696443952223952, 152.911709581922 -27.696871431252479, 152.91168812424209 -27.696966426365041, 152.91152719170572 -27.697089919887706, 152.91116241128213 -27.697308408084783, 152.91062060505774 -27.697626640111611, 152.91054013878951 -27.697745383167589, 152.91037920624416 -27.697721634566882, 152.91005197674693 -27.697783380917649, 152.90976229817605 -27.697792880353497, 152.90926877171796 -27.697726384287602, 152.90873232990904 -27.697664637903795, 152.90857676178814 -27.6976693876262))\n44\tGrand Lakes\tReady for service\tPOLYGON ((144.38463099 -38.025754875, 144.384728128 -38.026075102, 144.384971269 -38.026561798, 144.385044324 -38.026989028, 144.385022747 -38.027539235, 144.384805438 -38.028044098, 144.38445963 -38.028505335, 144.383992686 -38.028839278, 144.383725574 -38.02897428, 144.382806857 -38.02914947, 144.381535963 -38.029907323, 144.380163652 -38.030188902, 144.379897925 -38.030284235, 144.379081952 -38.03066619, 144.378297006 -38.029531601, 144.376355994 -38.029305169, 144.375840714 -38.031920969, 144.391717482 -38.033685625, 144.391278291 -38.032234203, 144.389921187 -38.032072596, 144.390475467 -38.028801219, 144.387982465 -38.028511202, 144.38638328 -38.028429009, 144.386830974 -38.025664935, 144.384649222 -38.025415479, 144.38463099 -38.025754875))\n56\tTrillium\tReady for service\tPOLYGON ((144.890532129 -37.563836207, 144.887992759 -37.575853368, 144.892651679 -37.576362039, 144.895112381 -37.564357796, 144.890532129 -37.563836207))\n17325360\tOnslow Aerodome Redevelopment\tCheck with carrier\tPOLYGON ((115.115901984 -21.6636330045, 115.114276992 -21.661580466500002, 115.11351504 -21.660617967, 115.111951424 -21.661694167500002, 115.109663616 -21.6629520565, 115.108296128 -21.66370299, 115.107874912 -21.664059022500002, 115.107547328 -21.664366289, 115.106736 -21.6650839965, 115.105723008 -21.6666789925, 115.105732672 -21.6666830625, 115.105714912 -21.6667070015, 115.106799968 -21.667186984, 115.107320864 -21.667353021500002, 115.106802848 -21.669490974000002, 115.10640288 -21.673033021000002, 115.10699616 -21.6732539665, 115.107140864 -21.6735270265, 115.109007104 -21.6742560375, 115.111024928 -21.669859975, 115.110879104 -21.668497024500002, 115.110880704 -21.6684928805, 115.111752992 -21.666387007, 115.111606848 -21.666312933, 115.111392128 -21.666204005, 115.112521056 -21.6642230435, 115.113520992 -21.664770995, 115.113521024 -21.664770939500002, 115.113521152 -21.6647710135, 115.113857024 -21.664284038, 115.114566944 -21.664547996, 115.114566976 -21.6645479775, 115.114567008 -21.664547996, 115.115901984 -21.6636330045))\n164\tAurora\tReady for service\tPOLYGON ((145.00537906646929 -37.606178773039986, 145.0037482833896 -37.613233139449541, 145.01173053741169 -37.614066020474446, 145.0127175903279 -37.606722747992485, 145.00537906646929 -37.606178773039986))\n17332589\tCalula Estate\tCheck with carrier\tPOLYGON ((140.757626176 -37.804131997, 140.75158608 -37.8021869995, 140.745570112 -37.8002709915, 140.74540416 -37.8005969615, 140.747447872 -37.8064119555, 140.749160032 -37.8069620345, 140.755200832 -37.808903961, 140.757626176 -37.804131997))\n67\tTannum Blue\tReady for service\tPOLYGON ((151.36700841 -23.960568557, 151.366548137 -23.962853004, 151.364719008 -23.962625425, 151.364467102 -23.963556157, 151.36339897 -23.963468748, 151.361140873 -23.961834242, 151.357448073 -23.964694442, 151.357935829 -23.96514342, 151.358439528 -23.965654695, 151.358881651 -23.966030968, 151.359155878 -23.96627498, 151.359465148 -23.966518218, 151.359755937 -23.966776902, 151.359954577 -23.966873635, 151.369212567 -23.968167693, 151.369798815 -23.964135521, 151.369725397 -23.963545419, 151.36953048 -23.962963222, 151.369187575 -23.962373262, 151.36883464 -23.961667327, 151.368344619 -23.960780369, 151.36700841 -23.960568557))\n264\tWarralily Grange\tUnder construction\tGEOMETRYCOLLECTION (POLYGON ((144.31824003217659 -38.225271387329769, 144.31907688138733 -38.225473668709661, 144.3196562385381 -38.225271387329769, 144.32085786817242 -38.225473668709661, 144.32111536024144 -38.225810803093054, 144.32068620679613 -38.2264850671724, 144.32189856527941 -38.2276481580183, 144.32085786816347 -38.232123355861646, 144.31703840253323 -38.231516565511789, 144.31824003217659 -38.225271387329769)), POLYGON ((144.32132993695063 -38.232393038836278, 144.32068620678712 -38.236033661117233, 144.32742391583304 -38.236337038080144, 144.3286255454764 -38.233067241898695, 144.32132993695063 -38.232393038836278)), POLYGON ((144.32429109570816 -38.228853370218076, 144.32360445020282 -38.232325618186543, 144.32514940258983 -38.232561590188205, 144.32617937085686 -38.229055641637004, 144.32429109570816 -38.228853370218076)))\n17347475\t324 Tea Tree Rd Brighton - Stages 3\u00264\tCheck with carrier\tPOLYGON ((147.283779008 -42.6948000075, 147.284028 -42.697932001999995, 147.284307008 -42.697970000999995, 147.284710016 -42.6980260005, 147.285084 -42.698114004999994, 147.285826016 -42.698266999999994, 147.287751008 -42.6986470085, 147.288232992 -42.698716993999994, 147.28848 -42.698735993499994, 147.288931008 -42.6987329965, 147.289246016 -42.698705006, 147.292008992 -42.698414000999996, 147.293515008 -42.698227003, 147.293683008 -42.698178995499994, 147.294132 -42.698002005999996, 147.2945 -42.697821002, 147.294818016 -42.6975889935, 147.295107008 -42.697312992, 147.295230016 -42.6971769985, 147.295348992 -42.696915001499995, 147.295451008 -42.696639999, 147.295479008 -42.696509000499994, 147.295484992 -42.696239991999995, 147.295536 -42.6959900015, 147.295570016 -42.6956530055, 147.295644992 -42.695409008999995, 147.295766016 -42.695222991499996, 147.295895008 -42.695067998499994, 147.294991008 -42.694026004499996, 147.294455008 -42.693423996, 147.294336 -42.693424994999994, 147.294143008 -42.6933210065, 147.293972 -42.6928380085, 147.293696992 -42.6925179955, 147.283779008 -42.6948000075))\nAYCA-NZGFP\tLampada\tReady for service\tPOLYGON ((150.95517748943 -31.1369920275562, 150.955192372405 -31.1360933843825, 150.955285022487 -31.1359747078289, 150.954904571165 -31.135789352306, 150.954704427246 -31.1357399424342, 150.954662500458 -31.1359384099374, 150.954593148481 -31.1359729058922, 150.954332043323 -31.135935034105, 150.954264564578 -31.1358778676175, 150.954195157791 -31.1359906173781, 150.954058874275 -31.1362796273341, 150.954342155786 -31.1363319864581, 150.954251407387 -31.1367610689511, 150.954218333428 -31.1367435724128, 150.954181121252 -31.1368820915915, 150.953886602414 -31.1372268023284, 150.953498974499 -31.1373665583432, 150.953251344169 -31.1374558384313, 150.952922737915 -31.1376496225208, 150.953046505003 -31.1376928050976, 150.952688905486 -31.1383993830294, 150.951693422652 -31.138038990947, 150.949971267011 -31.1417269990076, 150.951388811074 -31.144948430122, 150.952596448432 -31.1451329198095, 150.95444448046 -31.1413581138708, 150.953778899857 -31.1412802048104, 150.954007310457 -31.140895596312, 150.953452655639 -31.1406161575637, 150.953772748752 -31.1398981189201, 150.954124909698 -31.1398891881476, 150.954591747463 -31.139402053378, 150.95481501893 -31.1391690721303, 150.954368504313 -31.1390074851147, 150.95384859844 -31.1388192191276, 150.953424497661 -31.1387559848212, 150.953584427467 -31.138429139437, 150.953733381483 -31.1382813282083, 150.953874893658 -31.1379921185462, 150.954320450968 -31.1381044916235, 150.954469141131 -31.1378007157074, 150.95466657271 -31.1377258637439, 150.95517748943 -31.1369920275562))\nAYCA-G1IS9\tCasey 3 Estate\tReady for service\tPOLYGON ((149.085451564776 -35.1769730130313, 149.087234160019 -35.1776421000185, 149.087324139822 -35.1773258209707, 149.088067920012 -35.1775632600094, 149.088794474321 -35.1760301862643, 149.088700779264 -35.1755433966277, 149.088696315882 -35.1754432926344, 149.08867764248 -35.1753354059478, 149.088678445125 -35.1752462204652, 149.088684538613 -35.1751817669935, 149.088702345911 -35.1751049342008, 149.08872854061 -35.1750243623781, 149.088801413527 -35.1748968843609, 149.088846955574 -35.174806946399, 149.088905111927 -35.1747440942345, 149.0889935368 -35.174677044522, 149.089122280331 -35.1745679772449, 149.089334760007 -35.174418300021, 149.089818240007 -35.174242710021, 149.090097240007 -35.174011590021, 149.090248440007 -35.1737446500209, 149.090287143992 -35.17345102278, 149.090214341536 -35.1731642793525, 149.089792319967 -35.1718455598127, 149.089724280007 -35.1714885300209, 149.090956200006 -35.1713301300175, 149.090623560014 -35.1695848500164, 149.091468840006 -35.1694762200175, 149.091375240007 -35.168910030021, 149.091519841082 -35.1682407999922, 149.090478119982 -35.1684605700207, 149.089368139273 -35.1684527449739, 149.088225444719 -35.1683546834395, 149.087599888081 -35.1695117796902, 149.087411747 -35.17164938359, 149.087961851447 -35.1721238037286, 149.08830876003 -35.1721670400177, 149.089546800007 -35.1719983800209, 149.089981320031 -35.1732010500635, 149.089834080007 -35.1739133100209, 149.089333443301 -35.1741697462411, 149.088407399784 -35.1742722300426, 149.087176560042 -35.1742886100206, 149.086316880025 -35.1739378800139, 149.085540618062 -35.1742400846587, 149.085120239998 -35.1756612000893, 149.085451564776 -35.1769730130313), (149.088880068466 -35.1717411112112, 149.088824921251 -35.1715094895716, 149.088955732284 -35.171484158615, 149.089035504359 -35.1717163326954, 149.088880068466 -35.1717411112112))\n243\tSt. Claire\tReady for service\tPOLYGON ((145.02730918279434 -37.608234919439887, 145.0266439949599 -37.613062424662751, 145.02582860342008 -37.613011431526878, 145.02466988912752 -37.613198406187045, 145.02057147374842 -37.608183922993888, 145.02228808752076 -37.607707954478748, 145.02730918279434 -37.608234919439887))\nAYCA-1D96NK\tCrace\tReady for service\tPOLYGON ((149.112121260484 -35.2026701433085, 149.112100544008 -35.202758664046, 149.112028985008 -35.2030937850461, 149.112137142008 -35.2031093440461, 149.111993075008 -35.2037840260461, 149.112106641008 -35.2038003630461, 149.112049772007 -35.2040666850461, 149.112028939441 -35.2041551889323, 149.111930937933 -35.2041410911239, 149.111910461007 -35.2042296460461, 149.111779039059 -35.204851246342, 149.111307271962 -35.2047833804133, 149.111150872897 -35.205515763737, 149.111090025602 -35.2058006957962, 149.110982048007 -35.2057842800461, 149.110711648007 -35.2057453810462, 149.110692689015 -35.2058341540414, 149.109448848007 -35.2056552080462, 149.109400501007 -35.2058815800462, 149.109445102007 -35.2059337480461, 149.109407183007 -35.2061112950462, 149.109569423007 -35.2061346360462, 149.10952771203 -35.2063299380321, 149.109635873015 -35.2063454990415, 149.109451964007 -35.2072066020461, 149.109776450007 -35.2072532850462, 149.109992774007 -35.2072844060463, 149.109962440022 -35.2074264440368, 149.110007041015 -35.2074786110414, 149.109969122015 -35.2076561580416, 149.110131366007 -35.2076794990461, 149.110090604015 -35.2078703620414, 149.110196063015 -35.2078855330416, 149.110012156007 -35.2087466370462, 149.109690369007 -35.2087003430462, 149.109659085015 -35.2088468200415, 149.109352919241 -35.2097500022394, 149.109713280015 -35.2100007900161, 149.110402000015 -35.2105410000151, 149.111014000015 -35.207640000015, 149.111461000015 -35.206499000015, 149.112394000015 -35.206627000015, 149.114914560015 -35.2069932600159, 149.115979000015 -35.2071390000149, 149.116249000015 -35.2057280000149, 149.116097000015 -35.2039390000149, 149.116244466808 -35.2033611721901, 149.115260080015 -35.2032131490414, 149.114600319023 -35.2031182560367, 149.114475412485 -35.2030994230009, 149.114351561022 -35.2030824590366, 149.113691802015 -35.2029875610413, 149.113525945023 -35.2028865400367, 149.113461995015 -35.2028630050414, 149.112685970015 -35.2027513770414, 149.112121260484 -35.2026701433085))\n17352159\tGermantown Road Two Wells\tCheck with carrier\tPOLYGON ((138.556290976 -34.6144390125, 138.55647312 -34.6182609645, 138.562521856 -34.618090043, 138.562352992 -34.614321038, 138.55752 -34.6144490025, 138.557487968 -34.614412021, 138.556290976 -34.6144390125))\n312\tThe Vale\tUnder construction\tPOLYGON ((150.76265755179605 -34.474845028924058, 150.76259293046576 -34.474896078788987, 150.76265150110967 -34.474539859196142, 150.76269324636354 -34.474513128608407, 150.76273046480762 -34.474282888787528, 150.76278581738285 -34.474288867762056, 150.7627819807995 -34.474169225523809, 150.76271117432313 -34.47409997877994, 150.76270990143797 -34.47408698997323, 150.76276174013313 -34.474054889961614, 150.76286586572238 -34.474067538137056, 150.76289825258135 -34.473889737597979, 150.76279056829213 -34.473876730863282, 150.76275094750144 -34.473833147993574, 150.7627641335157 -34.473751656453281, 150.76276444576524 -34.473751691059164, 150.76291557209697 -34.472816440544925, 150.76291544551304 -34.472816426399639, 150.76292398691129 -34.472763638742343, 150.76285957194102 -34.472758670585115, 150.76289217852192 -34.472530879373686, 150.76289902118603 -34.472531242318681, 150.76295329148803 -34.472536388461414, 150.76298035489125 -34.472229765535531, 150.76298035489125 -34.472229765535531, 150.76298163052169 -34.472216609366917, 150.76297079806977 -34.472111812882645, 150.76296842261513 -34.472060269998849, 150.7633631245732 -34.47217943714616, 150.76364004880082 -34.472133039586772, 150.7637435207055 -34.4721472171091, 150.76374859775183 -34.47213656332346, 150.76374859775183 -34.47213656332346, 150.76375755081443 -34.472120921336405, 150.76376775985332 -34.472105816217962, 150.76377917818576 -34.472091317038142, 150.76379175359952 -34.472077490096154, 150.76380542859147 -34.472064398617363, 150.76382014063071 -34.472052102464033, 150.76383582244432 -34.472040657861747, 150.76385240232514 -34.472030117142218, 150.76386980445957 -34.472020528504089, 150.76388794927419 -34.472011935792452, 150.76390675379974 -34.472004378298429, 150.76392613205041 -34.471997890579466, 150.763945995417 -34.4719925023014, 150.76398000591564 -34.471957084037271, 150.7640478396082 -34.4718892786302, 150.76407922288629 -34.471898369819783, 150.76410425106442 -34.471906204517126, 150.76413082033739 -34.471911782890452, 150.76415844486715 -34.4719128227413, 150.76419012216402 -34.471907439993, 150.76422294781543 -34.471897146159669, 150.76425395341772 -34.471883047611215, 150.76428015570121 -34.4718653276633, 150.76429700387806 -34.471842372027041, 150.76429484924776 -34.471816954068707, 150.76428185973177 -34.471794735010263, 150.76425011861335 -34.471755772079177, 150.7642385022352 -34.471737768499608, 150.76423028826972 -34.471722855383724, 150.76422106459583 -34.471707304496576, 150.76421372199189 -34.471693220504768, 150.76421003382387 -34.471681924456846, 150.76421026335015 -34.471674431938553, 150.76421483538911 -34.471666428443378, 150.76422566068939 -34.471656285302835, 150.76424133412411 -34.471645822311082, 150.76425923749184 -34.471636462863692, 150.76427513361452 -34.471629810107018, 150.76429963296582 -34.471625546795664, 150.76432942967563 -34.471627558814511, 150.76440256589882 -34.471640637571781, 150.76444082335064 -34.471644578551647, 150.76448381123936 -34.47164512520802, 150.76452601052213 -34.471644511075283, 150.76456811451837 -34.471642929554989, 150.7646100515251 -34.471640563283444, 150.76465212142421 -34.471637568810074, 150.76469225005 -34.471633133144152, 150.76477038070669 -34.471621055725443, 150.76480797385335 -34.47161640965443, 150.76484527930182 -34.471614439790557, 150.76488209344066 -34.471614595140622, 150.76491955614216 -34.471615885201786, 150.7649562480124 -34.471618952162821, 150.76499131871984 -34.4716243934349, 150.76502384054908 -34.471632717953014, 150.765047698439 -34.471642461938906, 150.76507131914124 -34.471655408134389, 150.76509574944296 -34.471670307652055, 150.76512179407555 -34.471685474002811, 150.76514955063374 -34.471698556776019, 150.76518664884563 -34.471713303981716, 150.76522571106398 -34.47172784355238, 150.76526653116318 -34.471740109044724, 150.76530833793615 -34.4717475027351, 150.76535003923053 -34.471746842193738, 150.76539005387249 -34.471735511567729, 150.76542693988634 -34.471716341577938, 150.7654608299049 -34.471692648140234, 150.76549193385114 -34.471667103178831, 150.76552090953365 -34.4716415862924, 150.7655406212395 -34.471620143508709, 150.76557196565702 -34.471575167171963, 150.76558696503264 -34.471557318694082, 150.76559203023132 -34.471553464592056, 150.7656110195739 -34.4715525164878, 150.76563750903594 -34.471551880788581, 150.76566403919665 -34.47155192598084, 150.76569052501137 -34.471552651739273, 150.76571679077927 -34.471554052862771, 150.7657397343846 -34.4715560491668, 150.76576280649087 -34.471558800561873, 150.7658638234405 -34.471573109482122, 150.76592596644522 -34.471583498672949, 150.76595833858772 -34.471587264203571, 150.76599121595245 -34.471588446822572, 150.76600871127937 -34.471587572989854, 150.76602530136256 -34.471585940022692, 150.76605621062694 -34.471582457596227, 150.76607112920163 -34.471581443924649, 150.76611835033393 -34.47157963331103, 150.76614112949866 -34.471579758901605, 150.76616247491145 -34.471581383157449, 150.76618260152443 -34.471585103454217, 150.76619341952457 -34.47158815735731, 150.76620466687842 -34.471591936377564, 150.7662156947674 -34.471596247763536, 150.76622636609702 -34.471601037834361, 150.76623142581403 -34.471603627531557, 150.76624603805485 -34.471630528911973, 150.76625901173267 -34.471666867681606, 150.76627129288286 -34.47170608871015, 150.76629884114988 -34.4717767363889, 150.76631012334585 -34.471811441335795, 150.76632256695694 -34.4718469102715, 150.76633920485506 -34.4718814012332, 150.76636280490706 -34.471911954264975, 150.76638550014815 -34.47193303953339, 150.76641080462088 -34.471953347685329, 150.7664388939877 -34.471971715718304, 150.76646952849853 -34.471986198010441, 150.76650393857022 -34.471994607311643, 150.76654658903618 -34.471988677064871, 150.766587839916 -34.471968644257842, 150.76662696005724 -34.471941920235288, 150.76669903376077 -34.471887234545122, 150.76673096737503 -34.471860304938751, 150.76678698556373 -34.471801590724965, 150.76681395561167 -34.47177878716343, 150.76684331124406 -34.471763899147895, 150.76686268654879 -34.47175836154743, 150.76688461157246 -34.471753723256278, 150.76690675403424 -34.47175078952742, 150.76692817120613 -34.471749900605381, 150.76694760062512 -34.47175127480552, 150.766973047583 -34.471757489253278, 150.76699931763147 -34.471768728289582, 150.76702525256283 -34.471783941374859, 150.76704918434717 -34.47180162721061, 150.76706615301188 -34.471817036043831, 150.76707440075518 -34.4718558636356, 150.76705126549916 -34.471921112076593, 150.76696417795958 -34.472093404271504, 150.76695183321 -34.47233592059667, 150.7669575407013 -34.472430664551531, 150.7670003115112 -34.472504731160996, 150.76705514665903 -34.472548011292254, 150.767095711585 -34.472560310585031, 150.76713436746806 -34.472569064456735, 150.76717853104608 -34.472580387392867, 150.76723939941152 -34.47258544463967, 150.76730628706591 -34.472575478285925, 150.76736404558298 -34.472549191213169, 150.76740996362847 -34.472496006454818, 150.76743296500385 -34.472411317300988, 150.76744949773035 -34.472367444534342, 150.76749407457521 -34.472315300169164, 150.76754525532945 -34.472283972595349, 150.76763136512292 -34.472242356263536, 150.76778727133376 -34.472200953917181, 150.76785750934644 -34.472188341361417, 150.76793492196103 -34.472183842118447, 150.76801544087252 -34.472183930256236, 150.76809273442416 -34.472185020838239, 150.76816733225857 -34.472188851859315, 150.76824188733002 -34.4721979358952, 150.76839365903245 -34.472222222342346, 150.76854444421451 -34.472242090910825, 150.76861984279836 -34.472253979876285, 150.76869625418522 -34.472264177468716, 150.76877280939706 -34.472268683760895, 150.76884846184768 -34.472263238016147, 150.7689200057886 -34.472244666356772, 150.76898753349803 -34.472216237045991, 150.76911587083313 -34.47215036152113, 150.76925007536246 -34.472091789311335, 150.76932102432519 -34.472058408075405, 150.76939018891161 -34.47202915409121, 150.76945471358994 -34.472010808109886, 150.76951327873573 -34.472008821485417, 150.76955407379987 -34.472017943755922, 150.76959675845285 -34.472033701477571, 150.7696385421157 -34.472054445551777, 150.76967777235424 -34.47207861520797, 150.76971321786687 -34.472104834493052, 150.76973977752422 -34.472126418139858, 150.76975746313042 -34.472141844536679, 150.76972768336677 -34.472293437291327, 150.76971587899513 -34.472303225018941, 150.76969223131547 -34.472333900627149, 150.76967713173937 -34.472365413012263, 150.76967082309503 -34.47238218594952, 150.76966720301294 -34.472400065398752, 150.76966950765694 -34.472429064083094, 150.76969985407794 -34.47243510146626, 150.76959898395933 -34.472942420434975, 150.7695985562589 -34.472945776252487, 150.76959951770021 -34.472945902238031, 150.76923972147944 -34.475772460201036, 150.76923829500598 -34.475772335505717, 150.7692138976266 -34.475963745391155, 150.76917336943333 -34.47595790661871, 150.76917600551107 -34.475966646895188, 150.76504830795366 -34.475372837018043, 150.76492229232582 -34.475292152235966, 150.76449374238004 -34.47507861230941, 150.76422743150445 -34.4749953279732, 150.76392222592062 -34.475165491201551, 150.76379447128068 -34.4751775746463, 150.76369131380127 -34.475137281557167, 150.76344450854572 -34.474839838779793, 150.763434612312 -34.474777180561048, 150.76345933496827 -34.474719999333978, 150.763647963995 -34.474598429840086, 150.76359137439059 -34.474549280338891, 150.76346450718464 -34.474527686111593, 150.76332358445833 -34.474445827048179, 150.76310497988322 -34.474432183870945, 150.76294290216467 -34.474457883600962, 150.76270841341736 -34.4746391083804, 150.76263836887929 -34.4747161358587, 150.76265755179605 -34.474845028924058))\n17316815\tLOT 224 ORTON ROAD OAKFORD\tCheck with carrier\tPOLYGON ((115.953296032 -32.228281984, 115.953306112 -32.231957046, 115.953316928 -32.2356320155, 115.956861824 -32.2355999735, 115.95749904 -32.235594035, 115.95885984 -32.235581973, 115.958729152 -32.234169960500004, 115.958608928 -32.232880973, 115.958495168 -32.231657975000005, 115.95836592 -32.230262964, 115.958184128 -32.2283099745, 115.958181952 -32.2282829645, 115.957769024 -32.2282829645, 115.957008 -32.2282829645, 115.95637008 -32.2282829645, 115.953296032 -32.228281984))\n71\tMayfield\tReady for service\tPOLYGON ((145.289746189 -38.125209668, 145.290090071 -38.125409107, 145.290278346 -38.125682642, 145.293721739 -38.126126179, 145.2956644 -38.125995293, 145.299757986 -38.126511268, 145.30034641 -38.123066242, 145.291994746 -38.122078125, 145.291939639 -38.122256158, 145.289614312 -38.122116059, 145.289003116 -38.122735682, 145.289746189 -38.125209668))\n185\tAgar Industrial Park\tReady for service\tPOLYGON ((144.75201086321994 -37.79845362681997, 144.75168899813818 -37.800725594324348, 144.73911480227883 -37.799759168925824, 144.73945812503155 -37.797080239440554, 144.7475262097463 -37.796961550443989, 144.751989405549 -37.798334940029292, 144.75201086321994 -37.79845362681997))\n196\tKaduna Park \tReady for service\tPOLYGON ((145.428175673462 -38.083378128834276, 145.42970989701806 -38.089373703065661, 145.42582605836611 -38.08999856560618, 145.42580460069519 -38.089812796219334, 145.42416308877557 -38.090049229902391, 145.4234227990884 -38.087330196379121, 145.42247866151408 -38.085835529286321, 145.42261813638848 -38.083302125441676, 145.428175673462 -38.083378128834276))\n78\tZeally Sands\tReady for service\tPOLYGON ((144.33959113 -38.309154864, 144.345805384 -38.30981596, 144.346892075 -38.304176496, 144.340847061 -38.302849758, 144.33959113 -38.309154864))\n43\tCallaway Park\tReady for service\tPOLYGON ((144.789941126 -37.79528303, 144.804301009 -37.796477217, 144.804376792 -37.79538357, 144.802785335 -37.795193168, 144.802431453 -37.79496446, 144.802463436 -37.794341751, 144.801605119 -37.794152943, 144.80175001 -37.793454824, 144.790403949 -37.792240465, 144.789941126 -37.79528303))\nAYCA-G7P1X\tGap Ridge Industrial Area\tReady for service\tPOLYGON ((116.767197579578 -20.7597367757634, 116.763878626438 -20.7601640986097, 116.76287416889 -20.7659208852749, 116.76997144373 -20.7652827405118, 116.770099320943 -20.765138955679, 116.769648441523 -20.7594521661456, 116.767197579578 -20.7597367757634))\n322\tAureus\tUnder construction\tGEOMETRYCOLLECTION (LINESTRING (153.59664909935495 -28.8311386760887, 153.59664911110238 -28.83113867903851, 153.59665010144022 -28.831135620855594, 153.59685288832517 -28.831167976449457), POLYGON ((153.59653875972938 -28.831857201617538, 153.59664909008478 -28.831138743941253, 153.59664908895596 -28.831138743806843, 153.59664909935495 -28.8311386760887, 153.59653875972938 -28.831857201617538)), POLYGON ((153.60176022040858 -28.831871778421231, 153.60176025253728 -28.831871753732052, 153.59884069352182 -28.831453087135934, 153.59884071718596 -28.831453090529916, 153.59884070972555 -28.831453130864535, 153.59884070972558 -28.831453130864624, 153.5988883402274 -28.831459963524583, 153.59888834782797 -28.831459921808275, 153.60176022040858 -28.831871778421231)), POLYGON ((153.60176543397984 -28.831872496754169, 153.60176158693878 -28.831870728316098, 153.60176025253728 -28.831871753732052, 153.60176543397984 -28.831872496754169)), POLYGON ((153.59661953131052 -28.832125071414126, 153.59660390814867 -28.83210577800164, 153.59658975112629 -28.832085626281689, 153.59657712085072 -28.83206470252459, 153.59656607138416 -28.832043096293251, 153.59655665002217 -28.832020900071861, 153.59654889709128 -28.831998208869823, 153.59654284577621 -28.831975119815386, 153.59653852197818 -28.831951731739586, 153.59653594420365 -28.831928144753384, 153.59653512348547 -28.831904459819096, 153.59653606333541 -28.831880778318236, 153.59653875972938 -28.831857201617538, 153.59653603039538 -28.831880779524582, 153.59653506369563 -28.83190446431415, 153.59653586379707 -28.831928153921396, 153.59653842725305 -28.831951746260547, 153.59654274301803 -28.831975139664998, 153.59654879249521 -28.83199823332534, 153.59655654961662 -28.832020927723754, 153.59656598095543 -28.832043125062974, 153.59657704587013 -28.832064729687531, 153.59658969667939 -28.832085648496232, 153.59660387886777 -28.832105791343164, 153.59661953131052 -28.832125071414126)), POLYGON ((153.59658104032155 -28.832221609879838, 153.59658510046552 -28.832213003455582, 153.59657781970122 -28.832204630479282, 153.59656732532824 -28.832205837452928, 153.59656750453883 -28.8322070456761, 153.59657976244495 -28.832221142433205, 153.59658104032155 -28.832221609879838)), POLYGON ((153.59782890338954 -28.832770483690357, 153.59898448012854 -28.831991311305096, 153.59878382213242 -28.831760560422079, 153.59892048282407 -28.831668412737546, 153.59884070972558 -28.831453130864624, 153.59884070972552 -28.831453130864617, 153.59884070972555 -28.831453130864535, 153.59884069352182 -28.831453087135934, 153.59884068606016 -28.831453127469871, 153.59809182686976 -28.8313457052729, 153.59809183594172 -28.831345656239471, 153.59745621340662 -28.831254466565614, 153.59745621182816 -28.8312544534021, 153.59745620129931 -28.831254451891958, 153.59745619046734 -28.831254510451938, 153.59720697902179 -28.831218765904598, 153.5972069898539 -28.831218707344632, 153.5972069786896 -28.831218709209555, 153.59685288832517 -28.831167976449457, 153.59673943886941 -28.83178195707746, 153.59678369059316 -28.83195123614675, 153.59685960763204 -28.831962125436291, 153.59716051891334 -28.831759233523165, 153.59729198483709 -28.831852477753621, 153.59712723088509 -28.831963564808817, 153.59752854132657 -28.832425071279573, 153.59729085988363 -28.83258533009344, 153.59739056481783 -28.832699990044979, 153.59762789866878 -28.832539965485264, 153.59762822296949 -28.83253970417482, 153.59782890338954 -28.832770483690357)), POLYGON ((153.59710426681343 -28.83278287633156, 153.59710832693494 -28.832774269892571, 153.59710104608939 -28.8327658969464, 153.59709055166698 -28.832767103961366, 153.59709073088473 -28.832768312183635, 153.59710298892765 -28.832782408890033, 153.59710426681343 -28.83278287633156)), POLYGON ((153.59756547098 -28.833254709554531, 153.5975654709799 -28.833254709554389, 153.5974368494883 -28.833075449071661, 153.5972962526557 -28.832903302474048, 153.59661953132036 -28.832125071426244, 153.59661953131052 -28.832125071414126, 153.5966195313203 -28.832125071426205, 153.59729625265567 -28.832903302474048, 153.59743684948836 -28.833075449071785, 153.59756547098 -28.833254709554531)), POLYGON ((153.59758917258802 -28.833292598694232, 153.59756547098007 -28.833254709554645, 153.59756547098 -28.833254709554531, 153.59758917258802 -28.833292598694232)), POLYGON ((153.59755407528948 -28.833393507268568, 153.59755814230599 -28.833384903346925, 153.59755086810623 -28.833376525896007, 153.59754037266205 -28.833377726412628, 153.59754055091594 -28.83337893474539, 153.59755279776994 -28.833393039035961, 153.59755407528948 -28.833393507268568)), POLYGON ((153.59768165419371 -28.833440438810182, 153.59768165419374 -28.833440438810165, 153.59758917258802 -28.833292598694232, 153.59768165419371 -28.833440438810182)), POLYGON ((153.6039138337014 -28.834273404446549, 153.6048067567643 -28.832403417586168, 153.60439035275681 -28.832337820059188, 153.60432886571479 -28.832240094474638, 153.60176543397984 -28.831872496754169, 153.60176552677115 -28.831872539409211, 153.60176022040858 -28.831871778421231, 153.60045247550207 -28.832876710210705, 153.60110282026298 -28.832969977037237, 153.60115587152731 -28.8326831249123, 153.60168311240957 -28.83275873154048, 153.60186556366276 -28.832995834436751, 153.60192693402789 -28.832959112157688, 153.60198974530809 -28.832924330269584, 153.60213496075434 -28.832852767758478, 153.60228527853843 -28.832789903183496, 153.6024400277208 -28.832736017135041, 153.60256835629897 -28.832699063429228, 153.60287123655425 -28.832639606790881, 153.60308247885891 -28.832614910548092, 153.60324560400863 -28.832603594171367, 153.60325238285884 -28.83260333271528, 153.60325916592853 -28.832603487594543, 153.603265920281 -28.832604058057086, 153.60327261311875 -28.832605041332908, 153.60327921194326 -28.832606432647456, 153.60328568471229 -28.832608225244904, 153.60329199999578 -28.832610410420852, 153.60329812712837 -28.832612977564661, 153.60330403635828 -28.832615914210926, 153.60330969899186 -28.832619206100134, 153.60331508753279 -28.832622837247648, 153.6033201758157 -28.832626790021607, 153.60332493913316 -28.83263104522835, 153.60332935435571 -28.832635582205711, 153.60333340004414 -28.832640378923291, 153.60333705655358 -28.832645412089484, 153.6033403061289 -28.832650657264523, 153.60334313299091 -28.832656088979192, 153.60334552341311 -28.832661680858493, 153.60334746578806 -28.832667405749657, 153.60335858193451 -28.832700214321363, 153.60337214025671 -28.832732302915737, 153.60338808127125 -28.832763530747833, 153.60340633504072 -28.832793760809025, 153.60342682148075 -28.832822860468195, 153.603449450711 -28.83285070205369, 153.60347412344959 -28.83287716341334, 153.60350073144886 -28.832902128450566, 153.60352915796997 -28.832925487633688, 153.60355927829534 -28.832947138476364, 153.60359096027571 -28.832966985987561, 153.60362406490981 -28.832984943088043, 153.60365844695468 -28.833000930992572, 153.60369395556231 -28.833014879555538, 153.60373043494198 -28.833026727578812, 153.60373043494198 -28.833026727578797, 153.60373981380332 -28.833029904287425, 153.60374892745429 -28.833033631791483, 153.60375773423419 -28.83303789305165, 153.60376619388504 -28.833042668588668, 153.60377426773564 -28.833047936572417, 153.60378191887847 -28.833053672921643, 153.60378911233815 -28.833059851414077, 153.60379581523156 -28.833066443806356, 153.60380199691804 -28.833073419963011, 153.60380762913948 -28.833080747994316, 153.6038126861495 -28.833088394402033, 153.60381714483117 -28.833096324232518, 153.60382098480247 -28.833104501236548, 153.6038241885098 -28.833112888035018, 153.60382674130821 -28.833121446289695, 153.60383215015091 -28.833139577809277, 153.60383893889613 -28.833157345790354, 153.6038470764712 -28.833174668905489, 153.60385652562951 -28.833191467863383, 153.60386724312096 -28.833207665771869, 153.6038794694455 -28.833226145012652, 153.60389024782907 -28.833245310344488, 153.60389952887058 -28.833265073927347, 153.60390727003164 -28.833285345179352, 153.60391343583137 -28.833306031191654, 153.60391799800928 -28.833327037154465, 153.60353332595685 -28.834132522063257, 153.6039138337014 -28.834273404446549)), POLYGON ((153.60344496484464 -28.83431623972508, 153.60390595813345 -28.83427048854497, 153.60353339882241 -28.834132549042671, 153.60344496484464 -28.83431623972508)), POLYGON ((153.59451354529853 -28.837440459400074, 153.60045247550207 -28.832876710210705, 153.59885705222331 -28.832647908388765, 153.59768165419393 -28.833440438810548, 153.59768165419371 -28.833440438810182, 153.59754388070178 -28.833533333284638, 153.59753751415136 -28.833521304015754, 153.59746051158956 -28.833401006451464, 153.59741059663054 -28.833329398256367, 153.59747029174562 -28.83329808611493, 153.5974628926879 -28.833285593361623, 153.59743817370227 -28.833248559489842, 153.59738645893742 -28.833175701851715, 153.59735954022125 -28.833139871868646, 153.59735435206005 -28.833130735215605, 153.59733934477532 -28.83309997049918, 153.59731829349778 -28.833060359587584, 153.59729619459281 -28.833021181051368, 153.59725938586121 -28.832991399157329, 153.59718801268713 -28.832928777772562, 153.597142345948 -28.832962744201012, 153.5971293807174 -28.832952426823319, 153.59694236819308 -28.832757469084271, 153.59700135718361 -28.832713593767096, 153.59690623736549 -28.832607210160855, 153.596806356407 -28.83250403682182, 153.59677426050081 -28.832468838138308, 153.59674123380441 -28.832434267048004, 153.59665893671993 -28.832376077212004, 153.59661847323372 -28.832346520398112, 153.59652918765465 -28.832251220203574, 153.59649027535181 -28.832212222167794, 153.59648354944193 -28.832204814517741, 153.59646980871634 -28.832188437256296, 153.59645689180385 -28.832171530260268, 153.59644483458817 -28.832154124143873, 153.59643157557164 -28.832137197330916, 153.59641641507346 -28.832120807109096, 153.59640218166024 -28.8321036214894, 153.59638892930889 -28.832085688481175, 153.596375956565 -28.832067272586912, 153.59636435607234 -28.832048083336137, 153.59635360725431 -28.832028328951392, 153.59634374243726 -28.832008039539129, 153.59633605638112 -28.831987077411885, 153.5963318053829 -28.83196549239738, 153.59632929954279 -28.831943691043403, 153.59632783645685 -28.831921808021253, 153.59632677661014 -28.83187790061826, 153.59632696790135 -28.831855848742272, 153.59632819500456 -28.831833767903934, 153.59632901303519 -28.831824695820824, 153.59633227331477 -28.831772776688933, 153.59633629991907 -28.831727677371735, 153.59634232417682 -28.831682840346765, 153.59635068992739 -28.831592682749505, 153.59635610472813 -28.831547765703053, 153.59637375091589 -28.831367570608148, 153.59642744013237 -28.831106950441615, 153.59619078177357 -28.831073003709552, 153.59619078188928 -28.831073003084011, 153.59619055563743 -28.831072971271951, 153.59592783458635 -28.831923587582384, 153.5960155279918 -28.832012890622767, 153.59612255863729 -28.832164648755747, 153.5962323187895 -28.8323620640291, 153.59631205559432 -28.83249002060067, 153.59639160663443 -28.832585357019344, 153.59662296562502 -28.832804416609108, 153.59685614936524 -28.832996936031826, 153.59696051475979 -28.83311390959997, 153.59702052633133 -28.833246302455304, 153.59709527724786 -28.833365581682482, 153.59716495388949 -28.833460961319325, 153.59725000306031 -28.833654135611571, 153.59735633235769 -28.833759783335775, 153.59738362764287 -28.833860585663469, 153.59742373248764 -28.833984432009363, 153.59738800206716 -28.83421512002818, 153.59737085396802 -28.834232581860384, 153.59734275189527 -28.834502379722025, 153.59734386782168 -28.834502818035322, 153.59734374070064 -28.834504039066218, 153.59739323188663 -28.83452339247491, 153.59747550676826 -28.834570751231894, 153.59746510349143 -28.834651474398974, 153.59744452599028 -28.834734504703921, 153.5973857545533 -28.834861300985352, 153.59727403379617 -28.835043617534442, 153.59715849164783 -28.835258636018882, 153.59707564141866 -28.835357922262183, 153.59679454884292 -28.835567808888236, 153.59662578725639 -28.835674027669153, 153.59649418923073 -28.83574637408455, 153.59618988817562 -28.835889486341891, 153.5961202259727 -28.835925826070156, 153.59548118989701 -28.836235875997616, 153.59500804713855 -28.83647355017488, 153.5947960436668 -28.836474485049617, 153.59468771948511 -28.83649359363384, 153.59458929002483 -28.836510956689786, 153.59441284772703 -28.836551739492652, 153.59429190482092 -28.836587832561577, 153.59421641646736 -28.836628170348817, 153.59413078213564 -28.836659662718283, 153.5940048165327 -28.836700222681145, 153.59391398292851 -28.836705067628376, 153.59387375264052 -28.83673191491107, 153.59383935720706 -28.837217463549333, 153.59451354529853 -28.837440459400074)), POLYGON ((153.60135765661502 -28.838651893087565, 153.60225655011357 -28.836800081485904, 153.60225656311596 -28.836800010071666, 153.60224967451538 -28.836799037647157, 153.60135765661502 -28.838651893087565)), POLYGON ((153.60130784413403 -28.838755361108056, 153.60135765661502 -28.838651893087565, 153.60130749562606 -28.838755229802583, 153.60130784413403 -28.838755361108056)), POLYGON ((153.60090183043093 -28.839575834611363, 153.60180421668403 -28.837712330327026, 153.6022433148232 -28.83680743126666, 153.60224748312325 -28.836798728300813, 153.60224967451538 -28.836799037647157, 153.60344496484464 -28.83431623972508, 153.59794976596575 -28.834861609559614, 153.59451504215733 -28.837440725486246, 153.60039689340127 -28.839386263131491, 153.60090183043093 -28.839575834611363)))\n17334879\tSt Eyre Estate\tCheck with carrier\tPOLYGON ((137.736468 -32.5057349755, 137.736439936 -32.505143031, 137.736412928 -32.5045510125, 137.73634992 -32.5032000315, 137.736291968 -32.5019469525, 137.736232928 -32.500656004, 137.736173888 -32.499376026, 137.736077056 -32.497296034, 137.729921056 -32.5017029745, 137.731809952 -32.5057699775, 137.736468 -32.5057349755))\nON-V-LSP-WTN7\tWorthington Estate\tReady for service\tPOLYGON ((145.44930696487427 -38.056759116436055, 145.45020818710327 -38.052535049254409, 145.44171094894409 -38.051571927809711, 145.4409384727478 -38.05566088242076, 145.44930696487427 -38.056759116436055))\n17344902\tFishermans Road Stratham Park\tCheck with carrier\tPOLYGON ((115.580933984 -33.479493039, 115.586069024 -33.482348995, 115.58718288 -33.4798430405, 115.589207168 -33.476949992, 115.585552064 -33.4750719645, 115.58551104 -33.474827968, 115.584995168 -33.4742470125, 115.58482704 -33.4741560295, 115.584069952 -33.474275003, 115.583393888 -33.474886021, 115.583105888 -33.475430975500004, 115.583406848 -33.475760997, 115.583131072 -33.476193009, 115.583012992 -33.4763790265, 115.582901024 -33.476851979, 115.582551104 -33.4773630045, 115.582200128 -33.477703016, 115.581807008 -33.478060954, 115.580933984 -33.479493039))\n287\tPavilion\tReady for service\tPOLYGON ((145.317223415383 -38.121935435108206, 145.315152750018 -38.132282585327637, 145.31841431618639 -38.13270454238269, 145.31985198021883 -38.125294621808983, 145.3217402553675 -38.125463421082053, 145.32191191674383 -38.124501259996357, 145.317223415383 -38.121935435108206))\n17326687\tLot 9601 Maddern Road Chittering WA\tCheck with carrier\tPOLYGON ((116.068223168 -31.522233961, 116.068780064 -31.525973995, 116.069312864 -31.525880033500002, 116.070432832 -31.527743039, 116.075851904 -31.527636035, 116.07591888 -31.5266619545, 116.076660832 -31.525226003, 116.071539104 -31.5219699845, 116.070365152 -31.5218940235, 116.068223168 -31.522233961))\n17307174\tRendezvous Road Vasse\tCheck with carrier\tPOLYGON ((115.276300928 -33.6766400095, 115.272884864 -33.676795983, 115.27288416 -33.678270988, 115.274312992 -33.678268028, 115.274315168 -33.678268028, 115.274333152 -33.681551038, 115.274336032 -33.6820959925, 115.274338912 -33.682665959, 115.274354048 -33.685442994, 115.275596032 -33.685417982000004, 115.275585952 -33.685129974, 115.276588928 -33.684631029, 115.278554144 -33.6846780005, 115.279579072 -33.6847030125, 115.279579072 -33.68530602, 115.279579072 -33.6853140305, 115.279826048 -33.68530602, 115.279818112 -33.6838640375, 115.279818112 -33.683821025, 115.27981488 -33.6833980225, 115.279808032 -33.6821830165, 115.279803008 -33.681212007, 115.279803008 -33.6812110265, 115.27980192 -33.6810549605, 115.279793984 -33.681058013, 115.279443008 -33.6812010365, 115.279233824 -33.6812859885, 115.27893792 -33.681405961, 115.277335904 -33.6814229625, 115.277335904 -33.6814100125, 115.27729488 -33.678254967, 115.277294144 -33.6782130275, 115.27636896 -33.678258038, 115.276301984 -33.678260998, 115.276301984 -33.678258038, 115.276303072 -33.6766400095, 115.276300928 -33.6766400095))\n16\tPanorama\tReady for service\tMULTIPOLYGON (((150.8907794739327 -33.965076958055747, 150.89132922304751 -33.962150535542555, 150.89136248564427 -33.961937877847092, 150.8908904168571 -33.961857790483585, 150.89137116836898 -33.961933413532776, 150.89153414702059 -33.9611814941856, 150.88906651473016 -33.96114589949439, 150.8879185292686 -33.961074710068026, 150.88740354513959 -33.961003520581365, 150.88682418798885 -33.9607543569111, 150.88544016813819 -33.9597665937488, 150.88525777793089 -33.95973989728796, 150.88493591284913 -33.95993567113981, 150.886266288518 -33.961074710068026, 150.8848715398274 -33.962240429429009, 150.88441019988019 -33.961857790483577, 150.88537579512544 -33.961065811385282, 150.88448530173287 -33.960345015010283, 150.88170653319165 -33.962382806271812, 150.88299399351865 -33.963557406130143, 150.8829832646787 -33.964189191769542, 150.88910943007198 -33.964874362441222, 150.8891339514723 -33.964793011449764, 150.88979607557735 -33.962356110631987, 150.88995700812268 -33.961795500260344, 150.88957077001919 -33.963343843725951, 150.8891339514723 -33.964793011449764, 150.88910943007198 -33.964883260724818, 150.89023595786261 -33.964998938333657, 150.8907794739327 -33.965076958055747)), ((150.89165216421515 -33.965203598332444, 150.89228516554769 -33.962062458040961, 150.89151268934967 -33.961955675029245, 150.89137116836898 -33.961933413532776, 150.89136248564427 -33.961973472206921, 150.89132922304751 -33.962150535542555, 150.89110499357525 -33.963584101392961, 150.89079385733348 -33.965079022739744, 150.8907794739327 -33.965076958055747, 150.89077239966255 -33.965114615785168, 150.89165216421515 -33.965203598332444)))\n17266708\tEdenvale \tCheck with carrier\tPOLYGON ((152.966187008 -27.8746859935, 152.966608992 -27.8728600065, 152.965924 -27.872881004, 152.966060992 -27.8726489955, 152.966220992 -27.872729008, 152.966518016 -27.871205995500002, 152.95732 -27.8698039915, 152.956624 -27.873234002500002, 152.966187008 -27.8746859935))\n17339941\tSherwin Ridge\tCheck with carrier\tPOLYGON ((149.65457184 -35.0642670305, 149.64938784 -35.063517965500004, 149.64896592 -35.0657919855, 149.64666912 -35.070687992, 149.644395008 -35.072179018, 149.644700992 -35.072219977, 149.64491808 -35.072249040500004, 149.645683072 -35.072351993, 149.64574896 -35.0723610025, 149.646511072 -35.072463955, 149.64672816 -35.072493037, 149.647599008 -35.0726110115, 149.647665952 -35.072620021, 149.648077088 -35.072676002, 149.651753056 -35.067482996500004, 149.653425952 -35.0661050055, 149.654513888 -35.0645069755, 149.654559968 -35.064341012, 149.654567168 -35.064304012, 149.65457184 -35.0642670305))\n248\tLara Industrial Park\tUnder construction\tPOLYGON ((144.35825859069561 -38.048203343505, 144.35858045577737 -38.048135752449362, 144.36036144256246 -38.04840611629821, 144.36031852722064 -38.049774817962543, 144.36214242934759 -38.050095867733631, 144.36242137908752 -38.048608888529778, 144.37074695587128 -38.049656536112437, 144.37040363311857 -38.051684198518728, 144.36503921508336 -38.05105900859941, 144.36478172302336 -38.052495247755523, 144.35845170974287 -38.05173488935926, 144.35825859069561 -38.048203343505))\n171\tWaterside\tReady for service\tPOLYGON ((145.33521009756245 -38.077916796186784, 145.33711983038208 -38.07632903477294, 145.34329963995714 -38.082882550857214, 145.34322453810441 -38.082992334139554, 145.34272028281538 -38.082950109819755, 145.34066034629035 -38.082620759286584, 145.33872915579983 -38.08239274650996, 145.33803178145453 -38.082544755106717, 145.3378064758964 -38.082646093995649, 145.33764554336003 -38.082586979660604, 145.33759189917822 -38.082510975445615, 145.33737732246004 -38.082434971151635, 145.33634735419304 -38.082603869475193, 145.33547831847139 -38.08268831849103, 145.3340621121099 -38.082713653176683, 145.33430887533893 -38.081683368879979, 145.33452345206612 -38.080653070065367, 145.33521009756245 -38.077916796186784))\n254\tWeemala at the Lake\tContracted\tMULTIPOLYGON (((151.62975265339009 -32.94898060072704, 151.63289223669912 -32.946609451358995, 151.62973184294088 -32.948920984521408, 151.62975265339009 -32.94898060072704)), ((151.62760641659096 -32.9504755355894, 151.62973184294088 -32.948920984521408, 151.62920151709443 -32.947401747026376, 151.63239871023205 -32.944502630612966, 151.63265620230106 -32.942899972664136, 151.63132582663221 -32.940198798024568, 151.6310897922431 -32.94001871678018, 151.62984524725792 -32.940594975467569, 151.62984524725792 -32.94099115113638, 151.63111124991403 -32.943422190242039, 151.62733469961665 -32.946789519179895, 151.62718449591122 -32.948536158004309, 151.62366543769184 -32.948518151594783, 151.62364398001193 -32.949796597574604, 151.62760641659096 -32.9504755355894)), ((151.62784968375465 -32.953487781499845, 151.62860070227276 -32.952983628881633, 151.62930880545798 -32.953001634381529, 151.63018857001063 -32.952695540380631, 151.62954483984709 -32.952173377578546, 151.62774239539104 -32.952371439694339, 151.62900839803817 -32.950588864677108, 151.62982378957804 -32.94918438631418, 151.62975265339009 -32.94898060072704, 151.62774239539104 -32.950498834681945, 151.62760641659096 -32.9504755355894, 151.62737761496746 -32.950642882629289, 151.62694846152215 -32.953217700097227, 151.62784968375465 -32.953487781499845)))\n52\tBaywater\tReady for service\tPOLYGON ((144.549435001 -38.157866291, 144.545735554 -38.158447199, 144.544859131 -38.164405734, 144.550847583 -38.164413154, 144.550914406 -38.164045284, 144.550758464 -38.162938948, 144.55045152 -38.16264492, 144.55076581 -38.1618042, 144.550608149 -38.160842053, 144.55049677 -38.160225774, 144.549863895 -38.159388014, 144.549435001 -38.157866291))\n17338135\tDavid Road\tCheck with carrier\tPOLYGON ((114.637218112 -28.6656509775, 114.637219904 -28.667834014500002, 114.644104928 -28.667829963000003, 114.644104928 -28.669148014, 114.648036832 -28.669146034500002, 114.648033952 -28.664917027, 114.644105984 -28.6649190065, 114.644104928 -28.6656470185, 114.637218112 -28.6656509775))\nAYAA-HJ45E\tLatitude 32 Flinders Precinct\tReady for service\tPOLYGON ((115.791616563541 -32.2085506036102, 115.792288250564 -32.2085570222319, 115.792282023984 -32.2084526735458, 115.792065898697 -32.2084576208421, 115.791987113553 -32.2083913246043, 115.791994921075 -32.2077048935914, 115.792377738429 -32.2075334274716, 115.79243298233 -32.2075270515062, 115.792406946862 -32.20734992119, 115.792429632085 -32.2073446167375, 115.791966214708 -32.2071046049343, 115.791976 -32.2057930000131, 115.792062 -32.205581000013, 115.792273 -32.205308000013, 115.792404 -32.2052160000132, 115.792822 -32.205038000013, 115.792997516307 -32.2049900609025, 115.793173808082 -32.204941909688, 115.794655667038 -32.2058772577697, 115.795628206882 -32.2053688704901, 115.796467993358 -32.2049827829618, 115.796899915217 -32.2038510915328, 115.796910079791 -32.2023870759973, 115.794159309963 -32.202352154459, 115.79280336 -32.202339570013, 115.79279449071 -32.2028314062634, 115.791901741254 -32.2028238651333, 115.791912602076 -32.2022816467081, 115.791188815777 -32.2022841665712, 115.791200898532 -32.201277634698, 115.788691948783 -32.2012630720123, 115.787672240701 -32.2032162239693, 115.788420535523 -32.2035056429791, 115.788514098544 -32.2035664820314, 115.788566318558 -32.2036520451455, 115.788884325387 -32.2046896392738, 115.788895253732 -32.2063031507377, 115.788936703092 -32.206561588571, 115.78905877508 -32.2068083407521, 115.789237356032 -32.2070297801325, 115.789485761667 -32.2072070947992, 115.789770278815 -32.2073139965008, 115.790041121667 -32.2073773726373, 115.790311667911 -32.2074311247885, 115.790580412951 -32.2074749160497, 115.790850986816 -32.2075096257533, 115.791290512119 -32.2075455713778, 115.791623612713 -32.2077018403086, 115.791616563541 -32.2085506036102), (115.789668200234 -32.203130500848, 115.789678919999 -32.2023105000131, 115.79180544 -32.202330300013, 115.791794816389 -32.2031517695263, 115.790538211352 -32.2031392062313, 115.790522565828 -32.2042941538875, 115.789658656408 -32.2042858862529, 115.789668200234 -32.203130500848))\n213\tLara Views \tReady for service\tPOLYGON ((144.38508068086276 -38.032962093516318, 144.3940070724592 -38.03397616290804, 144.39336334229566 -38.037390093329506, 144.38430820466473 -38.03634227022458, 144.38508068086276 -38.032962093516318))\n17353506\tGrandevue Estate\tCheck with carrier\tPOLYGON ((147.100400992 -38.1822589915, 147.09954 -38.186671001, 147.106391008 -38.1875730055, 147.10718 -38.183076007000004, 147.100400992 -38.1822589915))\n17347514\tHumpty Doo Industrial Park\tCheck with carrier\tPOLYGON ((131.095235712 -12.5915301515, 131.095233696 -12.590555590000001, 131.095232384 -12.5899204665, 131.095233504 -12.5896483685, 131.09523344 -12.5892112135, 131.095233376 -12.588879749, 131.095233312 -12.588548303, 131.095233216 -12.588216838500001, 131.095233152 -12.5878085065, 131.095233088 -12.587445407, 131.095232992 -12.587126596500001, 131.095232832 -12.5867648845, 131.09523264 -12.5864026915, 131.095232576 -12.5859505515, 131.095232416 -12.585589043, 131.095232224 -12.585227553000001, 131.095229024 -12.584775339, 131.095226464 -12.5843259185, 131.09092864 -12.584327139500001, 131.090929984 -12.591531576, 131.095235712 -12.5915301515))\nON-V-LSP-DEV\tLakeside, Devonia\tReady for service\tPOLYGON ((145.43976366519928 -38.071794816771721, 145.43969929218292 -38.07215377746585, 145.43924868106842 -38.072229792445647, 145.43835282325745 -38.074797363140824, 145.43947398662567 -38.074750911182129, 145.44065415859222 -38.075012730927469, 145.44197916984558 -38.076110674491709, 145.4433336853981 -38.077552756092118, 145.44488131999969 -38.078048926934358, 145.44742941856384 -38.073285547885945, 145.43976366519928 -38.071794816771721))\n10241\tDalyellup\tReady for service\tPOLYGON ((115.61975240707397 -33.39055091775127, 115.62018156051636 -33.390533001909944, 115.62057852745056 -33.390568833588922, 115.62099695205688 -33.390631538991585, 115.62144756317139 -33.390694244349014, 115.62186598777771 -33.390739033862346, 115.62156558036804 -33.391285464066662, 115.62132954597473 -33.391724397316644, 115.62155485153198 -33.391805017468549, 115.62146902084351 -33.391912510888112, 115.62146902084351 -33.391984173093959, 115.62124371528625 -33.392234990349181, 115.62120079994202 -33.392423102815613, 115.621018409729 -33.392879945682019, 115.62098622322083 -33.393587599499241, 115.62048196792603 -33.393578641891985, 115.62029957771301 -33.394205672170116, 115.62064290046692 -33.394286290020545, 115.62047123908997 -33.39484165540258, 115.62040686607361 -33.39495810253262, 115.62020301818848 -33.395522421029604, 115.6200098991394 -33.39577322807429, 115.61980605125427 -33.395988204965107, 115.61976313591003 -33.396382327883757, 115.61976313591003 -33.396767491736455, 115.61982750892639 -33.397206397301595, 115.61987042427063 -33.3975826003074, 115.61983823776245 -33.39794088737024, 115.61968803405762 -33.3982723015882, 115.61957001686096 -33.398424572561865, 115.61926960945129 -33.398254387338461, 115.61911940574646 -33.398164816034374, 115.61837911605835 -33.3977259153098, 115.61744570732117 -33.397215354534943, 115.61686635017395 -33.396982466167778, 115.61672687530518 -33.396910808083085, 115.61652302742004 -33.396874979018584, 115.61641573905945 -33.396910808083085, 115.61561107635498 -33.396812278120166, 115.61554670333862 -33.396722705329665, 115.61553597450256 -33.39614047994101, 115.6156325340271 -33.395710526380981, 115.6157398223877 -33.395459719155333, 115.61583638191223 -33.395298485556623, 115.6151819229126 -33.395119336762804, 115.6151282787323 -33.3950208047688, 115.6151282787323 -33.394886442778756, 115.61525702476501 -33.394698335643731, 115.61592221260071 -33.393695090714253, 115.61660885810852 -33.392656003400482, 115.61711311340332 -33.391867721979452, 115.61720967292786 -33.391840848623175, 115.61726331710815 -33.39166169270235, 115.6177031993866 -33.391294421910246, 115.61818599700928 -33.390998812584542, 115.61878681182861 -33.390747991762247, 115.61945199966431 -33.390586749422866, 115.61975240707397 -33.39055091775127))\nAYCA-1DER92\tLots 9004 Eastlyn Dr Deepdale\tReady for service\tPOLYGON ((114.67999499999 -28.7938689999871, 114.68292899999 -28.7950069999872, 114.68976299999 -28.7906249999872, 114.68977499999 -28.7872589999872, 114.68715099999 -28.7872519999872, 114.68714799999 -28.7883529999871, 114.68713099999 -28.7883529999871, 114.68713099999 -28.7883689999871, 114.68714799999 -28.7883689999871, 114.68714699999 -28.7885329999872, 114.68735199999 -28.7885339999872, 114.68742199999 -28.7901399999872, 114.68695399999 -28.7902459999871, 114.68543099999 -28.7909729999871, 114.68392399999 -28.7912479999871, 114.68289499999 -28.7912809999871, 114.68152299999 -28.7909219999871, 114.68045899999 -28.7923389999871, 114.68024999999 -28.7924339999871, 114.68082199999 -28.7927669999871, 114.67999499999 -28.7938689999871))\n17349902\tLot 1301 Gull Rock Road Albany WA\tCheck with carrier\tPOLYGON ((117.999468 -34.948832044, 117.999317152 -34.948833024500004, 117.997016032 -34.948842034, 117.996319072 -34.948844994, 117.99516384 -34.9488500445, 117.995091104 -34.9490469585, 117.996380992 -34.951457971, 117.996805088 -34.953752970000004, 117.996812992 -34.953748012, 117.99735984 -34.9537249795, 117.997382144 -34.953308008, 117.997481152 -34.9529319955, 117.997828928 -34.952478024, 117.99794016 -34.9517480325, 117.99826416 -34.951316039, 117.99849312 -34.9513739995, 117.99873792 -34.9514949525, 117.998391968 -34.952031989, 117.99841392 -34.9526040275, 117.99823392 -34.952847025000004, 117.998003872 -34.9534130325, 117.998034112 -34.954224035500005, 117.99793296 -34.954385041, 117.99857808 -34.9547589815, 118.000041824 -34.954776982, 118.00027584 -34.9549610385, 118.00023696 -34.955273966, 118.000519904 -34.955405001500004, 118.000940032 -34.955700021, 118.001012032 -34.955750970000004, 118.00137312 -34.955963017, 118.00182816 -34.9559870485, 118.001813024 -34.9531509615, 118.001808 -34.9522090155, 118.00179504 -34.94970702, 118.001792864 -34.9493759995, 118.001571104 -34.9493759995, 118.001571104 -34.949373021, 118.000155968 -34.9493270485, 117.99998784 -34.9495589645, 117.99930384 -34.950142972500004, 117.999312832 -34.950372021, 117.99878112 -34.951307048000004, 117.998612992 -34.9511949935, 117.998345152 -34.9511159615, 117.999474112 -34.949296986, 117.999468 -34.948832044))\n186\tSanctuary\tReady for service\tPOLYGON ((144.34730645652323 -38.2314381624407, 144.35191449161587 -38.231971211753766, 144.35072359081249 -38.237406827518768, 144.34975263115174 -38.237271995452772, 144.34954878327352 -38.238455980988221, 144.34598680970331 -38.237908232069529, 144.34730645652323 -38.2314381624407))\n17123438\tSouthern Cross - Stage 1 (52L)\tCheck with carrier\tPOLYGON ((151.272823008 -27.214454996500002, 151.272279008 -27.219095, 151.278312992 -27.2198619915, 151.278994016 -27.215060002, 151.272823008 -27.214454996500002))\n158\tRobina Town Centre\tReady for service\tPOLYGON ((153.38309799194224 -28.078905311663959, 153.38369880675492 -28.07970992327504, 153.38406358718751 -28.079785651116804, 153.38424597739481 -28.080041232186744, 153.38612352371251 -28.080372540075604, 153.38637028694157 -28.080145357633192, 153.3865419483179 -28.080277880782734, 153.38847313880845 -28.07917036086064, 153.38908468246106 -28.078441473996847, 153.38921342849557 -28.078015498864019, 153.38890229224481 -28.077031016536861, 153.3886877155266 -28.076728097082754, 153.3877650356232 -28.076216918566313, 153.38740025519962 -28.075724670288029, 153.38740025519962 -28.075488011658823, 153.386262998578 -28.075383881697171, 153.38604842185981 -28.075383881697171, 153.38475023269285 -28.074976827240853, 153.38436399459835 -28.07467390199367, 153.38360224723129 -28.074484573280468, 153.38305507659143 -28.074352042981971, 153.38241134642792 -28.074475106835767, 153.38195000648071 -28.0745887041139, 153.38175688743343 -28.074579237678371, 153.38166032790983 -28.0745887041139, 153.38147793769352 -28.075128289544487, 153.38190709113886 -28.075951862081283, 153.38250790596052 -28.076377845398415, 153.38269029616782 -28.076926888071036, 153.38307653427131 -28.07733393513745, 153.38335548400227 -28.077882972922051, 153.38318382262591 -28.078555067080259, 153.38309799194224 -28.078905311663959))\nAYAA-H0UT9\tWedgefield\tReady for service\tPOLYGON ((118.592672576525 -20.3804388011695, 118.593131299179 -20.3813253955829, 118.593725388852 -20.3810806700211, 118.593864174257 -20.3813833493657, 118.593283360116 -20.3816203348314, 118.593568864513 -20.3821734671046, 118.59571499896 -20.3812913311482, 118.59546888788 -20.3807555941885, 118.595798509113 -20.38062095479, 118.596044786163 -20.3811570505617, 118.597189491703 -20.3806871095014, 118.597203476734 -20.3806337454017, 118.596615264175 -20.3793849240068, 118.597849052316 -20.3787765714485, 118.598759696349 -20.3797289227947, 118.60171151066 -20.3785031237489, 118.602833574162 -20.3780289353461, 118.602296555059 -20.3768640012259, 118.601762393581 -20.3770661411191, 118.601656813565 -20.3773152675457, 118.601812674237 -20.3776671506204, 118.601714222627 -20.3777024517452, 118.601350811163 -20.3768444391335, 118.600525584418 -20.3757129858551, 118.601025522985 -20.3754194745335, 118.600149860422 -20.3741657435935, 118.599743995478 -20.374327462372, 118.599457066094 -20.3739414099331, 118.595778908724 -20.3761913161043, 118.596306342916 -20.376617251152, 118.596916147367 -20.3779584765702, 118.597225021678 -20.378630605074, 118.596273611832 -20.3790009564974, 118.592672576525 -20.3804388011695), (118.594816392565 -20.3810117305136, 118.595144473418 -20.3808777220054, 118.595396405436 -20.3814220994022, 118.59506640324 -20.3815558896664, 118.594816392565 -20.3810117305136), (118.595378967942 -20.3801067831168, 118.595204433338 -20.3797221004114, 118.595614803095 -20.3795568290774, 118.595743829191 -20.3796053733648, 118.59587672512 -20.3798974006776, 118.595378967942 -20.3801067831168), (118.594521325414 -20.3799983349327, 118.594859026815 -20.3798604271722, 118.595186246908 -20.3805727335521, 118.594848556106 -20.3807106677231, 118.594521325414 -20.3799983349327))\nAYAA-FRYDK\tTeviot Downs Estate\tReady for service\tPOLYGON ((152.951579273602 -27.7504397198131, 152.951040713602 -27.7515605798121, 152.950871873603 -27.7520487398117, 152.950764953603 -27.7526297798112, 152.950544633603 -27.7525644398112, 152.950290473603 -27.7532424998106, 152.950118753603 -27.7534036898104, 152.949926873604 -27.7542902798096, 152.950301273604 -27.7543836998096, 152.950598633604 -27.7545027698097, 152.950828673604 -27.7546365998097, 152.951251313604 -27.7549677098095, 152.952107033604 -27.7559134298093, 152.952518873604 -27.7555594598098, 152.952965993603 -27.7550979398103, 152.952505553603 -27.7546980698105, 152.952594833603 -27.7546617998104, 152.952772673603 -27.7544997098107, 152.953221953603 -27.7539509798113, 152.953505993603 -27.7537624298115, 152.953663673603 -27.7535808098117, 152.95391748 -27.753365429982, 152.954189273603 -27.7531781498123, 152.954586353602 -27.7530291098125, 152.954680673602 -27.7528354298127, 152.95493952 -27.7525640699821, 152.955239753602 -27.7523988398134, 152.955307433602 -27.7522029998135, 152.955496793602 -27.7522722098136, 152.955732953602 -27.7522444898137, 152.955959033602 -27.7521893198138, 152.956086113602 -27.7523528498138, 152.956135073602 -27.7524256598136, 152.956299593602 -27.7522306298139, 152.956367273602 -27.7523315198139, 152.956389953602 -27.7523930798138, 152.9564454 -27.752469749982, 152.956535393602 -27.7525125998138, 152.956617833602 -27.7525110698138, 152.957132633602 -27.7523817398142, 152.957238305373 -27.7523153798328, 152.956922230283 -27.7510431653912, 152.956512689187 -27.7511257070108, 152.955674273601 -27.750488319815, 152.955556913601 -27.7500176198153, 152.955235793601 -27.7500631598151, 152.952960953601 -27.748965789815, 152.952865193601 -27.7489356398149, 152.951583245419 -27.7485323302417, 152.95173336 -27.7471395899826, 152.950477143234 -27.7470325649936, 152.9503524 -27.7470854999827, 152.95048567432 -27.7495956847837, 152.950453553608 -27.7501476698128, 152.950799873602 -27.7501841198129, 152.951137193602 -27.7502616098131, 152.951460113602 -27.7503786998132, 152.951579273602 -27.7504397198131))\n189\tAshbury\tReady for service\tPOLYGON ((144.35133218646388 -38.22122706468388, 144.35028076052595 -38.225812226077274, 144.35538768649215 -38.226284211579959, 144.35568809390298 -38.226317924712454, 144.35530185580851 -38.227717005951725, 144.35858487963878 -38.228172122963628, 144.35884237170779 -38.226756194019458, 144.35534477115033 -38.226250498431128, 144.3563103663956 -38.221783368050794, 144.35133218646388 -38.22122706468388))\n17340096\tMundoolun Estate\tCheck with carrier\tPOLYGON ((153.087716896 -27.8594579775, 153.079827136 -27.857205991, 153.078977152 -27.8565869625, 153.078810112 -27.8558720115, 153.077532128 -27.8569299525, 153.078982912 -27.859124977500002, 153.081343072 -27.861081038000002, 153.083284928 -27.861864032, 153.084931936 -27.86184198, 153.085973056 -27.862075986500003, 153.087716896 -27.8594579775))\n181\tThe Surrounds\tReady for service\tPOLYGON ((153.33939444392914 -27.928418734504167, 153.34008108943451 -27.928475610200998, 153.3399523434 -27.931736433437418, 153.34402930110821 -27.92923394996614, 153.34557425349522 -27.928722071208654, 153.346153610646 -27.933272019605607, 153.33997380107093 -27.934788626501646, 153.33952318996367 -27.932608497395915, 153.33935152857833 -27.931508937334502, 153.33926569789466 -27.930219783705194, 153.33939444392914 -27.928418734504167))\n17316655\tForest Hills\tCheck with carrier\tPOLYGON ((150.928926112 -31.032246957, 150.92476992 -31.031649999000003, 150.92455104 -31.031618031, 150.924539168 -31.031616958, 150.924327136 -31.0315860075, 150.91850304 -31.0307439615, 150.91801488 -31.0332470485, 150.918012 -31.0332599985, 150.918121088 -31.033275039, 150.923917088 -31.0341060035, 150.927036832 -31.034554018, 150.927501952 -31.034620988, 150.928323136 -31.0347399615, 150.92843616 -31.034755982500002, 150.928926112 -31.032246957))\n17219184\tEdenvale\tCheck with carrier\tPOLYGON ((152.974415008 -27.8724570025, 152.966563008 -27.8712459925, 152.966267008 -27.8727589965, 152.966060992 -27.872659004000003, 152.965947008 -27.8729010025, 152.966563008 -27.872921001, 152.966198016 -27.874696002, 152.973388 -27.875806002, 152.974415008 -27.8724570025))\n17322026\tTanby Heights Stage 2\tCheck with carrier\tPOLYGON ((150.75956592 -23.2286249645, 150.759606976 -23.2288070415, 150.759305984 -23.230592014, 150.757269856 -23.2300289665, 150.757143136 -23.230791, 150.757111072 -23.230979996000002, 150.75689616 -23.232267004, 150.757722016 -23.232331976, 150.758777152 -23.232853972, 150.759569152 -23.233050997, 150.759268928 -23.2332380135, 150.75949392 -23.233631046, 150.759872992 -23.2336269945, 150.760022048 -23.233424031000002, 150.760060928 -23.233174022, 150.762421088 -23.233053957, 150.762596032 -23.232027965500002, 150.762690016 -23.231867034, 150.76417104 -23.2327220485, 150.765437152 -23.2327199765, 150.765690976 -23.232687028, 150.765579008 -23.231968025500002, 150.765406912 -23.2318119595, 150.764436 -23.2318140315, 150.762813856 -23.230716038, 150.76423584 -23.229349017500002, 150.765795008 -23.2294259775, 150.765912 -23.228811000500002, 150.764694848 -23.2282459735, 150.764573888 -23.2283760285, 150.764452928 -23.2285959935, 150.764432032 -23.228648996, 150.764429152 -23.2286779855, 150.764441056 -23.228703996500002, 150.764465888 -23.228720998, 150.764411872 -23.2288569915, 150.764383072 -23.2288530325, 150.764355008 -23.228864003, 150.76433808 -23.228886961500002, 150.764221088 -23.229181981, 150.764046848 -23.229095031, 150.76317888 -23.228613994, 150.762912832 -23.2290399565, 150.76257984 -23.2288509605, 150.762305888 -23.228694987, 150.76163088 -23.228312037000002, 150.761584096 -23.2282850455, 150.761076832 -23.229064987, 150.760950112 -23.2290009955, 150.760875968 -23.2291279795, 150.760827008 -23.2291179895, 150.760778048 -23.229131032, 150.76074384 -23.229164961000002, 150.76055808 -23.229041048, 150.760548 -23.2289250345, 150.760468096 -23.228737019, 150.76027296 -23.2284969815, 150.75956592 -23.2286249645))\n17325176\tFletcher Industrial Stage 1\tCheck with carrier\tPOLYGON ((148.63352688 -32.213367987, 148.627864096 -32.212643046000004, 148.627340992 -32.21681598, 148.628130112 -32.2168589925, 148.628052 -32.21748198, 148.631320576 -32.217959317, 148.631346976 -32.2179630725, 148.63255072 -32.218138674500004, 148.632672608 -32.217543215, 148.632827232 -32.2167876195, 148.632943456 -32.2162197065, 148.633098368 -32.2154627235, 148.633116128 -32.2153759215, 148.63352688 -32.213367987))\n17328781\tAvoca Dell Stage 1\tCheck with carrier\tPOLYGON ((139.316762176 -35.092629991, 139.312636928 -35.0897020145, 139.312140128 -35.09023302, 139.310690048 -35.0900780455, 139.310080928 -35.089769965, 139.309796896 -35.089626960000004, 139.30881299199999 -35.091088016, 139.308128992 -35.090600041500004, 139.308030016 -35.0907869655, 139.307946112 -35.0909469905, 139.307829856 -35.0911680285, 139.307823008 -35.091179998, 139.30826688 -35.091504007000005, 139.307657056 -35.092090975, 139.30772688 -35.0921410175, 139.308338176 -35.091552958, 139.308630848 -35.0917559955, 139.308920992 -35.091962992, 139.309211168 -35.092169008, 139.30950096 -35.092376004500004, 139.309791136 -35.092583001, 139.310080928 -35.092789017, 139.309466048 -35.0933810355, 139.309590976 -35.093469965000004, 139.310205856 -35.092878039, 139.31050896 -35.093094026500005, 139.310799136 -35.093301023, 139.311088928 -35.093508038, 139.31138016 -35.0937150345, 139.311668896 -35.093921032000004, 139.311055072 -35.0945129765, 139.311178912 -35.09460198, 139.311794176 -35.0940099615, 139.312083968 -35.094216958000004, 139.312374112 -35.094422974000004, 139.312663936 -35.0946299705, 139.31295408 -35.094836967, 139.313243872 -35.095042983, 139.313534048 -35.095249979500004, 139.31382384 -35.095456976, 139.316762176 -35.092629991))\n17051058\tLot 17 Harbour Rd\tCheck with carrier\tPOLYGON ((121.883787008 -33.844219022000004, 121.883784832 -33.841917992, 121.883784832 -33.840885951000004, 121.884516 -33.840885951000004, 121.88531808 -33.8408849705, 121.885319168 -33.841650963, 121.885589152 -33.841650963, 121.886825024 -33.841649964, 121.887164864 -33.841649964, 121.887272864 -33.841649964, 121.88727216 -33.839250033, 121.887164864 -33.8391579585, 121.884596992 -33.8391029765, 121.88242512 -33.8390569855, 121.880253952 -33.8390099955, 121.880253952 -33.839785978, 121.880253952 -33.839966963500004, 121.880253952 -33.842019964, 121.880253952 -33.8442210015, 121.883787008 -33.8442200025, 121.883787008 -33.844219022000004))\n17337131\tTimbertop Estate\tCheck with carrier\tMULTIPOLYGON (((151.705602016 -32.633970038, 151.704486016 -32.6323780205, 151.704352096 -32.632237975500004, 151.70440896 -32.632199995, 151.703399872 -32.631224046, 151.701465952 -32.6330900115, 151.699861088 -32.632981028, 151.699744096 -32.6341079925, 151.699682176 -32.634313028, 151.699111936 -32.6343549675, 151.69861296 -32.6359500375, 151.70002992 -32.635934997, 151.700789152 -32.6358620145, 151.70168016 -32.6357029885, 151.702724896 -32.635418033, 151.703841952 -32.6349410475, 151.704541088 -32.6345339735, 151.705095136 -32.6342109635, 151.705602016 -32.633970038)), ((151.70961312 -32.633252016, 151.70929488 -32.631959976000005, 151.709226848 -32.6309979575, 151.707498112 -32.630788981500004, 151.707422176 -32.631080042, 151.706247136 -32.6308149925, 151.70598 -32.631399981, 151.70565312 -32.631577026, 151.706667968 -32.6337759915, 151.70961312 -32.633252016)))\n17333083\tWaterside Pastures\tCheck with carrier\tPOLYGON ((151.828084992 -32.7579690075, 151.827584992 -32.758579008, 151.829407008 -32.760173005, 151.828268992 -32.7616419975, 151.828920992 -32.762206007, 151.830192 -32.7610410065, 151.832150016 -32.762317007, 151.836938016 -32.763180994, 151.837710016 -32.7620169925, 151.838058016 -32.7615220065, 151.838430016 -32.760806001, 151.838298016 -32.7604150035, 151.834415008 -32.759964991000004, 151.833738016 -32.7606690085, 151.831170016 -32.758187992, 151.830954016 -32.758366998, 151.829954016 -32.759586, 151.828084992 -32.7579690075))\nAYCA-1ORQMM\tRIVERLAND GARDENS\tContracted\tPOLYGON ((146.014765 -35.9649560000272, 146.013991 -35.9649470000272, 146.014027 -35.9657010000272, 146.01441 -35.9656370000272, 146.01458 -35.9656060000272, 146.014431 -35.9658970000272, 146.01411 -35.9659550000273, 146.013975 -35.9667820000273, 146.013649 -35.9667430000272, 146.013509 -35.9678510000273, 146.01375 -35.9679970000272, 146.013573 -35.9690660000273, 146.01474 -35.9691330000273, 146.014936 -35.9691110000273, 146.018084 -35.9694500000272, 146.018084 -35.9693980000272, 146.019234 -35.9695250000273, 146.01922 -35.9696000000272, 146.019191 -35.9697780000272, 146.020084 -35.9698830000272, 146.020257 -35.9688270000273, 146.019822 -35.9687810000272, 146.019832 -35.9679220000273, 146.019981 -35.9670420000273, 146.020051 -35.9670500000273, 146.020083 -35.9668500000273, 146.020058 -35.9668470000272, 146.020207 -35.9660130000272, 146.019733 -35.9659560000272, 146.019822 -35.9658290000272, 146.019921 -35.9657030000272, 146.01993 -35.9656950000273, 146.019694 -35.9655700000272, 146.019631 -35.9655810000272, 146.019222 -35.9653890000273, 146.019165 -35.9653720000272, 146.019058 -35.9653480000273, 146.01898 -35.9653430000273, 146.015846 -35.9652160000272, 146.015802 -35.9649670000272, 146.014961 -35.9649580000273, 146.014971 -35.9653640000272, 146.014773 -35.9653670000272, 146.014765 -35.9649560000272))\nAYCA-IQWLC\tJimboomba Woods\tReady for service\tPOLYGON ((153.059876 -27.8661709999843, 153.059393 -27.8657739999842, 153.05906 -27.8654649999842, 153.059073 -27.8654119999843, 153.058731 -27.8649699999842, 153.057635 -27.8628849999842, 153.057228 -27.8625079999842, 153.056898 -27.8642849999843, 153.056244 -27.8641909999843, 153.055819 -27.8655359999842, 153.054619 -27.8653589999843, 153.054332 -27.8669009999843, 153.053726 -27.8701509999843, 153.054884 -27.8702949999842, 153.054732 -27.8709139999843, 153.054569 -27.8717849999843, 153.056308 -27.8720519999843, 153.056603 -27.8720939999843, 153.05661 -27.8719129999843, 153.056579 -27.8719019999843, 153.056548 -27.8718519999842, 153.056541 -27.8716609999843, 153.056462322502 -27.8714537774465, 153.057889038769 -27.8706141810958, 153.05687 -27.8700129999842, 153.056707 -27.8698759999842, 153.056423 -27.8681089999842, 153.05652 -27.8681319999843, 153.056937929266 -27.8667522724327, 153.056988626325 -27.8667706002395, 153.057006209358 -27.8669011888625, 153.057235842592 -27.8667815795985, 153.057200368391 -27.8666563018243, 153.05753459366 -27.8663982685003, 153.058547498497 -27.8673962552253, 153.059133392735 -27.867140336309, 153.059876 -27.8661709999843))\n17331968\tRavendene Estate\tCheck with carrier\tPOLYGON ((145.593441376 -38.041282535, 145.593394208 -38.041230957, 145.593331936 -38.041538131, 145.595067104 -38.0417476435, 145.594859392 -38.042867245000004, 145.59588432 -38.0429861445, 145.5992136 -38.043390684, 145.599485056 -38.042158954, 145.599557024 -38.0418093965, 145.599820192 -38.0417600755, 145.60046928 -38.0410301765, 145.60115616 -38.040258153, 145.601208736 -38.0396099685, 145.60113888 -38.0394430245, 145.600887616 -38.038844697500004, 145.59560496 -38.039096871, 145.594209248 -38.039163471, 145.593930976 -38.039226204500004, 145.593855712 -38.039278504, 145.593755648 -38.0394503135, 145.593487456 -38.0407716945, 145.595234528 -38.040923431500005, 145.59511824 -38.0414953775, 145.593441376 -38.041282535))\nAYCA-1DEL05\tTeviot Downs Estate\tReady for service\tPOLYGON ((152.9503524 -27.7470854999827, 152.948535360195 -27.7478542384934, 152.94739572 -27.7478035199826, 152.9471574 -27.7479611099826, 152.94605184 -27.7476701399826, 152.9441478 -27.7457898599826, 152.94309624 -27.7451774099826, 152.941554906769 -27.7448023370258, 152.941071448579 -27.7464403555462, 152.941825 -27.7466149999833, 152.941819 -27.7468369999833, 152.942345 -27.7468489999832, 152.942859 -27.7472129999833, 152.94324 -27.7475959999833, 152.943483 -27.7479259999833, 152.943675 -27.7482629999833, 152.943926 -27.7486319999832, 152.944266 -27.7490429999833, 152.945062 -27.7497149999833, 152.945346 -27.7498489999833, 152.94564 -27.7491879999833, 152.945684 -27.7491739999833, 152.946124 -27.7494239999833, 152.945997 -27.7497319999833, 152.94567 -27.7503429999833, 152.945288417462 -27.7509761775147, 152.94579012 -27.7512297299827, 152.94603348 -27.7513226099827, 152.94653712 -27.7516403999826, 152.94677720825 -27.7513288364134, 152.94699648 -27.7510060799826, 152.947199294295 -27.7506664379592, 152.9473788 -27.7503157799826, 152.947737 -27.7503795899826, 152.948161815013 -27.7504160130004, 152.948566793608 -27.750403359811, 152.94931704 -27.7503007499827, 152.95010544 -27.7501527899827, 152.95045356 -27.7501476599826, 152.95048567432 -27.7495956847837, 152.9503524 -27.7470854999827))\n304\tTeneriffe\tUnder construction\tPOLYGON ((149.71105729101944 -34.7266547867358, 149.71214090345927 -34.725817090894132, 149.71290265082629 -34.72513811014052, 149.71619640349655 -34.72513811014052, 149.71699033736547 -34.719238679019504, 149.7142222976552 -34.719062306885654, 149.71381460188977 -34.721513845821171, 149.71216236113915 -34.721866579253991, 149.71105729101944 -34.7266547867358))\n17355158\tMulcahys Road\tCheck with carrier\tPOLYGON ((144.305286016 -37.389870007, 144.301134016 -37.391763001, 144.304863008 -37.3969689935, 144.306048 -37.396428997, 144.305232992 -37.3952910065, 144.308210016 -37.393941006, 144.305286016 -37.389870007))\nAYCA-G3LBH\tParklands\tReady for service\tPOLYGON ((152.288441837448 -24.9399487796629, 152.28817513162 -24.9425001535266, 152.294878145861 -24.9397478313031, 152.293951546323 -24.9379605380704, 152.295240157652 -24.9373946333853, 152.294560752871 -24.936065948286, 152.288630298248 -24.9383792466263, 152.288441837448 -24.9399487796629))\n38\tCentral Walk\tReady for service\tPOLYGON ((152.9088333969901 -27.697382894156359, 152.90984190757723 -27.697553884496916, 152.91055001076248 -27.697439890965789, 152.911193740926 -27.69704091266922, 152.91295327004016 -27.695102997340452, 152.914283645709 -27.693678037648464, 152.91473425682528 -27.693127048247163, 152.91490591820161 -27.692842052638117, 152.91499174888529 -27.692785053427038, 152.91589297111778 -27.690695061801925, 152.915828598105 -27.690543060850796, 152.91473425682528 -27.690239058312084, 152.91183747108946 -27.690790062289498, 152.91162289436232 -27.690790062289498, 152.91042126472797 -27.690581061108013, 152.91022814568069 -27.691360063477426, 152.91076458748063 -27.692196059836668, 152.91089333351516 -27.692405057925587, 152.91108645256239 -27.693830034235464, 152.91076458748063 -27.694514016256687, 152.91039980705705 -27.694951002525976, 152.910163772659 -27.695216993312222, 152.9088333969901 -27.697382894156359))\n170\tWaratah\tReady for service\tPOLYGON ((144.90365844136687 -37.5356296673782, 144.90258555775802 -37.539492060768424, 144.90895848638033 -37.540053537424676, 144.90955930120202 -37.536344310313453, 144.90365844136687 -37.5356296673782))\n17335030\tGlenview Park Estate Stage 1\tCheck with carrier\tPOLYGON ((152.720484128 -31.453299002, 152.71999488 -31.45326696, 152.720003872 -31.4537779855, 152.719687072 -31.453795986, 152.719770976 -31.453998024500002, 152.719634176 -31.454217989500002, 152.71975296 -31.454506978, 152.718522848 -31.454336963, 152.718666848 -31.453887968, 152.71740288 -31.4536860035, 152.715392992 -31.462711025, 152.715735008 -31.462721015, 152.715980896 -31.4627030145, 152.71625808 -31.4625779915, 152.71647408 -31.462427975, 152.716744096 -31.462145017500003, 152.717250976 -31.46159196, 152.717624992 -31.461175987500003, 152.717874848 -31.460886000000002, 152.718090112 -31.460810039000002, 152.718355072 -31.460735965, 152.718612128 -31.4606729725, 152.718825952 -31.460601951, 152.719003072 -31.4604369865, 152.71911216 -31.4602370015, 152.719355872 -31.458780996, 152.719381088 -31.458583971, 152.719412032 -31.458329004, 152.719395136 -31.458006993, 152.719146016 -31.456960022500002, 152.719018912 -31.4568729985, 152.71906608 -31.4565499885, 152.719103872 -31.4563789745, 152.719254016 -31.4561379565, 152.719355872 -31.456053985, 152.719630912 -31.455906022, 152.719980832 -31.455710014500003, 152.72019216 -31.455539019, 152.720340832 -31.4553860055, 152.720502112 -31.4551819875, 152.720552896 -31.455096036500002, 152.720632096 -31.4549150325, 152.720703008 -31.454684004500002, 152.720727136 -31.4544629665, 152.72072496 -31.4542739705, 152.72067888 -31.453993973, 152.72053488 -31.453556041000002, 152.720484128 -31.453299002))\nAYAA-H5ANY\tFreeway Business Park\tReady for service\tPOLYGON ((151.625651039999 -32.8086195300159, 151.623323619146 -32.8132851741578, 151.6245000239 -32.8137146262431, 151.6247872793 -32.8136767574153, 151.62467021099 -32.8137700075646, 151.624272326446 -32.8139769275337, 151.624150508049 -32.8143225392098, 151.623006113841 -32.8139632559037, 151.622667568345 -32.8144901031541, 151.622390178698 -32.8159386132717, 151.628148508135 -32.8152431288012, 151.627358322492 -32.8147125515763, 151.627215301027 -32.8143338660223, 151.62712648618 -32.8140980261941, 151.627349112895 -32.8127848073229, 151.626820477606 -32.8125128377644, 151.626873715355 -32.8124088367098, 151.626355559055 -32.8111873541852, 151.627406687331 -32.808723180885, 151.626535440947 -32.8085786764784, 151.625651039999 -32.8086195300159), (151.624854605095 -32.8102162438369, 151.625792956065 -32.8105567366861, 151.625664310874 -32.8108655200671, 151.624706635455 -32.8105166473681, 151.624854605095 -32.8102162438369), (151.625033944844 -32.8098597420961, 151.625947580977 -32.8101931421591, 151.625792847261 -32.8105566972025, 151.624854623993 -32.8102161954665, 151.625033944844 -32.8098597420961))\nAYCA-1D96QN\tO\u0027Malley\tReady for service\tPOLYGON ((149.117269000008 -35.351972000021, 149.117384000008 -35.3519170000211, 149.117488000008 -35.351848000021, 149.117575000008 -35.351769000021, 149.117610000008 -35.351704000021, 149.117613000008 -35.3516710000209, 149.117602000023 -35.3516240000114, 149.117329000007 -35.351165000021, 149.117306000008 -35.351138000021, 149.117259000007 -35.351105000021, 149.117199000008 -35.351085000021, 149.117145000015 -35.3510810000162, 149.116881000015 -35.3511440000162, 149.116716000015 -35.3511720000161, 149.116617479498 -35.351178571301, 149.116494960022 -35.3511390600113, 149.116429082007 -35.3511053195478, 149.116374720008 -35.350913340021, 149.116368600007 -35.350892460021, 149.116365360007 -35.3508814800211, 149.116361400007 -35.350869060021, 149.116357440023 -35.3508566400114, 149.116353480007 -35.350844220021, 149.116349880007 -35.350833240021, 149.116345920008 -35.3508209100211, 149.116341960008 -35.350809840021, 149.116337640008 -35.350797600021, 149.116332240007 -35.350782570021, 149.116326840007 -35.350767540021, 149.116321080007 -35.350752510021, 149.116315320007 -35.350737570021, 149.116309560008 -35.3507227200211, 149.116304160007 -35.350709220021, 149.116298040007 -35.350694370021, 149.116291920007 -35.3506796100211, 149.116285440008 -35.3506647600211, 149.116278960023 -35.3506500900114, 149.116272120007 -35.350635330021, 149.116265640007 -35.3506207500211, 149.116258440007 -35.350606080021, 149.116251600007 -35.350591500021, 149.116244400008 -35.3505770100211, 149.116237920007 -35.3505638700209, 149.116230720007 -35.350549380021, 149.116222440008 -35.350533630021, 149.116214880008 -35.3505192300211, 149.116206240008 -35.3505036600211, 149.116197600007 -35.350488090021, 149.116189680007 -35.350473870021, 149.116180680007 -35.350458390021, 149.116172040022 -35.3504430000114, 149.115678120008 -35.349615720021, 149.115341160023 -35.3494989900114, 149.115107520007 -35.349314220021, 149.115095640007 -35.349310350021, 149.114057760007 -35.349757380021, 149.113861665079 -35.3498237604394, 149.113729000007 -35.349588000021, 149.113623000007 -35.3494260000211, 149.113507000008 -35.349266000021, 149.113272000008 -35.3489800000211, 149.113287000008 -35.348738940021, 149.113437840023 -35.3484215100115, 149.113367000015 -35.3483170000162, 149.113358000015 -35.3482560000162, 149.113311000015 -35.3481410000163, 149.113163000015 -35.3479360000162, 149.113063000015 -35.3478420000162, 149.112932000015 -35.3477610000162, 149.112758000015 -35.3476790000163, 149.112642000015 -35.3475900000162, 149.112586000015 -35.3475260000164, 149.112538000015 -35.3474500000163, 149.112488000015 -35.3473120000161, 149.112476033146 -35.347219382406, 149.112747541317 -35.3471990809871, 149.112729428656 -35.3470524384002, 149.112456593613 -35.3470689294327, 149.112392000015 -35.3465690000163, 149.112360000015 -35.3464860000162, 149.112314000008 -35.3464150000211, 149.112197000007 -35.346310000021, 149.112090000007 -35.346249000021, 149.111971000007 -35.346204000021, 149.111859000007 -35.3461810000211, 149.111665000007 -35.346165000021, 149.111534000007 -35.3461650000211, 149.111305000007 -35.3461860000211, 149.111148000007 -35.3462160000211, 149.111024000007 -35.346250000021, 149.110709000007 -35.3463660000211, 149.110376000007 -35.3465070000211, 149.109976000007 -35.3467010000211, 149.109708000007 -35.3468480000212, 149.109459000007 -35.3469980000211, 149.109184000007 -35.3471810000211, 149.109138000007 -35.3472230000211, 149.109061000007 -35.3473530000211, 149.109003000007 -35.3474120000211, 149.107968000007 -35.3480380000211, 149.107812000007 -35.3480990000211, 149.107746000007 -35.3481140000211, 149.107579000007 -35.3481350000211, 149.107506000036 -35.3481530000054, 149.107407000015 -35.3481920000163, 149.107291000015 -35.3482530000164, 149.107267000015 -35.3482700000164, 149.107215000015 -35.3483410000163, 149.107205880015 -35.3484365400164, 149.107528800022 -35.3487942900116, 149.107839120007 -35.3486062800211, 149.107934520007 -35.3485485900212, 149.108378760007 -35.3482790400211, 149.108769000007 -35.3480426100211, 149.108769720007 -35.3480421600211, 149.109126840007 -35.3478258900211, 149.109168240015 -35.3478038400169, 149.109498360006 -35.3482062300194, 149.109545520015 -35.3481839100164, 149.1096858921 -35.3483684870293, 149.109734160015 -35.3483426700164, 149.109773040007 -35.3483208900211, 149.109802920007 -35.3483028900211, 149.109857640007 -35.3482668900211, 149.109899760015 -35.3482360200166, 149.110188840015 -35.3480147100165, 149.110271640015 -35.3479612500164, 149.110325280033 -35.3479352400073, 149.110385400022 -35.3479122900117, 149.110437960015 -35.3478969900164, 149.110448040007 -35.3478945600211, 149.110459200007 -35.3478920400212, 149.110469280007 -35.3478898800211, 149.110480800007 -35.3478877200212, 149.110490880007 -35.3478858300211, 149.110498080007 -35.3478845700211, 149.110506720007 -35.3478833100211, 149.110515000007 -35.3478820500212, 149.110522200007 -35.3478810600212, 149.110979760025 -35.3478213000188, 149.111161200007 -35.3483211600211, 149.111354520014 -35.3488539600148, 149.110977732772 -35.3490306402668, 149.111168760015 -35.3492547300163, 149.111631720015 -35.3499099300164, 149.111677440022 -35.3501782200116, 149.113036440015 -35.3502005400162, 149.113284840007 -35.350092000021, 149.113650600007 -35.349932250021, 149.113773720008 -35.3498784300211, 149.113895000008 -35.349883000021, 149.113985000007 -35.350092000021, 149.114112000008 -35.350442000021, 149.114139000007 -35.3505500000211, 149.114151000007 -35.3506580000211, 149.114143000008 -35.350912000021, 149.114152000007 -35.351043000021, 149.114172000008 -35.3511610000211, 149.114226000007 -35.351371000021, 149.114225000007 -35.351561000021, 149.114217000008 -35.351580000021, 149.114053080007 -35.351586720021, 149.114062000007 -35.3516960000211, 149.113789000008 -35.3517650000211, 149.113507000008 -35.3518110000211, 149.113243000007 -35.351831000021, 149.112642000008 -35.351850000021, 149.112600000007 -35.351861000021, 149.112567000007 -35.351881000021, 149.112533000007 -35.351922000021, 149.112523000015 -35.3519680000162, 149.112532000015 -35.3520540000162, 149.112572000015 -35.3522140000162, 149.112660000015 -35.3524020000162, 149.112784000022 -35.3526010000115, 149.112829000007 -35.3526500000211, 149.112900000007 -35.3526960000211, 149.112973000007 -35.352722000021, 149.113316000007 -35.3527800000211, 149.113435000007 -35.3528120000211, 149.113551000008 -35.352859000021, 149.113717000008 -35.352945000021, 149.113834000023 -35.3529860000115, 149.113965000007 -35.353014000021, 149.114069000007 -35.353024000021, 149.114157000007 -35.3530250000211, 149.114286000007 -35.353013000021, 149.114514000008 -35.3529580000211, 149.114696000007 -35.352890000021, 149.114962000007 -35.352753000021, 149.115862000007 -35.352275000021, 149.116074000007 -35.352181000021, 149.116255000007 -35.352124000021, 149.116454000007 -35.352083000021, 149.116594000023 -35.3520660000114, 149.116982000007 -35.352037000021, 149.117146000023 -35.3520110000114, 149.117269000008 -35.351972000021))\nAYCA-EGT1A\tKrystal Park Estate\tContracted\tPOLYGON ((120.134017439686 -33.9109884902099, 120.133781279961 -33.9108938999961, 120.13337951996 -33.9108179399961, 120.13303931996 -33.9108110999961, 120.13371719996 -33.9119984699961, 120.13661961488 -33.9170874375212, 120.137671156919 -33.9175230748263, 120.139850558926 -33.9138032018392, 120.135864428957 -33.9115618463849, 120.135614083648 -33.9118498753204, 120.134254873869 -33.9110924108619, 120.134017439686 -33.9109884902099))\n10542\tMurray-Murray River Country Estate\tReady for service\tPOLYGON ((115.8599978685379 -32.607827868144106, 115.85984498262405 -32.607565773189165, 115.85967868566513 -32.607638075322306, 115.85952043533325 -32.607656150846474, 115.85937827825546 -32.607665188607186, 115.85934340953827 -32.607694561323221, 115.85930585861206 -32.607897910631507, 115.85936486721039 -32.608171301751689, 115.85933268070221 -32.608239084544962, 115.85923880338669 -32.608747453859216, 115.85918247699738 -32.609093143344658, 115.85910737514496 -32.609438831495765, 115.85883378982544 -32.609411718747836, 115.85847169160843 -32.609362012021954, 115.85808008909225 -32.609278414284383, 115.85789501667023 -32.609233226285639, 115.8574578166008 -32.609050214657586, 115.85720837116241 -32.608896574977358, 115.85702866315842 -32.608772307396158, 115.8566826581955 -32.608442432616926, 115.85647344589233 -32.60807640575495, 115.85640102624893 -32.607841424758853, 115.85633665323257 -32.607595145937793, 115.85610061883926 -32.607629037558866, 115.85599333047867 -32.60807640575495, 115.85558295249939 -32.609507072269054, 115.85611402988434 -32.609620041877726, 115.85629105567932 -32.609665229681291, 115.85631787776947 -32.609561297698995, 115.85637152194977 -32.60948899711844, 115.85647881031036 -32.609421215271155, 115.85663437843323 -32.609380546138169, 115.85675776004791 -32.609394102517882, 115.85689187049866 -32.609479959541765, 115.85649490356445 -32.610925960208732, 115.85657000541687 -32.6110163344752, 115.8581417798996 -32.610966628639936, 115.85822224617004 -32.610962109926263, 115.85827052593231 -32.611423017545654, 115.8582866191864 -32.611567615525644, 115.85844218730927 -32.611572134208764, 115.85845291614532 -32.612105337215141, 115.86320042610168 -32.612055631984326, 115.86331844329834 -32.611838736108794, 115.86365103721619 -32.611319087603334, 115.86392998695374 -32.610989222204836, 115.86393535137177 -32.610831067130796, 115.86367249488831 -32.610514756144767, 115.86331844329834 -32.610343043998768, 115.86303412914276 -32.61024815030315, 115.86265861988068 -32.610209281985853, 115.8626988530159 -32.609953972147188, 115.8627524971962 -32.609644436233886, 115.8619236946106 -32.609447869076604, 115.86147308349609 -32.609258079687777, 115.86111098527908 -32.6090750681105, 115.86055308580399 -32.608792642103055, 115.86037069559097 -32.608702265592584, 115.8599790930748 -32.608573478907559, 115.85967600345612 -32.608521512298012, 115.85975378751755 -32.608123853765889, 115.85979670286179 -32.607904688933829, 115.8599978685379 -32.607827868144106))\n17399839\tGOLDEN VALLEY PLACE\tCheck with carrier\tPOLYGON ((153.00147056 -26.5433651285, 153.001189184 -26.5433263155, 153.000523616 -26.543234666500002, 152.999525088 -26.543097156, 152.999326528 -26.5430697945, 152.997823168 -26.542862761000002, 152.99660384 -26.542694818, 152.996558304 -26.5429640115, 152.99715728 -26.543045985, 152.997103872 -26.543360152, 152.99658096 -26.544460384, 152.993698592 -26.5469600485, 152.994594624 -26.547082500000002, 152.999189568 -26.547710723, 152.999160032 -26.5455362145, 153.001176384 -26.544527317, 153.00120064 -26.5443775595, 153.001300384 -26.544390990500002, 153.001315296 -26.5443014505, 153.00147056 -26.5433651285))\nAYCA-FWZJ8\tGrantham Rebuild Project\tReady for service\tPOLYGON ((152.190239281867 -27.563568564007, 152.189800720717 -27.5621391335632, 152.191011874636 -27.5616347122847, 152.190856824491 -27.5613733332842, 152.192157325277 -27.5609496953363, 152.192464749874 -27.560816017647, 152.193551192857 -27.5601790092941, 152.196057019745 -27.5616609805369, 152.197354263678 -27.5637359644543, 152.198993996425 -27.5664222900217, 152.197881095402 -27.5665897948387, 152.197279577962 -27.5668835401698, 152.197688563379 -27.567543884024, 152.19877135546 -27.5684538478778, 152.199984392038 -27.5684274199895, 152.200010403959 -27.5680643912891, 152.1995977019 -27.5664045589576, 152.199068569796 -27.5663910236108, 152.196153265739 -27.5616413909312, 152.194543333553 -27.5606290267603, 152.193471309363 -27.5600817258179, 152.192727209033 -27.5596892717923, 152.191917741281 -27.5602088567059, 152.191841974931 -27.5595976241688, 152.192018371514 -27.5590228427348, 152.188723799991 -27.5585633100324, 152.187864913466 -27.5636794134442, 152.189393143717 -27.5638433017599, 152.190239281867 -27.563568564007))\n51\tBellaview\tReady for service\tPOLYGON ((144.538409178 -38.172782464, 144.542848598 -38.173391775, 144.543662712 -38.168996938, 144.539206303 -38.168561956, 144.538409178 -38.172782464))\nAYCA-ISJ9I\tHarrington Grove\tReady for service\tPOLYGON ((150.755048319874 -34.0211317989616, 150.754786534884 -34.0212118767349, 150.754339637233 -34.0218807884444, 150.753497534043 -34.0227418022734, 150.753350636364 -34.0226324734695, 150.753192436296 -34.0227187591474, 150.753261343029 -34.0227675080129, 150.75289144218 -34.0231267806564, 150.752331664301 -34.0236214392139, 150.75243694707 -34.0243865886029, 150.752446838494 -34.0244548084856, 150.752488706237 -34.0244512797502, 150.752480946211 -34.0243823695586, 150.753936818267 -34.0240986178118, 150.75439858067 -34.0240132867023, 150.754700174076 -34.0239837389303, 150.755210345566 -34.0241262278851, 150.756198605471 -34.0247530379435, 150.756286176328 -34.0246661688251, 150.756873812055 -34.025012427486, 150.756977725302 -34.0248755092362, 150.757943019048 -34.0238972241635, 150.759234261973 -34.0224828342623, 150.760376174851 -34.0204081528703, 150.758680128932 -34.0200994937357, 150.758597782112 -34.0214120538742, 150.758411587086 -34.0216754982765, 150.757520690182 -34.0214150368541, 150.756991079007 -34.0214521830264, 150.756250619312 -34.0215219118648, 150.755821996664 -34.0214206604217, 150.755048319874 -34.0211317989616))\nACNC\tNewcastle\tReady for service\tPOLYGON ((151.69733047485352 -32.884942742051216, 151.69696569442749 -32.887915884943787, 151.70054912567139 -32.888168147022263, 151.70048475265503 -32.887645603348474, 151.70404672622681 -32.887933903687511, 151.7056131362915 -32.886420316442653, 151.69733047485352 -32.884942742051216))\nAYCA-G07X9\tLot 502 Jane Brook Drive\tContracted\tPOLYGON ((116.062230625921 -31.8562302562125, 116.062522009928 -31.8574419140419, 116.063059079202 -31.8573268459721, 116.062882826152 -31.86207556273, 116.06116896932 -31.8620485518722, 116.06121367394 -31.8631955500188, 116.064181 -31.8632390000114, 116.064625547931 -31.8631925951221, 116.064929933551 -31.8538234060927, 116.06357025619 -31.8555172324367, 116.062137025318 -31.8560565282265, 116.062230625921 -31.8562302562125))\n17350846\tCountry Hills Estate\tCheck with carrier\tPOLYGON ((152.590619168 -27.568049751500002, 152.589957472 -27.5681173505, 152.58897792 -27.567971903500002, 152.589198592 -27.566784629, 152.589314176 -27.566163547000002, 152.5890528 -27.566125104, 152.587806848 -27.5659414175, 152.587476736 -27.565892818000002, 152.587149472 -27.565844496, 152.586600128 -27.565763577000002, 152.585997472 -27.565674758500002, 152.58452112 -27.565917386000002, 152.583973216 -27.568834466000002, 152.588226592 -27.569465464, 152.589694688 -27.569683172, 152.589952448 -27.568300685500002, 152.590584256 -27.568236065, 152.590619168 -27.568049751500002))\n207\tYarraBend\tReady for service\tPOLYGON ((145.02525959964044 -37.781985196862017, 145.02937947269047 -37.781137240926796, 145.02936874385949 -37.781467944899276, 145.02917562480326 -37.782816184240758, 145.02869282717614 -37.786078567303868, 145.02869282717614 -37.786455883668914, 145.02729271407904 -37.786544913091788, 145.02575849052297 -37.786366854138066, 145.02549026961404 -37.786036172085794, 145.02534006590861 -37.784755825056962, 145.02559755797762 -37.7831023639555, 145.02525959964044 -37.781985196862017))\n58\tSpires\tReady for service\tPOLYGON ((115.80864 -32.30285, 115.80465 -32.30281, 115.80473 -32.30774, 115.80679 -32.30785, 115.80671 -32.30655, 115.80877 -32.30651, 115.80864 -32.30285))\n17357158\tHuntington Downs\tCheck with carrier\tPOLYGON ((153.28360512 -27.922871963000002, 153.283521952 -27.922300017, 153.28337616 -27.9224919915, 153.283354912 -27.9230499885, 153.282987008 -27.923560015, 153.282270976 -27.9237680105, 153.282666976 -27.9240100275, 153.282978016 -27.924451012000002, 153.282411008 -27.925023957, 153.281811968 -27.9245570355, 153.281403008 -27.925272005, 153.28167408 -27.925393957, 153.281554912 -27.925892014000002, 153.281094112 -27.9270070275, 153.281271968 -27.927134992, 153.280613888 -27.928153972, 153.280793152 -27.928128960000002, 153.281012032 -27.9293779875, 153.281400128 -27.9293630395, 153.281466016 -27.930347998000002, 153.281968928 -27.9303920095, 153.281838976 -27.9311820335, 153.281871008 -27.9313710295, 153.281693152 -27.9321550225, 153.284486048 -27.932534994, 153.284874112 -27.931758031, 153.283766048 -27.930308038, 153.283407136 -27.929688029, 153.283071968 -27.928908994, 153.282929056 -27.9279140455, 153.282849856 -27.926588964500002, 153.282506048 -27.926197023500002, 153.28263312 -27.925920985, 153.282859936 -27.9258900345, 153.28333008 -27.924586025, 153.28427184 -27.923991028, 153.28414512 -27.9235950355, 153.284393888 -27.9233540175, 153.28360512 -27.922871963000002))\n17325574\tDarling Downs Lot 102 Keenan Street\tCheck with carrier\tPOLYGON ((116.00267616 -32.1866129725, 116.002544032 -32.187018955, 116.003152064 -32.187153968000004, 116.003364128 -32.187335046, 116.00349984 -32.188462029, 116.00426304 -32.189300005, 116.005025888 -32.189247002500004, 116.005206944 -32.189124958, 116.006479904 -32.18949999, 116.007347872 -32.1915320115, 116.008027904 -32.191779967, 116.00823312 -32.1910880485, 116.008388992 -32.1904909795, 116.008463168 -32.190139979, 116.008521824 -32.189786999, 116.008567904 -32.1894330385, 116.008599968 -32.1890769875, 116.008617952 -32.188719956, 116.008612928 -32.1866180045, 116.00267616 -32.1866129725))\n17331436\tSt Andrews - stage 2\tCheck with carrier\tPOLYGON ((152.565019936 -26.0649970125, 152.566278112 -26.064960031000002, 152.566521856 -26.063525966500002, 152.565954112 -26.063350013, 152.565737056 -26.0631839755, 152.565615008 -26.0631540055, 152.564753152 -26.063126015, 152.564729056 -26.063031961, 152.564658848 -26.0627550345, 152.56465488 -26.062628032, 152.564645888 -26.062224029, 152.56463904 -26.061937020000002, 152.564572096 -26.061840986500002, 152.564277952 -26.0614199635, 152.563884128 -26.0608490165, 152.563852096 -26.0606719715, 152.56372896 -26.0606829605, 152.563195072 -26.060697002, 152.56315008 -26.0606829605, 152.563128832 -26.06064498, 152.562929056 -26.060661001, 152.562932992 -26.060706992, 152.562935872 -26.060807965000002, 152.561899072 -26.060880966, 152.561886112 -26.060740014500002, 152.561436128 -26.060778994, 152.560994048 -26.060748025000002, 152.560572832 -26.0607189615, 152.560167136 -26.060689972000002, 152.559339136 -26.06063499, 152.559160928 -26.0612080275, 152.558751968 -26.061002992000002, 152.558849152 -26.062082004500002, 152.558803072 -26.062612011000002, 152.55895392 -26.0631269955, 152.559001088 -26.063287020500002, 152.55911088 -26.0635889775, 152.559191872 -26.063814955, 152.563070176 -26.06366196, 152.56327104 -26.0636560215, 152.56328112 -26.063889029000002, 152.563820032 -26.063870048000002, 152.564355008 -26.063850956, 152.56489392 -26.063831975, 152.565017056 -26.0646640125, 152.565012 -26.0648180065, 152.565019936 -26.0649970125))\n195\tHighland Views \tReady for service\tPOLYGON ((150.68084751128293 -33.807140119426315, 150.68273578642265 -33.810171081520863, 150.68376575468963 -33.8105989734025, 150.68638359068552 -33.810848576011324, 150.68728481291802 -33.810848576011324, 150.68831478117602 -33.81042068537807, 150.68878684996321 -33.808851734746952, 150.68882976530503 -33.808209883014214, 150.68449531553682 -33.807675002892125, 150.68084751128293 -33.807140119426315))\n10564\tSecret Harbour\tReady for service\tPOLYGON ((115.74870228767395 -32.406905705934577, 115.74997901916504 -32.404858583096093, 115.75016140937805 -32.404242625545209, 115.7498824596405 -32.402693654894534, 115.74950695037842 -32.402548720608365, 115.74921727180481 -32.4026483629551, 115.7470178604126 -32.399867394343453, 115.74654579162598 -32.400456205921287, 115.74551582336426 -32.402240734477644, 115.74638485908508 -32.404858583096093, 115.74681401252747 -32.405556059366113, 115.7474148273468 -32.406615850655079, 115.74870228767395 -32.406905705934577))\nAYCA-H18JF\tThe Key Industrial Estate\tReady for service\tPOLYGON ((145.18197712273 -38.0188635264808, 145.182505978388 -38.0187911196923, 145.18260876956 -38.0192708227462, 145.18267609641 -38.0192615651913, 145.18272281427 -38.0194767751231, 145.182981369548 -38.0194412978916, 145.183616623651 -38.0186372896451, 145.184074075794 -38.0204209587416, 145.182017929499 -38.020716285649, 145.182251422076 -38.0217803042007, 145.186707095885 -38.0211596406549, 145.186257033726 -38.0186884201697, 145.186383438778 -38.0161552179387, 145.186465884206 -38.0155279267727, 145.185081882605 -38.0153514072288, 145.18507281913 -38.0153958832113, 145.184994681276 -38.0153859167744, 145.184988702664 -38.015476226807, 145.184779071297 -38.0153762558762, 145.18197712273 -38.0188635264808))\nACDU\tDurack\tReady for service\tPOLYGON ((152.98293471336365 -27.578192809613444, 152.98768758773804 -27.577270352798759, 152.98868536949158 -27.581026700584395, 152.98387885093689 -27.581939616311764, 152.98293471336365 -27.578192809613444))\nAYCA-19PQFS\tRedbank Motorway Estate\tContracted\tPOLYGON ((152.873819345554 -27.5852564442896, 152.8739019815 -27.5852654991441, 152.874136456738 -27.5852943730481, 152.875326780988 -27.5854563714505, 152.875487511661 -27.5854867516755, 152.875648144462 -27.5855342035491, 152.876325799075 -27.5858650076581, 152.876345044432 -27.5859044755358, 152.876350637508 -27.5859439645202, 152.875841829336 -27.5889336804285, 152.877504273637 -27.589193789068, 152.878808847333 -27.5892470289336, 152.879564721943 -27.588935696155, 152.880297191982 -27.5889687595109, 152.880498097043 -27.5887013815061, 152.880626278643 -27.588719669272, 152.880685560268 -27.58873057706, 152.880399881367 -27.5903837850372, 152.880034269261 -27.5922651414871, 152.880267598902 -27.5922953005381, 152.880575002156 -27.5905599116427, 152.881233910173 -27.5867761947248, 152.88102684 -27.5867509499813, 152.879369319156 -27.5865053545199, 152.878025907877 -27.5863138224179, 152.878326600674 -27.5845805884629, 152.875624434422 -27.5842084190592, 152.875443186086 -27.5852531097134, 152.874205804369 -27.5851023866874, 152.874149019597 -27.5850789480709, 152.874115824372 -27.5850355848825, 152.874124875895 -27.584964094179, 152.873869186523 -27.5849290230346, 152.873819345554 -27.5852564442896))\nAYCA-1JBB7K\tThe Fairways\tContracted\tPOLYGON ((152.479575 -27.5314779999815, 152.477638 -27.5311849999815, 152.477484 -27.5311019999814, 152.477326 -27.5311169999815, 152.476955 -27.5314719999815, 152.476748 -27.5315729999815, 152.477118462835 -27.5325019783714, 152.481552467475 -27.5331624827076, 152.482319 -27.5290169999815, 152.481605 -27.5290499999815, 152.481515 -27.5281339999814, 152.481467 -27.5279979999815, 152.481455 -27.5279429999814, 152.481273 -27.5270719999814, 152.478934 -27.5274539999814, 152.47879 -27.5273799999815, 152.47829 -27.5281619999815, 152.478223 -27.5281109999814, 152.478172 -27.5281759999815, 152.478243 -27.5282279999814, 152.478159 -27.5283479999814, 152.478269 -27.5284229999815, 152.477848 -27.5292069999815, 152.478203 -27.5294579999815, 152.479989 -27.5293229999815, 152.479575 -27.5314779999815))\n126\tPark Edge\tReady for service\tPOLYGON ((152.91510616302708 -27.693434833927977, 152.91656260252267 -27.694831297718888, 152.91713659524893 -27.695377528695218, 152.91754965543885 -27.695016541574045, 152.91845087767135 -27.69579076248753, 152.91931454896854 -27.694983292700051, 152.91912142992126 -27.694593805138069, 152.91940037966117 -27.693164088880014, 152.9195452189511 -27.692418349048868, 152.91969005823208 -27.691696354040211, 152.9197276091584 -27.691506354560435, 152.91974370241385 -27.691449354651962, 152.91973833799838 -27.691416104691452, 152.91971688032746 -27.691397104709036, 152.91964177847476 -27.691363854733424, 152.91955594778207 -27.691316354749205, 152.91938428640574 -27.691235604729656, 152.91913752317672 -27.690836603755731, 152.91875664949765 -27.69014784864325, 152.91742627382882 -27.689839094941181, 152.91693274737071 -27.689881845505472, 152.91631583929359 -27.689848595068376, 152.91623537302542 -27.690157348743575, 152.91619782209909 -27.690485101689323, 152.91618709325911 -27.690660852863978, 152.91609589815099 -27.690817603673242, 152.91598860979641 -27.69113585462328, 152.91577135086146 -27.691724853934485, 152.91549776554604 -27.692375599477828, 152.91523222685382 -27.692855343707404, 152.91520540475844 -27.692964592099511, 152.91522954463707 -27.693031091067127, 152.9151973581352 -27.693107089837874, 152.91513298511344 -27.693145089202613, 152.91504983663754 -27.693149839121673, 152.91493718385846 -27.693268587047843, 152.91510616302708 -27.693434833927977))\n240\tWandana\tContracted\tPOLYGON ((144.293338403687 -38.172482021397926, 144.29355298040514 -38.172195247312018, 144.29655705450452 -38.172009687007552, 144.29870282171322 -38.171739780267373, 144.29926072119304 -38.17246515236549, 144.29844532965319 -38.172600104517748, 144.29818783758418 -38.173713450237223, 144.29947529791121 -38.173966480983317, 144.29990445135655 -38.174152036305671, 144.29951821325307 -38.174506276972359, 144.29917489050038 -38.17489425286923, 144.29926072119304 -38.175467778673578, 144.29891739844038 -38.176058168168247, 144.2979303455152 -38.176935309443607, 144.29784451483155 -38.1772558007371, 144.29323111532338 -38.172616973518949, 144.293338403687 -38.172482021397926))\nAYCA-IQRNE\tJimboomba Woods\tReady for service\tPOLYGON ((153.02928854703 -27.8694558108568, 153.028954060229 -27.8713069646716, 153.029344906502 -27.8711451557373, 153.029613012585 -27.8711927032893, 153.029928811219 -27.8714296646998, 153.030183755476 -27.8718369597671, 153.030651652724 -27.8722339342381, 153.031423054635 -27.8725280043284, 153.031946451666 -27.8725309549276, 153.032739909993 -27.8729322419019, 153.034045392171 -27.8727867518589, 153.034983650602 -27.873041792578, 153.035562482193 -27.8730331302099, 153.035790000005 -27.8731499999935, 153.035865825004 -27.8735044525422, 153.036377761487 -27.8740990751319, 153.036855195206 -27.8740165505321, 153.037659044946 -27.8735792094477, 153.033925304254 -27.8700727989356, 153.02928854703 -27.8694558108568))\n17351673\tHighlands Estate\tCheck with carrier\tPOLYGON ((146.108255776 -37.0380393935, 146.107436768 -37.040408818, 146.106875168 -37.0402010075, 146.10681504 -37.040374796500004, 146.106706688 -37.0403508575, 146.106486368 -37.041037207500004, 146.107841408 -37.041520945500004, 146.107772288 -37.041586824, 146.10929904 -37.0417009505, 146.113832896 -37.0423742395, 146.11415904 -37.040941618, 146.11210416 -37.040652981, 146.112360128 -37.039631485, 146.11239504 -37.039209759, 146.11147776 -37.0388929465, 146.110604768 -37.038400199, 146.110463648 -37.0389774545, 146.110172416 -37.0388929465, 146.109334688 -37.0385339355, 146.109475808 -37.0383720235, 146.109194656 -37.038297339, 146.108585888 -37.038079076, 146.108255776 -37.0380393935))\n17348813\tPaynters Creek Road Rosemount\tCheck with carrier\tPOLYGON ((153.012338656 -26.6289672555, 153.011788192 -26.628486662500002, 153.011891168 -26.6278425295, 153.009634336 -26.6271808585, 153.008184608 -26.626755599, 153.00804096 -26.627716896000003, 153.0075312 -26.631126816000002, 153.007523296 -26.6311787455, 153.008326432 -26.632300049, 153.00877104 -26.632355401, 153.009260288 -26.631585634500002, 153.009394912 -26.631622523500003, 153.01037808 -26.6318913655, 153.010973152 -26.632054073000003, 153.011213632 -26.632066764, 153.01152576 -26.630119269, 153.011545568 -26.629993617, 153.011642752 -26.629390702000002, 153.012042368 -26.629442465, 153.012079456 -26.629210179, 153.012338656 -26.6289672555))\n132\tThe Sanctuary\tReady for service\tPOLYGON ((152.91255538226966 -27.682922783188548, 152.91288261176689 -27.68416262129697, 152.91306500198317 -27.684908417517214, 152.91325812103042 -27.685905971377569, 152.913365409394 -27.686399994677505, 152.91347806217308 -27.687307281646433, 152.91345660449318 -27.687820299213865, 152.91310791732502 -27.688347564757951, 152.9122496104433 -27.688984080130446, 152.91126255751817 -27.689535090440689, 152.91037206412565 -27.689976846699079, 152.91030769111285 -27.690290350055889, 152.91024331810007 -27.690347350569496, 152.91028623344192 -27.690409101092452, 152.91154955388131 -27.690644227763336, 152.91176144840071 -27.690646602778106, 152.91234348775026 -27.690520726949259, 152.91237567426109 -27.6904542264525, 152.91242931843391 -27.690420976188935, 152.91248832703118 -27.690420976188935, 152.91257415772387 -27.690458976489445, 152.91259025097929 -27.690477976634337, 152.91378651619817 -27.690230974489566, 152.9137972450381 -27.69016447381631, 152.9138777113063 -27.690135973515481, 152.91396890641445 -27.690150223667217, 152.91401182175628 -27.690188224061174, 152.91403596164392 -27.690276099922436, 152.91469042064736 -27.690147848641661, 152.91539852382365 -27.690337850485694, 152.91567747356356 -27.68908383220279, 152.9159778809744 -27.688475818153453, 152.916857645527 -27.687639793307319, 152.91669671299061 -27.687445036600188, 152.91647140743251 -27.687079273064981, 152.9163104748871 -27.68692251688946, 152.91604761840264 -27.686770510685506, 152.91601543190075 -27.686742009498751, 152.91595105887902 -27.686675506700478, 152.91590277912169 -27.686533000568343, 152.91586522819534 -27.686380993822954, 152.91597251654994 -27.6859724746445, 152.9152536845337 -27.685815716879315, 152.91496400596282 -27.68572071206437, 152.91469578506289 -27.685578204686191, 152.91450803043111 -27.685454698141061, 152.91428808928845 -27.68525518727354, 152.91388039352304 -27.684689904502818, 152.91320447684865 -27.683720841516447, 152.91276995898781 -27.68315555080261, 152.91260366202698 -27.682927533552327, 152.91255538226966 -27.682922783188548))\nAYCA-MAELG\tMuirhead\tReady for service\tPOLYGON ((130.900787162569 -12.3591377592361, 130.899117999989 -12.3603079998873, 130.898739999989 -12.3605229998873, 130.898771999989 -12.3605779998874, 130.898612999989 -12.3606679998873, 130.898653999989 -12.3607379998873, 130.898510999989 -12.3608199998873, 130.898489999989 -12.3607899998874, 130.898332999989 -12.3608789998873, 130.898307999989 -12.3608409998873, 130.898150999989 -12.3609299998874, 130.898136999989 -12.3609069998873, 130.897977999989 -12.3609969998873, 130.898009999989 -12.3610519998873, 130.897850999989 -12.3611419998873, 130.897873999989 -12.3611809998873, 130.897714999989 -12.3612719998873, 130.897668999989 -12.3611939998873, 130.89750999999 -12.3612839998873, 130.897532999989 -12.3613229998873, 130.897372999989 -12.3614129998874, 130.89739595875 -12.3614529281667, 130.897252999989 -12.3615339998874, 130.897211999989 -12.3614629998874, 130.897052999989 -12.3615539998873, 130.89707499999 -12.3615929998873, 130.89693199999 -12.3616749998873, 130.89671499999 -12.3613039998873, 130.895909999989 -12.3617559998874, 130.896235184939 -12.3623278629384, 130.8955236638 -12.3627490228027, 130.895993225824 -12.3635441455701, 130.896029318556 -12.363523300466, 130.896742116988 -12.3647259657531, 130.896327016491 -12.3653616702827, 130.896290845028 -12.3655927696026, 130.900757820864 -12.3655816395572, 130.900787162569 -12.3591377592361), (130.896843131739 -12.363863640841, 130.897064292293 -12.3637341216402, 130.897089499982 -12.3637404002962, 130.897178899939 -12.3638879355861, 130.896941942142 -12.3640267062619, 130.896843131739 -12.363863640841), (130.897783136586 -12.3616549362567, 130.898019315856 -12.3615185462916, 130.898117216304 -12.3616821766173, 130.897865187104 -12.3618277365765, 130.897776911992 -12.3616788923994, 130.897783136586 -12.3616549362567))\n114\tWest\tReady for service\tPOLYGON ((138.4939632858763 -34.877605383583415, 138.49356631894184 -34.8784239351548, 138.49351267476004 -34.878727589310444, 138.49351803917554 -34.879154463544957, 138.49377016682902 -34.880347059193312, 138.49384526868175 -34.881852081401419, 138.49386672635268 -34.881900488090871, 138.49392037053445 -34.881922491122054, 138.49562625546685 -34.881869683837053, 138.49629680771676 -34.881847680791743, 138.49660794396758 -34.881786072233687, 138.49683324952568 -34.88171126177847, 138.49697272439113 -34.88161004752574, 138.49712292809656 -34.881535236911034, 138.49729458947292 -34.881491230635454, 138.49779884477093 -34.88142522117716, 138.50073854584858 -34.881412019279587, 138.50074391026405 -34.881284400823567, 138.50088874955398 -34.881288801462681, 138.50113014836754 -34.881293202102285, 138.5025892700709 -34.881302003380767, 138.50323836464989 -34.881306404019668, 138.50356559414712 -34.881284400823567, 138.50349049229442 -34.880074215958807, 138.50342075486617 -34.879977400400143, 138.50313107628631 -34.879942194713834, 138.50078682560587 -34.879920191152515, 138.49918286462159 -34.8798981875853, 138.4987429823363 -34.879849779716558, 138.49822263379181 -34.879739761726611, 138.49729995388839 -34.87925568082165, 138.49616269726678 -34.878371125621982, 138.49557797570054 -34.878063069337919, 138.49523465294789 -34.877913441583487, 138.49461238045527 -34.877675796942739, 138.49425296444718 -34.877578978558304, 138.49410812516621 -34.877574577720573, 138.49397401470728 -34.877609784420244, 138.4939632858763 -34.877605383583415))\n251\tSequana\tReady for service\tPOLYGON ((153.11554227829404 -27.715761863642843, 153.1222585296691 -27.716616668658872, 153.12296663284533 -27.71878214471236, 153.12292371750348 -27.719427980123093, 153.11489854813058 -27.71901008705861, 153.11554227829404 -27.715761863642843))\n244\tAscot Grove\tReady for service\tPOLYGON ((150.75497303962794 -34.015506343998354, 150.75446878432993 -34.016048814300525, 150.75362120628816 -34.018983429608085, 150.7604876613596 -34.01994382712877, 150.76091681480494 -34.019783761629931, 150.76181803703744 -34.018343158557428, 150.759350404738 -34.016795816912889, 150.75847064018538 -34.016493459504979, 150.75497303962794 -34.015506343998354))\n17271426\tWoodscott\tCheck with carrier\tPOLYGON ((147.523613056 -34.4601080165, 147.521826016 -34.459882020500004, 147.520311136 -34.4596899535, 147.519780128 -34.4604040165, 147.51924912 -34.4611160075, 147.51862416 -34.4619549825, 147.517998848 -34.462793976, 147.516936832 -34.464219031, 147.518985952 -34.464477957, 147.520935008 -34.464724025500004, 147.52272096 -34.464950003, 147.523002112 -34.463426047, 147.523167008 -34.462529019, 147.523331872 -34.4616319725, 147.523471936 -34.4608700315, 147.523613056 -34.4601080165))\n270\tWoodgrove Shopping Centre\tReady for service\tPOLYGON ((144.5592192390933 -37.685222846336579, 144.55934798512777 -37.687515272755689, 144.5653132179757 -37.687753001810272, 144.56632172857175 -37.687396407941932, 144.56741606984255 -37.687498292079262, 144.56799542699329 -37.684611520658429, 144.5592192390933 -37.685222846336579))\n13\tLochiel Park\tReady for service\tPOLYGON ((138.65406 -34.87687, 138.65334 -34.87655, 138.6529 -34.8765, 138.64894 -34.8748, 138.64832 -34.87456, 138.6479 -34.87509, 138.64749 -34.87567, 138.64723 -34.87608, 138.64724 -34.87632, 138.64741 -34.87661, 138.64775 -34.87684, 138.6479 -34.87702, 138.64798 -34.87726, 138.64838 -34.87746, 138.64858 -34.87773, 138.64888 -34.87825, 138.64911 -34.87898, 138.64882 -34.87937, 138.64858 -34.87973, 138.64851 -34.88002, 138.64957 -34.88118, 138.65217 -34.87923, 138.65406 -34.87687))\n17354065\tLinton Hill\tCheck with carrier\tPOLYGON ((151.827287008 -27.466329999, 151.827627008 -27.464369998000002, 151.827590016 -27.464286008000002, 151.820788992 -27.4634309935, 151.820178016 -27.4673519945, 151.822048992 -27.4673380085, 151.821984 -27.467994999000002, 151.824286016 -27.467800009, 151.824648992 -27.465892992, 151.827287008 -27.466329999))\n285\tSummit Business Park\tUnder construction\tPOLYGON ((145.34356270786907 -38.094252133188668, 145.34329448696914 -38.095729741412661, 145.34095560071316 -38.095493326104133, 145.33814464566106 -38.095155588623278, 145.33840213773007 -38.09344999049997, 145.33893857953 -38.090123115274579, 145.34187828060763 -38.090460876010169, 145.34189973828754 -38.090798635185784, 145.34451757428337 -38.091187056308293, 145.34434591290704 -38.092031442931209, 145.34194265362936 -38.091896341727434, 145.34151350018402 -38.093669525163264, 145.34356270786907 -38.094252133188668))\nAYCA-RI32N\tDeepdale North\tReady for service\tPOLYGON ((114.671990385878 -28.7710969532846, 114.67198883148 -28.7711022256125, 114.672518124105 -28.7711029055237, 114.672670664945 -28.7710894733066, 114.672815443689 -28.7710660194565, 114.67311173999 -28.7709956999862, 114.673999209184 -28.7707587376567, 114.674600959431 -28.7703874728508, 114.68132462446 -28.7724604605487, 114.68175622224 -28.7713448263177, 114.681785965742 -28.7711062655176, 114.681166857321 -28.7709168318716, 114.68177153824 -28.7693826416671, 114.682457823475 -28.7694016065395, 114.682536019543 -28.7693682256804, 114.68281982198 -28.7685228472608, 114.680592719367 -28.7682085801752, 114.675691695748 -28.7697570695963, 114.674125372663 -28.7696027418065, 114.673716115237 -28.7693531936976, 114.672692182015 -28.7687242548737, 114.671990385878 -28.7710969532846))\n17349923\tLot 50 and 51 Link Road ALbany\tCheck with carrier\tPOLYGON ((117.8126136 -34.9695262735, 117.812627264 -34.969660565, 117.813928672 -34.9696731635, 117.81389088 -34.967411002, 117.813930464 -34.966578872, 117.812224448 -34.966578872, 117.812224448 -34.966315987, 117.808880384 -34.966315987, 117.808880384 -34.966148229, 117.807256064 -34.9654099495, 117.807245632 -34.9693193695, 117.808818848 -34.9693193695, 117.808825664 -34.9695374475, 117.8126136 -34.9695262735))\n17339915\tSamford Skies\tCheck with carrier\tPOLYGON ((152.835657856 -27.386634959000002, 152.833727872 -27.386432014, 152.833822912 -27.385288011, 152.832998176 -27.3852039655, 152.832998176 -27.3852039655, 152.83172592 -27.386492046500003, 152.830847168 -27.387062013, 152.830085056 -27.386255968, 152.828934112 -27.3928640385, 152.82908208 -27.392883038, 152.831575072 -27.388805046, 152.834958016 -27.390450954000002, 152.835657856 -27.386634959000002))\n17147547\tSummit View\tCheck with carrier\tPOLYGON ((151.867271872 -26.512940972, 151.86534192 -26.513997026000002, 151.865636032 -26.514755008, 151.865682112 -26.5147409665, 151.865748 -26.514917993, 151.86569904 -26.514988015500002, 151.866584992 -26.515531971, 151.867818016 -26.5147890295, 151.870425856 -26.515122029500002, 151.870780096 -26.5154550295, 151.870370048 -26.518372017, 151.86954384 -26.5189259625, 151.870023008 -26.519506011500003, 151.870350976 -26.5192859725, 151.870470848 -26.519430957, 151.87110912 -26.5202019815, 151.872067072 -26.5190200165, 151.872285952 -26.5176620055, 151.872928928 -26.5136930155, 151.867271872 -26.512940972))\nAYCA-1WH7YL\tL9001-9003 Wungong Sth Rd Darling Downs\tContracted\tPOLYGON ((116.001872 -32.1933860000136, 116.004069 -32.1930040000135, 116.005121 -32.1927290000135, 116.005179 -32.1928840000136, 116.005663 -32.1927590000136, 116.005837 -32.1927590000136, 116.006179 -32.1930200000136, 116.006647 -32.1930640000136, 116.007459 -32.1925430000135, 116.007533 -32.1923730000136, 116.006214 -32.1917450000135, 116.006305 -32.1913810000135, 116.006271 -32.1911010000135, 116.006021 -32.1904830000136, 116.005734 -32.1901600000135, 116.005277 -32.1900430000136, 116.003659 -32.1900720000136, 116.003581 -32.1900330000135, 116.003347 -32.1896650000136, 116.002569 -32.1886740000135, 116.002717 -32.1884130000136, 116.002628 -32.1878150000135, 116.002292 -32.1877310000135, 116.001629 -32.1896630000135, 115.999290370028 -32.1931613661561, 115.999792 -32.1934020000135, 116.001872 -32.1933860000136))\n17312227\tTrilla Hills Estate\tCheck with carrier\tPOLYGON ((149.22698688 -21.298979967, 149.226851168 -21.2989879775, 149.225717888 -21.298042979, 149.225325856 -21.2979960075, 149.226123968 -21.2971550345, 149.22687888 -21.2963599785, 149.222549888 -21.2958430145, 149.221664992 -21.295919974500002, 149.220520928 -21.295782982000002, 149.22041616 -21.2963720405, 149.220108 -21.2987790015, 149.219949952 -21.300019019500002, 149.221320128 -21.3001919945, 149.222048032 -21.300393959, 149.222945888 -21.300504034, 149.224052896 -21.2993379975, 149.224688992 -21.2986670395, 149.22517104 -21.298159973, 149.225634016 -21.298214973500002, 149.226723008 -21.299122972, 149.226730912 -21.2992499745, 149.22698688 -21.298979967))\nAYCA-10UTGP\tJimboomba Woods\tReady for service\tPOLYGON ((153.055174379743 -27.8623843557346, 153.055174838104 -27.8623821359339, 153.053434190498 -27.8621313960063, 153.053025436909 -27.8627994820007, 153.052884492446 -27.8629168729896, 153.052372456696 -27.8633433381995, 153.051692513404 -27.8640596626272, 153.05055112169 -27.8643861683161, 153.050607103079 -27.8647029361291, 153.050356614427 -27.866491330059, 153.049665650738 -27.8668012660888, 153.049899227008 -27.8670765463064, 153.04989619833 -27.8670809641327, 153.049906954059 -27.8670922537776, 153.05022469497 -27.8671258431554, 153.050415228335 -27.8670101186494, 153.050561021561 -27.8669407808292, 153.050664018312 -27.8669010237043, 153.050502558984 -27.8678321938874, 153.050903342073 -27.8683954800253, 153.051724321482 -27.8678117466373, 153.051939241443 -27.8672872698673, 153.053000587082 -27.8675593812259, 153.053207625675 -27.8676084315537, 153.054173367268 -27.8677505324474, 153.054618977039 -27.8653591233497, 153.055819 -27.8655359999836, 153.056244031654 -27.8641907938923, 153.05487302388 -27.8639933237239, 153.055174379743 -27.8623843557346))\n268\tBurwood Brickworks\tUnder construction\tPOLYGON ((145.13495121956865 -37.851994880682255, 145.13852392197882 -37.851207029511862, 145.13847027779704 -37.851071484376149, 145.13679657936652 -37.850910524203051, 145.13719354630098 -37.84880106630176, 145.138223514559 -37.84893661561204, 145.13855610848071 -37.847256479702871, 145.138542697442 -37.847230877138017, 145.13818864584937 -37.847184281013043, 145.13832812071485 -37.846510751915723, 145.13491635085003 -37.846099853785567, 145.13462667227915 -37.847705308736089, 145.13317291499129 -37.84753163323699, 145.13267938853321 -37.850263412859817, 145.1352113938454 -37.850576864044648, 145.13495121956865 -37.851994880682255))\n17238926\tLane Court Mt Warren Park\tCheck with carrier\tPOLYGON ((153.198027008 -27.7269029985, 153.19886112 -27.727338951, 153.19856592 -27.728036993, 153.197235008 -27.7277180345, 153.197287936 -27.7270000125, 153.197553952 -27.7268349555, 153.19758096 -27.7265660395, 153.197430112 -27.726552997000002, 153.197310976 -27.726543007, 153.197258048 -27.726483955000003, 153.197237888 -27.7264829745, 153.197036992 -27.7264659545, 153.197064 -27.7261949665, 153.196934048 -27.726392972, 153.196748992 -27.7265050265, 153.196565056 -27.7266159895, 153.19638 -27.726728044, 153.196184896 -27.726470006, 153.19568592 -27.726068963, 153.195471008 -27.7262219765, 153.195330976 -27.726275978, 153.195066016 -27.725869977000002, 153.19492992 -27.725942978000003, 153.19477008 -27.726062044000003, 153.194676128 -27.7261360255, 153.194577856 -27.725993002, 153.193898176 -27.7258120165, 153.193887008 -27.726199018000003, 153.193503968 -27.726728044, 153.193354912 -27.726935040500003, 153.19290816 -27.7275529775, 153.19272096 -27.7280000115, 153.192705856 -27.7280710145, 153.19271088 -27.7280720135, 153.193086016 -27.728178037, 153.193940992 -27.7281009845, 153.19456704 -27.728184956, 153.194995072 -27.728297991, 153.195452992 -27.728511037, 153.195858016 -27.728699034, 153.196512128 -27.7290019715, 153.19768608 -27.729063003, 153.197664832 -27.729422994500002, 153.19770192 -27.729439015500002, 153.198029888 -27.729582039, 153.198348832 -27.7297199935, 153.19858608 -27.72999396, 153.19881504 -27.7302590095, 153.199123936 -27.730616041, 153.199229056 -27.730737993, 153.199376992 -27.7309089885, 153.19958112 -27.7311449745, 153.200433952 -27.7316009995, 153.201233888 -27.7318320275, 153.201714112 -27.732216957000002, 153.20187504 -27.7323450325, 153.20192688 -27.732283020500002, 153.202061888 -27.7321200355, 153.202195072 -27.731960991, 153.202354912 -27.731768036000002, 153.20237904 -27.7317389725, 153.202245856 -27.731527018, 153.201957856 -27.7310680145, 153.201795136 -27.7308080155, 153.201637088 -27.7305570075, 153.201528 -27.7305630385, 153.20144592 -27.730499047000002, 153.201439072 -27.730403013500002, 153.200882176 -27.729927008500002, 153.200796832 -27.729763024500002, 153.200698912 -27.729575009, 153.200599936 -27.7294490055, 153.200414176 -27.729212039, 153.20034 -27.7291170045, 153.200315872 -27.7290860355, 153.200016 -27.7288849775, 153.199680128 -27.7286589815, 153.199719008 -27.7284179635, 153.19976688 -27.7281140455, 153.199811168 -27.7278399865, 153.19989216 -27.727331033000002, 153.199905856 -27.727241049, 153.19973808 -27.727125035500002, 153.199529984 -27.726980032500002, 153.199171072 -27.7267300235, 153.198852128 -27.726507006000002, 153.198811072 -27.726503047, 153.198378016 -27.726458036500002, 153.19831392 -27.726539048, 153.198027008 -27.7269029985))\n17338860\tBlind Creek Estate Stage 1\u00262\tCheck with carrier\tPOLYGON ((143.776407968 -37.521863992, 143.775775072 -37.5253239545, 143.778067936 -37.526399008, 143.776852928 -37.527290005000005, 143.777082976 -37.527488991, 143.778336128 -37.5265700035, 143.780627168 -37.5285519825, 143.781432128 -37.5241329985, 143.776407968 -37.521863992))\n17344475\tQuilpie Industrial Estate\tCheck with carrier\tPOLYGON ((144.249904096 -26.6136479975, 144.24937488 -26.616488043500002, 144.256145056 -26.6169330055, 144.256691168 -26.616846962, 144.256915072 -26.6140790105, 144.249904096 -26.6136479975))\n17320060\tWindella Ridge P/L\tCheck with carrier\tPOLYGON ((151.473242176 -32.697926018000004, 151.472464928 -32.702234039000004, 151.473989888 -32.702482975, 151.47521712 -32.702819046, 151.47823104 -32.703852955500004, 151.478592832 -32.701705013, 151.477335008 -32.701597028500004, 151.477296832 -32.701683960000004, 151.477277056 -32.701744973000004, 151.477286048 -32.7017989745, 151.477049888 -32.7018159945, 151.475712832 -32.702111014, 151.47588384 -32.701095993, 151.476606016 -32.7011799645, 151.476770176 -32.7002979585, 151.47689904 -32.700286988, 151.477109984 -32.7002789775, 151.47723888 -32.7002519675, 151.47739008 -32.700186995500005, 151.477486912 -32.700149015, 151.47759888 -32.700102025, 151.47703584 -32.699583988, 151.476855136 -32.699872976500004, 151.476463072 -32.700218038500005, 151.47603504 -32.700105984000004, 151.47592704 -32.700067023, 151.475915872 -32.699805026, 151.476012 -32.699495965000004, 151.476332032 -32.6990369615, 151.477106048 -32.6991470365, 151.477143136 -32.699156046, 151.477170112 -32.699162965, 151.47719712 -32.6991709755, 151.477224128 -32.699178986, 151.477268032 -32.6991940265, 151.477293952 -32.6992040165, 151.47732816 -32.699217965500004, 151.477336096 -32.699222017000004, 151.477603936 -32.6991609855, 151.478160128 -32.6986039875, 151.478160128 -32.6986039875, 151.478160128 -32.6986039875, 151.473242176 -32.697926018000004))\n17358725\tRusty Lane Branxton\tCheck with carrier\tMULTIPOLYGON (((151.384457152 -32.636706021500004, 151.38445810109187 -32.636701028752505, 151.384457888 -32.6367009895, 151.38445707333042 -32.636706003060823, 151.384457152 -32.636706021500004)), ((151.38652608 -32.63708196, 151.386855136 -32.635338039000004, 151.384803136 -32.6348859545, 151.38445810109187 -32.636701028752505, 151.38652608 -32.63708196)), ((151.382246048 -32.638311988, 151.383143168 -32.637986018, 151.38336384 -32.637819962, 151.384316032 -32.637573986, 151.38445707333042 -32.636706003060823, 151.381338112 -32.635974957, 151.38162288 -32.634185045, 151.37800704 -32.633387991, 151.377491872 -32.636005019500004, 151.379636032 -32.6366199965, 151.379612992 -32.636781982500004, 151.379835136 -32.636797023, 151.379818912 -32.637284997500004, 151.380965888 -32.6375039635, 151.380828 -32.6380490105, 151.382246048 -32.638311988)))\n62\tJindalee Beachside\tReady for service\tPOLYGON ((115.68944719351767 -31.649101558193706, 115.68863180197782 -31.648188231954176, 115.68801489390073 -31.647850298970727, 115.68717268027447 -31.647389064132792, 115.68431344546504 -31.647731565468515, 115.68458166636502 -31.648110598809325, 115.68494644678862 -31.648439397564122, 115.68508592165406 -31.648759061905675, 115.68518248118667 -31.648950859982648, 115.68524685419945 -31.649096991585456, 115.68531511500001 -31.649295854, 115.685408808 -31.650038780000006, 115.68550434626843 -31.650179271615041, 115.68557944812115 -31.650736389755668, 115.68565756399998 -31.650886188000012, 115.685526656 -31.651069685, 115.68564711000002 -31.651477835000005, 115.68545141299998 -31.65163395, 115.685568086 -31.652068055000008, 115.685907141 -31.652291204999997, 115.68616000000002 -31.652700987, 115.68649789300001 -31.65313625400001, 115.686846558 -31.653501088, 115.68755753299999 -31.654004972, 115.688099671 -31.654037896, 115.68823483504336 -31.653668054784053, 115.68767693556354 -31.65247165436806, 115.6875320962826 -31.652311828719, 115.68714049376362 -31.652074372960758, 115.68701174772912 -31.651846049545167, 115.6869366458764 -31.65172732114689, 115.68678644217097 -31.651576627192128, 115.6868561796082 -31.651448765463744, 115.68684545076826 -31.651261539043883, 115.68674352682916 -31.650891651592989, 115.68669524706286 -31.65084598637382, 115.68783786810891 -31.650115339812089, 115.68944719351767 -31.649101558193706))\nAYAA-H8QSJ\tMinto Renewal\tReady for service\tPOLYGON ((150.854598026553 -34.022587931237, 150.853163219664 -34.0263256059331, 150.853655564148 -34.0264342371452, 150.854004719697 -34.0264139774564, 150.854358705825 -34.0262965408747, 150.854504157988 -34.0265459627033, 150.854603374159 -34.0265034421953, 150.854769656637 -34.0268340665438, 150.855302008218 -34.0266177871911, 150.855717902792 -34.0267131782082, 150.85587049493 -34.0266583249837, 150.857137861272 -34.0269478197576, 150.85833529926 -34.0237962657839, 150.858493919992 -34.0238232900169, 150.858605359797 -34.0235163732842, 150.854598026553 -34.022587931237), (150.856926410431 -34.0238418542272, 150.857559919301 -34.0240101157436, 150.857587363501 -34.024054806368, 150.857471889031 -34.0243515434983, 150.857417830023 -34.0243740629143, 150.85707297618 -34.0242800932109, 150.857005330696 -34.0242689785927, 150.856912079989 -34.0242653794759, 150.856926410431 -34.0238418542272))\n204\tCollege Green\tReady for service\tPOLYGON ((145.36312792316772 -38.080488774943511, 145.37428591267451 -38.081958216403635, 145.37407133595633 -38.083140504185813, 145.36278460041504 -38.081890656524607, 145.36312792316772 -38.080488774943511))\nAYAA-FPSKZ\tGovernors Hill\tReady for service\tPOLYGON ((147.425006282888 -35.1389166799533, 147.424900230645 -35.1389660262275, 147.424133974319 -35.1403530544073, 147.42322591093 -35.1412157152418, 147.422037469379 -35.1423431403189, 147.421517644278 -35.142836287659, 147.422970424102 -35.1435584680389, 147.423509948117 -35.14428096481, 147.424177952855 -35.1442185844746, 147.424431371889 -35.1434437377229, 147.42489237308 -35.1434005047872, 147.424603876355 -35.142941064967, 147.42662469803 -35.1420860985028, 147.427236337263 -35.14259555733, 147.427757422372 -35.1409321653845, 147.42700019018 -35.1406141502736, 147.426762264737 -35.140417811678, 147.426456496814 -35.1403431344304, 147.42600214067 -35.1401188276424, 147.426243352402 -35.1395904906735, 147.425006282888 -35.1389166799533))\n17362563\tMurray Banks\tCheck with carrier\tPOLYGON ((144.725100992 -36.092428007, 144.729314016 -36.096424007, 144.73214 -36.094661993, 144.731814176 -36.094320705, 144.731164736 -36.094721544500004, 144.730384608 -36.095213829500004, 144.730020576 -36.094853616, 144.730310336 -36.0946795125, 144.729099296 -36.0934307995, 144.729842272 -36.0929865405, 144.730170016 -36.092598577000004, 144.729314016 -36.091701993, 144.729252992 -36.0917440065, 144.728634016 -36.091419997500005, 144.728546016 -36.091695, 144.727212 -36.0917159975, 144.726488 -36.091399, 144.726375008 -36.091582002, 144.725100992 -36.092428007))\n190\tHighfields\tReady for service\tPOLYGON ((153.16209955950143 -27.061379929370613, 153.16293640871217 -27.063214328342891, 153.16405220766285 -27.063434072040351, 153.16860123415825 -27.061790760914043, 153.16750689287849 -27.059402184365585, 153.16209955950143 -27.061379929370613))\n57000359\t(RAPA) Berne Court\tCheck with carrier\tPOLYGON ((147.001377952 -41.355567007, 147.001123072 -41.355311041, 147.000714112 -41.354632978999994, 146.999936896 -41.352702023, 146.999642048 -41.3528490055, 146.998654912 -41.351984001, 146.998423072 -41.352082014, 146.997079936 -41.352570987499995, 146.99747088 -41.353014969, 146.997617056 -41.354287029, 146.99728512 -41.354303031499995, 146.997371872 -41.3545660275, 146.996548928 -41.354705961499995, 146.99644704 -41.354349022499996, 146.99585088 -41.354445962499994, 146.99594304 -41.3547350435, 146.997092896 -41.3554809635, 146.996880128 -41.355704961499995, 146.998316896 -41.357261977, 147.001377952 -41.355567007))\nAYAA-F6JJR\tGoogong Township\tReady for service\tPOLYGON ((149.227824858636 -35.4180637043333, 149.227981577302 -35.4183759578603, 149.228136320335 -35.4186926108255, 149.228330439505 -35.4188815455881, 149.228289683582 -35.4189105603116, 149.228529359343 -35.4191167963343, 149.228623192156 -35.4190486208498, 149.228815258881 -35.4192206026788, 149.228894475989 -35.419163211117, 149.229993301923 -35.4184019164663, 149.23028100002 -35.4183100000133, 149.23055900002 -35.4188930000133, 149.23065600002 -35.4188450000132, 149.230929174148 -35.41935220313, 149.231909588924 -35.4190086182513, 149.233049400512 -35.4183562871332, 149.233315134242 -35.4186228156043, 149.233597926284 -35.4185095963816, 149.233857414964 -35.4185440979419, 149.233895430258 -35.4185620537834, 149.234037914506 -35.4183371199474, 149.233913205505 -35.4182742752989, 149.233988877125 -35.4181623173686, 149.234132415837 -35.4182244096253, 149.234320532454 -35.4179464004768, 149.234471345939 -35.4180172564525, 149.234434713181 -35.4180756953033, 149.234615117141 -35.4181489827432, 149.234662606453 -35.4180759039031, 149.234800086642 -35.4181325673297, 149.23488105353 -35.4179941887874, 149.234603995192 -35.4178781331553, 149.23474590788 -35.4176733064341, 149.234884070104 -35.417734532116, 149.2353226588 -35.4171587760764, 149.235143828791 -35.4170769212388, 149.235302005897 -35.4168456282813, 149.235341593757 -35.4168631802894, 149.235574705811 -35.4165294460989, 149.234981878309 -35.4163193333831, 149.234580104263 -35.4161313529661, 149.234509135094 -35.4164989904249, 149.234457307649 -35.4165041589033, 149.234196317193 -35.4169205954451, 149.233705182176 -35.4176247139441, 149.233643580899 -35.4177051665972, 149.233428775123 -35.4178469424377, 149.233274438517 -35.4177640106826, 149.232754808585 -35.4174341140808, 149.232499129548 -35.4173297599169, 149.232442862857 -35.4170567338078, 149.232945225468 -35.4168135951207, 149.23346512122 -35.4165384467604, 149.233892729593 -35.4164450357315, 149.23391335991 -35.4163409980957, 149.234151818106 -35.4142100878741, 149.233969127814 -35.4142191813835, 149.2337850549 -35.4142363519446, 149.233603517036 -35.4142619899785, 149.233423305363 -35.4142945715337, 149.23324921044 -35.4143366377371, 149.232900707311 -35.4144408528475, 149.232570535168 -35.4145743987543, 149.23225728001 -35.4147345000195, 149.23195287395 -35.4149229151946, 149.231893785296 -35.4149744357431, 149.231863849172 -35.4150013211382, 149.231834878066 -35.4150263271801, 149.231729552636 -35.4151191581941, 149.231581694447 -35.4152696202321, 149.231318323673 -35.415561204718, 149.231065110333 -35.4158543787077, 149.230492052848 -35.4165233405405, 149.230272240221 -35.4167498697907, 149.230084023038 -35.4169320482753, 149.229991487147 -35.4170121477997, 149.229898065598 -35.4170810945863, 149.229775011557 -35.4171693613036, 149.229642104387 -35.4172558991409, 149.229468000001 -35.4173589000241, 149.229287098244 -35.4174580369228, 149.229130537669 -35.4175303602965, 149.229095660691 -35.4175477677375, 149.22897396334 -35.4175979216207, 149.228929764141 -35.4176165451685, 149.228893374361 -35.4176314984788, 149.228816831202 -35.4176592338565, 149.228768965251 -35.4176768711806, 149.228709493866 -35.417698716621, 149.228690943792 -35.417704958799, 149.228622660308 -35.4177267206616, 149.228539180423 -35.4177528997139, 149.228495113324 -35.417766999868, 149.228458679876 -35.417776876575, 149.228292368172 -35.4178220718915, 149.228076869713 -35.4178711690331, 149.227824858636 -35.4180637043333), (149.229255926946 -35.4189070928355, 149.22916762765 -35.418822148639, 149.229323555728 -35.418717147441, 149.229407605202 -35.4188037405196, 149.229255926946 -35.4189070928355), (149.23348216701 -35.4154091807694, 149.233328540101 -35.4151794960297, 149.23348729096 -35.4151318015243, 149.233625728133 -35.4153552129943, 149.23348216701 -35.4154091807694))\nAYCA-PXLYW\tParamount Park\tReady for service\tPOLYGON ((150.514225099238 -23.271600332771, 150.513003999994 -23.275180999939, 150.514705924047 -23.2752173464174, 150.516578420536 -23.2754156549094, 150.516820785705 -23.2755856240845, 150.518703404749 -23.2755212013386, 150.519575390266 -23.2749629834395, 150.519802694857 -23.2748804006593, 150.520165909224 -23.2749978877793, 150.520245271357 -23.2746102154817, 150.520843971252 -23.2732159237292, 150.519941663745 -23.2728420081795, 150.519697081286 -23.2728015794416, 150.518985087242 -23.2725568501093, 150.518752192893 -23.2729748440493, 150.518492141124 -23.2728839656028, 150.518932402669 -23.2735649118513, 150.517875474631 -23.273690313786, 150.517679525678 -23.2736980559157, 150.516701651105 -23.2736971442065, 150.515976455502 -23.2731919855145, 150.515892235481 -23.2721091999031, 150.515275918505 -23.2719575284693, 150.51511224866 -23.2718585499202, 150.514225099238 -23.271600332771))\n10380\tHalls Head-Port Mandurah\tReady for service\tPOLYGON ((115.70585131645203 -32.538752015753069, 115.70602834224701 -32.538752015753069, 115.70605583488941 -32.538911428583006, 115.70612289011478 -32.53904427239177, 115.70626236498356 -32.539111259514428, 115.70643939077854 -32.539176550712483, 115.70656042546034 -32.53921329465588, 115.70667207241058 -32.539238167470558, 115.70685982704163 -32.539276607261534, 115.70695638656616 -32.539286782497555, 115.70727221667767 -32.539311090001185, 115.70753306150436 -32.539309606113079, 115.70765443146229 -32.539306779659462, 115.70779055356979 -32.539349176454408, 115.70790387690067 -32.539332217738831, 115.70794008672237 -32.5392299000869, 115.70793271064758 -32.53918071973758, 115.70811040699482 -32.5391812850291, 115.70826329290867 -32.539179023862985, 115.70833202451468 -32.539077553974792, 115.70839673280716 -32.538982302192665, 115.70855230093002 -32.539056920808008, 115.70857778191566 -32.539074444867758, 115.70858381688595 -32.5391072318091, 115.70914104580879 -32.53928303744555, 115.70932041853666 -32.53933885990282, 115.70950113236904 -32.539382245940573, 115.70987462997437 -32.539465626214863, 115.710169672966 -32.539517632855215, 115.71057736873627 -32.539571900621738, 115.71086771786213 -32.539604934695326, 115.71118254214525 -32.539676284719746, 115.7114477455616 -32.539736328927624, 115.71158722043037 -32.539776464368686, 115.71166902780533 -32.539800489095953, 115.71174178272486 -32.539829177438328, 115.71175469085574 -32.539833063789416, 115.71177162230015 -32.539849386462194, 115.71233790367842 -32.540034235224581, 115.71238903328776 -32.540052607022695, 115.71249179542065 -32.540091329107923, 115.71278315037489 -32.540225301741145, 115.71290938183665 -32.540292853267339, 115.71297279093415 -32.540307197361017, 115.71306838653982 -32.540289885523528, 115.71313619613647 -32.540316312572067, 115.71265205740929 -32.540635132395074, 115.71241468191147 -32.540810369758979, 115.71218937635422 -32.541008217984626, 115.71191847324371 -32.541258071406709, 115.71163684129715 -32.541497749149244, 115.71088314056396 -32.542213386903725, 115.71049019694328 -32.542533895802315, 115.71015425026417 -32.542905842966434, 115.70972442626953 -32.543420235441751, 115.70964261889458 -32.54343747601763, 115.70945084095001 -32.543450194473124, 115.70918932557106 -32.543411756468785, 115.70896670222282 -32.543298703419516, 115.70883259177208 -32.543184943644981, 115.70871323347092 -32.543085456717805, 115.70861399173737 -32.542980317004528, 115.70852547883987 -32.542912484866079, 115.70837393403053 -32.542766645594924, 115.70815801620483 -32.542595934209167, 115.70805206894875 -32.542458008216734, 115.70790722966194 -32.542311037663758, 115.70771276950836 -32.542106409031682, 115.7072514295578 -32.541632708917284, 115.70690274238586 -32.541238357318633, 115.70676863193512 -32.541030334562763, 115.70674180984497 -32.540898624253487, 115.70667743682861 -32.540794047260889, 115.70641458034515 -32.540383652048313, 115.70616245269775 -32.539931423746587, 115.7059720158577 -32.53932769541413, 115.70592641830444 -32.539092534216188, 115.70585131645203 -32.538752015753069))\n17335365\tMundoolun\tCheck with carrier\tPOLYGON ((153.076204096 -27.860803020000002, 153.078363008 -27.8601029985, 153.078147008 -27.8590529755, 153.077175008 -27.8578119585, 153.073901152 -27.856538992, 153.072173888 -27.8581619785, 153.071777888 -27.8592120015, 153.073541152 -27.859785039000002, 153.073901152 -27.860389027, 153.074657152 -27.860293974, 153.076204096 -27.860803020000002))\nON-Q-VT\tVue Terraces\tReady for service\tPOLYGON ((153.38100671768188 -28.068610116288863, 153.38199377059937 -28.0687805214635, 153.38401079177856 -28.067455140759694, 153.38220834732056 -28.0620777141967, 153.38019132614136 -28.0639144007095, 153.38034152984619 -28.065391301115952, 153.38000893592834 -28.066082407796298, 153.38040590286255 -28.068553314503923, 153.38100671768188 -28.068610116288863))\nAYCA-F193I\tEdmondson Park South P1\tReady for service\tPOLYGON ((150.853549054355 -33.9861716630198, 150.856619399984 -33.9852032100121, 150.857550173817 -33.9819919166502, 150.856795646769 -33.9819430055729, 150.856164343204 -33.9819393396364, 150.855813954582 -33.9813379967809, 150.854965699095 -33.9815807811402, 150.853419518867 -33.9820911999524, 150.851969999809 -33.982579697111, 150.853455597798 -33.9862011396577, 150.853549054355 -33.9861716630198))\nAYCA-WDIWW\tMuirhead\tReady for service\tPOLYGON ((130.89374145864 -12.3585879914992, 130.89389710448 -12.3588576318572, 130.893856627081 -12.3588772649386, 130.893882805526 -12.3589230431014, 130.893923587895 -12.35890310552, 130.894042475487 -12.3591079613984, 130.893882137175 -12.3591928979786, 130.893903880711 -12.3592322848465, 130.893587845389 -12.3594163497661, 130.893610207447 -12.359454451901, 130.893483086105 -12.3595292766608, 130.893964063243 -12.360356859143, 130.894318125096 -12.3601568019767, 130.894344614279 -12.3601991670196, 130.894596304266 -12.3600569910153, 130.894677856092 -12.3601992164848, 130.894637762565 -12.3602222189218, 130.894720164384 -12.3603615774636, 130.894800096635 -12.3603165684904, 130.894883592055 -12.3604581429513, 130.894792620107 -12.3605104485967, 130.894883503846 -12.3606655879247, 130.894923165526 -12.3606432852255, 130.89501555006 -12.3607991339343, 130.895054927657 -12.3607768418063, 130.895140303863 -12.3609197476343, 130.895063321983 -12.3609643585524, 130.895151272824 -12.3611154476871, 130.895230308658 -12.3610709371301, 130.895315829319 -12.36121562528, 130.895275794969 -12.3612402394637, 130.895357634134 -12.3613753860861, 130.89560600651 -12.3612372024731, 130.895910294019 -12.3617549464015, 130.896715492438 -12.3613026395941, 130.896932281073 -12.3616742272648, 130.897074499092 -12.3615929602003, 130.897052115061 -12.3615535733934, 130.897212134956 -12.3614620352312, 130.897254435045 -12.361531694086, 130.897394069932 -12.3614524762698, 130.897371715127 -12.3614128186506, 130.897532556561 -12.3613229396889, 130.897509857406 -12.3612839336552, 130.897669234857 -12.3611936681709, 130.897715115913 -12.3612713109992, 130.897873885832 -12.3611809748422, 130.897850938772 -12.3611419900641, 130.898009986142 -12.361051993722, 130.897977934558 -12.3609969909372, 130.898137046093 -12.3609068000644, 130.898151073953 -12.3609296118314, 130.898308947205 -12.3608391239618, 130.898333333556 -12.3608766815399, 130.89849000712 -12.3607897642314, 130.898511004983 -12.3608198260052, 130.898653286092 -12.3607377708168, 130.898612150398 -12.3606678842207, 130.89877025594 -12.3605777666908, 130.898737568572 -12.3605224171113, 130.899114564708 -12.3603069263942, 130.898995476267 -12.3600961799541, 130.8995394902 -12.3597877984403, 130.899116698303 -12.3590797915682, 130.899173195851 -12.3590457107041, 130.897985978729 -12.357016333264, 130.897254995298 -12.3574260118585, 130.897158970356 -12.3572802030405, 130.896996494581 -12.3573731256352, 130.897078259707 -12.3575374973419, 130.896835603422 -12.3576749948664, 130.896787337179 -12.3575939837965, 130.896639122285 -12.3576790810902, 130.896668422753 -12.3577292604573, 130.896517665315 -12.3578166741117, 130.896495268606 -12.3577748724156, 130.896352831659 -12.3578571264154, 130.89632216454 -12.3578059055037, 130.896164823758 -12.3578943442703, 130.896188874397 -12.3579339936138, 130.896037325426 -12.3580191776986, 130.896059904992 -12.3580584985933, 130.895902461826 -12.3581482236289, 130.895879584879 -12.3581079327842, 130.895728384255 -12.3581954231071, 130.895581656403 -12.3579467538518, 130.895605714351 -12.3579330618172, 130.895529438984 -12.3578018581869, 130.895489243169 -12.3578246112495, 130.895328889208 -12.3575507994222, 130.895163511764 -12.3576449654693, 130.895186370722 -12.3576840239407, 130.895015233806 -12.3577802565645, 130.895054193974 -12.3578510328088, 130.894799948922 -12.3579953087198, 130.894769115886 -12.3579465956514, 130.894637535575 -12.3580225749228, 130.894656108519 -12.3580526250925, 130.894139684129 -12.358345702216, 130.894105523722 -12.358284209513, 130.894052525049 -12.3583142137208, 130.893987062555 -12.3581963571766, 130.893949063005 -12.3582179998401, 130.894034810684 -12.3583661205799, 130.893948856834 -12.3584150031128, 130.893970349251 -12.3584512809536, 130.89374145864 -12.3585879914992))\nAYCA-19Q49D\tLot 10,50 \u0026 700 Ocean Reef Gnangara\tReady for service\tPOLYGON ((115.855602468613 -31.7874542885804, 115.855689 -31.7907460000114, 115.856324 -31.7907370000114, 115.856335 -31.7912640000113, 115.855703 -31.7912740000114, 115.855732272554 -31.7924396170656, 115.857022 -31.7932690000114, 115.857538 -31.7935310000113, 115.857931 -31.7935890000113, 115.858813612118 -31.7928999663155, 115.858802275284 -31.7920821288681, 115.85868092483 -31.7920819118731, 115.858690851778 -31.7877473878707, 115.858827651508 -31.787630998176, 115.858743626803 -31.7874537637698, 115.858537 -31.7874540000113, 115.855602468613 -31.7874542885804), (115.856744892211 -31.7917864249926, 115.856739429323 -31.7922286101717, 115.856454190017 -31.7922331875583, 115.856459654264 -31.7917910024237, 115.856744892211 -31.7917864249926))\n327\tMadison Rise\tUnder construction\tPOLYGON ((151.46842898041183 -33.23597707399918, 151.46799211100227 -33.238103314187939, 151.46782818183209 -33.2381615833139, 151.46793501172621 -33.238380744237617, 151.46756925608526 -33.240157819516362, 151.47144413979356 -33.240724228499467, 151.47230623454772 -33.2365546248921, 151.47149342654049 -33.236424709168709, 151.46842898041183 -33.23597707399918))\nAYCA-1FTKU1\tMolonglo Valley - Coombs Stage 2\tReady for service\tPOLYGON ((149.042577119006 -35.3176259170474, 149.042656008006 -35.3183621090476, 149.042734899006 -35.3190983020474, 149.045282409006 -35.3189148920475, 149.044911646006 -35.3181997160476, 149.044809611013 -35.3180187490436, 149.044730154006 -35.3179052850474, 149.044627336019 -35.3177817950396, 149.044283194019 -35.3174031980395, 149.044115577006 -35.3172187980475, 149.044071331019 -35.3171638290395, 149.044024762006 -35.3170847960475, 149.043993361006 -35.3170008860475, 149.043978910006 -35.3169249900475, 149.043976415006 -35.3168591680476, 149.043985089006 -35.3167826840476, 149.043997036006 -35.3167347970475, 149.044017835006 -35.3166786840476, 149.044292765013 -35.3160532250435, 149.044736420006 -35.3150439000476, 149.045080584006 -35.3142598130475, 149.045138758006 -35.3140922390474, 149.045185130006 -35.3138631390475, 149.045195431006 -35.3137278720475, 149.045190412013 -35.3135536940434, 149.045162052006 -35.3133011980475, 149.045087750006 -35.3126513570473, 149.045081437013 -35.3126135030436, 149.045068084006 -35.3125670250476, 149.045044258006 -35.3125131680475, 149.045006203006 -35.3124540760474, 149.044950229006 -35.3123930570475, 149.044882492013 -35.3123406580435, 149.044815093006 -35.3123030700475, 149.044166678006 -35.3119964670475, 149.043634364006 -35.3126603700474, 149.043102040006 -35.3133242710475, 149.042551561025 -35.3140108020357, 149.041541316019 -35.3152706920396, 149.041293286935 -35.3155800052777, 149.041045256006 -35.3158893180476, 149.040549188006 -35.3165079410474, 149.041367346006 -35.3168947010475, 149.041377555006 -35.3168991820475, 149.041387877006 -35.3169034860474, 149.041398307012 -35.3169076110435, 149.041408841012 -35.3169115550435, 149.041419474012 -35.3169153160434, 149.041430201006 -35.3169188920474, 149.041441018006 -35.3169222830474, 149.041451919012 -35.3169254860435, 149.041462900006 -35.3169285010474, 149.041473957012 -35.3169313250435, 149.041485083006 -35.3169339570475, 149.041496275012 -35.3169363970435, 149.041507527006 -35.3169386440475, 149.041518834012 -35.3169406950436, 149.041530192006 -35.3169425510475, 149.041541594012 -35.3169442100435, 149.041553037006 -35.3169456720475, 149.041564514012 -35.3169469360435, 149.041576022006 -35.3169480020475, 149.041587555012 -35.3169488690434, 149.041599107006 -35.3169495360476, 149.041610673012 -35.3169500040435, 149.041622250006 -35.3169502730475, 149.041633830012 -35.3169503410435, 149.041645410012 -35.3169502090436, 149.041656984006 -35.3169498780476, 149.041668547006 -35.3169493470475, 149.041680093006 -35.3169486160475, 149.042498231006 -35.3168897250475, 149.042577119006 -35.3176259170474))\nAYAA-IWD7J\tRadford Park\tReady for service\tPOLYGON ((151.355551754519 -32.6450822595972, 151.35799158764 -32.647247156744, 151.357953993932 -32.6468407877229, 151.358083229737 -32.6458828991235, 151.358541021105 -32.6439165907732, 151.358756420045 -32.6428431932194, 151.359138016669 -32.6409629033437, 151.359284673167 -32.6401856939146, 151.359416020259 -32.6397813938324, 151.359510496019 -32.6397955014772, 151.359586208407 -32.6393852830025, 151.359665558935 -32.6389757275298, 151.359556820724 -32.6389583038523, 151.358710326857 -32.6388076857286, 151.35881169778 -32.6384727243598, 151.358425229242 -32.638384842403, 151.358298317163 -32.6387422134639, 151.358188241464 -32.638797778664, 151.357344169896 -32.6385961072484, 151.357269828323 -32.6388116727012, 151.357541386323 -32.6388827599336, 151.357042042543 -32.6397199008214, 151.357079095979 -32.6404402029723, 151.357025174955 -32.6420188942427, 151.356862835789 -32.6428187147251, 151.356707917409 -32.6427835338385, 151.356510540901 -32.6433764644196, 151.356454465441 -32.643364386452, 151.356414215228 -32.643548461512, 151.356472165216 -32.6435608929574, 151.355973578949 -32.6444008718744, 151.356190112385 -32.6445544305442, 151.355551754519 -32.6450822595972))\n10000\tAveley-Vale\tReady for service\tPOLYGON ((115.98894238471985 -31.791797076764176, 115.98843812942505 -31.792645155562454, 115.9885561466217 -31.793967413434405, 115.98856687545776 -31.794140673409089, 115.99021911621094 -31.794177149151842, 115.99027276039124 -31.794578381372133, 115.9905731678009 -31.79497049299551, 115.99092721939087 -31.794797234576347, 115.99101305007935 -31.794879304394335, 115.99117398262024 -31.795289652391133, 115.99286913871765 -31.79470604580424, 115.99541187286377 -31.792608679215139, 115.99520802497864 -31.791842672596403, 115.99221467971802 -31.791860910923006, 115.99091649055481 -31.791760600082206, 115.98974704742432 -31.7918973875654, 115.98894238471985 -31.791797076764176))\n10750\tPagewood Green\tReady for service\tPOLYGON ((151.22275114059448 -33.943452567717465, 151.22397422790527 -33.939554048502778, 151.22815847396851 -33.940177111504767, 151.22723579406738 -33.942277690310078, 151.22667789459229 -33.944164606739413, 151.22275114059448 -33.943452567717465))\n6\tNLV Bridgewater\tReady for service\tPOLYGON ((115.69084383614063 -32.560811869226839, 115.69007135994434 -32.561553349941526, 115.68966366417408 -32.562168231740209, 115.68940617210865 -32.563633080223994, 115.69125153191089 -32.566743543367586, 115.69277502663135 -32.565929769822432, 115.69427706367969 -32.564826642786556, 115.69374062187671 -32.564392621873807, 115.69262482292652 -32.5641032734321, 115.6921527541399 -32.563741586567659, 115.69200255043506 -32.563361813790671, 115.6920454657793 -32.562927785791359, 115.69219566948414 -32.562548009569575, 115.69286085731983 -32.5620597234937, 115.69294668800831 -32.561625689195367, 115.69251753456592 -32.559925701310725, 115.69084383614063 -32.560811869226839))\nAYCA-OOFYN\tCasuarina Town Centre\tReady for service\tPOLYGON ((153.5708838363 -28.3003885237326, 153.570926404706 -28.3003717933896, 153.571271295071 -28.3004221464378, 153.57128508 -28.3003727399865, 153.571487234049 -28.30040948194, 153.571413207205 -28.3008195366514, 153.572558173917 -28.3010010365304, 153.572581397472 -28.3009195737802, 153.572578430963 -28.3008606556719, 153.572515435102 -28.3007913544054, 153.572501495193 -28.3007064564418, 153.572527461176 -28.300578964905, 153.572556308429 -28.3004873399837, 153.572452067526 -28.3005114694952, 153.571774088177 -28.3003994341474, 153.57167325691 -28.3003555581049, 153.571530472815 -28.3003320852248, 153.571505910532 -28.3003005045647, 153.571673535682 -28.2995249144659, 153.571689064335 -28.2994280537038, 153.571692580129 -28.2992913520385, 153.571671522948 -28.2991397259984, 153.571631127915 -28.2990089139233, 153.571642909386 -28.2989623630372, 153.571714084041 -28.2989327961298, 153.571763592747 -28.2988912356034, 153.57357966075 -28.2991764677786, 153.573342038925 -28.3003110323547, 153.573098453159 -28.3004446089814, 153.572849863307 -28.3004193879023, 153.572577929556 -28.3004823351498, 153.572552226469 -28.3005814962713, 153.573394820395 -28.3007160941114, 153.574453944499 -28.2958257402173, 153.572719329554 -28.2957018185727, 153.571442545172 -28.2961018219201, 153.572136524381 -28.2949717930689, 153.571530375299 -28.2946661302995, 153.570938352243 -28.2948894892393, 153.570387462514 -28.2953853914456, 153.569544526724 -28.2959694513852, 153.56961771223 -28.2983107366077, 153.570736145062 -28.2984097627418, 153.57080628 -28.2989415599864, 153.570780814825 -28.2990222417222, 153.570642517254 -28.3000023213204, 153.5708838363 -28.3003885237326), (153.570424118964 -28.2958512505823, 153.571227357283 -28.296076452991, 153.571064724826 -28.2964032319258, 153.570928613631 -28.296732362802, 153.569845326668 -28.296595136058, 153.569775682734 -28.2962620242049, 153.570424118964 -28.2958512505823))\n17332860\tPalm Lake Resort\tCheck with carrier\tPOLYGON ((151.790780896 -32.867030966, 151.790780896 -32.867036997, 151.790781952 -32.8670389765, 151.79078592 -32.867047986, 151.790792032 -32.867060048, 151.790797088 -32.867069039, 151.790803936 -32.867080028000004, 151.790814016 -32.867091997500005, 151.790830912 -32.867109998000004, 151.79085504 -32.867134011000005, 151.79088096 -32.867160022, 151.790923072 -32.867200981, 151.79096304 -32.8672389615, 151.791005888 -32.8672749625, 151.791050176 -32.867308984000005, 151.79109408 -32.8673420065, 151.791127936 -32.867364965, 151.79116608 -32.8673879975, 151.791208928 -32.867413028, 151.791255008 -32.8674400195, 151.791297856 -32.867465031500004, 151.791343936 -32.8674899695, 151.791396832 -32.8675159805, 151.791464896 -32.867550002, 151.791544096 -32.867595993, 151.79162112 -32.867654046, 151.79168016 -32.867709028, 151.791730912 -32.867765009, 151.79177808 -32.8678250415, 151.791820928 -32.8678910125, 151.791858016 -32.8679669735, 151.79188608 -32.868055977000004, 151.791897952 -32.868138968000004, 151.791900832 -32.868209971, 151.79190192 -32.868267025, 151.791903008 -32.868317974, 151.791905888 -32.868369996, 151.791906976 -32.868425977, 151.791908032 -32.8684799785, 151.791908032 -32.8685310015, 151.79190912 -32.8685820245, 151.791909856 -32.8686429635, 151.791910912 -32.868702996, 151.791912 -32.868759957500004, 151.791914176 -32.868815032, 151.791917056 -32.8688700325, 151.79192208 -32.868933025000004, 151.791926048 -32.868992965000004, 151.791931072 -32.869043007500004, 151.79193792 -32.8690839665, 151.791949088 -32.869118968500004, 151.791953056 -32.8691289585, 151.791962048 -32.869148032, 151.791975008 -32.8691709905, 151.791990112 -32.869198981000004, 151.792005952 -32.8692290435, 151.792062112 -32.869364038, 151.792059968 -32.869254962, 151.79205888 -32.869118968500004, 151.792057088 -32.868980015, 151.792056 -32.8688440215, 151.792053856 -32.868705956, 151.79205312 -32.868569962500004, 151.792050976 -32.8684300285, 151.792049888 -32.868293036000004, 151.792048096 -32.86815399, 151.792047008 -32.868017016, 151.792044832 -32.867882003, 151.792044128 -32.8677440485, 151.792041952 -32.8676090355, 151.792040896 -32.8674709885, 151.792039072 -32.8673330155, 151.792038016 -32.8671950425, 151.79203584 -32.867057976, 151.792035136 -32.8669219825, 151.792034048 -32.8667979585, 151.792057088 -32.866710028, 151.792092 -32.866577013000004, 151.792162912 -32.8663080045, 151.792197856 -32.8661729915, 151.791941888 -32.8661219685, 151.792013152 -32.8658509805, 151.792668 -32.8659740055, 151.792820992 -32.865389017, 151.792957088 -32.864865023, 151.793088128 -32.86445103, 151.793548928 -32.862995006, 151.795122848 -32.8616299835, 151.79600304 -32.8610160055, 151.794963008 -32.860853002, 151.792697888 -32.8604979685, 151.792090912 -32.860403008, 151.791372 -32.860289973, 151.791131168 -32.860242983, 151.791023872 -32.860409039000004, 151.791020992 -32.860413997, 151.791012 -32.860429019, 151.791003008 -32.860442968, 151.790994016 -32.860458008500004, 151.790983936 -32.8604720315, 151.790972032 -32.860490032, 151.790946112 -32.8605219815, 151.790920928 -32.860550971, 151.790901856 -32.8605710435, 151.790889952 -32.860583013, 151.790883136 -32.860592004000004, 151.79085792 -32.860625045, 151.790834176 -32.860657975, 151.79081616 -32.860685965500004, 151.790803936 -32.8607090165, 151.790796 -32.8607279975, 151.790793856 -32.860740966, 151.790790976 -32.8607589665, 151.790789152 -32.8607810185, 151.790788096 -32.860807011, 151.790788096 -32.860830968500004, 151.790789888 -32.860857960000004, 151.790793856 -32.8608870235, 151.790801056 -32.860919972, 151.790810048 -32.8609590255, 151.790820128 -32.860998005, 151.790833088 -32.8610420165, 151.790847136 -32.861086028, 151.790864032 -32.8611339985, 151.790883136 -32.8611850215, 151.790901856 -32.861237043500005, 151.790918048 -32.8612799635, 151.790934976 -32.861323975, 151.79095296 -32.861372038, 151.790972032 -32.861422987000005, 151.790990048 -32.8614769885, 151.79100912 -32.8615419605, 151.791026048 -32.8616060445, 151.791041152 -32.8616720155, 151.791054112 -32.861739966, 151.791064928 -32.8618089895, 151.79107104 -32.861872981, 151.791075008 -32.861936972500004, 151.791077152 -32.861997985500004, 151.791077888 -32.862058018, 151.791077152 -32.862117958, 151.79107392 -32.862175012, 151.791069952 -32.8622290135, 151.791066016 -32.8622789635, 151.791062048 -32.862324954500004, 151.791059872 -32.862366006, 151.791059168 -32.8624190085, 151.791059872 -32.862474009, 151.79106096 -32.862531951, 151.791063136 -32.862592982500004, 151.79106384 -32.8626579545, 151.79106384 -32.8627220385, 151.791062048 -32.8627819785, 151.79106096 -32.8628379595, 151.79106096 -32.862887003000004, 151.79106384 -32.862933993, 151.79106816 -32.862966035, 151.791072832 -32.863002036000005, 151.791078976 -32.863038037, 151.791086176 -32.863074038, 151.791092992 -32.86310904, 151.79110704000001 -32.863164022, 151.79112288 -32.863220003, 151.791141952 -32.863278962500004, 151.791162848 -32.863341955, 151.791183008 -32.863404966000004, 151.791206048 -32.8634739895, 151.791230176 -32.8635420325, 151.791256096 -32.8636130355, 151.791280928 -32.863687017000004, 151.791306112 -32.863762978000004, 151.791329888 -32.8638419915, 151.79135184 -32.8639210235, 151.791374176 -32.864000037000004, 151.791393952 -32.864079957, 151.791413056 -32.8641550115, 151.791437152 -32.864245014, 151.79146416 -32.8643399745, 151.79149008 -32.864445998, 151.791509152 -32.864562992, 151.791513856 -32.8646850365, 151.791508096 -32.864766029500004, 151.791496928 -32.864840011, 151.79148288 -32.8649129935, 151.791464896 -32.864983016000004, 151.791441856 -32.865056017, 151.79141088 -32.865131978, 151.791377056 -32.8652000025, 151.791347872 -32.8652530235, 151.791329888 -32.865291004, 151.791319072 -32.8653189945, 151.791314048 -32.8653440065, 151.79131008 -32.865379027, 151.791306112 -32.8654230385, 151.791302176 -32.865474968, 151.791296032 -32.8655300425, 151.79128704 -32.8655989735, 151.79127984 -32.8656670165, 151.791270848 -32.8657400175, 151.791258976 -32.865818032, 151.791242048 -32.8658969715, 151.791224032 -32.865966994000004, 151.791203872 -32.866034038, 151.79118192 -32.8660990285, 151.79115888 -32.866162021, 151.791135136 -32.866224033, 151.791104896 -32.866298995, 151.791072832 -32.8663729765, 151.791040096 -32.866443998, 151.791008032 -32.866512022500004, 151.790974912 -32.8665819525, 151.79093712 -32.866658006, 151.790898976 -32.866731007, 151.790865856 -32.8667949985, 151.790838848 -32.866850961000004, 151.790817952 -32.866909014, 151.790803936 -32.8669530255, 151.790789888 -32.866994965, 151.790781952 -32.867024047, 151.790780896 -32.867030966))\n292\tNortham Eco Lifestyle Village\tReady for service\tPOLYGON ((116.65020329840772 -31.661646746555668, 116.64942545779421 -31.659327193490913, 116.64900703318884 -31.659235871319105, 116.64912505038338 -31.658742730041766, 116.65007991678871 -31.657902557393534, 116.6502837646759 -31.657162833881912, 116.64996189959415 -31.656468766960668, 116.64500517733335 -31.658048674921062, 116.64614243395494 -31.660724411523692, 116.64633555301117 -31.660934449018896, 116.64800925142373 -31.661089693818788, 116.65020329840772 -31.661646746555668))\nAYCA-1MO0PE\tParaweena Drive\tUnder construction\tPOLYGON ((144.75090726482 -37.811130011173, 144.75048778005 -37.8142684819762, 144.751514168957 -37.814356122844, 144.753865607387 -37.8145568276005, 144.754309943472 -37.8145948016425, 144.757534578004 -37.8148700087178, 144.757632505833 -37.8141477344387, 144.757765343634 -37.8141590694407, 144.757930856119 -37.8142394611497, 144.758170093581 -37.814259874457, 144.758313194819 -37.8132043348797, 144.754982498005 -37.8129200949585, 144.754948004025 -37.8131744478577, 144.751411542547 -37.8108681884176, 144.751446696458 -37.8107049076104, 144.751353403491 -37.8106969416681, 144.750990062705 -37.8109376800198, 144.75090726482 -37.811130011173))\n17341715\tCanobolas Meadows\tCheck with carrier\tPOLYGON ((149.0541512 -33.268190294, 149.054638688 -33.2682615745, 149.055263744 -33.268352983, 149.055868192 -33.268441376, 149.056121792 -33.2684784685, 149.05671856 -33.268565733, 149.05731024 -33.2686522575, 149.057669952 -33.268704853, 149.057839584 -33.26872968, 149.058271136 -33.268792783500004, 149.058636256 -33.2688461745, 149.058944 -33.2688911665, 149.059090848 -33.2681970465, 149.059231648 -33.267531657, 149.059276704 -33.267318611, 149.059383136 -33.266815448, 149.05946864 -33.2664114635, 149.059509216 -33.266219526, 149.059561472 -33.265972070000004, 149.0596424 -33.2655888055, 149.056386528 -33.265093172, 149.055780416 -33.2650044645, 149.05552688 -33.2649673535, 149.054833056 -33.264865807, 149.0541512 -33.268190294))\nAYAA-G1FKH\tRiemore Downs Estate\tReady for service\tPOLYGON ((153.115619080583 -27.8886882702533, 153.115670435819 -27.8860081581788, 153.111759677863 -27.8852706771765, 153.111330151558 -27.8857798171239, 153.11253016125 -27.886155663833, 153.113369175103 -27.8869181826115, 153.112580253056 -27.887592608393, 153.111706042377 -27.8881749096944, 153.112048301405 -27.8885617718044, 153.112393953229 -27.8890441195233, 153.113272998565 -27.8900095877092, 153.1133252006 -27.8900772535429, 153.114330113501 -27.8908264049759, 153.114932921195 -27.8912128735711, 153.115396953478 -27.8906733001938, 153.11611278637 -27.8896344141252, 153.11663756994 -27.8898399502847, 153.116845155854 -27.8894846899597, 153.115619080583 -27.8886882702533))\nAYAA-G3N4A\tSix Mile Creek Village\tUnder construction\tPOLYGON ((152.848832768594 -27.6355815192483, 152.845844766036 -27.6363554142549, 152.846966587568 -27.6403154462007, 152.848789588261 -27.6405667263019, 152.849676386002 -27.6407679880675, 152.849738332729 -27.6405485615946, 152.849078796198 -27.6403100548981, 152.849787294193 -27.6392823743815, 152.850215990947 -27.6374259987518, 152.849956706858 -27.6358382937849, 152.848832768594 -27.6355815192483))\n17354521\tDandenong LOGIS\tCheck with carrier\tPOLYGON ((145.192518016 -38.005410961, 145.192754176 -38.005443003, 145.197488512 -38.006053022, 145.19766096 -38.0052587615, 145.197799552 -38.004683578, 145.197455392 -38.0046316485, 145.197487456 -38.0044986335, 145.19765808 -38.0037904165, 145.197630016 -38.003674958000005, 145.197585728 -38.003577759, 145.197811456 -38.0024931595, 145.197289792 -38.002430074500005, 145.196671328 -38.0023528555, 145.195445536 -38.0023233295, 145.194984352 -38.0023141535, 145.194604576 -38.002306587, 145.19451744 -38.002326382, 145.193374432 -38.002587398500005, 145.193254208 -38.0026546275, 145.192575616 -38.004366414, 145.192812128 -38.0043950335, 145.192822912 -38.004401971, 145.192518016 -38.005410961))\n10233\tDalyellup\tReady for service\tPOLYGON ((115.62436580657959 -33.39171543951737, 115.6240439414978 -33.392199159357027, 115.62388300895691 -33.392118539570696, 115.62322854995728 -33.392996395440385, 115.6230354309082 -33.393927987890734, 115.62305688858032 -33.394017563561661, 115.62343239784241 -33.394035478684764, 115.62337875366211 -33.3945191856128, 115.62377572059631 -33.394537100632519, 115.62374353408813 -33.395119336762804, 115.6241512298584 -33.395131863194379, 115.62438189983368 -33.395109469572411, 115.62437653541565 -33.395257267370759, 115.62437653541565 -33.395512553884963, 115.6244570016861 -33.395512553884963, 115.62434434890747 -33.395929072377257, 115.6242424249649 -33.39630528091255, 115.62421023845673 -33.396479948607478, 115.62424778938293 -33.396833761580417, 115.62425315380096 -33.397003949585958, 115.62450528144836 -33.397254752355046, 115.62434434890747 -33.397424939536137, 115.62448918819427 -33.397510033001694, 115.62448382377625 -33.3975772119946, 115.62495589256287 -33.397841448862813, 115.62504172325134 -33.397836970278512, 115.62516510486603 -33.397716048415354, 115.62534749507904 -33.397617519365404, 115.62549769878387 -33.39753690460509, 115.6257176399231 -33.397487639992519, 115.62592685222626 -33.397496597196884, 115.62606632709503 -33.39752346880443, 115.62614142894745 -33.397501075798715, 115.62629699707031 -33.397017385466924, 115.62624335289001 -33.396932291518979, 115.62628626823425 -33.396735231530144, 115.62697291374207 -33.394746692092681, 115.62707483768463 -33.394545148394073, 115.62716603279114 -33.394509318354281, 115.62720894813538 -33.394142059594742, 115.62727868556976 -33.392789459073342, 115.62721431255341 -33.392735712922438, 115.62679052352905 -33.3925879108361, 115.62652766704559 -33.392534164560573, 115.62624335289001 -33.392480418251814, 115.62562108039856 -33.392269911555836, 115.62534213066101 -33.392193770710449, 115.62521874904633 -33.392131066434757, 115.62485933303833 -33.391938474448025, 115.62436580657959 -33.39171543951737))\nAYCA-1O7JIC\tSpring Mountain\tContracted\tPOLYGON ((152.906283 -27.7311679999831, 152.906484 -27.7301609999832, 152.906491 -27.7301209999831, 152.906482 -27.7300969999831, 152.906456 -27.7300899999831, 152.905424 -27.7302569999831, 152.904915 -27.7301749999831, 152.904674 -27.7301779999831, 152.904346 -27.7301489999832, 152.903913 -27.7302199999832, 152.903764 -27.7301939999831, 152.902866 -27.730398999983, 152.902318 -27.7309109999832, 152.902009 -27.7326529999831, 152.902328 -27.7329909999832, 152.902437 -27.7337069999831, 152.903099 -27.7344319999831, 152.903073 -27.7344759999832, 152.903043 -27.7344899999831, 152.903046 -27.7345199999831, 152.903144 -27.7346209999831, 152.904723 -27.7348459999831, 152.905387 -27.7342819999831, 152.905915 -27.7340059999831, 152.905941 -27.7339989999832, 152.905599 -27.7331209999832, 152.905538 -27.7331419999832, 152.905515 -27.7329589999832, 152.905742 -27.7329029999832, 152.905699 -27.7321529999832, 152.906354 -27.7321329999832, 152.906609 -27.7315059999831, 152.906607 -27.7314679999832, 152.906585 -27.7314359999831, 152.906563 -27.7314229999832, 152.906138 -27.7313099999831, 152.906283 -27.7311679999831))\n17319634\tWaldara Park Estate\tCheck with carrier\tMULTIPOLYGON (((146.302532992 -36.334407951500005, 146.30171184 -36.334312029, 146.301568928 -36.3341829545, 146.301566048 -36.334104033500005, 146.301519968 -36.334069013000004, 146.301297856 -36.3340749515, 146.301185888 -36.334079003, 146.30117904 -36.334079003, 146.301172928 -36.3339350175, 146.30151312 -36.3339250275, 146.301555968 -36.333887047000005, 146.301549856 -36.333752034, 146.301751072 -36.333747002, 146.301766912 -36.334117982500004, 146.301812992 -36.3341600145, 146.302468928 -36.3342359755, 146.30251392 -36.333981008500004, 146.302228096 -36.333946987000004, 146.302220896 -36.3337849825, 146.302206112 -36.3334419925, 146.302193152 -36.333152005, 146.302182016 -36.332899017500004, 146.30216688 -36.332574028, 146.30216112 -36.3324230125, 146.302152832 -36.332243007500004, 146.30214384 -36.332030979, 146.302135936 -36.3318640165, 146.29842288 -36.331432023, 146.297757952 -36.3328280145, 146.297909888 -36.333296009, 146.299123072 -36.334040042, 146.298722048 -36.3348710065, 146.299832992 -36.3349999885, 146.300792032 -36.3351120245, 146.30118192 -36.335786035, 146.301156 -36.3359619885, 146.301599872 -36.3360140105, 146.301831008 -36.336041002, 146.302028992 -36.3360639605, 146.302053856 -36.336048032, 146.302080832 -36.3358970165, 146.302106048 -36.335761023, 146.302131968 -36.3356139665, 146.302160032 -36.335456994000005, 146.302211872 -36.335162973500005, 146.302193152 -36.3351429935, 146.302166176 -36.335140015, 146.302194976 -36.3349790095, 146.302247872 -36.334680031, 146.302480096 -36.3347070225, 146.302496992 -36.334608029, 146.302532992 -36.334407951500005)), ((146.304649088 -36.334991978, 146.304450016 -36.334964968, 146.30424192 -36.3349369775, 146.30403312 -36.3349080065, 146.303813152 -36.3348780365, 146.303592832 -36.334847974, 146.30354208 -36.3351359635, 146.30358384 -36.335141014, 146.30355504 -36.3353020195, 146.30352912 -36.3354499825, 146.30350608 -36.335574987, 146.303484128 -36.3356999915, 146.303462176 -36.3358250145, 146.30343984 -36.335950019, 146.303417152 -36.3360750235, 146.30339088 -36.336222986500005, 146.30336208 -36.336383011500004, 146.30294304 -36.336333968, 146.302841888 -36.336394981, 146.302751872 -36.336903028, 146.302787168 -36.3369509985, 146.303166976 -36.3370629605, 146.303196128 -36.3370719515, 146.303224928 -36.337080961, 146.30325408 -36.3370910435, 146.303282176 -36.337102014, 146.303309888 -36.337113003, 146.303337952 -36.3371239735, 146.303366048 -36.3371360355, 146.303393056 -36.337149004000004, 146.30343408 -36.3371670045, 146.30347584 -36.3371869845, 146.303568 -36.336723023000005, 146.303664128 -36.336247018, 146.304276128 -36.336313988, 146.304363968 -36.336322979, 146.304443168 -36.3359390485, 146.304519136 -36.3355890285, 146.304587872 -36.3352730485, 146.304640096 -36.3350339915, 146.304649088 -36.334991978)))\n17312200\tBERRINBA STAGE 1\tCheck with carrier\tPOLYGON ((153.09164016 -27.646784993, 153.092394016 -27.648482035, 153.091418048 -27.6488330355, 153.090667072 -27.6471320345, 153.089670976 -27.647474044000003, 153.09122112 -27.6509760385, 153.096077888 -27.649132014, 153.096078976 -27.649132014, 153.09603504 -27.649035, 153.095329088 -27.647447034000002, 153.094344832 -27.6477980345, 153.093583072 -27.646097033500002, 153.09164016 -27.646784993))\n10691\tWannanup-Port Bouvard North\tReady for service\tPOLYGON ((115.63935399055481 -32.593080692667876, 115.64087212085724 -32.594982512703446, 115.64040005207062 -32.595348593068323, 115.64051806926727 -32.595515814465763, 115.640829205513 -32.596229891516266, 115.64063340425491 -32.596306263245282, 115.64075142145157 -32.596597767498821, 115.6408479809761 -32.596900569362631, 115.64058780670166 -32.597298277718679, 115.63873708248138 -32.596794821859746, 115.63755691051483 -32.595976801567119, 115.63693463802338 -32.595773425197109, 115.63668251037598 -32.596307640266147, 115.63651084899902 -32.597012672171864, 115.63636064529419 -32.597555000632049, 115.63597440719604 -32.598006938508021, 115.63666105270386 -32.5987933049781, 115.6365430355072 -32.599343743277771, 115.63622117042542 -32.599239799319065, 115.63629627227783 -32.598860176880152, 115.6361997127533 -32.598860176880152, 115.63615679740906 -32.5990545076153, 115.6352287530899 -32.59885565755571, 115.63476204872131 -32.598530265597141, 115.6347244977951 -32.597834284385435, 115.63543796539307 -32.597338069641886, 115.63580274581909 -32.597509806719088, 115.63661813735962 -32.595485096031446, 115.63622117042542 -32.595322394079552, 115.6362909078598 -32.594987032223251, 115.63568472862244 -32.594675184822584, 115.63686490058899 -32.593885180674185, 115.63882827758789 -32.593279555543653, 115.63935399055481 -32.593080692667876))\nAYCA-MUELL\tHarrington Grove\tReady for service\tPOLYGON ((150.752128700289 -34.0254648141925, 150.752091627378 -34.0256380663038, 150.751702767288 -34.02572244377, 150.751628630877 -34.0261322136239, 150.751582350199 -34.0264194901497, 150.751517398397 -34.0265058520008, 150.751502244514 -34.0265059152312, 150.751430432589 -34.0270414018592, 150.751813723383 -34.0270624611189, 150.751765506481 -34.0281142638624, 150.751885469058 -34.0281806975879, 150.751691410501 -34.0283333732674, 150.752991309681 -34.0291278851399, 150.75686197521 -34.02501428011, 150.756286932219 -34.024670173541, 150.756199303203 -34.024756121184, 150.755207874265 -34.0241320373933, 150.75470105434 -34.0239907786386, 150.754401933315 -34.024020279494, 150.752490147392 -34.0243869715516, 150.752499545292 -34.0245861095491, 150.752485712717 -34.0246529855531, 150.752471351099 -34.0246520507072, 150.752457872348 -34.0247115904538, 150.752476147099 -34.0247138115047, 150.752467962256 -34.0247821064058, 150.752381317013 -34.0250151631389, 150.752253483285 -34.0252295814984, 150.752223476762 -34.0252165400361, 150.752167312275 -34.0252959712637, 150.752202949833 -34.0253157746578, 150.75216789204 -34.025371065162, 150.752103866861 -34.0254429464049, 150.752128700289 -34.0254648141925))\nAYAA-F9DJ9\tMuirhead\tReady for service\tPOLYGON ((130.890501027488 -12.3553955559965, 130.890499390129 -12.3553977406598, 130.890481951958 -12.3556804638583, 130.89043494066 -12.3562270781828, 130.890416126005 -12.3563779141502, 130.890452705529 -12.3565411986863, 130.890660524393 -12.3574090730419, 130.890667851413 -12.3574412970815, 130.890685150395 -12.3575096914583, 130.890694427378 -12.3575509151752, 130.890711819093 -12.357630838281, 130.890929121219 -12.3585054040736, 130.891024559369 -12.3588944161929, 130.891406238662 -12.3604884366127, 130.891422563946 -12.3605556155893, 130.891432225102 -12.3605953714816, 130.891448681269 -12.3606630889699, 130.891538353034 -12.3610320894111, 130.891791958623 -12.3620756719483, 130.891866995451 -12.3623844450067, 130.89189457941 -12.3624979514632, 130.892016015218 -12.3622729005611, 130.892020691495 -12.3622728809732, 130.893300541636 -12.3622675138598, 130.893299539638 -12.3621284483712, 130.893299246591 -12.36208777655, 130.893298165295 -12.362033552259, 130.893298562818 -12.3619928756328, 130.893300152018 -12.3617074401759, 130.893484027608 -12.3617073204638, 130.893483997742 -12.3616621284303, 130.893667873286 -12.3616620085985, 130.893662300798 -12.3614344664555, 130.893671922207 -12.3613901101363, 130.893671134121 -12.3612807385154, 130.893666900171 -12.3612236463562, 130.893677509858 -12.3612236394407, 130.893658280531 -12.3609390209047, 130.893859033511 -12.3609194304315, 130.894008796818 -12.3608450701562, 130.894039822541 -12.3608271708207, 130.89401802029 -12.3607901020267, 130.894161281459 -12.3607086630144, 130.894026913811 -12.3604810317749, 130.894011073048 -12.3604560049433, 130.893983153991 -12.3604092332898, 130.893957561531 -12.3603663592702, 130.893653961525 -12.360543135769, 130.893621194398 -12.3605312213325, 130.89355706596 -12.3603580016507, 130.893850538616 -12.3601870678751, 130.893766781663 -12.3600467528244, 130.893664412184 -12.3598752565968, 130.893638819837 -12.3598323825306, 130.893610900924 -12.3597856108176, 130.893585308595 -12.3597427367434, 130.893462000232 -12.3595361616065, 130.893604726713 -12.3594538200584, 130.893581460997 -12.3594148436217, 130.893740045851 -12.3593233529553, 130.893882772116 -12.3592410112897, 130.893859506387 -12.3592020348795, 130.894018091002 -12.3591105440821, 130.8938947827 -12.358903969139, 130.89387198232 -12.358865772253, 130.893837151206 -12.3588076735057, 130.893815679373 -12.3587714493169, 130.893692371414 -12.3585648742297, 130.893473152645 -12.3581834083333, 130.89343599999 -12.3581479998874, 130.89307999999 -12.3575519998874, 130.89331799999 -12.3574149998873, 130.89330299999 -12.3573919998874, 130.893344388654 -12.3573681127312, 130.893155097395 -12.3570594022257, 130.892812541599 -12.3572384015202, 130.892760185316 -12.357163914355, 130.892611287221 -12.3569144642991, 130.892722295963 -12.3568504213448, 130.892638540891 -12.3567101056718, 130.892598894929 -12.3567329781458, 130.892505833862 -12.3565770717798, 130.892466187904 -12.3565999442334, 130.892382433056 -12.3564596284476, 130.892461724945 -12.3564138835636, 130.892368664094 -12.3562579771189, 130.892400380832 -12.3562396791724, 130.89224450416 -12.3559785357873, 130.892221704316 -12.3559403386829, 130.892188202518 -12.3558842123214, 130.892157473514 -12.3558505896893, 130.891864333544 -12.3553594836976, 130.891841533818 -12.3553212865446, 130.891808032193 -12.35526516011, 130.891785232485 -12.3552269629494, 130.891705940775 -12.3552727076049, 130.891582636386 -12.3550661310325, 130.891439911287 -12.35514847129, 130.89141664634 -12.3551094945515, 130.891273921155 -12.3551918347326, 130.891250656227 -12.3551528579789, 130.891107930955 -12.3552351980835, 130.891154460798 -12.3553131516161, 130.891011735409 -12.3553954916866, 130.890972917785 -12.3553304587341, 130.890864039473 -12.3553932719106, 130.890698558758 -12.3553944241631, 130.890501027488 -12.3553955559965), (130.892497629903 -12.3605397017425, 130.892719535333 -12.3605381586328, 130.892795541271 -12.3606435154972, 130.892820674219 -12.3607686489421, 130.892499293163 -12.3607708838958, 130.892497629903 -12.3605397017425), (130.891869935568 -12.3617234153559, 130.892205554484 -12.361721085407, 130.892207119287 -12.3619387094478, 130.891889885461 -12.3619402453606, 130.891871355524 -12.3619222853615, 130.891869935568 -12.3617234153559), (130.891892926405 -12.3613535542535, 130.892210053772 -12.3612791321969, 130.892212051704 -12.3615566086895, 130.891876487023 -12.3615589437392, 130.891875170866 -12.3613758278156, 130.891892926405 -12.3613535542535))\nAYCA-NZ9RQ\tGrantham Estate Riverstone\tReady for service\tPOLYGON ((150.866171279992 -33.6574602900158, 150.868533025251 -33.6605186444084, 150.869874491933 -33.6598180973201, 150.871526909636 -33.6588602374523, 150.871804692586 -33.6582298809302, 150.869756122322 -33.6555330055306, 150.866237318668 -33.6574053442407, 150.866171279992 -33.6574602900158))\nAYCA-GE6TE\tVoyager Point\tReady for service\tPOLYGON ((150.970919147374 -33.9612904042168, 150.970908863059 -33.9606380197032, 150.971215712992 -33.9602394780082, 150.971464695377 -33.9601044235468, 150.971766243742 -33.9600226718554, 150.972051195621 -33.9599989623086, 150.970304410155 -33.9571841309123, 150.967973485954 -33.9580085870113, 150.966707994362 -33.9586561861871, 150.96667979039 -33.9593650914321, 150.967131975615 -33.9606106611718, 150.967627337857 -33.9614052278831, 150.970919147374 -33.9612904042168))\n9\tRCA Cardinia Waters\tReady for service\tPOLYGON ((145.4930143046206 -38.0794393994041, 145.49344345806298 -38.0795069615482, 145.49582525966821 -38.08034303791537, 145.49608275173364 -38.080680843837122, 145.49642607448754 -38.080875081535481, 145.496865956766 -38.080925752154563, 145.49709126232324 -38.080875081535481, 145.49899026630578 -38.08189693223396, 145.4995159792727 -38.0820489418615, 145.49995586155114 -38.08212494655676, 145.5005244898623 -38.079211376706972, 145.49420520542321 -38.078383732795274, 145.49328252552209 -38.078164152226073, 145.4930143046206 -38.0794393994041))\n179\tGemlife Bribie Island\tReady for service\tPOLYGON ((153.16211615558882 -27.061404864414, 153.16302810665232 -27.063248817059335, 153.16424046512662 -27.063411236306255, 153.16865001674753 -27.061930346236231, 153.16748057361505 -27.059369793399984, 153.16214834209072 -27.061414418651186, 153.16211615558882 -27.061404864414))\nAYCA-Q13UU\tLot 502 Jane Brook Drive\tReady for service\tPOLYGON ((116.062904454047 -31.8615610033738, 116.063059079205 -31.8573268459033, 116.062522009928 -31.8574419140424, 116.062230625947 -31.8562302562604, 116.062137025318 -31.856056528226, 116.05934988 -31.8570425100102, 116.05933872 -31.8574077300113, 116.05869324 -31.8572948700114, 116.058691806194 -31.859259968134, 116.059360734452 -31.8592718241528, 116.059547872855 -31.8591058005127, 116.060985112629 -31.8591291340891, 116.061085739655 -31.8591570349995, 116.061025530351 -31.8593369167361, 116.060988080984 -31.8596160018753, 116.060878386752 -31.8599505614195, 116.060831196563 -31.8603501273169, 116.060856762045 -31.8606212270566, 116.060939858883 -31.8606907920096, 116.061184113654 -31.8613704953309, 116.061182646528 -31.8615137722717, 116.061444002245 -31.86154680161, 116.062904454047 -31.8615610033738))\nAYCA-1DF126\tMistful Park\tUnder construction\tPOLYGON ((149.703161000029 -34.7264160000054, 149.703132000029 -34.7266480000054, 149.703118000029 -34.7267670000054, 149.703116000029 -34.7268800000054, 149.703115000029 -34.7270560000054, 149.703113000029 -34.7272120000054, 149.703112000029 -34.7273650000054, 149.703112000029 -34.7273990000054, 149.703124000029 -34.7275180000054, 149.703144000029 -34.7276990000054, 149.703171000029 -34.7279580000054, 149.703179000029 -34.7280280000054, 149.703370000029 -34.7281600000054, 149.703568000029 -34.7282960000054, 149.703870000029 -34.7285040000054, 149.704036000029 -34.7286180000054, 149.704437000029 -34.7288940000054, 149.704577000029 -34.7287530000053, 149.704788000029 -34.7285450000053, 149.704791000029 -34.7285490000053, 149.704878785537 -34.7286087059075, 149.70515374104 -34.7284029396157, 149.705310217819 -34.7283470993515, 149.70554864652 -34.7282620131985, 149.705566063545 -34.7282557976974, 149.70559311025 -34.7282461457082, 149.706221151919 -34.7282080470846, 149.706244856673 -34.7282066090287, 149.706260957806 -34.728205632246, 149.706271001573 -34.7282050229352, 149.706347362233 -34.7282003904445, 149.706462159258 -34.728193426084, 149.706474703201 -34.7281926650774, 149.706495994442 -34.728191373393, 149.706584858935 -34.7281859821739, 149.706678620241 -34.7281802938039, 149.706700000029 -34.7281790000052, 149.706721999494 -34.7281776620193, 149.706896839314 -34.7281670544673, 149.7069486925 -34.7281639084795, 149.706961131396 -34.7281631537951, 149.70696903037 -34.7281626745532, 149.707008168901 -34.7281602999554, 149.707075972594 -34.7281561861658, 149.707113906239 -34.7281538846367, 149.707176023702 -34.7281501157888, 149.707226012033 -34.7281470828274, 149.707259105091 -34.728145074948, 149.707402956419 -34.7281363468443, 149.707495976174 -34.7281307028275, 149.707547940966 -34.7281275498081, 149.707592991868 -34.7281248162782, 149.70762995421 -34.7281225735209, 149.707686934536 -34.7281191161136, 149.707766016036 -34.7281143176238, 149.707815180986 -34.7281113343775, 149.707856948832 -34.728108799959, 149.707916025239 -34.7281052152549, 149.707983002733 -34.7281011510844, 149.708033838012 -34.7280980663927, 149.70808235483 -34.7280951223654, 149.708118000029 -34.7280930000052, 149.708198004933 -34.7280881045741, 149.708417254329 -34.7280747999426, 149.708563961141 -34.7280898996742, 149.708616571535 -34.7279166867609, 149.708671826458 -34.7277347661531, 149.708968930131 -34.7277347556956, 149.7094121292 -34.7276531559782, 149.710010649344 -34.7278053547375, 149.710138000029 -34.7276760000051, 149.708542000029 -34.7261040000052, 149.708682000029 -34.7251650000052, 149.708092000029 -34.7251390000052, 149.707965000029 -34.7251340000052, 149.707827000029 -34.7251280000052, 149.707602000029 -34.7251180000052, 149.707394000029 -34.7251090000052, 149.707388000029 -34.7251080000053, 149.707332000029 -34.7251060000052, 149.707154000029 -34.7251370000052, 149.707119000029 -34.7251440000052, 149.707065000029 -34.7251530000053, 149.706614000029 -34.7252320000052, 149.706407000029 -34.7252870000053, 149.706353000029 -34.7253490000053, 149.706307000029 -34.7254020000053, 149.706216000029 -34.7255060000053, 149.706147000029 -34.7255850000053, 149.706080000029 -34.7256630000053, 149.706008000029 -34.7257460000053, 149.705816000029 -34.7259670000053, 149.705687000029 -34.7261130000053, 149.705547000029 -34.7262510000053, 149.705406000029 -34.7263890000053, 149.705266000029 -34.7265270000053, 149.705194000029 -34.7265980000053, 149.705012000029 -34.7266990000054, 149.704831000029 -34.7268010000053, 149.704522000029 -34.7269730000054, 149.704312000029 -34.7269080000054, 149.703853000029 -34.7267640000054, 149.703710000029 -34.7264620000054, 149.703524000029 -34.7264470000054, 149.703161000029 -34.7264160000054))\nAYAA-F9C6X\tParamount Park\tReady for service\tPOLYGON ((150.516972407757 -23.275657059569, 150.517201922469 -23.2760474913148, 150.517248721618 -23.2774489046606, 150.517108283998 -23.2780381039765, 150.517178012798 -23.2785634420809, 150.517991777929 -23.2796564903346, 150.518314856632 -23.2794838739758, 150.518759007994 -23.2792119934391, 150.519106015994 -23.2785419974391, 150.519403999994 -23.2787109949391, 150.519092363994 -23.2790262465703, 150.51914164653 -23.279185439298, 150.520471395306 -23.2784011376173, 150.521215078611 -23.2772406164104, 150.521959475225 -23.2773987809659, 150.521484196837 -23.2760793906524, 150.521157662717 -23.2757884785098, 150.520161736198 -23.2752389863286, 150.519970633307 -23.2752749159387, 150.519802694857 -23.2748804006593, 150.519575390266 -23.2749629834395, 150.518703404749 -23.2755212013386, 150.516972407757 -23.275657059569))\nAYCA-1D18C9\tThe Fairways\tReady for service\tPOLYGON ((152.483766 -27.5271879999808, 152.484363004872 -27.5244290254236, 152.48427024534 -27.5244119094026, 152.476147679693 -27.5231725608009, 152.476126 -27.5232979999814, 152.475968 -27.5241279999815, 152.476412 -27.5242789999814, 152.476509 -27.5237669999814, 152.477369 -27.5239529999814, 152.47758 -27.5240109999814, 152.477608 -27.5238569999814, 152.478468 -27.5239839999815, 152.478379 -27.5244519999814, 152.478775 -27.5245319999814, 152.478721 -27.5248179999814, 152.480299 -27.5250819999814, 152.480322 -27.5252169999814, 152.480405 -27.5254309999814, 152.480487 -27.5256439999814, 152.480581 -27.5258339999815, 152.480663 -27.5260019999815, 152.480674 -27.5260249999814, 152.480771 -27.5266499999814, 152.480847 -27.5271389999815, 152.481053 -27.5271049999814, 152.481257 -27.5270719999808, 152.482732 -27.5268309999808, 152.48269 -27.5270319999808, 152.483766 -27.5271879999808))\n17337667\tLoc 1017 Redgate Road Witchcliffe\tCheck with carrier\tPOLYGON ((115.074863008 -34.0241140025, 115.074860992 -34.026132001, 115.081839008 -34.026125008, 115.08184 -34.0241169995, 115.074863008 -34.0241140025))\n10185\tCanningvale-Avenues\tReady for service\tPOLYGON ((115.92247389256954 -32.091735413584288, 115.92255435883999 -32.0914934065377, 115.92271596193314 -32.091376379426087, 115.92263750731945 -32.091302527288235, 115.92288359999657 -32.091105966691941, 115.92299290001392 -32.091009390521513, 115.92301771044731 -32.091029841954359, 115.92324502766132 -32.090840524001742, 115.92325005680323 -32.090846418002428, 115.9232671558857 -32.0908329967232, 115.92353671789169 -32.090616835742722, 115.92376537621021 -32.090592407531418, 115.92446945607662 -32.090027716361512, 115.92501863837242 -32.089591413349432, 115.92521175742149 -32.089538579640141, 115.925482660532 -32.089319859120792, 115.92506423592567 -32.088935818708464, 115.92460423707962 -32.0885176900337, 115.92448957264423 -32.088417134346884, 115.92399001121521 -32.088035362596244, 115.92367753386497 -32.087875722447812, 115.92365875840187 -32.087932533920508, 115.92331074178219 -32.08788253982641, 115.92312432825565 -32.087851293503718, 115.92301972210407 -32.087754713893275, 115.92260599136353 -32.087817206594046, 115.9223049134016 -32.088059791491155, 115.92249535024166 -32.088233066023378, 115.9223411232233 -32.0883580507279, 115.92217013239861 -32.088202956046281, 115.92188782989979 -32.088430200911326, 115.92175036668777 -32.088304648193244, 115.92162296175957 -32.088338663907095, 115.92146538197994 -32.088379567963763, 115.92131081968546 -32.08850316769734, 115.92097587883472 -32.088765386055719, 115.92063792049885 -32.089036941932164, 115.9202966094017 -32.08930736078959, 115.92006526887417 -32.089098297541433, 115.91991037130356 -32.089219872423293, 115.91980174183846 -32.089121021830714, 115.91993115842342 -32.089017058161069, 115.91978028416634 -32.088878723805195, 115.91962069272995 -32.088734140034894, 115.91937594115734 -32.088932978166859, 115.91937527060509 -32.088932410058526, 115.91958314180374 -32.089124430473611, 115.91959722340107 -32.089136360722769, 115.91959840813172 -32.089139873780006, 115.91959856450558 -32.089139769365104, 115.91959856450558 -32.089140337472145, 115.91959840813172 -32.089139873780006, 115.91951943933964 -32.089192603304987, 115.92005722224712 -32.089680321619213, 115.92013970017433 -32.089761276358296, 115.91962270438671 -32.090242458485235, 115.91983778402209 -32.0904322037513, 115.92003207653761 -32.090607178078564, 115.92023575678468 -32.090786696845313, 115.92031605541706 -32.090834416964483, 115.92052409425378 -32.090951728818148, 115.92069659382105 -32.09105199766811, 115.92113949358463 -32.091304799662595, 115.92144627124071 -32.091432904675905, 115.92176981270313 -32.091563281877541, 115.92247389256954 -32.091735413584288))\n50\tEncore\tReady for service\tPOLYGON ((144.721116645 -37.712129506, 144.720637702 -37.714672705, 144.726632018 -37.71543235, 144.726701496 -37.714460761, 144.726505218 -37.71346157, 144.721116645 -37.712129506))\n17318655\tNEVERWOODS ESTATE\tCheck with carrier\tPOLYGON ((152.499962176 -32.0491919755, 152.500658048 -32.048289009, 152.501113088 -32.048442004, 152.502008032 -32.049075962, 152.502375968 -32.049469975, 152.502990848 -32.0497260335, 152.503872832 -32.049988012, 152.50462992 -32.050436045, 152.505753856 -32.0504709545, 152.506999072 -32.050279979, 152.507778112 -32.0498379955, 152.509086016 -32.049812965, 152.50920192 -32.0497029825, 152.509316032 -32.0495139865, 152.509411072 -32.049255967, 152.509364992 -32.0489399685, 152.509179968 -32.048790026, 152.508966112 -32.048657011, 152.507117152 -32.048892997, 152.506559872 -32.049189996, 152.505138976 -32.049358013, 152.504323936 -32.0489469985, 152.50354416 -32.048738004, 152.503292896 -32.0484899745, 152.502806176 -32.048207017, 152.502968896 -32.0474439845, 152.502692032 -32.0469429675, 152.500456096 -32.046671961, 152.500456096 -32.046671961, 152.499962176 -32.0491919755))\nAYCA-1FLSZY\tFrizzo Road, Palmview\tReady for service\tPOLYGON ((153.039069 -26.7471129999749, 153.039389 -26.7476789999749, 153.040121 -26.7475959999749, 153.040161 -26.7479339999748, 153.039616 -26.7480869999749, 153.039571 -26.7482089999749, 153.039604 -26.7483479999748, 153.039635 -26.7485269999749, 153.039801 -26.7487289999749, 153.039934 -26.7489319999749, 153.039903 -26.7492309999748, 153.039933 -26.7492409999749, 153.040068 -26.7493019999749, 153.040195 -26.7493749999749, 153.040312 -26.7494599999749, 153.040419 -26.7495559999749, 153.040514 -26.7496599999749, 153.040552 -26.7497119999749, 153.040597 -26.7497739999748, 153.040666 -26.7498939999749, 153.04072 -26.7500199999749, 153.040759 -26.7501509999749, 153.040785 -26.7502849999749, 153.040792 -26.7503209999748, 153.040815943059 -26.7504170308685, 153.040870145446 -26.7505432598077, 153.040908753977 -26.7505903070147, 153.040959442987 -26.7506102957128, 153.04100356553 -26.7506327315275, 153.041319 -26.7504829999749, 153.041452 -26.7504189999749, 153.041587 -26.7503589999749, 153.04173 -26.7503169999749, 153.041888 -26.7502859999749, 153.042216 -26.7502729999749, 153.042176 -26.7503289999749, 153.042363 -26.7509979999749, 153.043676976103 -26.7507477170718, 153.043715 -26.7501859999742, 153.04389048 -26.7493223699749, 153.04392684 -26.7488268299743, 153.04383648 -26.748336869974, 153.042934682941 -26.7481753576203, 153.043086836471 -26.7473785503111, 153.042764 -26.7473429999749, 153.041661606519 -26.7472356670633, 153.041625225608 -26.7474669583709, 153.041016455965 -26.7473960088948, 153.040896408686 -26.7472990230945, 153.04083862658 -26.7473486189176, 153.04077175077 -26.7473501201468, 153.04071573888 -26.7473102914226, 153.040663730384 -26.7472805260552, 153.040996311263 -26.746373881797, 153.040588011102 -26.7463024969866, 153.040296854779 -26.7464045144084, 153.040247134944 -26.7465400534082, 153.039984539411 -26.7465772289911, 153.0397697554 -26.746556245266, 153.039474604376 -26.7463615335426, 153.039189620222 -26.74626273457, 153.039159 -26.7462769999748, 153.039041 -26.7463599999748, 153.039004 -26.7464179999748, 153.039 -26.7464609999748, 153.039 -26.7464999999748, 153.039019 -26.7465359999749, 153.039113 -26.7466419999748, 153.039192 -26.7467199999749, 153.039071 -26.7468199999742, 153.039069 -26.7471129999749))\nAYCA-EUUAD\tWindmill Downs\tReady for service\tPOLYGON ((150.900431984145 -31.039191773641, 150.900175661044 -31.03916956619, 150.900129545319 -31.0404095781991, 150.900023168216 -31.042994975882, 150.902926149129 -31.0433984226754, 150.903714580225 -31.0391248217961, 150.902764477409 -31.0392643271721, 150.901201024343 -31.0390358631377, 150.901106533018 -31.039105639639, 150.900951854081 -31.0390848307371, 150.90090394287 -31.0389924490125, 150.900431984145 -31.039191773641))\n10687\tWannanup-Port Bouvard North\tReady for service\tPOLYGON ((115.64025521278381 -32.600238560195571, 115.63976168632507 -32.600713080692266, 115.64028203487396 -32.601770574471466, 115.6393164396286 -32.602208933617604, 115.63930571079254 -32.602489120814134, 115.64119935035706 -32.604016577538758, 115.64049661159515 -32.604540787452891, 115.63801288604736 -32.603204060231462, 115.63579201698303 -32.602300234632487, 115.63512682914734 -32.602146583373774, 115.63538432121277 -32.601857356760092, 115.63565254211426 -32.601269862326284, 115.6360924243927 -32.600926402257336, 115.63666105270386 -32.600212362636611, 115.63696146011353 -32.599714325105708, 115.63735842704773 -32.600084905400827, 115.63810408115387 -32.600351541494192, 115.63860297203064 -32.599519995801721, 115.63960611820221 -32.600026154968461, 115.63986361026764 -32.60008896567566, 115.63996553421021 -32.599987282215316, 115.64025521278381 -32.600238560195571))\nAYCA-DGEDI\tAmberton\tReady for service\tPOLYGON ((115.665663637788 -31.5957645503307, 115.665797781717 -31.5966551862201, 115.666171140618 -31.5966851977679, 115.666216806295 -31.5968560489338, 115.666240220472 -31.5969091870205, 115.666502755744 -31.5967332559472, 115.666648489709 -31.5967984699923, 115.666815732111 -31.5971172709415, 115.666813534778 -31.5975922501303, 115.666813683369 -31.5976796256374, 115.667108442873 -31.5976874802656, 115.667107213397 -31.5981676129245, 115.66681491166 -31.5981673821041, 115.666808652814 -31.5986474561843, 115.666906194858 -31.5986573584982, 115.666890588294 -31.599331185176, 115.669781853807 -31.5993425026873, 115.669781586458 -31.5993314561279, 115.669725344295 -31.5991326940996, 115.669732680715 -31.5990473757851, 115.669763667594 -31.5989599622537, 115.669731586428 -31.5984843928446, 115.669733936602 -31.5983502934246, 115.669718028576 -31.5982842845983, 115.669731999999 -31.596859000007, 115.669739999999 -31.5964060000116, 115.669697999997 -31.5961750000032, 115.669605740385 -31.595823818264, 115.669632 -31.5957480000074, 115.669689000001 -31.5956880000071, 115.669860999984 -31.5955850000182, 115.670099000011 -31.5954240000003, 115.670324999998 -31.5952510000101, 115.670356999999 -31.5952230000094, 115.670538000008 -31.5950660000001, 115.670647999999 -31.5949580000095, 115.670736999998 -31.5949490000088, 115.670846999999 -31.5947490000094, 115.671237999999 -31.5942860000095, 115.671602999999 -31.5938990000094, 115.671642707904 -31.5938311557375, 115.670955630495 -31.5934460584213, 115.67089267092 -31.5935054691482, 115.671140798595 -31.5938874907986, 115.670728999999 -31.5944500000094, 115.670653999999 -31.5945380000095, 115.670498999999 -31.5947100000094, 115.670311999999 -31.5948940000095, 115.670128999999 -31.5950530000095, 115.669883999999 -31.5952410000094, 115.669746729813 -31.5953326418564, 115.669623128147 -31.5951244207746, 115.669289999999 -31.5952690000095, 115.669257999999 -31.5952160000094, 115.669181999999 -31.5951360000096, 115.668989121906 -31.5948114066403, 115.66887252205 -31.5946141584708, 115.668840916121 -31.5946273052705, 115.669005369575 -31.594930237496, 115.668574344036 -31.5951110979983, 115.66854610469 -31.5950511392905, 115.668227377792 -31.5951587755998, 115.667969907894 -31.5952251026957, 115.667993750109 -31.5953076106771, 115.667674600765 -31.5953977367087, 115.667628486432 -31.5952686552074, 115.666315769232 -31.5955160129109, 115.666342358364 -31.5956389611602, 115.665663637788 -31.5957645503307))\nAYCA-LQAH1\tLot 511 Kalgan Drive Newman Townsite\tUnder construction\tPOLYGON ((119.753393000012 -23.3608589999371, 119.750556000012 -23.3556319999371, 119.749000104684 -23.3562742534904, 119.74916747271 -23.3566538577242, 119.749325752508 -23.3570620670885, 119.749419588671 -23.3573688434166, 119.749557782807 -23.3579301288632, 119.749835979758 -23.359133208927, 119.750054038173 -23.3600954317883, 119.750380560564 -23.3607020405614, 119.751502679302 -23.3621169289708, 119.751584000012 -23.3621319999372, 119.753355000012 -23.3610359999371, 119.753393000012 -23.3608589999371))\nAYCA-HT2UX\tRidge Road Estate\tReady for service\tPOLYGON ((145.140747839996 -37.5105770100269, 145.140856505757 -37.5105787210029, 145.142060697802 -37.51084290784, 145.146324959996 -37.5060673800269, 145.145797919996 -37.5055954200268, 145.145065112109 -37.5049407154907, 145.143100039479 -37.506276944471, 145.142547462712 -37.5060097839102, 145.140747839996 -37.5105770100269))\nAYCA-1J8WWD\tJimboomba Woods\tUnder construction\tPOLYGON ((153.046244 -27.8632579999842, 153.045056 -27.8631109999843, 153.044564 -27.8632259999843, 153.043131 -27.8622169999842, 153.042498 -27.8622189999842, 153.042334 -27.8621599999842, 153.041303 -27.8620179999842, 153.040965 -27.8624819999842, 153.041431 -27.8629789999842, 153.041586 -27.8634999999842, 153.041949 -27.8639779999843, 153.042585 -27.8642499999842, 153.04318 -27.8649649999842, 153.043602 -27.8650689999842, 153.043498 -27.8652389999843, 153.043226 -27.8656059999842, 153.04331 -27.8656579999842, 153.043442 -27.8654789999842, 153.0436 -27.8655649999842, 153.043985 -27.8658209999842, 153.045347 -27.8658429999842, 153.045638213312 -27.8658916052704, 153.045671 -27.8658669999842, 153.046804 -27.8657139999843, 153.046617 -27.8649319999842, 153.046982 -27.8641749999842, 153.047233 -27.8641709999842, 153.047898 -27.8640399999842, 153.046244 -27.8632579999842))\n217\tGolden Grove\tUnder construction\tMULTIPOLYGON (((144.28606911036462 -36.710448380748566, 144.28776642917768 -36.709594857966394, 144.28343197940947 -36.705818906185094, 144.28396842121839 -36.708240181345992, 144.28597471356164 -36.709560453776092, 144.28596398472166 -36.710394751042557, 144.28606911036462 -36.710448380748566)), ((144.28416154026564 -36.713258816028286, 144.28785225987036 -36.711358052081493, 144.28606911036462 -36.710448380748566, 144.28540608525083 -36.710781793090106, 144.28392550587654 -36.710437755810545, 144.28306719898586 -36.712673970591815, 144.28416154026564 -36.713258816028286)))\n209\tEden\tReady for service\tPOLYGON ((150.7617563462324 -34.012448700328783, 150.76438491106825 -34.014974361234181, 150.76694910288234 -34.01266213936799, 150.76330129861947 -34.00964726320337, 150.7617563462324 -34.012448700328783))\nAYCA-1CRLQU\tMoncrieff Residential Estate\tUnder construction\tPOLYGON ((149.104790000007 -35.1564860000211, 149.105470000007 -35.1570530000211, 149.105992695338 -35.1579576985545, 149.106731000007 -35.158476000021, 149.107832000007 -35.159357000021, 149.108161000007 -35.159579000021, 149.109241000007 -35.159910000021, 149.109317000007 -35.160038000021, 149.109422000007 -35.159771000021, 149.109952000007 -35.159762000021, 149.110044000015 -35.1594190000162, 149.110141497117 -35.1590480525773, 149.110236000007 -35.158692000021, 149.110448000007 -35.158188000021, 149.110421000007 -35.158132000021, 149.110397000007 -35.1581190000209, 149.110502000007 -35.157912000021, 149.109323000007 -35.157463000021, 149.109468000007 -35.157206000021, 149.109022000007 -35.156800000021, 149.108923000007 -35.156858000021, 149.108766000007 -35.156674000021, 149.108638000007 -35.156693000021, 149.108575000007 -35.156647000021, 149.108529000007 -35.156542000021, 149.108322000007 -35.1566040000209, 149.108355000007 -35.156686000021, 149.108036000007 -35.156782000021, 149.107152000007 -35.154796000021, 149.104790000007 -35.1564860000211))\n10234\tDalyellup\tReady for service\tPOLYGON ((115.62284231185913 -33.391038213222714, 115.62254190444946 -33.391481626633279, 115.62271356582642 -33.391580162639563, 115.62193036079407 -33.392628220520947, 115.62184721231461 -33.39287186277533, 115.62179356813431 -33.393057734448092, 115.62176406383514 -33.393403058607191, 115.62178552150726 -33.394518275865614, 115.62171578407288 -33.394522754620937, 115.6216835975647 -33.395096033396463, 115.62178015708923 -33.39508707594468, 115.62174260616302 -33.3952348737811, 115.62160849571228 -33.39563347881419, 115.6215226650238 -33.396126134194091, 115.62149584293365 -33.396318716901547, 115.62151730060577 -33.396793453846072, 115.62178552150726 -33.397765312898429, 115.62195718288422 -33.397725005596172, 115.62205374240875 -33.3980295491947, 115.62214493751526 -33.398011634894921, 115.62242388725281 -33.397962370551475, 115.62270820140839 -33.3979310205002, 115.62291741371155 -33.397948934816604, 115.62325537204742 -33.397966849129304, 115.62352895736694 -33.397971327706912, 115.62371671199799 -33.397926541920526, 115.62385618686676 -33.39786832036372, 115.62394201755524 -33.397810098767913, 115.62416195869446 -33.397644390935554, 115.62449991703033 -33.397232359280096, 115.62425315380096 -33.3969905137029, 115.62419950962067 -33.396466512643414, 115.62443017959595 -33.395499117771337, 115.62436580657959 -33.395499117771337, 115.62436580657959 -33.395248309935596, 115.62435507774353 -33.395113948297265, 115.62403321266174 -33.395122905746284, 115.62378108501434 -33.395104990847337, 115.6237006187439 -33.395082597218433, 115.62377035617828 -33.394513797110065, 115.6233412027359 -33.394491403328843, 115.62340557575226 -33.394021132590396, 115.62299251556396 -33.394003217464331, 115.62301933765411 -33.393855417533388, 115.62314808368683 -33.393407537419982, 115.62320172786713 -33.392991006843225, 115.62392592430115 -33.392100624052468, 115.62403321266174 -33.392172286103218, 115.62433362007141 -33.391688566114013, 115.62284231185913 -33.391038213222714))\n252\tTonsley Village \tReady for service\tPOLYGON ((138.56730763673485 -35.008155671689565, 138.56888477564172 -35.00821718537032, 138.56934075117346 -35.006626602480118, 138.57153479814846 -35.006907812755138, 138.57171718835576 -35.006033421385254, 138.57100372076403 -35.004908562461694, 138.57011322737148 -35.004376885478116, 138.56693749189574 -35.003792476212489, 138.56730763673485 -35.008155671689565))\n17320872\tThe Beacons\tCheck with carrier\tPOLYGON ((147.604363936 -37.777715995, 147.604115872 -37.7789650225, 147.605047936 -37.779051954, 147.604867936 -37.779949981, 147.606004096 -37.7800649955, 147.605825152 -37.780929001000004, 147.611583008 -37.781604991, 147.611940832 -37.779890041, 147.606892928 -37.7793019815, 147.606688096 -37.779505019, 147.60597888 -37.7789850025, 147.606114976 -37.777911022, 147.604363936 -37.777715995))\n10377\tHalls Head-Port Mandurah\tReady for service\tPOLYGON ((115.70966005325317 -32.535507592267805, 115.71018576622009 -32.535756330368152, 115.7109260559082 -32.535896527902963, 115.712149143219 -32.535842257915448, 115.71253538131714 -32.537696463908148, 115.71199893951416 -32.539360694246909, 115.71112453937531 -32.539148144807477, 115.70982098579407 -32.538971773614115, 115.70907533168793 -32.538777312666063, 115.70850133895874 -32.538492404005012, 115.70824384689331 -32.538096696031829, 115.70814728736877 -32.537511045031586, 115.70843696594238 -32.53598697780928, 115.70899486541748 -32.53502820416756, 115.70966005325317 -32.535507592267805))\nAYCA-LGXW5\tWedgefield\tContracted\tPOLYGON ((118.596070833098 -20.3827064266398, 118.596246747185 -20.3826343468397, 118.596483255604 -20.3831472645966, 118.596376360026 -20.3831910645415, 118.596512375584 -20.3834862113145, 118.598591166694 -20.3845738101998, 118.598977610629 -20.3845956972308, 118.598886973677 -20.3861129995032, 118.599510087754 -20.3861460738921, 118.599548566902 -20.3863277852896, 118.599882453997 -20.3862857306508, 118.599848016698 -20.3861236015089, 118.599857883612 -20.3859584082551, 118.600480995882 -20.3859914976342, 118.600632157641 -20.3834605393934, 118.600438229095 -20.3834502411566, 118.600476071294 -20.3828166433148, 118.600987107084 -20.3828206454671, 118.601081644224 -20.3824496848751, 118.598598659957 -20.3812701281307, 118.598156805067 -20.381248836707, 118.597567912063 -20.380754262216, 118.598142774986 -20.3815780859796, 118.595957645929 -20.3824734466176, 118.596070833098 -20.3827064266398))\nAYCA-TBR12\tShoal Point Bay Develoment\tContracted\tPOLYGON ((149.152767009298 -21.0044656120105, 149.152912236234 -21.0039649741764, 149.150880768266 -21.0035614058604, 149.14524433356 -21.0027776601243, 149.144505462245 -21.0019983582167, 149.14410074787 -21.001832003054, 149.14403663021 -21.0020236669109, 149.144113873249 -21.0020824746328, 149.14389478759 -21.0029712187093, 149.143830613198 -21.0030139895235, 149.143333841419 -21.002969930061, 149.143323360848 -21.0029173931365, 149.143347890232 -21.002833313435, 149.143201036213 -21.0028126255578, 149.143175888946 -21.0029137864312, 149.14316609651 -21.0029319549624, 149.143124371745 -21.0029473643664, 149.142643265843 -21.0028973185933, 149.14261860933 -21.0028877629439, 149.142603170264 -21.0028673356926, 149.142613533374 -21.0027940105127, 149.142472962855 -21.0027636354981, 149.142460554428 -21.0028143079234, 149.142448655659 -21.0028349567158, 149.142419428351 -21.0028544567521, 149.142389131653 -21.0028544340063, 149.1422874989 -21.003178947607, 149.143305460302 -21.0037085556173, 149.14332700077 -21.0036880078478, 149.143673947233 -21.0039195322401, 149.142617701618 -21.0051435059043, 149.142133328146 -21.0051443704301, 149.142096359624 -21.0058433422709, 149.142490692199 -21.0058617322204, 149.142443470219 -21.0067546122353, 149.142180253539 -21.0071458427798, 149.142428320561 -21.0073000527987, 149.142514188327 -21.0073192555383, 149.142350546461 -21.0075550552753, 149.142471333171 -21.007600440401, 149.142668326928 -21.0076067460386, 149.143299990103 -21.0075254943649, 149.143340573208 -21.0077931806354, 149.143504522822 -21.0077729061815, 149.143814986576 -21.007997308632, 149.14388507412 -21.0080317149836, 149.143961156311 -21.0080519923961, 149.144081769814 -21.0080512574579, 149.144648241667 -21.0036401960807, 149.145002312877 -21.0034935982463, 149.151659523415 -21.0042425652931, 149.152767009298 -21.0044656120105))\nAYCA-1D96QE\tCasey 4\tReady for service\tPOLYGON ((149.099585000007 -35.1740050000209, 149.099496000014 -35.1737140000163, 149.099359000007 -35.1734510000209, 149.099202000014 -35.1731760000162, 149.098917000007 -35.1726930000209, 149.098608000014 -35.1724560000163, 149.098568000007 -35.1723380000208, 149.098573000007 -35.1718710000207, 149.098137000007 -35.1712390000208, 149.097569000007 -35.1712290000209, 149.097403000007 -35.1712110000209, 149.097141000007 -35.1712020000208, 149.097014000007 -35.1711960000208, 149.096288000007 -35.1712640000209, 149.094428000007 -35.171044000021, 149.093941000007 -35.1710530000208, 149.093758000007 -35.1710830000209, 149.093526000007 -35.1711540000209, 149.093681000021 -35.1717150000121, 149.093675000007 -35.1718580000209, 149.093581000007 -35.1723040000208, 149.093453000014 -35.1729050000164, 149.093415000007 -35.1730470000209, 149.093327224863 -35.1732995284712, 149.093433290007 -35.1733206050462, 149.093908806007 -35.1734303630463, 149.093955294007 -35.1732945760463, 149.094152338007 -35.1733753640463, 149.094329883113 -35.1734478857257, 149.094304580007 -35.1734881660462, 149.094196701021 -35.1736655610373, 149.094717186021 -35.1738789550372, 149.09507531335 -35.1740365302252, 149.095237354007 -35.1737700680463, 149.096140845014 -35.1741404780418, 149.096713089654 -35.174226460757, 149.099585000007 -35.1740050000209), (149.095109355738 -35.1731168702425, 149.095283337947 -35.1730419545781, 149.095379214008 -35.1731890877557, 149.095295050662 -35.1732211647142, 149.095219214007 -35.1732570877779, 149.095109355738 -35.1731168702425), (149.095898093007 -35.1731241190463, 149.095835620014 -35.1726401400416, 149.096236760014 -35.1726052310417, 149.096297121014 -35.1726452940417, 149.096348027007 -35.1730396470461, 149.096299235007 -35.1730892100461, 149.095898093007 -35.1731241190463))\n235\tWarralily Central\tUnder construction\tPOLYGON ((144.36323677063632 -38.234255509577849, 144.36413799286882 -38.23058108713554, 144.36023269654595 -38.230041706747549, 144.35937438965527 -38.23361502728261, 144.36323677063632 -38.234255509577849))\n10169\tBurns Beach\tReady for service\tPOLYGON ((115.72501301765442 -31.728975670762381, 115.72486281394958 -31.728346018738922, 115.72481989860535 -31.72823195088564, 115.7247394323349 -31.728250201751592, 115.72450876235962 -31.727679860491303, 115.72447657585144 -31.727556666318094, 115.72440683841705 -31.727301151955249, 115.72399914264679 -31.727392407165706, 115.72363436222076 -31.726502665030598, 115.72352707386017 -31.726073760642254, 115.72389721870422 -31.726023569573449, 115.72377920150757 -31.725653979957091, 115.72375237941742 -31.725576411578874, 115.72420835494995 -31.72549428028411, 115.72498083114624 -31.725348268913709, 115.72493255138397 -31.725129251426793, 115.72542607784271 -31.725033431113516, 115.72534024715424 -31.724682089117238, 115.72500765323639 -31.724745969579256, 115.72490036487579 -31.72491479630267, 115.72474479675293 -31.725074496974187, 115.7237845659256 -31.725257011690406, 115.72245955467224 -31.725507968838293, 115.72197139263153 -31.725594662967815, 115.72168707847595 -31.725612914353178, 115.72147250175476 -31.725480591727912, 115.7213169336319 -31.725421274627678, 115.72128474712372 -31.725325454616307, 115.72137594223022 -31.725220508775909, 115.72132229804993 -31.725056245482797, 115.72091996669769 -31.725152065772498, 115.72085022926331 -31.724996928110961, 115.72054445743561 -31.72506993410169, 115.72038888931274 -31.72510187420453, 115.72042644023895 -31.725257011690406, 115.72007775306702 -31.725311766035176, 115.72005093097687 -31.725142940034885, 115.71956276893616 -31.725229634505876, 115.71962714195251 -31.725403023204581, 115.7192462682724 -31.725476028875402, 115.71921408176422 -31.725302640313284, 115.71883320808411 -31.725389334634883, 115.71877419948578 -31.72540758606069, 115.71855962276459 -31.725466903169679, 115.71837186813354 -31.725393897491681, 115.71826457977295 -31.725270700279616, 115.71816802024841 -31.725092748461989, 115.71779787540436 -31.725316328895769, 115.71770668029785 -31.725311766035176, 115.71766912937164 -31.72552622024072, 115.71791589260101 -31.725626602889829, 115.71806609630585 -31.725731548270389, 115.71817338466644 -31.725936875845139, 115.71820020675659 -31.726114826041947, 115.71811437606812 -31.726338404010018, 115.71805536746979 -31.7264981022284, 115.71817874908447 -31.726676051347571, 115.71826994419098 -31.726844874555034, 115.71828603744507 -31.727123204036396, 115.71835041046143 -31.727392407165706, 115.71851670742035 -31.727629670292359, 115.71870982646942 -31.72782130545118, 115.71890830993652 -31.72799925202953, 115.71911215782166 -31.728012940213706, 115.71941256523132 -31.727917122881973, 115.7197505235672 -31.727830430925053, 115.72001874446869 -31.727720925179312, 115.72052836418152 -31.727584042815177, 115.72087705135345 -31.72747909953241, 115.72110772132874 -31.727725487921308, 115.72255611419678 -31.727292953240536, 115.7229745388031 -31.726909680341411, 115.72336077690125 -31.727055689251806, 115.72424054145813 -31.729154541916696, 115.72428345680237 -31.7293096726183, 115.72450876235962 -31.729172792600952, 115.72456240653992 -31.7290632884415, 115.72480916976929 -31.729054163089035, 115.72501301765442 -31.728975670762381))\nAYCA-1BC5OS\tHuntlee Stage 1\tUnder construction\tPOLYGON ((151.351995999998 -32.6743620000152, 151.351916999998 -32.6744700000152, 151.351782999998 -32.6746770000152, 151.352735999998 -32.6749690000152, 151.352853999998 -32.6749950000152, 151.352931999998 -32.6750070000152, 151.353018999998 -32.6750200000153, 151.354070999998 -32.6750870000152, 151.354558999998 -32.6752850000152, 151.354613999998 -32.6753270000152, 151.354847999998 -32.6755240000152, 151.354991999998 -32.6757660000152, 151.353828111694 -32.6762616449879, 151.353898145814 -32.6763897889366, 151.353466989389 -32.6765850146814, 151.353478964843 -32.6766050642333, 151.35322629244 -32.6767099445105, 151.353164999998 -32.6768710000152, 151.353037588851 -32.6768335617201, 151.352967429185 -32.6769681229608, 151.352655999998 -32.6768410000152, 151.352422999998 -32.6766880000152, 151.352152999998 -32.6766560000152, 151.352017999998 -32.6772700000152, 151.352002999998 -32.6772840000152, 151.351210768857 -32.6779623382177, 151.350828285223 -32.678288250254, 151.351471999998 -32.6788530000151, 151.351847999998 -32.6786800000152, 151.351799980151 -32.6785959779776, 151.351957569555 -32.6785242642248, 151.352078999998 -32.6786950000152, 151.352238052847 -32.6788088009927, 151.352444826259 -32.6788785095011, 151.352706215214 -32.6789362305937, 151.352710061502 -32.6787222656783, 151.353053999998 -32.6788050000152, 151.353696999998 -32.6790160000152, 151.353701999998 -32.6792950000152, 151.353763999998 -32.6795820000152, 151.353916307129 -32.6795621868522, 151.353933999998 -32.6795590000152, 151.35393260748 -32.6795432430649, 151.354257999998 -32.6794610000152, 151.354312999998 -32.6796020000152, 151.354817999998 -32.6794570000152, 151.355864999998 -32.6792330000151, 151.355987999998 -32.6792410000152, 151.356303391732 -32.677668287154, 151.355670382912 -32.6759477883949, 151.355055322989 -32.6748026049263, 151.351995999998 -32.6743620000152))\n311\tIngenia Hervey Bay\tReady for service\tPOLYGON ((152.89279818800648 -25.318376649408144, 152.89283109753279 -25.318334859691962, 152.89681232751377 -25.317736725072979, 152.8969551864075 -25.318524004029904, 152.89695628101904 -25.318523841786387, 152.8970051165272 -25.318795870455606, 152.897005116938 -25.3187958703947, 152.89700515098889 -25.318796060068294, 152.89700515057811 -25.318796060129127, 152.89745051732072 -25.321253545841842, 152.89744644681588 -25.321254159002052, 152.897447262996 -25.321258705178142, 152.89543534370722 -25.321558355104671, 152.89543534366882 -25.321558354890691, 152.89494212296572 -25.321631809400195, 152.894942608242 -25.321634547323043, 152.89459881536172 -25.321684884870706, 152.8945984961297 -25.321683050843991, 152.89346918312489 -25.321853029983597, 152.89346917164565 -25.321853022507227, 152.89346921958966 -25.321852961695654, 152.89342324226976 -25.3218231089429, 152.89326984180391 -25.32097751234646, 152.89326548957104 -25.320978160462008, 152.89310756791792 -25.320098342383151, 152.89311022574196 -25.320097946591162, 152.89279818800648 -25.318376649408144))\nAYCA-JR6GE\tMuirhead\tReady for service\tPOLYGON ((130.892741370061 -12.3653714219552, 130.893981602021 -12.3653741022313, 130.894458045105 -12.365375130372, 130.895500995493 -12.3653773780919, 130.895303179534 -12.3650754906898, 130.895168176417 -12.3648302082081, 130.895177520862 -12.3648055662116, 130.895325729655 -12.3647242137759, 130.895466613606 -12.3649838450466, 130.895308784758 -12.3650768629658, 130.895504204907 -12.3653758911053, 130.896394316093 -12.3648023104559, 130.89665628295 -12.3646461543925, 130.896329947131 -12.3641180302981, 130.896009425957 -12.363594102907, 130.895975491267 -12.3635735904897, 130.895482370035 -12.3627395275387, 130.896197063346 -12.3623161251834, 130.895605438765 -12.3612383173931, 130.89535499999 -12.3613799998874, 130.89527199999 -12.3612389998873, 130.89531199999 -12.3612159998874, 130.89522899999 -12.3610749998873, 130.89514999999 -12.3611209998873, 130.89505799999 -12.3609639998873, 130.89513699999 -12.3609189998873, 130.89505499999 -12.3607779998873, 130.89501499999 -12.3608009998874, 130.89492299999 -12.3606439998874, 130.89488299999 -12.3606669998874, 130.89479099999 -12.3605099998873, 130.89488299999 -12.3604579998873, 130.89479999999 -12.3603169998874, 130.89471999999 -12.3603619998873, 130.89463699999 -12.3602219998873, 130.89467699999 -12.3601989998874, 130.89459499999 -12.3600579998874, 130.89434400002 -12.3601999998701, 130.893996605242 -12.3603564595389, 130.89396164535 -12.3603732008034, 130.894026458636 -12.3604817807845, 130.894161281459 -12.3607086630144, 130.89401802029 -12.3607901020267, 130.894039822541 -12.3608271708207, 130.893859033511 -12.3609194304315, 130.893658275697 -12.3609389493891, 130.893677372296 -12.3612214591326, 130.893677509858 -12.3612236394407, 130.893667579186 -12.3612236459136, 130.893667873286 -12.3616620085985, 130.893483997742 -12.3616621284303, 130.893484027608 -12.3617073204638, 130.893300152018 -12.3617074401759, 130.893300489138 -12.3622080457313, 130.893300528554 -12.3622675139135, 130.892181040729 -12.3622722088598, 130.892179080556 -12.3631464566195, 130.892308368888 -12.3636891133709, 130.892388178296 -12.3639249983662, 130.892898997615 -12.3638323993311, 130.892890266746 -12.3643660167645, 130.892801723816 -12.3645835183705, 130.892748352642 -12.3647051117988, 130.89274227653 -12.3652877515537, 130.892741370061 -12.3653714219552))\nAYCA-DZ1PY\tHoly Spirit Boondall\tReady for service\tPOLYGON ((153.061465 -27.3601289999794, 153.06151104 -27.360456659979, 153.061559640021 -27.3605982300406, 153.061615079964 -27.360758069877, 153.061998479999 -27.3618701999763, 153.062234640159 -27.3624381903623, 153.062458559866 -27.3629758496581, 153.062856 -27.3639320099795, 153.0626886 -27.3648129299795, 153.0627066 -27.3648316499794, 153.06270804 -27.3648418199795, 153.06273324 -27.3648587399793, 153.062742540676 -27.3648868911334, 153.062755897899 -27.3649147006881, 153.062772349324 -27.3649443117238, 153.062787754139 -27.3649748630926, 153.06280272 -27.3650135399795, 153.062821800002 -27.3650372999815, 153.06284448 -27.3650564699801, 153.06285096 -27.3650733899791, 153.062866080001 -27.3650858999808, 153.062891640001 -27.3651266699805, 153.062967240003 -27.3651726599812, 153.06304392 -27.3652028999794, 153.063171360005 -27.3652208099802, 153.063272519993 -27.3652225199793, 153.063389520006 -27.3652352099808, 153.063512639995 -27.365262029979, 153.063660960002 -27.3652762499796, 153.063759959998 -27.3652536599804, 153.063822570395 -27.3652113110054, 153.063933480007 -27.3651428699757, 153.064019880002 -27.3650975999791, 153.064215359995 -27.3650564699811, 153.064323719992 -27.365018219983, 153.064391039998 -27.3649891499808, 153.064442879999 -27.3649468499806, 153.06446952 -27.3648958199792, 153.064505879999 -27.36487592998, 153.064556640001 -27.3648759299801, 153.064616040001 -27.3649178699809, 153.064674360002 -27.3649895999818, 153.064737359999 -27.3650468399792, 153.064829879994 -27.3650671799788, 153.06486767999 -27.365071409979, 153.064880730561 -27.3650719893315, 153.06498324 -27.3650765399802, 153.065783112452 -27.3607620164626, 153.061465 -27.3601289999794))\nAYCA-GNFE0\tRIVERSTONE RISE\tReady for service\tPOLYGON ((151.31856988929 -23.9689175040552, 151.318941591885 -23.9693200178553, 151.319367514234 -23.969483600108, 151.319581946088 -23.9696385616847, 151.319515130763 -23.96971663112, 151.319852649216 -23.9699605413924, 151.319982999998 -23.9698579999485, 151.320032999999 -23.9698269999485, 151.320129999998 -23.9698079999485, 151.320982999999 -23.9699919999485, 151.32126970188 -23.9695525414743, 151.324094665085 -23.9689749522279, 151.324122962618 -23.9687691459779, 151.324158421059 -23.9687473052209, 151.324241169718 -23.9687578378551, 151.324278611302 -23.9685194923955, 151.32406797383 -23.9684890481138, 151.324104316238 -23.9682622815667, 151.322941860172 -23.9673174501157, 151.322214092796 -23.9674227196282, 151.322161435161 -23.9671669412031, 151.320848930522 -23.9662173588678, 151.320427114904 -23.9661983018289, 151.319873796645 -23.9668381801394, 151.319351265309 -23.9664631986299, 151.318460816607 -23.9673364849699, 151.318321150024 -23.9676732415925, 151.31824862408 -23.96764538605, 151.31784696762 -23.9685284362468, 151.31806565453 -23.9686563947812, 151.318283152718 -23.9687378357194, 151.31832045958 -23.9687164255841, 151.318609239627 -23.9688309912009, 151.31856988929 -23.9689175040552))\nAYCA-JBQMC\tWishart Business Precinct\tReady for service\tPOLYGON ((130.953474865161 -12.4685142851903, 130.955416855685 -12.4705828567013, 130.956416424524 -12.4701293714973, 130.957557648092 -12.4696182556814, 130.957048453979 -12.4685357748211, 130.956526806752 -12.4674065364066, 130.955973101033 -12.4664751271599, 130.955394678197 -12.4658142179147, 130.955259982389 -12.4656595985019, 130.954388295703 -12.4649978105365, 130.953457238662 -12.4644934299771, 130.953474865161 -12.4685142851903))\nAYCA-1AO4XL\tCloverlea - Chirnside Park\tContracted\tPOLYGON ((145.326879999998 -37.7488860000284, 145.326930999998 -37.7489360000284, 145.326831999998 -37.7494950000284, 145.326556999998 -37.7500010000283, 145.326352999998 -37.7510220000284, 145.326287999998 -37.7510660000283, 145.326558999998 -37.7510680000283, 145.3268630871 -37.7509743767973, 145.327057999998 -37.7508900000283, 145.326998999998 -37.7503980000283, 145.327057999998 -37.7501380000284, 145.327343999998 -37.7497490000284, 145.329393999998 -37.7507000000284, 145.330438999998 -37.7510320000284, 145.330359999998 -37.7515250000284, 145.329440999998 -37.7518080000284, 145.329129999998 -37.7524600000284, 145.330467999998 -37.7532870000284, 145.330815999998 -37.7530030000284, 145.331314999998 -37.7527590000284, 145.331873999998 -37.7526190000284, 145.332335999998 -37.7523730000284, 145.332496999998 -37.7515450000285, 145.332380999998 -37.7508100000284, 145.332417999998 -37.7506230000284, 145.331862999998 -37.7505550000283, 145.331864999998 -37.7505440000284, 145.331527999998 -37.7505030000284, 145.331538999998 -37.7504470000284, 145.331258999998 -37.7504130000283, 145.330737999998 -37.7503430000284, 145.330754999998 -37.7502550000284, 145.330396999998 -37.7502110000284, 145.330601999998 -37.7491580000284, 145.330287999998 -37.7491190000284, 145.330311999998 -37.7489950000284, 145.330235999998 -37.7489850000284, 145.330110999998 -37.7490690000284, 145.329554999998 -37.7491860000284, 145.328990999998 -37.7491080000283, 145.327736999998 -37.7486590000284, 145.326926999998 -37.7485810000283, 145.326879999998 -37.7488860000284))\n17365410\tWestwood\tCheck with carrier\tPOLYGON ((152.761562016 -26.9620360015, 152.762610016 -26.9615219975, 152.762594016 -26.961349004000002, 152.762748 -26.961268991500003, 152.762784992 -26.9612970005, 152.762852 -26.961315001, 152.762852 -26.961315001, 152.762926016 -26.9613039935, 152.763256992 -26.9611420075, 152.762671008 -26.960123009, 152.762507008 -26.9598219955, 152.762351008 -26.9595279935, 152.762096992 -26.959059999, 152.762232992 -26.959003999500002, 152.761863008 -26.958412998500002, 152.762439008 -26.9577440015, 152.762298016 -26.957510994, 152.762494016 -26.957452996500002, 152.762384992 -26.957278005, 152.76232 -26.957317003, 152.761743008 -26.956366991, 152.758904992 -26.9577400055, 152.761562016 -26.9620360015))\nAYCA-1FTKWM\tMolonglo Valley - Coombs Stage 3\tReady for service\tPOLYGON ((149.038520189006 -35.3142289200475, 149.037890970006 -35.3142290710475, 149.037879491006 -35.3142291710476, 149.037868017006 -35.3142294690474, 149.037856552019 -35.3142299630396, 149.037845103006 -35.3142306520475, 149.037833674019 -35.3142315380397, 149.037822270019 -35.3142326190397, 149.037810896006 -35.3142338950477, 149.037799557006 -35.3142353650475, 149.037788258019 -35.3142370290398, 149.037777004006 -35.3142388860475, 149.037721576006 -35.3142510360475, 149.037678536019 -35.3142641250399, 149.037636977006 -35.3142801110476, 149.037616845013 -35.3142891570437, 149.037587554006 -35.3143039970476, 149.037379159006 -35.3144171250476, 149.037429244018 -35.3145397030395, 149.037441791006 -35.3145730710477, 149.037452352019 -35.3146068980398, 149.037458277019 -35.3146296640397, 149.037465476006 -35.3146640790477, 149.039311165508 -35.3146612663121, 149.039462314006 -35.3148040980476, 149.039626620006 -35.3147918790476, 149.040899026006 -35.3153935720476, 149.041293286953 -35.3155800052658, 149.041541316006 -35.3152706920475, 149.042551561006 -35.3140108020475, 149.043102040006 -35.3133242710475, 149.043634364006 -35.3126603700474, 149.044166678006 -35.3119964670475, 149.043902891013 -35.3118717340435, 149.043073318012 -35.3114794600436, 149.043006297012 -35.3114536650435, 149.042955658012 -35.3114410740435, 149.042914047006 -35.3114346500475, 149.042893006012 -35.3114326770436, 149.042840112012 -35.3114313910435, 149.042808420012 -35.3114331250435, 149.042766558012 -35.3114383440436, 149.042745906006 -35.3114421860476, 149.042725503013 -35.3114468390435, 149.042695470012 -35.3114553130435, 149.042656735012 -35.3114693320434, 149.042619824012 -35.3114863390434, 149.042602160006 -35.3114959150475, 149.042585079012 -35.3115061770435, 149.042485046012 -35.3115682840436, 149.042383764012 -35.3116290160436, 149.042281262012 -35.3116883560434, 149.042212263006 -35.3117271350475, 149.042107790006 -35.3117841200476, 149.042002173012 -35.3118396690436, 149.041894419006 -35.3118942770475, 149.041821967012 -35.3119298540434, 149.041749032012 -35.3119647620434, 149.041601754006 -35.3120325570476, 149.041527428006 -35.3120654350476, 149.041490098006 -35.3120816170474, 149.041415108012 -35.3121134650436, 149.041263845012 -35.3121750840435, 149.041187590012 -35.3122048470435, 149.041110934012 -35.3122339070436, 149.041033884012 -35.3122622600436, 149.040212030012 -35.3125491770435, 149.040124512012 -35.3125834640436, 149.040054628006 -35.3126167770475, 149.039987919012 -35.3126542090437, 149.039924746012 -35.3126955570437, 149.039865449012 -35.3127405980436, 149.039821247006 -35.3127789190476, 149.039779854019 -35.3128192930396, 149.039741413006 -35.3128615830476, 149.039714599006 -35.3128944700474, 149.039689571006 -35.3129282900474, 149.039093057676 -35.3137757531399, 149.038896079454 -35.3136951740953, 149.038723936536 -35.3139364088066, 149.038914978006 -35.3140287460476, 149.038890130006 -35.3140632300475, 149.038878402012 -35.3140774420438, 149.038865862012 -35.3140911810437, 149.038838462006 -35.3141171150476, 149.038816005006 -35.3141351000474, 149.038792040006 -35.3141517250474, 149.038775286006 -35.3141620120474, 149.038757953006 -35.3141716330475, 149.038712353006 -35.3141926380476, 149.038673882006 -35.3142061530475, 149.038654102006 -35.3142117690475, 149.038623877006 -35.3142187320476, 149.038593122006 -35.3142239100476, 149.038572403006 -35.3142263570475, 149.038551565006 -35.3142279930476, 149.038520189006 -35.3142289200475))\n10567\tSecret Harbour\tReady for service\tPOLYGON ((115.75070321559906 -32.401691777732488, 115.75112700462341 -32.401646485290392, 115.75112164020538 -32.401315849774818, 115.75135767459869 -32.401301801984751, 115.75131475925446 -32.401071269299173, 115.75148105621338 -32.400926332408346, 115.7517009973526 -32.400776865995979, 115.75275778770447 -32.400758748838257, 115.75314939022064 -32.4009127445629, 115.75320303440094 -32.401053152200546, 115.75322985649109 -32.401397376452778, 115.75365364551544 -32.401397376452778, 115.75366973876953 -32.402449078151648, 115.75406670570374 -32.403970878230695, 115.75374484062195 -32.40512126959667, 115.75231790542603 -32.405556059366113, 115.75191020965576 -32.405764395388445, 115.75110554695129 -32.4049582228932, 115.75132012367249 -32.402992581124877, 115.75070321559906 -32.401691777732488))\n10397\tIluka\tReady for service\tPOLYGON ((115.72926163673401 -31.739053156731849, 115.7295486330986 -31.7390622810995, 115.73007166385651 -31.739263016960418, 115.73052495718002 -31.739404444237586, 115.73095679283142 -31.739454628058205, 115.73098160326481 -31.739629130677407, 115.73174670338631 -31.739780822229612, 115.73234349489212 -31.740061393919611, 115.73235020041466 -31.740292351685209, 115.73227107524872 -31.740648766860055, 115.73232203722 -31.740773084150415, 115.73188617825508 -31.740928195398006, 115.73144227266312 -31.74102856136096, 115.73152776807547 -31.741200209716016, 115.731465741992 -31.741321674971083, 115.73137421160936 -31.741520695162059, 115.73117539286613 -31.742116612660777, 115.73115259408951 -31.742442797457368, 115.73102653026581 -31.742447359474347, 115.73075294494629 -31.74319552721893, 115.72972297668457 -31.74292294851185, 115.72845697402954 -31.742723361083669, 115.72782397270203 -31.742743890096133, 115.72788029909134 -31.74064990738642, 115.7280358672142 -31.74023703592713, 115.72840601205826 -31.739570963174195, 115.72882980108261 -31.738804517367424, 115.72917312383652 -31.738964194100152, 115.72926163673401 -31.739053156731849))\n8\tRCA Beleura Village\tReady for service\tPOLYGON ((145.07253621425161 -38.224609205304276, 145.07041190471182 -38.224061352088746, 145.07117365207205 -38.222527341135645, 145.0708410581542 -38.221659177746787, 145.07153843249807 -38.22133045298294, 145.07267568912039 -38.220892150987375, 145.07337306346426 -38.220656141126831, 145.07490728702078 -38.220167261123159, 145.07599089946279 -38.219897532818408, 145.07464979495535 -38.222982490617504, 145.07352326716909 -38.222695915349838, 145.07317994441519 -38.223513494747344, 145.07329796161184 -38.223875923912018, 145.07319067325125 -38.22420463717431, 145.0727507909728 -38.224701918517177, 145.07253621425161 -38.224609205304276))\n22\tEvergreen Links\tReady for service\tPOLYGON ((144.27727 -36.71305, 144.27458 -36.71215, 144.27508 -36.71144, 144.27562 -36.71066, 144.27624 -36.70969, 144.27683 -36.70886, 144.27719 -36.70834, 144.27838 -36.70796, 144.27959 -36.70759, 144.27963 -36.70795, 144.27894 -36.70969, 144.27859 -36.71063, 144.27809 -36.71157, 144.27727 -36.71305))\nAYCA-ENWFM\tCoolalinga Sub-Division\tReady for service\tPOLYGON ((131.043822840234 -12.5197478098528, 131.040649800235 -12.5152283698527, 131.039849520235 -12.5142972298527, 131.03937767588 -12.5161285498199, 131.038959785845 -12.5183383306745, 131.040297238958 -12.5192687215971, 131.040226088142 -12.5193820429338, 131.040437577485 -12.5194831759446, 131.040507658602 -12.5194106412702, 131.041236795075 -12.5199091856967, 131.041667167998 -12.5193197492831, 131.042216538001 -12.5200981071464, 131.041984244629 -12.5204391235121, 131.042249230836 -12.5205624876425, 131.042484112286 -12.5202777364172, 131.042427306546 -12.5202339741934, 131.042594018994 -12.5200048775955, 131.042653489093 -12.5200497664566, 131.042686906446 -12.5200072436663, 131.042882319447 -12.5201385363999, 131.042714904274 -12.5203712667455, 131.042442913253 -12.520713287301, 131.043246209846 -12.5213230394631, 131.043822840234 -12.5197478098528), (131.040801274339 -12.5179311147254, 131.040639975268 -12.5176956609142, 131.040827579934 -12.5175716124322, 131.0409888792 -12.5178070658849, 131.040801274339 -12.5179311147254), (131.041749476821 -12.5186584168319, 131.041994180033 -12.5184885092734, 131.042133528269 -12.5186449718472, 131.04188843636 -12.5188341201719, 131.041749476821 -12.5186584168319), (131.041487419551 -12.5182874750301, 131.041698581565 -12.5181047814807, 131.041848034473 -12.5182760852897, 131.041620963426 -12.518471442023, 131.041487419551 -12.5182874750301), (131.041376576505 -12.5175507477144, 131.04154457737 -12.5177847569171, 131.041352994128 -12.5179148665278, 131.04118857903 -12.517678496291, 131.041376576505 -12.5175507477144), (131.04228136656 -12.5193970347662, 131.042526136148 -12.519236396877, 131.042654135626 -12.5194246448852, 131.042409365977 -12.5195852829041, 131.04228136656 -12.5193970347662), (131.041400307815 -12.5189217330362, 131.041645839782 -12.5187537118691, 131.041646653338 -12.5187556711449, 131.04177596814 -12.5189404351006, 131.041532575846 -12.5191057485356, 131.041400307815 -12.5189217330362), (131.041660234657 -12.5193079968497, 131.041918799399 -12.519141069017, 131.042044716549 -12.519327668394, 131.041784735447 -12.5194846708143, 131.041660234657 -12.5193079968497), (131.041185569876 -12.5176796468513, 131.041351666427 -12.5179149971567, 131.041159402408 -12.5180468127325, 131.040992190231 -12.5178077468695, 131.041185569876 -12.5176796468513), (131.042429257079 -12.5198713926533, 131.042541251156 -12.5199686962449, 131.042594018986 -12.5200048775942, 131.042427512017 -12.5202316632586, 131.042226873777 -12.5200922617276, 131.042182929887 -12.5200370600537, 131.042429257079 -12.5198713926533), (131.042810170023 -12.5196271599645, 131.0430463242 -12.5194795650209, 131.043154944516 -12.5196573900647, 131.043204072229 -12.5197652534168, 131.043209446466 -12.5198102629585, 131.043188488278 -12.5199839877165, 131.042985790692 -12.5197928046565, 131.042832485976 -12.5199962927362, 131.042634196747 -12.5198574451255, 131.042564267263 -12.5197858667439, 131.042810170023 -12.5196271599645), (131.041303845074 -12.5198168057597, 131.040581696148 -12.5193034680358, 131.041212798821 -12.5186430589472, 131.041666842731 -12.5193197034073, 131.041303845074 -12.5198168057597))\n17344624\tMadison Ridge\tCheck with carrier\tPOLYGON ((152.956953728 -27.0450116095, 152.955926272 -27.044889565000002, 152.955654496 -27.044857264, 152.954649376 -27.0447377355, 152.953855936 -27.050087436000002, 152.954852416 -27.050266257, 152.955649792 -27.0504093545, 152.95625856 -27.0504432835, 152.956953728 -27.0450116095))\n17326045\tAurukun Res Sub-division - stage 2\tCheck with carrier\tPOLYGON ((141.725994848 -13.365806045, 141.723996128 -13.365349021, 141.723302048 -13.368440963, 141.722093888 -13.3682010365, 141.721646048 -13.3700519615, 141.724902976 -13.3708130145, 141.725994848 -13.365806045))\nAYCA-1BK5IS\tJimboomba Woods\tReady for service\tPOLYGON ((153.060515 -27.8666469999842, 153.060372 -27.8666269999842, 153.059875 -27.8661779999843, 153.059133398122 -27.8671403544844, 153.058547718472 -27.8673962512061, 153.057534 -27.8663989999842, 153.057200569308 -27.866656995573, 153.057235731278 -27.8667811618183, 153.057006762777 -27.8669015610607, 153.056988626325 -27.8667706002395, 153.056937929266 -27.866752272432, 153.056520136533 -27.8681308542803, 153.056422855791 -27.8681089629918, 153.056707400948 -27.8698755077248, 153.056865 -27.8698569999843, 153.056995 -27.8694319999843, 153.057264 -27.8690049999843, 153.057527 -27.8688289999842, 153.057878 -27.8687709999842, 153.058293 -27.8688559999843, 153.058823 -27.8692639999843, 153.059276 -27.8696019999842, 153.059681 -27.8697349999843, 153.059956 -27.8687809999842, 153.060193 -27.8687429999843, 153.060546 -27.8688389999843, 153.06103 -27.8694429999843, 153.062017 -27.8686789999843, 153.062525 -27.8672179999842, 153.062493 -27.8671929999843, 153.060515 -27.8666469999842))\n10385\tHalls Head-Port Mandurah\tReady for service\tPOLYGON ((115.70902973413467 -32.54463498135928, 115.7095567882061 -32.544603750894147, 115.70989809930325 -32.544573438961713, 115.7099524140358 -32.544564960097659, 115.71000874042511 -32.54455308968663, 115.71003254503012 -32.544526522570571, 115.71004830300808 -32.544498824930557, 115.71004394441843 -32.544577961022206, 115.7100436091423 -32.54463674778799, 115.71006372570992 -32.544704119352637, 115.7100972533226 -32.544766297574071, 115.71019113063812 -32.544874826730087, 115.71031987667084 -32.544973746419487, 115.71053177118301 -32.545089623631284, 115.71084156632423 -32.545216240511259, 115.71105010807514 -32.545297636982653, 115.71126200258732 -32.545376207117684, 115.71143433451653 -32.545450255167616, 115.71172267198563 -32.54556376477445, 115.71174815297127 -32.545577330805614, 115.71175888180733 -32.545590896834746, 115.71178168058395 -32.545649682937281, 115.71170926094055 -32.5457649940266, 115.71184806525707 -32.545820953766565, 115.7119157910347 -32.545853844228773, 115.7119258493185 -32.5458442349865, 115.71201637387276 -32.545892846436871, 115.71217328310013 -32.545956719581639, 115.71265742182732 -32.54614551250495, 115.71275800466537 -32.545979894782221, 115.71284115314484 -32.545810885255321, 115.71290552616119 -32.545682008211628, 115.7130691409111 -32.545748707757355, 115.71323812007904 -32.545815407253492, 115.71333602070808 -32.545855769609908, 115.71334473788738 -32.545875217723534, 115.71336083114147 -32.546014834212038, 115.713253878057 -32.546251284414573, 115.7131796143949 -32.546425186022525, 115.71313083171844 -32.54650299562222, 115.71312949061394 -32.546507517585539, 115.713095292449 -32.546519952983466, 115.71298196911812 -32.546556799905311, 115.71296118199825 -32.546599864505232, 115.71293268352747 -32.546652997502434, 115.7129068672657 -32.546701608514887, 115.7128793746233 -32.54674626279381, 115.71288071572781 -32.546743542557522, 115.71285020560026 -32.546732688107348, 115.71283847093582 -32.546753487317076, 115.7126996666193 -32.54697958457281, 115.71256890892982 -32.547192239120477, 115.71237310767174 -32.547544913539454, 115.7122041285038 -32.54785632428819, 115.71210153400898 -32.548033737847156, 115.71203883737326 -32.548154662897574, 115.71201704442501 -32.548225847155784, 115.71199525147676 -32.548334372129645, 115.71198619902134 -32.548423113807644, 115.71211025118828 -32.5485045073715, 115.71285925805569 -32.548531355926706, 115.71320626884699 -32.548546475899016, 115.71340994909406 -32.548553470651704, 115.7135231886059 -32.548555837562823, 115.71361899375916 -32.548557639241409, 115.71368873119354 -32.548560748020051, 115.71375712752342 -32.548554389154525, 115.7137531042099 -32.548555943543917, 115.71376048028469 -32.548555943543917, 115.71376115083694 -32.548596640274809, 115.71376081556082 -32.548597770739335, 115.71376316249371 -32.54859890120381, 115.71327701210976 -32.548596640274845, 115.71265071630478 -32.548614727704894, 115.71217060089111 -32.548596640274845, 115.71092337369919 -32.548541954038413, 115.71058072149754 -32.54848733842276, 115.71038827300072 -32.548430461840752, 115.70996850728989 -32.548211151055483, 115.70980489253998 -32.548069842275986, 115.70966809988022 -32.547917228544293, 115.70947900414467 -32.5476950903156, 115.70931270718575 -32.547481995365906, 115.7091162353754 -32.54728868332942, 115.70893988013268 -32.547131546338079, 115.70876888930798 -32.54698797488971, 115.70859655737877 -32.546844403211729, 115.70833437144756 -32.546645437357142, 115.70819389075041 -32.546548215245096, 115.70808559656143 -32.54646908089012, 115.70791259407997 -32.546358292675961, 115.70775233209133 -32.546275766672494, 115.70764571428299 -32.546281419140904, 115.70793807506561 -32.5459196604451, 115.70813119411469 -32.54563929645321, 115.70873737335205 -32.544942904685151, 115.7090163230896 -32.544635405302188, 115.70902973413467 -32.54463498135928))\nAYCA-NGQ9B\tBungarribee (Bunya)\tReady for service\tPOLYGON ((150.867204897709 -33.7714202761297, 150.86747910028 -33.7720757212164, 150.868673850575 -33.7717185402559, 150.868914886698 -33.7722523899595, 150.869303654312 -33.7723160870849, 150.87064666411 -33.7719836485922, 150.870909277107 -33.7724519201447, 150.872552507301 -33.7719255529855, 150.872515464771 -33.772705420325, 150.872752703334 -33.772704966609, 150.873043536082 -33.7716128256996, 150.873013386715 -33.771495132806, 150.872952514689 -33.7713896618798, 150.872885733575 -33.771299049038, 150.872118696349 -33.7702765387939, 150.87153989761 -33.7696106248882, 150.869893543606 -33.7690480144143, 150.868852773566 -33.7694113420474, 150.869129400054 -33.7700285806642, 150.866912149517 -33.7707346007485, 150.867204897709 -33.7714202761297))\n17394228\tGol Gol Heights Lot 78 on DP 756946\tCheck with carrier\tPOLYGON ((142.233328 -34.1830270045, 142.233672 -34.185376005, 142.238648992 -34.184924993500005, 142.239036 -34.181792999, 142.238232992 -34.181910992, 142.238046016 -34.182564005, 142.236655232 -34.1827063255, 142.236726944 -34.1832639525, 142.235923776 -34.1833232635, 142.235837696 -34.1827775135, 142.233328 -34.1830270045))\n17341371\tLinton Hill Stage 3\tCheck with carrier\tPOLYGON ((151.822847168 -27.470484988000003, 151.82378208 -27.4700829645, 151.823927168 -27.468804966, 151.82411616 -27.468744027, 151.82428608 -27.4678000275, 151.821983872 -27.467994962000002, 151.822049056 -27.467337953, 151.820178112 -27.4673519945, 151.819602112 -27.4710459635, 151.82051904 -27.4711599975, 151.82070192 -27.47117304, 151.821556928 -27.4707240265, 151.821726848 -27.471050015, 151.822847168 -27.470484988000003))\n10356\tMillbridge\tReady for service\tMULTIPOLYGON (((115.73473628458848 -33.295665728421589, 115.73474138975143 -33.295662411326781, 115.7347346842289 -33.295664653248259, 115.73473628458848 -33.295665728421589)), ((115.73048070073128 -33.300927475174035, 115.73058262467384 -33.300809781319053, 115.73062151670456 -33.300773912684051, 115.73068890720606 -33.300693488425395, 115.73075897991657 -33.300620349923705, 115.73090314865112 -33.300458380149948, 115.73098830878735 -33.300549172932143, 115.73107212781906 -33.300502655654306, 115.7312498241663 -33.300401774725557, 115.7313048094511 -33.300370949974052, 115.73123574256897 -33.300279036104911, 115.73131486773491 -33.300241590983333, 115.7314932346344 -33.300142951559046, 115.73150765150785 -33.300135105236414, 115.73169104754925 -33.300062246492558, 115.73187276721 -33.300001717643696, 115.73205515742302 -33.299950155998573, 115.73225364089012 -33.299915407916181, 115.73241256177425 -33.29989512651894, 115.73245614767075 -33.299888856448725, 115.73262512683868 -33.299876421391929, 115.73282763361931 -33.299877542298532, 115.73285529389977 -33.2998774021852, 115.73287758976221 -33.299880624791605, 115.73308445513248 -33.299896037255365, 115.73308244347572 -33.299818274342272, 115.73341436684132 -33.299814351166447, 115.73459655046463 -33.299840132032955, 115.73445171117783 -33.299667512172732, 115.7340681552887 -33.298945643601414, 115.73393538594246 -33.29858806984506, 115.73385894298553 -33.298241703899784, 115.73386967182159 -33.298010792505529, 115.73386967182159 -33.297806782901063, 115.73405474424362 -33.297490679164945, 115.73425054550171 -33.297329264049395, 115.73457174003124 -33.297105075893391, 115.73499754071236 -33.297117406256945, 115.7351179048419 -33.297124412144548, 115.73522888123989 -33.2971314180316, 115.73541194200516 -33.297143187920561, 115.73543205857277 -33.29613489500678, 115.73509007692337 -33.295903417556836, 115.73473628458848 -33.295665728421589, 115.73405206203461 -33.296110304059873, 115.73367387056351 -33.296360276667372, 115.73330439627171 -33.296598478597694, 115.73310658335686 -33.296725986422544, 115.73291212320328 -33.296855175479195, 115.73276242241263 -33.296951576733044, 115.73261942714453 -33.297047417408876, 115.73230661451817 -33.297245824087391, 115.7320786267519 -33.297398832319416, 115.7318526506424 -33.297546235600471, 115.73153547942638 -33.29777042262269, 115.73136297985911 -33.297896974190863, 115.73125887662172 -33.297988776725539, 115.73100842535496 -33.298207130281817, 115.73085855692625 -33.298355372891642, 115.73071673512459 -33.298509219870624, 115.73055412620306 -33.298682682714549, 115.73039688169956 -33.298872398547928, 115.73026210069656 -33.2990601523638, 115.73012933135033 -33.299241740744556, 115.73005959391594 -33.299349908952195, 115.72977662086487 -33.299869906122034, 115.72961434721947 -33.300230276878906, 115.72948962450027 -33.300514425088394, 115.72975784540176 -33.300581678967, 115.7299630343914 -33.300702735817794, 115.73010988533497 -33.300769324019726, 115.73020443320274 -33.300810131598624, 115.73048070073128 -33.300927475174035)))\n17235866\tAcacia Avenue - stages 4to6\tCheck with carrier\tPOLYGON ((152.954452096 -26.9617699715, 152.95227696 -26.966133992, 152.95231008 -26.966247027, 152.95235616 -26.9663930105, 152.952406912 -26.966568964, 152.952458048 -26.9667770335, 152.95252608 -26.967236037, 152.952559936 -26.9674170225, 152.954345152 -26.966229026500002, 152.956028896 -26.964902965, 152.957079008 -26.964071001500002, 152.956566016 -26.963714969, 152.956793152 -26.9634410025, 152.956446112 -26.963215025, 152.956699936 -26.962869963, 152.954452096 -26.9617699715))\n17367991\tKilgariff Residential Subdivision\tCheck with carrier\tPOLYGON ((133.875308 -23.7729379955, 133.875374016 -23.7732950085, 133.875762016 -23.7732329965, 133.876342016 -23.7763310065, 133.876884 -23.776244001000002, 133.877053984 -23.7771519995, 133.879559008 -23.776754009, 133.878868 -23.773069993, 133.877804 -23.773239009, 133.877761984 -23.7730159915, 133.877851008 -23.7729019945, 133.878228 -23.772841999, 133.878160992 -23.7724860035, 133.875308 -23.7729379955))\nAYCA-J9CE8\tAE2 Ermington\tReady for service\tPOLYGON ((151.055244815032 -33.8208669951457, 151.05403716915 -33.8208195809866, 151.052863999995 -33.8208470000185, 151.052153082368 -33.8207595345472, 151.052101199995 -33.8209854300181, 151.052558718854 -33.8210772285421, 151.052234067143 -33.8228628846005, 151.052159904533 -33.8232748186268, 151.053275978979 -33.8233752639358, 151.055117714468 -33.823346300013, 151.055925551811 -33.8232964450618, 151.055926462077 -33.8233176124406, 151.056276535003 -33.8233141773977, 151.056274087824 -33.8232650355276, 151.056671999995 -33.8232340000185, 151.057503239665 -33.8231244363218, 151.057159132081 -33.8210531081992, 151.057172434982 -33.8207051234432, 151.057204829761 -33.8205175594944, 151.05715792077 -33.820419652573, 151.055244815032 -33.8208669951457))\n17341714\tSilverdown Heights\tCheck with carrier\tPOLYGON ((149.060066048 -33.263683028, 149.05982304 -33.263647027000005, 149.059857952 -33.263470981000005, 149.059932128 -33.26310198, 149.058142912 -33.2628550235, 149.057301952 -33.262415001, 149.057052128 -33.262380998, 149.055390016 -33.262148971, 149.054866912 -33.2646990295, 149.05483488 -33.2648569825, 149.059670048 -33.265593005, 149.060066048 -33.263683028))\nAYCA-14QOEO\tHarrington Grove\tUnder construction\tPOLYGON ((150.734399607064 -34.0145969382659, 150.734412114382 -34.0146558481711, 150.735175016924 -34.0152214200882, 150.735476027782 -34.0150284891953, 150.735634388417 -34.0149934434841, 150.735655427065 -34.0150001752495, 150.735675226285 -34.0150315021449, 150.735693002046 -34.0150504511101, 150.735733677799 -34.0150749206595, 150.735780119611 -34.0150948902452, 150.735803157659 -34.0151138212667, 150.735981684008 -34.0153016564474, 150.736048801361 -34.0153657297685, 150.736122141793 -34.0154248844879, 150.736480716779 -34.0157100838341, 150.736570359767 -34.0158402342039, 150.736715079292 -34.0159939266364, 150.736865655888 -34.0160743995915, 150.737000622854 -34.0161090826067, 150.737129441852 -34.0161204202361, 150.73723075732 -34.0161123911761, 150.737377731202 -34.016074318158, 150.737674041061 -34.0159623178744, 150.737728632708 -34.0159671442391, 150.737754742028 -34.0159950561677, 150.737821734458 -34.0160567707066, 150.738007591748 -34.0161151484525, 150.738255317438 -34.0160600526914, 150.738437935739 -34.0159698093943, 150.738550008995 -34.0158714588717, 150.738640227923 -34.0157341748406, 150.738697317934 -34.0155850809185, 150.738705546706 -34.0155027838842, 150.738696171703 -34.0153844114646, 150.738685639475 -34.0153236474883, 150.738715517958 -34.0152859601197, 150.738794765663 -34.0152589497039, 150.738919565285 -34.0152276759711, 150.739062066393 -34.0152168831049, 150.73920006409 -34.0152304226459, 150.739647830431 -34.0153137019088, 150.73976839662 -34.0153310927629, 150.739890413577 -34.015338734674, 150.740625923087 -34.0153496938111, 150.74076085487 -34.0153364901267, 150.740893298386 -34.0153106957449, 150.740990616568 -34.0152834969009, 150.741474126894 -34.0151232159043, 150.741526667647 -34.0150985221263, 150.741564062228 -34.015068682162, 150.741590147152 -34.0150339179342, 150.741611539491 -34.0149848989571, 150.741614403187 -34.0149356095655, 150.741397795593 -34.013707774868, 150.741390423578 -34.0135784700048, 150.741696605559 -34.0134358059132, 150.741404199964 -34.0130312619753, 150.740963778209 -34.0132211889874, 150.740779319907 -34.013277875255, 150.740651999989 -34.0133230000154, 150.739980999989 -34.0133100000153, 150.738819999989 -34.0133300000152, 150.738342999989 -34.0133610000153, 150.737998999989 -34.0134570000153, 150.737591999989 -34.0135910000152, 150.736458999989 -34.0140470000152, 150.735847999989 -34.0142730000152, 150.735284999989 -34.0144330000152, 150.734399607064 -34.0145969382659))\n10703\tWannanup-Port Bouvard East\tReady for service\tPOLYGON ((115.64411759376526 -32.606240847447289, 115.64523339271545 -32.606421605344558, 115.64615607261658 -32.606620438610236, 115.64857006072998 -32.607994183658612, 115.64977169036865 -32.606566211399731, 115.64604073762894 -32.603399264179991, 115.64500272274017 -32.604274163828194, 115.64444482326508 -32.604793853210033, 115.64411759376526 -32.606240847447289))\nAYCA-NS3TL\tEttamogah Rise\tReady for service\tPOLYGON ((146.976677442572 -36.0218474363591, 146.975791292516 -36.0217479072452, 146.975759581465 -36.0219373943899, 146.975021553878 -36.0218558842049, 146.974276932725 -36.0218817268695, 146.974249679674 -36.0215316940708, 146.974007842462 -36.021556210621, 146.973990485646 -36.021459684357, 146.973044604877 -36.0214705469207, 146.973027544946 -36.0224201771799, 146.973282504393 -36.0224241584153, 146.973019971018 -36.0231290078055, 146.972061113505 -36.0243273630808, 146.971809550904 -36.0247653964478, 146.976084156868 -36.0253249556807, 146.976677442572 -36.0218474363591))\nAYCA-KDKUW\tVasse Newtown\tReady for service\tPOLYGON ((115.244804440601 -33.6737884319301, 115.244776096828 -33.6711478186396, 115.244230390703 -33.6711178025796, 115.243784145506 -33.6711114606481, 115.241877905518 -33.6712124024697, 115.241873981334 -33.6716646868133, 115.241787711395 -33.6716648854908, 115.241789205148 -33.6730622630841, 115.241875476697 -33.6730622356399, 115.241875749569 -33.6732966631077, 115.241835826756 -33.6732966758274, 115.241832975004 -33.67347700564, 115.241975677857 -33.6734769601278, 115.241975006082 -33.6737775842487, 115.240918173282 -33.6737759291558, 115.240917504575 -33.6740734708143, 115.240793680501 -33.6740727078844, 115.240783685259 -33.6743445387451, 115.240826276004 -33.6743439895366, 115.240858268877 -33.6743706300919, 115.240858129116 -33.6746179781537, 115.240940803114 -33.6746631803219, 115.241602259358 -33.6746697209312, 115.24160189913 -33.675316828471, 115.241609150292 -33.6754757629027, 115.241668162131 -33.6754795783257, 115.241818421316 -33.6755148246633, 115.241885540939 -33.6755584960448, 115.241927827627 -33.675625027891, 115.242139841826 -33.6756246289724, 115.2421838073 -33.6755656092004, 115.242269517456 -33.6755036959144, 115.242360843537 -33.675479662111, 115.242886713822 -33.6754739767169, 115.243012168414 -33.6754343036568, 115.243066232022 -33.6753360005171, 115.243068308661 -33.6744015170849, 115.24313324584 -33.6743474253216, 115.245969981005 -33.6743517980655, 115.246056241644 -33.6744240616863, 115.246056238576 -33.6744422657802, 115.246271921108 -33.6744425954419, 115.246278938058 -33.6744263210637, 115.246398613565 -33.6743536831842, 115.246374664513 -33.6737699112935, 115.244804440601 -33.6737884319301), (115.2442093289 -33.6738023670993, 115.244452043334 -33.6738042814168, 115.244450933079 -33.6740754374945, 115.244202305309 -33.6740719045471, 115.2442093289 -33.6738023670993), (115.242531910076 -33.6734820829466, 115.242579930219 -33.6734819702769, 115.242590623651 -33.6736663459393, 115.24288390256 -33.6736705171205, 115.24284814546 -33.6737997261351, 115.242846034841 -33.6739034707132, 115.24252313076 -33.6738988780326, 115.242531910076 -33.6734820829466), (115.242896164382 -33.6750847083728, 115.242472878119 -33.6750728908716, 115.242481465448 -33.6746508975994, 115.242894834783 -33.674656694611, 115.242896164382 -33.6750847083728))\nAYCA-F8YLR\tFreeway Business Park\tReady for service\tPOLYGON ((151.631399631104 -32.8006781615145, 151.630774115726 -32.8036791998558, 151.630836701516 -32.8039916007222, 151.630973164553 -32.8041637985766, 151.631521518512 -32.8052819331645, 151.633135098673 -32.8044402700107, 151.63314123062 -32.8036366394416, 151.63334009432 -32.8025648909741, 151.632952433572 -32.8025205702119, 151.632553104233 -32.8024638649744, 151.632495719999 -32.8018894200183, 151.632687240167 -32.8008073490653, 151.633521028154 -32.8009131545993, 151.633588184251 -32.8002665624079, 151.633735604575 -32.7991100709852, 151.633106722553 -32.7991727796729, 151.633053962385 -32.7991788743847, 151.63225699639 -32.7992709349181, 151.632190161892 -32.7992786549816, 151.632106612554 -32.799285221482, 151.631264886278 -32.7993513863228, 151.63022464156 -32.7992172402273, 151.630107078779 -32.7998446458517, 151.629887279129 -32.7998051795964, 151.629686304116 -32.7997282019181, 151.629411688795 -32.7995203483519, 151.629210654874 -32.7996491661035, 151.629380388312 -32.7998027674335, 151.629676428919 -32.7999642635072, 151.629991857421 -32.8000448771151, 151.631243340499 -32.8002061517077, 151.631163024529 -32.8006360538081, 151.631399631104 -32.8006781615145))\nAYAA-GR9JV\tIronbark Ridge\tReady for service\tPOLYGON ((150.899503128249 -32.2977687119396, 150.899680749884 -32.2982479508773, 150.900338495144 -32.2981155904504, 150.90177322057 -32.2992362814975, 150.902627626501 -32.2984629797066, 150.902926058222 -32.297870750374, 150.904991499325 -32.2962784755962, 150.904558503081 -32.2959367824749, 150.904971771402 -32.2949182093956, 150.904227796014 -32.2946939814621, 150.903858750092 -32.2949069165593, 150.90363328607 -32.294814808031, 150.903446874985 -32.2948264472791, 150.90298585958 -32.2946652827431, 150.902216278851 -32.2954752520887, 150.900699323449 -32.2962383475425, 150.900277389169 -32.297344315472, 150.899503128249 -32.2977687119396))\nAYCA-PO3A4\tBerrimah Business Park\tReady for service\tPOLYGON ((130.914388151337 -12.4270496727612, 130.913420283369 -12.4276452995985, 130.913087109309 -12.4284873285129, 130.912704600219 -12.4286062459154, 130.912567223695 -12.4288561331118, 130.91365625061 -12.4293186355552, 130.916020124054 -12.4301812012474, 130.91892520147 -12.4312773313399, 130.919555160269 -12.431480759843, 130.91964419105 -12.4284369713539, 130.914388151337 -12.4270496727612), (130.914428882447 -12.4295033454032, 130.914495312471 -12.4293018492141, 130.914756820151 -12.4293707674682, 130.914687411333 -12.4295937306272, 130.914428882447 -12.4295033454032), (130.918489214823 -12.4303507496766, 130.918654942278 -12.429912851228, 130.918717103127 -12.4299284966932, 130.918829662129 -12.4299364789043, 130.918875994538 -12.4299559088229, 130.918910530517 -12.4299881776292, 130.918929509926 -12.4300363396375, 130.918930879086 -12.4302229372965, 130.918915920416 -12.430418430619, 130.918893414214 -12.4304990861925, 130.918489214823 -12.4303507496766), (130.916001999989 -12.4294469998872, 130.916166999989 -12.4290109998872, 130.916579999989 -12.4291619998872, 130.916414999989 -12.4295979998871, 130.916001999989 -12.4294469998872), (130.91832658 -12.4283432597776, 130.91867014 -12.4284360897776, 130.918772537423 -12.4284890702625, 130.91885289 -12.4285876697776, 130.9188797 -12.4287050697775, 130.91888079 -12.4289498197776, 130.91819166 -12.4286927897775, 130.91832658 -12.4283432597776), (130.916834936701 -12.4297530475971, 130.917240613405 -12.4298997648607, 130.917024248513 -12.4304780562355, 130.916618537142 -12.430331429099, 130.916834936701 -12.4297530475971), (130.917405604857 -12.4294634318333, 130.918230934765 -12.4297641488017, 130.91806666112 -12.4302007430528, 130.917240613687 -12.4298997648172, 130.917405604857 -12.4294634318333), (130.916585634165 -12.4291643907053, 130.916999389848 -12.4293135011398, 130.916618526945 -12.4303314531788, 130.9162050453 -12.4301819861124, 130.916585634165 -12.4291643907053), (130.91463579989 -12.4284423086515, 130.914587717973 -12.4285770611748, 130.914463610932 -12.4285343497643, 130.914352158794 -12.4288289720593, 130.914477679874 -12.4288739691285, 130.914412198348 -12.4290488521209, 130.914368589401 -12.4290320813578, 130.91420790331 -12.4294624740315, 130.913643999978 -12.4292559998846, 130.913512999978 -12.4291689998845, 130.913435999978 -12.4290299998845, 130.913304999973 -12.4285219998833, 130.913454999973 -12.4281239998834, 130.913489999978 -12.4280859998846, 130.913542999973 -12.4280629998834, 130.913593999973 -12.4280609998834, 130.91463579989 -12.4284423086515), (130.91433759827 -12.4272906594548, 130.914409466361 -12.4272583474127, 130.914506443581 -12.4272495100969, 130.914576745095 -12.4272562692872, 130.915803816047 -12.4275916597146, 130.91584459452 -12.427643273839, 130.915867527646 -12.4276869119759, 130.9158683122 -12.4277360102273, 130.915645869399 -12.4283242703626, 130.915557205756 -12.4284574579262, 130.915434526485 -12.4285126927529, 130.915272892386 -12.428493001732, 130.914554368391 -12.4282327083809, 130.914543071736 -12.4282626165724, 130.913751958758 -12.4279669741364, 130.913745847267 -12.4279594214332, 130.913728847553 -12.4279536439546, 130.913695711981 -12.4279335606673, 130.913625533085 -12.4278754200142, 130.913629248499 -12.427779456963, 130.913690324089 -12.4276938030618, 130.91433759827 -12.4272906594548))\nAYAA-F7FJT\tKingsley Drive, Beaudesert\tReady for service\tPOLYGON ((153.011802811568 -27.9947144922874, 153.011870614587 -27.9950031087973, 153.011818278318 -27.9951018209668, 153.011610807366 -27.9951882529777, 153.011405768823 -27.9948004761973, 153.010956112068 -27.9948033754098, 153.010614798034 -27.9945724636891, 153.010551089883 -27.9945294171233, 153.010205069294 -27.994978005746, 153.010583340337 -27.9952322097846, 153.01075499215 -27.9953498618829, 153.010933193635 -27.9955338198486, 153.011017811759 -27.9956685787117, 153.011140478864 -27.9958973251162, 153.011278483023 -27.9961866544465, 153.01092256235 -27.9963364018617, 153.010999615098 -27.9965115071163, 153.01136065591 -27.9963655084108, 153.011826465284 -27.9971885599296, 153.011986926771 -27.997384225006, 153.012092788383 -27.9975118093773, 153.012220433632 -27.9976216079433, 153.012339193876 -27.9976940052306, 153.013025800032 -27.997972705585, 153.014685541113 -27.9978515124223, 153.015073027365 -27.9979126976576, 153.015310419241 -27.997590305594, 153.01574157899 -27.9976637625854, 153.016017500518 -27.9963253226502, 153.016041086521 -27.9960895477552, 153.016015362016 -27.9958531067415, 153.015941382176 -27.9956256950972, 153.015855765514 -27.995431791771, 153.014083520123 -27.9953544931662, 153.011802811568 -27.9947144922874))\n260\tGlenside\tReady for service\tPOLYGON ((138.62478255578358 -34.940416129598376, 138.62525462457074 -34.94615023181472, 138.62716435739037 -34.94607987716239, 138.62714289971944 -34.945393916136005, 138.62671374627411 -34.945024550129361, 138.62656354256868 -34.943441534110967, 138.6263275081796 -34.943124927240085, 138.62675666161596 -34.941629822722781, 138.62934231110992 -34.941515490078622, 138.62939595528272 -34.941427541782289, 138.62936376877187 -34.940732746927054, 138.62729310341587 -34.940811901068408, 138.62719654389224 -34.940143485917545, 138.62495421715093 -34.940319385170078, 138.62478255578358 -34.940416129598376))\n10357\tMillbridge\tReady for service\tPOLYGON ((115.7363560795784 -33.307243356502212, 115.73614418506622 -33.307067388852005, 115.73598727583885 -33.30718843670045, 115.73579952120781 -33.307280343287985, 115.73561176657677 -33.307341987896081, 115.73539584875107 -33.307384578690751, 115.73519602417946 -33.307391303551171, 115.73498010635376 -33.307366873391707, 115.73476284742355 -33.30730634961234, 115.7347360253334 -33.307378081494385, 115.73439538478851 -33.307301866367744, 115.73420226573944 -33.307266000402755, 115.73389381170273 -33.307205476553371, 115.73380798101425 -33.307454296554418, 115.73378920555115 -33.307537236396989, 115.73380261659622 -33.307682941334811, 115.7336550951004 -33.307687424559809, 115.73343515396118 -33.307723290351475, 115.73312669992447 -33.307792780280842, 115.73325276374817 -33.308122296288779, 115.73351830244064 -33.308541474716989, 115.73363363742828 -33.3088665047315, 115.7339608669281 -33.3096134037029, 115.73420763015747 -33.30967168431954, 115.73435246944427 -33.309716515536607, 115.73434710502625 -33.309779279201777, 115.73440611362457 -33.310119995452915, 115.73467969894409 -33.310281386896648, 115.73475480079651 -33.310335183978168, 115.73467433452606 -33.310474159618479, 115.73448657989502 -33.310855220721614, 115.73425054550171 -33.310994195533006, 115.73423445224762 -33.311088339634217, 115.73473870754242 -33.311388703468076, 115.73493719100952 -33.311366288292312, 115.73510348796844 -33.311155585358556, 115.73533952236176 -33.311227314074031, 115.7352751493454 -33.3114290507699, 115.73529124259949 -33.311532160456423, 115.73551654815674 -33.311594922814592, 115.73575794696808 -33.31166395435168, 115.73591619729996 -33.310825625502574, 115.73594301939011 -33.310695616563372, 115.7359778881073 -33.310700099633465, 115.73603421449661 -33.310372834910659, 115.73626488447189 -33.310390767256052, 115.73640167713165 -33.310395250341827, 115.73659747838974 -33.31038852571308, 115.73678523302078 -33.310377317997364, 115.73697298765182 -33.310354902561585, 115.73695689439774 -33.310285414674091, 115.73725998401642 -33.310215926731196, 115.7374182343483 -33.310177820416421, 115.73739141225815 -33.310124023237812, 115.73773741722107 -33.310000737911615, 115.73762744665146 -33.309814688816594, 115.73753625154495 -33.309682436808863, 115.73762208223343 -33.3096308808871, 115.73741555213928 -33.309364134544118, 115.73750138282776 -33.309310336863469, 115.73728412389755 -33.309061522158629, 115.73742628097534 -33.308972314348729, 115.73731631040573 -33.308857538402513, 115.73705345392227 -33.308637863054564, 115.737184882164 -33.308519058809253, 115.73727607727051 -33.308395771213746, 115.73745310306549 -33.307882444624006, 115.73715806007385 -33.307815196375273, 115.73690861463547 -33.307676216496887, 115.736643075943 -33.307463263027685, 115.7363560795784 -33.307243356502212))\nPRJ0001049-3A6E2E02\tO\u0027Connell Street\tContracted\tPOLYGON ((150.73397789150476 -33.76839194885882, 150.73434267193079 -33.766197899085469, 150.739964582026 -33.767321687694455, 150.73964271694422 -33.769319497721895, 150.73397789150476 -33.76839194885882))\nAYCA-1FA2OY\tThe Grove\tUnder construction\tPOLYGON ((114.685670982283 -28.7839001827515, 114.685294813259 -28.7853028536031, 114.685305508168 -28.785631068386, 114.685334951 -28.7857002016177, 114.685329818178 -28.7872473809138, 114.689456056556 -28.7872579209508, 114.68946499999 -28.7847149999865, 114.689465560329 -28.7846895919465, 114.685670982283 -28.7839001827515))\nAYCA-10LG0G\tSpringlake Subdivision, Mt Barker\tContracted\tPOLYGON ((138.856486999992 -35.0928450000204, 138.856388999992 -35.0938210000204, 138.856715999992 -35.0938430000204, 138.856712999992 -35.0938730000205, 138.857193999992 -35.0939060000204, 138.857357999992 -35.0922870000204, 138.857612999992 -35.0920880000204, 138.857627999992 -35.0921010000204, 138.857738999992 -35.0920140000204, 138.857977999992 -35.0918270000204, 138.858108999992 -35.0919410000204, 138.858094999992 -35.0920790000205, 138.858209999992 -35.0920870000204, 138.858586999992 -35.0919960000205, 138.858803999992 -35.0898580000204, 138.855618999992 -35.0896040000203, 138.855560999992 -35.0898010000204, 138.855553999992 -35.0898580000204, 138.854232999992 -35.0897540000204, 138.854262999992 -35.0894960000204, 138.853782999992 -35.0894590000204, 138.853640999992 -35.0906660000204, 138.853624999992 -35.0908200000204, 138.855117999992 -35.0909380000203, 138.855157999992 -35.0915560000204, 138.854866999992 -35.0915420000203, 138.854819999992 -35.0917340000204, 138.854836999992 -35.0917390000203, 138.854816999992 -35.0920090000204, 138.855320999992 -35.0920340000203, 138.855484999992 -35.0920420000204, 138.855703999992 -35.0920520000204, 138.855851999992 -35.0920490000203, 138.855837999992 -35.0924530000204, 138.855855999992 -35.0924530000204, 138.855828999992 -35.0927220000204, 138.855673999992 -35.0927190000204, 138.855658999992 -35.0928240000204, 138.856002999992 -35.0928480000204, 138.856155999992 -35.0928610000204, 138.856159999992 -35.0928220000204, 138.856486999992 -35.0928450000204))\n10348\tEaton-Millbridge\tReady for service\tPOLYGON ((115.7294225692749 -33.312235992885491, 115.72925627231598 -33.312496005976172, 115.72963714599609 -33.312647971780969, 115.72961837053299 -33.312679352564082, 115.73013603687286 -33.3128878103366, 115.73027819395065 -33.312661420689409, 115.7304659485817 -33.312760045954505, 115.73073953390121 -33.312914708077386, 115.73097825050354 -33.313049196656877, 115.73046326637268 -33.313883021219013, 115.72963312268257 -33.313527522521127, 115.72946280241013 -33.313818912132859, 115.72939306497574 -33.313956989141829, 115.72913825511932 -33.314351483670258, 115.72946012020111 -33.314604766148058, 115.72963714599609 -33.314678733458493, 115.72966665029526 -33.314752700706165, 115.72953790426254 -33.31485356503368, 115.72976857423782 -33.314961153521054, 115.72928041219711 -33.315485645495521, 115.7294574379921 -33.316077148600492, 115.72981417179108 -33.315958582134364, 115.72997510433197 -33.315898064318993, 115.72994291782379 -33.315848753475414, 115.7299268245697 -33.31576358013443, 115.73026746511459 -33.31563133715062, 115.73077440261841 -33.315418403111046, 115.73102116584778 -33.315257021176677, 115.73106676340103 -33.315230124158568, 115.73136985301971 -33.315409437455862, 115.73128938674927 -33.31549685255456, 115.73122501373291 -33.315539439365764, 115.73133230209351 -33.315653751229789, 115.731600522995 -33.315918236928788, 115.73173731565475 -33.315855477682994, 115.73192238807678 -33.316135652538016, 115.73208600282669 -33.316050479477362, 115.73223084211349 -33.31586220189007, 115.73239177465439 -33.315644785598813, 115.73257952928543 -33.31539823038559, 115.73262244462967 -33.315160640156712, 115.73265194892883 -33.315010464866731, 115.73290407657623 -33.314938739263795, 115.73330640792847 -33.314591317539417, 115.73322862386703 -33.314501660095466, 115.73310524225235 -33.314342517905352, 115.73293894529343 -33.314376139519013, 115.73289602994919 -33.314252860205514, 115.73281556367874 -33.314214755655151, 115.73274046182632 -33.31403319845122, 115.73325276374817 -33.313573700134512, 115.73434174060822 -33.312607625043221, 115.73419690132141 -33.312513482582546, 115.73449730873108 -33.312136911723265, 115.73432832956314 -33.312076391254877, 115.73404401540756 -33.311939659671644, 115.73384553194046 -33.311807410887127, 115.73348879814148 -33.311758097729694, 115.73340564966202 -33.311771546775404, 115.73306769132614 -33.312161568198334, 115.73304891586304 -33.312213122623682, 115.73268681764603 -33.312143636217151, 115.73251515626907 -33.312011387742047, 115.73236495256424 -33.3120136292433, 115.73235154151917 -33.311825342937475, 115.73197066783905 -33.311825342937475, 115.73197335004807 -33.312101047747056, 115.73190629482269 -33.312370027208893, 115.73187410831451 -33.31242382300168, 115.73176145553589 -33.312634522870468, 115.73158979415894 -33.31293039842236, 115.73156833648682 -33.313024540432828, 115.73139399290085 -33.312934881377537, 115.7312947511673 -33.31295281319597, 115.72955131530762 -33.311984489722562, 115.7294225692749 -33.312235992885491))\n17337529\t276 Old North\tCheck with carrier\tPOLYGON ((152.866091168 -27.061864018, 152.86669488 -27.061986969, 152.867071072 -27.062766004, 152.868651136 -27.062589958, 152.869030912 -27.062161017, 152.870054048 -27.0617519635, 152.870906176 -27.0607500035, 152.870778016 -27.0606009675, 152.870673952 -27.060352013, 152.870610976 -27.060137006, 152.87058 -27.0600519615, 152.870515936 -27.05993802, 152.870420896 -27.0598850175, 152.870259968 -27.0598619665, 152.870148 -27.059814995, 152.87006304 -27.059765045000002, 152.86997808 -27.059588999000002, 152.869749856 -27.059288041000002, 152.869637152 -27.0592119875, 152.86915296 -27.0590120025, 152.86895712 -27.058760994500002, 152.868930112 -27.058581008, 152.86736304 -27.058404962, 152.86731984 -27.059058992500002, 152.867702176 -27.059096973000003, 152.867405152 -27.0598889765, 152.86713696 -27.059738035000002, 152.86691088 -27.0601160455, 152.86691088 -27.060531037500002, 152.867220832 -27.0606570225, 152.866854016 -27.061160037500002, 152.866685152 -27.06126003, 152.866091168 -27.061864018))\n10565\tSecret Harbour\tReady for service\tPOLYGON ((115.74663698673248 -32.396324465154152, 115.74640095233917 -32.396097989253605, 115.74716806411743 -32.395608799369889, 115.7471090555191 -32.395386851233852, 115.74365973472595 -32.395537246634341, 115.74568748474121 -32.397883523993336, 115.7470178604126 -32.399858335673812, 115.74900269508362 -32.402267909766742, 115.74982881546021 -32.402041448774334, 115.74967861175537 -32.401633817556458, 115.7499897480011 -32.40143453051337, 115.74818730354309 -32.39805564232595, 115.74684619903564 -32.398599171748515, 115.7463526725769 -32.397837309598991, 115.74621319770813 -32.397302834517106, 115.74641168117523 -32.396691354907553, 115.74663698673248 -32.396324465154152))\nAYCA-1MI4GK\tMoncrieff Residential Estate\tContracted\tPOLYGON ((149.119975532677 -35.1609006970852, 149.120341885097 -35.1607838737635, 149.120368285657 -35.1607892647282, 149.120395050887 -35.1607923751234, 149.120421984154 -35.1607931820985, 149.120448887592 -35.1607916797249, 149.120475157005 -35.1607879545889, 149.120501018746 -35.160782027612, 149.120526288602 -35.1607739410122, 149.120550786575 -35.1607637523901, 149.120702614305 -35.16069112147, 149.120760070515 -35.1607035690423, 149.120954784351 -35.1609780706941, 149.121014572353 -35.1610500795422, 149.12108071996 -35.1611162941433, 149.121152668248 -35.1611761550075, 149.121229809281 -35.1612291563314, 149.12129972786 -35.1612688668065, 149.121372561977 -35.1613029361606, 149.121447857399 -35.1613311519186, 149.121525144541 -35.1613533381114, 149.121603941398 -35.1613693563736, 149.121950099084 -35.1614338247594, 149.121981623606 -35.1614393353041, 149.122013259839 -35.1614441633844, 149.12204499301 -35.161448306746, 149.122076925334 -35.1614517748867, 149.122108925362 -35.1614545496875, 149.122140978042 -35.1614566298431, 149.122242056723 -35.1614621104267, 149.122250813225 -35.1614624785352, 149.122259576086 -35.1614626336816, 149.12226834013 -35.1614625757743, 149.122277094408 -35.1614623050961, 149.122285839527 -35.1614618218387, 149.122294570326 -35.1614611262874, 149.123126319262 -35.1615665886602, 149.123349963834 -35.1610263749436, 149.123379606885 -35.1608687039272, 149.123408185631 -35.1608627881616, 149.123436118965 -35.1608543341769, 149.123463181939 -35.1608434100535, 149.12348806958 -35.1608307209505, 149.123511776431 -35.1608159428148, 149.123534127566 -35.1607991846883, 149.123545653875 -35.1607888878396, 149.12355633889 -35.1607777204147, 149.123566117049 -35.1607657509327, 149.123574594929 -35.1607535741562, 149.12358213384 -35.1607407947526, 149.123588691154 -35.1607274849827, 149.123766684597 -35.1603190909408, 149.123772481157 -35.1603054917966, 149.12377804908 -35.1602917974522, 149.123783386803 -35.1602780117513, 149.12378846485 -35.1602642165742, 149.123793312381 -35.1602503387168, 149.123797928049 -35.1602363820307, 149.124064259007 -35.1594071874399, 149.124081766568 -35.1593491026701, 149.124097060974 -35.1592903963133, 149.124110120264 -35.1592311526629, 149.124120856134 -35.1591718870707, 149.124129355208 -35.1591122596016, 149.124135605458 -35.1590523546459, 149.124182998371 -35.158492448335, 149.124183978252 -35.1584818965163, 149.124185128165 -35.1584713618713, 149.124186447812 -35.15846084714, 149.124187940132 -35.1584503331999, 149.124189602161 -35.1584398447482, 149.124191433463 -35.1584293845242, 149.124238698294 -35.1583966454019, 149.124285511541 -35.158397799126, 149.124332337386 -35.1583981883079, 149.124379163343 -35.1583978128441, 149.124425959041 -35.1583966734161, 149.124472729907 -35.1583947703301, 149.124519463481 -35.1583921040933, 149.124720687352 -35.15838055959, 149.124895806061 -35.1579830339057, 149.124619225826 -35.1580181176888, 149.124621351762 -35.1580998452539, 149.124470653909 -35.1581137955094, 149.124382613014 -35.1581180516929, 149.124250817206 -35.1581180869802, 149.124097472391 -35.1581091862605, 149.12395339293 -35.1580919228401, 149.123867277617 -35.1580773768342, 149.123739917403 -35.1580498469112, 149.123233297349 -35.1579096338418, 149.122930336312 -35.1578291645954, 149.122884778494 -35.1577661101813, 149.122681381385 -35.1577308076855, 149.122609512908 -35.1577687352335, 149.122557318102 -35.1577614452722, 149.122505032917 -35.1577548346239, 149.122452666192 -35.1577489044063, 149.122400122998 -35.1577436459165, 149.122347515751 -35.1577390724511, 149.122294853383 -35.1577351847866, 149.122036451476 -35.1577163906094, 149.12201447919 -35.157714139999, 149.121992813774 -35.1577098439187, 149.121971645219 -35.1577035400426, 149.12195115916 -35.1576952836518, 149.121932646801 -35.157685784931, 149.121915043611 -35.1576746916515, 149.121898486583 -35.1576620901442, 149.121883104569 -35.1576480784776, 149.121842621028 -35.1576109984857, 149.121799118144 -35.1575775120412, 149.121752913906 -35.1575478639172, 149.121704346049 -35.1575222708297, 149.121650640353 -35.1574997630439, 149.121595116436 -35.1574822132039, 149.121538230933 -35.1574697656413, 149.121480451677 -35.1574625227264, 149.121459604833 -35.1574596080179, 149.121439106867 -35.157454820551, 149.121419125661 -35.1574481995356, 149.121399824864 -35.1574397991989, 149.121381362551 -35.1574296883407, 149.121363889932 -35.1574179497705, 149.121347550111 -35.1574046796287, 149.121331903366 -35.1573893722949, 149.121317764869 -35.1573726618796, 149.121305259837 -35.1573546963782, 149.12129449902 -35.1573356349017, 149.12128557772 -35.1573156462676, 149.12127857495 -35.1572949075048, 149.120988428544 -35.1573723035123, 149.120999792038 -35.1573967387004, 149.121009406722 -35.1574219133955, 149.121017224864 -35.1574477026195, 149.121023120591 -35.1574735238, 149.121027215151 -35.1574996910989, 149.12102948891 -35.1575260790313, 149.121026776269 -35.1575383296262, 149.121023061148 -35.1575503143404, 149.12101836893 -35.1575619512899, 149.121012731675 -35.1575731609667, 149.121006187899 -35.1575838667822, 149.12099878231 -35.1575939955902, 149.120990565506 -35.1576034781869, 149.120981593629 -35.1576122497838, 149.120971760947 -35.1576203772674, 149.120961280568 -35.1576276504568, 149.12095022651 -35.1576340179853, 149.120938676842 -35.1576394348822, 149.120926713132 -35.157643862891, 149.120914419874 -35.157647270739, 149.120901883889 -35.1576496343583, 149.120889193712 -35.1576509370559, 149.120876438966 -35.1576511696316, 149.12073707456 -35.1576402615722, 149.120695374958 -35.1578986357208, 149.120779134036 -35.1579078421851, 149.120795525613 -35.1579121563826, 149.120811709124 -35.157917195243, 149.120827652547 -35.1579229487968, 149.120843015502 -35.1579292704701, 149.120858088321 -35.1579362557454, 149.120872842356 -35.1579438913461, 149.120884104584 -35.157952277719, 149.120895079406 -35.157961036846, 149.12090575449 -35.1579701588851, 149.120915919033 -35.1579794457347, 149.120925772887 -35.1579890616104, 149.120935305408 -35.1579989961241, 149.120950563479 -35.1580179413246, 149.120966966928 -35.1580359039598, 149.120984452622 -35.1580528148988, 149.121003675612 -35.1580691865781, 149.121023912445 -35.1580842871028, 149.121045079204 -35.1580980538566, 149.12106126297 -35.1581093650788, 149.121077923041 -35.1581199622517, 149.121095027933 -35.1581298253492, 149.121112977303 -35.1581391483128, 149.121131323934 -35.1581476629283, 149.121150031445 -35.1581553523112, 149.121158398804 -35.1581595639693, 149.121166347005 -35.1581645214762, 149.121173809746 -35.158170183478, 149.121180724776 -35.1581765027447, 149.121187034412 -35.158183426563, 149.121192686022 -35.1581908971772, 149.121197632461 -35.1581988522701, 149.12120149136 -35.1582064683515, 149.121204703448 -35.1582143789956, 149.121207246466 -35.1582225293855, 149.121209102792 -35.1582308630431, 149.121210259564 -35.1582393222201, 149.121210708765 -35.1582478482986, 149.121210447283 -35.1582563821971, 149.121206926893 -35.1583239041772, 149.121195381879 -35.1584476572663, 149.121196874744 -35.1585817571294, 149.121203883242 -35.1586738212042, 149.121225249931 -35.1588081862869, 149.121244624413 -35.1588765542698, 149.121261232468 -35.1589381286706, 149.121368353332 -35.1592547706398, 149.121340678772 -35.1592939182216, 149.119594629303 -35.160091628925, 149.119392475722 -35.1601802709489, 149.119113920128 -35.1603066559139, 149.119131833048 -35.160329689889, 149.119151676378 -35.1603510833223, 149.119173300545 -35.160370674957, 149.119196542552 -35.1603883171175, 149.119221227209 -35.1604038768229, 149.119247168451 -35.1604172367891, 149.119274170741 -35.1604282963129, 149.119300668961 -35.1604366090027, 149.119327763015 -35.1604427056134, 149.119355267911 -35.1604465445184, 149.119382995847 -35.1604480995061, 149.119410757503 -35.1604473599593, 149.119438363325 -35.1604443309275, 149.119465624826 -35.1604390330926, 149.119492355867 -35.1604315026273, 149.119975532677 -35.1609006970852))\n282\tArcadia Group Hidden Valley\tReady for service\tGEOMETRYCOLLECTION (POLYGON ((144.98722587585655 -37.395428045229842, 144.98795543670374 -37.393382337909038, 144.98885665893627 -37.392904998167623, 144.99351297378624 -37.394592721484813, 144.99366317749167 -37.395547376433164, 144.99327693938815 -37.395649660170712, 144.99203239441198 -37.39556442373221, 144.99078784942679 -37.395257571751856, 144.98973642348889 -37.39512119269115, 144.98804126739643 -37.39556442373221, 144.98722587585655 -37.395428045229842)), POLYGON ((144.99366317749167 -37.395547376433164, 144.99445711136059 -37.395547376433164, 144.99402795791522 -37.393586911153506, 144.99329839705908 -37.393740340720456, 144.99366317749167 -37.395547376433164)))\n17325557\tAvenue Hill Stage 1\tCheck with carrier\tPOLYGON ((143.714459872 -37.517128029, 143.713523168 -37.522501021000004, 143.716290112 -37.522828989000004, 143.716674976 -37.5208869515, 143.716547168 -37.5206949955, 143.716626016 -37.520189002, 143.71586208 -37.519968963000004, 143.71608816 -37.519005964, 143.715356992 -37.518563962, 143.715533056 -37.5176880055, 143.715273856 -37.517649026, 143.71536816 -37.5171849905, 143.714459872 -37.517128029))\n17335954\tMalcolm Road Subdivision\tCheck with carrier\tPOLYGON ((145.562276896 -17.191856979, 145.561530976 -17.1899929745, 145.55805696 -17.1875140115, 145.557780832 -17.191574003, 145.562276896 -17.191856979))\n245\tMorphettville Redevelopment\tReady for service\tGEOMETRYCOLLECTION (POLYGON ((138.5436800574976 -34.986034111343166, 138.54297195432133 -34.985401225460805, 138.5436585998267 -34.984750754316416, 138.54664121625513 -34.984170600017165, 138.546673402766 -34.984715593567309, 138.54626570699159 -34.98483865612458, 138.5436800574976 -34.986034111343166)), POLYGON ((138.5437873458612 -34.9861747519862, 138.54420577046659 -34.986561512507848, 138.544355974172 -34.986719732194729, 138.54453836438827 -34.987229549105969, 138.54482804295915 -34.987194389420686, 138.5453108405863 -34.987062540467313, 138.545385942439 -34.987510826042417, 138.5457721805335 -34.987493246262417, 138.5457936382044 -34.988073377016747, 138.54699526784776 -34.988020638027137, 138.54774628636588 -34.9882140141565, 138.54741369245315 -34.984724383755626, 138.54702745434966 -34.984768334686031, 138.546673402766 -34.9848562364746, 138.5463944530261 -34.984917767671035, 138.54638372418611 -34.984926557838392, 138.54511772153003 -34.985515496885071, 138.5437873458612 -34.9861747519862)))\n17203252\tRedgum Rise Estate\tCheck with carrier\tPOLYGON ((146.092817888 -37.048975021000004, 146.093456896 -37.0492479885, 146.094149888 -37.049194986, 146.09444112 -37.049226029, 146.09444112 -37.049226029, 146.09482992 -37.0493489615, 146.094750016 -37.0494700255, 146.094684832 -37.049686013, 146.096244 -37.0501329545, 146.096355968 -37.050461015, 146.097559072 -37.050641001500004, 146.098140832 -37.0478899775, 146.098063072 -37.047879007, 146.098091168 -37.0477530035, 146.097692992 -37.0476970225, 146.097433088 -37.047735003, 146.097209152 -37.047826985, 146.097155872 -37.047688013, 146.096874016 -37.047751024, 146.096740096 -37.0478570475, 146.096565856 -37.0477160035, 146.096523008 -37.0476240215, 146.096523008 -37.0476240215, 146.096466112 -37.047632032, 146.096358112 -37.0476539915, 146.096287936 -37.047474005, 146.096193952 -37.047005992, 146.095382176 -37.047105004, 146.095207936 -37.046972969500004, 146.093814016 -37.0472910215, 146.093614912 -37.0482489885, 146.093587936 -37.0484129725, 146.092817888 -37.048975021000004))\n10393\tIluka\tReady for service\tPOLYGON ((115.732501745224 -31.73569532841298, 115.73292821645737 -31.735551614294661, 115.73347337543964 -31.735462078005057, 115.73416337370872 -31.735491163051293, 115.73465455323458 -31.735427004848926, 115.73518328368664 -31.735253349758263, 115.73546793311834 -31.7350796943421, 115.73550833389163 -31.734949523853629, 115.73552459478378 -31.734620888893204, 115.73636412620544 -31.734682481304272, 115.73636412620544 -31.735425008815248, 115.73638021945953 -31.73605803448212, 115.7364459335804 -31.736836479034046, 115.7365545630455 -31.737363992686053, 115.73665782809258 -31.738058024990551, 115.73651969432831 -31.738387075465702, 115.73585048317909 -31.73843954094469, 115.73450535535812 -31.7382730199741, 115.73256611824036 -31.737962788326424, 115.73271095752716 -31.737459800248629, 115.73276996612549 -31.736883812814156, 115.73267877101898 -31.736212013044341, 115.732501745224 -31.73569532841298))\nAYCA-FZTQG\tLot 502 Jane Brook Drive\tReady for service\tPOLYGON ((116.058612526473 -31.8620273343564, 116.058635992741 -31.8621854584307, 116.058632227866 -31.8625070718082, 116.057742588692 -31.8624971776635, 116.057754569496 -31.8632268909605, 116.06046984 -31.8631852800109, 116.06121367394 -31.8631955500188, 116.06116896932 -31.8620485518726, 116.062885539982 -31.8620713836498, 116.062905819395 -31.8615604685691, 116.061182646528 -31.8615137722717, 116.061184113654 -31.8613704953309, 116.061036538804 -31.8609598305967, 116.060939858883 -31.8606907920096, 116.060856762045 -31.8606212270566, 116.060831196563 -31.8603501273169, 116.060878386752 -31.8599505614195, 116.060950454646 -31.8597463208598, 116.060988080984 -31.8596160018753, 116.06100371832 -31.8594994674732, 116.061025530351 -31.8593369167361, 116.061042441135 -31.8592770046055, 116.061085739655 -31.8591570349995, 116.060985112629 -31.8591291340891, 116.059547872855 -31.8591058005127, 116.059360734452 -31.8592718241528, 116.058670242509 -31.8592595858961, 116.05866696 -31.8595400100118, 116.058612526473 -31.8620273343564))\nAYCA-1COQ8Z\tRiver Oaks Estate\tUnder construction\tPOLYGON ((153.092011 -27.7696789999834, 153.091515 -27.7698409999834, 153.091749 -27.7708729999834, 153.091621 -27.7721599999834, 153.091202 -27.7720959999834, 153.090956 -27.7733339999835, 153.092056 -27.7734989999835, 153.092182 -27.7734689999835, 153.09223 -27.7736879999835, 153.091946 -27.7749779999835, 153.092599 -27.7750769999835, 153.092203 -27.7770639999835, 153.092105 -27.7773819999835, 153.092485 -27.7774349999835, 153.092686 -27.7763489999835, 153.092703 -27.7758489999835, 153.092762 -27.7754399999835, 153.094232 -27.7754459999835, 153.094798 -27.7747809999835, 153.095099 -27.7741099999835, 153.09495 -27.7733149999835, 153.093075 -27.7731639999835, 153.092943 -27.7728069999835, 153.092883 -27.7725749999834, 153.092796 -27.7719909999835, 153.092787 -27.7715149999834, 153.092888 -27.7706259999834, 153.092475 -27.7700689999835, 153.092174 -27.7696199999834, 153.092011 -27.7696789999834))\nAYCA-19ZSPD\tVermont Riverlands\tContracted\tPOLYGON ((150.868297999992 -33.5638770000159, 150.867572999992 -33.5675750000159, 150.867502999992 -33.5675720000159, 150.867435999992 -33.5677530000159, 150.867482999992 -33.5677670000159, 150.867355999992 -33.5684550000159, 150.867318999992 -33.5684360000159, 150.867116342249 -33.5695225155869, 150.867324057364 -33.5694944192937, 150.867553868856 -33.5701883397118, 150.869125000069 -33.569844000001, 150.868921999992 -33.5691580000158, 150.869546999992 -33.5659870000159, 150.870055999992 -33.5661700000159, 150.870480999992 -33.5641750000158, 150.868297999992 -33.5638770000159))\n17356820\tAspect\tCheck with carrier\tPOLYGON ((153.138958912 -27.746267041, 153.138601088 -27.748105016, 153.138996 -27.7481889875, 153.138687136 -27.749748963000002, 153.138938048 -27.749806017, 153.13904496 -27.749810975000003, 153.141473152 -27.749727003500002, 153.142047008 -27.7468070375, 153.140996896 -27.7456280325, 153.140928832 -27.745623981, 153.138958912 -27.746267041))\nAYCA-L6RW4\tRiverside Estate\tContracted\tPOLYGON ((146.949994 -36.1360260000277, 146.949659 -36.1359710000276, 146.949417 -36.1359000000276, 146.949173 -36.1357970000276, 146.948976 -36.1356810000277, 146.948811 -36.1355500000276, 146.948677 -36.1354240000277, 146.948385 -36.1349980000276, 146.948321 -36.1346100000276, 146.947905 -36.1347950000276, 146.947797 -36.1346590000276, 146.946876 -36.1351030000276, 146.946276 -36.1353740000276, 146.946514 -36.1356910000277, 146.946599 -36.1361050000276, 146.946405 -36.1361050000276, 146.946398 -36.1385370000276, 146.946523 -36.1385370000277, 146.946524 -36.1391040000277, 146.94671 -36.1391240000276, 146.94703 -36.1391250000276, 146.947012 -36.1391530000277, 146.947035 -36.1392290000277, 146.94705 -36.1393460000277, 146.947039 -36.1394330000276, 146.947115 -36.1394300000277, 146.947415498818 -36.1394115630109, 146.94733 -36.1396140000274, 146.947588000001 -36.1396800000271, 146.947702000003 -36.1396800000267, 146.947805 -36.139669000027, 146.9479 -36.1396350000271, 146.947903 -36.1395870000262, 146.947934 -36.1393880000271, 146.947927 -36.139223000027, 146.947896414415 -36.1391011301803, 146.947947665643 -36.1388588462116, 146.948003881048 -36.1388381619407, 146.948200591175 -36.138832033298, 146.948397321613 -36.1387948413083, 146.948303069353 -36.1383806046545, 146.948553 -36.1383390000276, 146.948672579579 -36.1375430276011, 146.949038302554 -36.137539231898, 146.949039 -36.137466000027, 146.949686 -36.1371930000271, 146.949829654707 -36.1372972523496, 146.950034532874 -36.1371064498956, 146.949875 -36.1370120000276, 146.949746 -36.1369160000276, 146.949652 -36.1368280000276, 146.949586 -36.1367520000276, 146.949994 -36.1360260000277))\nAYCA-XKC83\tGreenway - 799 Richmond Rd\tUnder construction\tPOLYGON ((150.844540999992 -33.7239020000161, 150.844644075365 -33.7265980865351, 150.844726908911 -33.7268420705954, 150.846686867368 -33.7263654863023, 150.846756830365 -33.7263278483477, 150.84679413825 -33.7263036597492, 150.84688342031 -33.7262473529465, 150.846944421012 -33.7261867877418, 150.849032349801 -33.725705990203, 150.849022999992 -33.7256890000162, 150.848981999992 -33.7256400000161, 150.848954999992 -33.7255740000162, 150.848885722684 -33.7255446203415, 150.848830999992 -33.7255170000162, 150.848761999992 -33.7254750000162, 150.848725999992 -33.7254240000162, 150.848669525815 -33.725303417855, 150.848613999984 -33.7248530000114, 150.848643724191 -33.7246910871128, 150.848760133455 -33.7241007374696, 150.848707999984 -33.7236040000114, 150.848689999984 -33.7235390000115, 150.848601999984 -33.7235060000114, 150.848460045259 -33.723539453667, 150.847807011735 -33.723617862742, 150.847701999984 -33.7233900000114, 150.844540999992 -33.7239020000161))\n17340077\t5-21 GRAY ST\tCheck with carrier\tMULTIPOLYGON (((151.921127168 -27.619234016, 151.920209888 -27.616966027, 151.917098048 -27.6170040075, 151.916996896 -27.617639038500002, 151.91675712 -27.6191279925, 151.920988928 -27.6196709675, 151.921127168 -27.619234016)), ((153.42793488 -28.145302014000002, 153.42785712 -28.145104027000002, 153.42776208 -28.144900971000002, 153.427377952 -28.14484203, 153.427448896 -28.1444789675, 153.427200832 -28.144440987, 153.426953152 -28.144402026, 153.426848032 -28.144386005, 153.42670512 -28.1443640455, 153.426497056 -28.1443320035, 153.426457088 -28.144325972500003, 153.426209056 -28.144286993, 153.426146048 -28.144278002, 153.425959936 -28.1442490125, 153.425923936 -28.1442429815, 153.425711872 -28.144211032, 153.42546384 -28.1441719785, 153.425374912 -28.1441580295, 153.425360896 -28.144167039, 153.425198176 -28.1443940155, 153.42503507199999 -28.144619993, 153.424879936 -28.144835999, 153.424994048 -28.144846988, 153.425320928 -28.144898011000002, 153.425570048 -28.144935991500002, 153.42581808 -28.1449749525, 153.426066112 -28.145013025500003, 153.426314176 -28.145051006, 153.426561856 -28.1450899855, 153.426810976 -28.145127966, 153.427059008 -28.145166039, 153.42730704 -28.145205, 153.42793488 -28.145302014000002)))\nAYAA-FPQGL\tThe Ponds\tReady for service\tPOLYGON ((150.909569357808 -33.6949818131024, 150.909622526901 -33.6968798195078, 150.909226338473 -33.6969268406154, 150.908964223177 -33.6991554900977, 150.910340370191 -33.6991099964759, 150.912668243558 -33.6986884107241, 150.91227180681 -33.6967516941239, 150.911474706347 -33.6968146505588, 150.911469240512 -33.6947322087368, 150.909569357808 -33.6949818131024))\nAYCA-1J8WS5\tJimboomba Woods\tReady for service\tPOLYGON ((153.042010627221 -27.8691483307398, 153.042887429639 -27.868691599569, 153.042983 -27.8685109999836, 153.043840292203 -27.8679257444822, 153.043987 -27.8680999999842, 153.044351 -27.8682049999842, 153.044512 -27.8678749999836, 153.045403 -27.8682409999842, 153.045552082939 -27.8680452830521, 153.045249009143 -27.8679220626409, 153.044676 -27.8675379999843, 153.044285 -27.8670819999836, 153.044083 -27.8661979999842, 153.043762 -27.8662199999842, 153.043291 -27.8658869999842, 153.043236 -27.8656379999842, 153.041161 -27.8642119999842, 153.040912 -27.8643519999842, 153.040886 -27.8660019999842, 153.040787 -27.8665299999842, 153.041636 -27.8684939999843, 153.041797 -27.8686839999842, 153.042010627221 -27.8691483307398))\n10192\tCanningvale-Sanctuary Waters\tReady for service\tPOLYGON ((115.92712484300137 -32.095832890394789, 115.9273387491703 -32.095676104202134, 115.92755936086178 -32.095929461466476, 115.92811658978462 -32.095390437363157, 115.92873215675354 -32.094781466245294, 115.92884413897991 -32.09471812619914, 115.92900708317757 -32.094883151070619, 115.92924177646637 -32.095176843478058, 115.92952609062195 -32.095633002153654, 115.92973262071609 -32.096105064337465, 115.93006655573845 -32.097211645791624, 115.93012824654579 -32.097508170988164, 115.93018390238285 -32.09814382233273, 115.93021541833878 -32.098426143271809, 115.9301570802927 -32.099096119462629, 115.93022882938385 -32.099443442899414, 115.92989891767502 -32.09950195130709, 115.92989522963762 -32.099493714688862, 115.92976950109005 -32.099508199775592, 115.92978090047836 -32.099573027611143, 115.92908151447773 -32.099515087291522, 115.92908687889576 -32.099403750887923, 115.92876568436623 -32.099390685892892, 115.92877238988876 -32.099320248496163, 115.9285806119442 -32.099318544364934, 115.92861145734787 -32.099434141195232, 115.92861145734787 -32.099453738677759, 115.92826746404171 -32.099436697388846, 115.92826411128044 -32.099481572776142, 115.92790469527245 -32.099467939749424, 115.92789731919765 -32.099378756982752, 115.92768978327513 -32.09939153795785, 115.92732332646847 -32.0993912539362, 115.92732198536396 -32.09921913665432, 115.92714160680771 -32.09847953989054, 115.92704437673092 -32.098089857466363, 115.92695318162441 -32.0977223274759, 115.92739574611187 -32.0976831317637, 115.92738837003708 -32.097538845953551, 115.92743128538132 -32.09741614603017, 115.92745408415794 -32.097211077734755, 115.92750437557697 -32.096791850811869, 115.9273923933506 -32.096504980331808, 115.92722810804844 -32.096235150840258, 115.92701755464077 -32.09595111893546, 115.92710271477699 -32.095905922277161, 115.9271228313446 -32.095832322329358, 115.92712484300137 -32.095832890394789))\nON-V-LSP-WTN\tWorthington Estate\tReady for service\tPOLYGON ((145.44869273900986 -38.058961870753983, 145.44821530580521 -38.058904849186689, 145.44806778430939 -38.058966094572014, 145.44720947742462 -38.058887953898967, 145.44674545526505 -38.058968206480934, 145.446737408638 -38.058632412196381, 145.44631361961365 -38.058414884258866, 145.44520854949951 -38.058634524114943, 145.44499933719635 -38.058043184539159, 145.44344633817673 -38.058389541156139, 145.44336050748825 -38.058754903371785, 145.44292867183685 -38.058683098224861, 145.4434597492218 -38.056714764997068, 145.44388622045517 -38.056769676298508, 145.4439988732338 -38.0568942825605, 145.44519513845444 -38.056951305694376, 145.44537484645844 -38.0562733611157, 145.44917017221451 -38.056780236159447, 145.44869273900986 -38.058961870753983))\nAYAA-FPOR9\tThe Fairways\tReady for service\tPOLYGON ((152.464248641146 -27.5456169942859, 152.46420943736 -27.54572485242, 152.463764291121 -27.5485510846923, 152.466462790367 -27.5487419994609, 152.466471512243 -27.5487061655414, 152.466510176777 -27.5485598611549, 152.466576474276 -27.5483678863908, 152.46666777903 -27.5481792149603, 152.466761579422 -27.5480383355078, 152.466928303219 -27.5479022238044, 152.467056954203 -27.5478399516769, 152.467200556573 -27.547804631387, 152.467336497997 -27.5477916994567, 152.467497520548 -27.5477968045847, 152.46825331832 -27.5478658524799, 152.468146468606 -27.5468237265946, 152.468284739787 -27.5466323776609, 152.468155498236 -27.5456202793463, 152.466629114085 -27.5457479176698, 152.464248641146 -27.5456169942859))\n269\tWatergardens Town Centre\tReady for service\tMULTIPOLYGON (((144.77382932661777 -37.700012890712117, 144.77394504853783 -37.699935895159186, 144.77393661497237 -37.699911023768991, 144.77382932661777 -37.700012890712117)), ((144.77627550123731 -37.70288208544553, 144.7771552657899 -37.702440678099421, 144.77623258588648 -37.701455990702208, 144.77621112821555 -37.700641067101351, 144.77640424727178 -37.700624089431322, 144.77616821287373 -37.699554488365727, 144.77666173933181 -37.699588444192528, 144.7790649986095 -37.69987706808994, 144.77940832136218 -37.699163995242067, 144.7790649986095 -37.698824434332138, 144.77627550123731 -37.698722565755943, 144.77565322874472 -37.697262434115856, 144.77458034513586 -37.697398261527624, 144.77451597212311 -37.697568045443461, 144.77477346418311 -37.699384708999823, 144.77394504853783 -37.699935895159186, 144.77417264937043 -37.700607111757414, 144.77627550123731 -37.70288208544553)))\n17336600\tRiverglen Estate\tCheck with carrier\tPOLYGON ((152.659110976 -27.4389650025, 152.659730176 -27.439731994000002, 152.660001952 -27.439812006500002, 152.660882176 -27.440613001, 152.661067936 -27.440411036500002, 152.66174688 -27.441207998, 152.662289056 -27.440769955, 152.661981952 -27.4405529685, 152.662998976 -27.4393899845, 152.66330496 -27.439107027000002, 152.664089056 -27.437586031000002, 152.66463696 -27.436895999500003, 152.664127936 -27.4367259845, 152.66375712 -27.4365109775, 152.662912928 -27.436250978500002, 152.662652992 -27.4361490065, 152.661705856 -27.437997952, 152.659110976 -27.4389650025))\nAYCA-1F7EBL\tLampada\tContracted\tPOLYGON ((150.954064771498 -31.1398907133126, 150.95377293535 -31.139898114185, 150.953452655634 -31.1406161575606, 150.954007310451 -31.1408955963089, 150.953778899851 -31.1412802048073, 150.954444455445 -31.1413581649546, 150.953718999994 -31.1428410000051, 150.954868999994 -31.1431250000052, 150.955066999994 -31.1431940000051, 150.955069999994 -31.1431740000051, 150.956309999994 -31.1432020000051, 150.956720999994 -31.1424710000052, 150.957769999994 -31.1406050000051, 150.956613999994 -31.1398220000051, 150.955562999994 -31.1394460000051, 150.954811999994 -31.1391740000051, 150.954124937854 -31.1398891874303, 150.954064771498 -31.1398907133126))\nAYCA-13X4N6\tCalleya\tReady for service\tPOLYGON ((115.874723296591 -32.1265031928837, 115.874722919333 -32.1265029887134, 115.873599504474 -32.1277429033041, 115.873852153837 -32.1279089842485, 115.873708985973 -32.1280682343799, 115.873457900908 -32.127904346772, 115.872734970256 -32.1287045089616, 115.872982087754 -32.1288330021713, 115.872903882946 -32.1289512773255, 115.873007410484 -32.1290054699088, 115.872870153693 -32.1291962873395, 115.873355047325 -32.1294116958567, 115.873172962739 -32.1297287087218, 115.873752232218 -32.130123159846, 115.875165372583 -32.1307144222396, 115.875019752945 -32.130899241428, 115.875103679727 -32.1309356359467, 115.875224848271 -32.1307377476969, 115.875967030679 -32.1310465427034, 115.877480490382 -32.1314057000293, 115.87903655183 -32.131873603431, 115.879097356655 -32.1317232823281, 115.877501845391 -32.1312782409625, 115.877109248216 -32.1309327844717, 115.877023569236 -32.1308982411479, 115.876964712621 -32.130856120608, 115.876271750115 -32.129671928643, 115.875977898976 -32.127836028326, 115.876147067214 -32.1273331282065, 115.875276191848 -32.126788856828, 115.875074554796 -32.126720297746, 115.874984837829 -32.1266718273606, 115.874940613418 -32.1266457150466, 115.874723296591 -32.1265031928837))\n10876\tMelrose Park\tContracted\tPOLYGON ((151.06601751590676 -33.809225805531725, 151.06670304115596 -33.811099715993983, 151.07128279545009 -33.809817827862126, 151.07038617279034 -33.807299889684082, 151.06806236947978 -33.80828068229556, 151.0668360948082 -33.80878890354812, 151.06601751590676 -33.809225805531725))\n88\tLakes Entrance\tReady for service\tPOLYGON ((152.919766137 -27.684162625000003, 152.919945161 -27.684291788000007, 152.920035528 -27.684509403999996, 152.9200107 -27.685141700999996, 152.92011309851614 -27.684305267307131, 152.91916896095077 -27.683887239718313, 152.91895438422358 -27.682633147352593, 152.91818190802559 -27.682367125909018, 152.91740943183657 -27.682367125909018, 152.91650820960407 -27.681835081076372, 152.91509200324256 -27.680808987295123, 152.91509200324256 -27.679934899804188, 152.91470576514806 -27.679554859582471, 152.91401911963371 -27.679516855487307, 152.91324664344472 -27.678832779518441, 152.91316994238414 -27.678224708393707, 152.91327186632327 -27.678072690083415, 152.91324504423687 -27.677930172725638, 152.91329868841865 -27.677602382097469, 152.91324504423687 -27.677165326395716, 152.91318067122413 -27.676994304123486, 152.91373857069496 -27.676048926176652, 152.9140228848504 -27.675963414200112, 152.91458078433021 -27.676034674185612, 152.91514941264103 -27.676153440723496, 152.91538008261463 -27.676348217567849, 152.91577704954909 -27.676343466917121, 152.91588433790366 -27.676267456479014, 152.91593798208544 -27.676134438086258, 152.91624375391174 -27.67607743015397, 152.91658171224896 -27.675939660861548, 152.91647442389439 -27.675725880580455, 152.91642077971255 -27.675483595756997, 152.91633494901993 -27.675450340935189, 152.9160077195227 -27.675564357424527, 152.91556783724639 -27.675630866988616, 152.91483291197471 -27.675564357424527, 152.914242825993 -27.675578609476936, 152.913861952314 -27.675759135318398, 152.91354008723224 -27.676034674185612, 152.91299828100784 -27.676965800385407, 152.912821255216 -27.677212832534668, 152.91250475454976 -27.677521621936645, 152.91221507597885 -27.677768652828963, 152.91218825388347 -27.677873165730457, 152.91254766989158 -27.678243710667331, 152.91259058523343 -27.678405229862349, 152.91257985640246 -27.67895154301495, 152.91258522081793 -27.679540608048022, 152.91259058523343 -27.679692624315404, 152.91267641592606 -27.6798161373761, 152.91315384912875 -27.680319689180831, 152.91337915468685 -27.680545336641281, 152.91345157433182 -27.680545336641281, 152.91355349827094 -27.680599967009432, 152.91355618048766 -27.680666473507529, 152.91353740502447 -27.680711602893791, 152.91395851183762 -27.681177147051923, 152.91428037691938 -27.681528679081559, 152.91460760641661 -27.681870709159295, 152.91470148373247 -27.681868333954441, 152.91492142487513 -27.681699694254309, 152.915462804 -27.682284108, 152.915646576 -27.682328904000002, 152.915825692 -27.682454621000023, 152.91573145199948 -27.682830287825723, 152.91591115999904 -27.682977549151428, 152.91628935147034 -27.682965673245427, 152.91669972945249 -27.682951422156851, 152.91744270134737 -27.682939546248029, 152.91743465472413 -27.683079681890284, 152.91847266960536 -27.683063055636904, 152.91851585899997 -27.683522156000002, 152.919317834 -27.683992197999991, 152.919766137 -27.684162625000003))\nAYCA-KYG28\tThe Sands\tReady for service\tPOLYGON ((151.37942871765 -23.9894081127128, 151.380074394312 -23.9891504198859, 151.380388999998 -23.9888799999477, 151.380154575351 -23.9886495655096, 151.380311523841 -23.9885426462713, 151.380362999998 -23.9884299999477, 151.380294999999 -23.9883319999488, 151.380280983381 -23.9881476114661, 151.380011815172 -23.9877950899626, 151.379720144315 -23.9875597220427, 151.379574999997 -23.9874039999468, 151.379393000002 -23.9872759999505, 151.378394676375 -23.9868078481876, 151.378325999999 -23.9867509999488, 151.378297011648 -23.9866689510225, 151.37833149327 -23.9865581683212, 151.378138729314 -23.986510575116, 151.378079511446 -23.9865713340753, 151.377994678771 -23.9865965356388, 151.377908296945 -23.9865796213575, 151.377755484274 -23.9864228336274, 151.377680734517 -23.9864058442101, 151.377441999907 -23.9869029999077, 151.377120422079 -23.9867585946119, 151.376379999998 -23.9868629999466, 151.376606613814 -23.988213249911, 151.376788000252 -23.9892939998136, 151.376423000252 -23.9893449998137, 151.376283000252 -23.9894529998136, 151.375925000251 -23.9895039998138, 151.375985000252 -23.9898599998137, 151.376126000252 -23.9900279998137, 151.376019000251 -23.9904259998126, 151.376441000252 -23.9905219998136, 151.376635440253 -23.9904924298139, 151.377430320253 -23.9900388298138, 151.377616135058 -23.9898310910193, 151.378482011484 -23.990417750378, 151.378362592415 -23.9905848942824, 151.378282938056 -23.9906809974036, 151.378346160253 -23.9907070798136, 151.378551070478 -23.9911778264783, 151.37942871765 -23.9894081127128), (151.378798009355 -23.9898136034058, 151.378843586761 -23.9898238765762, 151.379157095438 -23.9899555449547, 151.378551032689 -23.9911736617187, 151.378346571015 -23.990706538035, 151.378284144027 -23.9906809274252, 151.378362662117 -23.9905855072584, 151.378466732487 -23.9904411413325, 151.378482282171 -23.9904178783137, 151.378512402946 -23.9903728162646, 151.378567795107 -23.9902780495708, 151.378641794976 -23.9901477244556, 151.378715449353 -23.9900190020612, 151.378747462587 -23.9899543694875, 151.378776089082 -23.9898838873315, 151.378798009355 -23.9898136034058))\nAYCA-10ILHK\tMarsden Park Precinct\tContracted\tPOLYGON ((150.821641697981 -33.6969017543874, 150.827300861783 -33.6934177371323, 150.826574797348 -33.6925996126248, 150.825750944857 -33.6931088383887, 150.825545813144 -33.6928769491956, 150.82489187289 -33.6921376808184, 150.825163999991 -33.6920290000158, 150.825542999991 -33.6917950000158, 150.825693999991 -33.6917020000158, 150.82583557379 -33.6917666348031, 150.825655442617 -33.6915636544446, 150.825690840609 -33.6915419517519, 150.825500999991 -33.6913250000158, 150.825475999991 -33.6913930000159, 150.825472999991 -33.6914020000158, 150.825468999991 -33.6914110000158, 150.825465999991 -33.6914200000158, 150.825459999991 -33.6914280000158, 150.825453999991 -33.6914350000158, 150.825447999991 -33.6914430000157, 150.825441999991 -33.6914500000158, 150.825435999991 -33.6914580000158, 150.825429999991 -33.6914650000158, 150.825423999991 -33.6914730000158, 150.825421999991 -33.6914760000158, 150.825418999991 -33.6914800000158, 150.825412999991 -33.6914860000158, 150.825400999991 -33.6915000000158, 150.825375999991 -33.6915250000158, 150.825361999991 -33.6915370000158, 150.825354999991 -33.6915420000158, 150.825347999991 -33.6915480000158, 150.825340999991 -33.6915530000158, 150.825333999991 -33.6915590000158, 150.825325999991 -33.6915640000158, 150.825318999991 -33.6915690000158, 150.825310999991 -33.6915740000158, 150.825303999991 -33.6915790000158, 150.825302999991 -33.6915790000158, 150.825293999991 -33.6915850000158, 150.825284999991 -33.6915900000158, 150.825276999991 -33.6915950000158, 150.825267999991 -33.6916010000157, 150.825258999991 -33.6916060000159, 150.825250999991 -33.6916110000158, 150.825241999991 -33.6916170000158, 150.825232999991 -33.6916220000158, 150.825224999991 -33.6916270000158, 150.825215999991 -33.6916330000158, 150.825197999991 -33.6916430000158, 150.825189999991 -33.6916490000158, 150.825180999991 -33.6916540000158, 150.825170999991 -33.6916600000158, 150.825161999991 -33.6916670000158, 150.825151999991 -33.6916740000158, 150.825133999991 -33.6916880000158, 150.825125999991 -33.6916950000158, 150.825095999991 -33.6917250000158, 150.825089999991 -33.6917320000158, 150.825068999991 -33.6917530000158, 150.825062999991 -33.6917590000157, 150.825056999991 -33.6917640000158, 150.825050999991 -33.6917700000158, 150.825049999991 -33.6917700000159, 150.825005999991 -33.6918100000158, 150.824981999991 -33.6918290000158, 150.824927999991 -33.6918720000158, 150.824870999991 -33.6919130000158, 150.824810999991 -33.6919520000158, 150.823828999991 -33.6925550000158, 150.823827999991 -33.6925560000158, 150.821497999991 -33.6939860000158, 150.821630999991 -33.6941370000157, 150.822964999991 -33.6956560000158, 150.821437999991 -33.6965930000157, 150.821425999991 -33.6966560000158, 150.821641697981 -33.6969017543874))\nAYCA-1D9BBM\tHarrington Grove\tUnder construction\tPOLYGON ((150.719515999989 -34.0141980000153, 150.719234999989 -34.0141670000154, 150.719197999989 -34.0144370000153, 150.719169999989 -34.0148540000153, 150.719157999989 -34.0152960000153, 150.719163999989 -34.0155380000153, 150.719194999989 -34.0157860000153, 150.719229999989 -34.0160140000154, 150.719272999989 -34.0162030000153, 150.719453999989 -34.0167880000153, 150.719601999989 -34.0172260000153, 150.719618999989 -34.0172780000153, 150.719698999989 -34.0175370000153, 150.719723999989 -34.0176280000153, 150.719739999989 -34.0177190000153, 150.719745999989 -34.0177720000154, 150.719749999989 -34.0178260000153, 150.719750999989 -34.0178940000154, 150.719748999989 -34.0179530000153, 150.719745999989 -34.0180560000154, 150.719996999989 -34.0180550000154, 150.720056999989 -34.0180040000154, 150.721294999989 -34.0177500000154, 150.721389999989 -34.0177290000153, 150.721496999989 -34.0176990000154, 150.721626999989 -34.0176510000154, 150.721743999989 -34.0175980000154, 150.721846999989 -34.0175410000154, 150.721946999989 -34.0174760000154, 150.722028999989 -34.0174130000153, 150.722092999989 -34.0173580000154, 150.722157999989 -34.0172940000154, 150.722224999989 -34.0172170000153, 150.722700999989 -34.0166330000154, 150.722728999989 -34.0165960000154, 150.722753999989 -34.0165590000154, 150.722774999989 -34.0165230000153, 150.722806999989 -34.0164580000154, 150.722823999989 -34.0164160000154, 150.722841999989 -34.0163540000154, 150.723262999989 -34.0146560000154, 150.721449999989 -34.0143930000154, 150.720377999989 -34.0142810000153, 150.719515999989 -34.0141980000153))\nAYCA-1J527U\tMuirhead\tContracted\tPOLYGON ((130.893439999995 -12.3530259998886, 130.893416999995 -12.3529869998885, 130.893274999995 -12.3530689998886, 130.893320999995 -12.3531469998885, 130.893177999995 -12.3532299998886, 130.893131999995 -12.3531519998886, 130.892988999995 -12.3532339998886, 130.893011999995 -12.3532729998886, 130.892869999995 -12.3533549998886, 130.892895999995 -12.3533999998885, 130.892752999995 -12.3534819998886, 130.892982999995 -12.3538669998885, 130.892695999995 -12.3540339998885, 130.89335599999 -12.3551409998874, 130.893397982635 -12.3551320036039, 130.893640999995 -12.3555389998885, 130.893782999995 -12.3554559998886, 130.893736999995 -12.3553779998886, 130.893879999995 -12.3552959998885, 130.893925999995 -12.3553739998886, 130.894068999995 -12.3552919998886, 130.894045999995 -12.3552529998886, 130.894203999995 -12.3551609998885, 130.894180999995 -12.3551219998886, 130.894323999995 -12.3550399998886, 130.894369999995 -12.3551179998886, 130.894512999995 -12.3550349998886, 130.894477999995 -12.3549769998885, 130.894620999995 -12.3548949998885, 130.894630999995 -12.3549119998885, 130.894773999995 -12.3548299998886, 130.894750999995 -12.3547909998886, 130.894892999995 -12.3547079998886, 130.894939999995 -12.3547859998886, 130.895082999995 -12.3547039998885, 130.89505699999 -12.3546619998874, 130.895188999995 -12.3545879998886, 130.89522199999 -12.3545759998873, 130.895432999995 -12.3545229998886, 130.895441999995 -12.3545899998885, 130.895725000002 -12.3545539998858, 130.89592348053 -12.3545499901793, 130.896009999984 -12.3550559998833, 130.89606699999 -12.3550959998874, 130.896108999995 -12.3552409998885, 130.896626999995 -12.3550869998885, 130.899100999995 -12.3536599998885, 130.899146999995 -12.3533339998886, 130.899098999995 -12.3533869998886, 130.897420999995 -12.3534349998886, 130.897005999995 -12.3536739998886, 130.896997999995 -12.3525639998886, 130.896857999995 -12.3525649998886, 130.896851999995 -12.3518099998886, 130.896410999995 -12.3518129998885, 130.896412999995 -12.3520629998886, 130.895534999995 -12.3520689998885, 130.895534999995 -12.3521169998886, 130.895285999995 -12.3521179998886, 130.895287999995 -12.3527689998885, 130.894983999995 -12.3527709998885, 130.894983999995 -12.3526639998886, 130.894792999995 -12.3526979998885, 130.894568999995 -12.3527829998886, 130.894461999995 -12.3528379998885, 130.894409999995 -12.3528229998885, 130.894284999995 -12.3526129998885, 130.894165999995 -12.3526819998886, 130.894174999995 -12.3526969998886, 130.893910999995 -12.3528489998886, 130.893868999995 -12.3527789998886, 130.893725999995 -12.3528609998885, 130.893748999995 -12.3528999998886, 130.893606999995 -12.3529829998886, 130.893582999995 -12.3529439998886, 130.893439999995 -12.3530259998886))\nAYCA-1FTKTT\tMolonglo Valley - Coombs Stage 1\tReady for service\tPOLYGON ((149.043426474012 -35.3229330840435, 149.043493157019 -35.3231268710395, 149.044142520006 -35.3234346400476, 149.044747731019 -35.3237208830396, 149.045400656013 -35.3240295740436, 149.045874160019 -35.3242533180395, 149.046178981013 -35.3243974250436, 149.046342179019 -35.3241655650394, 149.046322026019 -35.3241040140395, 149.046689630006 -35.3235817430474, 149.047057230006 -35.3230594700475, 149.047132332006 -35.3230429520475, 149.047182688342 -35.3230667583658, 149.047319335006 -35.3228738490476, 149.047473186006 -35.3226552590475, 149.047512095013 -35.3225904180434, 149.047448655006 -35.3225604260475, 149.047418757125 -35.3225458172532, 149.047572357006 -35.3223275830475, 149.047602397013 -35.3223209760434, 149.047753499013 -35.3221062880435, 149.047745437025 -35.3220816680355, 149.048086100013 -35.3215976450433, 149.048260551013 -35.3213497780435, 149.048331979019 -35.3212482900394, 149.048655844006 -35.3214013970474, 149.048903094019 -35.3210500880392, 149.048986935007 -35.3209170150476, 149.048995104006 -35.3208401340475, 149.049020089006 -35.3206049940474, 149.048901031013 -35.3202496810434, 149.048789711019 -35.3202747370393, 149.048699438006 -35.3200053240475, 149.048650961069 -35.3198709016713, 149.048325440006 -35.3199441690474, 149.048158302013 -35.3199817880435, 149.048101375006 -35.3199963180473, 149.048018562006 -35.3200239510474, 149.047952457006 -35.3200521470476, 149.047889500019 -35.3200848280394, 149.047841707006 -35.3201140440475, 149.047785539019 -35.3201541850396, 149.047723909013 -35.3202072790434, 149.047669174006 -35.3202652260474, 149.047629237006 -35.3203167920475, 149.047434093006 -35.3205940600475, 149.046563413013 -35.3201824250435, 149.046544709006 -35.3201734810475, 149.046526114006 -35.3201643870476, 149.046507628006 -35.3201551430475, 149.046489255006 -35.3201457500474, 149.046470995006 -35.3201362100474, 149.045807330013 -35.3210791370436, 149.045784866013 -35.3211103080435, 149.045749713013 -35.3211563350435, 149.045712841013 -35.3212014510435, 149.045661067013 -35.3212601120436, 149.045632670006 -35.3212902450475, 149.045588598006 -35.3213344820474, 149.045558252019 -35.3213633110396, 149.045495310006 -35.3214193190475, 149.045412568019 -35.3214861000396, 149.045307636006 -35.3215612460474, 149.045215793019 -35.3216194930396, 149.045100706006 -35.3216838820475, 149.044943350019 -35.3217593710395, 149.044587515523 -35.3219233882517, 149.044482119178 -35.3217671245641, 149.044239671986 -35.3218715925673, 149.044342280499 -35.3220364251165, 149.044196866013 -35.3221034510436, 149.044168069013 -35.3221171760434, 149.044125809006 -35.3221390260475, 149.044084742006 -35.3221623540475, 149.044031974006 -35.3221956820476, 149.043993986013 -35.3222222840436, 149.043969456006 -35.3222407570476, 149.043933905013 -35.3222695340434, 149.043888669006 -35.3223100600475, 149.043856667006 -35.3223418290476, 149.043836283013 -35.3223636300436, 149.043797873006 -35.3224086400474, 149.043762713006 -35.3224554000475, 149.043426474012 -35.3229330840435))\nAYCA-G4D1B\tDeepdale Industrial Estate\tReady for service\tPOLYGON ((114.691418008669 -28.7918229925085, 114.691401201346 -28.791822548118, 114.691363941589 -28.7918224470435, 114.689762290792 -28.7918174806182, 114.689761241026 -28.7912983922332, 114.686381316048 -28.7934648515512, 114.687187985452 -28.7944405707148, 114.687095509694 -28.7944998968237, 114.687194524116 -28.7946159162389, 114.687663207915 -28.7943303262344, 114.687781263331 -28.7943706823514, 114.687982453913 -28.7943325235681, 114.688007174189 -28.79419401379, 114.688387545058 -28.7939499881777, 114.689850845772 -28.7945172302887, 114.689849723912 -28.79490611027, 114.690074752118 -28.7949967013748, 114.690714776144 -28.7949981352138, 114.690713111159 -28.7955754541713, 114.69135313905 -28.7955768852662, 114.691393790649 -28.7955976702067, 114.691407848681 -28.7949599925132, 114.691418008669 -28.7918229925085))\nAYCA-DNDK2\tManooka Valley\tReady for service\tPOLYGON ((150.772927577922 -34.0383650689773, 150.774532162344 -34.0393236607035, 150.774696246536 -34.0393918096648, 150.77653559999 -34.0404517800159, 150.776667084031 -34.0405867958204, 150.776819247316 -34.0406233356764, 150.776978850105 -34.0407555601103, 150.777088947131 -34.0406811117463, 150.777159899692 -34.0407456802178, 150.777384054193 -34.0408931363176, 150.77788511855 -34.0402183962324, 150.778398943405 -34.0388592573101, 150.777860873441 -34.0387151309479, 150.777805349327 -34.0383731091373, 150.777575763391 -34.0380272922767, 150.77703542929 -34.0378013145223, 150.776423526213 -34.0376575728372, 150.775410623699 -34.037607367336, 150.775449292649 -34.0369429527975, 150.774967500863 -34.0366108329183, 150.774473343798 -34.03647856521, 150.772927577922 -34.0383650689773), (150.775687810547 -34.0386187385006, 150.775961733381 -34.0386280106465, 150.775958866086 -34.0387378145291, 150.775682333506 -34.038728465181, 150.775687810547 -34.0386187385006))\n17342032\tHighfields Views\tCheck with carrier\tPOLYGON ((151.993666816 -27.450900814, 151.992504 -27.450746191, 151.992302752 -27.4507194585, 151.988511616 -27.4502151855, 151.987757056 -27.450671488, 151.98900624 -27.4522731255, 151.986641056 -27.453799986, 151.986603616 -27.454027221500002, 151.986449536 -27.4549531465, 151.990098112 -27.452889268, 151.993666816 -27.450900814))\n17350580\tBroadview Estate\tCheck with carrier\tPOLYGON ((149.59184 -32.626900004, 149.591762016 -32.627376009, 149.591852992 -32.6282979935, 149.592284992 -32.6288030065, 149.592420992 -32.629082005, 149.592366016 -32.629236998, 149.592956992 -32.6300749925, 149.594619008 -32.632449005, 149.595519008 -32.627354993000004, 149.59184 -32.626900004))\nAYCA-T062O\tGoogong Township\tReady for service\tPOLYGON ((149.237467703633 -35.4157760444998, 149.236837159653 -35.4171012659491, 149.236905032777 -35.4172678318296, 149.236745842295 -35.4185127138487, 149.236765358031 -35.4186869713317, 149.236715096685 -35.418983060719, 149.23531518907 -35.4187097914382, 149.235134944507 -35.4186254269678, 149.234879173759 -35.4189970200308, 149.23470968586 -35.4189304351509, 149.23455252405 -35.4192536739339, 149.234649534806 -35.4195779756572, 149.234673773539 -35.4195866832978, 149.234640364142 -35.4197468152706, 149.234504072487 -35.4197191384458, 149.234493364583 -35.4203951993469, 149.234549955857 -35.4204054918367, 149.23430400002 -35.4212590000131, 149.233964217424 -35.42119589151, 149.23391700002 -35.4213440000131, 149.233825546494 -35.4216455486342, 149.233579126912 -35.42174414392, 149.233545585149 -35.4218575761295, 149.234245329278 -35.4219963981135, 149.23460123978 -35.4220669590659, 149.234975732136 -35.4221502172209, 149.234991804392 -35.4220654281694, 149.234892656892 -35.4220496989013, 149.234953661638 -35.4218589565229, 149.235029322242 -35.4216183415629, 149.235116472813 -35.4215656336544, 149.23516681934 -35.4213947955037, 149.235189562872 -35.4213992864924, 149.235357383101 -35.4208298258335, 149.235408221416 -35.4208398644633, 149.235507916626 -35.4208628367212, 149.235583073644 -35.4206078355195, 149.235931624954 -35.4206766686138, 149.235904256986 -35.420769527285, 149.236565900534 -35.4208951770485, 149.236770018716 -35.4210887666459, 149.237434097507 -35.4211885825743, 149.237555877485 -35.4210423107434, 149.237610350277 -35.4208197918293, 149.237520967478 -35.4208064917472, 149.237582170016 -35.4205395322994, 149.237603735445 -35.4205428686651, 149.237624364587 -35.4204514284879, 149.23768100001 -35.4201640000197, 149.23764100001 -35.4201580000197, 149.23770000001 -35.4199060000197, 149.23779300001 -35.4199200000197, 149.23795900001 -35.4190650000197, 149.23790400001 -35.4190660000197, 149.23809200001 -35.4180500000196, 149.23810300001 -35.4180090000197, 149.23814800001 -35.4178520000197, 149.23825600001 -35.4176150000197, 149.23847100001 -35.4173120000197, 149.23857700001 -35.4172530000197, 149.238612137901 -35.4172338101049, 149.238793179673 -35.4171451940773, 149.238443202526 -35.4167837130339, 149.237467703633 -35.4157760444998))\nAYAA-HE3NB\tBroome North\tReady for service\tPOLYGON ((122.230466306045 -17.9224571928365, 122.230451710555 -17.9229093740291, 122.230395512646 -17.9247236592523, 122.230471620578 -17.9247401287782, 122.230478248606 -17.9250702040474, 122.231260022394 -17.9250922638074, 122.231273744733 -17.925546393144, 122.231403362082 -17.9255449707677, 122.231421028655 -17.9258250788469, 122.231417887137 -17.9265533933096, 122.233083458649 -17.9264377019639, 122.233285740994 -17.9258255788295, 122.233206628416 -17.9257166886721, 122.233264502481 -17.9254978994141, 122.233421932045 -17.9253968272989, 122.23433836315 -17.9226348046698, 122.230466306045 -17.9224571928365))\n17248287\tNogoa Rise Estate \tCheck with carrier\tPOLYGON ((148.161332896 -23.548365996, 148.161197888 -23.550939993500002, 148.161760928 -23.5530759665, 148.162842016 -23.554606046, 148.163416928 -23.555065956, 148.16347488 -23.550795009, 148.16348208 -23.550418978, 148.16348496 -23.550262024000002, 148.163487136 -23.55015798, 148.163509088 -23.548940014, 148.163514112 -23.548705027, 148.163516992 -23.548515032, 148.162973056 -23.5485170115, 148.162973056 -23.5485359925, 148.162935968 -23.5485690335, 148.162897088 -23.548604035500002, 148.162844896 -23.548602962500002, 148.162791968 -23.5486019635, 148.162757056 -23.548570014, 148.162718176 -23.5485330325, 148.16271888 -23.5485009905, 148.161896992 -23.5484749795, 148.16172096 -23.548379038500002, 148.161332896 -23.548365996))\n173\tGemstone Waters\tReady for service\tPOLYGON ((152.93148641347787 -27.095016408891176, 152.93519859075352 -27.095522630480207, 152.9346836066245 -27.098340237129189, 152.93373946905018 -27.098674524738463, 152.9333746886266 -27.098330686039695, 152.93070320844893 -27.097652556622815, 152.93069247960895 -27.097643005474676, 152.93148641347787 -27.095016408891176))\n17296036\tINNOVATION PARK\tCheck with carrier\tPOLYGON ((145.219498912 -38.042261999000004, 145.21893408 -38.045979000500004, 145.221444 -38.045755983, 145.221761888 -38.044948957500004, 145.222376224 -38.045372219, 145.22259312 -38.043473046, 145.223777152 -38.0435709665, 145.223883008 -38.042847006, 145.219498912 -38.042261999000004))\n314\tLiving Gems Kuluin\tUnder construction\tPOLYGON ((153.04729444825927 -26.65790047155776, 153.04707891364106 -26.657826261932833, 153.04718994749371 -26.65681365102639, 153.04718994749371 -26.65681365102639, 153.04720207321284 -26.656773200582215, 153.04721727216506 -26.656733597022868, 153.0472354720971 -26.656695028609004, 153.04725658649028 -26.656657678680393, 153.04728051497207 -26.656621724784408, 153.04730714379303 -26.656587337832057, 153.04733634636779 -26.656554681285542, 153.04736798387665 -26.656523910381278, 153.04740190592554 -26.656495171391928, 153.04743795126103 -26.656468600931131, 153.04747594853671 -26.656444325304154, 153.04751571712791 -26.656422459907443, 153.04755706799003 -26.656403108680127, 153.04759980455745 -26.656386363609979, 153.04764372367774 -26.656372304296106, 153.04768861657726 -26.656360997570651, 153.04773426985378 -26.656352497181054, 153.04778046649059 -26.656346843534603, 153.04782698688837 -26.656344063506339, 153.04807702706526 -26.656366191056112, 153.04807702706526 -26.656366191056112, 153.04808998766941 -26.656366949373631, 153.04810297571225 -26.656366934562428, 153.04811593413243 -26.656366146687574, 153.04812880599877 -26.656364589210504, 153.04814153476036 -26.65636226897379, 153.04819157366927 -26.656410537361619, 153.04820793819707 -26.656303723136542, 153.04873672333633 -26.655865750997144, 153.0486677695128 -26.655722285658427, 153.04866435030053 -26.655670362859926, 153.04917890270892 -26.655643005733033, 153.04941555804703 -26.65556087482031, 153.05018463736695 -26.655697089475982, 153.0502217522201 -26.655722693902518, 153.05031624607255 -26.655706554304675, 153.05057356477661 -26.655491127390384, 153.05071144292086 -26.655388040486148, 153.05091774832957 -26.655597872746526, 153.05105816566174 -26.655733238956476, 153.05112282892949 -26.655679106031563, 153.05122610506075 -26.655558384977347, 153.0544668516288 -26.656005747486134, 153.05436854523919 -26.656560503311383, 153.05382565465774 -26.656484883487153, 153.052122715314 -26.657179098224852, 153.05224484191149 -26.657474206382751, 153.05135147775542 -26.657772679038356, 153.05073144358019 -26.656211685281988, 153.04941088982991 -26.657314291684855, 153.04968997779031 -26.657523629363514, 153.04957119720882 -26.657641283604583, 153.04953408347691 -26.65769834388767, 153.04918650083818 -26.657502136335442, 153.04908953176013 -26.657466722850735, 153.04899904294169 -26.657698512513637, 153.0489500430221 -26.657687873330403, 153.04891890363962 -26.657714194796462, 153.04888481569455 -26.657901852177954, 153.04888481569458 -26.657901852177954, 153.04888380625965 -26.657907742055261, 153.04888234878473 -26.657913555689298, 153.0488804501594 -26.657919265598409, 153.04887811935859 -26.65792484479125, 153.0488753674002 -26.657930266894372, 153.04887220729296 -26.657935506276921, 153.04886865397495 -26.657940538171772, 153.04886472424306 -26.657945338792612, 153.04886043667358 -26.657949885446371, 153.0488558115342 -26.657954156640518, 153.04885087068845 -26.657958132184664, 153.04884563749224 -26.65796179328596, 153.04884013668342 -26.657965122637968, 153.04883439426493 -26.657968104502476, 153.04882843738181 -26.65797072478388, 153.04882229419286 -26.657972971095813, 153.04881599373766 -26.657974832819693, 153.04880956579916 -26.657976301154964, 153.04880304076295 -26.657977369160616, 153.04879644947363 -26.657978031788069, 153.04878982308892 -26.65797828590502, 153.04878319293255 -26.657978130310237, 153.04877659034597 -26.657977565739209, 153.0487700465404 -26.657976594860735, 153.04810240325762 -26.657925448382457, 153.04783584929766 -26.657900290369938, 153.04729444825927 -26.65790047155776))\n10740\tLiving Choice Glenhaven\tReady for service\tPOLYGON ((150.99443078041077 -33.69626396335785, 150.99408745765686 -33.695897984789795, 150.99437713623047 -33.694835745483786, 150.99282145500183 -33.694621510755184, 150.99279999732971 -33.6938895380691, 150.99446296691895 -33.69413948066294, 150.99464535713196 -33.693612815063624, 150.99594354629517 -33.693737786853859, 150.995911359787 -33.692970100128676, 150.99798202514648 -33.693005806640073, 150.99801421165466 -33.693862758462359, 150.99871158599854 -33.694353716593305, 150.99840044975281 -33.695469520095237, 150.9974992275238 -33.69524636055398, 150.99524617195129 -33.695469520095237, 150.99443078041077 -33.69626396335785))\nAYCA-19ZSTU\tVermont Riverlands\tContracted\tPOLYGON ((150.870480999992 -33.5641750000158, 150.870055999992 -33.5661700000159, 150.869546999992 -33.5659870000159, 150.868922000201 -33.5691579998688, 150.869077999992 -33.5696840000159, 150.869124999992 -33.5698440000158, 150.870296999992 -33.5696180000159, 150.871650999992 -33.5695980000159, 150.871155999992 -33.5652730000159, 150.871442999992 -33.5643200000159, 150.870480999992 -33.5641750000158))\n10704\tWannanup-Port Bouvard East\tReady for service\tPOLYGON ((115.64603269100189 -32.60341102088821, 115.64819991588593 -32.605083070342729, 115.65008282661438 -32.606267043243285, 115.65141320228577 -32.60480289125956, 115.64817309379578 -32.602755749751907, 115.64857006072998 -32.601846941477646, 115.64825624227524 -32.60151704119307, 115.64603269100189 -32.60341102088821))\nAYCA-OVO23\tMINDA Redevelopment\tReady for service\tPOLYGON ((138.51675979825 -35.0032417638245, 138.516790293938 -35.0035031672521, 138.51732804696 -35.003483564111, 138.517660274504 -35.0034609559322, 138.517722 -35.0042832900249, 138.51835956 -35.0045442000249, 138.52183284 -35.004360510025, 138.52186704 -35.0043311700249, 138.52169028 -35.0020066500249, 138.5176014 -35.0022219300249, 138.51756684 -35.0022530700249, 138.517639589334 -35.0032127211708, 138.517308112401 -35.0032237465644, 138.51675979825 -35.0032417638245))\n10553\tMurray-Riverland Ramble\tReady for service\tPOLYGON ((115.8260753005743 -32.577042513371417, 115.82641325891018 -32.576966796228781, 115.82647159695625 -32.57694871451362, 115.82645483314991 -32.57691085591069, 115.82653194665909 -32.57688938386012, 115.82654871046543 -32.576918201611008, 115.82698255777359 -32.576806885933848, 115.82704290747643 -32.57692893763349, 115.82711666822433 -32.577221069962093, 115.82720048725605 -32.5777081434111, 115.82719512283802 -32.578020049844987, 115.82760013639927 -32.578049180656848, 115.82799308001995 -32.578085092017446, 115.82844637334347 -32.578127532296485, 115.82847252488136 -32.577956323126116, 115.82851678133011 -32.57796140855173, 115.8285865187645 -32.577793024305912, 115.828947275877 -32.577893602853194, 115.82899153232574 -32.577830317488278, 115.82915715873241 -32.577888517423723, 115.82912027835846 -32.5779636687408, 115.82930635660887 -32.578042492798936, 115.82936771214008 -32.578053511210143, 115.82936553284526 -32.578069897562763, 115.82945052534342 -32.578106625583629, 115.82936033606529 -32.57822867551414, 115.82926779985428 -32.578563181879488, 115.82926981151104 -32.578728174424448, 115.82924298942089 -32.57905476836131, 115.82928523421288 -32.579057028522826, 115.82933686673641 -32.579178512120059, 115.82922035828233 -32.579191084250375, 115.82921650260687 -32.579186705193955, 115.82893252372742 -32.579218064883641, 115.82897342741489 -32.579336723069709, 115.82879170775414 -32.579385881415078, 115.82876287400723 -32.579312991445065, 115.82867989316583 -32.579330648904481, 115.82867603749037 -32.5793257048162, 115.82843296229839 -32.579384186300167, 115.82843899726868 -32.57944012507523, 115.82856774330139 -32.579760501023763, 115.82882523536682 -32.580066591062646, 115.82907199859619 -32.580361944446437, 115.82934893667698 -32.580691357582694, 115.82904987037182 -32.58087555719645, 115.82877930253744 -32.580982912625011, 115.82852063700557 -32.581046195764777, 115.82785360515118 -32.58116993677509, 115.82782812416553 -32.581129819845252, 115.82744054496288 -32.581263731217071, 115.82745999097824 -32.581306673217988, 115.82737550139427 -32.581327014158624, 115.82732923328876 -32.581175587045458, 115.82725748419762 -32.581034895207381, 115.82679077982903 -32.580593607327209, 115.826674439013 -32.580420001480704, 115.82659430801868 -32.580212493319138, 115.82654435187578 -32.580009787469557, 115.82652524113655 -32.579814991660363, 115.8265782147646 -32.579152131829652, 115.82556903362274 -32.579559524578748, 115.8246798813343 -32.578217551178405, 115.8255609869957 -32.577790940690136, 115.82573063671589 -32.577818628054956, 115.82578159868717 -32.57772822030153, 115.82565888762474 -32.577691492125659, 115.82574605941772 -32.577409532243742, 115.82582250237465 -32.577394275872152, 115.82589223980904 -32.577432699321584, 115.82621410489082 -32.577507851020684, 115.82611503079534 -32.577186544399048, 115.82610715180635 -32.577189577139862, 115.82606574520469 -32.577052759372108, 115.82607655785978 -32.577049896584008, 115.8260753005743 -32.577043643477545, 115.8260753005743 -32.577042513371417))\nAYCA-IEEZM\tLot 1693 Parker St \u0026 Lot 2119 Stanley St\tReady for service\tPOLYGON ((118.599534752865 -20.3946096122919, 118.599863319602 -20.3951005817677, 118.6002431198 -20.3957933908421, 118.600478751077 -20.3968489079075, 118.603353219582 -20.3965266137156, 118.603931396318 -20.396133065357, 118.604220525739 -20.3963073156522, 118.604345299501 -20.396382513063, 118.604376018431 -20.3964010264179, 118.604673826345 -20.3959446790679, 118.604692776002 -20.3959342601813, 118.604699309583 -20.3959208469197, 118.604723030758 -20.3958766401453, 118.604662615368 -20.3958398844816, 118.604882508932 -20.3954136408365, 118.603929895488 -20.3949135195323, 118.60283448 -20.3948834399183, 118.602312828872 -20.3932677627157, 118.601099331617 -20.3936181591263, 118.599566438767 -20.3945694889545, 118.599534752865 -20.3946096122919))\n83\tStonybrook\tReady for service\tPOLYGON ((144.731148311 -37.690168202, 144.731463713 -37.690269841, 144.73388925 -37.690431715, 144.734551418 -37.687019791, 144.731238968 -37.686583179, 144.731148311 -37.690168202))\nAYCA-ETCHB\tWhiteman Edge\tReady for service\tPOLYGON ((115.963526331826 -31.8141469707026, 115.963217919711 -31.8141452027641, 115.963206803361 -31.8171411392833, 115.963787301134 -31.8171395487868, 115.963852325245 -31.8171400034224, 115.963930982343 -31.8171769998828, 115.964091335786 -31.8173896782137, 115.964076798991 -31.8174122118049, 115.96378448636 -31.8174103797239, 115.963787296906 -31.8171399896167, 115.963206813756 -31.8171412810407, 115.963200401579 -31.8188660325025, 115.963576778094 -31.8188658609458, 115.963576382118 -31.8187404778349, 115.963724928268 -31.8187375553241, 115.963725296443 -31.8189765713542, 115.964723794864 -31.818981160227, 115.964796542974 -31.8190407781169, 115.965099155546 -31.8190329460168, 115.965323987658 -31.8190104994301, 115.965278856252 -31.8189027168933, 115.965566485277 -31.81877989629, 115.965831353189 -31.8187115634245, 115.965830153059 -31.8184035199477, 115.966759800593 -31.818415327901, 115.967052822432 -31.8184113002995, 115.967052044064 -31.8181677339801, 115.96689038498 -31.8178324338783, 115.966889693749 -31.8176160243518, 115.966572747767 -31.8176167620695, 115.966570230646 -31.8168048329001, 115.966626358697 -31.8167732333863, 115.966404056316 -31.8164853398005, 115.966665619784 -31.8163532113312, 115.966474763619 -31.8161092593279, 115.966380947423 -31.8161741893473, 115.966235556642 -31.8160463323269, 115.965980074413 -31.815715463789, 115.96560096082 -31.8159291820622, 115.965428421115 -31.8157045949477, 115.965396443473 -31.8156223161103, 115.965080570136 -31.8156223712579, 115.965080611185 -31.8156919823306, 115.964922196707 -31.8157868157198, 115.964645071162 -31.8159196072829, 115.964380658565 -31.8160688236349, 115.964323360792 -31.815994797979, 115.964202015792 -31.8160581094494, 115.964192148287 -31.816045792454, 115.9639141434 -31.8162023463961, 115.963813068187 -31.8160717614938, 115.963812699321 -31.815446999508, 115.963491793011 -31.8154478333111, 115.9634934964 -31.815321641514, 115.963559163121 -31.8152666856442, 115.96355908552 -31.8151313705795, 115.963759697615 -31.8151312865185, 115.963759391374 -31.814589736748, 115.963558775012 -31.8145901102829, 115.96352616926 -31.8143931502596, 115.963526331826 -31.8141469707026))\n17357878\tSerpentine Downs\tCheck with carrier\tPOLYGON ((115.981357984 -32.374276991, 115.981336 -32.378594003, 115.983856 -32.378593004, 115.983848992 -32.3742860005, 115.981357984 -32.374276991))\nAYCA-1ABGJI\tJimboomba Woods\tReady for service\tPOLYGON ((153.046343 -27.8718669999843, 153.046361 -27.8713169999843, 153.046409 -27.8708929999843, 153.047031 -27.869132999983, 153.046554083675 -27.8686873115019, 153.046218296901 -27.8684327266404, 153.045404644257 -27.8682413235373, 153.04482107747 -27.8690758889709, 153.044919 -27.8693139999836, 153.044148 -27.8710709999837, 153.043041 -27.8710879999836, 153.043622 -27.8716819999843, 153.043981 -27.8720429999843, 153.044244 -27.8728909999843, 153.045988 -27.8730769999843, 153.047052 -27.8727439999843, 153.046848 -27.8721019999843, 153.046760697866 -27.8718954687418, 153.046488009669 -27.8719653318301, 153.046277743227 -27.8719859225319, 153.046343 -27.8718669999843))\n115\tThe Grove\tReady for service\tPOLYGON ((149.1008225536489 -35.175531914056855, 149.1011336898907 -35.17329562155183, 149.10179887772514 -35.173014984423219, 149.10246406555956 -35.173172842927386, 149.10243187905766 -35.173514868634989, 149.10525892735626 -35.174185761035616, 149.10474930764272 -35.176807888686788, 149.1008225536489 -35.175531914056855))\n338\tLincoln on the Bellarine\tUnder construction\tPOLYGON ((144.37139348266936 -38.227050444975667, 144.37250413997793 -38.229648060000684, 144.37243248997791 -38.229762790000692, 144.37243248997791 -38.229762790000692, 144.37228490780825 -38.229808804535608, 144.3721413730367 -38.229862194423575, 144.37200247730738 -38.229922739595281, 144.37186879314658 -38.22999019048757, 144.37174087160327 -38.230064269072024, 144.37161923997778 -38.230144670000719, 144.37103415997782 -38.230541240000676, 144.37086503097777 -38.230657134000708, 144.37078778097779 -38.230712600000707, 144.37071177097775 -38.23076912200073, 144.37063702197776 -38.230826681000693, 144.37015708997777 -38.231215210000713, 144.37006868997778 -38.231210460000696, 144.37002958997772 -38.231168630000731, 144.36982418997778 -38.231231110000707, 144.3697922599778 -38.231106160000735, 144.36962298997778 -38.230759940000681, 144.3695945099777 -38.230708582000673, 144.36955554697775 -38.230653286000717, 144.3695097539777 -38.23060134800069, 144.3694575939777 -38.230553292000721, 144.36939958997766 -38.2305096010007, 144.36933632697776 -38.230470715000727, 144.36926844297773 -38.230437026000693, 144.36919661997774 -38.230408873000705, 144.36912158197777 -38.2303865390007, 144.36899749997767 -38.230363540000688, 144.3687495349777 -38.230333748000724, 144.36943023997776 -38.226817160000692, 144.36965546686255 -38.226844036389792, 144.36965565046427 -38.226843085960446, 144.37139348266936 -38.227050444975667))\nAYCA-LF9PR\tGolden Bay\tReady for service\tPOLYGON ((115.755533304269 -32.4205231935049, 115.755685576633 -32.4214599849829, 115.758028102288 -32.4211630219989, 115.758011088173 -32.4210413646862, 115.759329004627 -32.4208794842957, 115.759293494565 -32.4206869540975, 115.759252022474 -32.4204979156857, 115.759099865522 -32.4196087647467, 115.759341633294 -32.4196084564714, 115.759405762388 -32.4196452087842, 115.759450299708 -32.4197387942045, 115.759667902285 -32.4196675045532, 115.759955137023 -32.419556530435, 115.759942677938 -32.4194887897225, 115.759907817034 -32.4192861534829, 115.759916232134 -32.4187296899629, 115.759850671551 -32.4184580332888, 115.759811202144 -32.4181398517063, 115.759506869739 -32.4181828887512, 115.758810327024 -32.4181808887771, 115.75880635161 -32.4183462961756, 115.758611099681 -32.4183482051619, 115.758618235603 -32.4181805817177, 115.757881132463 -32.4181790113071, 115.757699878877 -32.418049723472, 115.757350093483 -32.4180375627037, 115.757340726793 -32.4181695829965, 115.757012087603 -32.4181650054514, 115.75684727501 -32.4182151696667, 115.756502608545 -32.4182183212618, 115.756512286624 -32.4184521639309, 115.756479879717 -32.41867840072, 115.756040941214 -32.4195024501863, 115.755976407955 -32.4195874272468, 115.755775093931 -32.4199589749537, 115.755868149051 -32.4204815806849, 115.755533304269 -32.4205231935049))\n17320876\tWokarena Road\tCheck with carrier\tPOLYGON ((114.62454 -28.660908965, 114.624482048 -28.6608510045, 114.620392064 -28.660852984, 114.62031792 -28.6609059865, 114.620025952 -28.662121973, 114.619743008 -28.663304049, 114.624209152 -28.6633029575, 114.624376928 -28.6620900235, 114.62454 -28.660908965))\n17347341\tPeak Drive Estate Stage 1\tCheck with carrier\tPOLYGON ((145.33659504 -38.0048399955, 145.339054912 -38.0064999635, 145.339620832 -38.006001999, 145.339885088 -38.0059730095, 145.34060112 -38.005347968500004, 145.34060688 -38.0053430105, 145.340264896 -38.0052260165, 145.340058976 -38.0046719785, 145.339947008 -38.003678991, 145.33949808 -38.002713032, 145.33931808 -38.0025459955, 145.338222976 -38.002403971, 145.337954048 -38.0025520265, 145.337095072 -38.0024409525, 145.33659504 -38.0048399955))\n17289791\tEagle Bay Rise\tCheck with carrier\tPOLYGON ((147.674397248 -37.896200096, 147.674826368 -37.8962599435, 147.675158272 -37.896306212, 147.675279232 -37.896323121, 147.675615488 -37.8963700185, 147.67595136 -37.896416916, 147.676213088 -37.896453361, 147.676287616 -37.8964637025, 147.676623488 -37.8965106, 147.676959712 -37.8965574975, 147.677295584 -37.896604284, 147.678348256 -37.896751174, 147.67845408 -37.8967658445, 147.678454816 -37.896762237000004, 147.679014976 -37.894231529500004, 147.678912736 -37.894217136500004, 147.678380992 -37.894142341, 147.678123232 -37.8941059885, 147.67789392 -37.8940737615, 147.677664224 -37.894041368, 147.67764768 -37.8940390185, 147.677401088 -37.894004368000004, 147.677154848 -37.8939697175, 147.676908608 -37.8939349745, 147.676662368 -37.893900324, 147.676415776 -37.8938656735, 147.676309216 -37.8938506515, 147.676169536 -37.893830949, 147.67594272 -37.8937990735, 147.6756792 -37.893761907, 147.675452768 -37.89373005, 147.675206528 -37.893695399500004, 147.674962816 -37.893661119, 147.67487424 -37.894059091, 147.674812672 -37.894335925, 147.674754368 -37.8945963865, 147.674748608 -37.89462249, 147.6747 -37.894840383, 147.674638816 -37.8951154225, 147.674557088 -37.895481815000004, 147.674545184 -37.895535095, 147.67452576 -37.895622933, 147.674397248 -37.896200096))\n17382301\tLyn Parade\tCheck with carrier\tPOLYGON ((150.881592992 -33.936563992, 150.881304 -33.937063991500004, 150.882103008 -33.937190994, 150.882290016 -33.9372690085, 150.882162016 -33.937444999, 150.883419008 -33.937621008, 150.883240992 -33.9383120015, 150.882824992 -33.9382479915, 150.882696992 -33.9388970085, 150.882348992 -33.938847003, 150.882280992 -33.9391359915, 150.883963008 -33.939368999, 150.884142016 -33.9384319925, 150.884906016 -33.9385369985, 150.885067008 -33.9378610085, 150.888355008 -33.938326006000004, 150.888270016 -33.9387560015, 150.88816 -33.9388970085, 150.887980992 -33.938953008, 150.887794016 -33.939925997, 150.889026016 -33.9400880015, 150.889408992 -33.9383539965, 150.888559008 -33.938220001, 150.888618016 -33.9378610085, 150.889484992 -33.938001997, 150.889552992 -33.9376489985, 150.881592992 -33.936563992))\nAYCA-12UCDR\tJimboomba Woods\tReady for service\tPOLYGON ((153.046562722769 -27.8704580343858, 153.046409 -27.8708929999829, 153.046343 -27.871866999983, 153.046273293392 -27.8719716867665, 153.046275851815 -27.8719734395511, 153.046277239412 -27.8719881806665, 153.046310415825 -27.8719857143208, 153.046490187754 -27.8719690162492, 153.046757715938 -27.8718958836174, 153.046848062232 -27.8721017295378, 153.047051620182 -27.8727443310164, 153.048110311401 -27.8724429584112, 153.048289889048 -27.8719054441316, 153.049039440702 -27.8702860292242, 153.049313179112 -27.867815200117, 153.04925920007 -27.8675798753982, 153.049881546804 -27.8671113709321, 153.049906954059 -27.8670922537769, 153.04989619833 -27.867080964132, 153.049899227008 -27.8670765463058, 153.049665650738 -27.8668012660881, 153.048984015068 -27.8671070128471, 153.048393511085 -27.8674086543222, 153.048545990915 -27.8676121177831, 153.047772919108 -27.8680593497465, 153.047682945963 -27.8682543524077, 153.046554083679 -27.8686873115048, 153.047031 -27.869132999983, 153.046641605742 -27.8702348299856, 153.046562722769 -27.8704580343858))\nACSP\tSpringfield\tReady for service\tPOLYGON ((152.90936708450317 -27.687529725072931, 152.91000008583069 -27.687377719714519, 152.91167378425598 -27.685543173513114, 152.91173279285431 -27.685443418205736, 152.91173815727234 -27.684280564458696, 152.91260719299316 -27.684489577700074, 152.91298270225525 -27.685572639907175, 152.91337966918945 -27.687795733940973, 152.91332602500916 -27.6881567449396, 152.91305780410767 -27.688422752280061, 152.91287541389465 -27.688536755227588, 152.91109442710876 -27.689410773870723, 152.90936708450317 -27.687529725072931))\nAYCA-LIVVA\tIronbark Ridge\tReady for service\tPOLYGON ((150.896860220885 -32.2974524392657, 150.897377059112 -32.2983503677872, 150.899294673422 -32.2975687897232, 150.899297541365 -32.2975860054721, 150.899321026139 -32.2975858000821, 150.899577359052 -32.2977109044461, 150.899596167627 -32.2977049098993, 150.899600346888 -32.2977154238225, 150.900277389389 -32.2973443153328, 150.900395919294 -32.2970336289447, 150.899638479565 -32.2971594786625, 150.899535005149 -32.2971814171867, 150.899607020755 -32.2963730547168, 150.899513611197 -32.2961881706804, 150.899412741772 -32.2959056297066, 150.899238153235 -32.2956687596103, 150.899165895475 -32.2956090997912, 150.898960862207 -32.2954328001674, 150.898074059783 -32.2948582776951, 150.897839250299 -32.2947089742286, 150.897699449624 -32.2946195918812, 150.897644258047 -32.2945844464817, 150.897615192796 -32.2945658143624, 150.897560874666 -32.2945302875526, 150.897355570524 -32.2943962373981, 150.897230055801 -32.2943141069651, 150.897188542834 -32.2942847922169, 150.897110915014 -32.2942365515771, 150.897038249722 -32.2942005418057, 150.896674497524 -32.2940707130637, 150.896271338133 -32.2939268323543, 150.896185117691 -32.2938958162429, 150.896117270356 -32.2938694743806, 150.896113585447 -32.2938680562186, 150.895770285768 -32.2945186124962, 150.895275881123 -32.2950445797192, 150.896413080218 -32.2956841498758, 150.896596511558 -32.2964423768175, 150.896794073774 -32.2971845181393, 150.896860220885 -32.2974524392657))\n10351\tMillbridge\tReady for service\tPOLYGON ((115.72964385151863 -33.307908608381773, 115.72967603802681 -33.30790741752817, 115.72967670857906 -33.307873197992876, 115.72977662086487 -33.307870360958141, 115.73013670742512 -33.30787092136007, 115.7303174212575 -33.307872882766809, 115.73049277067184 -33.307873723369674, 115.73066376149654 -33.307872042163929, 115.73119282722473 -33.307837857639882, 115.73135711252689 -33.307826089194094, 115.73151737451553 -33.307815441551277, 115.73151536285877 -33.307807035516554, 115.73174301534891 -33.307791064048381, 115.73195926845074 -33.307775652979807, 115.73211818933487 -33.307760522109831, 115.73234081268311 -33.308107971054547, 115.73214769363403 -33.308137111870863, 115.73249101638794 -33.308578706126, 115.73274850845337 -33.309340843234629, 115.73283970355988 -33.309910200139164, 115.73283433914185 -33.310206084936425, 115.73278337717056 -33.31030471297904, 115.73308378458023 -33.310856131343584, 115.73313072323799 -33.311051144320665, 115.73313474655151 -33.311246156861571, 115.73311597108841 -33.311259605986244, 115.73303282260895 -33.31128202118942, 115.73274582624435 -33.31128202118942, 115.73243468999863 -33.311279779669363, 115.73247157037258 -33.311822786219579, 115.73223050683737 -33.311825868290448, 115.73209522292018 -33.311825167819805, 115.7320939656347 -33.311830421349491, 115.73202561121434 -33.311826323596364, 115.73197938501835 -33.311826708855214, 115.73180437088013 -33.31182895036121, 115.73180839419365 -33.3114053047039, 115.73181174695492 -33.311188998058562, 115.73181409388781 -33.311031530966261, 115.73175139725208 -33.310978294696348, 115.73130581527948 -33.310973251258567, 115.73086425662041 -33.310969328584541, 115.73024801909924 -33.31096316438213, 115.73010351508856 -33.310948314256358, 115.72993671521544 -33.310899420899872, 115.72980679571629 -33.310823068755376, 115.72974191978574 -33.31076661015414, 115.72969045490026 -33.31071239305107, 115.72962641716003 -33.310612364508835, 115.72956673800945 -33.31054932125101, 115.72945307940245 -33.310419732188961, 115.72946280241013 -33.310234104278059, 115.72948157787323 -33.310080558175358, 115.72952449321747 -33.309683802760169, 115.72952449321747 -33.309188416345826, 115.72951376438141 -33.308798381622992, 115.72951912879944 -33.308547323866968, 115.72953321039677 -33.308205480670885, 115.72953186929226 -33.308123312014345, 115.72957411408424 -33.308124432814957, 115.72964318096638 -33.308125553615554, 115.72964552789927 -33.308008955251381, 115.72964519262314 -33.307909729185134, 115.72964385151863 -33.307908608381773))\n10328\tDudley Park-Mariner\u0027s Cove\tReady for service\tPOLYGON ((115.73004484176636 -32.549830180521958, 115.72999656200409 -32.550160271010569, 115.7301253080368 -32.5501919234594, 115.73013067245483 -32.550635056571032, 115.73014140129089 -32.550767989012677, 115.73018968105316 -32.550788336879016, 115.73019504547119 -32.550894597883833, 115.73016822338104 -32.550923989203376, 115.73014006018639 -32.550926020454064, 115.73014944791794 -32.551048107367961, 115.73013603687286 -32.551078629070481, 115.73011860251427 -32.551086542102773, 115.7300890982151 -32.551091063835194, 115.73009848594666 -32.551201846208478, 115.7300890982151 -32.5512628894986, 115.73004752397537 -32.551276454668539, 115.72995364665985 -32.551283237252747, 115.7299616932869 -32.551667812471244, 115.72997510433197 -32.552000157045391, 115.72995632886887 -32.552015753329947, 115.72993218898773 -32.552022535858278, 115.72992816567421 -32.5521898380617, 115.72992078959942 -32.552199331816524, 115.72989866137505 -32.552215722892285, 115.72988994419575 -32.552239461686334, 115.72989664971828 -32.552375677026063, 115.72993487119675 -32.55280953528225, 115.7299992442131 -32.553551082120279, 115.72997510433197 -32.5535960685799, 115.72994962334633 -32.553605111791676, 115.72940111160278 -32.553639253440409, 115.7293313741684 -32.553582733373368, 115.72872519493103 -32.553537976520019, 115.72762012481689 -32.55351536847197, 115.72760671377182 -32.553540678887884, 115.72757318615913 -32.553559895723687, 115.72738274931908 -32.553554243713585, 115.72724729776382 -32.553530505267268, 115.7272070646286 -32.553513549230352, 115.72720035910606 -32.553486419564621, 115.72720974683762 -32.553193874347272, 115.72722584009171 -32.553055964636791, 115.72723120450974 -32.552701015718874, 115.72724729776382 -32.552427455403944, 115.72724997997284 -32.552058938950829, 115.72726339101791 -32.55195267932443, 115.72709172964096 -32.55195041847994, 115.72703003883362 -32.551559291527468, 115.72703003883362 -32.551292510316266, 115.727099776268 -32.550905902238632, 115.72725266218185 -32.550912684850857, 115.72724729776382 -32.550817728233362, 115.72724461555481 -32.550505727211487, 115.72723388671875 -32.550173377104, 115.7271882891655 -32.5501304201976, 115.72719633579254 -32.549843286663595, 115.72738945484161 -32.54988398281089, 115.72767645120621 -32.549886243707427, 115.72781324386597 -32.549868156533577, 115.72798490524292 -32.549868156533577, 115.72817534208298 -32.549877200120967, 115.72837918996811 -32.549870417430519, 115.72913020849228 -32.549863634739559, 115.72948426008224 -32.549863634739559, 115.72985172271729 -32.549838764868305, 115.73004484176636 -32.549830180521958))\n10731\tEpping Park\tReady for service\tPOLYGON ((151.07181787490845 -33.782216765389535, 151.06724739074707 -33.784026967934878, 151.06612086296082 -33.78212759186151, 151.07036948204041 -33.780415442118858, 151.07181787490845 -33.782216765389535))\nAYCA-FWOIG\t1440 Frankston-Flinders Road, Tyabb\tReady for service\tPOLYGON ((145.190052381605 -38.2535102671778, 145.181984759997 -38.2535198100275, 145.182988998607 -38.2549176000568, 145.189785975265 -38.2549156200179, 145.190052381605 -38.2535102671778))\n10612\tSecret Harbour-Anstey Park\tReady for service\tPOLYGON ((115.76897978782654 -32.402189320789844, 115.76959200203419 -32.402181394657788, 115.76997857540846 -32.402176423132623, 115.77040923759341 -32.402169408150989, 115.77065281569958 -32.4021652239309, 115.77072758227587 -32.402164940854689, 115.77081634663045 -32.402165153161846, 115.770816472359 -32.402160163943549, 115.77090638922527 -32.402158235486745, 115.77090511098504 -32.402166497773827, 115.77100125141442 -32.402162747014046, 115.77104575932026 -32.402156731644276, 115.77114634215832 -32.402381493894325, 115.77129721641541 -32.402337334100963, 115.7712509483099 -32.402235992955013, 115.77184706926346 -32.402042368773273, 115.7722232490778 -32.402892160704781, 115.77253371477127 -32.40359531360339, 115.77281601727009 -32.40474394057982, 115.77304400503635 -32.40516351732726, 115.77210925519466 -32.4051612527928, 115.7706343755126 -32.405161535859605, 115.76971253380179 -32.405161677392975, 115.76906360685825 -32.405160686659165, 115.7690267264843 -32.40452749935821, 115.76899353414774 -32.402856342999719, 115.76898045837879 -32.402189320789844, 115.76897978782654 -32.402189320789844))\n10658\tTapping The Kestrels\tReady for service\tPOLYGON ((115.78534126281738 -31.721625828114394, 115.78589916229248 -31.721507188941835, 115.78589916229248 -31.72141592793653, 115.78628540039062 -31.721352045179373, 115.78625321388245 -31.72121515340859, 115.78670382499695 -31.721224279532937, 115.78672528266907 -31.721123892115781, 115.78750848770142 -31.721133018249095, 115.78920364379883 -31.721105639846424, 115.7894504070282 -31.721324666841383, 115.78965425491333 -31.721671458524948, 115.78982591629028 -31.721799223554996, 115.79001903533936 -31.722082131209078, 115.78985810279846 -31.722191643617542, 115.78983664512634 -31.72242892005869, 115.78963279724121 -31.722419794052939, 115.78965425491333 -31.722784833581489, 115.78956842422485 -31.722821337455283, 115.78963279724121 -31.723852565949837, 115.78625321388245 -31.723852565949837, 115.78534126281738 -31.721625828114394))\n17349312\tMOUNTAIN VIEW ESTATE\tCheck with carrier\tPOLYGON ((150.621471712 -33.912672574, 150.620083936 -33.9124691665, 150.61875984 -33.912283852, 150.617723776 -33.912133299000004, 150.617719456 -33.9121325775, 150.617409472 -33.912087308000004, 150.616733056 -33.911983079, 150.616018432 -33.9118726525, 150.61529232 -33.911766185, 150.614661248 -33.911673574, 150.614648288 -33.9117361225, 150.614548576 -33.912219324, 150.614449216 -33.912701101, 150.61435488 -33.913156497, 150.621182656 -33.914141363, 150.621471712 -33.912672574))\n17356160\tWoodridge Estate Stage 1B\tCheck with carrier\tPOLYGON ((150.548339168 -34.837832969000004, 150.54759216 -34.8383739645, 150.548081056 -34.8388309885, 150.547674976 -34.839102957, 150.547538176 -34.8391169985, 150.54752016 -34.839181989000004, 150.547397056 -34.8392539725, 150.547374016 -34.839356037, 150.546740032 -34.839548992000005, 150.54729984 -34.8400809965, 150.548159872 -34.8405249595, 150.548195872 -34.8403059935, 150.54821712 -34.840215991, 150.548192992 -34.8401060085, 150.548227936 -34.839977045, 150.548288032 -34.839869042000004, 150.548511968 -34.8397540275, 150.54881184 -34.839746017, 150.54897312 -34.839869042000004, 150.549095168 -34.840042017, 150.549098048 -34.8402169715, 150.54928416 -34.8404400075, 150.549392896 -34.840577962000005, 150.549671872 -34.8406839855, 150.549900128 -34.840689036, 150.550129088 -34.8406240455, 150.550332128 -34.840593983, 150.550530112 -34.8404689785, 150.551300896 -34.840791008000004, 150.551255168 -34.840839959, 150.551597888 -34.8409819835, 150.552114112 -34.8386799545, 150.549687008 -34.8376280445, 150.54957792 -34.838370986, 150.548339168 -34.837832969000004))\nAYAA-GDLZ8\tHarrington Grove\tReady for service\tPOLYGON ((150.7532483145 -34.0194031212073, 150.753092785742 -34.0192292333846, 150.753129528268 -34.0192312426531, 150.752751394729 -34.0191839831188, 150.751580306332 -34.0190469710432, 150.750505945275 -34.0189289877692, 150.749494810919 -34.0187986360661, 150.749473224744 -34.0189939707445, 150.749404057727 -34.0196198599067, 150.749462601962 -34.0199988255293, 150.749647802845 -34.0204244212552, 150.749785020324 -34.0206787485271, 150.75019955941 -34.0213153634332, 150.750307635258 -34.0214522244205, 150.750407081345 -34.0215446251154, 150.751112509168 -34.0220572088755, 150.751627252311 -34.0224068514111, 150.751833061248 -34.0225065765463, 150.752069240877 -34.0225027847628, 150.752113714676 -34.022472029001, 150.752646044893 -34.0219638772147, 150.752754180422 -34.0219478312322, 150.752938429301 -34.0218462288032, 150.752946520084 -34.021780350506, 150.753108336197 -34.0217940578762, 150.753143042872 -34.0217436053288, 150.753369749872 -34.0212485511137, 150.753374424394 -34.0211904491216, 150.753324763709 -34.0210811366684, 150.75328206428 -34.0210530740651, 150.753135307648 -34.0210208546529, 150.753090766342 -34.021007990691, 150.753093097992 -34.0208955428726, 150.753007557287 -34.0208107486905, 150.753027771507 -34.0206264378897, 150.753115084355 -34.0206350654735, 150.753127289725 -34.0205665474895, 150.753184398217 -34.020569513023, 150.753193403129 -34.0204908408664, 150.753045099658 -34.0204711154488, 150.7532483145 -34.0194031212073))\nAYCA-1CRLYV\tMoncrieff Residential Estate\tUnder construction\tPOLYGON ((149.107155000007 -35.154803000021, 149.107539000007 -35.155665000021, 149.107856000007 -35.1563760000209, 149.108036000007 -35.156782000021, 149.108355000007 -35.156686000021, 149.108324000007 -35.156604000021, 149.108529000007 -35.156542000021, 149.108575000007 -35.156647000021, 149.108638000007 -35.156693000021, 149.108766000007 -35.156674000021, 149.108923000007 -35.156858000021, 149.109022000007 -35.156800000021, 149.109468000007 -35.157206000021, 149.109323000007 -35.157463000021, 149.110502000007 -35.157912000021, 149.110752000007 -35.158008000021, 149.110891000007 -35.157741000021, 149.111305000022 -35.1568910000117, 149.111524000015 -35.1563730000163, 149.111717333818 -35.1558577655407, 149.111252000007 -35.155513000021, 149.110329000007 -35.154981000021, 149.110253000007 -35.1550560000209, 149.110174000007 -35.155067000021, 149.109828000007 -35.154860000021, 149.109673000007 -35.154697000021, 149.109613000007 -35.1545830000209, 149.109351000007 -35.153939000021, 149.109054000007 -35.154022000021, 149.109013000007 -35.153954000021, 149.108957000007 -35.1539080000209, 149.108836000007 -35.153841000021, 149.108214000007 -35.154100000021, 149.107813000007 -35.154327000021, 149.107155000007 -35.154803000021))\nAYCA-WHTZS\tFarragher subdivision\tReady for service\tPOLYGON ((151.6233730003 -32.765554999864, 151.623466999999 -32.7656050000162, 151.624907999999 -32.7663710000161, 151.624910999999 -32.7663720000161, 151.624921999999 -32.7663770000162, 151.625349999999 -32.7665650000161, 151.625547999999 -32.7666530000162, 151.626041999999 -32.7668700000162, 151.627752999999 -32.7637780000162, 151.627112999999 -32.7635110000162, 151.627071999999 -32.7634940000161, 151.627028999999 -32.7634760000162, 151.626984999999 -32.7634600000161, 151.626184999999 -32.7632410000161, 151.626131999999 -32.7632280000162, 151.626079999999 -32.7632170000161, 151.626027999999 -32.7632080000162, 151.625974999999 -32.7632000000161, 151.625921999999 -32.7631950000161, 151.625866999999 -32.7631910000161, 151.624961999999 -32.7631510000162, 151.624864999999 -32.7631470000161, 151.624828999999 -32.7631450000161, 151.624788999999 -32.7631420000161, 151.624763999999 -32.7631370000162, 151.624709999999 -32.7631230000162, 151.624674999999 -32.7630670000161, 151.624442999999 -32.7629980000162, 151.623847570036 -32.7644209308851, 151.623583345527 -32.7650526801596, 151.6233730003 -32.765554999864))\nAYCA-10KKU8\tThe Gateway\tReady for service\tPOLYGON ((150.786361112653 -34.1901310500305, 150.78628199999 -34.190252000017, 150.78619699999 -34.1903760000169, 150.78601599999 -34.1906230000169, 150.78592799999 -34.1907360000169, 150.78583999999 -34.1908480000169, 150.78574499999 -34.1909570000169, 150.78564199999 -34.1910740000169, 150.78554499999 -34.1911820000169, 150.78542999999 -34.1913040000169, 150.78531099999 -34.191424000017, 150.78516299999 -34.1915670000169, 150.78505199999 -34.1916700000169, 150.78490599999 -34.1917970000168, 150.784734878078 -34.1919559663619, 150.784985743051 -34.1921141586927, 150.784810934868 -34.1925065700012, 150.785943158369 -34.1926719526181, 150.786263053143 -34.1927184752146, 150.786424014891 -34.1927417942344, 150.786637023671 -34.1927727025635, 150.786836045802 -34.1927994827459, 150.78704999999 -34.192828000017, 150.787264069071 -34.1928564624794, 150.787694019862 -34.1929138417228, 150.787908282948 -34.1929409086907, 150.788124911298 -34.1929691650549, 150.788342167633 -34.1929966572924, 150.788566799981 -34.1930264400107, 150.789188041616 -34.1931065828895, 150.789705101281 -34.1931730394511, 150.789879258958 -34.193195797742, 150.790116930992 -34.1919556770345, 150.790174437291 -34.1916557990799, 150.788766999991 -34.191483000017, 150.78878199999 -34.191413000017, 150.78865699999 -34.191396000017, 150.788696999991 -34.191176000017, 150.789065999991 -34.1912240000169, 150.78909299999 -34.191088000017, 150.78914599999 -34.190801000017, 150.788374990481 -34.1906966394142, 150.78838104339 -34.1906668721417, 150.78754953723 -34.1905557201037, 150.787174812538 -34.1904474235976, 150.787199049344 -34.1903895976563, 150.786826441928 -34.1902817056308, 150.786798198038 -34.190325694194, 150.786361112653 -34.1901310500305))\nAYCA-DXRRI\tMiddleton Grange\tReady for service\tPOLYGON ((150.837332954119 -33.9132582515769, 150.836773204192 -33.9159658930164, 150.840228853377 -33.9164556232338, 150.840589626877 -33.9146927533392, 150.840441489028 -33.9144945811888, 150.840582277208 -33.9143246561057, 150.840723248155 -33.9136264914087, 150.841618919867 -33.9137505579435, 150.841653621314 -33.9136017129614, 150.838141759281 -33.9131000811425, 150.838122319134 -33.9132108494306, 150.83736520922 -33.9130994879333, 150.837332954119 -33.9132582515769), (150.839636226717 -33.9148563493757, 150.840258403678 -33.9145697445072, 150.84037698963 -33.914757030031, 150.839853003865 -33.9149951397709, 150.839615015105 -33.9149599141975, 150.839636226717 -33.9148563493757), (150.840006288988 -33.9151240703677, 150.839917658521 -33.9155783883302, 150.839562808521 -33.9155304564976, 150.839661865651 -33.9150773662999, 150.840006288988 -33.9151240703677))\n17327379\tTwin Creeks Golf Couse Estate\tCheck with carrier\tPOLYGON ((150.757997056 -33.845982479, 150.757867072 -33.8458295765, 150.757699328 -33.845715986500004, 150.757543808 -33.845610518, 150.757460992 -33.845554537, 150.757423936 -33.845436174, 150.757409152 -33.845390368000004, 150.75732816 -33.845133329, 150.7572936 -33.845070503, 150.756266528 -33.8456768405, 150.756129376 -33.8453155725, 150.756043328 -33.8450903165, 150.755979616 -33.844922096, 150.75583776 -33.844549413500005, 150.75547488 -33.844498649500004, 150.755636896 -33.8437362645, 150.755530336 -33.8437221305, 150.75514944 -33.845622395, 150.755121728 -33.8457623475, 150.755009408 -33.8463230455, 150.75496368 -33.846550207, 150.754928416 -33.8467230895, 150.75484704 -33.847122967000004, 150.754818976 -33.847261291500004, 150.754765696 -33.847522918500005, 150.754683232 -33.8479260335, 150.754599008 -33.848339046, 150.754513696 -33.848758626, 150.754498208 -33.8488351235, 150.75443088 -33.8491641645, 150.75435024 -33.849560527, 150.754268512 -33.849962014, 150.7541688 -33.850449711, 150.75514368 -33.8503914915, 150.755285536 -33.850383037, 150.75542592 -33.8503746565, 150.755424128 -33.850365832, 150.755422688 -33.8503569335, 150.755420896 -33.8503480165, 150.755420896 -33.850347128500005, 150.755419456 -33.850339118, 150.755418016 -33.850330201, 150.755416576 -33.8503211915, 150.755415136 -33.850312293, 150.755414048 -33.850303376, 150.75541296 -33.850294385, 150.755411872 -33.850285468, 150.755410816 -33.850276477, 150.75541008 -33.850267467500004, 150.755409376 -33.850258569000005, 150.75540864 -33.8502495595, 150.755407936 -33.8502405685, 150.7554072 -33.850231559, 150.755406848 -33.850222568, 150.755406496 -33.8502135585, 150.755406112 -33.8502045675, 150.755406112 -33.850195558, 150.75540576 -33.850186567, 150.75540576 -33.850177557500004, 150.75540576 -33.8501685665, 150.755406112 -33.850159557, 150.755406112 -33.850150566, 150.755406496 -33.8501415565, 150.755406848 -33.850132565500004, 150.7554072 -33.850123556, 150.755407936 -33.850114565, 150.755408288 -33.8501055555, 150.755408992 -33.8500965645, 150.755409728 -33.850087647500004, 150.755410816 -33.8500786565, 150.755411872 -33.850069647, 150.755412608 -33.8500607485, 150.755414048 -33.850051739, 150.755415136 -33.850042822, 150.755416576 -33.850033831000005, 150.755417632 -33.850024914, 150.755419072 -33.8500160155, 150.755420896 -33.8500070985, 150.755422336 -33.8499981815, 150.755424128 -33.849989283, 150.75542592 -33.8499804585, 150.755635072 -33.848964993500005, 150.756520672 -33.848973263, 150.756524288 -33.8488663515, 150.756538688 -33.8485129275, 150.756549856 -33.848235631, 150.756662176 -33.848021697, 150.7567824 -33.8477930925, 150.756905152 -33.847571333, 150.756954112 -33.847483236, 150.756816608 -33.847121968, 150.756679072 -33.8467607185, 150.757287488 -33.8464015225, 150.757997056 -33.845982479))\n10705\tWannanup-Port Bouvard East\tReady for service\tPOLYGON ((115.65199792385101 -32.602154244759411, 115.65223395824432 -32.601871796929323, 115.65045833587646 -32.600808902457786, 115.64985752105713 -32.600736594812226, 115.64851641654968 -32.601408580560175, 115.64897239208221 -32.602019128889793, 115.64857006072998 -32.602327349533134, 115.6485915184021 -32.602679842494766, 115.65163850784302 -32.604614009956684, 115.65199255943298 -32.604424210324808, 115.65291523933411 -32.603149830952674, 115.65304398536682 -32.6028244545906, 115.65199792385101 -32.602154244759411))\n10235\tDalyellup\tReady for service\tPOLYGON ((115.62134027481079 -33.39171543951737, 115.62159776687622 -33.391258590530363, 115.62183380126953 -33.390721118059787, 115.62223076820374 -33.390819654928173, 115.62284231185913 -33.3910346440715, 115.62256336212158 -33.391482536412255, 115.62270283699036 -33.391554198972607, 115.62229514122009 -33.392136455085229, 115.62193036079407 -33.392647045697224, 115.62180697917938 -33.393022358676539, 115.62176406383514 -33.393376185725607, 115.62178015708923 -33.393967387201116, 115.62178015708923 -33.3945361908855, 115.62172651290894 -33.394527233376017, 115.6216835975647 -33.395091554670692, 115.62178015708923 -33.395091554670692, 115.62175333499908 -33.395248309935596, 115.62167823314667 -33.395458809417981, 115.62160849571228 -33.39563347881419, 115.62150120735168 -33.396193314256791, 115.62147974967957 -33.396314238238773, 115.62149584293365 -33.396793453846072, 115.62178552150726 -33.397756355721768, 115.62194108963013 -33.397729484186243, 115.62204837799072 -33.398047463490791, 115.62149047851562 -33.398190777726548, 115.62108278274536 -33.398208691989396, 115.62078237533569 -33.39820421342403, 115.62039613723755 -33.398123599207963, 115.62015473842621 -33.398078813500057, 115.62010109424591 -33.3982400419405, 115.62000453472137 -33.398419184301268, 115.61992943286896 -33.398531148089212, 115.61980605125427 -33.398544583734072, 115.61955392360687 -33.398432619963437, 115.61968266963959 -33.398226606248549, 115.61976850032806 -33.398105684927572, 115.61982750892639 -33.397917584760478, 115.6198650598526 -33.397738441365675, 115.61987578868866 -33.397563776200165, 115.61973094940186 -33.396466512643414, 115.61975240707397 -33.396332152888462, 115.61982214450836 -33.395960423150733, 115.62003135681152 -33.395691701868252, 115.62018692493439 -33.39553046869991, 115.62032639980316 -33.3951497780878, 115.62039077281952 -33.394957192790024, 115.62045514583588 -33.394813873221693, 115.62066435813904 -33.394276422735572, 115.62029421329498 -33.394191326103829, 115.62051951885223 -33.393577732134951, 115.62100231647491 -33.393582210938753, 115.62100231647491 -33.393049231667518, 115.62102913856506 -33.392811853293082, 115.6211793422699 -33.392426671909824, 115.62123835086823 -33.3922564749409, 115.62130272388458 -33.392144503069076, 115.62141537666321 -33.392077319876748, 115.62147438526154 -33.391965347774125, 115.62145292758942 -33.391893685552752, 115.62127590179443 -33.391839938847944, 115.62134027481079 -33.39171543951737))\n17313925\tSanctuary on Moggill\tCheck with carrier\tPOLYGON ((152.880090112 -27.5747120085, 152.877075136 -27.5742129525, 152.876409856 -27.574612016, 152.87604192 -27.5747540405, 152.877490912 -27.5773179555, 152.879303872 -27.5784560015, 152.880090112 -27.5747120085))\n10573\tSecret Harbour\tReady for service\tPOLYGON ((115.75586915016174 -32.39568219217621, 115.75425982475281 -32.396751158362243, 115.75473189353943 -32.397466815092514, 115.75516104698181 -32.397557404147591, 115.75595498085022 -32.397530227440612, 115.75655579566956 -32.397059163219915, 115.75778961181641 -32.397077281119991, 115.75821876525879 -32.397484932910793, 115.75814366340637 -32.398553877754949, 115.75793981552124 -32.398898111536262, 115.758798122406 -32.399178932859492, 115.75945258140564 -32.399124580413485, 115.75945258140564 -32.395510069319322, 115.75586915016174 -32.39568219217621))\n17244744\tPremier Gardens Estate\tCheck with carrier\tMULTIPOLYGON (((146.076099136 -34.291925016, 146.07152496 -34.294128033, 146.073170176 -34.2950830215, 146.073107168 -34.295157003, 146.07412704 -34.2957490215, 146.07582912 -34.294637967, 146.076099136 -34.291925016)), ((146.076527872 -34.2963140485, 146.074939936 -34.295390991, 146.074267072 -34.2958310135, 146.07605808 -34.296870954, 146.076090112 -34.2968339725, 146.076527872 -34.2963140485)))\n10171\tBurns Beach\tReady for service\tPOLYGON ((115.71629583835602 -31.724599957029927, 115.71662843227386 -31.724942173580182, 115.71707367897034 -31.725489717432271, 115.71718096733093 -31.72552622024072, 115.71731507778168 -31.725466903169679, 115.71744382381439 -31.725421274627678, 115.71759402751923 -31.72541671177224, 115.71783542633057 -31.725434963192622, 115.7178407907486 -31.725302640313284, 115.71818947792053 -31.72510187420453, 115.71833968162537 -31.725343706054687, 115.71837723255157 -31.72541671177224, 115.71853280067444 -31.725471466022647, 115.71872055530548 -31.725421274627678, 115.71923553943634 -31.725311766035176, 115.71925699710846 -31.725471466022647, 115.71967005729675 -31.725393897491681, 115.71963250637054 -31.725238760234959, 115.72007238864899 -31.725156628640963, 115.72010457515717 -31.725325454616307, 115.72044253349304 -31.725252448826865, 115.72039425373077 -31.725074496974187, 115.72087705135345 -31.724992365234638, 115.72092533111572 -31.725161191509208, 115.7214081287384 -31.72506993410169, 115.72137057781219 -31.72491479630267, 115.72155833244324 -31.724882856135338, 115.72148859500885 -31.724604519925578, 115.72147250175476 -31.72453607646726, 115.72139739990234 -31.724271427952875, 115.72132766246796 -31.724180169669236, 115.7210111618042 -31.723659995736742, 115.72078049182892 -31.723263018929391, 115.72087705135345 -31.723212826338415, 115.72015285491943 -31.722268287967076, 115.71986317634583 -31.722437119203697, 115.71981489658356 -31.722373237150318, 115.7196432352066 -31.722473623214416, 115.71842551231384 -31.723176322618812, 115.71826994419098 -31.723272144852103, 115.71840941905975 -31.723422722447125, 115.71837186813354 -31.723454663117629, 115.71708977222443 -31.724212110078732, 115.71702003479004 -31.724180169669236, 115.71700930595398 -31.724148229248733, 115.71689128875732 -31.724225798822289, 115.71699321269989 -31.724371811961074, 115.71669280529022 -31.72454063936604, 115.71658551692963 -31.724440255540696, 115.71629583835602 -31.724599957029927))\nAYCA-DVQ33\tParkland Heights\tReady for service\tPOLYGON ((115.798355647355 -32.3549928434823, 115.798451991763 -32.3553699352017, 115.79849 -32.3556690000139, 115.798491778559 -32.3579576581, 115.798795911317 -32.3579611260389, 115.798795237267 -32.3580121070452, 115.799401478074 -32.3580170018895, 115.7994004765 -32.3580959213709, 115.800667312409 -32.3581085221385, 115.800693690148 -32.3568290786532, 115.800860050825 -32.3568293534333, 115.801299100813 -32.3568320850638, 115.801309100211 -32.3566405130569, 115.801331881481 -32.355721979468, 115.803241125026 -32.3557328356629, 115.803241071715 -32.3557024722184, 115.803455441111 -32.3557036972506, 115.803457201199 -32.3554977165717, 115.80347957934 -32.3554615770789, 115.803569475552 -32.3554325394295, 115.803437844321 -32.3552484063506, 115.803434290397 -32.354982824985, 115.798355647355 -32.3549928434823))\nAYCA-1EL358\tEden Park Estate\tReady for service\tPOLYGON ((146.647843999839 -19.2331609988561, 146.647292999837 -19.2372459988554, 146.647401999837 -19.2376239988554, 146.647540999837 -19.2374459988556, 146.649135999837 -19.2373989988574, 146.649304999837 -19.2377669988575, 146.649885999837 -19.2378519988581, 146.649841999836 -19.2384279988581, 146.650174999836 -19.2384969988585, 146.650285999837 -19.2374519988587, 146.650230999837 -19.2372309988586, 146.649948843635 -19.2371151599172, 146.649810239837 -19.2369634188572, 146.649556800498 -19.236042180794, 146.649802441917 -19.2337616221085, 146.649119999839 -19.2336789988575, 146.649152999839 -19.2334309988575, 146.649054999839 -19.2333079988574, 146.647843999839 -19.2331609988561))\nAYAA-GVMB7\tArise\tReady for service\tPOLYGON ((153.115738596112 -27.5736358170092, 153.11523024 -27.5763293999812, 153.116633917818 -27.5765641202416, 153.116648002924 -27.5765665546249, 153.11663928 -27.5766129899812, 153.119916823727 -27.5771672175432, 153.119971764003 -27.576876214461, 153.120082435228 -27.5767465279428, 153.120164158364 -27.5763205126533, 153.119626616226 -27.5760813401441, 153.119519578763 -27.5760502726541, 153.118594472322 -27.5759124280471, 153.118681964522 -27.5754236773469, 153.118618309805 -27.5751355406054, 153.118753167609 -27.5743754918204, 153.117222455093 -27.574147345067, 153.117239377614 -27.5740571906616, 153.116779735782 -27.573988679351, 153.116815423661 -27.5737985565908, 153.115738596112 -27.5736358170092), (153.116713508362 -27.576060363591, 153.11682657265 -27.5760763348502, 153.116794699362 -27.5762408975662, 153.11668308164 -27.5762186711988, 153.116713508362 -27.576060363591), (153.116587715015 -27.5765500765817, 153.116359429893 -27.5765146321417, 153.116401420366 -27.5762875414317, 153.116481914437 -27.5763005142836, 153.116621004425 -27.5763366805525, 153.116587715015 -27.5765500765817), (153.116533700679 -27.5754951435665, 153.116607909647 -27.5751473618443, 153.117806874605 -27.5753408605024, 153.11774350159 -27.5756729384442, 153.116533700679 -27.5754951435665))\nAYAA-ESS68\tTalana\tReady for service\tPOLYGON ((150.844216592569 -33.9517943675023, 150.844228126837 -33.9519068258114, 150.844142191117 -33.9525375676691, 150.844183328754 -33.9527140492275, 150.843989580323 -33.953839356685, 150.843932366363 -33.9542447253249, 150.843898923095 -33.9544652644049, 150.843901212382 -33.9547866922792, 150.843964999992 -33.9547610000165, 150.844167999992 -33.9547450000165, 150.844271711301 -33.9547551699583, 150.844293131982 -33.9550903336832, 150.84450124326 -33.9550665386662, 150.844614844453 -33.9552427156473, 150.844782240192 -33.9552316798737, 150.84531822188 -33.955323156489, 150.845688805113 -33.9553864027706, 150.845990718037 -33.9554190935347, 150.846115746382 -33.9554212822979, 150.846271000098 -33.9554240000138, 150.846548000006 -33.9553130000027, 150.846681000004 -33.9551839999918, 150.847147000035 -33.9542189997499, 150.847467410064 -33.9525177236257, 150.845290999984 -33.9524230000109, 150.845241142482 -33.9523778722476, 150.84535644 -33.9516443700215, 150.84539712 -33.9513860700215, 150.845592449993 -33.95119334094, 150.8454512576 -33.951162637154, 150.845363948157 -33.9512438804114, 150.845231899992 -33.9514491400165, 150.845202999992 -33.9515641400166, 150.845149399992 -33.9518864800165, 150.845114322193 -33.9521300745628, 150.844872999992 -33.9520980000165, 150.844645999992 -33.9520340000165, 150.844550999992 -33.9519600000166, 150.844401999992 -33.9518960000166, 150.844216592569 -33.9517943675023))\nAYCA-19M72I\tLot 9000 Baile Road Canning Vale\tContracted\tPOLYGON ((115.913695 -32.0656820000128, 115.912922 -32.0658160000129, 115.913144712481 -32.066741547773, 115.913650023291 -32.0666490931937, 115.914471479994 -32.0664987900135, 115.915387690761 -32.0662810073945, 115.915534213935 -32.0662092676814, 115.916252399977 -32.0658576300229, 115.917005879995 -32.0653359000158, 115.9171434 -32.0652208800119, 115.916474879999 -32.064644970012, 115.91424 -32.0627200500118, 115.91351 -32.0628460000129, 115.913198 -32.0629000000128, 115.912322 -32.0630520000129, 115.912197 -32.0629810000128, 115.911989 -32.0630170000128, 115.911907 -32.0631240000129, 115.91133 -32.0632240000124, 115.911372 -32.0634000000129, 115.91324 -32.0630770000128, 115.913365 -32.0631470000128, 115.91396 -32.0656360000128, 115.913695 -32.0656820000128))\n17327746\tBindea Estate\tCheck with carrier\tPOLYGON ((150.264839168 -30.993058980500003, 150.263547136 -30.992867006, 150.26282496 -30.992760002, 150.262804096 -30.9928629545, 150.26225184 -30.995632978, 150.261932896 -30.9972349855, 150.263957888 -30.9975319845, 150.264839168 -30.993058980500003))\nAYCA-DF9C9\tBungarribee (Bunya)\tReady for service\tPOLYGON ((150.871540932996 -33.7782366150764, 150.871848227012 -33.7783437992281, 150.872013383806 -33.7779547769863, 150.871845673635 -33.7777057984735, 150.871641121767 -33.7774975033237, 150.871253017715 -33.7772553165078, 150.870872026244 -33.7771247333353, 150.870128780703 -33.7769941382103, 150.86956627718 -33.7768623413401, 150.869674985752 -33.7766656131578, 150.86897444724 -33.7765921348688, 150.868966200884 -33.7762178670691, 150.868807908742 -33.7761926862653, 150.868802610994 -33.7764173095824, 150.868765528614 -33.776478422721, 150.868683975599 -33.7764901504463, 150.866614681665 -33.7759607867223, 150.86651985762 -33.7759579509831, 150.866435952982 -33.7759950902314, 150.866385494039 -33.7760623257549, 150.866228906763 -33.7764881067847, 150.866199218036 -33.7766471672172, 150.866255459104 -33.7768979223986, 150.866375520384 -33.7769766136498, 150.8666544861 -33.7769848900638, 150.866737251255 -33.7770347989569, 150.86749723397 -33.7787442140341, 150.867568071367 -33.7788061445338, 150.867670627423 -33.778805662827, 150.867736807277 -33.7787814721562, 150.867803291782 -33.7787791630327, 150.867854164459 -33.7788149812711, 150.868395074826 -33.7796432429844, 150.868490117564 -33.7796984958428, 150.868600096883 -33.7796682058383, 150.869780478964 -33.778690906639, 150.869575792357 -33.7784850875502, 150.86966673904 -33.7784307559129, 150.869486571821 -33.7782685545288, 150.870145527163 -33.7779022433393, 150.87028188469 -33.7778097272943, 150.870287212956 -33.7778137804532, 150.870409308477 -33.777556969752, 150.871670880894 -33.7779307647463, 150.871540932996 -33.7782366150764), (150.86762255512 -33.7766755592885, 150.868270292973 -33.7768084378615, 150.868228191745 -33.7769220394538, 150.86812001504 -33.7769422509783, 150.867961115372 -33.7769398881814, 150.867619223761 -33.7769309520312, 150.86762255512 -33.7766755592885))\n20\tMacarthur Gardens\tReady for service\tPOLYGON ((150.79716301894049 -34.078731685352246, 150.79565025305536 -34.077460926946763, 150.79610086417162 -34.077096580111167, 150.79465247129923 -34.075799137186991, 150.79342938399395 -34.075905777081026, 150.79308606124127 -34.076767777962438, 150.79296804403776 -34.077958568873647, 150.7933971974831 -34.07859838991115, 150.79383707975941 -34.078944957621623, 150.79434133505742 -34.07902493458419, 150.79449153876286 -34.079042707232027, 150.79471684432096 -34.07918488828274, 150.79493142103914 -34.079255978718209, 150.79531765913367 -34.079300410209981, 150.79562879538443 -34.079291523913952, 150.79602576231889 -34.079229319811809, 150.79636908507158 -34.079149343042253, 150.79675532316611 -34.078989389276572, 150.79716301894049 -34.078731685352246))\n10389\tIluka\tReady for service\tPOLYGON ((115.73255270719528 -31.737971912801473, 115.73366716504097 -31.738165807683931, 115.73433168232441 -31.738262754972968, 115.73499619960785 -31.738352858832975, 115.73577672243118 -31.7384520870331, 115.73667526245117 -31.7384190109782, 115.73695957660675 -31.739146681457662, 115.73716074228287 -31.739752308798906, 115.73725461959839 -31.740284938235007, 115.73635339736938 -31.74041723971855, 115.7354736328125 -31.740405834425705, 115.73499083518982 -31.740523308874931, 115.73423981666565 -31.740836953519118, 115.73380529880524 -31.740437769242167, 115.73310524225235 -31.740000945619194, 115.73280081152916 -31.73956126858678, 115.73252320289612 -31.738911728918328, 115.73242396116257 -31.738533066290049, 115.73255002498627 -31.737971912801473, 115.73255270719528 -31.737971912801473))\n5\tEl Caballo Lifestyle Village\tReady for service\tPOLYGON ((116.35106955017488 -31.800599504507684, 116.35602627243441 -31.800599504507684, 116.35602627243441 -31.801383674998871, 116.35614428963106 -31.80292464180879, 116.35311875786226 -31.802915523737557, 116.35106955017488 -31.800599504507684))\nAYAA-F7DKM\tHighland Reserve\tReady for service\tPOLYGON ((153.278922005378 -27.8823195164227, 153.279175517498 -27.882312956606, 153.279281702309 -27.8823938691562, 153.279312630119 -27.8829053418118, 153.279456570347 -27.8830488383831, 153.279584634019 -27.8831303120556, 153.279764118797 -27.8831940885013, 153.279941689246 -27.8832786725815, 153.279954500137 -27.8832847749197, 153.280079205961 -27.8834261413138, 153.280239442459 -27.8835767394807, 153.280454587218 -27.8836338780015, 153.280658123717 -27.8837104853744, 153.280818450055 -27.8837781407235, 153.280976069156 -27.8838073240476, 153.281048450117 -27.8838920985107, 153.281405886071 -27.8840641013084, 153.281824721202 -27.884262055925, 153.281874765512 -27.8841718664925, 153.281983178655 -27.8839363242595, 153.282061647774 -27.8837090588748, 153.282142287873 -27.8834939000405, 153.282150679651 -27.8833210015813, 153.28218127427 -27.8832976228159, 153.282196885851 -27.8831871162728, 153.282215249292 -27.8830847780257, 153.282239694578 -27.882872350824, 153.282257913597 -27.882738859609, 153.282266565177 -27.8826704961707, 153.282272390205 -27.8826010486553, 153.282292874521 -27.882591885899, 153.2822906174 -27.8825736661434, 153.28227796447 -27.882436954257, 153.282489392514 -27.8823154031056, 153.282510650825 -27.8823214025795, 153.283146495303 -27.8823915583036, 153.283182589553 -27.8823622047333, 153.283189748395 -27.8822826032596, 153.283180780905 -27.8821201365671, 153.283118307934 -27.881977571374, 153.283039520875 -27.8818707936366, 153.282964277653 -27.8817922354384, 153.282926656181 -27.881753958419, 153.283405363051 -27.8813429114422, 153.28313172 -27.8805805199838, 153.28305108 -27.8804737799837, 153.28290204 -27.8803512899837, 153.282867554254 -27.880263886493, 153.282607540476 -27.8804228246798, 153.28251844042 -27.8804818075522, 153.282441227285 -27.8805478952935, 153.282371156703 -27.8806199939127, 153.282309683159 -27.8807000649567, 153.282255947369 -27.8807814246332, 153.28221013968 -27.8808680327282, 153.282173871808 -27.8809571113511, 153.28214732389 -27.8810472887208, 153.28212938712 -27.8811424210191, 153.28212160289 -27.8812369023159, 153.282123866327 -27.8813322192062, 153.281915046734 -27.8813885540661, 153.281779117775 -27.881388831918, 153.281752014121 -27.8813791658821, 153.281468220591 -27.8812779555464, 153.280900186356 -27.8810745996795, 153.280744009218 -27.8810178490687, 153.279859656562 -27.8806842485408, 153.279842784037 -27.8807416395728, 153.279714277582 -27.8810199747326, 153.279531217377 -27.8810482672562, 153.27942991388 -27.8812617159865, 153.279538732174 -27.8813035115158, 153.279321020686 -27.8817854831345, 153.279254031442 -27.8817615913039, 153.278922005378 -27.8823195164227))\nAYCA-1DIQ1G\tDeepdale North\tUnder construction\tPOLYGON ((114.682667281468 -28.7695852595405, 114.682647993578 -28.7693896745515, 114.68253857297 -28.769361746858, 114.682536019533 -28.7693682256754, 114.682457823475 -28.7694016065347, 114.681771538229 -28.7693826416671, 114.681157210557 -28.7709446899764, 114.681782455493 -28.7711344198171, 114.681756664264 -28.7713456302067, 114.681199706687 -28.7727591516134, 114.680814889024 -28.773156842617, 114.681511862251 -28.7733628127493, 114.681919186006 -28.7722928185805, 114.685080475602 -28.7732603821697, 114.685396232689 -28.7724591855149, 114.685358344393 -28.7723902875581, 114.685156835885 -28.7721372683945, 114.685403127192 -28.7715117137987, 114.684104285229 -28.7711146808133, 114.683890462217 -28.7711056447604, 114.683077314578 -28.7708568528202, 114.683480418274 -28.7698340540221, 114.682667281468 -28.7695852595405))\nAYCA-G6D99\tIronbark Ridge\tReady for service\tPOLYGON ((150.897661735819 -32.2945243372932, 150.89762196471 -32.2945702034084, 150.898074059564 -32.2948582778338, 150.898960861988 -32.2954328003064, 150.899238153016 -32.2956687597493, 150.89941492645 -32.2959059372634, 150.899515831828 -32.2961867433978, 150.899607020755 -32.2963730547168, 150.899535005149 -32.2971814171867, 150.900395919197 -32.2970336289607, 150.900699323449 -32.2962383475425, 150.902216278851 -32.2954752520887, 150.902981646862 -32.2946638829776, 150.902690547696 -32.2945395748975, 150.902566324463 -32.2944952808649, 150.900883605279 -32.2937678448936, 150.90054565338 -32.2936238063681, 150.900134071053 -32.2934474370959, 150.898346241779 -32.294097524552, 150.897661735819 -32.2945243372932))\n17320794\tStegemann Road Buccan\tCheck with carrier\tPOLYGON ((153.135784096 -27.752138016, 153.136055168 -27.750760025, 153.13508208 -27.75060999, 153.135110176 -27.7503959635, 153.132807968 -27.749728983, 153.132864128 -27.7492010485, 153.133021088 -27.7490250025, 153.132594112 -27.748798026, 153.132509152 -27.748847976, 153.13214016 -27.748572030000002, 153.131528896 -27.7490210435, 153.131092928 -27.751400994500003, 153.135784096 -27.752138016))\nAYCA-MVLET\tMount Margaret\tReady for service\tPOLYGON ((146.596882842201 -19.3376598365711, 146.596519286094 -19.3400516344113, 146.596527328741 -19.340325134072, 146.596432683727 -19.3409477667322, 146.596560392176 -19.3415796451863, 146.59651070207 -19.342129395233, 146.596462937963 -19.3425152330739, 146.597192826593 -19.3427465779283, 146.597463799029 -19.3428239234488, 146.597406292132 -19.3429906434563, 146.597240116519 -19.3432828588305, 146.597367278742 -19.3435760088589, 146.597765828997 -19.3434001687534, 146.598285147643 -19.3435797184814, 146.598414458122 -19.3427839686197, 146.59846602759 -19.3425212972627, 146.598320076364 -19.3424977894588, 146.598359884405 -19.3419510326852, 146.598316439693 -19.3419507396131, 146.598160977845 -19.3405786986226, 146.598314134299 -19.3395710578566, 146.598267442291 -19.3395636433458, 146.598359679292 -19.3390326228807, 146.598398482833 -19.3390372380206, 146.598571237126 -19.3378794789881, 146.597821367147 -19.3377783818931, 146.59784293826 -19.3376299251971, 146.597560244269 -19.3375916107964, 146.597540255671 -19.3377398823715, 146.596882842201 -19.3376598365711))\n10387\tIluka\tReady for service\tPOLYGON ((115.73422908782959 -31.741005750924383, 115.7352215051651 -31.740608848428671, 115.73631852865219 -31.740565508397982, 115.73731899261475 -31.740430926068143, 115.73774814605713 -31.74234243302692, 115.73777228593826 -31.742757576101905, 115.73772668838501 -31.743081477648303, 115.73740214109421 -31.743240006513407, 115.73669135570526 -31.743435030860088, 115.73538780212402 -31.743688219750108, 115.7348245382309 -31.743679095838171, 115.73445439338684 -31.7436152284294, 115.73428273200989 -31.743250270962942, 115.73426932096481 -31.742835130096442, 115.73434174060822 -31.742474731571516, 115.7345375418663 -31.741936412175619, 115.73452949523926 -31.74154407572949, 115.73423981666565 -31.741010313012161, 115.73422908782959 -31.741005750924383))\nAYAA-HLIZF\tNickol West\tReady for service\tPOLYGON ((116.79243804 -20.7363338099194, 116.792851868382 -20.7376158347818, 116.793644451396 -20.7375967229697, 116.79363892323 -20.7382453958611, 116.793050416848 -20.7382417304937, 116.793294479704 -20.7390730489739, 116.79393104532 -20.739062121547, 116.794063805026 -20.7390436571975, 116.794041404014 -20.7396653122022, 116.794073092582 -20.7394547758944, 116.794100070882 -20.739458459294, 116.794090833834 -20.739824926379, 116.794462058534 -20.7399485840712, 116.79447669223 -20.73990521238, 116.794789751316 -20.7399831964784, 116.794790080617 -20.7399833225261, 116.794862925271 -20.7400043703842, 116.794896949737 -20.7399250144207, 116.79494139245 -20.7398909805616, 116.794938688363 -20.7395687177871, 116.795759615433 -20.7395715150376, 116.795838410917 -20.7380075730927, 116.795846347666 -20.7380050690789, 116.795904173911 -20.737265453559, 116.795820068276 -20.7372638617781, 116.795870396612 -20.7367148394442, 116.796644730489 -20.7367024179985, 116.796693557218 -20.7367264420565, 116.796712157307 -20.7367595344421, 116.796811249088 -20.7367630170925, 116.796825543641 -20.7365919304293, 116.797706664579 -20.7365930173158, 116.797698929546 -20.7363525596193, 116.79243804 -20.7363338099194))\nAYCA-1GCO65\tWhitby\tContracted\tPOLYGON ((115.997557 -32.279590000014, 115.996896 -32.279594000014, 115.996893 -32.279324000014, 115.995956 -32.279331000014, 115.995968 -32.280548000014, 115.995187 -32.2805540000141, 115.994913 -32.280668000014, 115.994907 -32.281213000014, 115.995439 -32.282130000014, 115.996078 -32.282649000014, 115.996328 -32.2828980000141, 115.995468 -32.283501000014, 115.995359 -32.283745000014, 115.995506 -32.283800000014, 115.995608 -32.283572000014, 115.996651 -32.2827710000141, 115.998422 -32.282759000014, 115.998816 -32.282795000014, 115.998874 -32.282347000014, 115.998782 -32.282338000014, 115.998776 -32.281657000014, 115.998955 -32.2816740000139, 115.999023 -32.281272000014, 115.998483 -32.281222000014, 115.997978 -32.281222000014, 115.997973 -32.280673000014, 115.99799 -32.280597000014, 115.997987 -32.2802810000139, 115.997432 -32.280285000014, 115.997432 -32.280015000014, 115.99756 -32.280014000014, 115.997557 -32.279590000014))\n17311856\tFantasia Land\tCheck with carrier\tPOLYGON ((138.651928928 -34.644247026500004, 138.652008128 -34.6441059825, 138.651314048 -34.643791982, 138.65154192 -34.6433329785, 138.651576128 -34.643206975, 138.651131872 -34.643154953, 138.650864032 -34.643042991, 138.65117184 -34.6425039935, 138.65127408 -34.64237799, 138.652059968 -34.642293038, 138.652184896 -34.642063971, 138.652470016 -34.642059031500004, 138.652594912 -34.641552964, 138.65293296 -34.640658008, 138.650519872 -34.641026010000004, 138.650059072 -34.640931956, 138.649478048 -34.6421040235, 138.64878 -34.642031041, 138.648788992 -34.6421899745, 138.647531168 -34.642145963000004, 138.647504896 -34.642883965, 138.647773088 -34.6429770385, 138.647777056 -34.642511005, 138.64939488 -34.6431400235, 138.649635008 -34.642731969, 138.649925152 -34.642817994, 138.649717088 -34.6431660345, 138.649610176 -34.643243975000004, 138.649277888 -34.6432930185, 138.648945952 -34.6438770265, 138.650817952 -34.644528985, 138.650933888 -34.644324967, 138.651298912 -34.6444659925, 138.651527872 -34.644061971, 138.651928928 -34.644247026500004))\n10172\tBurns Beach\tReady for service\tPOLYGON ((115.72688519954681 -31.728574154024283, 115.72672426700592 -31.727962750195161, 115.72668135166168 -31.727829967522087, 115.72673231363297 -31.727820842048178, 115.72665184736252 -31.72755392153864, 115.72654187679291 -31.72757901666203, 115.72613149881363 -31.726084704287867, 115.72609663009644 -31.725952382336217, 115.7260362803936 -31.72596583911659, 115.72595715522766 -31.72567153621015, 115.72562053799629 -31.725736556700152, 115.72554141283035 -31.725432218350335, 115.72549849748611 -31.725304458328264, 115.72536706924438 -31.724731817494082, 115.72717487812042 -31.724396444526015, 115.72723925113678 -31.724428384860971, 115.72727411985397 -31.724487702596697, 115.72735458612442 -31.724585804922462, 115.72748064994812 -31.724683907144389, 115.72760671377182 -31.724761476269585, 115.72775155305862 -31.724807105136453, 115.72782397270203 -31.7248801112767, 115.72805732488632 -31.724845889655619, 115.72826653718948 -31.7248093865792, 115.72835773229599 -31.725096847916756, 115.72837918996811 -31.725149089213648, 115.72843417525291 -31.72512969701954, 115.72865009307861 -31.725913598280105, 115.72877615690231 -31.725888502705722, 115.7288646697998 -31.726191930558397, 115.72901219129562 -31.726155428012142, 115.7288646697998 -31.726194211967051, 115.72890758514404 -31.726321970762559, 115.72869837284088 -31.726369880265469, 115.72859108448029 -31.726397257113153, 115.728540122509 -31.726436040966842, 115.72850525379181 -31.72653414123025, 115.72848379611969 -31.726657336762777, 115.72891294956207 -31.72819088642408, 115.72689324617386 -31.728603348171056, 115.72688519954681 -31.728574154024283))\n10574\tSecret Harbour\tReady for service\tPOLYGON ((115.75571894645691 -32.395528187530232, 115.75414180755615 -32.396760217343648, 115.75410962104797 -32.397222224189811, 115.75038135051727 -32.397284716662277, 115.7502955198288 -32.396877063967558, 115.75010776519775 -32.396908770354258, 115.74997365474701 -32.396627941970316, 115.74975371360779 -32.396655118948864, 115.74913144111633 -32.3961025187772, 115.74857890605927 -32.395930396721518, 115.74823021888733 -32.395907749058189, 115.74826240539551 -32.395536326569115, 115.74927091598511 -32.395663153932276, 115.74944794178009 -32.395450265042662, 115.75571894645691 -32.395528187530232))\n10688\tWannanup-Port Bouvard North\tReady for service\tPOLYGON ((115.6345796585083 -32.601983893518465, 115.63247680664062 -32.601287939135545, 115.63191890716553 -32.60090832537513, 115.63336730003357 -32.597609233297533, 115.63381254673004 -32.59761283468432, 115.63431680202484 -32.5975405244593, 115.63469767570496 -32.59732811283579, 115.63499808311462 -32.597594757133535, 115.63466012477875 -32.597811687502229, 115.63476204872131 -32.598548342959177, 115.63521265983582 -32.5988746528397, 115.63618898391724 -32.5990825414838, 115.63618361949921 -32.5992687158061, 115.63653230667114 -32.5993387649863, 115.63644915819168 -32.599587326151536, 115.63635528087616 -32.599646535861488, 115.63581883907318 -32.599429609935314, 115.63510000705719 -32.599321146775267, 115.63450455665588 -32.598959601960104, 115.63419878482819 -32.599090662124183, 115.63425779342651 -32.599429609935314, 115.63509464263916 -32.599800191408093, 115.63583493232727 -32.5999357696127, 115.63591003417969 -32.600229521685534, 115.63560962677002 -32.600601017819521, 115.63529849052429 -32.6007727486423, 115.63476204872131 -32.6006371717043, 115.63382863998413 -32.600293709209758, 115.63356041908264 -32.600646210173224, 115.63385009765625 -32.600872171599775, 115.63488006591797 -32.601025825044282, 115.6350302696228 -32.601170439810154, 115.6345796585083 -32.601983893518465))\n10197\tCanningvale-Sanctuary Waters\tReady for service\tPOLYGON ((115.93021810054779 -32.100772582784344, 115.92992305755615 -32.10064988720486, 115.92979431152344 -32.1005908114967, 115.92985332012177 -32.10048174855045, 115.92986941337585 -32.100395406958974, 115.92901110649109 -32.100218179226047, 115.928995013237 -32.100299976683978, 115.92864096164703 -32.1002272678361, 115.9285980463028 -32.100345419684508, 115.92845857143402 -32.100304520985055, 115.92842638492584 -32.100372685473978, 115.928093791008 -32.100249989357287, 115.92802405357361 -32.100422672733522, 115.92795431613922 -32.1005680900603, 115.92772901058197 -32.100781671339242, 115.92743933200836 -32.100604444355817, 115.92726230621338 -32.100440849912033, 115.92696726322174 -32.100190913390449, 115.92637717723846 -32.099681949632078, 115.92628598213196 -32.099759203242272, 115.92601776123047 -32.099518353536013, 115.92593193054199 -32.099636506301458, 115.92569053173065 -32.099868267051278, 115.92530429363251 -32.100209090615081, 115.92482686042786 -32.100604444355817, 115.92510581016541 -32.100831658374965, 115.92516481876373 -32.1007771270619, 115.92624306678772 -32.101658712631242, 115.92618405818939 -32.101731420339604, 115.92645764350891 -32.101958631555107, 115.92653810977936 -32.101885924027648, 115.92709600925446 -32.102349433523564, 115.92716574668884 -32.102281270509934, 115.92725157737732 -32.102353977722665, 115.92750906944275 -32.102563010636842, 115.92741787433624 -32.10264026181013, 115.92800796031952 -32.10312648828323, 115.928093791008 -32.103044693356722, 115.92832982540131 -32.103149209083149, 115.92848539352417 -32.103217371449, 115.92849612236023 -32.103189644992774, 115.92880189418793 -32.103316881311521, 115.9293007850647 -32.102430767552939, 115.92946171760559 -32.102139938599251, 115.92967629432678 -32.101746863619809, 115.92995792627335 -32.1012560855482, 115.93021810054779 -32.100772582784344))\nON-V-LSP-TWC\tLakeside, Town Centre\tReady for service\tPOLYGON ((145.43586373329163 -38.072816794351404, 145.43553113937378 -38.073796528046365, 145.43574571609497 -38.074750911182129, 145.4379665851593 -38.074987393573721, 145.43969392776489 -38.074776248617809, 145.44045567512512 -38.072343814767223, 145.43829917907715 -38.072022862593244, 145.43785929679871 -38.073255986940993, 145.43586373329163 -38.072816794351404))\n17334924\tHalcyon\tCheck with carrier\tPOLYGON ((153.363738976 -27.878194981, 153.367494112 -27.878028037, 153.367565056 -27.877854951, 153.367490176 -27.876538972000002, 153.36747216 -27.876212003, 153.366962048 -27.876233962500002, 153.366936832 -27.875797011, 153.366000128 -27.875674985, 153.365072032 -27.875696038, 153.36502704 -27.8760470385, 153.36382896 -27.875816991, 153.363726016 -27.875942014, 153.363498112 -27.876252962000002, 153.363485888 -27.876273034500002, 153.363475072 -27.8762930145, 153.363439072 -27.8763949865, 153.363422176 -27.8764260295, 153.363400928 -27.876455019, 153.363346912 -27.876522951000002, 153.363327136 -27.876551034000002, 153.363124096 -27.876902034500002, 153.36313488 -27.876931024, 153.362943008 -27.876992037, 153.362658976 -27.877274014, 153.362693152 -27.877545002, 153.36307296 -27.8779619735, 153.36360288 -27.878113988000003, 153.363633856 -27.878157981, 153.36368208 -27.8781869705, 153.363738976 -27.878194981))\n101\tBarangaroo\tReady for service\tPOLYGON ((151.20260026877574 -33.860891437945874, 151.20045450155803 -33.861033984197483, 151.2011626047433 -33.865844780638177, 151.20169904654321 -33.865844780638177, 151.20197799628312 -33.865737876995496, 151.20234277670673 -33.865595338596769, 151.20249298041213 -33.865452799960067, 151.20264318411756 -33.8653637131912, 151.20287921850669 -33.865345895826565, 151.20313671057568 -33.865328078458219, 151.20260026877574 -33.860891437945874))\nAYCA-ILWV9\tCloverlea - Chirnside Park\tReady for service\tPOLYGON ((145.332093027342 -37.745503247648, 145.330713366711 -37.7486744948705, 145.330238291506 -37.7489853015421, 145.330311999998 -37.7489950000284, 145.330287999998 -37.7491190000284, 145.330601999998 -37.7491580000284, 145.330390999998 -37.7502110000284, 145.330754999998 -37.7502550000284, 145.330737999998 -37.7503430000284, 145.331258999998 -37.7504120000284, 145.331538999998 -37.7504470000284, 145.331527999998 -37.7505030000284, 145.331862999998 -37.7505550000283, 145.332417999998 -37.7506230000284, 145.332955999998 -37.7478620000284, 145.333385999998 -37.7473030000284, 145.333418999998 -37.7471320000284, 145.333536999998 -37.7465260000284, 145.333756999998 -37.7461100000284, 145.333498999998 -37.7456290000281, 145.332093027342 -37.745503247648))\nAYCA-1INGUF\tLot 9000 Baile Road Canning Vale\tContracted\tPOLYGON ((115.909507261094 -32.0671115083085, 115.909570981925 -32.067395292871, 115.90995563938 -32.0673249901255, 115.90968852 -32.0662669500124, 115.9111206 -32.0660049600124, 115.91138772 -32.0670630000125, 115.911803406193 -32.0669865937148, 115.912003540893 -32.0669503349593, 115.913144712481 -32.066741547773, 115.912827 -32.0654190000128, 115.911841 -32.0655900000129, 115.911837 -32.0655740000128, 115.911785 -32.0655830000128, 115.911289 -32.0635070000129, 115.911372 -32.0634000000129, 115.91133 -32.0632240000128, 115.909669 -32.0635110000128, 115.909544 -32.0634410000129, 115.909336 -32.0634770000128, 115.909254 -32.0635830000128, 115.908664075399 -32.0636860854527, 115.908713683044 -32.0639621837802, 115.909070035967 -32.0653993084393, 115.909507261094 -32.0671115083085))\n17362323\tHOEVET FIELD\tCheck with carrier\tPOLYGON ((145.4283672 -17.0509390565, 145.428337984 -17.0507605685, 145.428264992 -17.050314219, 145.428192 -17.049867888, 145.428119008 -17.049421557, 145.428045984 -17.048975226, 145.42791808 -17.0481930645, 145.427872448 -17.0479141585, 145.42482352 -17.047647499500002, 145.424621408 -17.049785711000002, 145.425323136 -17.049847094, 145.4255664 -17.049868369000002, 145.425528736 -17.050266526, 145.425498368 -17.050385536500002, 145.425410656 -17.0505260625, 145.425358816 -17.0505706475, 145.426247328 -17.0506483475, 145.426265408 -17.050734705500002, 145.426309216 -17.0509435335, 145.426870112 -17.051024656, 145.4273464 -17.05109355, 145.427439232 -17.051079564000002, 145.4279032 -17.0510092455, 145.4283672 -17.0509390565))\nAYAA-J45NH\tPimpama Rivers Estate\tReady for service\tPOLYGON ((153.265624578904 -27.7926076471019, 153.265543420928 -27.7925107591948, 153.265384647505 -27.7926063733716, 153.265353215414 -27.7926064337381, 153.26532265773 -27.7925867723432, 153.265255493986 -27.792501094055, 153.265470375718 -27.7923748908153, 153.265408562671 -27.7922635183304, 153.26523612 -27.791886779983, 153.265145000953 -27.7917991365851, 153.26503596 -27.7917305399829, 153.264903427577 -27.7916873441794, 153.26451828 -27.7918101899831, 153.26444196 -27.791674919983, 153.263606343611 -27.7918912626421, 153.263225341237 -27.7918586699694, 153.262927644066 -27.7918085827755, 153.262917113766 -27.7921281667979, 153.262914072304 -27.7922204718124, 153.262910444737 -27.7923305642788, 153.263019745077 -27.793128720332, 153.26296149599 -27.7931353320679, 153.263002550736 -27.7934213779956, 153.262956693443 -27.793569042054, 153.262799569699 -27.7935561181068, 153.262774911331 -27.7935880061655, 153.262830661775 -27.7940241285157, 153.26316872949 -27.7940455891253, 153.263203250067 -27.7944409299263, 153.263217734159 -27.7945341591662, 153.263226363932 -27.7945599924967, 153.263521080293 -27.7945028097098, 153.263687746672 -27.794471002915, 153.264013127009 -27.7944476670215, 153.26413313758 -27.7944870521438, 153.264273980603 -27.7946527015214, 153.264446700571 -27.7947509671253, 153.264583304511 -27.7947251305455, 153.264603904806 -27.7950547688884, 153.264524126766 -27.7950593618504, 153.264534637768 -27.7950941149162, 153.264761897506 -27.79517984043, 153.264881064914 -27.7951390366496, 153.26512368486 -27.7955006396155, 153.265164862908 -27.795436391418, 153.265542344534 -27.7955466323454, 153.265810373843 -27.795630845172, 153.265833769053 -27.795438480048, 153.265867584178 -27.795372254057, 153.266252735875 -27.7947855257858, 153.266328806127 -27.79463801714, 153.266510440419 -27.7933444555408, 153.266328387952 -27.793328452226, 153.266309899871 -27.7932724984429, 153.266270850934 -27.7931918255749, 153.2662822115 -27.7931226184912, 153.266262322874 -27.7931003179583, 153.265806471656 -27.7925310784423, 153.265749014059 -27.7925172607694, 153.265651125526 -27.7925883725075, 153.26562636 -27.7926130799829, 153.265624578904 -27.7926076471019))\nAYCA-TCBF0\tWandi Estate\tUnder construction\tPOLYGON ((115.860880999999 -32.194845000013, 115.856624999999 -32.1973170000131, 115.856167966274 -32.1984312419833, 115.85632117682 -32.1984715069978, 115.856671454712 -32.1985760109309, 115.856736713624 -32.1984166842668, 115.856830129913 -32.1984442238542, 115.85711223998 -32.1987938402838, 115.856479588482 -32.1991629213849, 115.856183769863 -32.198806974786, 115.856026930388 -32.1987759386446, 115.855766999999 -32.199410000013, 115.856153097605 -32.1998883595213, 115.860667999999 -32.197255000013, 115.860571999999 -32.196569000013, 115.860574999999 -32.1964220000129, 115.860296345408 -32.1964646162018, 115.860174158834 -32.1964517002027, 115.859814061239 -32.1960056093241, 115.860618669601 -32.1955359937958, 115.860675581514 -32.1955343798437, 115.860937794077 -32.1955876363699, 115.861221999999 -32.194934000013, 115.860880999999 -32.194845000013))\nAYCA-T0C3W\tWickham South\tReady for service\tPOLYGON ((117.14284520041 -20.6825016927027, 117.142645406475 -20.6825292189216, 117.142619673948 -20.6825577020452, 117.141952177474 -20.6826972402596, 117.141603383938 -20.682782209439, 117.141549102504 -20.6827566302886, 117.141430004923 -20.6827937995148, 117.141078515655 -20.6829520271639, 117.140935803896 -20.6829728617407, 117.141120326379 -20.6838560929233, 117.14125447609 -20.6848420760747, 117.140996238778 -20.6848806441264, 117.141053457403 -20.6852853763193, 117.140731110087 -20.6853621669179, 117.139160854844 -20.6857704515298, 117.139102231644 -20.6856953295152, 117.138602977405 -20.6858496130096, 117.138331608096 -20.6865830308393, 117.138489650793 -20.6869758548686, 117.139489508951 -20.6867451217474, 117.13941797627 -20.6864826466003, 117.139675269054 -20.6864192239591, 117.139749833337 -20.6866822937452, 117.140700563914 -20.6868821331693, 117.141602583005 -20.6866761271616, 117.141805533351 -20.6866293224438, 117.14236162727 -20.6856903887652, 117.14272219814 -20.6856743352239, 117.143436510258 -20.6849301622877, 117.143705833032 -20.6848957705182, 117.143705414848 -20.6848861688895, 117.143700678842 -20.6848279299781, 117.143682783695 -20.6848170320882, 117.14338392474 -20.6848379165946, 117.143391622657 -20.684824887754, 117.143436097586 -20.6847183716378, 117.143462074422 -20.6846066096354, 117.143475749578 -20.6844918243425, 117.143265427653 -20.6845168352201, 117.142931307068 -20.682917344732, 117.14293001357 -20.6829156448836, 117.14284520041 -20.6825016927027), (117.140959752113 -20.6829907690652, 117.141083731297 -20.6829720465343, 117.141186138758 -20.6830114367997, 117.141274380791 -20.6832686359415, 117.141029864836 -20.6833151176419, 117.140959752113 -20.6829907690652), (117.141763025749 -20.6848734921848, 117.14205855236 -20.6848348710433, 117.142359766428 -20.6847980752793, 117.142412626088 -20.6851827706446, 117.142384188202 -20.6852810752798, 117.142296826044 -20.6853846969228, 117.1422566635 -20.6853896031925, 117.141936367613 -20.6851528245645, 117.141869584075 -20.6850931864035, 117.141816949087 -20.685022919453, 117.141781248311 -20.6849474183301, 117.141763025749 -20.6848734921848), (117.142895280133 -20.684563011765, 117.143475434198 -20.6844920551955, 117.143461888574 -20.6846065724633, 117.143434225308 -20.6847176823126, 117.14339139216 -20.6848248692192, 117.143329441838 -20.6849310187654, 117.143261677591 -20.6850248136365, 117.143137739172 -20.6851410532001, 117.143091220046 -20.6851395295502, 117.142956569917 -20.6850146462001, 117.142895280133 -20.684563011765))\n10092\tBaldivis-The Chase\tReady for service\tPOLYGON ((115.82371830940247 -32.303049020278486, 115.82316845655441 -32.304973761485051, 115.82223504781723 -32.304973761485051, 115.8218702673912 -32.304796931842866, 115.82155913114548 -32.30514378966172, 115.81914514303207 -32.305144923181835, 115.819131731987 -32.304428535646707, 115.81892251968384 -32.304420600942919, 115.81892251968384 -32.303556847605854, 115.81948444247246 -32.303556847605854, 115.81948310136795 -32.303182778645244, 115.81941604614258 -32.303169176108483, 115.81941604614258 -32.3028223107314, 115.82378268241882 -32.3028223107314, 115.82371830940247 -32.303049020278486))\nAYCA-1EFSPR\tCoomera Springs Estate\tContracted\tPOLYGON ((153.2906154 -27.8408675699834, 153.29050754849 -27.8408000549641, 153.29036664 -27.8407620899834, 153.29020968 -27.8407526399834, 153.2900538 -27.8407723499834, 153.2899062 -27.8408204999834, 153.2897928 -27.8406728099834, 153.290092931339 -27.8391405710308, 153.286799 -27.838601999984, 153.286826780308 -27.8385033516107, 153.286627 -27.8384699999828, 153.286289894985 -27.8401100386966, 153.286478 -27.840140999984, 153.286521 -27.839935999984, 153.286809 -27.8401149999841, 153.287117 -27.840488999984, 153.287173 -27.840572999984, 153.287393 -27.8408949999841, 153.287775 -27.841557999984, 153.288193 -27.8417459999841, 153.288632 -27.842017999984, 153.288804 -27.842123999984, 153.28950408 -27.8424559799834, 153.2906154 -27.8408675699834))\nAYCA-F6OD2\tThe Fairways\tReady for service\tPOLYGON ((152.46376330561 -27.5485524851706, 152.463722942925 -27.5487821645764, 152.463139360168 -27.5522044751826, 152.464089252315 -27.5523357306259, 152.464027373572 -27.5526052768444, 152.465250274928 -27.5527178950144, 152.465312150708 -27.5524483595476, 152.465651104373 -27.5524928215778, 152.466187884274 -27.5487240833686, 152.46376330561 -27.5485524851706))\nAYCA-FZLKH\tMadigan Road\tReady for service\tPOLYGON ((116.789252316717 -20.7493197720858, 116.789209055822 -20.749778716366, 116.791245095918 -20.749964249424, 116.791072737033 -20.7523103801412, 116.793953411002 -20.7525609438356, 116.793972878161 -20.7512441914248, 116.793752394791 -20.7504078298742, 116.79375036959 -20.7500979975568, 116.793679395142 -20.7489542030277, 116.792518347941 -20.7488437776833, 116.792519992678 -20.7488173020324, 116.792495995003 -20.7488157115861, 116.79249381432 -20.7488415124269, 116.792156770446 -20.7488098560769, 116.792093385534 -20.7495696427207, 116.789252316717 -20.7493197720858), (116.790715107494 -20.7495810780196, 116.790797819404 -20.7495863661234, 116.790841858445 -20.7496367075686, 116.790825725387 -20.7498004632787, 116.790697751243 -20.7497914731743, 116.790715107494 -20.7495810780196), (116.792296030263 -20.7507358196575, 116.792279482565 -20.7509086851372, 116.792224146164 -20.7509512008938, 116.792134755574 -20.7509447734368, 116.792152585297 -20.7507288729372, 116.792296030263 -20.7507358196575), (116.793527803508 -20.7516066931115, 116.793829300928 -20.7516310379633, 116.793858140316 -20.7516588423479, 116.793858625415 -20.7517964296697, 116.793519522899 -20.7517701463126, 116.793527803508 -20.7516066931115), (116.79272085637 -20.7515312639833, 116.793010194906 -20.7515513693717, 116.793036953151 -20.7515782149074, 116.793022462726 -20.7517416441292, 116.792704142374 -20.7517163649526, 116.79272085637 -20.7515312639833))\nON-Q-GC-SeaChange\tSeachange Emerald Lakes, Carrara\tUnder construction\tPOLYGON ((153.381919 -28.015345000000003, 153.38032 -28.016509999999993, 153.38118900000006 -28.017684999999993, 153.382112 -28.018110999999998, 153.38223 -28.018565999999993, 153.382251 -28.018992000000008, 153.38198299999996 -28.019332999999996, 153.381747 -28.019551000000018, 153.381844 -28.020004999999994, 153.382294 -28.020583000000002, 153.384 -28.020318, 153.38394599999998 -28.018830999999995, 153.382552 -28.015838000000006, 153.381919 -28.015345000000003))\nAYCA-M5S0I\tWindmill Downs\tReady for service\tPOLYGON ((150.904114385348 -31.0370319898862, 150.901387056954 -31.0372010841187, 150.899123498279 -31.0372647959784, 150.89902257924 -31.0373935328028, 150.899331147985 -31.0380558605678, 150.899711289598 -31.0393141003711, 150.900174553461 -31.0391663331314, 150.900197318398 -31.0389105095477, 150.900904033014 -31.0389923930483, 150.900952099727 -31.0390844248845, 150.901106222224 -31.0391050860778, 150.901200875284 -31.039035243051, 150.902764693991 -31.0392632279298, 150.902817623148 -31.0389945891315, 150.903714879426 -31.0391232556322, 150.904114385348 -31.0370319898862))\n10590\tSecret Harbour\tReady for service\tPOLYGON ((115.76870754361153 -32.410379155588195, 115.76885707676411 -32.410337264112115, 115.76971035450697 -32.410564270391575, 115.77044829726219 -32.410762405081513, 115.77066019177437 -32.410859773969719, 115.77070310711861 -32.4109093075208, 115.77070511877537 -32.411054511430983, 115.77158018946648 -32.411045453883958, 115.77158287167549 -32.41113716150555, 115.77267989516258 -32.411125839581985, 115.77288374304771 -32.411124424341452, 115.77288206666708 -32.411121452336239, 115.77295482158661 -32.411121876908418, 115.77306680381298 -32.411126971774422, 115.77368102967739 -32.411274156667893, 115.77348070219159 -32.411861903180991, 115.77340375632048 -32.412155279673541, 115.7732230424881 -32.412840528720515, 115.7732143253088 -32.413037455483845, 115.77255383133888 -32.412913482954238, 115.771763920784 -32.412923743244257, 115.77074937522411 -32.412931102348118, 115.77073730528355 -32.412351022684433, 115.77072322368622 -32.412093045159615, 115.7706568390131 -32.412151352425774, 115.76921246945858 -32.412170599476241, 115.76921112835407 -32.412132671461109, 115.76915547251701 -32.412134369730786, 115.769152790308 -32.412172297745208, 115.76905086636543 -32.412162108130964, 115.768949277699 -32.4121338036409, 115.76886512339115 -32.412080591175567, 115.76821636408567 -32.411576769469981, 115.76785996556282 -32.41132032880256, 115.76785393059254 -32.411245038137096, 115.76839372515678 -32.410708501874566, 115.76855633407831 -32.410544961081342, 115.76870821416378 -32.410380287789991, 115.76870754361153 -32.410379155588195))\nAYAA-J4JYO\tWickham South\tReady for service\tPOLYGON ((117.137120090343 -20.6838523976977, 117.13795889985 -20.6860236347729, 117.138731660415 -20.685890210214, 117.14073172224 -20.6853633128075, 117.141051119408 -20.6852889915087, 117.140991576746 -20.6848779410107, 117.14124329901 -20.6848331172305, 117.141110222128 -20.683854567357, 117.140885697347 -20.6828141182819, 117.137652935971 -20.6836927149813, 117.137324688435 -20.6837933677404, 117.137245586329 -20.6835834744423, 117.137185018719 -20.6835970296359, 117.137223114084 -20.683692699958, 117.137120090343 -20.6838523976977))\n271\tWestpoint Shopping Centre\tReady for service\tPOLYGON ((150.90482269288674 -33.768528306844821, 150.9039214706543 -33.770722296950169, 150.90735469819896 -33.771542799142019, 150.90748344422448 -33.771560636058652, 150.90759073258809 -33.771239570986374, 150.9080413437043 -33.771168223029406, 150.90793405534075 -33.770026647633181, 150.90799842836248 -33.769134781272271, 150.90482269288674 -33.768528306844821))\n334\tOceanside\tUnder construction\tPOLYGON ((152.41152280181123 -24.77278537946005, 152.41392140208984 -24.773130789321133, 152.41358759308534 -24.775067090008992, 152.41356424504252 -24.775189905931036, 152.41350293720444 -24.77520054434115, 152.41326851098933 -24.775166747064841, 152.41318790414289 -24.775169732314193, 152.41319345378071 -24.775137645229957, 152.41295902777787 -24.7751038474726, 152.41295215470925 -24.775143585981581, 152.41289354821151 -24.775135136482248, 152.41290042129825 -24.775095397976269, 152.41235342789497 -24.775016534910915, 152.41234680455264 -24.775054828489512, 152.41205377258734 -24.775012579587411, 152.41206039601676 -24.774974286023209, 152.41174782891235 -24.774929219914672, 152.41174081188689 -24.774969788480981, 152.41150965661203 -24.774936456367488, 152.41146066029449 -24.775219838118222, 152.41149261048855 -24.7752244448006, 152.41142812629511 -24.775573794000962, 152.41118825432275 -24.775813276239781, 152.4102489934794 -24.775769412708222, 152.41000957207564 -24.775032124460996, 152.41005672985023 -24.774866471326316, 152.40988282786327 -24.77479955460414, 152.40985987207992 -24.774745496993564, 152.40974231969921 -24.774771589785107, 152.40972136217394 -24.774727564844412, 152.40968638530933 -24.774537747297146, 152.4097657045042 -24.774079208742872, 152.40955653642479 -24.774017620752861, 152.40930985097853 -24.773770001840884, 152.40935829341188 -24.773488529415317, 152.40972523109224 -24.773295943521944, 152.41083418413797 -24.773455032642438, 152.41136151560283 -24.773717848456258, 152.41152280181123 -24.77278537946005))\nAYCA-13X8H5\tRiemore Downs Estate\tContracted\tPOLYGON ((153.10899288 -27.8859651299838, 153.10859976 -27.8869904099838, 153.10854 -27.8871631199838, 153.10809288 -27.8877602699838, 153.10855944 -27.8880881399838, 153.11038932 -27.8878163399838, 153.1104282 -27.8878955399838, 153.11170584 -27.8881748999838, 153.112579606512 -27.8875916036591, 153.113367683269 -27.8869181781118, 153.112529908805 -27.8861558819561, 153.111329786178 -27.8857798960081, 153.1106496 -27.8857429199837, 153.10997568 -27.8858786399838, 153.10947384 -27.8861107499837, 153.10899288 -27.8859651299838))\n17362631\tBarbers Paddock\tCheck with carrier\tPOLYGON ((144.76534032 -36.1019571165, 144.765215488 -36.102763901500005, 144.765318272 -36.102918136, 144.770230176 -36.10349948, 144.770421056 -36.102496946500004, 144.767612768 -36.1022099005, 144.767730272 -36.1016581935, 144.767627456 -36.101646335, 144.767759616 -36.100875144, 144.76770448 -36.100866338, 144.767741184 -36.100651294, 144.767880672 -36.100669091, 144.76790272 -36.100563789, 144.76777056 -36.100544512, 144.76783296 -36.100141101, 144.766896832 -36.1000372975, 144.766772032 -36.1007358205, 144.766177312 -36.100673531, 144.766173952 -36.1007040005, 144.765582592 -36.100640175500004, 144.76534032 -36.1019571165))\n193\tChambers Pines\tReady for service\tPOLYGON ((153.08751662773457 -27.721799275380192, 153.08700164360556 -27.721780280689021, 153.0866797785238 -27.721694804536636, 153.0864437441347 -27.721628323038182, 153.08582147164213 -27.7252562541139, 153.08867534202707 -27.725693117250394, 153.08930834335965 -27.725569656107062, 153.09002717537584 -27.725607644165692, 153.08998426003402 -27.724373025466761, 153.08997353119406 -27.72418308288778, 153.08846076530892 -27.723974145668087, 153.0883642057853 -27.723883922653968, 153.08825155300622 -27.72384118541115, 153.08826228184614 -27.723689230632669, 153.08731814427185 -27.723599007382767, 153.08764537376908 -27.721832516082387, 153.08751662773457 -27.721799275380192))\nAYAA-F548W\tElizabeth Hills\tReady for service\tPOLYGON ((150.845726075931 -33.8956701905742, 150.845313358595 -33.8956845243021, 150.845321470285 -33.8958526259179, 150.845354220132 -33.8961228876424, 150.845402183381 -33.8961145920596, 150.845435347146 -33.8963888852546, 150.845386932754 -33.8963958603444, 150.845423946906 -33.8965293614127, 150.845456430067 -33.8966507642801, 150.84539528314 -33.8967918234961, 150.845340935085 -33.8969192222845, 150.845289352593 -33.8970283053412, 150.845189541976 -33.8972428535373, 150.845080257767 -33.8974734709192, 150.844880830282 -33.8978582724434, 150.844796365588 -33.8980245613983, 150.844699613319 -33.8981919323363, 150.844590157584 -33.8981323483896, 150.844448919997 -33.8983802413803, 150.844339152454 -33.898323968363, 150.844171673035 -33.898426505895, 150.843989627603 -33.898650320926, 150.844063031024 -33.8986917071716, 150.843972416954 -33.8988040483723, 150.843881671316 -33.8989159240072, 150.843690475527 -33.8989974514528, 150.843579831915 -33.8991527081686, 150.843524608432 -33.8992303920253, 150.843469384847 -33.8993080758525, 150.843358607427 -33.8994632573245, 150.843422732651 -33.8996920705714, 150.843230744843 -33.899928766699, 150.84336288491 -33.900003296448, 150.843458925172 -33.9000896186464, 150.843562014076 -33.9001942186135, 150.8436711383 -33.9002982458604, 150.84377701977 -33.9003996698474, 150.843988303957 -33.9006018866086, 150.844249137817 -33.9004123916889, 150.844352278635 -33.9005161668513, 150.844497489419 -33.9004113060449, 150.844503786035 -33.9003349946155, 150.8451118487 -33.8998932309061, 150.845161811959 -33.8998494536132, 150.845199278399 -33.8997975549238, 150.845221032067 -33.8997448798659, 150.845230578131 -33.8997240056059, 150.845241919747 -33.8996694994709, 150.845250654605 -33.8995342858143, 150.845321359897 -33.8994814096214, 150.845603589081 -33.8994803402902, 150.845659440939 -33.8993234162817, 150.845680771383 -33.8990548581181, 150.845894827199 -33.8990794703426, 150.845983885111 -33.8990966990744, 150.846081046504 -33.8988394669644, 150.846126736068 -33.8986733389384, 150.846258474187 -33.8984307132367, 150.846392347883 -33.8984638088466, 150.84647151868 -33.8983467956038, 150.846540933904 -33.8982436146469, 150.846610348956 -33.8981404336425, 150.846679763836 -33.898037252591, 150.846749178543 -33.8979340714922, 150.846818224525 -33.8978307698443, 150.846888007442 -33.8977277091528, 150.846946881231 -33.897640195792, 150.847077169549 -33.8976331056406, 150.847407135599 -33.897558155581, 150.847604323321 -33.8975136581674, 150.847594378598 -33.897418410609, 150.847576161028 -33.8972439278076, 150.847562525864 -33.8971133336761, 150.847470667348 -33.896749283196, 150.847305237701 -33.8964565808851, 150.847060276897 -33.8960205187626, 150.84679425618 -33.895867204043, 150.846617882897 -33.8957835624515, 150.846391940434 -33.8957107667034, 150.846018670488 -33.895692826338, 150.845726075931 -33.8956701905742))\n17348353\tAvenue Hill\tCheck with carrier\tPOLYGON ((143.718275008 -37.5230560025, 143.718631008 -37.5211049925, 143.718516 -37.521079, 143.718478016 -37.521034008, 143.718258016 -37.5209899965, 143.718370016 -37.520381994000005, 143.717587008 -37.5202899935, 143.717720992 -37.519560002, 143.716938016 -37.5194680015, 143.717103008 -37.5185730085, 143.716887008 -37.5185050025, 143.717011008 -37.517831991, 143.715790016 -37.5170560085, 143.715734016 -37.517045001, 143.715671008 -37.517051994, 143.715596992 -37.5170659985, 143.715544992 -37.5171039975, 143.715427008 -37.517670005, 143.715532992 -37.5176880055, 143.715356992 -37.518563999, 143.716088 -37.519006001, 143.715862016 -37.519969, 143.716626016 -37.520189002, 143.716547008 -37.5206949955, 143.716675008 -37.520887007, 143.716290016 -37.5228290075, 143.718275008 -37.5230560025))\n17345976\tWestwood\tCheck with carrier\tPOLYGON ((152.764883648 -26.957241264, 152.764068256 -26.9585364675, 152.76463344 -26.959046938, 152.764055808 -26.959915069, 152.763766912 -26.960343029500002, 152.763462752 -26.960079349, 152.762936416 -26.958703948, 152.76268944 -26.958768661, 152.762096896 -26.959059906500002, 152.762350784 -26.9595279565, 152.762507456 -26.959822199, 152.762670848 -26.9601234345, 152.7632712 -26.961131703, 152.762926336 -26.961304419, 152.762851808 -26.9613145755, 152.762785216 -26.961296575000002, 152.76274848 -26.961269491, 152.762594048 -26.961348782, 152.76261024 -26.9615216645, 152.76156192 -26.9620359275, 152.762343136 -26.9632979975, 152.763725152 -26.962633977, 152.764134112 -26.961968976, 152.763923872 -26.961860973, 152.764876096 -26.960349967, 152.764614016 -26.9602229645, 152.766075328 -26.957850691, 152.764883648 -26.957241264))\nAYCA-FD0SO\tForest Springs\tReady for service\tPOLYGON ((151.248552545618 -23.8947114383945, 151.247326974519 -23.8966568533947, 151.249092309191 -23.897634607997, 151.249811837147 -23.8977041467752, 151.250507375955 -23.8975329477873, 151.251252380229 -23.896704342016, 151.251539109755 -23.8958291065575, 151.251485004698 -23.8954637886811, 151.249276337525 -23.8943697548482, 151.248764404038 -23.8944518288277, 151.248552545618 -23.8947114383945))\nAYCA-1CPHX4\tMoncrieff Residential Estate\tContracted\tPOLYGON ((149.114634000007 -35.1611090000209, 149.114633000008 -35.1611150000209, 149.114633000007 -35.161121000021, 149.114632000007 -35.1611270000209, 149.114632000008 -35.161140000021, 149.114633000008 -35.161146000021, 149.114633000007 -35.1611520000209, 149.114634000007 -35.1611580000209, 149.114635000007 -35.1611650000209, 149.114636000007 -35.1611710000209, 149.114638000007 -35.1611770000209, 149.114639000008 -35.1611830000209, 149.114645000008 -35.1612010000209, 149.114651000008 -35.1612130000209, 149.114653000008 -35.161219000021, 149.114657000007 -35.1612240000209, 149.114660000007 -35.1612300000209, 149.114664000007 -35.1612350000209, 149.114667000007 -35.1612410000209, 149.114671000007 -35.1612460000209, 149.114675000008 -35.1612520000209, 149.115181000007 -35.1618770000209, 149.115118000008 -35.162041000021, 149.115059000008 -35.1620730000209, 149.114056000007 -35.162542000021, 149.114543000008 -35.1633110000209, 149.115434000007 -35.1628850000209, 149.115353000008 -35.1625940000209, 149.115827000007 -35.1623690000209, 149.116265000008 -35.1622320000209, 149.116752000007 -35.1621610000209, 149.116696000008 -35.1618990000209, 149.116722000007 -35.1618980000209, 149.116749000008 -35.1618970000209, 149.116803000008 -35.1618970000209, 149.116830000008 -35.1618980000209, 149.116884000008 -35.1619020000209, 149.116910000007 -35.1619050000209, 149.116937000008 -35.1619090000209, 149.116940000008 -35.1619090000209, 149.116943000007 -35.1619100000209, 149.116946000008 -35.1619100000209, 149.116949000007 -35.1619110000209, 149.116951000008 -35.1619120000209, 149.116963000008 -35.1619160000209, 149.116965000008 -35.1619170000209, 149.116971000008 -35.161919000021, 149.116973000008 -35.1619200000209, 149.116976000008 -35.1619220000209, 149.116978000008 -35.1619230000209, 149.116981000008 -35.1619240000209, 149.116983000008 -35.1619260000209, 149.116986000008 -35.1619270000209, 149.116990000007 -35.1619310000209, 149.116992000008 -35.1619320000209, 149.116995000008 -35.1619340000209, 149.117003000007 -35.1619420000209, 149.117004000008 -35.1619440000209, 149.117008000008 -35.1619480000209, 149.117009000007 -35.1619500000209, 149.117011000008 -35.161952000021, 149.117012000008 -35.1619540000209, 149.117014000008 -35.1619560000209, 149.117015000008 -35.1619590000209, 149.117017000008 -35.1619630000209, 149.117018000008 -35.1619660000209, 149.117020000008 -35.1619700000209, 149.117021000008 -35.1619730000209, 149.117022000008 -35.1619750000209, 149.117023000008 -35.1619780000209, 149.117281000008 -35.1619470000209, 149.117281000007 -35.1619250000209, 149.117282000008 -35.1619230000209, 149.117282000008 -35.1619200000209, 149.117283000008 -35.1619180000209, 149.117285000008 -35.1619120000209, 149.117285000008 -35.1619100000209, 149.117286000008 -35.1619070000208, 149.117287000008 -35.1619050000209, 149.117289000008 -35.1619020000209, 149.117291000008 -35.1618980000209, 149.117293000008 -35.1618950000209, 149.117294000008 -35.1618930000209, 149.117296000008 -35.1618910000209, 149.117297000008 -35.1618880000209, 149.117305000008 -35.1618800000209, 149.117307000008 -35.1618770000209, 149.117311000008 -35.1618730000209, 149.117313000008 -35.1618720000209, 149.117315000008 -35.1618700000209, 149.117318000008 -35.1618680000209, 149.117320000008 -35.1618660000209, 149.117323000008 -35.1618640000209, 149.117325000008 -35.1618630000209, 149.117328000008 -35.1618610000208, 149.117330000008 -35.1618600000209, 149.117333000007 -35.1618580000209, 149.117365000008 -35.1618420000209, 149.117399000008 -35.1618280000209, 149.117416000008 -35.1618220000209, 149.117433000008 -35.1618150000209, 149.117451000008 -35.1618100000209, 149.117469000008 -35.1618040000209, 149.117487000008 -35.1618000000209, 149.117505000008 -35.1617950000209, 149.117541000007 -35.1617870000209, 149.117626000008 -35.1620480000209, 149.117928000008 -35.1619810000209, 149.118071000008 -35.1619490000209, 149.118799000008 -35.1617320000209, 149.118872000008 -35.1618960000209, 149.119159000008 -35.1618500000208, 149.119396000008 -35.1617920000209, 149.119397000008 -35.1617560000209, 149.119397000008 -35.1616850000208, 149.119395000008 -35.1616500000209, 149.119394000008 -35.1616140000209, 149.119391000008 -35.1615790000209, 149.119388000008 -35.1615430000209, 149.119380000008 -35.1614730000209, 149.119377000008 -35.1614590000209, 149.119373000008 -35.1614460000209, 149.119369000008 -35.1614320000209, 149.119361000008 -35.1614060000209, 149.119356000008 -35.1613930000209, 149.119351000008 -35.1613790000209, 149.119346000008 -35.1613660000209, 149.119340000008 -35.1613540000209, 149.119335000008 -35.1613420000209, 149.119330000008 -35.1613310000209, 149.119324000008 -35.1613200000208, 149.119318000008 -35.1613100000208, 149.119311000008 -35.1612990000208, 149.119304000008 -35.1612890000209, 149.119297000008 -35.1612780000209, 149.119289000008 -35.1612680000209, 149.119281000008 -35.1612590000209, 149.119263000007 -35.1612390000209, 149.119254000008 -35.1612300000209, 149.119139000007 -35.1611280000208, 149.118490000008 -35.1605920000209, 149.118471000008 -35.1605670000208, 149.118454000008 -35.1605410000209, 149.118437000008 -35.1605140000209, 149.118421000008 -35.1604870000209, 149.118406000008 -35.1604590000208, 149.118393000008 -35.1604310000209, 149.118380000008 -35.1604040000209, 149.118368000008 -35.1603750000209, 149.118357000008 -35.1603460000209, 149.118226000008 -35.1600150000209, 149.118145000008 -35.1598090000209, 149.118136000008 -35.1597870000209, 149.118116000008 -35.1597430000209, 149.118105000008 -35.1597220000209, 149.118093000008 -35.1597010000209, 149.118080000008 -35.1596800000209, 149.118052000008 -35.1596400000209, 149.118037000008 -35.1596200000209, 149.118005000008 -35.1595820000209, 149.117988000008 -35.1595630000208, 149.117013000008 -35.1598680000209, 149.117006000007 -35.1598650000209, 149.116982000007 -35.1598560000209, 149.116974000008 -35.1598540000209, 149.116966000008 -35.1598510000209, 149.116942000008 -35.1598450000209, 149.116933000008 -35.1598440000209, 149.116925000008 -35.159842000021, 149.116917000008 -35.1598410000209, 149.116908000008 -35.1598400000209, 149.116900000007 -35.1598390000209, 149.116891000007 -35.1598380000209, 149.116848000008 -35.159838000021, 149.116840000008 -35.1598390000209, 149.116831000007 -35.1598390000209, 149.116823000008 -35.1598400000209, 149.116814000008 -35.1598410000209, 149.116789000008 -35.159846000021, 149.116764000007 -35.1598500000209, 149.116738000008 -35.1598560000209, 149.116714000008 -35.1598610000209, 149.116689000008 -35.159867000021, 149.116664000008 -35.1598740000209, 149.116640000007 -35.1598810000209, 149.116592000007 -35.1598970000209, 149.116035000008 -35.1601530000209, 149.116013000008 -35.1601690000209, 149.115990000008 -35.1601840000209, 149.115966000007 -35.160198000021, 149.115943000008 -35.1602130000209, 149.115919000007 -35.1602270000209, 149.115894000008 -35.1602400000209, 149.115870000008 -35.1602530000209, 149.115845000008 -35.160265000021, 149.115819000008 -35.1602770000209, 149.115112000007 -35.160551000021, 149.114685000008 -35.1610060000209, 149.114681000007 -35.161011000021, 149.114676000007 -35.161016000021, 149.114668000007 -35.1610260000209, 149.114664000007 -35.1610320000209, 149.114661000008 -35.1610370000209, 149.114657000007 -35.1610430000209, 149.114654000007 -35.161049000021, 149.114651000007 -35.1610540000209, 149.114649000008 -35.161060000021, 149.114646000008 -35.161066000021, 149.114636000007 -35.1610960000209, 149.114635000008 -35.1611020000209, 149.114634000007 -35.1611090000209))\n17338330\tAmorosa Gardens\tCheck with carrier\tPOLYGON ((152.000035936 -27.4216899615, 151.999926848 -27.4216760125, 151.999877152 -27.4216689825, 151.997401088 -27.421328064500003, 151.99679088 -27.424887039, 151.998928928 -27.425177008000002, 151.998820928 -27.424422985, 151.999664032 -27.4242840315, 151.999848 -27.422966961, 152.00000208 -27.422056983, 152.000035936 -27.4216899615))\nAYCA-F190V\tEdmondson Park South P1\tReady for service\tPOLYGON ((150.852090806049 -33.9783097831143, 150.852145212961 -33.9784227240743, 150.852164757339 -33.9784161896055, 150.852218627485 -33.9784369635346, 150.852715466639 -33.9796805738223, 150.852726294352 -33.9797264036439, 150.852730953695 -33.979775694615, 150.852729296393 -33.9798183746987, 150.852724889661 -33.9798479105986, 150.852718364172 -33.9798644097894, 150.852705155626 -33.9798814461219, 150.852684475685 -33.9798963273218, 150.852516764308 -33.9799548561255, 150.852587193677 -33.9801147674443, 150.852631819426 -33.9800999169104, 150.852664660617 -33.98009070338, 150.852723537569 -33.9800797464525, 150.852766905225 -33.9800759455786, 150.852803090062 -33.9800754457348, 150.852831728811 -33.9800790355264, 150.85285801821 -33.9800900872391, 150.852874407473 -33.9801027169223, 150.852892874236 -33.980126061986, 150.852903924936 -33.9801476520218, 150.853616033146 -33.9819251958524, 150.853589680182 -33.9819730646129, 150.853578290774 -33.9819769501116, 150.853608654152 -33.9820274584669, 150.853800534389 -33.9819652689233, 150.853856605945 -33.982078718016, 150.853944129745 -33.9820482102479, 150.853888730447 -33.9819351049632, 150.854965699095 -33.9815807811402, 150.854876963975 -33.9813315071156, 150.855250764383 -33.9812190089092, 150.855416986389 -33.9811717492558, 150.855728369612 -33.9810815052793, 150.855570978115 -33.9806888640536, 150.855523245271 -33.9805731958087, 150.855481637444 -33.9804707291414, 150.855399192544 -33.9802694300242, 150.855313368622 -33.9800598796191, 150.855273752488 -33.979963151268, 150.855235378414 -33.9798706971008, 150.855196742625 -33.9797751202597, 150.855157917937 -33.9796803237115, 150.855116648753 -33.9795795583168, 150.8550566068 -33.9794463077385, 150.854995448644 -33.9793105761763, 150.854888718217 -33.9791619571973, 150.854785364874 -33.9788998743928, 150.854848239275 -33.9788788515138, 150.854507497025 -33.9780408561682, 150.854813792134 -33.9779384416031, 150.854789769859 -33.9778784790179, 150.85481623499 -33.9778308445905, 150.854723529262 -33.9775994388687, 150.854666838541 -33.9775796090891, 150.854614122103 -33.9774661029056, 150.852090806049 -33.9783097831143))\n17357936\tBroadview Estate\tCheck with carrier\tPOLYGON ((149.594210016 -32.6346520035, 149.594619008 -32.632449005, 149.593994016 -32.6315559915, 149.593548 -32.630928009, 149.592956992 -32.6300749925, 149.592895008 -32.630424994, 149.592636 -32.631194002, 149.592596 -32.6312140005, 149.592532992 -32.631241991, 149.592487008 -32.6313240015, 149.592538016 -32.631422995, 149.592612 -32.631455, 149.592628992 -32.631494997000004, 149.592311008 -32.6316619965, 149.591922016 -32.63238, 149.591964 -32.6326870075, 149.590779008 -32.634029996500004, 149.590710016 -32.634164991, 149.594210016 -32.6346520035))\n234\tLogan Hyperdome Shopping Centre\tReady for service\tPOLYGON ((153.16967998506846 -27.659035338906623, 153.1694439506704 -27.658731248681416, 153.16950832368312 -27.658275111757256, 153.16985164644478 -27.658199088751012, 153.17002330782111 -27.6580090310057, 153.17002330782111 -27.657666926231023, 153.17113910677179 -27.657666926231023, 153.17105327607914 -27.657438855786523, 153.1707528686683 -27.657438855786523, 153.17070995332648 -27.656716629573232, 153.17019496919747 -27.656754641598383, 153.17019496919747 -27.656013404729244, 153.17178283693531 -27.656013404729244, 153.17184720994808 -27.656925695546867, 153.17173992158448 -27.656982713470203, 153.17173992158448 -27.657438855786523, 153.17201887132438 -27.657438855786523, 153.17204032899531 -27.657685932079655, 153.17182575227716 -27.657742949606533, 153.17173992158448 -27.657933007815213, 153.17195449831164 -27.657914002008742, 153.1719115829608 -27.658123065692696, 153.17208324433713 -27.658199088751012, 153.17204032899531 -27.658731248681416, 153.17229782106432 -27.659130366928881, 153.1722549057225 -27.659339428285968, 153.172383651748 -27.659719538821246, 153.172126159688 -27.659795560770174, 153.17216907502981 -27.6599666099608, 153.17229782106432 -27.660061637172742, 153.17259822847515 -27.659985615409635, 153.17294155122784 -27.660137658883777, 153.17337070466417 -27.660897873080817, 153.17178283693531 -27.661506040632425, 153.17135368348997 -27.660574782692677, 153.17122493745546 -27.6602516913504, 153.17077432633923 -27.6598905881308, 153.1704953766083 -27.659225394867732, 153.16967998506846 -27.659035338906623))\n17136044\tThe Grange Stage 1\tCheck with carrier\tPOLYGON ((146.10346992 -37.0329309885, 146.102594048 -37.0371459545, 146.10454416 -37.0374710365, 146.104747936 -37.036379962, 146.105065088 -37.036523966000004, 146.105304832 -37.0364010335, 146.105142848 -37.035716034000004, 146.105380096 -37.035594008000004, 146.105236096 -37.035378002, 146.105058976 -37.035453963, 146.105479072 -37.0332140385, 146.10346992 -37.0329309885))\nAYAA-GR8ZS\tElizabeth Hills\tReady for service\tPOLYGON ((150.847407166737 -33.8975584538271, 150.847077063063 -33.8976326389823, 150.846945809376 -33.8976402580106, 150.846392347883 -33.8984638088466, 150.846258337327 -33.8984302483363, 150.84612555202 -33.8986748026648, 150.846080225695 -33.8988348709925, 150.845983885111 -33.8990966990744, 150.845896167807 -33.8990783832547, 150.845794195877 -33.8990629995033, 150.845680504498 -33.8990546327562, 150.845658851399 -33.8993233145574, 150.845602494386 -33.8994791973774, 150.8453208783 -33.8994818841775, 150.845250713987 -33.899533543924, 150.845237738615 -33.8996641169648, 150.845233465079 -33.8996978956928, 150.845227314742 -33.8997245855622, 150.845213250255 -33.8997638293775, 150.845195978834 -33.899797440562, 150.845178453307 -33.8998239709687, 150.845159937328 -33.8998470717241, 150.845127803736 -33.8998793953146, 150.8450985531 -33.8999028903783, 150.844503786035 -33.9003349946155, 150.844497489419 -33.9004113060449, 150.84435527985 -33.9005139790706, 150.844249137809 -33.900412391684, 150.843988303949 -33.9006018866037, 150.84469140689 -33.9012748316359, 150.844952212039 -33.9010852673005, 150.845011852476 -33.9011423703931, 150.845153680796 -33.9010393314212, 150.84540594009 -33.9008560627534, 150.845469855967 -33.9009172333492, 150.845825797249 -33.9006806918603, 150.847108109478 -33.9005021244586, 150.847087432304 -33.900428778449, 150.847413802423 -33.9003652907263, 150.847511369469 -33.9003461294801, 150.847445857977 -33.9001167511974, 150.849695454665 -33.8998954575961, 150.849910869951 -33.8998742857011, 150.849881097023 -33.8998086272625, 150.849845381576 -33.8997478515436, 150.849799475765 -33.8996856812185, 150.849767992012 -33.8996498428171, 150.849702209188 -33.8995872466935, 150.849642215599 -33.8995408661904, 150.8495824126 -33.8995023381281, 150.849497142855 -33.8994580199911, 150.849375054546 -33.8993953934817, 150.849289149441 -33.8993419002526, 150.849208385074 -33.8992830219043, 150.849141836404 -33.8992269180733, 150.849077663822 -33.8991647437189, 150.84903127806 -33.899113626165, 150.84897267983 -33.8990393550472, 150.848916662378 -33.8989542257239, 150.848890447108 -33.8989075341638, 150.848846114155 -33.8988127554792, 150.848811116972 -33.8987189887619, 150.848766172886 -33.8986206584265, 150.848726706291 -33.8985516143819, 150.848682146011 -33.8984855547148, 150.84862728589 -33.898416170646, 150.848572760872 -33.8983567322383, 150.848539015304 -33.8983236919911, 150.848475904213 -33.8982681744652, 150.848393140984 -33.8982055604599, 150.848306069251 -33.8981498096962, 150.848228931429 -33.8981076612542, 150.848151469135 -33.8980712726298, 150.848096801679 -33.8980458282773, 150.848019992262 -33.8980038147239, 150.847941613871 -33.8979521101811, 150.847880551515 -33.8979042646809, 150.847830331701 -33.8978587145906, 150.847782526568 -33.8978087719107, 150.84775102677 -33.8977750502156, 150.847726960565 -33.8977558992533, 150.847696860083 -33.8977378062635, 150.847655165174 -33.8977179672818, 150.84763885753 -33.8977048377059, 150.847622012342 -33.8976795423678, 150.847616837892 -33.8976530107345, 150.847604323321 -33.8975136581674, 150.847407166737 -33.8975584538271))\nAYCA-1JH740\tCockburn Coast\tContracted\tPOLYGON ((115.761090935601 -32.0863006079454, 115.761039017858 -32.0862992130994, 115.761031659925 -32.0863963005139, 115.760977209351 -32.0864507507975, 115.760889483571 -32.0864931009263, 115.760001134779 -32.0867391346993, 115.759780308828 -32.0861492549926, 115.761070784971 -32.0857968659266, 115.761082760018 -32.0843471300156, 115.761082760018 -32.0843201300157, 115.761056760018 -32.0843201300155, 115.760604760018 -32.0843171300148, 115.760339760017 -32.0843161300142, 115.760074760017 -32.0843141300137, 115.759810760016 -32.0843131300133, 115.759545760016 -32.0843111300127, 115.759412760016 -32.0843111300125, 115.759280760016 -32.0843101300122, 115.759015760015 -32.0843081300117, 115.758750760015 -32.0843071300113, 115.758486760015 -32.0843051300107, 115.758488760016 -32.0839451300108, 115.758171760015 -32.0839431300102, 115.758167760014 -32.0843031300101, 115.758132760014 -32.08433313001, 115.757663760013 -32.0847251300092, 115.757608760012 -32.0847721300091, 115.757597760012 -32.0847721300091, 115.757097760012 -32.0847681300082, 115.75611076001 -32.0847601300063, 115.75620776001 -32.0851251300064, 115.756394760009 -32.0853691300067, 115.756553760009 -32.085578130007, 115.756708760009 -32.0857081300073, 115.75674144548 -32.0857355997658, 115.757242310406 -32.0855129918071, 115.75745204628 -32.0857549938053, 115.75705058822 -32.0860235565776, 115.757067760008 -32.086041130008, 115.757363760008 -32.0863431300085, 115.757517760008 -32.0865001300088, 115.757630760008 -32.086615130009, 115.757777760008 -32.0866311300092, 115.758102760009 -32.0864291300099, 115.758317760009 -32.0865191300103, 115.75829753958 -32.0865316474744, 115.758318979771 -32.0865406223923, 115.758436189361 -32.0865183077246, 115.759536290065 -32.0862168136804, 115.759748041172 -32.086800643254, 115.759647207074 -32.0868248433595, 115.760026341955 -32.087853350037, 115.760877380613 -32.0876244581443, 115.760809822307 -32.087436906966, 115.760341952523 -32.0875679904047, 115.760123143637 -32.0869871865425, 115.760922758058 -32.086769386275, 115.761062766512 -32.086754168311, 115.761090935601 -32.0863006079454))\nAYCA-GKAGS\tParks Edge @ Casey Fields\tReady for service\tPOLYGON ((145.304366851953 -38.1198055463689, 145.304838013257 -38.1200624371428, 145.306640018578 -38.1202922624774, 145.307274004391 -38.1172534436857, 145.306969055836 -38.1171320028274, 145.307090436175 -38.1163445544295, 145.3051159885 -38.1160828890201, 145.304751223958 -38.1178660548879, 145.30462854761 -38.1178604743403, 145.304515303331 -38.1183451487173, 145.304602481026 -38.1185931628573, 145.304366851953 -38.1198055463689))\nAYCA-13X8OH\tRiemore Downs Estate\tContracted\tPOLYGON ((153.10899288 -27.8859651299838, 153.1082718 -27.8857466099837, 153.10694196 -27.8860976099837, 153.10615716 -27.8869849199837, 153.1058616 -27.8871999299838, 153.1043604 -27.8882738099837, 153.104328359999 -27.889026930002, 153.10554696 -27.8890613999838, 153.10553544 -27.8893862099838, 153.10555776 -27.8894927699838, 153.10561356 -27.8895889799838, 153.10569924 -27.8896660199837, 153.10593072 -27.8898286499837, 153.10605672 -27.8896869899838, 153.106855200001 -27.8891225999833, 153.107606310843 -27.8884084420304, 153.107605486388 -27.8884057177254, 153.107699918897 -27.8882502923314, 153.107702985028 -27.8882495597883, 153.10809288 -27.8877602699838, 153.10854 -27.8871631199838, 153.10859976 -27.8869904099838, 153.10899288 -27.8859651299838))\nAYCA-19PWB1\tLot 1032 Redgate Road\tUnder construction\tPOLYGON ((115.09022781127 -34.0292127594157, 115.090007839273 -34.0292091001379, 115.090037318285 -34.0299941550665, 115.089622127213 -34.0299902016492, 115.089785285246 -34.0303597866311, 115.089851668122 -34.0303801671965, 115.089790686836 -34.0309008841065, 115.089780823735 -34.0313828356501, 115.089417261069 -34.0313778037934, 115.089390439485 -34.0327209148713, 115.09115819746 -34.0327183136638, 115.091183496668 -34.0315996825091, 115.091104435839 -34.0314205568758, 115.09121799056 -34.0309930064421, 115.092251067815 -34.0308937264603, 115.094280210092 -34.0308575216578, 115.09429061189 -34.0300155993109, 115.09392187709 -34.0300078537536, 115.092980689211 -34.0300867569474, 115.091515604547 -34.030130136729, 115.091508367169 -34.0296692684293, 115.091624493688 -34.0291719058638, 115.091759506321 -34.0292059095763, 115.091960395795 -34.0292414549366, 115.092374675123 -34.0293094754884, 115.092775225669 -34.02931916173, 115.093371688626 -34.0292768786934, 115.093673297131 -34.0292207665398, 115.093796649975 -34.0292128813814, 115.093927130892 -34.0292291729146, 115.093956591415 -34.0290505263969, 115.093795029314 -34.0290303541371, 115.093687877624 -34.0289881608895, 115.09365116938 -34.0289494387696, 115.093589587891 -34.0289586324338, 115.09358594501 -34.0291214617195, 115.093366390111 -34.0291686776671, 115.092781040028 -34.0292110706391, 115.092377586625 -34.0292014904564, 115.091871150492 -34.0291095009064, 115.091927766955 -34.028888797666, 115.091854996182 -34.0288791738082, 115.091722873545 -34.0289475576447, 115.091718900085 -34.0289482854967, 115.091207396233 -34.0287787296384, 115.091046174714 -34.028688598353, 115.090789395794 -34.0286454110088, 115.090620604026 -34.0287057171753, 115.090249165946 -34.0286820035546, 115.09022781127 -34.0292127594157))\nAYCA-11PKDA\tMount Margaret\tReady for service\tPOLYGON ((146.599826077646 -19.3405234999658, 146.600011202476 -19.3392474292103, 146.600048928235 -19.3392523606346, 146.600217035069 -19.3380935748001, 146.598571237126 -19.3378794789863, 146.598571235636 -19.3378794889764, 146.598398482833 -19.3390372380188, 146.598359679292 -19.339032622879, 146.598267442291 -19.339563643344, 146.598314134299 -19.3395710578548, 146.598160977845 -19.3405786986208, 146.598316439693 -19.3419507396113, 146.598359884405 -19.3419510326834, 146.598320076364 -19.3424977894569, 146.59846602759 -19.3425212972609, 146.598411947893 -19.3427994161251, 146.598285147643 -19.3435797184797, 146.598325677267 -19.3436132007861, 146.598491304683 -19.3436580160682, 146.599470299417 -19.3436800724125, 146.5995826749 -19.3429652462856, 146.599853590575 -19.3430093662822, 146.600005769221 -19.3422034656033, 146.599826077646 -19.3405234999658))\nAYCA-XGZCF\tFrench Street Werrington\tContracted\tPOLYGON ((150.735713999989 -33.7607850000147, 150.735765999989 -33.7608150000148, 150.735996999989 -33.7609200000148, 150.736247999989 -33.7609830000147, 150.739846999989 -33.7614990000148, 150.739949999989 -33.7614790000148, 150.740003999989 -33.7614140000148, 150.740206999989 -33.7603520000148, 150.740041999989 -33.7603290000148, 150.738521999989 -33.7601070000148, 150.738377999989 -33.7601770000148, 150.737927999989 -33.7603070000148, 150.737644999989 -33.7596890000147, 150.737340999989 -33.7589110000148, 150.737453999989 -33.7584100000148, 150.735378999989 -33.7585740000147, 150.735038999989 -33.7586020000147, 150.734813999989 -33.7596810000148, 150.735141999989 -33.7597280000147, 150.735006999989 -33.7604060000148, 150.735183999989 -33.7604310000147, 150.735112999989 -33.7607540000147, 150.735172999989 -33.7607610000148, 150.735188999989 -33.7606830000147, 150.735251999989 -33.7606420000148, 150.735279999989 -33.7606450000148, 150.735360999989 -33.7606570000147, 150.735387999989 -33.7606620000147, 150.735414999989 -33.7606680000148, 150.735441999989 -33.7606750000148, 150.735493999989 -33.7606890000147, 150.735519999989 -33.7606980000147, 150.735569999989 -33.7607160000147, 150.735594999989 -33.7607260000148, 150.735619999989 -33.7607370000147, 150.735643999989 -33.7607480000147, 150.735667999989 -33.7607600000147, 150.735690999989 -33.7607720000148, 150.735713999989 -33.7607850000147))\nAYAA-FG08V\tHighfields North Estate\tReady for service\tPOLYGON ((151.942094713239 -27.4330973824287, 151.941985583149 -27.4340910206424, 151.942577485516 -27.434200135462, 151.944128602024 -27.4344023373556, 151.945933819434 -27.4345492849747, 151.947107552696 -27.4347030627409, 151.947026238329 -27.4352047729362, 151.947313305849 -27.4352425797236, 151.947242151389 -27.4356532027283, 151.947274540484 -27.4358741815765, 151.947186466965 -27.4362985122791, 151.948432099501 -27.4365331313708, 151.948538218727 -27.4361264300459, 151.94882882479 -27.4338627163468, 151.94737811798 -27.4337066590081, 151.946895858645 -27.4337365012545, 151.942094713239 -27.4330973824287))\nAYCA-13WQNT\tThe Fairways\tReady for service\tPOLYGON ((152.481257 -27.5270719999815, 152.48144 -27.5279599999814, 152.4815 -27.5281339999814, 152.48159 -27.5290499999815, 152.482317 -27.5290179999815, 152.481527904139 -27.5331587720508, 152.48257452 -27.5333147099809, 152.48265 -27.5331029999815, 152.48312 -27.5306409999814, 152.483766 -27.5271879999815, 152.48269 -27.5270319999815, 152.482732 -27.5268309999815, 152.481257 -27.5270719999815))\nAYCA-1UJIVI\tEden Park Estate\tUnder construction\tPOLYGON ((146.643857 -19.2357979999108, 146.643817 -19.2362139999108, 146.644241 -19.2362509999108, 146.644226 -19.2364039999108, 146.644464 -19.2364249999108, 146.644459 -19.2364809999108, 146.644505 -19.2364849999108, 146.64451 -19.2364289999108, 146.645142 -19.2364849999108, 146.64503 -19.2376249999108, 146.645064 -19.2376669999108, 146.644285 -19.2382159999109, 146.644663 -19.2382499999108, 146.6445511058 -19.2392085565207, 146.644919279836 -19.2394042188509, 146.64595806 -19.2383790299099, 146.646454 -19.2390039999109, 146.646447 -19.2390849999108, 146.646383 -19.2391429999108, 146.646476 -19.2392389999109, 146.646914 -19.2389219999108, 146.646843 -19.2388109999108, 146.646765 -19.2388559999108, 146.646681 -19.2388409999108, 146.646183 -19.2382199999108, 146.646952 -19.2376689999108, 146.646714 -19.2369589999107, 146.646827 -19.2363449999108, 146.646959 -19.2349949999108, 146.646233 -19.2349309999108, 146.646237 -19.2348799999108, 146.646191 -19.2348759999108, 146.646186 -19.2349279999108, 146.645948 -19.2349069999108, 146.645937 -19.2350199999108, 146.643947 -19.2348439999108, 146.643882 -19.2355279999108, 146.643832 -19.2355239999108, 146.643828 -19.2355669999108, 146.643878 -19.2355719999108, 146.643861 -19.2357549999108, 146.643832 -19.2357519999108, 146.643827 -19.2357959999108, 146.643857 -19.2357979999108))\n216\tMartha Cove\tReady for service\tPOLYGON ((145.00656717872238 -38.305508862891941, 145.00934594726363 -38.3047258825848, 145.01082652663789 -38.304927942828023, 145.01007550811082 -38.305601472906709, 145.01063340759063 -38.306106616361639, 145.01020425414532 -38.306796973394292, 145.00979655837088 -38.307133730538141, 145.00960343932363 -38.307066379234733, 145.00934594726363 -38.307756727131675, 145.00814431762026 -38.307622025619359, 145.00801557158579 -38.3077230517774, 145.00685685729326 -38.307554674768667, 145.00672811125875 -38.307150568354039, 145.00732892608045 -38.307049541398584, 145.00689977263511 -38.30624132068904, 145.00599855041156 -38.30556779655177, 145.00656717872238 -38.305508862891941))\nAYAA-GPFH1\tThe Ponds\tReady for service\tPOLYGON ((150.914964008876 -33.692786388454, 150.915339715868 -33.6941959472157, 150.91565199404 -33.6950567296203, 150.915756014582 -33.6952889934625, 150.915859248647 -33.695403763831, 150.916031100949 -33.695518808475, 150.91626286665 -33.6956524237684, 150.91634590563 -33.6959279722518, 150.916841323935 -33.6960848155545, 150.917750237218 -33.6958810432285, 150.918231688962 -33.6957748930151, 150.918678466616 -33.6956527248958, 150.918526523813 -33.6951990934403, 150.918350050606 -33.6952407393023, 150.917040125681 -33.692010074656, 150.914952202352 -33.692671961697, 150.914964008876 -33.692786388454))\nAYCA-HKY43\tEvans Park Industrial\tReady for service\tPOLYGON ((145.25217316435 -38.0918557555374, 145.252352131635 -38.0937029027822, 145.25502553832 -38.0939173722295, 145.255485956684 -38.0917255184005, 145.254839109685 -38.0916283625943, 145.254802266169 -38.0915114602206, 145.254837453686 -38.0914264441601, 145.255091008631 -38.0913179877408, 145.255280376605 -38.0912677829065, 145.255447770061 -38.0912490393163, 145.255587462111 -38.091242479177, 145.255663976613 -38.0908927906176, 145.254540190618 -38.0909495709887, 145.252183772346 -38.0906767405087, 145.25217316435 -38.0918557555374), (145.254120650953 -38.0926864860118, 145.254414738268 -38.0927260615739, 145.254387830456 -38.0928483988178, 145.254091028572 -38.0928070192977, 145.254120650953 -38.0926864860118))\n17322659\tLockhart River Subdivision\tCheck with carrier\tPOLYGON ((143.341381088 -12.779468007, 143.33979888 -12.782075045500001, 143.341139168 -12.783976013, 143.341275968 -12.784110027, 143.341590976 -12.7841229955, 143.343394912 -12.779987043, 143.341381088 -12.779468007))\nAYCA-1J5EEA\tLot 10,50 \u0026 700 Ocean Reef Gnangara\tUnder construction\tPOLYGON ((115.858690851779 -31.7877473878712, 115.85868092483 -31.7920819118736, 115.859463024732 -31.7920833083693, 115.860955544326 -31.7907506335753, 115.861301985059 -31.7903717628518, 115.861585345495 -31.7901080274157, 115.861836217749 -31.789757302786, 115.86203708454 -31.7893691606227, 115.862182271661 -31.7889036426855, 115.862215701785 -31.788641236896, 115.862024643585 -31.788640301455, 115.860869889682 -31.7886383928703, 115.860869331799 -31.7888839678841, 115.860435371501 -31.7888832479256, 115.860435331362 -31.7889008804606, 115.860413440138 -31.7889007125347, 115.860414079203 -31.7888786790885, 115.860224301459 -31.7888377628841, 115.860224677711 -31.7886726429525, 115.859426803494 -31.7886713140615, 115.859428164918 -31.7880760933729, 115.85908571031 -31.7880755214658, 115.859086727687 -31.7876314314528, 115.858827651508 -31.7876309981766, 115.858690851779 -31.7877473878712))\nAYAA-IGZL9\tTaylors Hill Estate\tReady for service\tPOLYGON ((144.739097452396 -37.7193046518177, 144.738942479989 -37.7201107800215, 144.740588824092 -37.7202872999735, 144.740521889264 -37.7206362018072, 144.740592698212 -37.7207944405057, 144.740530864867 -37.721064959932, 144.74095199999 -37.7211130000215, 144.741426160118 -37.7211850599422, 144.741374474772 -37.721567996865, 144.742449501997 -37.7217113296445, 144.742419644656 -37.7218671907339, 144.743418143053 -37.7219845685882, 144.743569155796 -37.7211105187121, 144.74362399849 -37.7211116881874, 144.743734226492 -37.7206566279265, 144.74462899999 -37.7207570000217, 144.744817136933 -37.7199818224277, 144.743907979584 -37.7198493150557, 144.743958924522 -37.7195164089979, 144.743403482197 -37.719449186258, 144.743405230737 -37.7194805393703, 144.742994558856 -37.7194279507689, 144.74296363837 -37.7194190174253, 144.741600048914 -37.7192619458365, 144.7414074903 -37.7193088940246, 144.741362105012 -37.7194479729564, 144.741208208034 -37.7195557867755, 144.739097452396 -37.7193046518177))\n10788\tWWP LBNCo\tReady for service\tPOLYGON ((151.07364177703857 -33.828184078700204, 151.07434988021851 -33.828576230404437, 151.07316970825195 -33.829966571952788, 151.07610940933228 -33.831624257324457, 151.07450008392334 -33.833299734605355, 151.07308387756348 -33.832533296945705, 151.07306241989136 -33.831677730510926, 151.07196807861328 -33.831053874587312, 151.0719895362854 -33.830394364803375, 151.07237577438354 -33.829663550721776, 151.07364177703857 -33.828184078700204))\n17321918\tOnslow Townsite Development\tCheck with carrier\tPOLYGON ((115.114884832 -21.646846974, 115.114854944 -21.646801982, 115.114663072 -21.6469369765, 115.114385888 -21.647162972500002, 115.114272128 -21.647265037, 115.114157984 -21.647389042500002, 115.113930112 -21.647631966000002, 115.113580928 -21.648221006, 115.114033088 -21.6487220415, 115.115069152 -21.64934403, 115.115622112 -21.6484839835, 115.116054848 -21.648740042, 115.11625392 -21.648803034500002, 115.116332032 -21.648576964500002, 115.116713984 -21.648772972, 115.120304992 -21.650003999, 115.120316864 -21.649947037500002, 115.12044288 -21.649652018, 115.119906848 -21.649452033, 115.11987696 -21.6494180115, 115.119960832 -21.6492020055, 115.119828 -21.649167984, 115.11739008 -21.648371041, 115.117485824 -21.648042, 115.117413824 -21.647724022000002, 115.117335008 -21.6477469805, 115.11726912 -21.647536025, 115.117364864 -21.6475080345, 115.117323104 -21.6473830115, 115.11719712 -21.6474229715, 115.117135904 -21.647150004, 115.117287104 -21.6471169815, 115.117134848 -21.646475013, 115.11684 -21.646524963, 115.116743872 -21.6466270275, 115.116491872 -21.646683008500002, 115.116468128 -21.646598038, 115.11543888 -21.646798023000002, 115.115150144 -21.6468819945, 115.11502992 -21.647000968, 115.114884832 -21.646846974))\nAYCA-DWNVE\tMaranda Heights\tReady for service\tPOLYGON ((148.150065640099 -23.56451394267, 148.150449700985 -23.5645736452843, 148.150634908097 -23.5645381798324, 148.1532585439 -23.564942519237, 148.15341450681 -23.5649457598532, 148.153800884863 -23.5650054338738, 148.153662790088 -23.5657653927021, 148.15375940656 -23.5657802941227, 148.153710906947 -23.5660475179015, 148.153688553079 -23.5660440719657, 148.153685378504 -23.5660619144899, 148.153716544855 -23.5661632913139, 148.15375478207 -23.5661687634497, 148.153732311578 -23.5662150891837, 148.153865373584 -23.5662362025245, 148.153985733082 -23.5662360635964, 148.1541179334 -23.5662937360291, 148.154307765426 -23.5663234027773, 148.15431406638 -23.5662848782465, 148.154406980783 -23.5662994702801, 148.154456276568 -23.5661875127624, 148.154656970472 -23.5650800707997, 148.155976904329 -23.5652838935409, 148.156078739962 -23.5651879497769, 148.156175125603 -23.5650627553474, 148.156442287763 -23.5648110017567, 148.156293895584 -23.5646188716433, 148.156145380358 -23.5646165156674, 148.155863807086 -23.5642608653206, 148.155915141618 -23.5640856420214, 148.156084749941 -23.5638101355491, 148.154789599126 -23.5636028914523, 148.154471103126 -23.5638297939529, 148.150299391121 -23.5631837369502, 148.150065640099 -23.56451394267), (148.150837820423 -23.5637709827387, 148.151165220456 -23.5638277257685, 148.151113683614 -23.5640731217168, 148.150734592095 -23.5640025349348, 148.150781795974 -23.5637912367015, 148.150805285211 -23.5637775076428, 148.150837820423 -23.5637709827387))\nAYCA-TZAP5\tFrizzo Road, Palmview\tReady for service\tPOLYGON ((153.03774225061 -26.7508125378843, 153.037338997745 -26.7509453465355, 153.037498949599 -26.751336792408, 153.037486304023 -26.7513395038987, 153.037341394565 -26.7513759701576, 153.037211444576 -26.7514440117263, 153.037183401406 -26.7514692435167, 153.03714253725 -26.751484863899, 153.037110255786 -26.7514765877426, 153.037016623152 -26.7515940756862, 153.037035928721 -26.7516188135469, 153.037029683998 -26.7516564309655, 153.036989952504 -26.7517866922739, 153.03698863327 -26.7519217438167, 153.037043426207 -26.7521880768183, 153.037090760604 -26.7523164512626, 153.037156365464 -26.7524392541694, 153.037253708791 -26.7525515287847, 153.037372249146 -26.7526381824204, 153.037499926493 -26.7527037601801, 153.037642356669 -26.7527385477593, 153.037791982747 -26.7527526074713, 153.038695126763 -26.7526698344927, 153.038847668988 -26.7526483652244, 153.038993821996 -26.7526159837388, 153.039135695713 -26.7525704950706, 153.039264585357 -26.7525131412792, 153.03940189119 -26.7524444325106, 153.039520390701 -26.7523654000557, 153.039652051631 -26.752303628619, 153.039793496338 -26.7522653150953, 153.03994757737 -26.7522626499617, 153.04009421714 -26.7522924058517, 153.040232410323 -26.7523528460523, 153.04035517107 -26.752419542269, 153.040503967445 -26.75246650305, 153.04064523221 -26.7524865584627, 153.040803005042 -26.752479926157, 153.040949326361 -26.7524484057012, 153.041078804896 -26.7523931585052, 153.041365820374 -26.7522435806698, 153.041597404332 -26.7519183525095, 153.041633825792 -26.7516039698818, 153.041620237167 -26.7514131289237, 153.041572424251 -26.7512694921183, 153.041489952469 -26.7511386995697, 153.041408360589 -26.7510584496003, 153.041342084732 -26.7510058764297, 153.041249704515 -26.7509482819623, 153.041227356208 -26.7509311471788, 153.041087390127 -26.7507452500765, 153.041062074422 -26.7506843114282, 153.041017278588 -26.7506397044588, 153.041003427322 -26.7506326612513, 153.040959442987 -26.7506102957134, 153.040908753975 -26.7505903070137, 153.040870145446 -26.7505432598073, 153.040815943059 -26.7504170308687, 153.040656640114 -26.7504333317386, 153.039872387567 -26.7504912107393, 153.039780101977 -26.7499544545324, 153.039605569603 -26.7498432439417, 153.039274844539 -26.7498883848455, 153.038978872516 -26.7500090196341, 153.03855766404 -26.7502104453077, 153.038786054712 -26.7505298686886, 153.03774225061 -26.7508125378843))\n221\tCanberra Centre\tReady for service\tPOLYGON ((149.13330946921718 -35.281321454784489, 149.13175378799019 -35.278851597086927, 149.13205419540103 -35.278553807736728, 149.13429652213335 -35.277572846839227, 149.13598094939485 -35.280331769078323, 149.13330946921718 -35.281321454784489))\n303\tRochedale\tUnder construction\tPOLYGON ((153.11353598593286 -27.585841634265535, 153.11306928156117 -27.588161844983617, 153.11418508051185 -27.588361532955862, 153.11402951239097 -27.589255369897867, 153.11455522535994 -27.58933619522028, 153.11477516649359 -27.588475640205303, 153.11644350050861 -27.588765662263317, 153.11692093371124 -27.586312336720376, 153.11353598593286 -27.585841634265535))\n1\tDFO Perth\tReady for service\tPOLYGON ((115.94954840593766 -31.940804813395204, 115.94935528688859 -31.940768395635867, 115.94920508318376 -31.940677351174383, 115.94886176042985 -31.940021828389209, 115.94729535036515 -31.937700147588767, 115.94732753687333 -31.9375362620222, 115.94744555406999 -31.9374087952684, 115.94840042047929 -31.936598466771187, 115.94846479349565 -31.936735039490355, 115.94865791254472 -31.937035498758242, 115.94895831995439 -31.937190280422044, 115.94955913477372 -31.937354166605513, 115.94977371149491 -31.937463423898812, 115.94994537287187 -31.937436109587665, 115.95008484774064 -31.937490738201856, 115.95015994959306 -31.937627309595261, 115.95017067842912 -31.937700147588767, 115.95139376573991 -31.939694065243287, 115.95128647737931 -31.939821528827814, 115.9511577313466 -31.939930783188142, 115.95075003557633 -31.940131082511435, 115.95051400118302 -31.940131082511435, 115.95036379747819 -31.940386008291537, 115.95021359377336 -31.940458844098831, 115.94954840593766 -31.940804813395204))\n4\tDFO Perth\tUnder construction\tPOLYGON ((115.94954840593766 -31.940804813395204, 115.94935528688859 -31.940768395635867, 115.94920508318376 -31.940677351174383, 115.94886176042985 -31.940021828389209, 115.94729535036515 -31.937700147588767, 115.94732753687333 -31.9375362620222, 115.94744555406999 -31.9374087952684, 115.94840042047929 -31.936598466771187, 115.94846479349565 -31.936735039490355, 115.94865791254472 -31.937035498758242, 115.94895831995439 -31.937190280422044, 115.94955913477372 -31.937354166605513, 115.94977371149491 -31.937463423898812, 115.94994537287187 -31.937436109587665, 115.95008484774064 -31.937490738201856, 115.95015994959306 -31.937627309595261, 115.95017067842912 -31.937700147588767, 115.95139376573991 -31.939694065243287, 115.95128647737931 -31.939821528827814, 115.9511577313466 -31.939930783188142, 115.95075003557633 -31.940131082511435, 115.95051400118302 -31.940131082511435, 115.95036379747819 -31.940386008291537, 115.95021359377336 -31.940458844098831, 115.94954840593766 -31.940804813395204))\nAYCA-1ESEJE\tJimboomba Woods\tReady for service\tPOLYGON ((153.046517 -27.8674779999843, 153.047292 -27.8676379999843, 153.047385 -27.8674379999843, 153.047662 -27.8669429999842, 153.047894 -27.8667659999843, 153.048394 -27.8674089999842, 153.048984 -27.8671069999842, 153.050357 -27.8664909999842, 153.050611 -27.8647039999842, 153.050562 -27.8644289999842, 153.04997 -27.8640809999842, 153.048955 -27.8637309999842, 153.04889 -27.8636609999842, 153.048754 -27.8636559999842, 153.049152 -27.8647029999842, 153.048096 -27.8647009999842, 153.047718 -27.8656059999842, 153.04732 -27.8658169999842, 153.046455 -27.8660269999842, 153.046649 -27.8666909999842, 153.046896 -27.8667799999843, 153.046517 -27.8674779999843))\nAYAA-EOFUR\tThe Village at Wellard\tReady for service\tPOLYGON ((115.825448154138 -32.267305140479, 115.825318073411 -32.2673799658144, 115.824483391086 -32.2675032922359, 115.824020494884 -32.2675295246805, 115.823297779952 -32.2676586620431, 115.822724782393 -32.2676273250088, 115.822527959937 -32.2679481525969, 115.822576128595 -32.2682929480174, 115.822468926391 -32.2683233851846, 115.822388585704 -32.2682755666419, 115.822237589087 -32.2673971506613, 115.82207462171 -32.267406061104, 115.822397039371 -32.2691206181421, 115.821622058215 -32.2695137421931, 115.821304819626 -32.2696489034671, 115.821131808278 -32.2697437470647, 115.821080879495 -32.2698605837195, 115.821023015246 -32.2700681588596, 115.820868176946 -32.2704297879314, 115.820512166682 -32.2709894994044, 115.820651966954 -32.2710284786131, 115.820747495892 -32.2708447315849, 115.820841806278 -32.2708424125916, 115.820935068912 -32.2708302029538, 115.820990068174 -32.2708144729134, 115.821039716981 -32.2707889639871, 115.821097356526 -32.2707476691503, 115.821150380892 -32.2707019503021, 115.821333485855 -32.2708187426637, 115.821450533689 -32.2707465424367, 115.822160414502 -32.2712350390111, 115.822631821452 -32.2716070965358, 115.822674000257 -32.2715954232431, 115.82284851002 -32.2715314621788, 115.822735311253 -32.2714422480086, 115.822853999999 -32.2711990000124, 115.822909999999 -32.2711400000123, 115.823229999999 -32.2713640000125, 115.823283999999 -32.2713050000125, 115.823317999999 -32.2707740000124, 115.823310999999 -32.2707260000124, 115.823213999999 -32.2703560000119, 115.823120373442 -32.2700625972209, 115.823021111382 -32.2700772102469, 115.822914893564 -32.2697472258825, 115.823049179611 -32.2697203248841, 115.822880376374 -32.2690856399065, 115.822852469075 -32.2688606925828, 115.823216456629 -32.2688258447616, 115.823205760484 -32.268731417847, 115.823351764258 -32.2687185521809, 115.823362313184 -32.2686783982199, 115.824394366192 -32.2685667894419, 115.824428907715 -32.268835839173, 115.824553303904 -32.2688246577551, 115.824589135037 -32.2687849775746, 115.824561549201 -32.2686070464961, 115.824633266058 -32.2685992610553, 115.824667864683 -32.2687541303507, 115.824703710865 -32.2688380910895, 115.824760085121 -32.2688297758899, 115.824757171018 -32.2687251790065, 115.825105974105 -32.2686936630111, 115.825380334941 -32.268956807801, 115.825576999999 -32.2688400000125, 115.826263999999 -32.2685660000123, 115.826127999999 -32.2682960000123, 115.826054999999 -32.2679180000124, 115.826238999999 -32.2673050000123, 115.826233999999 -32.2672280000124, 115.825696255448 -32.2672241102793, 115.825448154138 -32.267305140479))\nAYCA-1MFJ8K\tTindal Avenue, Beeliar\tContracted\tPOLYGON ((115.808275026027 -32.1325105806847, 115.805730142837 -32.1325187418212, 115.805739991575 -32.1360607664772, 115.807427054823 -32.1360754027696, 115.807927530795 -32.1360745564477, 115.807927521795 -32.1361683153306, 115.80816064158 -32.136168331321, 115.808203712187 -32.1343991552137, 115.808203412073 -32.1336958430864, 115.808203305415 -32.1334460152042, 115.808253727292 -32.1334469960506, 115.808270931464 -32.1329093130109, 115.808275026027 -32.1325105806847))\n10105\tBaldivis-Tuart Ridge\tReady for service\tPOLYGON ((115.82120776176453 -32.338481281482558, 115.82126140594482 -32.3388257441078, 115.81986665725708 -32.338789484945835, 115.82015633583069 -32.339496535983677, 115.81992030143738 -32.33950786688483, 115.81865966320038 -32.339503334524537, 115.81861943006516 -32.339217795368782, 115.81827342510223 -32.339220061556105, 115.81828147172928 -32.3393175075573, 115.81803202629089 -32.339856857945314, 115.81777185201645 -32.339770743393125, 115.81771552562714 -32.339893116679612, 115.81755459308624 -32.339836462400896, 115.81731051206589 -32.340378075854225, 115.81725150346756 -32.340502714474624, 115.81727832555771 -32.340516311404649, 115.81715494394302 -32.340783717279869, 115.81674993038177 -32.340645482137951, 115.81648975610733 -32.341207485989138, 115.81696182489395 -32.341352518674462, 115.81690818071365 -32.341468091429157, 115.81726491451263 -32.341610857569371, 115.81778258085251 -32.341871461847674, 115.81782013177872 -32.341826139418416, 115.81808567047119 -32.341996098411109, 115.81841826438904 -32.341687905868945, 115.81876426935196 -32.3413389218701, 115.81900298595428 -32.341110042023139, 115.81928730010986 -32.340874363159926, 115.81975668668747 -32.340650014441024, 115.82011342048645 -32.340538972950142, 115.82008928060532 -32.340484585231415, 115.82055598497391 -32.340348615791605, 115.82077860832214 -32.34031235723981, 115.82104682922363 -32.3408381048188, 115.82196950912476 -32.340684006706923, 115.82152962684631 -32.338435957355323, 115.82120776176453 -32.338481281482558))\nAYAA-F614T\tArise\tReady for service\tPOLYGON ((153.119916821364 -27.5771672189534, 153.120828675565 -27.5773147032521, 153.120848099265 -27.5772121832521, 153.121222908166 -27.5772697464516, 153.121378424166 -27.5771646187514, 153.121337222466 -27.5771128073514, 153.121387141366 -27.5771203548513, 153.121395150666 -27.5770776033515, 153.122486012568 -27.5772421196498, 153.122889968169 -27.5751188978495, 153.122096056668 -27.5749981835506, 153.121917615267 -27.5750289693508, 153.121418389066 -27.5746563062515, 153.121348957066 -27.5745102823516, 153.121126899966 -27.5743155688521, 153.121157171666 -27.574288262452, 153.121204274266 -27.574038094352, 153.120954545765 -27.5740002081523, 153.120805347865 -27.5740075543525, 153.120469296864 -27.5739567935529, 153.120459804764 -27.5740074426529, 153.120120147764 -27.5739561602535, 153.119983928763 -27.5739177748536, 153.119685540463 -27.5738724753541, 153.119644994463 -27.5740853012541, 153.119700978063 -27.5742217213539, 153.119648727163 -27.5744970426541, 153.118762152761 -27.5743630290553, 153.118709752861 -27.5746350422554, 153.118617752599 -27.5751343294705, 153.118681962161 -27.5754236787552, 153.118613752061 -27.5757871404553, 153.118594469961 -27.5759124294554, 153.119519578763 -27.5760502726541, 153.119626613863 -27.5760813415539, 153.120164158364 -27.5763205126533, 153.120123209964 -27.5765334800532, 153.120082432864 -27.5767465293533, 153.119971761964 -27.5768762141533, 153.119916821364 -27.5771672189534), (153.120227674564 -27.5745843559533, 153.120008076064 -27.5745512456535, 153.120024812527 -27.5744624109433, 153.120038958763 -27.5744143188535, 153.120062539864 -27.5743692726535, 153.120094785964 -27.5743287191534, 153.120125365527 -27.574308683143, 153.120169227127 -27.574298237343, 153.120214630928 -27.5742992357429, 153.120279448887 -27.5743090106349, 153.120227674564 -27.5745843559533), (153.12011953397 -27.5739594288849, 153.120459386045 -27.5740096742942, 153.120423147964 -27.574202811753, 153.120292837264 -27.5741831496532, 153.120238820564 -27.5741704687533, 153.120188208764 -27.5741493985534, 153.120142633564 -27.5741206169534, 153.120120080664 -27.5740933552534, 153.120108278964 -27.5740542844535, 153.120109314564 -27.5740138501534, 153.12011953397 -27.5739594288849), (153.121461453466 -27.5753014371514, 153.121518688766 -27.5752999246514, 153.121869432267 -27.5753531217509, 153.121806750567 -27.5756862223509, 153.121676268567 -27.5756968245511, 153.121545719467 -27.5757113755513, 153.121381101 -27.5757289884772, 153.121461453466 -27.5753014371514), (153.118615003226 -27.5757873271808, 153.118684328764 -27.5754240353171, 153.119086118962 -27.5754864797547, 153.119211705862 -27.5755102917546, 153.119339140662 -27.5755427092545, 153.119485052762 -27.5755879789542, 153.119425291662 -27.5759082496542, 153.118615003226 -27.5757873271808), (153.118817920361 -27.5751646966551, 153.118884670161 -27.574808111855, 153.120073551764 -27.5749883339534, 153.119979979963 -27.5754880443535, 153.119861478463 -27.5754353315537, 153.119737538063 -27.5753839970539, 153.119612770663 -27.575336797554, 153.119491832863 -27.5752971828542, 153.119393991762 -27.5752705172543, 153.119210737362 -27.5752283618546, 153.119067619162 -27.5752025008547, 153.118942769761 -27.5751835987549, 153.118817920361 -27.5751646966551))\nAYCA-145346\tL107 Exploration Drive Multi-User Site\tReady for service\tPOLYGON ((116.768744493333 -20.7552641658172, 116.76863538 -20.7552741299222, 116.76864672 -20.7553645799222, 116.76759498 -20.7554407199223, 116.76753054 -20.7547362899222, 116.76469626 -20.7549575999223, 116.76434058 -20.7571769999223, 116.76861504 -20.7568432799222, 116.768884242911 -20.7568161775159, 116.768874993707 -20.7567473028615, 116.768744493333 -20.7552641658172))\n17262882\tEastside Subdivision\tCheck with carrier\tPOLYGON ((142.182113056 -34.1966919555, 142.182006848 -34.196779978500004, 142.181884096 -34.196882043, 142.18176096 -34.196983016000004, 142.18163712 -34.197084988, 142.181512928 -34.19718696, 142.181516896 -34.1971900125, 142.181703008 -34.197345986, 142.18185312 -34.197471009000004, 142.182002176 -34.1975950145, 142.18214112 -34.197712027, 142.182294112 -34.197839991500004, 142.182437056 -34.1979589835, 142.18252704 -34.198032965, 142.18252992 -34.1980360175, 142.182612 -34.198104967, 142.18280208 -34.198263993, 142.182893888 -34.198341027, 142.183023136 -34.198448031, 142.18304688 -34.198468011, 142.183052992 -34.198472969, 142.18306416 -34.1984819785, 142.183076032 -34.1984919685, 142.18313184 -34.198463978, 142.183186912 -34.198434008, 142.183240928 -34.198403039, 142.183294912 -34.1983700165, 142.183347136 -34.1983369755, 142.183361888 -34.1983269855, 142.183767968 -34.1980559975, 142.183769056 -34.1980559975, 142.183770112 -34.198055017, 142.183815136 -34.198025047, 142.183878112 -34.197985975, 142.183941856 -34.197947014, 142.184007008 -34.197910014, 142.184072896 -34.1978730325, 142.18413984 -34.197838012, 142.184207872 -34.1978049895, 142.184216896 -34.1978000315, 142.184276992 -34.197771967, 142.184346112 -34.197740998, 142.184417056 -34.197711028, 142.184487968 -34.1976819645, 142.184559968 -34.1976549545, 142.184631968 -34.197629036, 142.184706112 -34.197604024, 142.184779936 -34.197580973, 142.18485408 -34.197559013500005, 142.18492896 -34.1975379605, 142.185004928 -34.197518961, 142.185080896 -34.197500979000004, 142.18515792 -34.197483959, 142.185234976 -34.197469011, 142.185312 -34.1974559685, 142.185389056 -34.1974430185, 142.185467872 -34.1974320295, 142.185546016 -34.1974230385, 142.185624128 -34.197415028, 142.185702976 -34.197407998, 142.185782176 -34.197402966, 142.185860992 -34.197399007, 142.185888 -34.197399007, 142.18593984 -34.1973970275, 142.18601904 -34.1973960285, 142.186097888 -34.1973970275, 142.186177088 -34.197399007, 142.186255936 -34.197402966, 142.186335136 -34.1974070175, 142.186413952 -34.197414029, 142.186492096 -34.197422039500005, 142.186250176 -34.1971129785, 142.185870016 -34.196627964, 142.185705856 -34.196418988, 142.185535936 -34.1962020015, 142.185153952 -34.195714027, 142.184859136 -34.1953370155, 142.184680928 -34.19518896, 142.18395696 -34.195167981000004, 142.183955168 -34.195169979, 142.18353216 -34.1955189815, 142.183425952 -34.195607004500005, 142.18331904 -34.1956950275, 142.183081088 -34.195892034, 142.182606976 -34.1962839935, 142.18252992 -34.196346986, 142.182368992 -34.196481, 142.182207008 -34.196614015, 142.182113056 -34.1966919555))\n10589\tSecret Harbour\tReady for service\tPOLYGON ((115.76955780386925 -32.409270157117767, 115.7699091732502 -32.409290289326037, 115.76992258429527 -32.40913008069716, 115.77007010579109 -32.409144799522984, 115.77006205916405 -32.409258587287781, 115.77069640159607 -32.409252360100375, 115.77087007462978 -32.409248963452526, 115.77120669186115 -32.409245000696529, 115.77127274125814 -32.4092435854265, 115.77127374708652 -32.409252926208339, 115.77148497104645 -32.409254058424253, 115.77148430049419 -32.409242736264467, 115.77171161770821 -32.409239339616242, 115.77208042144775 -32.409234810751762, 115.77260211110115 -32.409227168292439, 115.77300578355789 -32.409222922481412, 115.77300243079662 -32.409111399107083, 115.77358044683933 -32.409103473582846, 115.77358312904835 -32.409061581514635, 115.77423959970474 -32.409065544278668, 115.77426575124264 -32.409400114158224, 115.77426441013813 -32.4094420060693, 115.77398613095284 -32.410345791010435, 115.77388890087605 -32.410669175687843, 115.7736823707819 -32.411276173382319, 115.77306613326073 -32.411124459722465, 115.77295750379562 -32.411122478385657, 115.77288307249546 -32.41112488429463, 115.77267788350582 -32.411128422395933, 115.77263899147511 -32.411125025818677, 115.77174313366413 -32.411136347742342, 115.77158220112324 -32.411136913838483, 115.77158086001873 -32.411044074023216, 115.77070243656635 -32.411057660343594, 115.77069908380508 -32.410906512413987, 115.7706568390131 -32.410858394106121, 115.77044829726219 -32.410762157413416, 115.76980590820312 -32.410590629406656, 115.76917424798012 -32.410420799375807, 115.76923459768295 -32.410282670715048, 115.76905153691769 -32.410233419870934, 115.76893150806427 -32.410170582548062, 115.76891407370567 -32.410124162155306, 115.76891340315342 -32.410036982328776, 115.76899655163288 -32.40987734112943, 115.76942637562752 -32.409992826280615, 115.7695222645998 -32.409744872685827, 115.7695484161377 -32.409427853398817, 115.7695584744215 -32.409271855441311, 115.76955780386925 -32.409270157117767))\nAYCA-FUHRO\tCaddens Release\tReady for service\tPOLYGON ((150.721273265564 -33.7747377813714, 150.726012694561 -33.7754015391729, 150.726219940141 -33.7743367046131, 150.72601078597 -33.7743077238268, 150.726182455173 -33.7733582071396, 150.726347064077 -33.7730033875498, 150.726771145494 -33.7728206521547, 150.72670087513 -33.772633438814, 150.726200229289 -33.7725944701075, 150.725960837501 -33.7725695057873, 150.725891063354 -33.7729305077645, 150.72401266329 -33.7726778479401, 150.722885999138 -33.7738315816357, 150.721273265564 -33.7747377813714))\nAYCA-RNFCZ\tRIVERSTONE RISE\tReady for service\tPOLYGON ((151.317210217489 -23.9719377242301, 151.317353660321 -23.9730404480024, 151.317480194746 -23.9740131757588, 151.318631494938 -23.9738867215956, 151.318598255374 -23.9736312125935, 151.319822727157 -23.9734967115934, 151.319773958258 -23.9731218562949, 151.319781450218 -23.9730652405727, 151.319822927231 -23.9730246307067, 151.319951328443 -23.9729713157524, 151.31998379509 -23.9728922933657, 151.319908262028 -23.9727565869693, 151.319964132974 -23.9726205993356, 151.320144038867 -23.9724945863786, 151.320381426038 -23.9724828680598, 151.320152769006 -23.9722072337628, 151.320030195564 -23.9720594771823, 151.319729249484 -23.9716966989195, 151.319704977661 -23.9716544280384, 151.319697005063 -23.9716071989588, 151.319706200389 -23.9715601578974, 151.319731561674 -23.9715184305784, 151.319770325472 -23.9714865637219, 151.319795084681 -23.9714721715945, 151.319973689387 -23.9717316075682, 151.321078119522 -23.9710896123204, 151.32114746676 -23.9710160297126, 151.321310999999 -23.9699019999497, 151.321082150945 -23.9698736342337, 151.320980440252 -23.969992478982, 151.32060763668 -23.9701336977333, 151.320203000231 -23.9698419998228, 151.319846012286 -23.969990205523, 151.318666000231 -23.9715019998231, 151.318477960376 -23.9715316610849, 151.318038691375 -23.9715739282206, 151.318073678948 -23.9718428851656, 151.317210217489 -23.9719377242301))\n10329\tDudley Park-Mariner\u0027s Cove\tReady for service\tPOLYGON ((115.7272070646286 -32.549843745908419, 115.72719633579254 -32.550133140331255, 115.72722047567368 -32.550173377104, 115.72726339101791 -32.550175637993256, 115.72724997997284 -32.550510248973175, 115.72723388671875 -32.550826771725077, 115.72723120450974 -32.550919467462542, 115.72708368301392 -32.55091042398017, 115.72703540325165 -32.5512947711773, 115.72703540325165 -32.551572856652612, 115.7270810008049 -32.55195267932443, 115.72725266218185 -32.551961722701783, 115.72724461555481 -32.552431977068807, 115.72723388671875 -32.552705537369967, 115.72722852230072 -32.553062747086514, 115.72720170021057 -32.553496822803289, 115.7271708548069 -32.553478506743893, 115.7254958152771 -32.55338876329759, 115.7254421710968 -32.553422216188871, 115.72538316249847 -32.553428998610933, 115.72490036487579 -32.553361174367311, 115.72484403848648 -32.553338566274725, 115.72483867406845 -32.552685189938252, 115.72484940290451 -32.552196850193276, 115.72486013174057 -32.55158642177571, 115.72487622499466 -32.551120684709566, 115.7248654961586 -32.550453726935743, 115.72485744953156 -32.550047226459355, 115.7244873046875 -32.550038182889104, 115.72450339794159 -32.549735222759324, 115.72507202625275 -32.549766875358024, 115.72547435760498 -32.5497759189556, 115.72584450244904 -32.549798527945576, 115.72626292705536 -32.549807571539958, 115.72661161422729 -32.549821136929843, 115.72681277990341 -32.549822938583034, 115.72700589895248 -32.549831982174958, 115.7272070646286 -32.549843745908419))\nAYCA-JWNIP\tRedbank Motorway Estate\tReady for service\tPOLYGON ((152.876343356434 -27.5859849493714, 152.876350637508 -27.5859439645208, 152.876345044432 -27.5859044755365, 152.876325799075 -27.5858650076588, 152.876293108243 -27.5858414816003, 152.876194282954 -27.5857926552727, 152.875648144462 -27.5855342035497, 152.875487511661 -27.5854867516761, 152.875326780988 -27.5854563714511, 152.874136456738 -27.5852943730488, 152.874072 -27.5852879999806, 152.8739019815 -27.5852654991447, 152.873699196955 -27.5864163661696, 152.873531759234 -27.587366477884, 152.873442834494 -27.5873675249915, 152.873065442113 -27.5895211234799, 152.872957551849 -27.5900643778261, 152.873210201268 -27.5898782776481, 152.8734770227 -27.5883907399914, 152.873628963471 -27.5875288157524, 152.87372497423 -27.5875424464503, 152.873704090787 -27.5885609606531, 152.875042752733 -27.5887775994465, 152.875844979242 -27.5889071342686, 152.876343356434 -27.5859849493714))\n17201178\tPacific Pines\tCheck with carrier\tPOLYGON ((153.301434848 -27.9312569955, 153.303329152 -27.932397021, 153.303653152 -27.9340190085, 153.303927136 -27.933956016, 153.30403584 -27.933906954, 153.30490992 -27.933388029, 153.304777088 -27.9330139775, 153.304674112 -27.932910026000002, 153.304639936 -27.9328439625, 153.304733888 -27.932709967, 153.304956 -27.932707987500002, 153.304967872 -27.932247004500002, 153.304827136 -27.9319899655, 153.304584832 -27.931346998000002, 153.304485856 -27.9309599965, 153.30424896 -27.9303599675, 153.30414816 -27.929914025000002, 153.303869888 -27.9292629545, 153.303307936 -27.928373049, 153.303064928 -27.927929974, 153.302846048 -27.927777959500002, 153.302658112 -27.927776979, 153.302385952 -27.9276560075, 153.302303872 -27.9275900365, 153.302169952 -27.9273369565, 153.302020928 -27.9271929525, 153.301299136 -27.926929975, 153.301170976 -27.9273040265, 153.301336928 -27.927727029, 153.30134016 -27.927734040500003, 153.301956832 -27.928177023, 153.302133952 -27.928304007, 153.302139008 -27.928308965, 153.302140096 -27.928310038, 153.302142976 -27.9283120175, 153.302451136 -27.928611995, 153.302473088 -27.928643038, 153.302906176 -27.929247026000002, 153.303255008 -27.929782971, 153.303449056 -27.930066021000002, 153.303819136 -27.9312769755, 153.30379104 -27.9312769755, 153.301434848 -27.9312569955))\n10047\tAustralind-Galway Green\tReady for service\tPOLYGON ((115.7270622253418 -33.256031656316637, 115.73226571083069 -33.255986797516393, 115.73226571083069 -33.255816333865404, 115.7324481010437 -33.255798390303852, 115.73245882987976 -33.255995769278279, 115.73382675647736 -33.255989040456953, 115.73331445455551 -33.256525101599237, 115.73325008153915 -33.256527344525978, 115.7333117723465 -33.25660360400088, 115.73333591222763 -33.256771823195464, 115.73328763246536 -33.2569691999708, 115.73322862386703 -33.257094803141115, 115.73310792446136 -33.257189005400356, 115.73265463113785 -33.2569691999708, 115.73274582624435 -33.256818924511904, 115.73054105043411 -33.256834624945071, 115.73007166385651 -33.256892940814993, 115.7300877571106 -33.2570118153524, 115.72972297668457 -33.257014058266634, 115.72973906993866 -33.257224891948589, 115.72961837053299 -33.257229377766073, 115.72960764169693 -33.257561327621374, 115.72964787483215 -33.257686929940412, 115.72955667972565 -33.258122050863619, 115.72884321212769 -33.257900004890089, 115.72852402925491 -33.257886547540217, 115.72851866483688 -33.257810289185137, 115.72763353586197 -33.257823746546755, 115.72758257389069 -33.257606185613191, 115.72740823030472 -33.257617400107549, 115.72745114564896 -33.25775645971796, 115.72710782289505 -33.257763188403175, 115.72704881429672 -33.257536655716059, 115.7266840338707 -33.257583756620164, 115.7266303896904 -33.25729666500083, 115.72663843631744 -33.257045459060031, 115.72675108909607 -33.256895183732304, 115.7268825173378 -33.25679873823654, 115.72711586952209 -33.256724721853629, 115.7270622253418 -33.256031656316637))\n10698\tWannanup-Port Bouvard North\tReady for service\tPOLYGON ((115.64583957195282 -32.592031217603768, 115.64582347869873 -32.592428947571733, 115.64568400382996 -32.592885430927581, 115.64547479152679 -32.59327863749872, 115.64514756202698 -32.593563372214589, 115.64571619033813 -32.594114760679325, 115.64506709575653 -32.594526040029962, 115.64524412155151 -32.594878563685249, 115.64530313014984 -32.595118098198149, 115.64517438411713 -32.595461580533225, 115.6461238861084 -32.596021996253327, 115.64835548400879 -32.59334191195822, 115.64782440662384 -32.592944186042104, 115.64795851707458 -32.592266240070913, 115.64726114273071 -32.591918225813629, 115.64670324325562 -32.591800714200772, 115.6446647644043 -32.591818792920471, 115.64454138278961 -32.591913706139053, 115.64454674720764 -32.59206285527948, 115.64583957195282 -32.592031217603768))\n10327\tDudley Park-Mariner\u0027s Cove\tReady for service\tPOLYGON ((115.73215842247009 -32.550530596897936, 115.73214501142502 -32.550320334786285, 115.73201358318329 -32.55025929085518, 115.73141276836395 -32.550297725927749, 115.73134034872055 -32.550275117063528, 115.73103994131088 -32.550220855766135, 115.7307904958725 -32.55010781129122, 115.73046326637268 -32.549951809682057, 115.73031842708588 -32.549872678327382, 115.73004215955734 -32.549827460379106, 115.73000192642212 -32.550157550877721, 115.73012799024582 -32.550180159771578, 115.73014408349991 -32.550758945515049, 115.73018699884415 -32.550788336879016, 115.73019504547119 -32.550894597883833, 115.73014944791794 -32.550919467462542, 115.73014944791794 -32.551068684790074, 115.73011994361877 -32.551095815186613, 115.7300877571106 -32.55108903258823, 115.73009043931961 -32.551267640840912, 115.73003947734833 -32.551274423425781, 115.72996437549591 -32.551672334174384, 115.72997510433197 -32.55201146126096, 115.7299268245697 -32.552027287160371, 115.72992950677872 -32.552183285162428, 115.72988659143448 -32.552235284436193, 115.72988927364349 -32.552407107909183, 115.7299080491066 -32.552780144580112, 115.72994828224182 -32.552811796105082, 115.72998583316803 -32.553569168551981, 115.73045790195465 -32.553551541346124, 115.73070466518402 -32.553560584562376, 115.730881690979 -32.553551541346124, 115.73092997074127 -32.553510846861663, 115.73211014270782 -32.553438501065976, 115.73217451572418 -32.553402328146248, 115.73268413543701 -32.553370676829537, 115.73274314403534 -32.553313697366292, 115.73278874158859 -32.553241351411678, 115.73276460170746 -32.553139614814334, 115.73262512683868 -32.55147157740052, 115.73267340660095 -32.551421838542169, 115.73257148265839 -32.551277143524779, 115.73257684707642 -32.551213839381312, 115.73246955871582 -32.551100336918559, 115.73246687650681 -32.55103251091527, 115.7324293255806 -32.551016684840448, 115.73238641023636 -32.551016684840448, 115.73235690593719 -32.551034771782867, 115.73219060897827 -32.550957902252442, 115.73215842247009 -32.550530596897936))\nAYCA-ROJ8T\tThe Meadows\tUnder construction\tPOLYGON ((153.312236 -27.8279519999839, 153.312224 -27.8280079999839, 153.312305 -27.8292099999839, 153.312352 -27.829217999984, 153.312346 -27.8292529999839, 153.312342 -27.8294249999839, 153.312418 -27.8299219999839, 153.312427 -27.8299559999839, 153.312439 -27.8299789999839, 153.312421 -27.8299849999839, 153.312476 -27.830144999984, 153.312536 -27.830276999984, 153.31261 -27.830402999984, 153.312703 -27.8305909999839, 153.312621 -27.830589999984, 153.312594 -27.8308329999839, 153.312689 -27.830835999984, 153.312871 -27.8308659999839, 153.312824 -27.8310969999839, 153.315065 -27.831459999984, 153.315109 -27.831243999984, 153.315106 -27.831208999984, 153.315081 -27.831177999984, 153.315046 -27.831162999984, 153.314922 -27.8311429999839, 153.314953 -27.8309919999839, 153.315077 -27.831011999984, 153.315116 -27.8310089999839, 153.315151 -27.8309879999839, 153.315168 -27.8309559999839, 153.315325 -27.8303249999839, 153.315401 -27.829985999984, 153.31546 -27.8297989999839, 153.315536 -27.8295939999839, 153.315875 -27.8288379999839, 153.313215 -27.8283859999839, 153.313269 -27.8281189999839, 153.312236 -27.8279519999839))\nAYCA-EOU5T\tHidden Valley Northern Paddock\tUnder construction\tPOLYGON ((144.994662359996 -37.3869390600181, 144.994504276507 -37.3864532528365, 144.994799548924 -37.3864001516098, 144.995406685822 -37.3862873316946, 144.995801382836 -37.3855815057325, 144.996094365367 -37.385704153098, 144.99637045373 -37.3854372162676, 144.996505946911 -37.3855311672281, 144.996613959466 -37.3860543779565, 144.997507743031 -37.3858755861791, 144.998174821367 -37.3848801715939, 144.996205788907 -37.3840073047145, 144.996295709755 -37.3839049332708, 144.996103506117 -37.3837775540177, 144.996012346604 -37.3838680796234, 144.994781645189 -37.3833717732658, 144.993943800187 -37.384202969967, 144.994167706654 -37.3841478866612, 144.994405832137 -37.3843359541822, 144.993585673334 -37.3850458868369, 144.993454895472 -37.38574886135, 144.994662359996 -37.3869390600181))\nAYCA-1RO4RX\tWindradyne\tContracted\tPOLYGON ((149.54138000004 -33.4027119999957, 149.54085600004 -33.4027099999957, 149.54084300004 -33.4025979999957, 149.54057000004 -33.4025789999958, 149.54006300004 -33.4024759999958, 149.53962300004 -33.4022729999958, 149.53919500004 -33.4020939999958, 149.53876700004 -33.4019859999958, 149.53833500004 -33.4019349999958, 149.53833500004 -33.4023369999958, 149.537609754388 -33.4023449917098, 149.53761900002 -33.4024240000077, 149.53765500002 -33.4025520000077, 149.53770000002 -33.4026580000078, 149.53773600002 -33.4027260000077, 149.53780400002 -33.4028290000078, 149.53829200002 -33.4035540000078, 149.53832200002 -33.4036200000078, 149.53835700002 -33.4037320000077, 149.53837200002 -33.4038530000077, 149.53838500002 -33.4041730000078, 149.53884100002 -33.4042380000077, 149.53942600002 -33.4043090000077, 149.53988700002 -33.4043630000077, 149.54021700002 -33.4044260000077, 149.54049800002 -33.4045000000077, 149.54079800002 -33.4046080000077, 149.54109400002 -33.4047310000077, 149.54133400002 -33.4048140000077, 149.54159700002 -33.4048820000077, 149.54184500002 -33.4049220000077, 149.54210000002 -33.4049500000077, 149.54229500002 -33.4049580000077, 149.54233600002 -33.4041020000077, 149.54209600002 -33.4035900000076, 149.54205900002 -33.4034900000076, 149.541929000061 -33.4028599999836, 149.54139700004 -33.4029049999956, 149.54138000004 -33.4027119999957))\nAYCA-LQAF8\tRIVERSTONE RISE\tReady for service\tPOLYGON ((151.318411370725 -23.9673324937224, 151.318283842933 -23.9672674726983, 151.317901938866 -23.9671207911469, 151.316495642162 -23.9677205718899, 151.316464543652 -23.9701138190548, 151.31807951702 -23.9712809233917, 151.318089548389 -23.97135801994, 151.317899314257 -23.9713789150491, 151.31792613781 -23.9715851153892, 151.317966999999 -23.9715829999485, 151.318036989005 -23.9715726122816, 151.318477960144 -23.9715316612104, 151.318665999999 -23.9715019999486, 151.31984601228 -23.9699902053581, 151.319473737633 -23.9697211781954, 151.319540552984 -23.9696431087797, 151.31935470561 -23.9695036350177, 151.318918067982 -23.969342688696, 151.318535725693 -23.9689223733835, 151.318570815272 -23.9688346919481, 151.318298699774 -23.9687410792836, 151.318086198453 -23.9686827701138, 151.318053432857 -23.968666155426, 151.317808402742 -23.9685429818318, 151.31824862408 -23.9676453860492, 151.318321150017 -23.9676732415899, 151.318427343287 -23.9673690787241, 151.318411370725 -23.9673324937224))\nAYCA-SG61Y\tAlkira Estate\tContracted\tPOLYGON ((150.764230999955 -34.4891840000067, 150.765049079979 -34.4892979800156, 150.76532087998 -34.487879490011, 150.76534899999 -34.4877680000175, 150.76697852026 -34.4879941009709, 150.76709675999 -34.4873602800171, 150.76718855999 -34.4868673500171, 150.76723139999 -34.4866131000171, 150.76726703999 -34.4864007900171, 150.76731059999 -34.4861428500171, 150.76734551999 -34.4858642100172, 150.76746827999 -34.4848906800171, 150.76747907999 -34.4847365100172, 150.767497474193 -34.4844698522354, 150.76543535999 -34.4843172000172, 150.764898704374 -34.4877061505123, 150.764510250565 -34.4876574777893, 150.764230999955 -34.4891840000067))\nAYCA-JKJE1\tForest Springs\tReady for service\tPOLYGON ((151.247395773332 -23.8968782658962, 151.246791573401 -23.8979437301582, 151.246769988217 -23.8981297406771, 151.246733868681 -23.8994233541929, 151.24630044574 -23.9005438962045, 151.246904949619 -23.9016036527917, 151.247321465725 -23.9014027719047, 151.247161803028 -23.9011182146193, 151.24730666928 -23.9010543629944, 151.247218309681 -23.9009341017955, 151.24717754287 -23.9008328964392, 151.247307922435 -23.9007717096997, 151.247452684819 -23.9010260552318, 151.24781914609 -23.9008507133603, 151.247987752754 -23.9007286868573, 151.248165939093 -23.9005374118895, 151.248270201888 -23.9003631756754, 151.248741087692 -23.9005523286766, 151.248837034024 -23.9002924006773, 151.248886845062 -23.9000169958542, 151.248899565295 -23.8996801678766, 151.248941396072 -23.8994253247417, 151.248999529314 -23.8992244913267, 151.249102372722 -23.8989517823824, 151.249529770843 -23.8981992470775, 151.249599850798 -23.8979115236378, 151.249754010568 -23.897829996806, 151.249354157862 -23.8977692841233, 151.249243597042 -23.8977443329372, 151.249045517181 -23.8976826525918, 151.247395773332 -23.8968782658962), (151.247298624639 -23.8984820678198, 151.24756356551 -23.8985082334613, 151.247562081651 -23.8986793307654, 151.247295726221 -23.8986536299542, 151.247298624639 -23.8984820678198))\nAYCA-DD3C8\tVermont Riverlands\tReady for service\tPOLYGON ((150.862954209724 -33.5689465929785, 150.862548407695 -33.570832242775, 150.862400772797 -33.5709002194451, 150.862412591781 -33.571231093825, 150.86258452803 -33.5712531157774, 150.867553870377 -33.5701883443034, 150.867324057364 -33.5694944192937, 150.867116342249 -33.5695225155869, 150.86720782051 -33.5690188440476, 150.8664718057 -33.5689171152289, 150.866509671648 -33.5687251341125, 150.86634868241 -33.5687112523179, 150.866334785996 -33.5687650747201, 150.865731271018 -33.5686816552709, 150.865713736516 -33.5687705514105, 150.864744273785 -33.5686365450399, 150.864702319349 -33.5688492369728, 150.864056509192 -33.5687599625312, 150.863987867677 -33.5691079238485, 150.862954209724 -33.5689465929785))\nAYCA-GPU42\tNewman Light Industrial Area\tReady for service\tPOLYGON ((119.726139621077 -23.3708990605763, 119.728516461367 -23.3708979086146, 119.728528193693 -23.3703923554012, 119.728814345164 -23.3703772538136, 119.728819999893 -23.3699411274779, 119.729226231654 -23.3699478503196, 119.729211035418 -23.3695416736215, 119.730666229356 -23.3695598167656, 119.730666240012 -23.3692920899367, 119.730427205923 -23.3689463371757, 119.730460772609 -23.3689276558958, 119.730857018611 -23.368707127349, 119.73118051992 -23.3684918277889, 119.731676119042 -23.3681142655845, 119.731478713236 -23.3678869442231, 119.730543007234 -23.3685361169301, 119.730259686018 -23.3686746089147, 119.730048905153 -23.3687463491369, 119.729930264932 -23.368783824721, 119.729574917391 -23.3687949150161, 119.729120970715 -23.3688010695269, 119.728297732601 -23.3687727771019, 119.728238359873 -23.3686818527478, 119.728310574178 -23.3680608889402, 119.728053612021 -23.3680448263344, 119.727983520023 -23.3686998899289, 119.727876240023 -23.3687843099289, 119.727180360023 -23.3687458799289, 119.726867880023 -23.368744799929, 119.726547120023 -23.3687865599289, 119.726238240023 -23.3688770999289, 119.725985583275 -23.3689902691443, 119.725989947439 -23.3691520418104, 119.725755803297 -23.3693040261892, 119.725768212854 -23.3704696777153, 119.725503551913 -23.3704738514774, 119.725512851423 -23.3708571810151, 119.725703160667 -23.3716475283967, 119.726319201256 -23.3716368021084, 119.726147016586 -23.3711177993962, 119.726139621077 -23.3708990605763), (119.727884729292 -23.370211790284, 119.727881857495 -23.3698418020621, 119.728468361518 -23.3698379688052, 119.728470507491 -23.3701177165071, 119.728379254024 -23.3702031609445, 119.727884729292 -23.370211790284))\n10371\tFalcon-Pleasant Grove\tReady for service\tPOLYGON ((115.65103232860565 -32.595619762744732, 115.65061390399933 -32.595371190572692, 115.65246999263763 -32.593310274734066, 115.65285086631775 -32.593369029570034, 115.65326929092407 -32.594322660367219, 115.65284550189972 -32.594471805498365, 115.65295279026031 -32.594684223892962, 115.65290987491608 -32.594752016891633, 115.65432071685791 -32.595800542073121, 115.65452992916107 -32.595737269349669, 115.65509855747223 -32.59508646160107, 115.65509855747223 -32.595014149337231, 115.65550625324249 -32.59526724200537, 115.65593004226685 -32.595411866066215, 115.65564572811127 -32.596270566619985, 115.65559208393097 -32.596546252947412, 115.65532922744751 -32.596541733506257, 115.65302789211273 -32.596537214064895, 115.65275430679321 -32.596523655739375, 115.65112888813019 -32.5965191362971, 115.65089285373688 -32.596428747403387, 115.65089285373688 -32.596329319514979, 115.65099477767944 -32.596148541253434, 115.65106451511383 -32.596040074121412, 115.65116107463837 -32.595872853702346, 115.65094113349915 -32.595777944677, 115.65103232860565 -32.595619762744732))\nAYCA-GR59S\tJohnston Stage 2\tReady for service\tPOLYGON ((131.005686478493 -12.492012572164, 131.006720705522 -12.4921309131598, 131.006757248632 -12.4921762441501, 131.00677018645 -12.4922076358763, 131.006769755779 -12.4922610889438, 131.006878533328 -12.4922747760984, 131.006870588776 -12.4922377596824, 131.006821261403 -12.4921905167877, 131.006762267741 -12.4920806149897, 131.00677834381 -12.4919813166083, 131.006817032536 -12.49180356857, 131.006861912616 -12.4917056929447, 131.006911990841 -12.4916527204456, 131.006973322622 -12.4916416109231, 131.007278281574 -12.4916764299245, 131.00772857482 -12.4916205658387, 131.008138626781 -12.4912755514497, 131.008304047141 -12.491196480072, 131.008469467388 -12.4911174086075, 131.008751711033 -12.4909812880531, 131.008807265486 -12.4909113398608, 131.008942481202 -12.4907505999514, 131.009297346385 -12.4905809717412, 131.00954419145 -12.4904531207166, 131.009094875778 -12.490082321408, 131.008669847155 -12.4894760799413, 131.008276705625 -12.4885485558722, 131.008237849767 -12.4885793334444, 131.008119748525 -12.4886298096172, 131.007737059183 -12.4888127376865, 131.007726565692 -12.4888530581209, 131.007232056532 -12.4890894356513, 131.007224286904 -12.4891385410132, 131.00683458754 -12.4893204479768, 131.006749508947 -12.4891050782778, 131.006742331518 -12.4890607285365, 131.006771835794 -12.4889648685765, 131.006792239671 -12.4889422542214, 131.006738002953 -12.4888528687439, 131.006692044292 -12.4888665755937, 131.006656061678 -12.4888463626637, 131.006608388695 -12.4888261586108, 131.006581880575 -12.4888365548522, 131.00653965168 -12.4888584569679, 131.006509462446 -12.4888812995463, 131.006470877781 -12.4889689678438, 131.006423026186 -12.4889371717866, 131.006420595453 -12.48891356054, 131.006105271307 -12.4890393928731, 131.005893243088 -12.4891211672866, 131.005557622362 -12.4892352487859, 131.005448923688 -12.4892205589232, 131.005370313902 -12.4892600987485, 131.005399424929 -12.4893007542982, 131.005654801351 -12.489928421942, 131.005761504373 -12.4906719896868, 131.005619572574 -12.4917340609211, 131.005714036659 -12.4918334765865, 131.005686478493 -12.492012572164), (131.00747135911 -12.4910377171343, 131.007302075116 -12.491109390835, 131.006964199532 -12.4911273106693, 131.006999959349 -12.4907944706875, 131.007352043341 -12.4907051757157, 131.00747135911 -12.4910377171343))\n17366497\t250-252 Blind Creek Road\tCheck with carrier\tPOLYGON ((143.77838 -37.523448998, 143.778975008 -37.523717007500004, 143.778874016 -37.523858995000005, 143.779539008 -37.524157992, 143.779216992 -37.525924002, 143.779111008 -37.526070004000005, 143.779388 -37.526108003000004, 143.779331008 -37.526415991, 143.779064 -37.5263850035, 143.778975008 -37.5268729965, 143.77864 -37.5268339985, 143.780627008 -37.528552001, 143.781432 -37.5241329985, 143.778754016 -37.522924005, 143.77838 -37.523448998))\n17363349\tBullocks Run\tCheck with carrier\tPOLYGON ((152.449822016 -32.092228007500005, 152.453208992 -32.0923090005, 152.454596992 -32.091923997, 152.454784 -32.090928993, 152.453990016 -32.0908270025, 152.454008992 -32.0905739965, 152.453523008 -32.090544008, 152.452572 -32.090534998500004, 152.450872992 -32.0903159955, 152.449819008 -32.090324006, 152.449588992 -32.0903909945, 152.449524992 -32.0914510075, 152.449835008 -32.0914259955, 152.449822016 -32.092228007500005))\n10217\tClarkson-Somerly\tReady for service\tPOLYGON ((115.73390185832977 -31.68231965347913, 115.73439538478851 -31.682228353912652, 115.73462069034576 -31.682155314194823, 115.73492646217346 -31.682091404394576, 115.7355272769928 -31.684611243186133, 115.73533952236176 -31.684702540409031, 115.7352215051651 -31.684871440034662, 115.73508739471436 -31.684930783073419, 115.73482990264893 -31.684761883555758, 115.73471188545227 -31.684652326947532, 115.73366045951843 -31.685382701893239, 115.73346734046936 -31.685172719684967, 115.73333323001862 -31.685264016355625, 115.73307573795319 -31.684930783073419, 115.73300063610077 -31.684652326947532, 115.73296308517456 -31.684547335076658, 115.73260903358459 -31.684624937775279, 115.73246419429779 -31.684049763291046, 115.73242127895355 -31.683889991968488, 115.73226034641266 -31.683351332340351, 115.73221743106842 -31.683232644205454, 115.73061883449554 -31.683565883583739, 115.73052227497101 -31.683520234424552, 115.73043644428253 -31.683237209136525, 115.7307368516922 -31.683182429948857, 115.73063492774963 -31.682858319093693, 115.73094606399536 -31.682762455102779, 115.73133230209351 -31.682579856750998, 115.73142886161804 -31.682675720930472, 115.73175609111786 -31.682666591012882, 115.73198676109314 -31.682616376450085, 115.73208868503571 -31.68260268156461, 115.73215842247009 -31.682639201254716, 115.73359608650208 -31.682337913381662, 115.73390185832977 -31.68231965347913))\nAYAA-GS1IC\tLot 1002 Penson Street, Singleton\tReady for service\tPOLYGON ((115.758240281793 -32.4526525091403, 115.75865196 -32.4525941100142, 115.75847844 -32.4517144500143, 115.75847664 -32.4510828300143, 115.7593248 -32.4511436700143, 115.75959948 -32.4497196900143, 115.76000736 -32.4476051400143, 115.76015172 -32.4468576900143, 115.760042940252 -32.446075845184, 115.760433521957 -32.4460958594771, 115.760435501768 -32.4459402137948, 115.759860875451 -32.4459251193394, 115.759484605601 -32.4459934228324, 115.759431909562 -32.4460030398544, 115.759171332849 -32.4460511526924, 115.758861192815 -32.4460749296229, 115.7585172607 -32.4461004298205, 115.758513997409 -32.4462450932636, 115.758581063234 -32.4462970490913, 115.758623793893 -32.4469199361142, 115.758107007153 -32.4493100939991, 115.757833915362 -32.4502458931392, 115.757997996059 -32.4502628368725, 115.758001677875 -32.4508091676604, 115.757998796179 -32.4513068989043, 115.757994241185 -32.4517448444511, 115.75807378739 -32.4522852675452, 115.758090641669 -32.4523886883604, 115.758140224126 -32.4526680269002, 115.758240281793 -32.4526525091403))\n10046\tAustralind-Galway Green\tReady for service\tPOLYGON ((115.72949230670929 -33.25845042274144, 115.72953522205353 -33.258262020841656, 115.72993218898773 -33.258284449660557, 115.73011457920074 -33.258302392711528, 115.73011457920074 -33.258257535077192, 115.73049008846283 -33.258284449660557, 115.7304847240448 -33.258445936986661, 115.73089778423309 -33.25845042274144, 115.73106408119202 -33.25845042274144, 115.73106944561005 -33.25853565203883, 115.73147714138031 -33.258553595038208, 115.73147177696228 -33.258593966773347, 115.73186337947845 -33.258607424014237, 115.73189556598663 -33.258427993965164, 115.73195457458496 -33.258208191652805, 115.73209941387177 -33.257956988332957, 115.73231399059296 -33.25773718483557, 115.73255002498627 -33.257494951769353, 115.73276996612549 -33.257275147109517, 115.73283970355988 -33.257207859858205, 115.73302209377289 -33.257113657619286, 115.73266267776489 -33.256974596985735, 115.73276460170746 -33.256817592778596, 115.73054373264313 -33.256822078617006, 115.73026478290558 -33.256884880330496, 115.73007702827454 -33.256934224502274, 115.73010385036469 -33.257019455278808, 115.72973906993866 -33.257014969450537, 115.72973370552063 -33.257216831494709, 115.72961568832397 -33.257221317312613, 115.729621052742 -33.257548781397659, 115.729621052742 -33.257696812704516, 115.72966396808624 -33.257674383734745, 115.72955131530762 -33.258109504720437, 115.72906851768494 -33.257961474112861, 115.72883784770966 -33.257898673173258, 115.72852671146393 -33.257889701606764, 115.72852671146393 -33.257813443254449, 115.72836577892303 -33.257813443254449, 115.72798490524292 -33.257822414828773, 115.72763621807098 -33.257835872188522, 115.72761476039886 -33.257741670626757, 115.72745382785797 -33.257741670626757, 115.72711586952209 -33.257764099579255, 115.7270622253418 -33.257535323993693, 115.72668671607971 -33.257589153597131, 115.72675108909607 -33.257916616303469, 115.7267564535141 -33.258167819739406, 115.72670817375183 -33.258589481025915, 115.72665989398956 -33.258840682527094, 115.72663307189941 -33.258997683098542, 115.72701930999756 -33.25900665455125, 115.72701394557953 -33.259145711950339, 115.72736263275146 -33.259212997709135, 115.72762548923492 -33.259257854852869, 115.72789371013641 -33.259284769128065, 115.72799563407898 -33.2592892548398, 115.72808146476746 -33.259316169105304, 115.72816729545593 -33.259347569071267, 115.7291167974472 -33.259666053802455, 115.72928309440613 -33.259387940439474, 115.72935283184052 -33.259262340565975, 115.72941720485687 -33.259280283416111, 115.7295298576355 -33.258943854362975, 115.72964787483215 -33.258589481025915, 115.72944939136505 -33.258553595038208, 115.72949230670929 -33.25845042274144))\n17290310\tLinton Hill - Stage 2\tCheck with carrier\tPOLYGON ((151.82728704 -27.466329962, 151.82464896 -27.4658930105, 151.82411616 -27.468744027, 151.823927168 -27.468804966, 151.823909152 -27.4690950275, 151.82386992 -27.469619003000002, 151.82378208 -27.4700829645, 151.825462912 -27.469223010500002, 151.82580096 -27.469269001500003, 151.82588016 -27.4688129765, 151.826681152 -27.46892196, 151.826756032 -27.468494018, 151.826752096 -27.4684660275, 151.82673408 -27.4684439755, 151.826704928 -27.4684329865, 151.826466976 -27.468404996, 151.826166016 -27.4683979845, 151.82598096 -27.4684100465, 151.825975936 -27.468440997000002, 151.825946048 -27.468437038, 151.825950016 -27.468412026, 151.825929856 -27.468160019000003, 151.826159872 -27.468144997, 151.826488928 -27.4681530075, 151.82679888 -27.4681890085, 151.826829856 -27.468185031, 151.826856128 -27.4681680295, 151.826868 -27.4681430175, 151.826968096 -27.4681559675, 151.82728704 -27.466329962))\n10611\tSecret Harbour-Anstey Park\tReady for service\tPOLYGON ((115.76890334486961 -32.398474967071245, 115.76900728046894 -32.39847440089568, 115.76900660991669 -32.398540077236767, 115.76929360628128 -32.398560459539794, 115.76939955353737 -32.398569518339663, 115.76973415911198 -32.398619341722735, 115.770302452147 -32.398618209373424, 115.77079363167286 -32.39861990789737, 115.77079631388187 -32.398514033176184, 115.77117249369621 -32.398511768474904, 115.77112086117268 -32.399065486245604, 115.77110074460506 -32.399349456369336, 115.77111683785915 -32.400001681937354, 115.77112220227718 -32.400151149633096, 115.77127257362008 -32.400651700070007, 115.77136192470789 -32.400940504104341, 115.77159645035863 -32.401478982672913, 115.77172041870654 -32.401764639247141, 115.77184304594994 -32.402044067232815, 115.77125295996666 -32.402233728347106, 115.77129922807217 -32.402345260219313, 115.77114634215832 -32.402383192347479, 115.77104710042477 -32.402160694711462, 115.77100355643779 -32.40216094240315, 115.77100292779505 -32.402164587009437, 115.77090708073229 -32.402165967005928, 115.77090676641092 -32.402161561632383, 115.77081549272407 -32.402160743365194, 115.77081675524823 -32.40216502046988, 115.77072481100913 -32.402168448345762, 115.77072510699509 -32.402163934607223, 115.77022785320878 -32.402170743916777, 115.77002320904285 -32.40217254852746, 115.77002241276205 -32.402176617747536, 115.76997668948025 -32.402177856205768, 115.76997863827273 -32.402173380063751, 115.76976601034403 -32.402177962359289, 115.76897107064724 -32.402190134633713, 115.76894491910934 -32.400670003021027, 115.76891273260117 -32.399157206039305, 115.76890133321285 -32.39847440089568, 115.76890334486961 -32.398474967071245))\nAYCA-ER2HH\tVicars Avenue\tReady for service\tPOLYGON ((145.592578108999 -38.5897578015856, 145.59477948 -38.5899683400299, 145.59531768 -38.5865467200299, 145.593106338212 -38.5856872874448, 145.592578108999 -38.5897578015856))\nAYCA-G7VCW\tGap Ridge Industrial Area\tReady for service\tPOLYGON ((116.76592759951 -20.7376182188109, 116.764995134441 -20.7379512648429, 116.764859969741 -20.7380710004181, 116.764810573237 -20.7381742443224, 116.764790043288 -20.7383038330363, 116.764824565547 -20.7383881538306, 116.764931145098 -20.738472918052, 116.765260132705 -20.738612211303, 116.765415518233 -20.7386458937752, 116.765491298886 -20.7386339196263, 116.765599118153 -20.7389481505382, 116.765403553782 -20.7390197464121, 116.765084733079 -20.7396861142634, 116.767075694943 -20.744127273314, 116.768046504018 -20.7438276207051, 116.768140139789 -20.7438115474754, 116.768204599353 -20.7438103510609, 116.768241190894 -20.7437121060273, 116.767692675579 -20.7423630872268, 116.766818008963 -20.7401574127017, 116.766430499211 -20.7392476870325, 116.766230727829 -20.7387877289131, 116.765964323177 -20.7387276088415, 116.765664732864 -20.7388961163974, 116.765572668342 -20.7386210623451, 116.766236635803 -20.7383839140919, 116.76592759951 -20.7376182188109))\nAYCA-159BSA\tMoncrieff Residential Estate\tContracted\tPOLYGON ((149.110044000007 -35.159419000021, 149.112582000007 -35.1599000000209, 149.11284128492 -35.1597778035913, 149.11289846306 -35.1595052043784, 149.112950770904 -35.1593320080941, 149.113046643739 -35.1591235930496, 149.113291649506 -35.1586688840908, 149.11369667278 -35.1578966649976, 149.114048304345 -35.157164210195, 149.114266885736 -35.156553083509, 149.114365764604 -35.156388772503, 149.114461426837 -35.1562298060345, 149.114124000007 -35.156164000021, 149.113874000007 -35.156179000021, 149.113633010518 -35.1561522069873, 149.113362000007 -35.1560890000209, 149.113449000007 -35.1558160000209, 149.112940000007 -35.155705000021, 149.112855000007 -35.1559700000209, 149.112705000007 -35.1564490000209, 149.112810000007 -35.1564760000209, 149.112646000007 -35.156875000021, 149.112537000015 -35.1571400000162, 149.112329000015 -35.1575840000162, 149.111926000007 -35.158382000021, 149.111625000007 -35.158273000021, 149.111747000007 -35.1580460000209, 149.110891000007 -35.157741000021, 149.110752000186 -35.1580079996983, 149.110502000021 -35.1579120000185, 149.110397000015 -35.1581190000162, 149.110421000009 -35.1581320000045, 149.110448000022 -35.1581880000116, 149.110236000039 -35.1586919999721, 149.110141497112 -35.1590480525734, 149.110044000007 -35.159419000021))\nAYCA-1S9DR7\tVasse Newtown\tContracted\tPOLYGON ((115.237501509781 -33.6735871946194, 115.23737700847 -33.6735592843897, 115.237280962412 -33.6737772276456, 115.23744250281 -33.6738166740937, 115.237493883589 -33.6738801418538, 115.237457565119 -33.6741345906657, 115.237584730767 -33.6741567387278, 115.237600869325 -33.6740436703511, 115.237636124275 -33.6739346183223, 115.237715179629 -33.673896471037, 115.238022589152 -33.6739653835412, 115.237935975095 -33.6742354778762, 115.237929728693 -33.67431043118, 115.238615873871 -33.6743898624128, 115.238613988792 -33.6743957409007, 115.238759537208 -33.6744292988184, 115.239092856565 -33.6745040161164, 115.239078093237 -33.6745500552828, 115.23907795604 -33.6747842911446, 115.239401480763 -33.6747836697471, 115.239401468281 -33.674805113527, 115.239530877209 -33.6748065924948, 115.23953088651 -33.6747905719047, 115.239566004132 -33.6745604954408, 115.239624484905 -33.6745604060934, 115.239691648481 -33.6743443271268, 115.239699772062 -33.6743237058329, 115.240113431363 -33.6743243590348, 115.240178171451 -33.6743786155609, 115.240177955686 -33.6747552161022, 115.240458340862 -33.6747598149255, 115.240458358091 -33.6747295767542, 115.240781882124 -33.6747300860268, 115.240781945914 -33.6746173804366, 115.240857674446 -33.6746174994664, 115.240857813618 -33.674371185862, 115.240825824665 -33.674343513622, 115.240805416753 -33.6743434815462, 115.240807982041 -33.6742159001552, 115.240833252449 -33.6742162599606, 115.240836169619 -33.6740730362074, 115.24091704994 -33.6740731632772, 115.240917718515 -33.6737756212637, 115.240388763091 -33.6737747892948, 115.240389433659 -33.6734771490754, 115.240282734561 -33.673477181751, 115.240284000067 -33.6734760000671, 115.240074388176 -33.6733329822655, 115.240072633568 -33.6716604330772, 115.239964795988 -33.6716604658915, 115.239964377521 -33.6712612966647, 115.239539781458 -33.6712427324848, 115.239102571544 -33.6712609696738, 115.238702779967 -33.6712961557942, 115.238004197561 -33.6714330056194, 115.237791375962 -33.6714622389466, 115.237656005037 -33.6714730834887, 115.237667774581 -33.6715808333182, 115.237849609878 -33.6715662664964, 115.237883460822 -33.6715919654191, 115.237884022017 -33.6721400035533, 115.237884298947 -33.6724104964409, 115.237884418184 -33.6725269736906, 115.237832218077 -33.6728660720759, 115.237794234974 -33.6728873548179, 115.237728721263 -33.6728726682855, 115.237692389439 -33.6730138819142, 115.237747391185 -33.6730262119298, 115.237770246804 -33.6730593228313, 115.23774693383 -33.6731320215858, 115.237698642757 -33.673244881011, 115.237682722523 -33.6732747842281, 115.237642368403 -33.6733572068545, 115.237580900415 -33.673548885494, 115.237501509781 -33.6735871946194))\n24\tChesalon Living\tReady for service\tPOLYGON ((150.74401125716309 -34.0064770830842, 150.74288472938147 -34.005151877185476, 150.74265405940787 -34.00499178379782, 150.74281499194427 -34.004760537260907, 150.74289545821244 -34.004515948892056, 150.74338362025503 -34.004431454564504, 150.74397370623677 -34.004262465657206, 150.74486419962935 -34.003582059550524, 150.7449768524084 -34.003502011414852, 150.74506268310103 -34.003524247015541, 150.74515387820921 -34.003524247015541, 150.74522898006188 -34.003466434441208, 150.74523434447738 -34.003368597687768, 150.74523434447738 -34.003333020658239, 150.74606046485718 -34.002879412228566, 150.74624821947995 -34.00281270490261, 150.74680611895982 -34.00376883824034, 150.7470153312625 -34.004226889002844, 150.74697778033612 -34.004573760751995, 150.74679539011984 -34.004853925360948, 150.74598536300448 -34.005316417297323, 150.7440166215876 -34.00649042397766, 150.74401125716309 -34.0064770830842))\nAYCA-S72QY\tKialla Lakes Estate\tUnder construction\tPOLYGON ((145.392727999998 -36.4346950000272, 145.392695999998 -36.4349910000272, 145.392774999998 -36.4353920000272, 145.392774999998 -36.4357640000272, 145.396410999998 -36.4357640000272, 145.396457999998 -36.4353490000272, 145.396578999998 -36.4351410000273, 145.396439999998 -36.4351410000273, 145.396439999998 -36.4348260000273, 145.396516999998 -36.4347820000272, 145.397000999998 -36.4342080000272, 145.396941999998 -36.4341400000272, 145.397996999998 -36.4338420000273, 145.398268999998 -36.4336830000272, 145.398056999998 -36.4333620000273, 145.398224339998 -36.4332959000551, 145.398310309998 -36.4332664000551, 145.398441619998 -36.4332269300551, 145.398575399998 -36.4331933200551, 145.398711239998 -36.433165650055, 145.398809494287 -36.4331490960761, 145.398894889998 -36.433138170055, 145.398941149998 -36.4331329900551, 145.398998262998 -36.4331271013785, 145.399080529998 -36.433121550055, 145.399173789998 -36.433117350055, 145.399467944225 -36.4331162272658, 145.399512609998 -36.4331522900551, 145.399691069998 -36.433152220055, 145.399735689998 -36.4331161300551, 145.400534627257 -36.4331160641629, 145.400578969998 -36.433151850055, 145.400757429998 -36.4331517800551, 145.40080205285 -36.4331156929635, 145.401395581097 -36.4331154407395, 145.401470447539 -36.4331167685999, 145.401502093125 -36.4331222102779, 145.401533644591 -36.4331322414585, 145.401556555736 -36.4331429737684, 145.401576555772 -36.4331553655431, 145.401611765012 -36.4331877651663, 145.401634572862 -36.4332250820084, 145.401643703886 -36.4332565337432, 145.4016454364 -36.4333077145548, 145.401913271944 -36.4333113008194, 145.401913669998 -36.433266950055, 145.401917028831 -36.4332461518091, 145.401923859998 -36.433225400055, 145.401933899998 -36.4332057800551, 145.401947019998 -36.4331873900551, 145.401962999998 -36.4331705500551, 145.401991719998 -36.433148790055, 145.402013549998 -36.433136990055, 145.402037099998 -36.4331275900551, 145.402061969998 -36.433120760055, 145.402087729998 -36.433116610055, 145.402113939998 -36.4331152200551, 145.402113488411 -36.432889381135, 145.402080339998 -36.4328899000551, 145.402056802083 -36.4328885634355, 145.402033209998 -36.432884440055, 145.402010839998 -36.4328777100551, 145.401989889998 -36.432868480055, 145.401970769998 -36.432856930055, 145.401953889998 -36.432843300055, 145.401939579998 -36.4328278700551, 145.401933479998 -36.4328195700551, 145.401928129998 -36.4328109400551, 145.401919769998 -36.4327928800551, 145.401914697557 -36.4327741182844, 145.401912969998 -36.432754800055, 145.401912693314 -36.4323350436594, 145.40163886236 -36.4323205842107, 145.401639089998 -36.4327548600551, 145.401636806813 -36.4327767230063, 145.401631544163 -36.4327948494068, 145.401627748239 -36.4328036879702, 145.401623083147 -36.4328125017836, 145.401611729289 -36.4328289292348, 145.401598279998 -36.4328433900552, 145.401580975771 -36.4328573133078, 145.401561055266 -36.4328692329583, 145.40154120133 -36.4328779066346, 145.401518962207 -36.4328846099772, 145.401495327292 -36.4328887523962, 145.401471888131 -36.4328900967682, 145.400039179537 -36.4328906961605, 145.399994131711 -36.4328543332386, 145.399815775544 -36.4328547222281, 145.399771439998 -36.4328908100551, 145.399326198245 -36.4328909876818, 145.399216393965 -36.4328914017682, 145.399116279998 -36.432894320055, 145.399065790837 -36.4328968749369, 145.398965699998 -36.432904090055, 145.398915015546 -36.4329088609946, 145.398767308847 -36.4329270153748, 145.398667529998 -36.432942950055, 145.398569720719 -36.4329615025704, 145.398513289998 -36.432936190055, 145.398342559998 -36.432978180055, 145.398298037871 -36.4330306917265, 145.397989541115 -36.4331357517172, 145.397868999998 -36.4328360000272, 145.397379999998 -36.4329470000272, 145.397205999998 -36.4329500000272, 145.397228999998 -36.4330980000272, 145.396983999998 -36.4332380000272, 145.396757999998 -36.4333670000272, 145.396582999998 -36.4334660000272, 145.396388999998 -36.4335770000272, 145.396221999998 -36.4336290000273, 145.396238999998 -36.4336620000273, 145.396029999998 -36.4337810000272, 145.395845999998 -36.4338860000272, 145.395534999998 -36.4340590000273, 145.395319999998 -36.4341860000273, 145.395166999998 -36.4342730000272, 145.394953999998 -36.4343950000271, 145.394618999998 -36.4345850000272, 145.394588999998 -36.4345980000272, 145.394330999998 -36.4347060000272, 145.392934999998 -36.4347060000272, 145.392727999998 -36.4346950000272))\n17349198\tThe Palisades\tCheck with carrier\tPOLYGON ((152.923364992 -27.4275060285, 152.923361056 -27.427301992, 152.92312704 -27.426885039000002, 152.922961088 -27.426588021500002, 152.922899168 -27.426479038, 152.922830048 -27.4263080425, 152.922785056 -27.426180966, 152.922687136 -27.4259079985, 152.922624832 -27.4255340395, 152.922562912 -27.4251629665, 152.92214784 -27.425114996, 152.921949856 -27.424692992500002, 152.921919968 -27.424673993000003, 152.921125088 -27.4241649655, 152.920995136 -27.4241909765, 152.92082592 -27.424224998, 152.92063008 -27.424263959, 152.920419136 -27.4243239915, 152.920163168 -27.4245039965, 152.91992016 -27.424491028000002, 152.919534976 -27.4270069725, 152.919698048 -27.427028044, 152.919884896 -27.427051983000002, 152.92005984 -27.4270750155, 152.920257856 -27.4271010265, 152.92045584 -27.4271270375, 152.920654912 -27.427152956, 152.920854016 -27.427178967, 152.921053088 -27.4272039975, 152.921282048 -27.4272339675, 152.921420992 -27.427252042, 152.921639872 -27.4272810315, 152.921847968 -27.427308023000002, 152.922066848 -27.4273370125, 152.922327136 -27.427370035, 152.922624128 -27.4274090145, 152.923364992 -27.4275060285))\nAYCA-1L7JOH\tLots 73 and 74 Queensway Rd, Landsdale\tUnder construction\tPOLYGON ((115.869656132796 -31.8046482472394, 115.869664 -31.8076540000109, 115.869833999999 -31.8077280000108, 115.869747999999 -31.807871000011, 115.869664140348 -31.8078350601603, 115.869666959313 -31.8089121375308, 115.869651092692 -31.8089126295831, 115.87166388 -31.8089146500103, 115.871614603011 -31.8061024018813, 115.871628123745 -31.8046707096978, 115.869656132796 -31.8046482472394))\n17355906\tDeepwater Estate\tCheck with carrier\tPOLYGON ((153.015337088 -27.3051000015, 153.016374976 -27.305244986, 153.019631168 -27.3043669575, 153.02007504 -27.3043359885, 153.02100816 -27.303984007500002, 153.01913904 -27.30334104, 153.017885888 -27.303056991000002, 153.016935136 -27.30241197, 153.01653408 -27.302012999000002, 153.01602288 -27.303364979, 153.015697088 -27.3039530385, 153.01545408 -27.304432022, 153.015337088 -27.3051000015))\n17347407\tAspire at Weston\tCheck with carrier\tPOLYGON ((151.447782976 -32.808095997, 151.446575872 -32.80791096, 151.446570112 -32.807871999, 151.445832832 -32.807769028, 151.445724832 -32.807457007000004, 151.445210048 -32.8070600155, 151.445309056 -32.80657896, 151.44483888 -32.806507957, 151.444412992 -32.8085749805, 151.44458112 -32.8087600175, 151.44464016 -32.808828967000004, 151.444684096 -32.8088819695, 151.444743136 -32.808951992000004, 151.44481584 -32.809032985, 151.444926016 -32.8091660185, 151.445044096 -32.809294982000004, 151.44511392 -32.8093849845, 151.445224096 -32.809510988, 151.445324896 -32.809624023, 151.445403008 -32.809718965, 151.44546384 -32.8097860275, 151.445550976 -32.8099190425, 151.445620096 -32.8100560165, 151.44571008 -32.810193009, 151.445826016 -32.810338974000004, 151.446003136 -32.8105680225, 151.446098176 -32.810681964000004, 151.446197888 -32.8108189565, 151.446264832 -32.8109270335, 151.446323872 -32.811037016, 151.446413888 -32.811104966500004, 151.446525856 -32.811145019, 151.446607936 -32.811185978000005, 151.446755872 -32.8112080115, 151.446884032 -32.811255982, 151.44687504 -32.811229971, 151.446954976 -32.81124096, 151.447050016 -32.8112710225, 151.447115872 -32.8112550015, 151.44715584 -32.811255982, 151.447782976 -32.808095997))\n17325519\tBraeburn Estate\tCheck with carrier\tPOLYGON ((151.173253088 -32.5464440405, 151.172947072 -32.549041977, 151.173132832 -32.548931014000004, 151.173272896 -32.54883696, 151.17334416 -32.5487079965, 151.17350688 -32.5485999935, 151.173600832 -32.5485440125, 151.173747008 -32.5485700235, 151.173821888 -32.548647964000004, 151.17380784 -32.548725997, 151.173738016 -32.5488549605, 151.173677152 -32.548960984000004, 151.173717856 -32.549065028, 151.173888128 -32.549086987500004, 151.173978112 -32.549086987500004, 151.174114912 -32.548970974, 151.174217888 -32.548805991, 151.174257856 -32.5487240175, 151.17438816 -32.548479022, 151.17449616 -32.548431958, 151.17459696 -32.548419008, 151.174762912 -32.5484970225, 151.174887136 -32.548470031, 151.175152096 -32.5484370085, 151.175549152 -32.5483440275, 151.176029056 -32.548206961, 151.176366016 -32.548056038, 151.176920032 -32.5479860155, 151.177015072 -32.548017965, 151.17759216 -32.548094999, 151.17763392 -32.5479760255, 151.17763392 -32.547914994, 151.177772896 -32.547797001, 151.177835872 -32.547674975, 151.17802992 -32.5475080125, 151.17834384 -32.547292025000004, 151.17844896 -32.547225961500004, 151.178754976 -32.54712201, 151.17898608 -32.547056039000005, 151.173253088 -32.5464440405))\nAYCA-IK50L\tSt George Springs\tContracted\tPOLYGON ((152.051781890475 -28.2061125129523, 152.050144884554 -28.207023317801, 152.04888450256001 -28.2077973304835, 152.048881758888 -28.2081070580618, 152.049617 -28.2085469999864, 152.051914040457 -28.2089276030766, 152.052124184597 -28.2085221535795, 152.052229 -28.2074959999863, 152.052678169737 -28.2075451434515, 152.053560818837 -28.207647465696, 152.053798161383 -28.2060838992336, 152.052097711999 -28.2060074708023, 152.051781890475 -28.2061125129523))\nAYCA-1DAJU0\tHarrington Grove\tUnder construction\tPOLYGON ((150.719234999989 -34.0141670000154, 150.718749999989 -34.0141130000153, 150.718313999989 -34.0140490000153, 150.718294999989 -34.0139980000153, 150.718286999989 -34.0139850000153, 150.718252999989 -34.0139450000153, 150.718209999989 -34.0139140000153, 150.718154999989 -34.0138900000153, 150.718070999989 -34.0138770000152, 150.717720999989 -34.0138600000152, 150.717642999989 -34.0138580000153, 150.717606999989 -34.0138590000153, 150.717519999989 -34.0138640000153, 150.717439999989 -34.0138730000153, 150.717367999989 -34.0138860000153, 150.717294999989 -34.0138990000152, 150.717201999989 -34.0139090000153, 150.717107999989 -34.0139100000153, 150.717018999989 -34.0139010000152, 150.716957999989 -34.0138920000153, 150.716820999989 -34.0138720000153, 150.716639999989 -34.0138450000152, 150.716499999989 -34.0138250000152, 150.716444999989 -34.0138200000153, 150.716374999989 -34.0138160000152, 150.716280999989 -34.0138170000153, 150.716229999989 -34.0138200000152, 150.716173999989 -34.0138250000152, 150.716110999989 -34.0138340000153, 150.715761999989 -34.0138900000153, 150.715973999989 -34.0147820000153, 150.715959999989 -34.0148390000153, 150.716000999989 -34.0150120000152, 150.716039999989 -34.0150600000153, 150.716060999989 -34.0151490000153, 150.716072999989 -34.0152010000153, 150.716108999989 -34.0153050000153, 150.716152999989 -34.0153870000153, 150.716195999989 -34.0154510000152, 150.716286999989 -34.0155510000154, 150.717138999989 -34.0163450000153, 150.717191999989 -34.0163940000153, 150.717257999989 -34.0164450000153, 150.717357999989 -34.0165020000153, 150.717436999989 -34.0165340000153, 150.717533999989 -34.0165610000154, 150.717636999989 -34.0165760000153, 150.717716999989 -34.0165790000154, 150.717808999989 -34.0165740000153, 150.717958999989 -34.0165610000153, 150.718057999989 -34.0165520000154, 150.718150999989 -34.0165980000153, 150.718192999989 -34.0166690000153, 150.718237999989 -34.0167290000153, 150.718282999989 -34.0167810000153, 150.718343999989 -34.0168410000153, 150.718415999989 -34.0169000000153, 150.718470999989 -34.0169420000154, 150.718569999989 -34.0170160000154, 150.718651999989 -34.0170630000153, 150.718738999989 -34.0170990000153, 150.718862999989 -34.0171290000153, 150.718940999989 -34.0171370000153, 150.719012999989 -34.0171380000153, 150.719056999989 -34.0171350000153, 150.719098999989 -34.0171300000153, 150.719160999989 -34.0171180000153, 150.719210999989 -34.0171070000153, 150.719261999989 -34.0170990000153, 150.719299999989 -34.0170970000153, 150.719346999989 -34.0170970000153, 150.719404999989 -34.0171030000153, 150.719455999989 -34.0171130000154, 150.719506999989 -34.0171280000153, 150.719536999989 -34.0171400000154, 150.719558999989 -34.0171570000153, 150.719578999989 -34.0171820000153, 150.719603999989 -34.0172330000154, 150.719541999989 -34.0170480000153, 150.719467999989 -34.0168280000153, 150.719272999989 -34.0162030000153, 150.719229999989 -34.0160140000154, 150.719194999989 -34.0157860000153, 150.719181999989 -34.0156790000153, 150.719163999989 -34.0155380000153, 150.719160999989 -34.0153960000154, 150.719158999989 -34.0152580000154, 150.719160999989 -34.0151630000153, 150.719164999989 -34.0150460000153, 150.719167999989 -34.0149330000154, 150.719171999989 -34.0148290000153, 150.719176999989 -34.0147530000153, 150.719187999989 -34.0145810000154, 150.719197999989 -34.0144370000153, 150.719234999989 -34.0141670000154))\n10576\tSecret Harbour\tReady for service\tPOLYGON ((115.7580041885376 -32.41016651368836, 115.7574999332428 -32.410601279154193, 115.75675964355469 -32.409342265076745, 115.75608909130096 -32.40840839532423, 115.7559335231781 -32.408281585865247, 115.75626611709595 -32.408059668883311, 115.75641632080078 -32.408168362983453, 115.757355093956 -32.407407501533548, 115.75716733932495 -32.407167466530929, 115.75637876987457 -32.40658775672231, 115.75599253177643 -32.406370364584163, 115.7551771402359 -32.406220907185457, 115.75408816337585 -32.406288842397373, 115.75406670570374 -32.405985398055016, 115.75501084327698 -32.405940107767165, 115.75613737106323 -32.406171087997585, 115.75726389884949 -32.406510763733259, 115.75787544250488 -32.406610401706587, 115.75787544250488 -32.406787032388976, 115.7587069272995 -32.406805148336865, 115.75862109661102 -32.40730333547873, 115.75819730758667 -32.407280690668287, 115.75823485851288 -32.407647535897794, 115.75789153575897 -32.407643006953428, 115.75840651988983 -32.408381221883729, 115.75856745243073 -32.408313288246688, 115.75905561447144 -32.409092257549595, 115.75886785984039 -32.409178306071865, 115.75949013233185 -32.410142949679937, 115.75977981090546 -32.41002972913325, 115.75995683670044 -32.410319573449158, 115.75969934463501 -32.410459966455029, 115.75976371765137 -32.410582244056386, 115.75955986976624 -32.410623003220024, 115.75936675071716 -32.410342217497131, 115.75917363166809 -32.410419207217764, 115.75910925865173 -32.410301458206689, 115.75873911380768 -32.4103693903472, 115.75837433338165 -32.410265227710831, 115.7580041885376 -32.41016651368836))\n10445\tJindalee-Jindalee Beach\tReady for service\tPOLYGON ((115.69432854652405 -31.64808608166744, 115.69447875022888 -31.648670612137224, 115.69401741027832 -31.648743678187508, 115.69398522377014 -31.648551879683026, 115.69357752799988 -31.648634079090556, 115.6934916973114 -31.648579279493617, 115.69337368011475 -31.648606679296126, 115.6934380531311 -31.648853277155247, 115.6924295425415 -31.649081607922998, 115.69261193275452 -31.649867061480808, 115.69233298301697 -31.649912727181185, 115.69240808486938 -31.650195854022719, 115.6910240650177 -31.650433314579679, 115.69105625152588 -31.65074383900804, 115.69088459014893 -31.650835169524832, 115.69100260734558 -31.651319219765618, 115.69162487983704 -31.651191357682855, 115.69159269332886 -31.65104522937289, 115.69222569465637 -31.650963032097582, 115.69380283355713 -31.650807770379224, 115.69579839706421 -31.650460713835681, 115.69574475288391 -31.65010452287774, 115.69682836532593 -31.649930993455051, 115.69433927536011 -31.648095214984291, 115.69432854652405 -31.64808608166744))\n10291\tDawesville-Port Bouvard South\tReady for service\tPOLYGON ((115.63354969024658 -32.6050378802273, 115.63336193561554 -32.6053632485495, 115.63344240188599 -32.605399400512347, 115.63335120677948 -32.605544008217827, 115.63310980796814 -32.605797071140643, 115.63318490982056 -32.605846779845031, 115.63478350639343 -32.606380016938793, 115.63577592372894 -32.606529141998664, 115.63594222068787 -32.606556255619246, 115.63626408576965 -32.606737012879989, 115.63642501831055 -32.607378698209544, 115.63619166612625 -32.6077352312218, 115.63621044158936 -32.60779397659828, 115.63652694225311 -32.6079408398709, 115.636505484581 -32.60801134121693, 115.63663959503174 -32.608070086412312, 115.6369560956955 -32.608210170953484, 115.63698828220367 -32.608151425849982, 115.63733696937561 -32.608323142198053, 115.6374603509903 -32.608388206509545, 115.63778221607208 -32.608532809389622, 115.63822478055954 -32.6078617596771, 115.6390106678009 -32.606692741506492, 115.63713312149048 -32.605259311575054, 115.63683807849884 -32.605101146382509, 115.63652694225311 -32.605530451255355, 115.63627481460571 -32.605833222928389, 115.63618898391724 -32.605950257180261, 115.63614875078201 -32.606054193352961, 115.63601195812225 -32.606090345036932, 115.63557475805283 -32.606020301135985, 115.63569277524948 -32.605740124984429, 115.63354969024658 -32.6050378802273))\nAYCA-F6G23\tHeron Park\tReady for service\tPOLYGON ((115.933853735721 -32.1206153334715, 115.93354464 -32.1208844400133, 115.93018404 -32.1238092600132, 115.930986074919 -32.1244668212669, 115.931214760091 -32.1244117382082, 115.931816713185 -32.1239256591206, 115.931918865948 -32.1240106376915, 115.933016599928 -32.1240122202109, 115.933025203867 -32.1240480981135, 115.93388396329 -32.1240595417658, 115.933867225796 -32.1239888515618, 115.933912376497 -32.1239000068933, 115.933919986424 -32.1236597936273, 115.934208216464 -32.1236571550213, 115.934286997635 -32.1221110341096, 115.934462561939 -32.1216027728868, 115.934292374353 -32.1215570820482, 115.93446074444 -32.1210653592396, 115.933853735721 -32.1206153334715))\n272\tCastle Towers Shopping Centre\tContracted\tPOLYGON ((151.00477934287912 -33.73115719422902, 151.00649595665146 -33.728980037341415, 151.00759029792223 -33.729140649162808, 151.008942131271 -33.730943050099263, 151.00653887199331 -33.73251342797365, 151.00477934287912 -33.73115719422902))\nAYCA-1BNMMK\tRedgum Brook Estate\tReady for service\tPOLYGON ((115.973701271346 -32.2091690608967, 115.974624988972 -32.2091728199596, 115.974624553646 -32.2092502119495, 115.977835 -32.2092740000136, 115.977942 -32.2091880000136, 115.977945868039 -32.2072875821387, 115.977845290272 -32.2072012536066, 115.976172146342 -32.207239699335, 115.975105700689 -32.2073263633344, 115.975105 -32.2073740000136, 115.973611413994 -32.2077630073117, 115.973431180645 -32.2080117045606, 115.973701271346 -32.2091690608967))\nAYCA-1BCCVE\tFrizzo Road, Palmview\tReady for service\tPOLYGON ((153.039079776235 -26.7461322570971, 153.039040527474 -26.7461523898806, 153.038922889225 -26.7462370324011, 153.038886378159 -26.7462547297012, 153.038818378936 -26.7462555127694, 153.038767441972 -26.7462616745668, 153.038744037627 -26.7462690192714, 153.038707404361 -26.7462760251834, 153.038670517876 -26.7462701876436, 153.038604672951 -26.7462521122152, 153.038454820367 -26.7462421716645, 153.038481242491 -26.7464035308685, 153.03856320825 -26.746410314028, 153.038635225272 -26.7464636462926, 153.038623816093 -26.7465478773821, 153.038456309712 -26.7467631770319, 153.038384686466 -26.7468821345586, 153.03833970713 -26.7470111891745, 153.038336518776 -26.7470368828969, 153.038175637922 -26.746991788015, 153.037696907708 -26.7471068537933, 153.037578823014 -26.74725607489, 153.03679200591 -26.7474622132035, 153.037402550041 -26.7492774114998, 153.037612443409 -26.7495516144182, 153.038201312946 -26.7493973360508, 153.038234528074 -26.7495935283615, 153.038329516807 -26.7497368745441, 153.038333224259 -26.7497576160021, 153.038343468235 -26.7497943170245, 153.038522511509 -26.7501612813719, 153.038557664038 -26.7502104453081, 153.038979 -26.7500089999748, 153.039275 -26.7498879999749, 153.039606 -26.7498429999749, 153.03978 -26.7499539999749, 153.039872 -26.7504909999749, 153.040657 -26.7504329999748, 153.040815943059 -26.7504170308674, 153.040792 -26.7503209999748, 153.040785 -26.7502849999749, 153.040759 -26.7501509999749, 153.04072 -26.7500199999749, 153.040666 -26.7498939999749, 153.040597 -26.7497739999748, 153.040552 -26.7497119999749, 153.040514 -26.7496599999749, 153.040419 -26.7495559999749, 153.040312 -26.7494599999749, 153.040195 -26.7493749999749, 153.040068 -26.7493019999749, 153.039933 -26.7492409999749, 153.039903 -26.7492309999748, 153.039934 -26.7489329999749, 153.039801 -26.7487289999749, 153.039635 -26.7485269999749, 153.039604 -26.7483479999748, 153.039571 -26.7482089999749, 153.039616 -26.7480869999749, 153.040161 -26.7479339999748, 153.040121 -26.7475959999749, 153.039389 -26.7476789999749, 153.039069 -26.7471129999749, 153.039071 -26.7468199999749, 153.039192 -26.7467199999749, 153.039113 -26.7466419999748, 153.039019 -26.7465359999749, 153.039 -26.7464999999748, 153.039 -26.7464609999748, 153.039004 -26.7464179999748, 153.039041 -26.7463599999748, 153.039159 -26.7462769999748, 153.039189620222 -26.7462627345697, 153.039079776235 -26.7461322570971))\n10378\tHalls Head-Port Mandurah\tReady for service\tPOLYGON ((115.7064950466156 -32.533376613425339, 115.70749819278717 -32.53353716645087, 115.70790722966194 -32.533993384221105, 115.70812918245792 -32.534216969655212, 115.70835113525391 -32.534428117461871, 115.7085844874382 -32.534645765953208, 115.70882856845856 -32.534846454354486, 115.70900559425354 -32.534995698395974, 115.70901766419411 -32.535046576989785, 115.70900559425354 -32.5350657977844, 115.70898983627558 -32.535142680921709, 115.70900140330195 -32.535182253099073, 115.70900584571064 -32.535206561713665, 115.70900224149227 -32.535229739688909, 115.70876151323318 -32.535582496427331, 115.70866193622351 -32.535760004903111, 115.70857979357243 -32.53594090489964, 115.70840209722519 -32.536517521206825, 115.70831760764122 -32.5368889279856, 115.70829279720783 -32.537090741983896, 115.7082961499691 -32.537141054086518, 115.70766180753708 -32.537120137822562, 115.70765376091003 -32.537184582512111, 115.70762157440186 -32.537217370143438, 115.70758402347565 -32.537220761966694, 115.70752501487732 -32.537225284397472, 115.70746600627899 -32.537223023182108, 115.7073587179184 -32.537223588485944, 115.70726752281189 -32.537213978320068, 115.70727489888668 -32.537081697108526, 115.70727691054344 -32.537026297227015, 115.70727825164795 -32.536931891227724, 115.7072339951992 -32.536917758584551, 115.70719543844461 -32.53690588716259, 115.70724740624428 -32.5369075830801, 115.70724925026298 -32.53687917645739, 115.70725042372942 -32.536882992272908, 115.70727288722992 -32.536814307568868, 115.70727657526731 -32.536784628976804, 115.70729753002524 -32.536733892694308, 115.70727615617216 -32.536699479628446, 115.70726551115513 -32.53669672375608, 115.70714078843594 -32.536667893086175, 115.70706199854612 -32.536675807388633, 115.70699661970139 -32.536667893086175, 115.70692654699087 -32.536649661922482, 115.70681624114513 -32.536630300139947, 115.70670425891876 -32.536602882718107, 115.70657333359122 -32.536581401020918, 115.70636730641127 -32.536571225478355, 115.70615641772747 -32.536561615242647, 115.70607611909509 -32.536568964246513, 115.70600789040327 -32.536579705097239, 115.70595676079392 -32.536592141870152, 115.7058922201395 -32.536595533717005, 115.70577889680862 -32.536635670561793, 115.70582985877991 -32.536388630824135, 115.70589959621429 -32.535730043306025, 115.70590294897556 -32.535450212812783, 115.70591568946838 -32.535060144609929, 115.70600621402264 -32.53459884437499, 115.70628985762596 -32.533892191136239, 115.70641994476318 -32.533575608682, 115.70645079016685 -32.533478372418486, 115.7064950466156 -32.533376613425339))\nAYCA-1JG1CU\tSpring Mountain\tContracted\tPOLYGON ((152.906138 -27.7313099999831, 152.906563 -27.7314229999825, 152.906585 -27.7314359999824, 152.906607 -27.7314679999825, 152.906609 -27.7315059999825, 152.906354 -27.7321329999832, 152.905699 -27.7321529999832, 152.905742 -27.7329029999832, 152.905515 -27.7329589999832, 152.905538 -27.7331419999832, 152.905599 -27.7331209999832, 152.905941 -27.7339989999832, 152.906329 -27.7338219999831, 152.906428 -27.7339709999831, 152.906597 -27.7341389999831, 152.906787 -27.7339959999832, 152.906644 -27.7338509999831, 152.906546 -27.7337079999832, 152.907095 -27.7334209999831, 152.907292 -27.7329799999831, 152.907275 -27.7321559999831, 152.907406 -27.7320259999831, 152.907418 -27.7319929999831, 152.907331 -27.7319509999831, 152.90731 -27.7319199999831, 152.907675 -27.7315599999831, 152.90799 -27.7311019999831, 152.908521 -27.7308839999831, 152.908828 -27.7309229999831, 152.909423 -27.7306039999832, 152.909523 -27.7305049999831, 152.909669 -27.7298269999831, 152.908631 -27.7292579999831, 152.907824 -27.7293769999831, 152.907082 -27.7296069999831, 152.907171 -27.7298419999831, 152.907144 -27.7298879999831, 152.906634 -27.7301359999831, 152.906484 -27.7301609999832, 152.906283 -27.7311679999831, 152.906138 -27.7313099999831))\nAYAA-GO2KN\tCardinia Lakes\tReady for service\tPOLYGON ((145.507605858647 -38.0624103221007, 145.506987534338 -38.0653093128579, 145.511240738021 -38.0652075349475, 145.511447420508 -38.0640574518982, 145.511417421367 -38.0640518172595, 145.511381159999 -38.064009330029, 145.511418236175 -38.0640509278095, 145.511473679999 -38.063793780029, 145.511420220121 -38.0638236822351, 145.508556913788 -38.0634389013759, 145.508413431692 -38.0632911104178, 145.508512747882 -38.0628291911243, 145.508859362315 -38.0628757747588, 145.508899856918 -38.0624992126876, 145.508899950166 -38.0624983455678, 145.508900330399 -38.0624812446483, 145.508790262406 -38.0624721806736, 145.508589091394 -38.0624550106435, 145.508239577862 -38.0624391259828, 145.507605858647 -38.0624103221007))\n17325948\tEwer St Carindale\tCheck with carrier\tPOLYGON ((153.116602912 -27.516684964, 153.119406976 -27.5171390095, 153.11942496 -27.517141988000002, 153.11943216 -27.5171030085, 153.119959936 -27.514310045000002, 153.117483136 -27.5139160135, 153.117464032 -27.514017005, 153.117119168 -27.513964983, 153.116602912 -27.516684964))\n17348390\tNorth Byron Beach Resort\tCheck with carrier\tPOLYGON ((153.588858848 -28.626032968500002, 153.590120992 -28.626216026, 153.589932 -28.6255790155, 153.586801088 -28.625325029000003, 153.58678704 -28.625535004, 153.586775168 -28.625606007000002, 153.586743136 -28.625744979, 153.586711072 -28.625848024, 153.58667184 -28.625948997000002, 153.586640896 -28.626014968, 153.586640896 -28.626014968, 153.586563136 -28.626125043000002, 153.58651488 -28.6262610365, 153.585879136 -28.627496004, 153.585564128 -28.627878954, 153.58646592 -28.628380988500002, 153.588366016 -28.628648998, 153.588858848 -28.626032968500002))\n10571\tSecret Harbour\tReady for service\tPOLYGON ((115.75819730758667 -32.400818549598917, 115.75812220573425 -32.401814987213847, 115.75707077980042 -32.40304693124223, 115.75712442398071 -32.403490789309124, 115.75721025466919 -32.403726304948194, 115.75701713562012 -32.404559663044871, 115.75579404830933 -32.405619466032505, 115.75608372688293 -32.406126717760223, 115.75751066207886 -32.406425632622039, 115.75785398483276 -32.405438304010339, 115.75774669647217 -32.404668361359846, 115.75761795043945 -32.403735363229728, 115.75810074806213 -32.403409264521684, 115.75959205627441 -32.40332773966059, 115.75957059860229 -32.400564909177263, 115.75819730758667 -32.400818549598917))\n17315061\tYandina Caravan Park Stage 1\tCheck with carrier\tPOLYGON ((152.95569984 -26.5687499775, 152.95566384 -26.567922953500002, 152.955654112 -26.5676779765, 152.955659168 -26.5673809775, 152.955558016 -26.5668589815, 152.955468 -26.5663929665, 152.955437056 -26.566389988, 152.955375136 -26.5663919675, 152.955352096 -26.566396019000003, 152.955362176 -26.5664690015, 152.955276832 -26.5664850225, 152.955199072 -26.566513013, 152.955127072 -26.5665459615, 152.955060832 -26.5665740445, 152.954993888 -26.5666040145, 152.954790112 -26.5666920375, 152.954492032 -26.5667979685, 152.954421856 -26.56681497, 152.954345152 -26.566838002500003, 152.954268832 -26.566873023, 152.954166976 -26.566901994000002, 152.95408416 -26.5669299845, 152.954000992 -26.566925045, 152.953867072 -26.566901994000002, 152.953709056 -26.566889044, 152.95358016 -26.566867972500003, 152.95350384 -26.566857002000003, 152.953401952 -26.566839982, 152.953296832 -26.566791031, 152.953211168 -26.566769978, 152.95311504 -26.566722988000002, 152.95300416 -26.566613005500002, 152.952927136 -26.566527961000002, 152.952815872 -26.56648197, 152.95270608 -26.566422030000002, 152.952642016 -26.566364976, 152.952527168 -26.566272994000002, 152.952450848 -26.566216014000002, 152.952368032 -26.56615896, 152.952303968 -26.566101998500002, 152.952258976 -26.566066978000002, 152.95220208 -26.566021986, 152.952150976 -26.565986965500002, 152.952089056 -26.5659309845, 152.952036128 -26.5658820335, 152.951982112 -26.5658339705, 152.951906176 -26.56576602, 152.951816896 -26.5656870065, 152.951722912 -26.565606994, 152.951706016 -26.565599964, 152.951695936 -26.5656609955, 152.951270048 -26.568136980000002, 152.954480896 -26.5685810355, 152.95569984 -26.5687499775))\nAYAA-IGN9M\tGreenhills Beach Residential\tReady for service\tPOLYGON ((151.164224730179 -34.0345879914221, 151.163112285158 -34.0362497546519, 151.16268587656 -34.0360833003118, 151.16255546668 -34.0362730112496, 151.161826201279 -34.0359777098236, 151.161666301299 -34.0362427127229, 151.161890857066 -34.0363388083237, 151.161842565451 -34.036424644115, 151.16163438316 -34.0363442464351, 151.161587825217 -34.0363497325831, 151.161398091915 -34.0367292850418, 151.164686395009 -34.0371389663199, 151.165414344594 -34.0367087154287, 151.166198890179 -34.0360785562508, 151.166397927303 -34.0357970221792, 151.166583478477 -34.0355906361669, 151.16674644362 -34.0353029793296, 151.166368972217 -34.0351140289499, 151.16563977966 -34.0343807302554, 151.165627154043 -34.0342740875526, 151.165550013898 -34.0340023978394, 151.165033156054 -34.0340974230373, 151.164530757028 -34.0341389201173, 151.1642136507 -34.0341326033248, 151.164040393037 -34.0341505660729, 151.164130175836 -34.034303644831, 151.16398072354 -34.0343630577078, 151.163946195106 -34.0344668630306, 151.164224730179 -34.0345879914221))\nAYAA-IWBVJ\tGalway Gold Estate\tReady for service\tPOLYGON ((145.481057988543 -38.0572001902837, 145.480105968848 -38.0570660824079, 145.480124838264 -38.0570063103282, 145.47994669679 -38.0569757450888, 145.479490481167 -38.0569546380902, 145.479482061819 -38.0569794790168, 145.479087575592 -38.0569138349859, 145.479125138718 -38.0568121741888, 145.478948286129 -38.0567770736244, 145.477915506234 -38.0566168758139, 145.477070362828 -38.0561232153417, 145.475336361191 -38.0579394292993, 145.480728525819 -38.0586995986591, 145.481057988543 -38.0572001902837))\n17394457\tBoundary warehouses\tCheck with carrier\tPOLYGON ((145.184269728 -38.0843087805, 145.178448096 -38.0835764765, 145.178152512 -38.085072886, 145.18301552 -38.0856489945, 145.183170496 -38.0855959735, 145.184269728 -38.0843087805))\n17324948\tPerricoota Run Stage 3\tCheck with carrier\tPOLYGON ((144.73565712 -36.0924779755, 144.737694016 -36.091195019000004, 144.734817952 -36.0881949665, 144.733408928 -36.0890820045, 144.73378512 -36.0894670265, 144.73380384 -36.0895490185, 144.733770016 -36.089666993, 144.733776832 -36.0897990275, 144.734009056 -36.0897480045, 144.734100128 -36.090555030000004, 144.73431792 -36.090542968, 144.734689088 -36.090650971, 144.735121088 -36.091091974, 144.735117856 -36.091198978, 144.734802112 -36.091469966, 144.735426016 -36.091961011500004, 144.735281984 -36.092086016, 144.73565712 -36.0924779755))\nAYCA-12K0N9\tGreenway - 799 Richmond Rd\tUnder construction\tPOLYGON ((150.847701999976 -33.7233900000067, 150.847806999992 -33.7236200000161, 150.848460999992 -33.7235390000162, 150.848601999992 -33.7235060000162, 150.848689999992 -33.7235390000163, 150.848707999992 -33.7236040000162, 150.848759999992 -33.7241060000162, 150.848669999992 -33.7245650000162, 150.848613999992 -33.7248530000161, 150.848652109267 -33.7251710320827, 150.848669525823 -33.7253034178598, 150.848726737121 -33.7254254915201, 150.848763131037 -33.725476441414, 150.848830999984 -33.7255170000115, 150.848885722692 -33.7255446203463, 150.848954999984 -33.7255740000115, 150.848981999984 -33.7256400000114, 150.849022999984 -33.7256890000115, 150.849032349809 -33.7257059902078, 150.851926277199 -33.7250642024606, 150.85165280261 -33.7239154356834, 150.852129463245 -33.723845397254, 150.851904988586 -33.7229643950684, 150.851912232998 -33.7229106709171, 150.851953714223 -33.7228635454808, 150.852228831705 -33.7228235454511, 150.852197779215 -33.7226339261926, 150.847701999976 -33.7233900000067))\nAYAA-GUYWC\tBrookhaven Rise Estate\tReady for service\tPOLYGON ((144.696452590099 -37.563387875537, 144.696548855238 -37.5634836092478, 144.696568523798 -37.5635170204619, 144.696786268208 -37.5638310292366, 144.696895111016 -37.563989009563, 144.697023425843 -37.5640871144712, 144.697217166708 -37.5643775599408, 144.697422768156 -37.564324824098, 144.697626666077 -37.564272524484, 144.697664142077 -37.5642630057226, 144.699108241124 -37.5627863074173, 144.699510242355 -37.5630355814852, 144.699650290378 -37.5631223712831, 144.699863375303 -37.5630313338136, 144.699872756021 -37.5630001223187, 144.699839256342 -37.5629173262728, 144.699984594351 -37.5628274807955, 144.700200650951 -37.5629423128038, 144.700691300914 -37.5628120973608, 144.698800679999 -37.5615497700251, 144.698209199988 -37.5606240300206, 144.696987814674 -37.5593898295936, 144.696812570043 -37.5597259368854, 144.696838708497 -37.5600198425568, 144.696796080242 -37.5600866597155, 144.696361309929 -37.5602882853857, 144.696505649818 -37.5604274562127, 144.69674268558 -37.5606595906768, 144.696849930989 -37.560764617909, 144.696958950546 -37.5608683585388, 144.697072551379 -37.5609679579763, 144.69720838311 -37.5611006019455, 144.697290336555 -37.5611764427038, 144.697480837033 -37.5613809443107, 144.697324091698 -37.561507596016, 144.697309377696 -37.5615271478439, 144.697034675666 -37.5618601034818, 144.696925918443 -37.5619925689678, 144.696818760935 -37.5621269751963, 144.696728708402 -37.5622370787795, 144.696720766389 -37.5622424403742, 144.69647765581 -37.5624065618872, 144.696167166077 -37.562533089509, 144.69597960836 -37.5626093000965, 144.69610405142 -37.5628713366152, 144.696164080861 -37.5629977367791, 144.696263610228 -37.5629677836263, 144.696366016109 -37.5631834502236, 144.696383871856 -37.5632001254119, 144.696452590099 -37.563387875537), (144.696586941518 -37.5627940974843, 144.696746999988 -37.5627210000205, 144.696881384967 -37.562640614711, 144.697423515245 -37.563389155279, 144.698181165002 -37.5626301716185, 144.698501 -37.5628280000295, 144.697845533873 -37.5634986218135, 144.69777826698 -37.5635638109434, 144.697711 -37.5636290000296, 144.697544 -37.5637550000295, 144.697403193948 -37.5638382859478, 144.697174 -37.5636230000295, 144.696923 -37.5632850000296, 144.696586941518 -37.5627940974843))\nRAWM\tWellington Manor\tReady for service\tPOLYGON ((153.22544932365417 -27.490458180626142, 153.2263720035553 -27.492808957951141, 153.22774529457092 -27.492999302096674, 153.22919368743896 -27.492599579010953, 153.22815299034119 -27.489696784497312, 153.22544932365417 -27.490458180626142))\nAYCA-H7WBI\tSovereign Hills\tUnder construction\tPOLYGON ((152.827631 -31.4549160000096, 152.827522 -31.4547430000095, 152.827027 -31.4539740000096, 152.827028 -31.4539310000095, 152.828154 -31.4528970000095, 152.828523 -31.4525510000096, 152.828662 -31.4524230000095, 152.828504 -31.4522980000096, 152.828398 -31.4523970000095, 152.828356 -31.4523960000095, 152.828217 -31.4522710000095, 152.828443 -31.4520900000095, 152.828155 -31.4518300000095, 152.82825 -31.4513750000095, 152.829027 -31.4514990000095, 152.829141 -31.4515890000096, 152.829337 -31.4513820000095, 152.82944 -31.4514690000095, 152.8295 -31.4515480000095, 152.829523 -31.4515900000095, 152.829771 -31.4515030000095, 152.829934 -31.4514550000095, 152.830067 -31.4513880000095, 152.830163 -31.4512960000095, 152.830221 -31.4511950000095, 152.83025 -31.4510830000096, 152.830271 -31.4509360000095, 152.829897 -31.4508770000094, 152.829951 -31.4505900000095, 152.82846 -31.4503610000095, 152.828442 -31.4504400000094, 152.827099 -31.4502330000095, 152.827061 -31.4504150000095, 152.827024 -31.4504370000095, 152.826674 -31.4503820000095, 152.826647 -31.4505030000095, 152.827 -31.4505570000095, 152.827024 -31.4505870000095, 152.826818 -31.4515800000095, 152.826781 -31.4516030000095, 152.826426 -31.4515460000095, 152.826289 -31.4522220000095, 152.82652 -31.4524130000095, 152.826266 -31.4526550000095, 152.826263 -31.4527250000095, 152.826043 -31.4529240000095, 152.825876206132 -31.4530239070351, 152.825879 -31.4530960000095, 152.825907 -31.4531220000095, 152.825959 -31.4532020000095, 152.825993 -31.4533320000095, 152.826027 -31.4533960000095, 152.826092 -31.4534520000095, 152.826245 -31.4534980000095, 152.826303 -31.4535420000095, 152.826434 -31.4536720000095, 152.826657 -31.4539310000095, 152.826789 -31.4541220000095, 152.826943 -31.4543660000095, 152.82737 -31.4550390000096, 152.827519 -31.4552990000096, 152.827648 -31.4555710000095, 152.82764 -31.4556090000096, 152.827975 -31.4554890000096, 152.827933 -31.4554790000095, 152.827827 -31.4552610000095, 152.827743 -31.4550970000096, 152.827631 -31.4549160000096))\nAYCA-KACMM\tBeverly Hills Estate\tReady for service\tPOLYGON ((149.091830082507 -33.2436355021387, 149.091796153137 -33.243659156622, 149.091797762187 -33.2437085648098, 149.091691804224 -33.2442578949057, 149.092165090775 -33.2442717440585, 149.092240947185 -33.2447153338229, 149.092179071159 -33.24506832387, 149.091766192766 -33.2450090350277, 149.091690290413 -33.2449960665471, 149.091661822577 -33.2449883863948, 149.091613804965 -33.2449710139832, 149.091566665267 -33.2449477298478, 149.091518407561 -33.2449158045031, 149.091499229428 -33.2449001838863, 149.091470383238 -33.2448724741938, 149.091344313384 -33.2447340112349, 149.091319958522 -33.2447059625911, 149.091308544697 -33.2446907313845, 149.091288442984 -33.2446588203337, 149.091270382448 -33.2446208058783, 149.091261723192 -33.2445961826537, 149.091255492118 -33.2445725545832, 149.091249960027 -33.2445389117588, 149.09124830729 -33.2444992173004, 149.091251708408 -33.2444606318336, 149.091298399602 -33.2442405378867, 149.091359003761 -33.2442492804776, 149.091497693189 -33.2435390960525, 149.090919925562 -33.2434509155422, 149.090503287316 -33.2453319772113, 149.094767871004 -33.2458992825417, 149.094795274016 -33.2457622578097, 149.095105248057 -33.2458065883225, 149.095496985053 -33.2439428653151, 149.094882428055 -33.2438530836119, 149.094840634922 -33.2439488902959, 149.092802580004 -33.243619274262, 149.092294598007 -33.243548664759, 149.092271011054 -33.2435439218099, 149.091830082507 -33.2436355021387))\nAYCA-18CNWR\tMacquarie View Estate\tReady for service\tPOLYGON ((148.616670217466 -32.2786208316522, 148.616294894289 -32.2799792978243, 148.617230936442 -32.2801258064525, 148.617228237249 -32.2801415427677, 148.618398226376 -32.2803246506726, 148.618559000002 -32.2795880000133, 148.617945000002 -32.2794890000133, 148.618041000002 -32.2790530000134, 148.618154000002 -32.2790710000133, 148.618185000002 -32.2789290000133, 148.618446000002 -32.2775580000133, 148.618268000002 -32.2775300000133, 148.618371000002 -32.2769860000133, 148.618388000002 -32.2768920000133, 148.618291000002 -32.2768790000133, 148.618211000002 -32.2768610000133, 148.618145000002 -32.2768420000133, 148.618095000002 -32.2768250000133, 148.618047000002 -32.2768050000133, 148.618013000002 -32.2767780000133, 148.618080000002 -32.2764340000133, 148.618434000002 -32.2764810000133, 148.618464000002 -32.2763160000133, 148.618479000002 -32.2762350000133, 148.618507000002 -32.2761380000132, 148.618523000002 -32.2760810000133, 148.618608000002 -32.2759350000133, 148.618723000002 -32.2758120000132, 148.618875000002 -32.2757100000134, 148.619059000002 -32.2756360000133, 148.618942000002 -32.2753390000133, 148.618981000002 -32.2753270000133, 148.618905000002 -32.2751490000133, 148.618725000002 -32.2749340000133, 148.618431000002 -32.2751120000133, 148.618266000002 -32.2752110000134, 148.617998000002 -32.2753730000133, 148.617970000002 -32.2753390000133, 148.617799000002 -32.2755580000134, 148.617682000002 -32.2757790000133, 148.617616000002 -32.2759620000133, 148.616809000002 -32.2758560000133, 148.616753000002 -32.2761640000133, 148.616735000002 -32.2762570000133, 148.616883000002 -32.2762770000133, 148.616787000002 -32.2767770000133, 148.616674000002 -32.2773720000133, 148.616558000002 -32.2779850000134, 148.616540000002 -32.2779840000133, 148.616429000002 -32.2781120000133, 148.616329885894 -32.2785660080436, 148.616585143994 -32.2786053848635, 148.616670217466 -32.2786208316522))\nAYAA-GIMD0\tYellowgum\tReady for service\tPOLYGON ((144.323835048935 -36.6907045065123, 144.324776582068 -36.6908522140407, 144.324904528299 -36.6909908019319, 144.325130945951 -36.6910174637622, 144.325288842905 -36.6902250177841, 144.325375357034 -36.6902369712113, 144.325440498432 -36.6899186124385, 144.325379873444 -36.6897633887454, 144.325424505635 -36.6894431403694, 144.32622604795 -36.6895483415648, 144.326395094655 -36.6895105378134, 144.326526968567 -36.690046752849, 144.326955592628 -36.6901695288294, 144.327349513199 -36.6892779049017, 144.327286735162 -36.6891996127491, 144.327228524622 -36.6890763645058, 144.327197888304 -36.6888597887912, 144.327247952072 -36.6886595337083, 144.327338377295 -36.6885571298452, 144.327401229094 -36.6884760356974, 144.32746752 -36.6884033400286, 144.327597074994 -36.6883484499221, 144.327743422947 -36.6883162636744, 144.327842668252 -36.688284068888, 144.327915382672 -36.688176686553, 144.32786530002 -36.6880659758278, 144.327654632104 -36.6879957002372, 144.327507228924 -36.6879630841304, 144.327390386662 -36.6878975406664, 144.327341801225 -36.6878509763955, 144.327309575959 -36.6878002612456, 144.324471779027 -36.6874688844295, 144.32411652573 -36.6892709454108, 144.323835048935 -36.6907045065123))\n10209\tClarkson-Somerly\tReady for service\tPOLYGON ((115.7239830493927 -31.690390180334045, 115.72402596473694 -31.690303453289157, 115.72451949119568 -31.690120869771839, 115.72480380535126 -31.690011319489024, 115.72547435760498 -31.689938285895323, 115.72578549385071 -31.689965673499692, 115.7261073589325 -31.690011319489024, 115.72634339332581 -31.690088917619384, 115.72660624980927 -31.690189338632926, 115.72686910629272 -31.690371922015533, 115.72721779346466 -31.690613844444197, 115.72708368301392 -31.690910540901378, 115.72741091251373 -31.691143332842124, 115.72757720947266 -31.691357866074398, 115.72766840457916 -31.691663689186402, 115.72763621807098 -31.692051672281128, 115.72753429412842 -31.692298154816353, 115.72757184505463 -31.692375751034533, 115.7277649641037 -31.692462476142779, 115.72770059108734 -31.692617668239457, 115.72775423526764 -31.692681570792068, 115.72774887084961 -31.692731779909678, 115.72548508644104 -31.692832198063385, 115.72549045085907 -31.692617668239457, 115.72552800178528 -31.692549201169971, 115.72525441646576 -31.692549201169971, 115.72529733181 -31.692339235175236, 115.72507202625275 -31.692266203413535, 115.72407424449921 -31.691983204794052, 115.724036693573 -31.691901043742863, 115.72420299053192 -31.691462850241379, 115.72426736354828 -31.69142633402285, 115.72429418563843 -31.691293962610271, 115.72422981262207 -31.691234623639886, 115.72420299053192 -31.690974444629532, 115.72411179542542 -31.690622973580108, 115.72407424449921 -31.690554505038946, 115.7239830493927 -31.690390180334045))\nAYCA-142BGQ\tLLOYD ESTATE\tUnder construction\tPOLYGON ((147.337553998696 -35.1520639984098, 147.337346998696 -35.1530859984094, 147.336381998695 -35.1529599984077, 147.336325998695 -35.1532469984076, 147.336753998695 -35.1534329984083, 147.337541998696 -35.1535369984097, 147.337373998696 -35.1544859984093, 147.337667042758 -35.1545303349954, 147.337654998696 -35.1545889984097, 147.338248998697 -35.1546679984107, 147.338282998697 -35.1544889984108, 147.340880998699 -35.1548399984152, 147.340740998699 -35.154326998415, 147.339993998698 -35.1526539984138, 147.340181998698 -35.1525949984143, 147.339780998698 -35.1517279984137, 147.338900998697 -35.1520119984122, 147.338249998696 -35.152127998411, 147.337549998696 -35.1520439984098, 147.337553998696 -35.1520639984098))\n10649\tTapping-Ashton Heights\tReady for service\tPOLYGON ((115.79671382904053 -31.716962281699793, 115.7993745803833 -31.71641468747362, 115.80005049705505 -31.718887962374538, 115.7999324798584 -31.718951846829881, 115.80002903938293 -31.719253015812036, 115.79918146133423 -31.719481173480464, 115.79899907112122 -31.719955739631974, 115.79856991767883 -31.719809719536421, 115.79856991767883 -31.719736709402387, 115.79748630523682 -31.71919825788806, 115.79712152481079 -31.719271268446171, 115.79671382904053 -31.716962281699793))\n17329917\tCastle Hill Subdivision\tCheck with carrier\tPOLYGON ((151.01356512 -33.720329258, 151.013778112 -33.7208349555, 151.01377952 -33.7208393955, 151.013781408 -33.720843854, 151.0137824 -33.720846055500004, 151.013783872 -33.7208489785, 151.013783936 -33.720849071, 151.013786048 -33.720851975500004, 151.013786528 -33.7208533445, 151.013787392 -33.720854621, 151.013789408 -33.720857322, 151.013789856 -33.72085784, 151.01379216 -33.720859986, 151.013793952 -33.7208619655, 151.013795104 -33.7208635935, 151.013796416 -33.720864833, 151.013798464 -33.7208666275, 151.013799008 -33.7208669975, 151.013801888 -33.720868977, 151.01380512 -33.7208709565, 151.013808 -33.7208730285, 151.01381088 -33.720875008, 151.013810912 -33.7208750265, 151.013814176 -33.720876673, 151.013815904 -33.7208774315, 151.01381808 -33.7208779865, 151.013819392 -33.7208788745, 151.013820992 -33.7208795035, 151.013824512 -33.7208806875, 151.013905184 -33.720905755000004, 151.01395248 -33.720921147, 151.013985824 -33.720933727, 151.013999552 -33.7209087335, 151.014191968 -33.7209147645, 151.014499936 -33.7209239775, 151.01464896 -33.720929009500004, 151.014816 -33.7209339675, 151.014965056 -33.7209389995, 151.015131008 -33.720944031500004, 151.015184672 -33.720945900000004, 151.015272608 -33.7209486565, 151.015315712 -33.72094664, 151.015567904 -33.720934837, 151.015802816 -33.720906828000004, 151.015802848 -33.7209069945, 151.015803136 -33.7209069575, 151.0158232 -33.720984195, 151.015833088 -33.7210218055, 151.015844064 -33.721063597000004, 151.015871872 -33.7211679555, 151.015902848 -33.721286041, 151.01592784 -33.721381834, 151.015933056 -33.721401666, 151.015946176 -33.721424865, 151.01601248 -33.7215419145, 151.016089312 -33.721677593500004, 151.016166176 -33.7218132725, 151.01629328 -33.7220376405, 151.016641888 -33.7224505605, 151.016753888 -33.722583039, 151.0167936 -33.722675095, 151.01692608 -33.7229815475, 151.01713248 -33.723180626, 151.017025216 -33.723258178, 151.017156384 -33.723339097, 151.017285824 -33.7234186285, 151.017285696 -33.723418869, 151.017285952 -33.7234190355, 151.017078976 -33.723813955000004, 151.017034688 -33.7238984075, 151.016879424 -33.724195166, 151.01705808 -33.7242950105, 151.017374368 -33.724404882, 151.017988256 -33.7246175025, 151.018316672 -33.724202344, 151.018426912 -33.7240726035, 151.01842688 -33.7240726035, 151.018384128 -33.7229273055, 151.018372096 -33.7226071815, 151.017951744 -33.721075807, 151.018097504 -33.7205920135, 151.018053728 -33.7205894235, 151.017341408 -33.7205480945, 151.017111168 -33.7205347375, 151.01535312 -33.720433024500004, 151.014928864 -33.7204080865, 151.014381952 -33.720376303500004, 151.01356512 -33.720329258))\n33\tHamilton Reach\tReady for service\tPOLYGON ((153.085595175 -27.443015132, 153.084896026 -27.443598397, 153.084071743 -27.444423624, 153.08378671 -27.444651786, 153.08359719 -27.445013058, 153.08432775 -27.44516129, 153.084556756 -27.445035868, 153.084821872 -27.444929156, 153.084938333 -27.445023333, 153.085435477 -27.445028177, 153.085569107 -27.445230928, 153.085743323 -27.445311691, 153.087552522 -27.445501312, 153.088782775 -27.445552258, 153.089130523 -27.445572421, 153.089061076 -27.445457353, 153.088893134 -27.445408508, 153.088853988 -27.445325405, 153.088770571 -27.445211006, 153.08853328 -27.444965006, 153.088392758 -27.444826518, 153.087738943 -27.444197912, 153.087628722 -27.444097483, 153.087518664 -27.444003461, 153.087327947 -27.443820901, 153.086732041 -27.443216186, 153.08613411 -27.442563713, 153.085595175 -27.443015132))\n10473\tLakelands\tReady for service\tPOLYGON ((115.76794981956482 -32.466192308164004, 115.76932311058044 -32.466174204145354, 115.7691353559494 -32.466889310114546, 115.76955914497375 -32.466961725592263, 115.76936602592468 -32.468161098472194, 115.76930165290833 -32.468446230051839, 115.76891541481018 -32.469411158970054, 115.76850235462189 -32.469903555136163, 115.76814293861389 -32.46985377112798, 115.76813757419586 -32.469948813301535, 115.76632440090179 -32.469980494003757, 115.76637804508209 -32.469514333974949, 115.76676428318024 -32.469582221507927, 115.76674818992615 -32.469229205777523, 115.76725780963898 -32.4680388989474, 115.76745629310608 -32.466495549935331, 115.76791226863861 -32.466518179877326, 115.76794981956482 -32.466192308164004))\n10570\tSecret Harbour\tReady for service\tPOLYGON ((115.75763940811157 -32.400048567545653, 115.75816512107849 -32.400800432449593, 115.75812220573425 -32.401814987213847, 115.7570493221283 -32.403019756187646, 115.75637340545654 -32.402729888429718, 115.75615882873535 -32.402956347695138, 115.756276845932 -32.403173748055465, 115.75516104698181 -32.403508905918571, 115.75446367263794 -32.402122974797052, 115.75468897819519 -32.40196898113679, 115.75465679168701 -32.4016972269779, 115.75591206550598 -32.400764198139996, 115.75613737106323 -32.400456205921287, 115.75700640678406 -32.400320326667241, 115.75763940811157 -32.400048567545653))\nAYCA-NC7MJ\tGlenwood Development\tReady for service\tPOLYGON ((146.936057138263 -36.185263368505, 146.936851201704 -36.1860775201786, 146.937975119998 -36.1861772400272, 146.939004008117 -36.1860987746651, 146.93901516 -36.1858687200275, 146.938984920713 -36.1858527092151, 146.939168363723 -36.1856207719767, 146.938039922271 -36.1849652968097, 146.938275 -36.1846323000274, 146.9388348 -36.1840562100274, 146.93920704 -36.1836733500272, 146.94109416 -36.1839622500274, 146.94126516 -36.1840102200274, 146.94181236 -36.1832658300268, 146.94183576 -36.1831776300275, 146.941650100143 -36.1830075256679, 146.941458027426 -36.1831229832351, 146.941603737708 -36.183252840706, 146.941608729917 -36.183296338594, 146.941476851499 -36.183475516324, 146.941426971163 -36.1834937278418, 146.941225468187 -36.1834629039021, 146.94130976061 -36.1831010793038, 146.940089823816 -36.1829208467016, 146.939914414723 -36.1828940120831, 146.938806016505 -36.1827244395747, 146.93861103469 -36.1826849276965, 146.938222850002 -36.1825815475999, 146.938085657433 -36.1829201029578, 146.93806116537 -36.1830702644335, 146.937952963787 -36.1832918402857, 146.937859059451 -36.1834692181776, 146.937760873212 -36.1836356800108, 146.93765461136 -36.183798850227, 146.937363131713 -36.1841960319083, 146.936839821978 -36.1847273731702, 146.936862440484 -36.1847507225698, 146.936057138263 -36.185263368505))\n17325403\tPatterson Gardens Estate Stage 2\tCheck with carrier\tPOLYGON ((149.12302608 -33.289404022, 149.12327088 -33.288281997, 149.123190976 -33.2881669825, 149.123528992 -33.2879149755, 149.12335584 -33.287717969, 149.123433952 -33.2873579775, 149.123057056 -33.287202004, 149.122963072 -33.287086971, 149.122640896 -33.2870249775, 149.122896128 -33.2861939945, 149.121954016 -33.286017967, 149.122112032 -33.285364029, 149.121738016 -33.2852940065, 149.12157888 -33.285914996, 149.12136 -33.2859030265, 149.121518048 -33.2852280355, 149.120421856 -33.285035968500004, 149.120344096 -33.2854170315, 149.118774112 -33.285246036000004, 149.11866 -33.285671018, 149.120335072 -33.2859699965, 149.12034192 -33.286271047, 149.120390176 -33.2862699555, 149.120420032 -33.285983039, 149.121255968 -33.2862309945, 149.121186848 -33.2864710135, 149.12147088 -33.286535005000005, 149.121361088 -33.286966018, 149.12174016 -33.2870399995, 149.12122608 -33.289161024500004, 149.12133408 -33.2893089875, 149.12302608 -33.289404022))\n10170\tBurns Beach\tReady for service\tPOLYGON ((115.72501301765442 -31.728966545401306, 115.72494328022003 -31.728601530220779, 115.72486817836761 -31.72835058145014, 115.72481989860535 -31.728209137298126, 115.72472870349884 -31.72823195088564, 115.72448194026947 -31.727643358531122, 115.72445511817932 -31.727584042815177, 115.72440147399902 -31.72728290090237, 115.72401523590088 -31.727374156130804, 115.72384893894196 -31.727000009123163, 115.72363436222076 -31.726502665030598, 115.72356462478638 -31.726146765784694, 115.72354853153229 -31.726082886288204, 115.72389185428619 -31.726023569573449, 115.72376847267151 -31.72560835150718, 115.72424590587616 -31.725507968838293, 115.72505593299866 -31.725348268913709, 115.72498083114624 -31.725120125686939, 115.72543144226074 -31.725047119735752, 115.7254958152771 -31.725334580335936, 115.72561383247375 -31.725758925306643, 115.72597861289978 -31.725663105644376, 115.72604835033417 -31.725973378477477, 115.72608590126038 -31.726069197818923, 115.72653114795685 -31.727574917317046, 115.72664380073547 -31.727547540817262, 115.72671890258789 -31.727834993661652, 115.72667062282562 -31.727857807341262, 115.72689592838287 -31.728619781013951, 115.72510957717896 -31.728998484161178, 115.72501301765442 -31.728966545401306))\n17361986\tBalmattum Hill Estate\tCheck with carrier\tPOLYGON ((145.583227008 -36.751287007, 145.581176992 -36.753733003, 145.582910016 -36.754331996000005, 145.5835 -36.7550929935, 145.585232992 -36.752999996, 145.584168 -36.751809003, 145.583948 -36.751702998, 145.583227008 -36.751287007))\n17333322\tMacquarie Heights Estate\tCheck with carrier\tPOLYGON ((151.639039072 -32.944256996, 151.636277888 -32.943192025, 151.635740032 -32.945837044, 151.636151872 -32.946675038500004, 151.636501088 -32.946806962000004, 151.63686 -32.9466989775, 151.637156992 -32.9469389965, 151.637334112 -32.9469710385, 151.637524928 -32.9468380235, 151.63769088 -32.946183993, 151.637837056 -32.945860983, 151.63791408 -32.9457149995, 151.638275168 -32.945856025, 151.638378848 -32.9456590185, 151.638464896 -32.945497014000004, 151.638540128 -32.945354009, 151.638626176 -32.9451920045, 151.638711136 -32.9450290195, 151.638787072 -32.944886995000005, 151.638882848 -32.944704030000004, 151.63881696 -32.944679018, 151.639039072 -32.944256996))\n10079\tBaldivis-Rivergums\tReady for service\tPOLYGON ((115.82303166389465 -32.341835203906079, 115.82502722740173 -32.341855599000013, 115.82511842250824 -32.34184880063588, 115.82510769367218 -32.341540607592016, 115.82534104585648 -32.341540607592016, 115.82534104585648 -32.341418236533471, 115.82541346549988 -32.341345720272535, 115.82541078329086 -32.341250542591858, 115.82559317350388 -32.341248276455389, 115.82559049129486 -32.341089646761169, 115.82506209611893 -32.341091912901611, 115.82507282495499 -32.339505600704719, 115.82555025815964 -32.339503334524537, 115.82555562257767 -32.339077291643925, 115.82219213247299 -32.339070493071056, 115.8224093914032 -32.340756523498143, 115.82303166389465 -32.341835203906079))\n17328997\tCar Mega Mart Stage 2\tCheck with carrier\tPOLYGON ((145.485427008 -38.095363992, 145.485100992 -38.0954519965, 145.484838016 -38.097317000000004, 145.485020992 -38.097503998, 145.486262016 -38.0976729955, 145.486356992 -38.0976230085, 145.486667008 -38.097642008, 145.486731008 -38.0977360065, 145.488162016 -38.0978919985, 145.488624 -38.0956709995, 145.485427008 -38.095363992))\n10532\tMadora Bay\tReady for service\tPOLYGON ((115.75556874275208 -32.476054850522161, 115.75516104698181 -32.476027697467316, 115.75509667396545 -32.475873830001809, 115.75462460517883 -32.475756166468379, 115.75370192527771 -32.475086386502561, 115.75371265411377 -32.474742443502485, 115.75446367263794 -32.474362294447275, 115.75438857078552 -32.474090758425028, 115.75377702713013 -32.473601991521086, 115.75347661972046 -32.472787374117722, 115.75231790542603 -32.473104170650451, 115.75229644775391 -32.472606347027082, 115.75380921363831 -32.472180931931348, 115.75560092926025 -32.472081366405881, 115.75576186180115 -32.473276145444252, 115.75556874275208 -32.473936887648861, 115.75592279434204 -32.474054553560187, 115.75581550598145 -32.474479959802565, 115.75568675994873 -32.474814852664338, 115.75597643852234 -32.474977773065561, 115.75586915016174 -32.475584196412107, 115.75556874275208 -32.476054850522161))\nAYCA-MT9YM\tPotts Hill\tReady for service\tPOLYGON ((151.027218832747 -33.8923523802824, 151.027574480856 -33.8923828274415, 151.027584506638 -33.8923158077289, 151.028466569269 -33.8924218621422, 151.029499548009 -33.892548164935, 151.029488418066 -33.8928542000426, 151.030565591969 -33.8915106905308, 151.029930637159 -33.891421740438, 151.029870943149 -33.8913651462345, 151.030172413075 -33.8898144204061, 151.030022916613 -33.8894510059886, 151.029872102382 -33.8894955454386, 151.028205594239 -33.8892455183281, 151.028178332829 -33.8893742476202, 151.027849639053 -33.8893258348725, 151.02781955999 -33.8894662500153, 151.027709447932 -33.8894503581563, 151.027678910352 -33.8896022385367, 151.027244206447 -33.8895414483589, 151.027256710668 -33.8895691472745, 151.02778542367 -33.8896469149173, 151.027507420014 -33.8909461449472, 151.027464354253 -33.8911656568776, 151.027218832747 -33.8923523802824), (151.029227017519 -33.8898500026136, 151.029631675685 -33.8899097199326, 151.029600419164 -33.8900984311975, 151.029168225558 -33.890048250957, 151.029227017519 -33.8898500026136), (151.028901244511 -33.891202420849, 151.028955871524 -33.89094331611, 151.029259363349 -33.8909819587452, 151.029199303354 -33.8912637602194, 151.028901244511 -33.891202420849))\nAYAA-GR0XZ\tElizabeth Hills\tReady for service\tPOLYGON ((150.844692256359 -33.9012756454489, 150.844996390689 -33.9015700886265, 150.846526362321 -33.9038615526967, 150.848403841974 -33.9034980670476, 150.84751718605 -33.9003555193973, 150.847089425151 -33.9004295473234, 150.847109959182 -33.9005023855688, 150.845827661264 -33.9006810037604, 150.845469838074 -33.9009175591985, 150.845406670703 -33.9008571323732, 150.845155530495 -33.9010395925561, 150.845009821579 -33.9011454870818, 150.844950145221 -33.9010883726524, 150.844692256359 -33.9012756454489))\n10029\tAveley-Vale\tReady for service\tPOLYGON ((115.9892749786377 -31.790171998121004, 115.99238634109497 -31.790162878791559, 115.99349141120911 -31.790190236777228, 115.99338412284851 -31.791913773552412, 115.99090576171875 -31.791822581935605, 115.98971486091614 -31.791995845930632, 115.98867416381836 -31.791658436798642, 115.98913550376892 -31.790162878791559, 115.9892749786377 -31.790171998121004))\nAYAA-FN97T\tAspiri\tReady for service\tPOLYGON ((115.909525216 -32.1417876390121, 115.909524621243 -32.1417877543461, 115.913719568577 -32.14369646538, 115.913869553483 -32.1434307861629, 115.91387466008 -32.1431808591233, 115.913885641721 -32.1419984178104, 115.913458468912 -32.1419895193392, 115.913460897512 -32.1418852714357, 115.913069526107 -32.1418771349138, 115.913069816982 -32.1421482420242, 115.91275362482 -32.1421468579222, 115.91269072414 -32.1420920654767, 115.912685933879 -32.1420307657905, 115.912698493106 -32.1410660566425, 115.912715994723 -32.1405600317033, 115.912555207222 -32.1405586503207, 115.912561883668 -32.140463655413, 115.912547834118 -32.1403097110785, 115.912426963695 -32.1402602972906, 115.911698087175 -32.1399112979385, 115.911065556035 -32.1403593281017, 115.910895798678 -32.1405021823166, 115.910895171101 -32.1407621445078, 115.910577084202 -32.1407623971453, 115.910575069506 -32.1410403678771, 115.910259266079 -32.1410358603981, 115.909525216 -32.1417876390121))\nRAFB\tForresters Beach\tReady for service\tPOLYGON ((151.46664977073669 -33.4038792802728, 151.4634096622467 -33.403198580112885, 151.46440744400024 -33.401353497597654, 151.46822690963745 -33.401720725881539, 151.46664977073669 -33.4038792802728))\n17316951\tKookaburra Rise - Stg 3\u00264\tCheck with carrier\tPOLYGON ((148.659717952 -20.3102260255, 148.661877952 -20.310482972, 148.661908928 -20.310236996, 148.66208208 -20.3101640135, 148.66223904 -20.309982029, 148.662245152 -20.3096870095, 148.662102976 -20.309506024, 148.66191504 -20.3093679585, 148.661852032 -20.3092399755, 148.66233408 -20.309054032, 148.661852032 -20.308419981500002, 148.66194096 -20.308199036, 148.66294608 -20.308317029, 148.66316208 -20.3067060305, 148.662891008 -20.3064390015, 148.662750976 -20.306565005, 148.662495008 -20.3063120175, 148.659948 -20.308596027500002, 148.659717952 -20.3102260255))\n10787\tWWP LBNCo\tReady for service\tPOLYGON ((151.0745644569397 -33.827096739566919, 151.07379198074341 -33.827970177012475, 151.07469320297241 -33.828522755277959, 151.07351303100586 -33.829895272936241, 151.07619524002075 -33.831535135272631, 151.07728958129883 -33.830180468645665, 151.07540130615234 -33.829217929313288, 151.07638835906982 -33.828130603328432, 151.0745644569397 -33.827096739566919))\nAYCA-1D9FGG\tFairway Gardens\tUnder construction\tPOLYGON ((147.013232 -36.0520650000274, 147.01188 -36.0518990000275, 147.01173 -36.0518710000274, 147.011557 -36.0518080000275, 147.011274 -36.0516980000274, 147.010997 -36.0516260000275, 147.010749 -36.0516020000275, 147.010492 -36.0515960000275, 147.010121 -36.0516320000274, 147.009837 -36.0516230000275, 147.00956 -36.0515560000275, 147.009221 -36.0514180000274, 147.008964 -36.0513310000274, 147.008635 -36.0512630000275, 147.008352 -36.0512340000274, 147.008406 -36.0515240000274, 147.008465 -36.0515370000274, 147.008631 -36.0515580000274, 147.008655 -36.0515400000275, 147.008884 -36.0515970000275, 147.009167 -36.0517130000275, 147.00949 -36.0518280000275, 147.009765 -36.0518900000275, 147.010026 -36.0519120000274, 147.010202 -36.0519090000275, 147.010362 -36.0518930000275, 147.01059 -36.0518770000275, 147.010772 -36.0518810000275, 147.010949 -36.0519150000275, 147.011124 -36.0519580000275, 147.011288 -36.0520160000275, 147.01153 -36.0521060000275, 147.011641 -36.0521340000274, 147.011776 -36.0521560000275, 147.01279 -36.0522830000275, 147.012616 -36.0532090000275, 147.012528 -36.0536260000275, 147.01045 -36.0530460000275, 147.010254 -36.0531020000275, 147.010334 -36.0535550000275, 147.010308 -36.0535580000275, 147.010357 -36.0537700000275, 147.010474 -36.0537530000274, 147.010459 -36.0539110000275, 147.01045 -36.0539610000275, 147.010341 -36.0545170000275, 147.010292 -36.0547650000274, 147.010211 -36.0551920000275, 147.010201 -36.0552460000275, 147.010134 -36.0552410000275, 147.010119 -36.0554050000275, 147.010244 -36.0554140000274, 147.010298 -36.0554160000274, 147.010234 -36.0557460000274, 147.012102 -36.0559810000275, 147.012321 -36.0548780000275, 147.012755 -36.0549250000274, 147.013232 -36.0520650000274))\nAYCA-G7OO0\tGap Ridge Industrial Area\tReady for service\tPOLYGON ((116.762107212586 -20.7357517321217, 116.762349996718 -20.7377255428184, 116.764268814311 -20.7375156828747, 116.764617111577 -20.7377400098168, 116.764740791124 -20.7376409343508, 116.765899925619 -20.7371945583086, 116.764904855524 -20.734814350539, 116.762107212586 -20.7357517321217))\n10007\tAveley-Vale\tReady for service\tPOLYGON ((115.98103523254395 -31.78787482485216, 115.97958147525787 -31.78787938462985, 115.97960293292999 -31.787719792276803, 115.97910940647125 -31.787747150985467, 115.97921133041382 -31.79037354932133, 115.98101913928986 -31.790346191389904, 115.98115861415863 -31.791043816112161, 115.98207592964172 -31.791212521953806, 115.98299324512482 -31.790186603295226, 115.98293960094452 -31.789949500474396, 115.98218858242035 -31.789124195528839, 115.98123371601105 -31.789224509230483, 115.98093330860138 -31.789229068941598, 115.98090648651123 -31.788586147453316, 115.98104596138 -31.78856790848063, 115.98103523254395 -31.78787482485216))\nAYCA-10WO6Q\tLot 6 Nicholson Road\tContracted\tPOLYGON ((115.91943745081 -32.1440537855947, 115.919747772736 -32.1441154533725, 115.919804159651 -32.1441070162788, 115.919908768415 -32.1440913637476, 115.919905790179 -32.1443680841823, 115.920045271485 -32.144498448422, 115.92042205201 -32.1444444829489, 115.920563615296 -32.1444427885484, 115.920791536794 -32.144446829885, 115.92095053702 -32.1444496489155, 115.921442468544 -32.1444584333109, 115.921515980904 -32.1448760791918, 115.922695184564 -32.1453275005026, 115.922747440001 -32.1453332300189, 115.92329898032 -32.1433249557376, 115.923037371002 -32.1431655349233, 115.922503427352 -32.1428634143346, 115.922077543503 -32.1426228913454, 115.920938857586 -32.1426124978579, 115.920821674881 -32.141877872436, 115.920035433102 -32.1418718029562, 115.919912158169 -32.1423218843997, 115.919718613945 -32.1430285119225, 115.91943745081 -32.1440537855947))\n10288\tDawesville-Port Bouvard South\tReady for service\tPOLYGON ((115.63154071569443 -32.611006838121021, 115.63178211450577 -32.610821570756954, 115.63171774148941 -32.610536890889627, 115.63168823719025 -32.610405847471931, 115.63165336847305 -32.610073719330281, 115.63163459300995 -32.609911043872735, 115.63160240650177 -32.609581173287815, 115.63159167766571 -32.609454647261614, 115.63162922859192 -32.609352974432454, 115.63170969486237 -32.609226448083859, 115.6318062543869 -32.609070549301393, 115.63188940286636 -32.6089191690645, 115.63196986913681 -32.60877456680825, 115.63208520412445 -32.608455989138648, 115.63225150108337 -32.607976990793375, 115.63231855630875 -32.607796236035078, 115.63242316246033 -32.6074866926642, 115.63251167535782 -32.60715455369693, 115.63244998455048 -32.60681563511374, 115.63234001398087 -32.606612283348248, 115.63224345445633 -32.60644282319101, 115.63214153051376 -32.606300476411135, 115.63193768262863 -32.606020301135985, 115.63178479671478 -32.605819207051468, 115.63166409730911 -32.605674599790291, 115.63146829605103 -32.605498359375076, 115.63126713037491 -32.605484802405705, 115.63104182481766 -32.605552587232083, 115.63095599412918 -32.605595517595589, 115.63091844320297 -32.605821466538082, 115.63085675239563 -32.605995446835387, 115.63077628612518 -32.606239470579091, 115.63075214624405 -32.606379557983438, 115.63078969717026 -32.606634878011668, 115.63085675239563 -32.606797559419952, 115.63093185424805 -32.606942164868151, 115.63092112541199 -32.6071093646266, 115.63087284564972 -32.60726074792246, 115.63075482845306 -32.607470876550835, 115.63058584928513 -32.60779171716144, 115.63039273023605 -32.60816904232437, 115.63008964061737 -32.608580257158749, 115.62996625900269 -32.60875423209724, 115.62988579273224 -32.608898834386338, 115.62989383935928 -32.608941763145964, 115.62982141971588 -32.609102180960363, 115.62984824180603 -32.60913381260815, 115.62981069087982 -32.609626361111, 115.62985092401505 -32.609651214404032, 115.62988042831421 -32.609978825349295, 115.63025325536728 -32.609951712764826, 115.63025325536728 -32.609972047203946, 115.63103377819061 -32.609931378321086, 115.63111156225204 -32.60996978782206, 115.63111960887909 -32.610274803862488, 115.63115447759628 -32.610559484562955, 115.63118934631348 -32.610756049280369, 115.63138782978058 -32.61088257346794, 115.63146024942398 -32.6109616509944, 115.63154071569443 -32.611006838121021))\n17326041\tKinross Road\tCheck with carrier\tPOLYGON ((153.249588 -27.556326986000002, 153.247852096 -27.55609803, 153.247575968 -27.5576869765, 153.247359968 -27.557659985, 153.24695712 -27.5600760295, 153.248909056 -27.560338026500002, 153.249588 -27.556326986000002))\n17337045\talanvale gardens\tCheck with carrier\tPOLYGON ((147.128419072 -41.398637042, 147.12716016 -41.398873028, 147.12657696 -41.397360023999994, 147.124559168 -41.3976490125, 147.12293808 -41.399301969, 147.12534 -41.400001972, 147.128559136 -41.398847016999994, 147.128419072 -41.398637042))\n10002\tAveley-Vale\tReady for service\tPOLYGON ((115.98442554473877 -31.79322877516195, 115.98440408706665 -31.792845775215419, 115.98406076431274 -31.792854894280207, 115.98409295082092 -31.791842672596403, 115.98420023918152 -31.791705885032247, 115.98384618759155 -31.791514382102349, 115.98369598388672 -31.79146878610818, 115.98332047462463 -31.791623812396576, 115.98307371139526 -31.791432309296663, 115.98223686218262 -31.791423190091521, 115.98225831985474 -31.79115873275142, 115.98227977752686 -31.790948990185083, 115.98298788070679 -31.790137373162192, 115.98253726959229 -31.78965404728023, 115.98294496536255 -31.789407823689558, 115.98289132118225 -31.7892983907721, 115.98320245742798 -31.789152480013982, 115.9836208820343 -31.788970091242472, 115.98384618759155 -31.789225435421827, 115.98490834236145 -31.789891150858832, 115.98526239395142 -31.789882031501676, 115.98528385162354 -31.789982344380984, 115.98560571670532 -31.789973225032821, 115.98562717437744 -31.789872912143615, 115.98610997200012 -31.789872912143615, 115.9861421585083 -31.791259044245344, 115.98576664924622 -31.791240805800005, 115.98555207252502 -31.791569097265651, 115.98541259765625 -31.791678527495122, 115.98503708839417 -31.79138671326201, 115.9845757484436 -31.791961221654955, 115.98461866378784 -31.79322877516195, 115.98442554473877 -31.79322877516195))\nAYAA-GYFSE\tKalynda Chase Estate\tReady for service\tPOLYGON ((146.690298682805 -19.3044992828765, 146.690623264659 -19.3044936812896, 146.690681697382 -19.3043562868516, 146.690724774086 -19.3042625277682, 146.690752003142 -19.3042057311392, 146.690784898022 -19.3041417774936, 146.690830396768 -19.3040588199636, 146.690850656228 -19.3040236957775, 146.690898792469 -19.3039441829519, 146.690957510702 -19.3038537981624, 146.690972114135 -19.3038323243375, 146.691050847943 -19.3037226198997, 146.691070506213 -19.3036966929078, 146.691150922641 -19.3035959982054, 146.691176137678 -19.3035660619842, 146.691299374685 -19.3034295861666, 146.691317880127 -19.3034090927391, 146.691432523272 -19.3033017022441, 146.691370142294 -19.3032459559439, 146.691581017612 -19.3030332376368, 146.691415569772 -19.3028853864514, 146.691623200212 -19.3026759405355, 146.691623247213 -19.3026794803149, 146.691855442993 -19.302882753958, 146.692201553663 -19.3025327804622, 146.692399 -19.3025459999103, 146.692421 -19.3022539999104, 146.692510253518 -19.3021058170233, 146.692531750048 -19.3018324321364, 146.692711290637 -19.2996880023286, 146.692444292726 -19.2996645532291, 146.691887031316 -19.2996210448729, 146.691676796477 -19.3016002151222, 146.691358230598 -19.3019331984461, 146.691475299227 -19.3020476826804, 146.691216032752 -19.3023058631389, 146.691009827997 -19.302511203288, 146.690211340145 -19.3018116895538, 146.689873041504 -19.3015180119776, 146.689260316716 -19.3014791673726, 146.689239490294 -19.3017206973608, 146.689256786242 -19.3017584103578, 146.689059917669 -19.3017445408189, 146.688772041615 -19.3017242593501, 146.688657248622 -19.3032345348143, 146.689421431821 -19.3032860192746, 146.689704325722 -19.303434238884, 146.689814628656 -19.3035274658803, 146.690085077284 -19.3036667522814, 146.689873464358 -19.3040998600791, 146.689710841509 -19.3045649072253, 146.689711555489 -19.3045650839105, 146.690008858663 -19.3046386557626, 146.690258719091 -19.3046165853167, 146.690298682805 -19.3044992828765))\n10582\tSecret Harbour\tReady for service\tPOLYGON ((115.75394868850708 -32.415387169732384, 115.75353026390076 -32.41540981250877, 115.75351417064667 -32.415523026305429, 115.75307428836823 -32.415509440657324, 115.75305819511414 -32.415210555881636, 115.7525646686554 -32.4152060273168, 115.7525646686554 -32.415269427203619, 115.75218915939331 -32.415264898641752, 115.75218379497528 -32.4151788559231, 115.75178146362305 -32.415160741656095, 115.75169563293457 -32.415251312954794, 115.75128257274628 -32.415296598570052, 115.75128793716431 -32.416093621678456, 115.75085878372192 -32.416098150198728, 115.75075685977936 -32.416034750894212, 115.7503867149353 -32.41604380794044, 115.75037598609924 -32.415427926725776, 115.74901342391968 -32.415450569491931, 115.74901878833771 -32.415319241369161, 115.74855208396912 -32.415341884162579, 115.74848771095276 -32.416913280145522, 115.75257539749146 -32.416949507972248, 115.75387895107269 -32.416935922538926, 115.75388967990875 -32.416474016589135, 115.75405061244965 -32.416496659092779, 115.75408279895782 -32.416202306102292, 115.75393795967102 -32.4161706064922, 115.75394868850708 -32.415387169732384))\n10693\tWannanup-Port Bouvard North\tReady for service\tPOLYGON ((115.64508318901062 -32.5945576768249, 115.64574301242828 -32.59407860416264, 115.64513683319092 -32.593551614214107, 115.64507514238358 -32.593601329713167, 115.64453065395355 -32.593104173481414, 115.64455211162567 -32.593072536173324, 115.64421951770782 -32.592866893398494, 115.64408808946609 -32.593009261523626, 115.64484983682632 -32.593836348062624, 115.64363479614258 -32.594593833148295, 115.64342021942139 -32.594923758925368, 115.64333438873291 -32.595140695760662, 115.6434041261673 -32.59541638556437, 115.64373135566711 -32.595852057053236, 115.64351409673691 -32.596071251373658, 115.64360529184341 -32.596145822515076, 115.64337193965912 -32.596383093915769, 115.64376354217529 -32.596577889029113, 115.64386546611786 -32.59649653908221, 115.64516365528107 -32.59726484119102, 115.64566254615784 -32.596708952677083, 115.64769566059113 -32.597883997508418, 115.64822137355804 -32.597224166538645, 115.64513683319092 -32.595448022044955, 115.64529240131378 -32.595167812828137, 115.64527630805969 -32.594928278448123, 115.64521729946136 -32.594706821564884, 115.64508318901062 -32.5945576768249))\n17340599\tLeisure Life Village - 3 Parkside Pde Toronto\tCheck with carrier\tPOLYGON ((151.566399008 -33.027171036, 151.566080032 -33.0288010155, 151.566956992 -33.028797963, 151.56933696 -33.0280440325, 151.569479872 -33.0278030145, 151.569416896 -33.027729033, 151.569492128 -33.02734797, 151.569702016 -33.0272679575, 151.569716032 -33.0271990265, 151.569735136 -33.027103973500004, 151.569803872 -33.026949998, 151.569893888 -33.026822015, 151.570077856 -33.026776024, 151.570212832 -33.026778984, 151.570302848 -33.026688001000004, 151.57030896 -33.0264600255, 151.570248832 -33.0262399865, 151.569952928 -33.026132964, 151.569713888 -33.0261979545, 151.569434176 -33.0262029865, 151.569282976 -33.025887987000004, 151.568435872 -33.025787014, 151.568442016 -33.025754972, 151.567770976 -33.0257490335, 151.567656128 -33.0257060025, 151.56750096 -33.0257060025, 151.56739584 -33.0258760175, 151.567309088 -33.026511955000004, 151.567072928 -33.026985, 151.56693216 -33.027074003500005, 151.566710048 -33.027086972, 151.566399008 -33.027171036))\n10702\tWannanup-Port Bouvard East\tReady for service\tPOLYGON ((115.64143002033234 -32.605146336466021, 115.64374208450317 -32.606954839016176, 115.64403176307678 -32.60618662000698, 115.64484179019928 -32.60263373321785, 115.64393520355225 -32.6022812400748, 115.64143002033234 -32.605146336466021))\n10075\tBaldivis-Rivergums\tReady for service\tPOLYGON ((115.82380414009094 -32.336491530921627, 115.82383096218109 -32.336867728572592, 115.82216799259186 -32.336908520994982, 115.82111120223999 -32.336926650954609, 115.82114338874817 -32.337139677707945, 115.82191050052643 -32.337121547791, 115.82198560237885 -32.337302846796909, 115.82218408584595 -32.3386127213232, 115.822194814682 -32.339070493071056, 115.82494139671326 -32.339065960688878, 115.82494139671326 -32.338363438704519, 115.82506477832794 -32.338363438704519, 115.82506477832794 -32.337311911737679, 115.82541346549988 -32.337311911737679, 115.82540810108185 -32.337262054552248, 115.82561194896698 -32.3372711194971, 115.82559585571289 -32.337117015311215, 115.82566022872925 -32.337030898151859, 115.82572460174561 -32.336786143672654, 115.82565486431122 -32.336758948689642, 115.82559585571289 -32.336650168675952, 115.82559585571289 -32.336364620517948, 115.82559049129486 -32.336201449737459, 115.82566559314728 -32.336133461825419, 115.82597136497498 -32.336128929296137, 115.82595527172089 -32.335992953312058, 115.8256334066391 -32.335997485848146, 115.82559049129486 -32.33593856286123, 115.82540273666382 -32.33594762793863, 115.82539737224579 -32.3358841723777, 115.82505941390991 -32.335920432703688, 115.825075507164 -32.3364598033374, 115.82380414009094 -32.336491530921627))\n17319550\t32-40 Cawarra Road\tCheck with carrier\tPOLYGON ((151.129942912 -34.0320390325, 151.129821952 -34.031842026, 151.129224 -34.0308749755, 151.129346048 -34.030203037, 151.129441088 -34.029684001, 151.129343872 -34.0296720315, 151.126206848 -34.0292719875, 151.126158976 -34.029536038, 151.126134848 -34.029673012, 151.125990848 -34.030466995000005, 151.12593504 -34.030782993500004, 151.125904096 -34.0309569675, 151.12587888 -34.031094034, 151.125802912 -34.0315149645, 151.126158976 -34.031561048, 151.129801088 -34.0320220125, 151.129942912 -34.0320390325))\n17329919\t800 MONTPELIER DRIVE\tCheck with carrier\tPOLYGON ((150.570492128 -34.084847967, 150.568026112 -34.084492027, 150.566739136 -34.086988972, 150.570078848 -34.087456985, 150.570302048 -34.086276981000005, 150.570348128 -34.0862399995, 150.570414016 -34.086170976, 150.57043488 -34.0861120165, 150.57045504 -34.086059014, 150.570443872 -34.085993043, 150.57039312 -34.085922021500004, 150.570473056 -34.085464017, 150.570545056 -34.085428016, 150.570560896 -34.0852930215, 150.57048384 -34.085259, 150.570438848 -34.085220039, 150.570492128 -34.084847967))\nAYCA-1F7L92\tZuccoli\tReady for service\tPOLYGON ((131.008578999993 -12.5056259998882, 131.009052999993 -12.5055189998882, 131.009117999993 -12.5055589998882, 131.009118999993 -12.5055599998882, 131.009340999993 -12.5065109998882, 131.009097999993 -12.5065279998882, 131.009025999993 -12.5068569998882, 131.010565999993 -12.5068379998882, 131.010768999993 -12.5068349998882, 131.010815999993 -12.5066929998882, 131.010859999993 -12.5065179998882, 131.011222999993 -12.5065129998882, 131.011226999993 -12.5067929998882, 131.011391999993 -12.5067909998882, 131.011646999993 -12.5067879998882, 131.011830999993 -12.5067769998882, 131.012771999993 -12.5067649998882, 131.012769999993 -12.5066469998882, 131.013137999993 -12.5066429998882, 131.013120999993 -12.5052869998882, 131.012752999993 -12.5052919998882, 131.012623999993 -12.5051149998882, 131.012483999993 -12.5050259998882, 131.011771999993 -12.5048899998882, 131.011397999993 -12.5048679998882, 131.011172999993 -12.5048829998882, 131.011042999993 -12.5048919998882, 131.010868999993 -12.5048969998882, 131.010628999993 -12.5048529998882, 131.010538999993 -12.5048729998882, 131.010433999993 -12.5049759998882, 131.010405999993 -12.5049819998882, 131.010360999993 -12.5047889998882, 131.009127999993 -12.5046949998882, 131.008401999993 -12.5048589998882, 131.008578999993 -12.5056259998882))\n10186\tCanningvale-Avenues\tReady for service\tPOLYGON ((115.92247188091278 -32.091732005038793, 115.92253156006336 -32.091565554245413, 115.92255301773548 -32.091491702260463, 115.9227179735899 -32.091375811332959, 115.92263750731945 -32.091303663475415, 115.92288091778755 -32.0911076709764, 115.92301838099957 -32.09102756957315, 115.92324368655682 -32.090839529832905, 115.92325005680323 -32.090844926749277, 115.92353604733944 -32.090615699547, 115.92376202344894 -32.090590135139344, 115.92403627932072 -32.090371985236487, 115.9243132174015 -32.0901538348128, 115.92474371194839 -32.089810701321646, 115.92501796782017 -32.089590845245191, 115.92521511018276 -32.089531762385107, 115.92525903135538 -32.089499664469152, 115.92548131942749 -32.089319291014867, 115.92589370906353 -32.0896939561066, 115.92630140483379 -32.090066347256993, 115.92638522386551 -32.09090372471222, 115.92619344592094 -32.091179250894335, 115.92656023800373 -32.091513573816073, 115.92678520828485 -32.091717092650725, 115.92696659266949 -32.091883117100537, 115.92651966959238 -32.092239308828624, 115.9261647798121 -32.092524204402693, 115.92600342817605 -32.092642792278589, 115.92584744095802 -32.092760243831513, 115.92426761984825 -32.092034797001396, 115.92366680502892 -32.091927144063987, 115.92306800186634 -32.091839232138426, 115.92285443097353 -32.091810046496612, 115.92265510931611 -32.091779547135907, 115.92247188091278 -32.091733141220629, 115.92247188091278 -32.091732005038793))\nAYAA-EW1BR\tShoal Point Waters\tReady for service\tPOLYGON ((149.151202655373 -21.011116523858, 149.151146545911 -21.0111254381239, 149.15109987584 -21.011249289184, 149.151018742964 -21.0113293121475, 149.15097692047 -21.0113480805903, 149.150435033729 -21.0114924529054, 149.150281147832 -21.0114612034392, 149.150143168241 -21.0114741477725, 149.150021031735 -21.0115338023197, 149.149653570342 -21.0114901265638, 149.14961035435 -21.011438216034, 149.149718656918 -21.0105028582641, 149.148820497636 -21.0102076371667, 149.14878839037 -21.0102937617401, 149.148447073679 -21.0102194743175, 149.148461945786 -21.0101015807267, 149.148294822098 -21.0100829918468, 149.148290684083 -21.010115794518, 149.147944666663 -21.0100773073436, 149.147859954336 -21.0107444402755, 149.14801074326 -21.0107612125332, 149.14796775571 -21.0111019728608, 149.147920401499 -21.0110967056746, 149.147898341995 -21.011271569523, 149.148007623874 -21.011284909556, 149.148081393921 -21.0112977351057, 149.148162671487 -21.0113224710608, 149.148341456037 -21.0113886709315, 149.148300478278 -21.0117135052124, 149.148786179552 -21.0118949251009, 149.149134843538 -21.0119363682649, 149.149069197536 -21.0122230728982, 149.149549704569 -21.0125982397172, 149.149352664731 -21.0128147444456, 149.149211123978 -21.0128714120272, 149.149343139755 -21.0131621401398, 149.1492353294 -21.0132053032723, 149.149118743681 -21.0132413537906, 149.148994447475 -21.0132585519373, 149.149006407528 -21.0134474322513, 149.149037202629 -21.0134507629221, 149.149120486306 -21.0137421135354, 149.149041149745 -21.0137738766446, 149.148353442022 -21.0136994959513, 149.148249847077 -21.0152566281275, 149.149206163314 -21.0153621477217, 149.149307789779 -21.0153359530435, 149.150018628947 -21.0150513613696, 149.150075257212 -21.0151759812253, 149.150230053146 -21.0151139646355, 149.150173440904 -21.0149893803089, 149.150483064398 -21.0148654177963, 149.149850899169 -21.013474225464, 149.149995500173 -21.0133802543066, 149.150229716948 -21.0130937018502, 149.150262994244 -21.0131172083186, 149.150355493157 -21.0130017483927, 149.150100524573 -21.0128216429648, 149.150078198233 -21.0127719228752, 149.15008954515 -21.0127460905447, 149.150268550468 -21.0125419171942, 149.150333772794 -21.0120087841239, 149.150384267386 -21.0118814670013, 149.150473954172 -21.0117779885648, 149.150604021916 -21.0117196391115, 149.151098112564 -21.0115973870773, 149.151178821188 -21.011598062323, 149.151236339947 -21.0116270102975, 149.151239539578 -21.0116881486497, 149.151298836465 -21.0116875059642, 149.151297354966 -21.0115811185569, 149.151202655373 -21.011116523858))\nAYCA-14TLE6\tGeraldton Heights\tReady for service\tPOLYGON ((114.664126999979 -28.7357469207182, 114.663819445762 -28.7357471533768, 114.663562988785 -28.7357492049094, 114.661395694296 -28.7357495703547, 114.661406685336 -28.7351489492321, 114.661167038253 -28.735149875247, 114.661125158086 -28.7352004121983, 114.66112589054 -28.7358492749831, 114.66103979347 -28.735848067826, 114.661046559622 -28.7350401422437, 114.661011996858 -28.7350396187498, 114.661012675849 -28.735006604907, 114.660398999989 -28.7350059999864, 114.660401999989 -28.7351449999864, 114.660613999989 -28.7351449999864, 114.660613074661 -28.7363489019472, 114.660482605848 -28.7363516329955, 114.660479999049 -28.7364896706755, 114.660822999989 -28.7364869999865, 114.660821999989 -28.7376899999865, 114.660821321007 -28.7378521799023, 114.660888999989 -28.7378519999865, 114.663388469955 -28.7378920482905, 114.663468221272 -28.7379066066062, 114.663502290106 -28.7379360828215, 114.663516036658 -28.7380122816695, 114.663570317458 -28.7380150494931, 114.664198164526 -28.7380083567224, 114.664201923985 -28.7378552832926, 114.66421299999 -28.7376919999865, 114.66414199999 -28.7376919999865, 114.66414199999 -28.7364889999865, 114.664213999989 -28.7364899999865, 114.66419399999 -28.7363499999865, 114.664126999989 -28.7363499999865, 114.664126999979 -28.7357469207182))\n10187\tCanningvale-Avenues\tReady for service\tPOLYGON ((115.92517420649529 -32.089038646255204, 115.92604123055935 -32.088347256601061, 115.92611867934465 -32.088335894360924, 115.92614583671093 -32.088317146661609, 115.9261610917747 -32.088329503100226, 115.92619244009256 -32.088327088623842, 115.9263738244772 -32.088488148261483, 115.92650391161442 -32.088420543016049, 115.9270504117012 -32.08798366421572, 115.92929609119892 -32.090028852564551, 115.92882804572582 -32.09040379879643, 115.92836268246174 -32.090771358230285, 115.92775046825409 -32.091258784070725, 115.926967933774 -32.091881980920554, 115.92619545757771 -32.091178682799971, 115.92638522386551 -32.090903156616129, 115.92630140483379 -32.090064074851824, 115.9259419888258 -32.089738552228241, 115.92517420649529 -32.089038646255204))\n165\tCanterbury Lakes\tUnder construction\tPOLYGON ((144.3880579328667 -38.029560633247478, 144.39036999703626 -38.0298437421778, 144.38970480920185 -38.033350821776786, 144.38803111078033 -38.033131106057738, 144.38819204331671 -38.0324128000682, 144.38748930455591 -38.032290264813895, 144.38761268617492 -38.03178322020284, 144.3880579328667 -38.029560633247478))\nAYCA-17SASX\tPaech Road Residential Subdivision\tUnder construction\tPOLYGON ((138.887281999993 -35.0898210000208, 138.887594999993 -35.0899160000208, 138.887837999993 -35.0893780000208, 138.887539999993 -35.0892870000208, 138.887593999993 -35.0891830000208, 138.887566999993 -35.0891470000208, 138.887640999993 -35.0886220000208, 138.887676999992 -35.0885960000208, 138.887684999993 -35.0884610000208, 138.887653999993 -35.0884330000208, 138.887682999993 -35.0877180000208, 138.890403766609 -35.0877673064688, 138.890509755195 -35.0878604685577, 138.890653537896 -35.0878645075845, 138.890732562761 -35.0879370710756, 138.890886809435 -35.0878368817367, 138.890896697152 -35.0875990720211, 138.890790852467 -35.0875059140023, 138.890899996432 -35.0848808146565, 138.890962328756 -35.0848329638259, 138.890625203763 -35.0848218224287, 138.890557321038 -35.0864632702243, 138.888789388432 -35.0864135987949, 138.888743641564 -35.0875029716121, 138.887582999993 -35.0874710000207, 138.886210112065 -35.0874343619867, 138.885600040202 -35.0874180768548, 138.885587242127 -35.0875842118844, 138.886200345021 -35.0876062054296, 138.886171915124 -35.0884032112362, 138.885431844775 -35.0883820551655, 138.885385999992 -35.0895710000207, 138.886844999992 -35.0896160000208, 138.887139999992 -35.0897060000208, 138.887107999993 -35.0897770000208, 138.887220999993 -35.0898110000208, 138.887281999993 -35.0898210000208))\nAYCA-NLVNW\tOsprey Subdivision\tContracted\tPOLYGON ((118.616142056594 -20.4185619453499, 118.616147542222 -20.418652021323, 118.615479646884 -20.4186780400265, 118.614823664093 -20.4186496006532, 118.614739306898 -20.4186459432641, 118.614659584341 -20.4202709830569, 118.614521834102 -20.4224309879442, 118.616714674117 -20.4223316674584, 118.616630649863 -20.4211993886601, 118.616598858007 -20.4205310415129, 118.61645174293 -20.4192023776102, 118.616567543603 -20.4191931275919, 118.616549108539 -20.4187570007443, 118.616576063097 -20.4187249030171, 118.616539898116 -20.4185467182658, 118.616142056594 -20.4185619453499))\nAYCA-189LZC\tOakwood Rise\tReady for service\tPOLYGON ((153.286215 -27.8279889999839, 153.290493 -27.828994999984, 153.290696 -27.829033999984, 153.290681 -27.8280009999839, 153.290912 -27.8272179999839, 153.290608 -27.8275289999839, 153.28653 -27.8262029999839, 153.286215 -27.8279889999839))\n17328227\tRidgeview Estate\tCheck with carrier\tPOLYGON ((150.69247488 -34.0858359965, 150.692421952 -34.0856610235, 150.692364 -34.085617012, 150.692259968 -34.0852770005, 150.692192992 -34.0850580345, 150.692118112 -34.0848109855, 150.692144032 -34.084749954, 150.692133952 -34.084718004500004, 150.691780096 -34.084661043000004, 150.691722112 -34.084472047, 150.691520896 -34.0844380255, 150.691496032 -34.084433974, 150.691429088 -34.084422985, 150.691268896 -34.084396974, 150.691106176 -34.084370963, 150.690943072 -34.084343971500004, 150.690778912 -34.0843169615, 150.690615136 -34.08428997, 150.690450976 -34.0842629785, 150.69037104 -34.084249011000004, 150.690205088 -34.084222019500004, 150.690195008 -34.08422004, 150.690038048 -34.084195028, 150.689945888 -34.084179007, 150.689683072 -34.084135976, 150.689508832 -34.084107005, 150.68862288 -34.0839610215, 150.686804896 -34.083662043000004, 150.68654496 -34.084941022, 150.687606976 -34.0851169755, 150.688649152 -34.085287971, 150.689046976 -34.0853540345, 150.689252896 -34.085387963500004, 150.689444032 -34.085419025, 150.689449088 -34.0854200055, 150.68947104 -34.0854239645, 150.689645984 -34.0854530465, 150.689847968 -34.0854859765, 150.69004992 -34.085519017500005, 150.690185984 -34.085540977, 150.69026304 -34.0855540195, 150.690485888 -34.085591001000004, 150.690524032 -34.085597032, 150.690709088 -34.085628001, 150.690932992 -34.0856649825, 150.69115584 -34.085700983500004, 150.69137904 -34.0857379835, 150.691626016 -34.0857790165, 150.692076 -34.085852998, 150.69247488 -34.0858359965))\nAYAA-GS0IM\tHarvest Lakes\tReady for service\tPOLYGON ((115.865516044205 -32.1607065295207, 115.867602274265 -32.1607655259466, 115.867605529793 -32.1605991488483, 115.867669607945 -32.1606023453702, 115.867698539909 -32.1605916651357, 115.867699409084 -32.1602372553059, 115.867810676989 -32.1601961804821, 115.867756618653 -32.1600902159164, 115.867759547321 -32.1584885032953, 115.868030870247 -32.1584886622716, 115.868031244175 -32.158294859466, 115.867950325359 -32.1582385737932, 115.867952118128 -32.1577486385705, 115.86863104036 -32.15774802476, 115.868635032689 -32.1575464431002, 115.868935852442 -32.1575491325622, 115.868936291837 -32.1573395266199, 115.866761243737 -32.1573288259432, 115.865520681628 -32.1587472226939, 115.865516044205 -32.1607065295207))\nAYCA-1FTKWE\tMolonglo Valley - Coombs Stage 1\tReady for service\tPOLYGON ((149.048650961069 -35.3198709016713, 149.048699438006 -35.3200053240475, 149.048789711006 -35.3202747370475, 149.048901031006 -35.3202496810474, 149.049020089006 -35.3206049940474, 149.048995104006 -35.3208401340475, 149.048986935007 -35.3209170150476, 149.048903094006 -35.3210500880474, 149.048655844006 -35.3214013970474, 149.048331979006 -35.3212482900475, 149.048260551006 -35.3213497780475, 149.048086100006 -35.3215976450473, 149.047745437006 -35.3220816680476, 149.047753499006 -35.3221062880474, 149.047602397006 -35.3223209760474, 149.047572357006 -35.3223275830475, 149.047418757107 -35.3225458172653, 149.047448655006 -35.3225604260475, 149.047512095006 -35.3225904180474, 149.047473186006 -35.3226552590475, 149.047319335019 -35.3228738490396, 149.047182688329 -35.3230667583739, 149.047905096019 -35.3234082780393, 149.048677867006 -35.3237735980474, 149.048698023006 -35.3238351480474, 149.048677298532 -35.3238645936912, 149.048888331163 -35.3239615805794, 149.049406221006 -35.3232257440475, 149.049481322006 -35.3232092250474, 149.049787383668 -35.3233537338782, 149.049958783022 -35.3230713764947, 149.04951778028 -35.3228688195761, 149.049883396006 -35.3223493270475, 149.049897016013 -35.3223293940435, 149.049916280013 -35.3222989810435, 149.049937083006 -35.3222625280475, 149.049955880013 -35.3222253490435, 149.049982650006 -35.3221619770475, 149.049999879006 -35.3221102130475, 149.050013318006 -35.3220577010473, 149.050020882006 -35.3220179370474, 149.050026273006 -35.3219779370474, 149.050032765013 -35.3218968810434, 149.050046122013 -35.3218156630434, 149.050077819013 -35.3217095560433, 149.050111752013 -35.3216324670434, 149.050185185013 -35.3215075620435, 149.050241155013 -35.3214038500434, 149.050288626006 -35.3212973280475, 149.050321542006 -35.3212067520474, 149.050343453013 -35.3211333050433, 149.050372205013 -35.3210031240434, 149.050389938013 -35.3208526400432, 149.050392113006 -35.3207203560476, 149.050376599006 -35.3205507650474, 149.050350379013 -35.3204202250434, 149.050318173006 -35.3203099360473, 149.050064446006 -35.3195527470474, 149.049194945006 -35.3197484610475, 149.048650961069 -35.3198709016713))\n17325807\tCoomera Rivers\tCheck with carrier\tPOLYGON ((153.366432832 -27.847922043500002, 153.366837856 -27.8459530145, 153.363896992 -27.84547503, 153.363414976 -27.847904043, 153.363675968 -27.8479559725, 153.363926176 -27.8480069955, 153.364100032 -27.848032026000002, 153.36437904 -27.8481519985, 153.364457152 -27.8481519985, 153.365006176 -27.848160009, 153.365236928 -27.848177010500002, 153.365585056 -27.848244961000002, 153.365729056 -27.848279963, 153.366123968 -27.848339015, 153.366211072 -27.847887023000002, 153.366432832 -27.847922043500002))\nAYCA-EW20T\tNorthview Estate\tReady for service\tPOLYGON ((150.903164719861 -32.2437856266902, 150.900773573071 -32.2458014509632, 150.901786726436 -32.2461901502377, 150.901087232943 -32.246621636206, 150.900714262177 -32.2467892119897, 150.900739581757 -32.2468071821599, 150.901118995755 -32.2466419687028, 150.901839708956 -32.2462104768285, 150.902471680297 -32.2464529284333, 150.902546955 -32.2463941674277, 150.903432337 -32.2468355448277, 150.904057147977 -32.2470180367545, 150.904216130361 -32.2466045332233, 150.904308965754 -32.2464406984685, 150.904555719536 -32.2461686975425, 150.904770974535 -32.2462872747976, 150.904954274565 -32.2463389482613, 150.905311609547 -32.2464396823767, 150.905693700743 -32.2460184876195, 150.905480075296 -32.245760333848, 150.903941630734 -32.2444482478781, 150.904041954447 -32.2443487295366, 150.903972105224 -32.2443023996373, 150.903878230516 -32.2443941748543, 150.903164719861 -32.2437856266902), (150.903904421329 -32.2459599724073, 150.903991148565 -32.2458869626972, 150.904159147397 -32.2460289384691, 150.904069346404 -32.2461040765562, 150.903904421329 -32.2459599724073), (150.903273178146 -32.2466830087602, 150.903076551258 -32.2465869795818, 150.903240362856 -32.2463182369541, 150.903431109701 -32.2463960100873, 150.903273178146 -32.2466830087602), (150.90397766 -32.2465804568276, 150.904178992604 -32.2466368450906, 150.904036327499 -32.2470047011864, 150.903835007 -32.2469483117277, 150.90397766 -32.2465804568276))\nAYAA-FOSEA\tCitiswich\tReady for service\tPOLYGON ((152.812868512 -27.5980758249814, 152.812268896 -27.6016689134814, 152.814379296 -27.6019571804814, 152.81444 -27.6015980954814, 152.814369216 -27.6014053624814, 152.814559758773 -27.6002841252754, 152.81499179455 -27.6003554657317, 152.815047540372 -27.5999921045015, 152.815075276114 -27.5996648110014, 152.815062 -27.5996909999807, 152.815034 -27.5997109999807, 152.81500105914 -27.5997153833287, 152.814963747165 -27.5997079277421, 152.81493834986 -27.5996854278577, 152.814732416 -27.5993882149814, 152.814877792 -27.5993084244814, 152.814823488 -27.5987128354814, 152.814884096 -27.5983538059814, 152.812868512 -27.5980758249814), (152.812487446886 -27.6003605714794, 152.812795955634 -27.6003954736526, 152.812775682426 -27.6005015792108, 152.812468954701 -27.6004713351024, 152.812487446886 -27.6003605714794), (152.813677351097 -27.599751343555, 152.81382713901 -27.5997660455197, 152.813788286483 -27.6000544192629, 152.813632228893 -27.600036089951, 152.813677351097 -27.599751343555), (152.813997060998 -27.6017176454382, 152.814025551597 -27.6015401909611, 152.814439735763 -27.601598161227, 152.814409565196 -27.6017779341939, 152.813997060998 -27.6017176454382), (152.813996660607 -27.6017188985184, 152.814409558492 -27.6017779687095, 152.81437929964 -27.6019570230558, 152.813966191546 -27.601899030123, 152.813996660607 -27.6017188985184))\nAYAA-FYWH5\tMcKeachies Run\tReady for service\tPOLYGON ((151.544117731639 -32.6957247909062, 151.545811841389 -32.6958078522433, 151.545845363453 -32.6954621293364, 151.54575307293 -32.6954536645451, 151.545985330568 -32.6936668313343, 151.54618679199 -32.6936853160028, 151.546232926289 -32.6933941916364, 151.546281386726 -32.6934016886043, 151.546301926398 -32.6932039230736, 151.546332396343 -32.6929332724656, 151.546106924385 -32.6929132410267, 151.546154026675 -32.692630685523, 151.546391295171 -32.6926611710234, 151.546539966589 -32.6919780695886, 151.546366797463 -32.6919540298653, 151.546203531019 -32.6914338017529, 151.545998257182 -32.6914786116893, 151.545878744557 -32.6912079454852, 151.544864017711 -32.691455398443, 151.544908709987 -32.6917522903519, 151.544692978915 -32.6918068676931, 151.544669169511 -32.6921180781135, 151.544348722207 -32.6921319381908, 151.54435004291 -32.6922808464477, 151.544242384565 -32.6922863449566, 151.544310839029 -32.6928114646056, 151.544314400512 -32.6935892305703, 151.544227908539 -32.6935887377504, 151.54408117758 -32.6951626425227, 151.544166722917 -32.69525401232, 151.544117731639 -32.6957247909062), (151.545943634341 -32.6920140778958, 151.54611559275 -32.6920355560926, 151.546090801747 -32.6921993887549, 151.545892878753 -32.692178645958, 151.545943634341 -32.6920140778958), (151.545221440228 -32.6925667802594, 151.545528209526 -32.6925934171728, 151.545509994477 -32.692726091773, 151.545202393652 -32.6927032645601, 151.545221440228 -32.6925667802594), (151.544744964247 -32.6956476233495, 151.544756467434 -32.6955129320915, 151.545215686995 -32.6955364024545, 151.545204837489 -32.6956738589315, 151.544744964247 -32.6956476233495), (151.545543112298 -32.6945357355568, 151.545858454849 -32.6945577300815, 151.545786641243 -32.6951281631, 151.545483173525 -32.6950999014874, 151.545543112298 -32.6945357355568))\n17275187\tSovereign Downs - stage 1\tCheck with carrier\tPOLYGON ((152.02181808 -28.238709957, 152.020657088 -28.240628037, 152.020664992 -28.2406310155, 152.022269888 -28.241242015, 152.02237104 -28.240995965, 152.02348704 -28.241324007, 152.023641856 -28.241057977, 152.023974848 -28.2411469805, 152.025159968 -28.239183002, 152.02181808 -28.238709957))\n17349266\tHenry St Brassall\tCheck with carrier\tPOLYGON ((152.729560096 -27.590119012000002, 152.727028928 -27.589742019, 152.72696304 -27.590087969000002, 152.726670016 -27.591622026, 152.726474176 -27.592647037000003, 152.72900496 -27.5930280075, 152.729560096 -27.590119012000002))\nAYAA-F2BSM\tGlenfield West\tReady for service\tPOLYGON ((147.319628488454 -35.1379948217273, 147.319627823545 -35.1380022466932, 147.319660296405 -35.1380494150408, 147.31930804871 -35.1381623526539, 147.319207122604 -35.1382262631636, 147.318710234538 -35.1383850326961, 147.318426164442 -35.1379613974381, 147.31813465973 -35.1379775330377, 147.317602019619 -35.1380089186856, 147.317731080687 -35.1386698694337, 147.317738546926 -35.1386671087403, 147.317827519073 -35.1386562676184, 147.317933205636 -35.1389680897301, 147.31794200901 -35.1391535227436, 147.317954111731 -35.139496139627, 147.31730593669 -35.1395836678008, 147.317150013898 -35.1396051278363, 147.317013964612 -35.1396078234094, 147.317022602307 -35.1403092105112, 147.31872237117 -35.1401925298384, 147.318692016839 -35.1398381688933, 147.319120508851 -35.139712973205, 147.319234765275 -35.1394606263328, 147.319244196229 -35.1394623488946, 147.319553006569 -35.1395645758587, 147.319779919196 -35.1395573757337, 147.319767255812 -35.1396972061168, 147.32001605081 -35.139690524293, 147.320281435609 -35.1397127458338, 147.320820038781 -35.1396763730218, 147.321303558843 -35.1395098443677, 147.321483453216 -35.1394507607524, 147.322033322315 -35.1391885739048, 147.321948843284 -35.1390588846738, 147.321888413104 -35.1389671302971, 147.321782349217 -35.1387997552001, 147.321649886273 -35.1385893795409, 147.321555698954 -35.1384388097199, 147.321364983099 -35.1381463435469, 147.321268762108 -35.1379849871334, 147.321202947578 -35.1378849919113, 147.320949739128 -35.1374886179177, 147.31999893119 -35.1378568382409, 147.319628488454 -35.1379948217273))\nAYCA-E2RCZ\tRees Road, Brookfield\tReady for service\tPOLYGON ((144.548775775167 -37.7152222374757, 144.549722449045 -37.7148586679592, 144.550666208724 -37.7144244392927, 144.551575816969 -37.7139493409519, 144.55694731408 -37.7099166376815, 144.55678385762 -37.7097952089786, 144.556093620416 -37.7103108494559, 144.555990102794 -37.7103504368313, 144.555919593989 -37.7103628837402, 144.555855309604 -37.7103638664778, 144.555800009921 -37.7103580871987, 144.555769271001 -37.7103530641563, 144.555720177909 -37.7103358140176, 144.555623817868 -37.7102909227111, 144.555541867934 -37.7102521205524, 144.555481333913 -37.7102276846274, 144.55528743422 -37.710173808516, 144.554879305837 -37.7104905837839, 144.554802554448 -37.7104748349831, 144.553820645031 -37.7112152863071, 144.551915290346 -37.7126425759506, 144.550672624562 -37.7135519107789, 144.550371400356 -37.7137171171852, 144.550271986851 -37.7136324360567, 144.549873195567 -37.713931643152, 144.549188710729 -37.7142316527325, 144.548826452591 -37.7141149437213, 144.548570098696 -37.7146175414881, 144.548073486248 -37.7150782903322, 144.547873956139 -37.7154370651114, 144.547910613133 -37.7155086402153, 144.548775775167 -37.7152222374757))\nAYCA-OKUJA\tSt Leonards Estate\tReady for service\tPOLYGON ((115.975319584732 -31.851351726601, 115.97531488381 -31.8515663874156, 115.975512026493 -31.8515625529922, 115.975525263405 -31.8523427890277, 115.975670421409 -31.8528991916834, 115.975741244457 -31.8530708403236, 115.975923524356 -31.853411349151, 115.976735847858 -31.8531800754644, 115.977566401496 -31.8529632817354, 115.977718 -31.8533810000113, 115.977813869116 -31.8535471062771, 115.977693878378 -31.85358689201, 115.977809494976 -31.8537733696123, 115.977653293552 -31.8538641994907, 115.97786000147 -31.8542121240716, 115.977758391641 -31.8555085881331, 115.978307498939 -31.8555083104552, 115.978478565605 -31.8541797604413, 115.978523514741 -31.8540940815165, 115.977938008661 -31.8536877148348, 115.977832633943 -31.853532144458, 115.977733581268 -31.8533714607726, 115.977589519129 -31.8529748987985, 115.977689648661 -31.8530633378296, 115.979701135194 -31.8525567765532, 115.979570640092 -31.8515091307463, 115.978165559995 -31.8515122800119, 115.97732352 -31.8513321000118, 115.975319584732 -31.851351726601))\nAYCA-EMGSR\tMistful Park\tReady for service\tPOLYGON ((149.707134940517 -34.7307356697632, 149.707156143199 -34.7306955974475, 149.709823912376 -34.727997967858, 149.71001358529 -34.7278061013554, 149.709412129284 -34.7276531560394, 149.708968930216 -34.7277347557568, 149.708671826543 -34.7277347662144, 149.708563961226 -34.7280898997355, 149.708417254413 -34.7280748000039, 149.705593110335 -34.7282461457698, 149.705153741125 -34.7284029396774, 149.704878785622 -34.7286087059692, 149.704992525801 -34.7286865818058, 149.704767986032 -34.7288501964966, 149.704578414969 -34.7287535019587, 149.704482559363 -34.7287776384029, 149.706511876036 -34.7302299065978, 149.706608619704 -34.7302980845656, 149.706917324137 -34.7305555490333, 149.707134940517 -34.7307356697632))\nAYCA-F54UX\tBelmore Estate\tReady for service\tPOLYGON ((149.706596567539 -34.7331738928449, 149.707003840315 -34.7340597436064, 149.707261193096 -34.7340125368034, 149.707821388262 -34.7340581594406, 149.708632529057 -34.7343695850671, 149.709891167541 -34.7351503732513, 149.710861728771 -34.7354698722351, 149.711840366856 -34.7354059488434, 149.711283261924 -34.7333784436266, 149.71036929318 -34.7330256976559, 149.709981899458 -34.7327505364205, 149.709677178024 -34.7326437259472, 149.709474212495 -34.7334319051015, 149.709092712379 -34.7333282679958, 149.708916755712 -34.7333300516974, 149.707206408485 -34.7330175352905, 149.706596567539 -34.7331738928449))\n10661\tTapping The Kestrels\tReady for service\tPOLYGON ((115.79074859619141 -31.71812134547654, 115.79104900360107 -31.719180005239544, 115.79064130783081 -31.7192803947619, 115.79067349433899 -31.719399036784516, 115.79049110412598 -31.719444668291246, 115.79050183296204 -31.7197275831316, 115.79052329063416 -31.720092633262642, 115.79038381576538 -31.720129138196693, 115.7904589176178 -31.720439429555583, 115.79015851020813 -31.720530691522274, 115.79015851020813 -31.721050883016815, 115.7904052734375 -31.72151631503743, 115.78980445861816 -31.721771845349085, 115.78996539115906 -31.72206387912842, 115.79210042953491 -31.721169522773415, 115.79159617424011 -31.720129138196693, 115.79310894012451 -31.719535931237306, 115.79325914382935 -31.719526804946746, 115.79359173774719 -31.719408163087646, 115.79320549964905 -31.718796698790555, 115.79293727874756 -31.717674149358366, 115.79074859619141 -31.71812134547654))\n17359981\tYamba Waters\tCheck with carrier\tPOLYGON ((153.343916 -29.4395681005, 153.343738592 -29.439474361000002, 153.342510912 -29.43930035, 153.341289856 -29.439134590000002, 153.340685664 -29.4425448985, 153.342714816 -29.4428192905, 153.342824768 -29.4421998735, 153.342944608 -29.441524901, 153.3430104 -29.4411541795, 153.343075584 -29.4407868065, 153.343221088 -29.440575832500002, 153.343916 -29.4395681005))\nAYAA-F26L4\tShannon Waters Estate\tReady for service\tPOLYGON ((147.572827852958 -37.8385911993154, 147.575231910579 -37.8395332831698, 147.57548876871 -37.8391192883033, 147.575824803155 -37.8392504130456, 147.57604995307 -37.8391775521327, 147.577425546485 -37.838733169749, 147.577713143075 -37.8382695989463, 147.574144195253 -37.8368769307096, 147.573981046535 -37.8368132632568, 147.573820488412 -37.8370720431797, 147.562308171738 -37.8386299687029, 147.573740935495 -37.8371595280056, 147.573521073642 -37.8375137926805, 147.573278273022 -37.8379051178393, 147.573077569213 -37.8382285914997, 147.573057175346 -37.8382206328998, 147.572827852958 -37.8385911993154))\n17278226\tSpring Park Estate stage 5 \u0026 6\tCheck with carrier\tPOLYGON ((147.01261392 -36.0182999685, 147.012833888 -36.018522986, 147.014052128 -36.018722971, 147.013962848 -36.0189209765, 147.014335072 -36.019008981, 147.014533088 -36.019081982, 147.014465056 -36.019188986, 147.014970112 -36.019221028000004, 147.014813152 -36.019509036, 147.015375136 -36.019652041, 147.015376928 -36.019652041, 147.015627136 -36.0195270365, 147.015803872 -36.0193509905, 147.015591136 -36.019278008, 147.017275936 -36.017660978500004, 147.016628992 -36.01663902, 147.016347136 -36.0167589925, 147.015986048 -36.016336989, 147.014115136 -36.0173879925, 147.014114048 -36.0173879925, 147.01261392 -36.0182999685))\nAYAA-EOIUG\tBungarribee (Bunya)\tReady for service\tPOLYGON ((150.871722313876 -33.7785498963346, 150.87314016021 -33.7789617298701, 150.873199491321 -33.778201585343, 150.871993299188 -33.7780214785229, 150.871825916812 -33.7784104280002, 150.871493985569 -33.7783212170729, 150.87159544386 -33.7780579841086, 150.870392807598 -33.7776739327808, 150.870261267145 -33.777836763078, 150.870203770357 -33.7779016208475, 150.870065138657 -33.7779857588376, 150.869525205755 -33.778268320117, 150.869721033727 -33.7785096133803, 150.869704862006 -33.7787488713236, 150.870330362757 -33.7792638184638, 150.870255826493 -33.7792722959138, 150.869441140745 -33.7801644317452, 150.870211176652 -33.780476625007, 150.870301170174 -33.7805442954388, 150.870054161515 -33.780856187578, 150.870131139663 -33.7808934702092, 150.870147221927 -33.7809177263005, 150.870278257952 -33.7810802557049, 150.870817170258 -33.7812488770392, 150.871081146556 -33.781416740645, 150.871093405292 -33.7816847667759, 150.871649141601 -33.7820374763304, 150.872018972742 -33.7822740177745, 150.871996627113 -33.7824063460812, 150.872042437382 -33.7824303327215, 150.872431310516 -33.782479849197, 150.872741484528 -33.7802131780953, 150.872389461997 -33.7801713523787, 150.872343032959 -33.7798657975473, 150.871348693831 -33.7796570652474, 150.870174903693 -33.7790071702416, 150.86980240159 -33.7785776296995, 150.870370251577 -33.7780920502348, 150.871722313876 -33.7785498963346))\n249\tBentley Park\tReady for service\tPOLYGON ((145.18076334954131 -38.000899702137872, 145.18035565377588 -38.002793448605651, 145.18418584824605 -38.003283785702322, 145.18465791703321 -38.001398506174631, 145.18076334954131 -38.000899702137872))\nAYAA-H9B8H\t95 Flynn Ave, Middleton Grange\tReady for service\tPOLYGON ((150.84380031936 -33.9169220163184, 150.841137595669 -33.9165574783965, 150.840636466517 -33.9193343003772, 150.843248555336 -33.9196916350842, 150.84380031936 -33.9169220163184))\n17316398\tCurrey Street Roma\tCheck with carrier\tPOLYGON ((148.773735008 -26.5661309695, 148.773723136 -26.566155001000002, 148.77369792 -26.5661720025, 148.773666976 -26.566174981, 148.773449152 -26.5661459915, 148.773494176 -26.5658750035, 148.771775872 -26.565639036, 148.769723168 -26.565387029, 148.769422912 -26.5672700145, 148.769409952 -26.567349028000002, 148.770020896 -26.5674240085, 148.770243008 -26.567451000000002, 148.77044496 -26.567476012, 148.770645856 -26.567499951000002, 148.77084816 -26.5675249815, 148.771049056 -26.567549993500002, 148.771251008 -26.567574025000003, 148.771451872 -26.567598963000002, 148.771653856 -26.567623975, 148.771852928 -26.5676480065, 148.772052 -26.567672038, 148.772251072 -26.567696976, 148.772450176 -26.5677210075, 148.77264816 -26.567745039000002, 148.77284688 -26.5677699585, 148.773045952 -26.567793990000002, 148.773125152 -26.56780398, 148.773166912 -26.5675539525, 148.773207968 -26.5673089755, 148.773248992 -26.567063018000002, 148.773290048 -26.5668180225, 148.773331072 -26.5665719725, 148.77337392 -26.566317986, 148.773637088 -26.566353987, 148.773665888 -26.566364976, 148.773683872 -26.566388008500002, 148.773687136 -26.56641204, 148.773735008 -26.5661309695))\nAYCA-10XNGP\tWarner Springs\tReady for service\tPOLYGON ((152.955923963122 -27.3090973931164, 152.955923961974 -27.3090973929541, 152.955876518067 -27.3093641603069, 152.955811135239 -27.3094753716649, 152.955778422649 -27.3094707294271, 152.955775824044 -27.3094853399804, 152.955808604488 -27.3094896010412, 152.955807001123 -27.3094921584648, 152.955715816559 -27.3100048497239, 152.95571499951 -27.3100059703017, 152.95568228677 -27.3100013280415, 152.955679688196 -27.3100159385994, 152.955712400939 -27.3100205808745, 152.955652513205 -27.3103607806252, 152.955720162937 -27.3103703811129, 152.955672587898 -27.3106378721695, 152.955671854253 -27.3106394059018, 152.955639141328 -27.310634763631, 152.955636542734 -27.3106493741872, 152.955669255662 -27.310654016458, 152.955621115123 -27.3107970056864, 152.955588402154 -27.3107923634044, 152.955585803549 -27.3108069739588, 152.955618516522 -27.3108116162413, 152.955617718043 -27.3108129137756, 152.955570142569 -27.3110804047805, 152.955819559508 -27.3111165427335, 152.956242355716 -27.3112908098923, 152.957325393066 -27.3114444986463, 152.957277821415 -27.3117119902127, 152.957269294461 -27.3118310565265, 152.957264017463 -27.3118471524381, 152.95705723629 -27.3130098487597, 152.95735924805 -27.3130529187609, 152.957375604888 -27.3130552397778, 152.957654853417 -27.3128982278317, 152.957700570694 -27.3129800658289, 152.95775807419 -27.3130604246579, 152.957797018728 -27.3131047590298, 152.957935348017 -27.3132213160922, 152.957992417906 -27.3132848404522, 152.958125489742 -27.3134813196051, 152.958177060219 -27.313682582344, 152.958183772654 -27.3137593704322, 152.958184734276 -27.3138365266513, 152.958176257404 -27.3139157082674, 152.958184447379 -27.3139412424463, 152.958206724077 -27.3139697157927, 152.958231809065 -27.3139935966495, 152.957932666023 -27.3139853821305, 152.957837047039 -27.3139698136684, 152.957804357898 -27.3139650342562, 152.957801682458 -27.3139796337459, 152.957834371603 -27.3139844131587, 152.957935331841 -27.3139937702248, 152.958297089996 -27.3140074317578, 152.958330207309 -27.3140080337073, 152.958522057351 -27.3140216128753, 152.958840264631 -27.3142598438447, 152.959447686503 -27.3142315395534, 152.959450361734 -27.3142169400325, 152.959417672452 -27.3142121609976, 152.95920063531 -27.3141832232077, 152.958777668441 -27.3140376875741, 152.958522753055 -27.3140005792324, 152.958370897163 -27.3139980167114, 152.958330544351 -27.3139932429817, 152.958289267721 -27.3139755507047, 152.958251825672 -27.3139588723197, 152.95823081242 -27.3139364005073, 152.958221163773 -27.3139118084214, 152.958230080776 -27.313832841687, 152.958228347593 -27.3137586321241, 152.958218857549 -27.3136779537948, 152.958196331041 -27.3135820121816, 152.958163274888 -27.3134630888551, 152.958141547687 -27.313437061461, 152.958241145757 -27.3128671609587, 152.958242224846 -27.3128511263984, 152.958240443625 -27.3128317503832, 152.958233517178 -27.3128121700085, 152.958225488481 -27.312797003669, 152.958203429454 -27.3127756768852, 152.958173360361 -27.3127629258865, 152.958155818758 -27.3127597139091, 152.957858030831 -27.3127109683588, 152.957819556173 -27.3125788815909, 152.957723238207 -27.3125573674063, 152.957693473037 -27.3125415979247, 152.957675128236 -27.3125214294605, 152.957669610054 -27.3124889762399, 152.957709669998 -27.3122760461535, 152.958009130239 -27.3123185384338, 152.958191481272 -27.3112931530797, 152.958189829975 -27.3112912669351, 152.95819242825 -27.3112766563329, 152.958427990661 -27.3110981776666, 152.958459210985 -27.311095259344, 152.958484615041 -27.3110787881265, 152.95849739583 -27.3110531774681, 152.95877193559 -27.3094998178294, 152.955923963122 -27.3090973931164))\n17358015\tWoodside Park Estate\tCheck with carrier\tPOLYGON ((142.219964768 -34.17311772, 142.217923424 -34.173014416, 142.21726384 -34.1758682075, 142.21762368 -34.1759256315, 142.217441984 -34.1767122885, 142.21907136 -34.1769738045, 142.219178656 -34.176510842, 142.219964768 -34.17311772))\n10434\tJindalee-Jindalee Beach\tReady for service\tPOLYGON ((115.69381356239319 -31.650771238172503, 115.69583058357239 -31.650424181492554, 115.69603443145752 -31.651209623705451, 115.6965172290802 -31.65114569261068, 115.69656014442444 -31.651383150741029, 115.69647431373596 -31.651465347644823, 115.69659233093262 -31.65175760271401, 115.69624900817871 -31.651848932234667, 115.69724678993225 -31.652716558205025, 115.69656014442444 -31.653237129899534, 115.69648504257202 -31.653136668922379, 115.69605588912964 -31.65334672356893, 115.69475769996643 -31.653529379397426, 115.69470405578613 -31.6531184032785, 115.69453239440918 -31.6531184032785, 115.69448947906494 -31.652807886783375, 115.69368481636047 -31.652899215271994, 115.69348096847534 -31.651648007170756, 115.69391012191772 -31.651574943403453, 115.69381356239319 -31.650771238172503))\n10633\tStirling-Roselea\tReady for service\tPOLYGON ((115.81453442573547 -31.886405556850722, 115.81644415855408 -31.886414666673275, 115.81662118434906 -31.886550388688388, 115.81685721874237 -31.886322643190052, 115.81738293170929 -31.886655151428503, 115.81692159175873 -31.887106085340765, 115.81688404083252 -31.887957843373144, 115.81852555274963 -31.889132983234312, 115.81854164600372 -31.890221568407977, 115.81757605075836 -31.890125919180367, 115.8175653219223 -31.889506474158281, 115.81546783447266 -31.888054420052516, 115.81449151039124 -31.888027091068768, 115.81449151039124 -31.8873894124791, 115.81328988075256 -31.887362083298004, 115.8132791519165 -31.887034132492396, 115.81421256065369 -31.887006803205875, 115.81420183181763 -31.886687960930622, 115.81453442573547 -31.886405556850722))\nAYCA-IIZZF\tGlenhaven Park\tContracted\tPOLYGON ((147.067778 -38.0777960000299, 147.06772 -38.0780540000298, 147.06768 -38.0780750000298, 147.067447 -38.0780230000299, 147.067305 -38.0781450000299, 147.067288 -38.0786030000299, 147.067335 -38.0790770000298, 147.067284 -38.0790870000299, 147.067187 -38.0791030000298, 147.06712 -38.0791110000298, 147.067054 -38.0791160000298, 147.066974 -38.0791200000298, 147.066906 -38.0791200000298, 147.06684 -38.0791180000299, 147.066815 -38.0791160000298, 147.066767 -38.0791320000299, 147.066697 -38.0799280000299, 147.066751 -38.0800770000299, 147.066891 -38.0800750000299, 147.066983 -38.0800690000298, 147.067279 -38.0800220000299, 147.067557 -38.0799410000299, 147.067924 -38.0798270000299, 147.067796 -38.0796300000298, 147.068152 -38.0795080000298, 147.068719 -38.0795160000298, 147.069106 -38.0795680000298, 147.069781 -38.0796590000298, 147.070462 -38.0795450000299, 147.071172 -38.0796090000299, 147.07149 -38.0779420000298, 147.070903 -38.0779220000299, 147.070322 -38.0779480000299, 147.067957 -38.0778260000299, 147.067778 -38.0777960000299))\nAYAA-ETJLH\tKurra at Newman\tReady for service\tPOLYGON ((119.732205600023 -23.3492192099286, 119.734853760028 -23.350100849942, 119.735950303442 -23.3472925185682, 119.735895240023 -23.3471513699284, 119.734735196612 -23.3467869442537, 119.734429680016 -23.347568429926, 119.733279839995 -23.3471855699312, 119.732964812867 -23.3472753870439, 119.732203806669 -23.3492186125156, 119.732205600023 -23.3492192099286))\n17399437\tKokoda DHA Redevelopment\tCheck with carrier\tPOLYGON ((153.181528992 -28.034862009, 153.181696 -28.0353759945, 153.181812992 -28.0355900025, 153.181910016 -28.0356580085, 153.183324 -28.036856993500002, 153.185154016 -28.036684999000002, 153.185459008 -28.036427997, 153.185487008 -28.036049006000002, 153.185563008 -28.036097994000002, 153.185680992 -28.036170995000003, 153.185730016 -28.036178006500002, 153.185860992 -28.036159007000002, 153.185924 -28.036092, 153.185986016 -28.0360059935, 153.185992992 -28.035866004000003, 153.186055008 -28.035792004, 153.186686016 -28.035719003, 153.185860992 -28.035529008, 153.185832992 -28.035449994500002, 153.185931008 -28.0352659935, 153.186034016 -28.0352170055, 153.185896 -28.035199005000003, 153.185806016 -28.0350819925, 153.18566 -28.0350340035, 153.185355008 -28.0349719915, 153.185182016 -28.0349719915, 153.184974016 -28.034905003000002, 153.184924992 -28.034782995500002, 153.184683008 -28.0347089955, 153.184156 -28.034752008, 153.183006016 -28.0345500065, 153.182804992 -28.0346600075, 153.182728 -28.034519999500002, 153.181987008 -28.0344829995, 153.18198 -28.034873997000002, 153.181528992 -28.034862009))\n10451\tJindalee-Eden Beach\tReady for service\tPOLYGON ((115.69370090961456 -31.650792215652338, 115.69573402404785 -31.650440592507849, 115.6958144903183 -31.650678052439559, 115.69573938846588 -31.650751116911895, 115.69575011730194 -31.650851580467563, 115.69585204124451 -31.65092007828418, 115.69592982530594 -31.651244300597835, 115.696482360363 -31.651141554212391, 115.69654405117035 -31.65136987935913, 115.69647699594498 -31.6513835788501, 115.6965708732605 -31.651755747582186, 115.69621413946152 -31.651808262068585, 115.69625169038773 -31.651954389178911, 115.69659769535065 -31.651888175360504, 115.69663792848587 -31.652063984360904, 115.69674521684647 -31.6522329433466, 115.6972199678421 -31.652671321985316, 115.69658428430557 -31.653212442766051, 115.6964984536171 -31.65316221227771, 115.69604784250259 -31.653365417267874, 115.69477647542953 -31.653504692341595, 115.69472551345825 -31.653171345095789, 115.69458872079849 -31.653178194708758, 115.6945726275444 -31.653105132144365, 115.69451898336411 -31.653111981762219, 115.6944814324379 -31.652796898818536, 115.69428026676178 -31.65282429737778, 115.69367945194244 -31.652885944106551, 115.69348096847534 -31.651680400658588, 115.6938698887825 -31.651641585552881, 115.69370090961456 -31.650792215652338))\n10652\tTapping-Ashton Heights\tReady for service\tPOLYGON ((115.80303311347961 -31.718741940597035, 115.80515742301941 -31.718778446062974, 115.80520033836365 -31.721644080281308, 115.80469608306885 -31.721726214987971, 115.80465316772461 -31.722146013463071, 115.80297946929932 -31.722100383286136, 115.8030116558075 -31.721279036260107, 115.80278635025024 -31.721306414611572, 115.80281853675842 -31.720795350717626, 115.80271124839783 -31.720558070094775, 115.80279171466827 -31.720534327739404, 115.80264151096344 -31.720173842461556, 115.80296874046326 -31.720092633262642, 115.8029580116272 -31.719800593272819, 115.80311894416809 -31.719791467008314, 115.80311894416809 -31.719481173480464, 115.80283999443054 -31.719408163087646, 115.80282926559448 -31.71910699460955, 115.80300092697144 -31.71910699460955, 115.80303311347961 -31.718741940597035))\nAYCA-114M8I\tBaldivis East\tReady for service\tPOLYGON ((115.824591508574 -32.3126555913481, 115.823813120731 -32.3128965386895, 115.823754012718 -32.3129352994079, 115.823695786861 -32.3129734815815, 115.823636678749 -32.3130122422421, 115.823528323852 -32.3130709368525, 115.82341382181 -32.3131442382306, 115.823338274227 -32.3132050487702, 115.823323627239 -32.3132168385604, 115.823234031768 -32.313303678404, 115.823229132012 -32.3133084274517, 115.823062225312 -32.3135065344948, 115.822948514474 -32.3138038649007, 115.823266 -32.3138620000141, 115.823197 -32.3141090000141, 115.823121 -32.3141490000141, 115.82164007684 -32.3138760141784, 115.82159944785 -32.3140350827302, 115.821526896183 -32.3143191318023, 115.822954 -32.3145710000141, 115.823078 -32.3145940000141, 115.823202 -32.3146210000141, 115.823297 -32.3146610000141, 115.823386 -32.3147150000141, 115.823478 -32.3147900000141, 115.82355 -32.3148680000141, 115.823615 -32.3149610000141, 115.823674 -32.3150570000141, 115.823785 -32.3152380000141, 115.823694876639 -32.3153285352412, 115.823669116181 -32.3153607123315, 115.8236148703 -32.3154359661204, 115.82353209769 -32.3154525214511, 115.823470625017 -32.3154287264575, 115.823415534326 -32.3155401024103, 115.823692190164 -32.3156468171975, 115.823649052938 -32.3157243615368, 115.823672930186 -32.315731965846, 115.82374890679 -32.3155939580888, 115.823775143609 -32.3155560761066, 115.823852162022 -32.3154448729908, 115.823917995057 -32.3153819946628, 115.82398709571 -32.3153159952403, 115.824149579627 -32.3152117054701, 115.824341554094 -32.3151335843291, 115.825169539317 -32.314877287075, 115.825186450284 -32.3148745727673, 115.825262429171 -32.3148779552012, 115.825288714714 -32.3148847222664, 115.82531268898 -32.3148972658993, 115.825332806205 -32.3149133814613, 115.825344919825 -32.3149296296912, 115.825468215772 -32.3152168588809, 115.825664813012 -32.3151560022307, 115.825624797247 -32.3150627825191, 115.826203609464 -32.3148836090158, 115.82633314356 -32.3151853631273, 115.826482836461 -32.3151390245648, 115.826353301919 -32.314837270592, 115.826972029164 -32.3146457365326, 115.826984242201 -32.3146741867438, 115.827133933937 -32.3146278473792, 115.827023535211 -32.3143706743958, 115.8270616503 -32.3143011714116, 115.826988892427 -32.3141316817781, 115.826907047048 -32.3140993145216, 115.82673978107 -32.3137096645014, 115.82677789609 -32.3136401615943, 115.82692199713 -32.3135955526276, 115.826868009443 -32.3134683101338, 115.826723328425 -32.3135130442492, 115.826641483696 -32.3134806768322, 115.826561489449 -32.3132943261691, 115.826421370668 -32.3132978973931, 115.826393610649 -32.3132982924174, 115.826382608131 -32.3133015721659, 115.826114189419 -32.3133847908732, 115.825866611156 -32.3134615070185, 115.825835 -32.3134710000141, 115.825693 -32.313537000014, 115.825404 -32.3136260000141, 115.825371 -32.3137080000141, 115.825082 -32.3137980000141, 115.824694955616 -32.3128972543706, 115.824591508574 -32.3126555913481))\nAYCA-13WZ1H\tRiemore Downs Estate\tReady for service\tPOLYGON ((153.11493288 -27.8912129399838, 153.11432988 -27.8908268399838, 153.1133226 -27.8900781299838, 153.11327076 -27.8900102699838, 153.1123938 -27.8890442099838, 153.1120482 -27.8885618099837, 153.11170584 -27.8881748999838, 153.111054854636 -27.8880325616494, 153.110751442809 -27.8886543830547, 153.110557050238 -27.8888150413573, 153.110493 -27.8894414699838, 153.11109744 -27.8896805999838, 153.112831157895 -27.8913450024175, 153.11404044 -27.8926872299838, 153.11449188 -27.8927598599838, 153.1145952 -27.8922564899838, 153.114480754539 -27.8920456463712, 153.11493288 -27.8912129399838))\n10566\tSecret Harbour\tReady for service\tPOLYGON ((115.74823021888733 -32.398073760026065, 115.74863791465759 -32.397611757537007, 115.75041890144348 -32.39726206933863, 115.75027406215668 -32.396877063967558, 115.75005948543549 -32.396877063967558, 115.74997365474701 -32.396605294481937, 115.74971616268158 -32.396664177939904, 115.74945330619812 -32.396378819285758, 115.7491260766983 -32.396075341632319, 115.74869692325592 -32.395948514848079, 115.74824631214142 -32.395921337656873, 115.7482248544693 -32.395563503876225, 115.74716806411743 -32.395608799369889, 115.74641168117523 -32.396097989253605, 115.74664235115051 -32.396338053690123, 115.74635803699493 -32.3967864742299, 115.74621319770813 -32.3972167746743, 115.74632048606873 -32.397760309146662, 115.74657797813416 -32.398240428542309, 115.74683547019958 -32.398580134119619, 115.74823021888733 -32.398073760026065))\n17314100\tHilltop Estate\tCheck with carrier\tPOLYGON ((147.343695136 -35.162060047000004, 147.343493888 -35.162043027, 147.343032 -35.161988045, 147.342997088 -35.162360006, 147.342840832 -35.162321045, 147.342375008 -35.162206012, 147.342348 -35.162199981, 147.34168704 -35.162036996000005, 147.341466016 -35.1619790355, 147.341427136 -35.1621839785, 147.341387168 -35.162389976, 147.34145808 -35.162544969, 147.34130112 -35.1631919695, 147.341594176 -35.163245971, 147.34238112 -35.1633099625, 147.343314976 -35.1635920135, 147.343502176 -35.1636519535, 147.343628896 -35.163685975, 147.344834176 -35.1632639715, 147.345534016 -35.1634030175, 147.34628208 -35.1632850245, 147.347780032 -35.1627159645, 147.347571968 -35.1623459645, 147.347478016 -35.162223032, 147.347381888 -35.162105039000004, 147.34722816 -35.161918022500004, 147.346877888 -35.162055995500005, 147.346607872 -35.1621829795, 147.346228096 -35.1621980015, 147.34595808 -35.162207991500004, 147.345746048 -35.162216002, 147.34553616 -35.162224012500005, 147.34531008 -35.162232023, 147.345075008 -35.162243012000005, 147.344823008 -35.162255962, 147.344362912 -35.162281973, 147.344333056 -35.1620949565, 147.344298848 -35.1618910125, 147.343700896 -35.162020975000004, 147.343695136 -35.162060047000004))\n17256993\tVolker Street Dalby\tCheck with carrier\tPOLYGON ((151.24532688 -27.172153988, 151.245002176 -27.1741950005, 151.246947968 -27.174798008, 151.24966416 -27.1727060465, 151.24532688 -27.172153988))\n10076\tBaldivis-Rivergums\tReady for service\tPOLYGON ((115.8249306678772 -32.339061428306444, 115.82559049129486 -32.339056895923811, 115.82766115665436 -32.339070493071056, 115.82766652107239 -32.337629184092307, 115.82761824131012 -32.337502275283939, 115.82761287689209 -32.3369538458872, 115.82828342914581 -32.336935715933045, 115.82827270030975 -32.336718156199836, 115.82813858985901 -32.336477933386888, 115.82741975784302 -32.336033746128734, 115.82738220691681 -32.3361515919403, 115.82728028297424 -32.336101734115672, 115.82571387290955 -32.336124396766628, 115.82561194896698 -32.336196917211574, 115.82561731338501 -32.336686428695046, 115.82571387290955 -32.336804273656767, 115.82570850849152 -32.337012768213143, 115.82562267780304 -32.337085287946252, 115.82561194896698 -32.33728471691267, 115.82541882991791 -32.337316444207715, 115.82507014274597 -32.337325509147121, 115.82507014274597 -32.338354373869095, 115.82495212554932 -32.338354373869095, 115.8249306678772 -32.339061428306444))\nAYCA-1KG5DU\tCaddens Release\tUnder construction\tPOLYGON ((150.717314999989 -33.7729190000145, 150.717205999989 -33.7729590000145, 150.717169999989 -33.7729740000145, 150.717052999989 -33.7730980000145, 150.716921999989 -33.7732840000145, 150.716854999989 -33.7735580000144, 150.716771999989 -33.7739670000144, 150.716856751433 -33.7739648862616, 150.71696950037 -33.7734322196906, 150.717004280612 -33.7733269198199, 150.717048284789 -33.7732382302038, 150.717216968961 -33.7730340486722, 150.71739542387 -33.7729094314253, 150.717619999989 -33.7731860000145, 150.717241999989 -33.7740370000146, 150.719843999989 -33.7744200000146, 150.719985999989 -33.7744410000145, 150.720076999989 -33.7744560000145, 150.720097999989 -33.7744610000145, 150.720157999989 -33.7744730000145, 150.720219999989 -33.7744880000146, 150.720283999989 -33.7745040000146, 150.720357999989 -33.7745250000145, 150.720456999989 -33.7745550000145, 150.720558999989 -33.7745850000146, 150.720633999989 -33.7746070000146, 150.720664999989 -33.7746160000146, 150.720715999989 -33.7746290000145, 150.720764999989 -33.7746410000146, 150.720859999989 -33.7746610000146, 150.720871999989 -33.7746630000146, 150.720926999989 -33.7746720000146, 150.721064999989 -33.7746920000145, 150.721268999989 -33.7747200000146, 150.721291999989 -33.7746130000145, 150.720898999989 -33.7744020000146, 150.720720999989 -33.7738440000146, 150.721213999989 -33.7731970000145, 150.721387999989 -33.7727770000145, 150.720950999989 -33.7727710000146, 150.721014999989 -33.7724330000145, 150.721021999989 -33.7724020000146, 150.721004999989 -33.7723990000145, 150.720947999989 -33.7723860000146, 150.720863999989 -33.7723630000146, 150.720830999989 -33.7723520000145, 150.720769999989 -33.7723310000145, 150.720691999989 -33.7723010000146, 150.720468999989 -33.7721820000145, 150.720441999989 -33.7721660000145, 150.720361999989 -33.7721170000145, 150.720300999989 -33.7720820000146, 150.720229999989 -33.7720500000145, 150.720143999989 -33.7720170000145, 150.720099999989 -33.7720030000146, 150.720024999989 -33.7719820000146, 150.719931999989 -33.7719630000145, 150.719279999989 -33.7718380000146, 150.719242999989 -33.7718410000145, 150.719223999989 -33.7718500000145, 150.719194999989 -33.7718830000146, 150.719184999989 -33.7719180000145, 150.719169999989 -33.7719650000145, 150.719136999989 -33.7720450000145, 150.719110999989 -33.7720960000145, 150.719069999989 -33.7721630000145, 150.719042999989 -33.7722030000145, 150.718991999989 -33.7722670000146, 150.718814999989 -33.7724240000145, 150.718791999989 -33.7724400000145, 150.718754999989 -33.7724640000146, 150.718693999989 -33.7725000000145, 150.718624999989 -33.7725340000145, 150.718556999989 -33.7725630000145, 150.718497999989 -33.7725840000145, 150.718419999989 -33.7726070000146, 150.717745999989 -33.7727590000145, 150.717664999989 -33.7727770000145, 150.717587999989 -33.7727960000144, 150.717512999989 -33.7728210000145, 150.717451999989 -33.7728460000145, 150.717373999989 -33.7728850000145, 150.717358999989 -33.7728940000145, 150.717349999989 -33.7728990000144, 150.717314999989 -33.7729190000145))\n17321970\t52 Lot Subdivision at 278-298 Kopps Road Oxenford\tCheck with carrier\tPOLYGON ((153.298582912 -27.9186920175, 153.29842704 -27.9161180015, 153.297705952 -27.9162070235, 153.296979136 -27.916289996, 153.29625408 -27.9163670485, 153.295530112 -27.91644399, 153.295683136 -27.9189929755, 153.296406016 -27.918891984000002, 153.296668096 -27.918855002500003, 153.297129952 -27.918798022500003, 153.297857888 -27.9187080385, 153.29805408 -27.918684007, 153.298582912 -27.9186920175))\nAYCA-Z2NWV\tRiverside Estate\tReady for service\tPOLYGON ((146.94733 -36.1396140000277, 146.945121 -36.1396130000276, 146.944924196278 -36.1403317984061, 146.94541999483 -36.1403320507748, 146.945418 -36.1422110000277, 146.945415649551 -36.1422886915545, 146.94554960856 -36.1424469061513, 146.945463810248 -36.142513283203, 146.945699413092 -36.1427680021905, 146.946150721288 -36.1426428182766, 146.946322055321 -36.1425343783124, 146.946397034921 -36.1425234357071, 146.947559 -36.1418050000276, 146.947796 -36.1420490000277, 146.951098 -36.1399580000276, 146.950814 -36.1396690000277, 146.947832061851 -36.1416024247137, 146.947456326459 -36.1412191892125, 146.947563274608 -36.1411639972893, 146.947261150577 -36.1408511194772, 146.94733 -36.1396140000277))\n135\tVicinity\tReady for service\tPOLYGON ((152.8932789745534 -27.668484209033387, 152.89044656183933 -27.671144732405857, 152.89248504068445 -27.672132910303048, 152.89478101160759 -27.669985512328736, 152.89387978937503 -27.669244365178756, 152.8932789745534 -27.668484209033387))\nAYAA-FIVKB\tSilkwood\tReady for service\tPOLYGON ((153.257320500246 -27.62766731302, 153.25653738401 -27.6318305917134, 153.257617214426 -27.6319956795119, 153.257639848712 -27.6317004775048, 153.257715970085 -27.6310344139778, 153.257790751193 -27.6309458285398, 153.258265698293 -27.6311909357055, 153.258536509752 -27.6307662776233, 153.259372828563 -27.6300595308069, 153.259518365405 -27.6292251516377, 153.258673728566 -27.6290965685096, 153.258565513371 -27.6290493093161, 153.258708351117 -27.628292573244, 153.25876716609 -27.6279809759745, 153.258802068233 -27.6278290135718, 153.257320500246 -27.62766731302))\nAYCA-13KY8A\tStonecutters Ridge\tUnder construction\tPOLYGON ((150.85353745036 -33.7177115360161, 150.853537761097 -33.7177120161479, 150.853322232905 -33.7181706216223, 150.85331218433 -33.7182456933134, 150.853315475717 -33.718328899852, 150.852994712706 -33.7183819654523, 150.853313541253 -33.7197234554903, 150.853630923481 -33.7196702220993, 150.853688232058 -33.7198723954285, 150.853756220287 -33.7200828255172, 150.854190642096 -33.7200139375584, 150.854491405588 -33.7199622314266, 150.854752676484 -33.7199190033503, 150.854904155846 -33.7198855034348, 150.855161019897 -33.7198380722188, 150.855313702816 -33.7197970985369, 150.855377019303 -33.7197719369346, 150.855410422687 -33.7197558602972, 150.855310342817 -33.719618992985, 150.85533352815 -33.7196057989431, 150.855359658917 -33.7195892224481, 150.855392939055 -33.719561117961, 150.855424205888 -33.7195218089937, 150.855443081571 -33.7194800194065, 150.855497775294 -33.7193644385979, 150.855509576027 -33.7193498489395, 150.855518957603 -33.7193405589796, 150.855591119543 -33.7192801570225, 150.855631472291 -33.7192774409297, 150.855664224952 -33.7192684781349, 150.855704849756 -33.719246163834, 150.855747177203 -33.7192140084016, 150.855792516721 -33.7191693570744, 150.855832800078 -33.7191123503021, 150.855856081103 -33.719058571902, 150.85587873991 -33.7190013995067, 150.855897306486 -33.7189248191204, 150.855899117845 -33.7188933571186, 150.855901064393 -33.7188564576851, 150.855889046912 -33.7186634270586, 150.855884396084 -33.7186553907602, 150.855883438343 -33.7186236513814, 150.855888260195 -33.7186043710741, 150.855893534886 -33.7185790914274, 150.855905802157 -33.7185454526554, 150.855903170845 -33.7185343291466, 150.855819327933 -33.7184276077774, 150.85604283466 -33.7181080760127, 150.855837323951 -33.7180416403268, 150.855683113595 -33.7179325745074, 150.855555178105 -33.7177684423201, 150.855481205358 -33.7176202494895, 150.855002931057 -33.7176970745714, 150.85442051992 -33.7177737900202, 150.854391707051 -33.7177755017887, 150.854061211197 -33.7177915232712, 150.853769730448 -33.7177675072074, 150.85353745036 -33.7177115360161))\nAYCA-N65WN\tWilliams Landing\tReady for service\tPOLYGON ((144.752599787152 -37.8572225911177, 144.752752923733 -37.8576167587095, 144.752698976077 -37.8576299341632, 144.75294599999 -37.858289000022, 144.75293599999 -37.858291000022, 144.75291699999 -37.8583190000221, 144.75276199999 -37.858357000022, 144.75272699999 -37.858342000022, 144.75240599999 -37.858420000022, 144.75267399999 -37.859109000022, 144.75260499999 -37.859126000022, 144.75271199999 -37.859401000022, 144.75422699999 -37.8590310000221, 144.754748426257 -37.8589001867106, 144.755097946836 -37.8588183681052, 144.755271345692 -37.8587735763209, 144.75557854248 -37.8587058643731, 144.75544487999 -37.8582736500219, 144.75481559999 -37.8570869100219, 144.754489184736 -37.85671718929, 144.75434699999 -37.856796000022, 144.75398199999 -37.856885000022, 144.75399599999 -37.8569010000221, 144.75336399999 -37.857055000022, 144.75335799999 -37.857038000022, 144.752599787152 -37.8572225911177))\n10501\tLakelands\tReady for service\tPOLYGON ((115.77149033546448 -32.4656455793399, 115.76408743858337 -32.46569083964539, 115.76404452323914 -32.466414082097089, 115.76448976993561 -32.466420411415292, 115.76527297496796 -32.466454356354447, 115.76613128185272 -32.466488301280833, 115.76701909303665 -32.466519983200584, 115.76787739992142 -32.466506405236331, 115.76793104410172 -32.466180533480419, 115.76930165290833 -32.466182796482791, 115.76928019523621 -32.466393255454726, 115.76967984437943 -32.466438515384432, 115.77051669359207 -32.466529035175604, 115.77067226171494 -32.466151114444422, 115.77103704214096 -32.466182796482791, 115.7709726691246 -32.46638420346607, 115.77140718698502 -32.466454356354447, 115.77149033546448 -32.4656455793399))\nAYCA-1G91V7\tWellard Glen\tUnder construction\tPOLYGON ((115.847753342353 -32.2718152106875, 115.848718327085 -32.2719019988562, 115.848717581532 -32.2719373352267, 115.849227926916 -32.271985865174, 115.849227639259 -32.27195785826, 115.849428474515 -32.2719659386385, 115.849417645034 -32.270905722198, 115.84943 -32.2707870000139, 115.849581 -32.2708060000139, 115.849999 -32.2698540000139, 115.849664875758 -32.2696760595176, 115.84986 -32.2694330000138, 115.849182196368 -32.269024254489, 115.849331188993 -32.2688510357179, 115.84941444892 -32.2688297079347, 115.849503603061 -32.2688789658788, 115.849604088716 -32.2687927039596, 115.849036 -32.2684260000139, 115.847778 -32.2697650000139, 115.847753342353 -32.2718152106875))\nAYAA-FPPZ3\tThe Village\tReady for service\tPOLYGON ((146.8091124 -19.2934257299094, 146.81109100103 -19.2936202508172, 146.81108851778 -19.2931851379037, 146.810916093946 -19.2932620435647, 146.810882641647 -19.2932751786064, 146.81058844717 -19.2932353292884, 146.810607330996 -19.2930846941419, 146.810927731121 -19.2931146507623, 146.810914533566 -19.2932544804882, 146.811087759896 -19.2931743675887, 146.81226320625 -19.2932895499462, 146.812282381075 -19.2930432443042, 146.812329749679 -19.2930140625097, 146.81243298487 -19.2929856989568, 146.812507372026 -19.2929922254858, 146.812473055873 -19.293310780835, 146.814384380346 -19.2934972342422, 146.814405665831 -19.2931965034485, 146.814665357848 -19.2932230112493, 146.814772691722 -19.2932322080226, 146.81476709871 -19.2928250433742, 146.814264736564 -19.2920304574106, 146.814110668316 -19.2916240561208, 146.813990896139 -19.2913971320739, 146.813991132942 -19.2911874914118, 146.813383976247 -19.291369095481, 146.813843656105 -19.2927126409055, 146.813814537079 -19.292750302206, 146.813770031301 -19.2927858555289, 146.81243540653 -19.2926276411791, 146.81237306538 -19.2925757325403, 146.812048671046 -19.2925298989394, 146.812002229117 -19.29258388388, 146.8118322 -19.2925731599104, 146.810964087712 -19.2928554392632, 146.810955726037 -19.292955919923, 146.810626514146 -19.2929185630317, 146.810649958588 -19.2927715495569, 146.810907180624 -19.2928020330897, 146.810962622548 -19.2928503819713, 146.811825432606 -19.2925727620282, 146.810802384218 -19.2924845922012, 146.810786720859 -19.2925957310121, 146.80925388 -19.2924078299094, 146.8091124 -19.2934257299094), (146.810196470324 -19.29275281654, 146.810314371007 -19.2927679245794, 146.810282551453 -19.2929918292034, 146.810164650875 -19.2929766874422, 146.810196470324 -19.29275281654), (146.810441930118 -19.2927565339747, 146.810640522325 -19.2927780122363, 146.810613588937 -19.2930024940865, 146.810415004907 -19.2929809830604, 146.810441930118 -19.2927565339747), (146.813468464972 -19.2930919827071, 146.813632649104 -19.2931097409655, 146.813600495335 -19.2934193460763, 146.813425197445 -19.2934020577767, 146.813468464972 -19.2930919827071))\nAYCA-RIMV7\tShoesmith Road / Gwenda Drive\tReady for service\tPOLYGON ((151.868618675165 -27.5980661022218, 151.869018938932 -27.5981223489905, 151.868941898621 -27.5985677097313, 151.869134142137 -27.5986196036671, 151.869589370044 -27.5986842891736, 151.870743345566 -27.5986793468898, 151.871037479967 -27.5970197701636, 151.871045460886 -27.5969746792517, 151.870822035449 -27.5967285936115, 151.870518992185 -27.5965700743, 151.870556596873 -27.5963459634413, 151.870240144995 -27.5962838223315, 151.870268252285 -27.5961251151266, 151.868994313013 -27.5959463646818, 151.868618675165 -27.5980661022218))\nAYCA-SGJJ1\tEast Newman\tContracted\tPOLYGON ((119.745250920015 -23.3533529999134, 119.745210965805 -23.3536787527941, 119.745376000012 -23.3536649999372, 119.7454064996 -23.3539553631851, 119.745571371388 -23.3539444788394, 119.745946560728 -23.3539526133095, 119.746122815463 -23.3539688575586, 119.746271707548 -23.3540030945351, 119.746872063457 -23.3541480306198, 119.746902822264 -23.3541438535264, 119.74694244149 -23.35414785479, 119.747151101901 -23.3541761911758, 119.747381775696 -23.3542912609577, 119.747580717434 -23.3544078740296, 119.747629172566 -23.3544327137612, 119.747695452785 -23.3544165844068, 119.747842000012 -23.3541979999371, 119.747999522708 -23.3539062546386, 119.747759000012 -23.3537179999372, 119.749081365676 -23.3531279913507, 119.748097000012 -23.3517819999371, 119.745250920015 -23.3533529999134))\nAYCA-HZPMS\tRiverbank\tContracted\tPOLYGON ((152.957653706985 -27.0924267420636, 152.958101135515 -27.0924918760334, 152.958116262564 -27.0924028147903, 152.959115993508 -27.0925456550866, 152.959059409493 -27.0928278540611, 152.959727094433 -27.0929232479149, 152.959739242865 -27.0929528837543, 152.959809421845 -27.0929482830191, 152.959971428926 -27.092878426394, 152.960738418947 -27.0921597833356, 152.96115649964 -27.0924081518495, 152.961206990561 -27.0923388488879, 152.960871750772 -27.0920896999541, 152.960913916964 -27.0920182686662, 152.96093348229 -27.0919851241524, 152.960738910934 -27.0919608347369, 152.959936282386 -27.091015168138, 152.959966648414 -27.0908133615778, 152.959942233891 -27.0907555775593, 152.960210051018 -27.0906112101302, 152.960143201642 -27.0905080581685, 152.960101239084 -27.0904626551432, 152.959961132803 -27.0903178049607, 152.959817389772 -27.0901782805371, 152.959685907383 -27.0900584954998, 152.959280263362 -27.0898660816231, 152.959203982247 -27.089936883411, 152.959426771376 -27.0902202395195, 152.959009539728 -27.0905888333179, 152.958208576386 -27.0913597825658, 152.957974032474 -27.0911446177102, 152.957900680981 -27.0912049266335, 152.958111759204 -27.0914620527066, 152.957839739266 -27.0917349174347, 152.957775522024 -27.0918447718592, 152.957653706985 -27.0924267420636))\nAYAA-F68FV\tAmbrosia Estate\tReady for service\tPOLYGON ((145.232253663761 -38.1152450696986, 145.232544518219 -38.1152826386749, 145.232553742879 -38.115256621582, 145.233271844084 -38.1153488652901, 145.233265045106 -38.1153746605113, 145.233784771795 -38.1154416539539, 145.234037227984 -38.1142360313612, 145.234699369547 -38.1143198747137, 145.234784075105 -38.113895141425, 145.234747891049 -38.1138896089228, 145.234809200571 -38.1136049204898, 145.234019138747 -38.1135034428909, 145.234216154833 -38.1125380937915, 145.233365818861 -38.1124267128669, 145.233316675734 -38.1123145337441, 145.233003354129 -38.1122759070017, 145.232718818211 -38.1130272201633, 145.232253663761 -38.1152450696986))\n17355795\t2070 Romsey Rd\tCheck with carrier\tPOLYGON ((144.756296992 -37.3508019845, 144.75631104 -37.3551769755, 144.757433152 -37.3551540355, 144.757388896 -37.350837005, 144.756296992 -37.3508019845))\n10560\tQuinns Rock-Brighton Beachside\tReady for service\tMULTIPOLYGON (((115.69262735545635 -31.6537321198117, 115.69262875750597 -31.653731993443863, 115.69262869656086 -31.65373154901404, 115.69262735545635 -31.6537321198117)), ((115.69308316335082 -31.654480539552317, 115.69323462434113 -31.654467339961851, 115.69323444622569 -31.654454702244063, 115.69325036136433 -31.654453480389815, 115.69325134623796 -31.654467018890696, 115.69341961294413 -31.654449574023584, 115.69341743888799 -31.654436236189696, 115.69344611023553 -31.65443317263481, 115.69344578543678 -31.654443027738253, 115.6936100916937 -31.654428490345474, 115.69361145375296 -31.654416236124263, 115.6936436612159 -31.654411973010532, 115.69364508613944 -31.654429168162615, 115.6938075274229 -31.654415611818919, 115.69380494998768 -31.654399790136353, 115.69382517132908 -31.654396525910638, 115.69382538087666 -31.654405979678781, 115.69398270919919 -31.654392922776115, 115.69398281397298 -31.6543791702168, 115.69401242304593 -31.65437512114902, 115.69401397369802 -31.654383005236792, 115.69418471306562 -31.654369092140275, 115.69418475497514 -31.654361707495898, 115.69439535029233 -31.6543440485613, 115.69439677521586 -31.654352111024792, 115.69455519318581 -31.654338554669863, 115.6945364177227 -31.654196997666574, 115.69466952234507 -31.654184511529419, 115.69467253983021 -31.65419714036528, 115.69489449262619 -31.654175592859, 115.69489449262619 -31.654159182503204, 115.6949146091938 -31.654156471226745, 115.69511527195573 -31.654158183611891, 115.69520596414804 -31.654149621685871, 115.69521032273769 -31.654160466792014, 115.69545641541481 -31.65413738526523, 115.69547183811665 -31.654265243295125, 115.69585237652063 -31.654223004501141, 115.69591612089425 -31.654216440362511, 115.69591817446053 -31.654220150527877, 115.69609796628356 -31.654204739070757, 115.69609805010259 -31.654195606354225, 115.69623492658138 -31.654179624098138, 115.69658696651459 -31.654006102283667, 115.69696851074696 -31.653817168623821, 115.69713816046715 -31.653716137475904, 115.69704562425613 -31.653609398234209, 115.69707747548819 -31.653590133785823, 115.69709591567516 -31.653610825230231, 115.69723840802908 -31.653499662174791, 115.69730713963509 -31.653455853334631, 115.69744259119034 -31.653369662592109, 115.69750562310219 -31.653444437346835, 115.69754334166646 -31.653410332074948, 115.6975569203496 -31.653425315564135, 115.69773964583874 -31.653296600178219, 115.69771081209183 -31.653266347755672, 115.69773226976395 -31.653247511336634, 115.69772154092789 -31.653235524522543, 115.69792618509382 -31.653060645291141, 115.69793368689716 -31.6530638560511, 115.69802781566978 -31.652984657272853, 115.69802069105208 -31.6529768087416, 115.69831799715757 -31.652732647738429, 115.698316488415 -31.652729508317492, 115.69849468767643 -31.652579101390355, 115.69824993610382 -31.65236790339684, 115.69853827357292 -31.652122456477073, 115.69837130606174 -31.651964342652931, 115.698371976614 -31.651914967703277, 115.69840148091316 -31.651892420752208, 115.698371976614 -31.651861597063455, 115.69837398827076 -31.651853034925875, 115.69812789559364 -31.651642406092975, 115.69807567633688 -31.651687286057061, 115.69810526445508 -31.651716754129815, 115.69795522838831 -31.651819071772355, 115.69793812930584 -31.651803374512333, 115.69782480597496 -31.65189869965053, 115.69788314402103 -31.65194778920452, 115.69787945598364 -31.651950643247559, 115.69788850843906 -31.651958063759064, 115.69778356701136 -31.652045254724705, 115.6977762747556 -31.652037941246675, 115.6977622769773 -31.65205117685769, 115.69777987897396 -31.652069656764255, 115.69767460227013 -31.652154992501373, 115.69765674881637 -31.652138760166103, 115.69762032944709 -31.652168602687979, 115.69762146100402 -31.65217218807101, 115.69752138108015 -31.652252743207633, 115.69752775132656 -31.652256310749713, 115.69741576910019 -31.652344500346388, 115.69743219763041 -31.652353633244832, 115.69720722734928 -31.652551131953924, 115.69718811661005 -31.652536291025047, 115.69711938500404 -31.652593371507759, 115.69721728563309 -31.6526795629702, 115.69720521569252 -31.652693833072156, 115.69722801446915 -31.652714952819053, 115.6970389187336 -31.652878202592515, 115.69700656458735 -31.652854942371331, 115.69696616381407 -31.652888762445606, 115.69705165922642 -31.652970101814379, 115.69711267948151 -31.652997214921477, 115.69717235863209 -31.65299921272905, 115.69726724177599 -31.653073702380979, 115.69727160036564 -31.653104811068516, 115.69724410772324 -31.653108521278273, 115.69723203778267 -31.653087687021625, 115.69721929728985 -31.653083406009412, 115.69717034697533 -31.653054009720186, 115.69713581353426 -31.653023757218655, 115.69710396230221 -31.653020903208571, 115.69707982242107 -31.653019190802478, 115.69703824818134 -31.653000354333365, 115.69690480828285 -31.653081408203633, 115.69689072668552 -31.653059717738245, 115.69682970643044 -31.65299921272905, 115.69655478000641 -31.653209267686275, 115.69649443030357 -31.653156753991478, 115.69629393517971 -31.653256786846484, 115.69627046585083 -31.653280332367324, 115.69625906646252 -31.653273625461985, 115.6962114572525 -31.653297741778886, 115.69618798792362 -31.653320002988934, 115.69617390632629 -31.653313724186638, 115.6960491836071 -31.653375941390614, 115.69587349891663 -31.653393636184148, 115.69516304880381 -31.653467554720667, 115.69516472518444 -31.6534781145068, 115.69499909877777 -31.65349295528528, 115.69499842822552 -31.653486961894259, 115.69496423006058 -31.653488959691312, 115.69359228014946 -31.653634513360938, 115.69297570735216 -31.653696159552297, 115.6929787248373 -31.653719562262378, 115.69274503737688 -31.653741252573777, 115.69274134933949 -31.653721845453287, 115.69262875750597 -31.653731993443863, 115.69266825914383 -31.65402005110926, 115.69276414811611 -31.654247227595647, 115.69299884140491 -31.654222112634503, 115.69301040843129 -31.654287539948072, 115.69303270429373 -31.654285613517473, 115.69303840398788 -31.654337698478955, 115.69301661103964 -31.654340124353165, 115.69303639233112 -31.654476115905993, 115.69308056496084 -31.654472619798266, 115.69308316335082 -31.654480539552317)))\nAYCA-1IDZGW\tDeepdale North\tContracted\tPOLYGON ((114.68948799999 -28.7846939999871, 114.68947931999 -28.7872579799866, 114.69143099999 -28.7872629999872, 114.691486582758 -28.7872663128828, 114.691493946338 -28.7850809372732, 114.689473935784 -28.7846482240864, 114.68947299999 -28.7846769999872, 114.68948799999 -28.7846939999871))\nAYCA-E1F2P\tBig Sky\tReady for service\tPOLYGON ((153.329235325445 -27.8371893741321, 153.329459700301 -27.8372249308295, 153.329493532178 -27.8372849055515, 153.329551218924 -27.8373492983351, 153.32961497716 -27.8373936499677, 153.330078151799 -27.8374695092813, 153.330256771143 -27.8374757086377, 153.3303555324 -27.837475472296, 153.330404993557 -27.8375607174079, 153.331064721658 -27.8382299551952, 153.332816105567 -27.8369857899554, 153.331957021755 -27.8364658691454, 153.331322388153 -27.8360817797855, 153.33111055374 -27.8359689494654, 153.330762162233 -27.8357580959987, 153.330579329964 -27.8356590956984, 153.330415849707 -27.8354729796143, 153.329355323416 -27.8367920510833, 153.32931530525 -27.8368306943008, 153.329297503081 -27.8368837769095, 153.329235325445 -27.8371893741321))\n10354\tMillbridge\tReady for service\tPOLYGON ((115.73272973299026 -33.314029170846915, 115.73287524282932 -33.313903089227004, 115.73332518339157 -33.313511394497944, 115.73394745588303 -33.312966717357341, 115.73408156633377 -33.312845677530639, 115.73420092463493 -33.312742009026934, 115.73425658047199 -33.31269269639813, 115.73434844613075 -33.3126114425739, 115.73420092463493 -33.312526826441974, 115.73435582220554 -33.31232705359276, 115.73442924767733 -33.312228287744354, 115.7345013320446 -33.312137927402063, 115.73432765901089 -33.312084131432876, 115.73466226458549 -33.311720447395409, 115.73510482907295 -33.3119513224918, 115.73527716100216 -33.312054431560647, 115.7354548573494 -33.312158661256326, 115.73589071631432 -33.312413070850432, 115.73633059859276 -33.312670281557622, 115.73609925806522 -33.312861648072946, 115.73588199913502 -33.3130401256889, 115.73552493005991 -33.313262311598208, 115.73517322540283 -33.313538292046346, 115.73445975780487 -33.314130036011555, 115.73393136262894 -33.314599863009732, 115.73343515396118 -33.315051756092814, 115.73317900300026 -33.315252783495993, 115.73310993611813 -33.3153149828216, 115.73302209377289 -33.315363733613346, 115.73285780847073 -33.315330217446913, 115.73279812932014 -33.315315753308468, 115.73283366858959 -33.315186766708266, 115.73289066553116 -33.314946269053991, 115.7330958545208 -33.31476527373114, 115.73320046067238 -33.314677577719749, 115.73329567909241 -33.314587640185131, 115.73309317231178 -33.314336599099093, 115.73302209377289 -33.31422732875771, 115.73295973241329 -33.314245540490788, 115.73288932442665 -33.314255907167919, 115.73280550539494 -33.314218362980029, 115.73272973299026 -33.314029170846915))\nAYCA-1B7QW3\tHeights Durack\tReady for service\tPOLYGON ((130.97684745566 -12.4689548107749, 130.976105384394 -12.4695425985119, 130.976261406047 -12.4697371784944, 130.976274043273 -12.4697402842075, 130.97637546723 -12.4698737816428, 130.976313058342 -12.4699269499154, 130.976873353128 -12.4706340346146, 130.976938315889 -12.4705841733351, 130.977078908394 -12.4707586887538, 130.977191626502 -12.470675055592, 130.97729284728 -12.4707743692407, 130.977453003671 -12.4709769732229, 130.977500192115 -12.4709407062572, 130.977655966566 -12.4711369068785, 130.977667099911 -12.4711511743673, 130.977605792896 -12.4714040429747, 130.97776702486 -12.471606350308, 130.979065865071 -12.4706457911069, 130.978989978907 -12.4705606664793, 130.979105950268 -12.4704631359771, 130.97895499392 -12.4702977284652, 130.979200849502 -12.4700954167258, 130.978733543903 -12.469573518111, 130.978637934766 -12.469498845483, 130.978156895565 -12.4691250820249, 130.977501109513 -12.4686124799616, 130.977221997731 -12.4689553490314, 130.977231906806 -12.4690422692875, 130.977127456229 -12.4691211741824, 130.976948854186 -12.4690771606935, 130.97684745566 -12.4689548107749))\nAYCA-EV5A6\tBotanic Ridge Estate\tReady for service\tPOLYGON ((145.257629874059 -38.1394484973512, 145.257629805173 -38.1394484893738, 145.25732372172 -38.1397348964954, 145.25638022246 -38.1401409503577, 145.256178599992 -38.1401168400273, 145.255898479808 -38.140258755972, 145.255938839997 -38.1403217700279, 145.25650996672 -38.1405373261856, 145.257499359088 -38.1408362304922, 145.258130519997 -38.1410397900279, 145.258218359997 -38.141109990028, 145.258205039997 -38.1411490500279, 145.258172639997 -38.1411683100279, 145.258127639997 -38.1412008000281, 145.25798955791 -38.1413206182708, 145.257380297591 -38.1410694612817, 145.257271098187 -38.141241040582, 145.257871783323 -38.1415744621414, 145.258366685276 -38.1413410993927, 145.258525699988 -38.1412835740912, 145.258604420143 -38.1412312475797, 145.259459006758 -38.1415646515866, 145.259798383824 -38.1396995988949, 145.257629874059 -38.1394484973512))\nAYCA-1E33L6\tHeartland\tUnder construction\tPOLYGON ((150.770672515165 -34.0243758693653, 150.772295617241 -34.0250411723426, 150.77252499999 -34.0247810000162, 150.77262099999 -34.0248460000162, 150.77409999999 -34.0233000000162, 150.772509694361 -34.0222448403297, 150.771570699449 -34.0232969878044, 150.770672515165 -34.0243758693653))\n10595\tSecret Harbour\tReady for service\tPOLYGON ((115.76824150979519 -32.415166296226637, 115.7685412466526 -32.415169692651773, 115.7686036080122 -32.415223469366005, 115.76860830187798 -32.415340079815195, 115.76873235404491 -32.415342910164, 115.7687296718359 -32.415136294465739, 115.76885137706995 -32.415051383767619, 115.7689006626606 -32.415028174829573, 115.76902337372303 -32.41500666410117, 115.76908506453037 -32.415017985537816, 115.76908975839615 -32.414915526484442, 115.76908774673939 -32.414570221635707, 115.7693187519908 -32.414575316307022, 115.76932026073337 -32.414565976076069, 115.76942503452301 -32.414565126964121, 115.76942771673203 -32.414737779563417, 115.76994806528091 -32.4147389117105, 115.76994672417641 -32.4146613596012, 115.7702873647213 -32.414656264934742, 115.77029339969158 -32.415027608757832, 115.77059045433998 -32.415026476614358, 115.77059581875801 -32.415164598014016, 115.77065885066986 -32.415214978307986, 115.77066756784916 -32.415731233182512, 115.77060453593731 -32.415785009562065, 115.77048450708389 -32.415783311361096, 115.77048785984516 -32.415916903073082, 115.77041745185852 -32.415919733403825, 115.77041409909725 -32.416206728480049, 115.77104810625315 -32.416209558801711, 115.77105447649956 -32.416213521251869, 115.77104978263378 -32.416504477831, 115.77115640044212 -32.416506176018387, 115.77115975320339 -32.416642030906559, 115.77110879123211 -32.416642596968153, 115.77110812067986 -32.416948269716684, 115.7700939103961 -32.416946288507752, 115.76932730153203 -32.416944448813716, 115.76932780444622 -32.416951666074738, 115.76925102621317 -32.416951949104579, 115.76924817636609 -32.416946430022691, 115.76864719390869 -32.416945439418207, 115.76864585280418 -32.416960723028929, 115.76836556196213 -32.416955062432677, 115.76836723834276 -32.416946146992835, 115.76835282146931 -32.416947420627146, 115.76835282146931 -32.416647125460891, 115.76831392943859 -32.416646559399304, 115.76830605044961 -32.416513393314474, 115.76830353587866 -32.416358716627016, 115.76830387115479 -32.416224842537076, 115.76830118894577 -32.41609153431358, 115.76829917728901 -32.415917469139238, 115.76825559139252 -32.415916903073082, 115.76825559139252 -32.415781613160092, 115.76824218034744 -32.415167994439216, 115.76824150979519 -32.415166296226637))\n17317230\tTarneit Gardens\tCheck with carrier\tPOLYGON ((144.675806048 -37.8385389815, 144.673161856 -37.8390519865, 144.673155008 -37.8391050075, 144.67314816 -37.83915801, 144.673139168 -37.8392110125, 144.67313808 -37.839216951000004, 144.673221952 -37.839301015000004, 144.673423936 -37.8393190155, 144.673399072 -37.8394980215, 144.673161856 -37.8394769685, 144.673070048 -37.8395229595, 144.673070048 -37.8395250315, 144.673054912 -37.839576961, 144.673039072 -37.839627984, 144.67302288 -37.839680006, 144.673005952 -37.8397310475, 144.672987968 -37.839782977, 144.67296816 -37.839834, 144.672949088 -37.8398840425, 144.67292784 -37.839934973, 144.672905888 -37.8399850155, 144.672883936 -37.8400349655, 144.67286016 -37.840085008, 144.672836032 -37.840134958, 144.672810848 -37.8401840015, 144.672784928 -37.840232971, 144.672759008 -37.8402820145, 144.672730912 -37.840329985000004, 144.672702848 -37.840379047, 144.67267296 -37.840426018500004, 144.672689152 -37.8404630185, 144.672954112 -37.8405729825, 144.672959872 -37.840575961, 144.673008128 -37.8405950345, 144.673057088 -37.840614034, 144.673106048 -37.840633015, 144.673156096 -37.8406510155, 144.673206112 -37.8406680355, 144.673256896 -37.840685037, 144.673306912 -37.8407009655, 144.673358048 -37.840716006, 144.673409888 -37.8407300475, 144.673460992 -37.8407439965, 144.673512832 -37.840758038000004, 144.673565056 -37.8407700075, 144.673617952 -37.840781977, 144.67367088 -37.840794039, 144.673723072 -37.8408050095, 144.673777088 -37.840814999500004, 144.673830016 -37.840824009, 144.673882912 -37.840833, 144.673936928 -37.8408400115, 144.673990912 -37.840848022, 144.674044928 -37.840853979, 144.675267136 -37.840995985, 144.67536288 -37.8409390235, 144.67557312 -37.839696027, 144.675163072 -37.839639953500004, 144.675172096 -37.839413976, 144.675528128 -37.839426038, 144.675583936 -37.8394319765, 144.675648 -37.839393996, 144.675806048 -37.8385389815))\nAYCA-MQ1IF\tHeron Park\tReady for service\tPOLYGON ((115.933853735722 -32.1206153334704, 115.93446074444 -32.1210653592391, 115.934507990748 -32.1209256755028, 115.93456801891 -32.1209751770468, 115.934646724806 -32.1209002861082, 115.934693902344 -32.1209331711552, 115.934999561012 -32.1211356723619, 115.934985538374 -32.1211771882867, 115.93612397908 -32.121455674136, 115.936187609585 -32.1214797731429, 115.937001991132 -32.1209925504401, 115.937135955423 -32.1210542933006, 115.937691932015 -32.1205707278842, 115.936900291691 -32.1199006274731, 115.935772678845 -32.1189451165298, 115.935622284737 -32.1190759139232, 115.933853735722 -32.1206153334704))\n319\tSamford Retirement Village\tUnder construction\tPOLYGON ((152.88582620064778 -27.377593669964934, 152.88586032599048 -27.377409804534931, 152.8858585983927 -27.377409549002863, 152.88644041567321 -27.374284129586211, 152.88644044343965 -27.374284068484386, 152.88800682144264 -27.375321596946634, 152.88837677349989 -27.375646620940682, 152.88787498342626 -27.376044388525216, 152.88800991659937 -27.376180389661247, 152.88770677260229 -27.376420085585476, 152.88809127990785 -27.376810108121269, 152.88804874815619 -27.376842762843296, 152.88767008542135 -27.377143051113375, 152.88766850272398 -27.377143575343837, 152.88755930655518 -27.377230083582234, 152.88755976082524 -27.377230540557356, 152.88731345832 -27.377425877149516, 152.88709639098482 -27.377546762451345, 152.88663163645981 -27.377641381097838, 152.88582620064778 -27.377593669964934))\n17364564\t42-44 WANAKA DRIVE\tCheck with carrier\tPOLYGON ((144.814979168 -37.714644981, 144.814484896 -37.713813036000005, 144.81397296 -37.7138660385, 144.813224896 -37.713671011500004, 144.812840032 -37.712985031500004, 144.81219888 -37.712628999, 144.811530016 -37.712408035, 144.810564128 -37.7124570045, 144.81056304 -37.7124570045, 144.810761056 -37.713384983000005, 144.810803872 -37.7135900185, 144.81084816 -37.713797015000004, 144.810894976 -37.714022012, 144.810929152 -37.7141840165, 144.814979168 -37.714644981))\nAYCA-M7UKE\tAlex Ave Schofields\tReady for service\tPOLYGON ((150.882861701004 -33.7065022882839, 150.882498386823 -33.7083574561131, 150.882471580724 -33.7084760516722, 150.883271075988 -33.7085883831789, 150.883355838094 -33.7081673661807, 150.882995056691 -33.7081167271517, 150.883012019741 -33.7080276948818, 150.882990743806 -33.7080247077957, 150.883008772231 -33.7079350612113, 150.883428800299 -33.7079947797337, 150.883328396002 -33.7085026730786, 150.883460284007 -33.708518502092, 150.883463514537 -33.7085024254444, 150.88380392474 -33.708550203727, 150.883781819427 -33.7086602122415, 150.885927239547 -33.7089620612411, 150.886216514691 -33.7075424792026, 150.886387592924 -33.7067405036733, 150.885962782626 -33.7066803792117, 150.885940681817 -33.7067919494465, 150.885568828804 -33.7067400196146, 150.885524752402 -33.7069634038322, 150.884674391865 -33.7068438673198, 150.884656564058 -33.7069332979936, 150.883804931906 -33.7068123575726, 150.883785298581 -33.7069050429177, 150.883612506959 -33.7068809399852, 150.883666693886 -33.706614285301, 150.882861701004 -33.7065022882839), (150.885009389665 -33.7076098419873, 150.885237219372 -33.7076265317648, 150.885203709629 -33.7077904129663, 150.884993697642 -33.7077599534618, 150.885009389665 -33.7076098419873), (150.884970778534 -33.7074406779433, 150.885192959982 -33.707382030013, 150.885272547866 -33.7074315643598, 150.885237358931 -33.7076259404304, 150.885009463572 -33.7076093777429, 150.884970778534 -33.7074406779433), (150.884427140979 -33.7080609028192, 150.885107959698 -33.7081564530615, 150.885064194207 -33.7083742727026, 150.885002073263 -33.708411260928, 150.884431317076 -33.7083349644957, 150.884383373851 -33.7082787221443, 150.884427140979 -33.7080609028192), (150.882651232411 -33.7079761854605, 150.882706675887 -33.7078225516163, 150.882802937275 -33.7077161374946, 150.882891477369 -33.7076825383959, 150.882967046252 -33.7076768289268, 150.883027664551 -33.7076790067974, 150.883136533009 -33.7076815394868, 150.883245756641 -33.7076823046355, 150.883344364313 -33.7076814684012, 150.883399984252 -33.7076803566748, 150.88344495457 -33.7077232923423, 150.883391623488 -33.7079886943609, 150.883008664937 -33.7079349424185, 150.882990799368 -33.7080238479937, 150.882651232411 -33.7079761854605), (150.885495251562 -33.7070998750495, 150.885526059973 -33.7069706219155, 150.885525648996 -33.70696367697, 150.88556985013 -33.7067411146871, 150.885941520595 -33.7067930244481, 150.885963266393 -33.706680805967, 150.886337060313 -33.7067338732726, 150.886300574902 -33.7069023251777, 150.886262947645 -33.7069918810265, 150.886172894232 -33.7071055036109, 150.886025438303 -33.7071260805498, 150.885916437202 -33.707124214365, 150.885806830556 -33.7071253596278, 150.885696392054 -33.7071306456783, 150.885596328994 -33.7071387291432, 150.885538240775 -33.7071448716546, 150.885495251562 -33.7070998750495), (150.882832898524 -33.7070223745366, 150.883565146178 -33.7071251531158, 150.883499344163 -33.7074526206917, 150.883436525511 -33.7074989567362, 150.883380742725 -33.7075004312276, 150.883282036063 -33.7075017611435, 150.883172676294 -33.7075016746433, 150.883064258967 -33.7074968980886, 150.88296885767 -33.7074845746276, 150.882855489028 -33.7074439134487, 150.882826351484 -33.707420375032, 150.88278925471 -33.7073437962801, 150.882789859418 -33.707246709307, 150.882832898524 -33.7070223745366), (150.885738909094 -33.7077925068541, 150.88536658722 -33.7077402552207, 150.885438095328 -33.7073843508441, 150.88550013528 -33.7073320452511, 150.885559005532 -33.7073244968877, 150.885659426531 -33.7073146293991, 150.885743272689 -33.707308596295, 150.88586375373 -33.7073044412597, 150.885999795431 -33.7073184005822, 150.886124875984 -33.7073629873162, 150.886160421092 -33.7073977570444, 150.886178862823 -33.7074589541957, 150.886180293632 -33.7075081526332, 150.886133503827 -33.7077344844692, 150.885761237417 -33.70768137422, 150.885738909094 -33.7077925068541))\nAYCA-ES879\tVista Park\tContracted\tPOLYGON ((150.760773157261 -34.4717682164447, 150.76062999999 -34.4724530000173, 150.76061599999 -34.4727460000174, 150.76065899999 -34.4730010000173, 150.76102199999 -34.4733980000174, 150.76117599999 -34.4732990000174, 150.76141899999 -34.4735210000174, 150.76164799999 -34.4737990000174, 150.76141099999 -34.4740850000174, 150.76153599999 -34.4742170000174, 150.76175499999 -34.4741920000174, 150.76180099999 -34.4741730000174, 150.76185099999 -34.4741300000174, 150.76190899999 -34.4740940000175, 150.76201699999 -34.4740650000174, 150.76208399999 -34.4740650000175, 150.76224699999 -34.4740920000174, 150.76235899999 -34.4740940000174, 150.76254599999 -34.4741070000175, 150.76271899999 -34.4740820000174, 150.762769566914 -34.4737540062563, 150.76405440821 -34.4738939646296, 150.764203817716 -34.4729565861936, 150.76292708108 -34.4728176519204, 150.762859048108 -34.472802568788, 150.76295799999 -34.4721240000174, 150.76287999999 -34.4720550000173, 150.760773157261 -34.4717682164447))\nAYCA-DR2XE\tLyndarum\tReady for service\tPOLYGON ((145.022186165777 -37.6175821626794, 145.021973395891 -37.6177006273034, 145.021947476226 -37.6180279167561, 145.022019140108 -37.6181032120518, 145.022385715563 -37.6184570814713, 145.022089549297 -37.6186306144433, 145.022401773375 -37.6189451972598, 145.022379271524 -37.6189929430298, 145.022740253574 -37.6193332671785, 145.023782921291 -37.6187049929176, 145.023902101225 -37.618826252538, 145.025537300204 -37.6178411973553, 145.024431592192 -37.6167395915446, 145.024312899105 -37.6167275767154, 145.024293955158 -37.6167439521016, 145.02407408216 -37.616500937576, 145.0222254868 -37.6176216859547, 145.022186165777 -37.6175821626794))\nAYCA-1T833W\tMunno Para West\tContracted\tPOLYGON ((138.679963581282 -34.6537236956186, 138.679535279988 -34.6545048500399, 138.678652949988 -34.65605404004, 138.680716999988 -34.6568500000165, 138.680781999988 -34.6568300000164, 138.681142999988 -34.6561940000165, 138.680845999988 -34.6560790000164, 138.681783999988 -34.6544270000165, 138.679963581282 -34.6537236956186))\nAYCA-1JCYUF\tThe Village at Wellard\tUnder construction\tPOLYGON ((115.815194636229 -32.2674723303443, 115.815626680519 -32.2677013384043, 115.815921 -32.2677120000139, 115.816913 -32.2672790000139, 115.816866 -32.2671970000139, 115.817007 -32.2671390000138, 115.817649 -32.2668780000139, 115.817689 -32.2668570000139, 115.817399 -32.2664500000138, 115.816899 -32.2659170000139, 115.81664 -32.2656530000139, 115.81652 -32.2655350000139, 115.816482 -32.2655090000138, 115.816447 -32.2655310000139, 115.816361 -32.2655230000139, 115.816252 -32.2654110000139, 115.816234 -32.2653840000139, 115.816233 -32.2653330000139, 115.816213 -32.2653050000138, 115.816265 -32.2652680000138, 115.816164 -32.2651660000139, 115.816121 -32.2651970000139, 115.816052 -32.2651290000138, 115.815309 -32.2657450000139, 115.815214 -32.2658230000138, 115.814941 -32.2660470000139, 115.814268 -32.2665140000139, 115.813935117242 -32.2667203323842, 115.814054987694 -32.2668036195603, 115.815194636229 -32.2674723303443))\nAYCA-GC69I\tRedbank Estate\tReady for service\tPOLYGON ((150.95450405738 -31.1321730296903, 150.955026999988 -31.1323520000019, 150.955129999989 -31.132327000002, 150.955299999988 -31.1323990000019, 150.955729999988 -31.131643000002, 150.956012999989 -31.131762000002, 150.955987999988 -31.1318570000019, 150.956126192465 -31.1319582332049, 150.956143999989 -31.131942000002, 150.956444999989 -31.132069000002, 150.956140999989 -31.1326030000021, 150.956175999989 -31.1326680000019, 150.956855595472 -31.1331283222035, 150.957565983262 -31.1317693158453, 150.957795098663 -31.1318465022861, 150.958114867117 -31.1311028392757, 150.955610350508 -31.1302207636765, 150.954879563982 -31.1315147983169, 150.95450405738 -31.1321730296903))\nAYAA-FPPJL\tTreendale Grand Entrance\tReady for service\tPOLYGON ((115.741617559306 -33.2834902562883, 115.74149637655 -33.2834853356796, 115.740250302214 -33.2840039478902, 115.740561758788 -33.2845246464364, 115.741052053739 -33.2843149868236, 115.741138609202 -33.2843236899584, 115.741283039999 -33.2842637700176, 115.741312199999 -33.2841913200177, 115.741736011209 -33.2840127628576, 115.741827136415 -33.2839796802845, 115.741819706454 -33.2839642402395, 115.742353785541 -33.2837655966738, 115.74252004031 -33.2840385339996, 115.7441033374 -33.2834082426082, 115.743926232277 -33.2832905786809, 115.743876986883 -33.2832342382494, 115.743873852533 -33.2832091895594, 115.743884437695 -33.2831556100139, 115.743899497181 -33.2830897841342, 115.744143201016 -33.2829535502674, 115.744268006384 -33.282816104019, 115.744436612664 -33.282732668938, 115.744575623051 -33.2828217144404, 115.74474765417 -33.2826134033643, 115.744363734219 -33.2823610212831, 115.744569912359 -33.2820144061594, 115.743978070939 -33.2816736082834, 115.743991679636 -33.2816569358901, 115.743790661533 -33.2813848497932, 115.743720629472 -33.2814652431922, 115.74350311504 -33.2815557806319, 115.743357786629 -33.2812941881886, 115.743204894939 -33.2812508742509, 115.74234696965 -33.2797962041816, 115.742016179704 -33.2799254579295, 115.742103188577 -33.280063706342, 115.742076665403 -33.2801492143138, 115.742193035004 -33.2803459692739, 115.741950164392 -33.2804470585287, 115.742093188753 -33.2806894791332, 115.742144525324 -33.2806681115283, 115.742443600539 -33.2811750268738, 115.742379982915 -33.2812015061473, 115.742484955934 -33.2813794280983, 115.741920404584 -33.2816144070254, 115.742049128016 -33.2818325856059, 115.742783647851 -33.2815268610981, 115.742941291594 -33.2817939877197, 115.743002726136 -33.2817681124982, 115.743108218131 -33.2817973172295, 115.743239362584 -33.2820811187843, 115.743322740502 -33.2821407516452, 115.743557695548 -33.282256091723, 115.743238671891 -33.2823940529083, 115.743412095027 -33.2826879828248, 115.743138718326 -33.282804230556, 115.743317136515 -33.2831073162811, 115.742218506492 -33.2835635293025, 115.742040137525 -33.2832604173379, 115.741817430656 -33.28335171091, 115.741790737101 -33.2834181785336, 115.741617559306 -33.2834902562883), (115.743499048217 -33.2832867559444, 115.743645879881 -33.2832289736113, 115.743747954644 -33.2832600001634, 115.743792419321 -33.2833397073968, 115.743964219443 -33.283438066182, 115.743661241582 -33.2835638785491, 115.743499048217 -33.2832867559444))\nAYCA-HAFZC\tSanctuary\tReady for service\tPOLYGON ((151.640409860095 -32.8625539345981, 151.63991024405 -32.8632979837565, 151.63941271026 -32.8635227936407, 151.639220747182 -32.8636892481015, 151.638976040302 -32.8638725962599, 151.638953084531 -32.8639051836965, 151.638787038564 -32.8641125537856, 151.638741790105 -32.8641872548263, 151.638705880031 -32.8642452589024, 151.638687622698 -32.8642744562389, 151.638668131424 -32.8643092974398, 151.638647299981 -32.8643625894257, 151.63846719283 -32.8648545824783, 151.639064886071 -32.8652051162006, 151.639199565445 -32.8654963828878, 151.639268542591 -32.8656862415559, 151.639366562891 -32.8657132075127, 151.639460107776 -32.8657447066811, 151.639733747347 -32.8656580367945, 151.640005607135 -32.8655647388344, 151.64031285083 -32.8654571321017, 151.640623837741 -32.8653470744112, 151.640689507376 -32.8652777666912, 151.640810512277 -32.8651298703304, 151.640806654082 -32.8649290698675, 151.640768222615 -32.8648684706084, 151.64073561894 -32.8648160604543, 151.64061924478 -32.8645883178059, 151.640850944641 -32.8638796522853, 151.641050785827 -32.8634408022078, 151.641281877289 -32.8627158994455, 151.640717617476 -32.8623412984136, 151.640409860095 -32.8625539345981))\nAYCA-EOUA4\tHidden Valley Northern Paddock\tContracted\tPOLYGON ((144.997435999994 -37.3829400000256, 144.997535999994 -37.3829520000257, 144.997633999994 -37.3829710000257, 144.997729999994 -37.3829970000256, 144.997822999995 -37.3830280000256, 144.998408999995 -37.3821970000257, 144.997607999994 -37.3819240000256, 144.997716999994 -37.3818260000256, 144.997025999994 -37.3814240000256, 144.995753999994 -37.3817380000256, 144.995655999994 -37.3828540000256, 144.995224030408 -37.3835417936804, 144.996012346599 -37.3838680796194, 144.996103506111 -37.3837775540137, 144.99629570975 -37.3839049332668, 144.996205788902 -37.3840073047105, 144.996831016158 -37.384279740443, 144.997607999994 -37.3831140000257, 144.997545999994 -37.3831010000257, 144.997483999994 -37.3830910000256, 144.997419999994 -37.3830840000256, 144.997338999994 -37.3830740000256, 144.997259999994 -37.3830590000256, 144.997181999994 -37.3830380000256, 144.997106999994 -37.3830120000256, 144.997033999994 -37.3829820000257, 144.997122999994 -37.3828570000256, 144.997181999994 -37.3828810000256, 144.997242999994 -37.3829030000257, 144.997305999994 -37.3829200000256, 144.997370999994 -37.3829320000257, 144.997435999994 -37.3829400000256))\nAYCA-RX20O\tForest Park Estate\tReady for service\tPOLYGON ((150.526877499554 -23.324944363326, 150.526452239994 -23.3234121599396, 150.524893999994 -23.3241489999404, 150.525047999994 -23.3244289999404, 150.525064999994 -23.3245829999404, 150.525220999994 -23.3248639999404, 150.525731999994 -23.3246219999404, 150.525958999994 -23.3254409999404, 150.526389999994 -23.3257239999404, 150.526639999994 -23.3255609999405, 150.527090999994 -23.3254309999404, 150.528390999994 -23.3253679999404, 150.529437999994 -23.3248939999405, 150.529502999994 -23.3247229999404, 150.529094280038 -23.3239066200319, 150.526877499554 -23.324944363326))\nAYAA-I2S0G\tRiverbank\tReady for service\tPOLYGON ((152.957423135435 -27.0937721425907, 152.957358998358 -27.0941621857611, 152.956823997005 -27.094084184833, 152.9567968203 -27.0940674722832, 152.956773633958 -27.0941448894325, 152.956805200096 -27.0941542274441, 152.956758662626 -27.0944160238057, 152.956962224851 -27.0944654836944, 152.959051205551 -27.094759928873, 152.959464080465 -27.0947113167207, 152.95945836419 -27.0945875997647, 152.959646904499 -27.0935273208838, 152.959682766922 -27.0934205535699, 152.959776660731 -27.093267200569, 152.959826098107 -27.0932133608528, 152.95972914961 -27.0929226142075, 152.959061733096 -27.0928304949431, 152.959115993508 -27.0925456550873, 152.958116262564 -27.092402814791, 152.958101135515 -27.092491876034, 152.957653706985 -27.0924267420636, 152.957597965656 -27.0927137369331, 152.957462408667 -27.0934390276089, 152.957223453051 -27.0934045916199, 152.957168955511 -27.0937395819678, 152.957423135435 -27.0937721425907))\nAYAA-HDH0A\t22-26 Fairway Drive, Kellyville\tReady for service\tPOLYGON ((150.95973745889 -33.7268669549468, 150.956904567708 -33.7281258607769, 150.957258050927 -33.7285776942357, 150.958267124685 -33.7281930089368, 150.959099881597 -33.7290416548193, 150.96112892025 -33.7282741124339, 150.961367159994 -33.7279296600171, 150.95973745889 -33.7268669549468))\n10607\tSecret Harbour\tReady for service\tPOLYGON ((115.76587110757828 -32.407727500034227, 115.76626539230347 -32.407725801681636, 115.76675958931446 -32.407129677943466, 115.76680485159159 -32.407018718104581, 115.76680652797222 -32.406873790762631, 115.76730340719223 -32.406871526271068, 115.76729066669941 -32.407225918509575, 115.76747976243496 -32.407226484630243, 115.76753944158554 -32.407282530559357, 115.76753944158554 -32.408017917859524, 115.76759777963161 -32.408181525150752, 115.76758369803429 -32.408933888426589, 115.76766148209572 -32.409050507003471, 115.76733894646168 -32.409224868478155, 115.76731782406569 -32.409191751146054, 115.76714867725968 -32.409194440160654, 115.76714758761227 -32.409190972747076, 115.76712369918823 -32.409191468091876, 115.76697483658791 -32.409164294887148, 115.76665297150612 -32.409182410357879, 115.76633982360363 -32.409187505333371, 115.76618559658527 -32.40916712542969, 115.76585467904806 -32.409187222279179, 115.76550431549549 -32.409175050948342, 115.76534673571587 -32.409188071441733, 115.76532930135727 -32.409188354495925, 115.76532930135727 -32.409195430850218, 115.76510600745678 -32.409204771637043, 115.76507281512022 -32.409204347055848, 115.7650738209486 -32.409207885232441, 115.76507013291121 -32.409215527693419, 115.76472245156765 -32.409081076896783, 115.76474357396364 -32.409004369089359, 115.76475664973259 -32.408911810135344, 115.7646594196558 -32.408855199107514, 115.76437510550022 -32.408842744676619, 115.76406497508287 -32.408779340274542, 115.76373003423214 -32.4086468702193, 115.76356390491128 -32.408520344151661, 115.76341789215803 -32.408364380007647, 115.76315335929394 -32.408066603797245, 115.76352752745152 -32.40783166559951, 115.76390169560909 -32.40826191339972, 115.76432749629021 -32.408446466432828, 115.764921605587 -32.408446466432828, 115.76492562890053 -32.408356454417813, 115.76526174321771 -32.408357728173364, 115.76553616672754 -32.408362398610251, 115.76587177813053 -32.408359284985693, 115.76587244868279 -32.407728066151748, 115.76587110757828 -32.407727500034227))\nAYCA-1OUD2V\tCoomera 2 Estate\tContracted\tPOLYGON ((153.344296 -27.841463999984, 153.344494 -27.841478999984, 153.344638 -27.841412999984, 153.344765 -27.841355999984, 153.344891 -27.841297999984, 153.344775 -27.8410969999841, 153.344866 -27.841055999984, 153.344996 -27.840835999984, 153.345267 -27.840711999984, 153.345151 -27.840511999984, 153.345104 -27.840430999984, 153.345222 -27.840377999984, 153.345106 -27.840186999984, 153.345106 -27.840176999984, 153.345093 -27.840035999984, 153.346159 -27.839549999984, 153.342425 -27.838953999984, 153.342764 -27.840417999984, 153.342988 -27.840376999984, 153.343112 -27.840354999984, 153.343236 -27.8403319999841, 153.343361 -27.840308999984, 153.343485 -27.840285999984, 153.343551 -27.8405689999841, 153.343585 -27.840714999984, 153.343629 -27.840903999984, 153.343717 -27.8411179999841, 153.343752 -27.841203999984, 153.343796 -27.8413109999841, 153.34384 -27.841418999984, 153.343889 -27.841538999984, 153.344284 -27.841465999984, 153.344296 -27.841463999984))\nAYCA-181ZYP\tPlateau Drive Estate\tReady for service\tPOLYGON ((153.417476227406 -28.8150662776219, 153.416976110457 -28.8169382003528, 153.416933235934 -28.8170998309263, 153.417032 -28.8171339999917, 153.417116 -28.8171599999917, 153.418521 -28.8175129999918, 153.41857 -28.8175299999917, 153.418612 -28.8175489999917, 153.418781243531 -28.8177142802684, 153.418907558795 -28.8179225019788, 153.419196006514 -28.8178191673984, 153.418703 -28.8174059999917, 153.418747 -28.8173969999918, 153.419059 -28.8171839999917, 153.4191 -28.8171559999918, 153.419121 -28.8171409999917, 153.419137 -28.8171279999917, 153.419151 -28.8171139999917, 153.41916 -28.8171019999917, 153.419171 -28.8170819999917, 153.41918 -28.8170579999918, 153.419184 -28.8170409999918, 153.419245 -28.8166959999917, 153.419286 -28.8167019999918, 153.419520134234 -28.8152982677602, 153.417476227406 -28.8150662776219))\nAYCA-NLQYO\tWest Macgregor\tReady for service\tPOLYGON ((149.008430046802 -35.2062806440738, 149.005734412245 -35.2040097176796, 149.005292437707 -35.2039879997436, 149.005252912445 -35.2045842847598, 149.005700041093 -35.2046299749691, 149.006552023506 -35.2047062599619, 149.008187561816 -35.2060984450984, 149.008231757402 -35.2063033538828, 149.008239578237 -35.2063532484643, 149.008236363717 -35.2064236085975, 149.008230303137 -35.2064784644437, 149.007992589753 -35.2074666986246, 149.008497236998 -35.2075489120697, 149.010470763952 -35.2063917487299, 149.01178279311 -35.2056559279474, 149.011512983331 -35.2052422249766, 149.011446685064 -35.2051387817808, 149.011070206491 -35.204740796362, 149.010989010943 -35.2046805674285, 149.010886911144 -35.2046528957274, 149.010792882507 -35.2046566351661, 149.0107264307 -35.2046767728408, 149.010661676839 -35.2047121112139, 149.008670190977 -35.2062656594032, 149.008430046802 -35.2062806440738))\nAYCA-K45EX\tBrook View Estate- Glen Eden\tReady for service\tPOLYGON ((151.275568311569 -23.908229708765, 151.275562483989 -23.9080890417174, 151.275464218792 -23.9073191426936, 151.275618712196 -23.9071208173094, 151.275677920411 -23.9069978531943, 151.275752573024 -23.9068907890713, 151.2760339701 -23.9066836479073, 151.276221718035 -23.9065647803916, 151.276582650975 -23.906442064957, 151.276782726326 -23.9055339938434, 151.276362883187 -23.9055945630698, 151.276238059704 -23.9054963077065, 151.276082382772 -23.9054077334541, 151.27568168087 -23.9052073970294, 151.275439198508 -23.9049033867134, 151.275226130526 -23.9050095308038, 151.275174295294 -23.9052368388792, 151.275079801253 -23.9052175976888, 151.274856301957 -23.9052084131217, 151.274763376325 -23.9052214231117, 151.274628194579 -23.905272563642, 151.27449050385 -23.9049281091592, 151.274120015767 -23.9051122574813, 151.274270911569 -23.9054014748632, 151.274052435154 -23.9054851835786, 151.274169730238 -23.9056971522451, 151.274251721554 -23.9059338479737, 151.274393812496 -23.9063440393394, 151.274241274146 -23.9063492377399, 151.274041638843 -23.9063509624448, 151.274029862712 -23.9066453231167, 151.274021623981 -23.9068512607489, 151.274409512693 -23.9068549118435, 151.274434052258 -23.906890259249, 151.274432346496 -23.9069491873838, 151.274670860361 -23.9069726992344, 151.27455732925 -23.9081065517108, 151.275568311569 -23.908229708765))\nAYCA-PY6D9\tLandcom - North Penrith\tUnder construction\tPOLYGON ((150.696213999988 -33.7450150000141, 150.696034147404 -33.7453328955412, 150.696592397499 -33.7453713953065, 150.696671508624 -33.7454666407672, 150.69651760484 -33.7458692411935, 150.699547365667 -33.746678578094, 150.699869907267 -33.7467364864352, 150.700242425705 -33.7461324614568, 150.700423824969 -33.7460898381278, 150.700450971654 -33.7460491072036, 150.700826258104 -33.7454766246406, 150.700760126814 -33.7454461362884, 150.700873036993 -33.7452849614826, 150.700791599988 -33.7452310800137, 150.700721759988 -33.7451940900138, 150.699943999988 -33.7451450000141, 150.699943999988 -33.7451490000141, 150.696213999988 -33.7450150000141))\nAYCA-DWNT0\t165 Rowes Lane\tReady for service\tPOLYGON ((144.968656883999 -37.4199886208213, 144.966735926867 -37.4197733182394, 144.965936354282 -37.4196941109415, 144.965862547145 -37.4201099657062, 144.965896103448 -37.4201137543069, 144.965642678528 -37.4215416005404, 144.968325647288 -37.4218440293165, 144.968656883999 -37.4199886208213))\nAYCA-DSIWC\tCapestone Estate\tReady for service\tPOLYGON ((153.036578134434 -27.2294086990467, 153.036247286567 -27.2292328889193, 153.036202552761 -27.2292961414406, 153.035891885653 -27.2291167594952, 153.036010064244 -27.2289393927094, 153.03525885093 -27.2285824367473, 153.035039693887 -27.2288854865778, 153.034770290218 -27.2287623712117, 153.034700218834 -27.228583414576, 153.034509368344 -27.2284919081222, 153.033581996631 -27.2299405235361, 153.035296378253 -27.2308170937324, 153.036013434259 -27.2311845041512, 153.036211 -27.2309079999783, 153.036881103972 -27.2300255120751, 153.036864014297 -27.2298426433621, 153.037050258019 -27.2295699348397, 153.036578134434 -27.2294086990467))\n17320784\tThe Poplars Estate\tCheck with carrier\tPOLYGON ((149.068000096 -33.277665957, 149.06763504 -33.2776140275, 149.06763504 -33.277643017, 149.067429856 -33.277599986, 149.067411136 -33.2776289755, 149.06703888 -33.2775919755, 149.066919008 -33.2779519855, 149.066631008 -33.277894025, 149.066489888 -33.2778500135, 149.06640096 -33.2780040075, 149.06631888 -33.278348977, 149.066250112 -33.2785310355, 149.065841888 -33.279065001, 149.06536416 -33.2795899755, 149.065198912 -33.279901016000004, 149.065455968 -33.2799789565, 149.065315936 -33.280250037, 149.06691792 -33.280440032, 149.067424096 -33.280525983000004, 149.06806416 -33.277685049, 149.068000096 -33.277665957))\nAYCA-L7A0N\tSherwins Way Estate\tReady for service\tPOLYGON ((145.031257513902 -37.6190774358342, 145.031552642452 -37.6172839831229, 145.031418327811 -37.6172699979987, 145.031399014619 -37.617249813846, 145.031599402536 -37.6161142824399, 145.03170232661 -37.6160937261781, 145.031647677302 -37.6159281729289, 145.031259603803 -37.615890689152, 145.030097392487 -37.6157766510066, 145.029620539122 -37.6189097098531, 145.031257513902 -37.6190774358342))\n10656\tTapping-Ashton Heights\tReady for service\tPOLYGON ((115.79861283302307 -31.719818845799136, 115.79844117164612 -31.720065254552694, 115.798419713974 -31.721324666841383, 115.79808712005615 -31.72133379295494, 115.79810857772827 -31.7216988367605, 115.79846262931824 -31.721717088913035, 115.79845190048218 -31.722109509323303, 115.79722881317139 -31.72206387912842, 115.79726099967957 -31.722392416030349, 115.79771161079407 -31.72245629807049, 115.79777598381042 -31.722821337455283, 115.79717516899109 -31.722839589386783, 115.79667091369629 -31.721634954198308, 115.79669237136841 -31.719599815246092, 115.79666018486023 -31.7194355419917, 115.79653143882751 -31.719262142129555, 115.79706788063049 -31.719024857582063, 115.79718589782715 -31.719289521076725, 115.79747557640076 -31.719225636854095, 115.79861283302307 -31.719818845799136))\nAYCA-X7HVB\tHeron Park\tReady for service\tPOLYGON ((115.93642891207 -32.1216367216858, 115.936557627029 -32.1221665542486, 115.936593400016 -32.1220579851794, 115.936894480623 -32.1221298306888, 115.936942846793 -32.1220234143631, 115.93699919045 -32.1219263673116, 115.937072808376 -32.1218272386156, 115.937554174015 -32.1214028043219, 115.93744036457 -32.1213080369065, 115.93800003814 -32.1208230643826, 115.93811047881 -32.1209171143561, 115.938631167011 -32.1204735063215, 115.938681411615 -32.1205162183373, 115.938906137541 -32.1203247576136, 115.938955320403 -32.120175319313, 115.939179987209 -32.1199838294765, 115.939404580199 -32.1197924790512, 115.939498438817 -32.1198720641333, 115.939601077723 -32.119768068184, 115.939560406031 -32.1197334942479, 115.939784661523 -32.1195425047732, 115.939739619944 -32.1195010287144, 115.94030666254 -32.1190147143592, 115.940476652616 -32.1191655921974, 115.940660380729 -32.1190857714465, 115.940840077485 -32.1189326663434, 115.940162164488 -32.1183561634321, 115.939755841879 -32.1187114947443, 115.939498191629 -32.1184969313614, 115.939190782414 -32.1187639821528, 115.939260403106 -32.1188199882183, 115.939082436328 -32.1189760537825, 115.938853365876 -32.1187866364431, 115.938752577268 -32.1186805770761, 115.938527214049 -32.118491060958, 115.938178864747 -32.1187928925519, 115.938069399755 -32.1188898090787, 115.938250892976 -32.1190387711188, 115.938251667626 -32.1191164113304, 115.938073493135 -32.1192708119742, 115.937846491634 -32.1190818447082, 115.936901779547 -32.1199004874415, 115.937691932015 -32.1205707278842, 115.937135856518 -32.1210549271502, 115.937002120636 -32.1209935117697, 115.936353377621 -32.1213830819412, 115.93642891207 -32.1216367216858))\nAYCA-XMF0H\tMarsden Heights\tReady for service\tPOLYGON ((149.604477678932 -33.3946425629997, 149.602279138746 -33.3952518387361, 149.602407307773 -33.3955762835606, 149.602530565106 -33.3955491854388, 149.602815666841 -33.3963809754223, 149.603161832394 -33.3962985307869, 149.603310701935 -33.3968006221713, 149.601989188616 -33.397092628483, 149.601328489756 -33.3972369200935, 149.601393934856 -33.3975551069535, 149.601453000023 -33.3977010000059, 149.601495901356 -33.3980289616305, 149.603838756116 -33.3975777827209, 149.60375658441 -33.3972334323144, 149.603966734582 -33.3971880650895, 149.603827138176 -33.3966820267836, 149.604533594402 -33.3965238272665, 149.604450328635 -33.3961524808141, 149.604543503331 -33.3961265667313, 149.604514371335 -33.395977538368, 149.604461841552 -33.3959901938137, 149.604332541412 -33.3956338192881, 149.6047781945 -33.3955245889907, 149.604647706115 -33.3951494008139, 149.604596825032 -33.395001763177, 149.604477678932 -33.3946425629997))\n17371587\tEatons Hill Village\tCheck with carrier\tPOLYGON ((152.96384304 -27.338218017, 152.963493856 -27.337428992, 152.961264 -27.337118044, 152.961216128 -27.33738696, 152.960815072 -27.3373299985, 152.96069088 -27.3380200115, 152.960622848 -27.338400001500002, 152.960617088 -27.3385169955, 152.960637952 -27.3386320285, 152.960686912 -27.338740013000002, 152.960920928 -27.3391280135, 152.96112 -27.339458035, 152.961216832 -27.339841984, 152.961360128 -27.3397969735, 152.962224128 -27.339146014, 152.96289408 -27.3388300155, 152.963276032 -27.338595028500002, 152.96384304 -27.338218017))\nAYAA-F26S6\tSienna Wood\tReady for service\tPOLYGON ((115.988251904 -32.1637390545126, 115.988574697798 -32.1642256796065, 115.988593051966 -32.1642555911004, 115.988700344228 -32.1645578327195, 115.988847482284 -32.164972336828, 115.989096669526 -32.1656742991903, 115.988905479731 -32.1657617357568, 115.989022202586 -32.1660297553605, 115.98926472 -32.1662510100126, 115.993263631814 -32.1644035180478, 115.993291681681 -32.1642428568238, 115.992715885036 -32.1637513559104, 115.992680615375 -32.1639412838172, 115.992705006919 -32.1639649955412, 115.992750430589 -32.1640106048943, 115.992949646781 -32.1641447325013, 115.99295197892 -32.1641830185901, 115.992915786819 -32.1642350517955, 115.992817216335 -32.1643057940681, 115.990414385862 -32.1653244408015, 115.99026872786 -32.1650985227096, 115.990095650002 -32.1651481499282, 115.989818743934 -32.1652743094535, 115.989599985454 -32.1646580642298, 115.990071030053 -32.1645495219864, 115.990395896394 -32.1644660801073, 115.990001086717 -32.1633539029355, 115.989715325695 -32.1635474954791, 115.989600345883 -32.1632998625375, 115.989609778077 -32.1632623740637, 115.990121135854 -32.1628380784935, 115.990107893539 -32.1627844622362, 115.989755172849 -32.1624844003225, 115.988251904 -32.1637390545126))\n17320603\tAmaroo Park - Stage 5\tCheck with carrier\tPOLYGON ((145.438629856 -16.9941300335, 145.438998848 -16.9944509715, 145.43910288 -16.9947279905, 145.43925696 -16.9948610055, 145.439276032 -16.994977019, 145.439327872 -16.995094013, 145.439382976 -16.9952139855, 145.439494912 -16.9953990225, 145.439228896 -16.9936839985, 145.43943408 -16.993719981, 145.439646848 -16.992986049, 145.439350912 -16.991333999000002, 145.438851968 -16.9912610165, 145.436884928 -16.990967976500002, 145.437049088 -16.9910550005, 145.437262912 -16.991170015, 145.437272992 -16.991269027, 145.43730288 -16.991577995500002, 145.43731584 -16.99171299, 145.437319072 -16.9918019935, 145.437324832 -16.991984977, 145.437432832 -16.9921050235, 145.43761392 -16.992179005, 145.43768592 -16.992248047, 145.437908032 -16.9924629615, 145.437989056 -16.992718021, 145.438052032 -16.992917007, 145.43808192 -16.993008989, 145.438084096 -16.993184036, 145.438085152 -16.993351979, 145.438036928 -16.9935550165, 145.43796096 -16.993870016, 145.43799408 -16.9938980065, 145.438278112 -16.9941429835, 145.43834112 -16.994075033, 145.438368128 -16.994097991500002, 145.43839296 -16.994070981500002, 145.438554976 -16.9942110265, 145.438629856 -16.9941300335))\n17323048\tCotton Beach Subdivision\tCheck with carrier\tPOLYGON ((153.571853888 -28.308743002, 153.570812032 -28.3085720065, 153.570450976 -28.308512973, 153.570359872 -28.308498025000002, 153.57032784 -28.308697011, 153.570287872 -28.308940027000002, 153.570189952 -28.308927965000002, 153.570048832 -28.309026958500002, 153.570032992 -28.309024979, 153.56986992 -28.3090040185, 153.569706848 -28.3089830395, 153.569544128 -28.3089619865, 153.569348992 -28.308936956, 153.569035072 -28.308896996, 153.569037952 -28.3089149965, 153.56904192 -28.308932997, 153.569045152 -28.3089519965, 153.56904912 -28.308969997000002, 153.569052 -28.3089879975, 153.569055968 -28.3090069785, 153.569059936 -28.309024979, 153.569063872 -28.3090429795, 153.56906784 -28.3090640325, 153.56907216 -28.3090840125, 153.569076832 -28.309103992500003, 153.569081152 -28.3091239725, 153.569085856 -28.3091439525, 153.56909088 -28.309165024000002, 153.569094848 -28.309185004, 153.569099872 -28.309204984, 153.569104928 -28.309224964000002, 153.569109952 -28.309245036500002, 153.569115008 -28.3092650165, 153.569120032 -28.3092849965, 153.569126176 -28.309305957, 153.569130848 -28.3093260295, 153.569135872 -28.3093460095, 153.569142016 -28.3093659895, 153.56914704 -28.3093859695, 153.569153152 -28.309406042000003, 153.569158912 -28.309426022, 153.569163968 -28.309446002, 153.56917008 -28.309465982000003, 153.56917584 -28.309485962, 153.569181952 -28.3095060345, 153.569189152 -28.309526995000002, 153.569194912 -28.309547974, 153.569201056 -28.309569027000002, 153.569207168 -28.309590006, 153.569212928 -28.3096109665, 153.56921904 -28.309632038, 153.569225152 -28.309652998500002, 153.569230912 -28.3096739775, 153.569235968 -28.309695030500002, 153.56924208 -28.309715991, 153.56924784 -28.30973697, 153.569252896 -28.309758023, 153.56925792 -28.3097799825, 153.569264032 -28.309800961500002, 153.569269088 -28.3098220145, 153.569274112 -28.309842993500002, 153.569279168 -28.309863954, 153.56928384 -28.309886006, 153.569288896 -28.309906985, 153.56929392 -28.309928038000002, 153.569298976 -28.309949017, 153.569302912 -28.3099709765, 153.569307968 -28.309992029500002, 153.569311936 -28.3100130085, 153.56931696 -28.310033969, 153.569320928 -28.310055022, 153.569324896 -28.310076001000002, 153.569328832 -28.310095981, 153.569333152 -28.310117034, 153.56933712 -28.3101389935, 153.569341088 -28.3101599725, 153.569345056 -28.3101820245, 153.569348992 -28.310202985, 153.56935296 -28.310225037000002, 153.56935584 -28.310246016, 153.56936016 -28.3102669765, 153.56936304 -28.3102869565, 153.569367008 -28.3103139665, 153.569369888 -28.310331967, 153.56937312 -28.310354019000002, 153.569377088 -28.3103759785, 153.56937888 -28.310393979, 153.569382848 -28.3104209705, 153.569384992 -28.310437972000003, 153.569788928 -28.310414033, 153.569813056 -28.310428981, 153.569816992 -28.310424023, 153.56982096 -28.310418991000002, 153.569826016 -28.310415032, 153.56983104 -28.310410980500002, 153.569836096 -28.3104070215, 153.569841856 -28.310402970000002, 153.569847968 -28.310399991500002, 153.56985408 -28.3103960325, 153.56985984 -28.310393979, 153.569865952 -28.3103910005, 153.569873152 -28.310389021000002, 153.569878912 -28.3103870415, 153.569886112 -28.3103849695, 153.56989296 -28.31038299, 153.569899072 -28.310381991, 153.56990592 -28.310381991, 153.56991312 -28.310381010500002, 153.569919968 -28.310381010500002, 153.569927168 -28.310381010500002, 153.569934016 -28.310381991, 153.569940832 -28.31038299, 153.569948032 -28.310383989, 153.569954176 -28.3103849695, 153.569960992 -28.3103870415, 153.56996784 -28.310389021000002, 153.569973952 -28.3103910005, 153.569980096 -28.310393979, 153.569985856 -28.310397031500003, 153.569991968 -28.310399991500002, 153.56999808 -28.310403969, 153.570003136 -28.310408002000003, 153.570008896 -28.310411961, 153.57001392 -28.3104160125, 153.570017888 -28.3104199715, 153.570022912 -28.310425022, 153.57002688 -28.310429961500002, 153.570030848 -28.310435012, 153.570035168 -28.3104399515, 153.570038048 -28.3104459825, 153.57003984 -28.310448961000002, 153.570042016 -28.310454992, 153.570044896 -28.310461023000002, 153.57004704 -28.3104659625, 153.570048832 -28.310471993500002, 153.57004992 -28.3104780245, 153.570051008 -28.310483963, 153.570052096 -28.310489994, 153.570052096 -28.310497024, 153.570052096 -28.3105029625, 153.570051008 -28.3105089935, 153.570051008 -28.310515024500003, 153.570048832 -28.310520963000002, 153.570048128 -28.310526994, 153.570045952 -28.310533025, 153.57004416 -28.3105389635, 153.570040928 -28.310544994500003, 153.570038048 -28.3105510255, 153.57003696 -28.310556964, 153.570035168 -28.310562995, 153.57003408 -28.310569026, 153.570032992 -28.310574964500002, 153.570031936 -28.310581976, 153.570031936 -28.310588007, 153.570035168 -28.310866025, 153.570035168 -28.310871963500002, 153.570035168 -28.310878975, 153.57003696 -28.310886005, 153.570038048 -28.3108930165, 153.57003984 -28.310900046500002, 153.570042016 -28.310905985, 153.570044896 -28.3109129965, 153.570048128 -28.3109200265, 153.570051008 -28.310925965, 153.570054976 -28.310931996, 153.570058912 -28.310938027000002, 153.570063968 -28.3109439655, 153.570068992 -28.3109499965, 153.570074048 -28.3109550285, 153.570143872 -28.3109699765, 153.57016512 -28.310966998, 153.570187072 -28.3109650185, 153.570207968 -28.310964038, 153.570228832 -28.310964038, 153.570251168 -28.310964038, 153.570272032 -28.3109660175, 153.570279968 -28.310966998, 153.57145392 -28.3111180135, 153.571853888 -28.308743002))\n17320331\tBeachside Residential - Stage A\tCheck with carrier\tPOLYGON ((150.790339072 -23.187879991, 150.79015584 -23.1875379815, 150.790007872 -23.187608004, 150.789893056 -23.187399028, 150.78980592 -23.187439987, 150.789709088 -23.1872630345, 150.78979584 -23.1872220015, 150.789663008 -23.186979984500002, 150.78908592 -23.1872259605, 150.789281056 -23.187612962, 150.789133088 -23.187662005500002, 150.78924 -23.18787396, 150.789376096 -23.1878310215, 150.789594976 -23.1882010215, 150.789755168 -23.189610962, 150.790015072 -23.189649035000002, 150.789956032 -23.190002995500002, 150.789699008 -23.1914369675, 150.789786112 -23.191452008000002, 150.790020128 -23.1914899885, 150.790213088 -23.191522012, 150.790511872 -23.191571962, 150.790533856 -23.1914500285, 150.79055616 -23.191326985, 150.790578112 -23.191205033, 150.790600096 -23.191083007, 150.790622048 -23.1909609625, 150.790644 -23.1908390105, 150.790664896 -23.1907159855, 150.790686848 -23.190594033500002, 150.790649056 -23.1905880025, 150.790681088 -23.1904089965, 150.79070592 -23.1902649925, 150.79073184 -23.1901219875, 150.790758112 -23.189978964, 150.790782976 -23.189834978500002, 150.790808896 -23.189691955, 150.790835168 -23.189547951, 150.790861088 -23.189405038500002, 150.790881952 -23.189285972500002, 150.790902848 -23.189166, 150.790925152 -23.1890470265, 150.790946048 -23.1889269615, 150.79133088 -23.188985995, 150.791334112 -23.188986994, 150.791356096 -23.188865042, 150.791379136 -23.188669016000002, 150.79137984 -23.188420986500002, 150.791352832 -23.1881740115, 150.791298112 -23.187931014, 150.791216032 -23.187693955, 150.791104096 -23.1874679775, 150.790758848 -23.187618993, 150.790802048 -23.1876950465, 150.790835872 -23.1877749665, 150.790687936 -23.187825989500002, 150.790659136 -23.1877549865, 150.790339072 -23.187879991))\nAYCA-QKD53\tAppletree Grove Estate\tReady for service\tPOLYGON ((151.585942961201 -32.9133083422074, 151.585873146804 -32.9133731070757, 151.585571243657 -32.9138350030256, 151.585803402147 -32.9138232434103, 151.585648422114 -32.9141008392261, 151.58546109915 -32.9140850231698, 151.585397037233 -32.9143874613341, 151.585425634436 -32.9143918782878, 151.585387116315 -32.9145692992861, 151.58534981601 -32.9145635380991, 151.585280013132 -32.9148663919446, 151.589907871888 -32.9155908439873, 151.590096075665 -32.9148364109293, 151.58887663395 -32.914620050709, 151.588179080189 -32.9144002100156, 151.585942961201 -32.9133083422074))\n17354070\tIluka Views\tCheck with carrier\tPOLYGON ((147.01605408 -36.049058993500005, 147.015905056 -36.049842006, 147.016189088 -36.0498629665, 147.016049056 -36.050442035, 147.01953312 -36.0508989665, 147.019786912 -36.049545007, 147.01605408 -36.049058993500005))\nAYCA-1FM3ZL\tSouth East Thornlands\tUnder construction\tPOLYGON ((153.276578592126 -27.5720465858005, 153.273898 -27.5740229999819, 153.274677 -27.5748619999818, 153.274745 -27.5748109999818, 153.274888 -27.5744789999818, 153.27508 -27.5741039999818, 153.275218 -27.5739099999819, 153.275444 -27.5740049999819, 153.275579 -27.5737869999819, 153.276197 -27.5744519999818, 153.276431558054 -27.5742946292241, 153.276447 -27.5742679999818, 153.276531 -27.5743589999819, 153.276521584423 -27.5744448037272, 153.276589181919 -27.5745141087945, 153.276679 -27.5744489999818, 153.276872 -27.5746569999819, 153.277820600001 -27.5739575799916, 153.276578592126 -27.5720465858005))\nAYCA-HVMVD\tBraemar Homesteads\tUnder construction\tPOLYGON ((150.08859337385 -35.915706397652, 150.08847603923 -35.9163044112787, 150.088642463757 -35.9167997227479, 150.089347406553 -35.9171058538569, 150.089466474957 -35.9172051076155, 150.089644035411 -35.9172270251298, 150.089653693587 -35.9174862218427, 150.090443651455 -35.9181226744625, 150.0907028965 -35.9179122975009, 150.091088825953 -35.9179590386077, 150.091125254393 -35.9177900188069, 150.091466165358 -35.915915167563, 150.088631880653 -35.9155101395512, 150.08859337385 -35.915706397652))\nAYCA-ZURHM\tFrizzo Road, Palmview\tReady for service\tPOLYGON ((153.034471680316 -26.7503297059672, 153.034404932091 -26.750566678557, 153.034442 -26.7508039999749, 153.03452 -26.7511239999749, 153.034553 -26.7511939999749, 153.034609 -26.7512499999749, 153.034665 -26.7512889999749, 153.034658 -26.7513079999749, 153.034659 -26.7513529999749, 153.034678 -26.7513949999748, 153.034711 -26.7514279999748, 153.034751 -26.7514459999749, 153.034714 -26.7517149999749, 153.034721 -26.7518499999749, 153.034733 -26.7519849999749, 153.034733 -26.7520529999749, 153.034711 -26.7521169999749, 153.034621 -26.7522259999749, 153.03452088238 -26.7523593553481, 153.034483243108 -26.7526267544695, 153.035553 -26.7528499999749, 153.035603 -26.7528569999749, 153.035653 -26.7528559999749, 153.035701 -26.7528479999749, 153.03575 -26.7528319999749, 153.035793 -26.7528099999749, 153.035832 -26.7527809999749, 153.035865 -26.7527469999749, 153.036117 -26.7523829999749, 153.036222 -26.752228999975, 153.036288 -26.7521069999749, 153.036332 -26.7519779999749, 153.036355 -26.751843999975, 153.03637 -26.7514379999749, 153.036471 -26.7514239999749, 153.036621 -26.7514109999749, 153.036766 -26.7514429999749, 153.036894 -26.7515159999749, 153.037016623152 -26.7515940756849, 153.037110255786 -26.7514765877418, 153.037142537251 -26.7514848638979, 153.037183401406 -26.7514692435161, 153.037211444578 -26.751444011724, 153.037341394565 -26.7513759701569, 153.037486304003 -26.7513395039024, 153.037498949599 -26.7513367924073, 153.037338997745 -26.7509453465354, 153.03685886359 -26.7511011547723, 153.036942841386 -26.7507386161067, 153.036959030976 -26.7503966800557, 153.036372873667 -26.7502814647184, 153.035755411358 -26.7501151531791, 153.035808 -26.7503209999749, 153.035796 -26.7504109999749, 153.035799159738 -26.7504362377365, 153.034471680316 -26.7503297059672))\nAYCA-HB8MK\tRenwick\tReady for service\tPOLYGON ((150.472202450163 -34.4461002983266, 150.472177394122 -34.4461145435001, 150.472952788542 -34.4486525241459, 150.473527006779 -34.4485344692657, 150.473762706182 -34.4484275091981, 150.473908960943 -34.4483300266347, 150.47404216587 -34.4482182708854, 150.474124155825 -34.4481131389177, 150.474203600689 -34.4480486958381, 150.474461356313 -34.4475844903408, 150.474639159897 -34.4472685308402, 150.474799540745 -34.4469210682033, 150.475010288433 -34.4465075175135, 150.474535779231 -34.4464375517491, 150.474569342177 -34.4462777789551, 150.473761722647 -34.4461609363397, 150.473579322824 -34.4461581272083, 150.47342225674 -34.4461984483126, 150.473296042491 -34.4458590062984, 150.473328328061 -34.4458462993699, 150.473312084306 -34.4458122279256, 150.472781917257 -34.4459478901695, 150.472250685808 -34.4460851941248, 150.472202450163 -34.4461002983266))\n17351484\tBelle Eden Estate\tCheck with carrier\tPOLYGON ((152.393478112 -24.870535022000002, 152.394064928 -24.871746957, 152.394517088 -24.871550043, 152.39452896 -24.871976005500002, 152.394661088 -24.872271025, 152.394409088 -24.872354016, 152.394401152 -24.8725710025, 152.39459808 -24.8728740325, 152.396310976 -24.872166000500002, 152.395093088 -24.869705038, 152.393631136 -24.8702799625, 152.39348208 -24.8704260385, 152.393478112 -24.870535022000002))\nAYCA-EXVZY\tViewpoint, Huntly\tReady for service\tPOLYGON ((144.343671970779 -36.6615597123722, 144.343563011754 -36.6622864788912, 144.345689250427 -36.6624672823708, 144.345706854253 -36.6623328982817, 144.346062700129 -36.662363153629, 144.346078125333 -36.6622453960997, 144.346271376954 -36.6622788791744, 144.34626182103 -36.6623190228634, 144.346615572559 -36.6623485356683, 144.346461843622 -36.6635221581782, 144.347218029035 -36.6635864452156, 144.347253232069 -36.6633176764281, 144.34737555591 -36.663328075302, 144.347395503925 -36.6631757729454, 144.347284300647 -36.663166319456, 144.347322913053 -36.6628715162573, 144.347434115916 -36.662880969694, 144.347514856623 -36.6622645038324, 144.347848462807 -36.6622928631954, 144.347836729413 -36.6623824529013, 144.348025773266 -36.6623985228232, 144.34809377313 -36.6618793002211, 144.348130473439 -36.6618497369364, 144.348222483424 -36.661842261851, 144.348284011813 -36.6618474824625, 144.348263672075 -36.6616849815898, 144.348203786724 -36.6616898468462, 144.348173930283 -36.6616656814885, 144.348213939017 -36.6613601813393, 144.348024897635 -36.6613441118149, 144.348013164628 -36.6614337015674, 144.347331275957 -36.661489097117, 144.347343009734 -36.6613995074718, 144.347153968494 -36.6613834365815, 144.347138860927 -36.6614987837801, 144.346471656429 -36.6614420604362, 144.346484837751 -36.6613401556933, 144.346296088856 -36.6613231262202, 144.346258874501 -36.6613479543081, 144.345691533836 -36.6612995069571, 144.345666469692 -36.661451495408, 144.345757724491 -36.6614592257652, 144.345722593638 -36.6617363607341, 144.343888214332 -36.6615806842118, 144.343671970779 -36.6615597123722))\nAYCA-194B8B\tByford On The Scarp\tContracted\tPOLYGON ((116.011438 -32.2331850000137, 116.010863 -32.2329280000138, 116.010902 -32.2328380000138, 116.010803 -32.2328610000137, 116.010597 -32.2329290000137, 116.010553 -32.2330300000138, 116.009732 -32.2343620000138, 116.010047 -32.2345030000137, 116.009902 -32.2347310000137, 116.009894 -32.2348950000138, 116.009568 -32.2354010000138, 116.009449 -32.2355110000138, 116.009127 -32.2360180000137, 116.009022 -32.2362050000137, 116.009283 -32.2363670000138, 116.009491 -32.2365300000138, 116.009797 -32.2368830000137, 116.010025 -32.2368300000137, 116.010188 -32.2367800000138, 116.01058 -32.2366030000138, 116.010293 -32.2362020000138, 116.010595 -32.2359830000137, 116.010757 -32.2357360000137, 116.010846 -32.2355390000138, 116.010764 -32.2355120000138, 116.01102 -32.2349620000138, 116.011066 -32.2349650000137, 116.011175 -32.2349600000138, 116.011264 -32.2349370000138, 116.011352 -32.2348540000138, 116.011509 -32.2340980000138, 116.011423 -32.2339920000138, 116.011262 -32.2339670000137, 116.011218 -32.2339690000138, 116.011261 -32.2336130000137, 116.011343 -32.2333300000137, 116.011438 -32.2331850000137))\nAYAA-GYS6F\tKalynda Chase Estate\tReady for service\tPOLYGON ((146.694942977699 -19.3026909769079, 146.692201553517 -19.302532780453, 146.691770116139 -19.3029690327826, 146.691581017611 -19.3030332376373, 146.693361461385 -19.3046160836343, 146.693551118837 -19.304733404104, 146.694378872321 -19.30422453973, 146.69481075317 -19.3042552723139, 146.694942977699 -19.3026909769079))\nAYCA-EY6AL\tLucas\tReady for service\tPOLYGON ((143.781704521402 -37.5486971466072, 143.780765511784 -37.5485766956348, 143.780731367887 -37.5495363344806, 143.78087344897 -37.5495453818286, 143.780859839453 -37.5498376583004, 143.780757910502 -37.5498336384772, 143.780717960377 -37.5499974494959, 143.780759792608 -37.550047647302, 143.7809718206 -37.5500804923877, 143.78102492378 -37.5501395366868, 143.780993702995 -37.5503141501684, 143.781844504878 -37.5503998951128, 143.781879376031 -37.5504015396234, 143.781917498748 -37.5503569889043, 143.782180481277 -37.5501908987264, 143.783434794413 -37.5506057472857, 143.78329245583 -37.5509281416961, 143.783458567899 -37.5510284755773, 143.783658125543 -37.550961464877, 143.783841819902 -37.5505573968353, 143.783646878584 -37.5502408830395, 143.783446952953 -37.5501490791238, 143.783535762742 -37.5499821693898, 143.783509955475 -37.5486430293991, 143.783236258237 -37.548429322964, 143.782669194287 -37.5486797165119, 143.782253569705 -37.548726119944, 143.781704521402 -37.5486971466072), (143.781291126 -37.5495318428072, 143.781969175138 -37.5495599993264, 143.781960322761 -37.5496858136451, 143.781934475896 -37.5498025352325, 143.78188597062 -37.5498273224904, 143.781748613907 -37.5498181098036, 143.781607618191 -37.549809322746, 143.781354932337 -37.5497979644307, 143.781292257528 -37.5497438394427, 143.781285753405 -37.5496999882778, 143.781291126 -37.5495318428072))\nAYCA-1PWOJN\tERA Estate Capalaba\tContracted\tPOLYGON ((153.224509592182 -27.5506336349747, 153.225088 -27.5516729999816, 153.225213 -27.5516309999817, 153.225242 -27.5516839999816, 153.225311 -27.5516539999816, 153.225486 -27.5519699999817, 153.22532 -27.5520429999817, 153.225464 -27.5522759999817, 153.225431 -27.5523159999816, 153.225373 -27.5523819999816, 153.225168 -27.5526199999817, 153.225291 -27.5527079999816, 153.225746 -27.5527749999817, 153.225769 -27.5526349999817, 153.226084 -27.5526769999816, 153.226239 -27.5526359999817, 153.22674413839 -27.5527037974284, 153.227180483168 -27.5501192239127, 153.226533 -27.5497729999812, 153.224509592182 -27.5506336349747))\n10630\tStirling-Princeton\tReady for service\tPOLYGON ((115.818230509758 -31.898519899315282, 115.81975400447845 -31.897472401536778, 115.82000613212585 -31.897695565106154, 115.82103073596954 -31.896925876225058, 115.82132577896118 -31.89720824804122, 115.82083225250244 -31.897513390804374, 115.82200169563293 -31.898610985515337, 115.82045674324036 -31.899763218164633, 115.818230509758 -31.898519899315282))\nAYCA-DD3G0\tScenic Rise\tReady for service\tPOLYGON ((152.992137969487 -27.9578954762405, 152.992284784556 -27.9580333802633, 152.991878466377 -27.9584068631523, 152.9920817186 -27.9585708575124, 152.992142642454 -27.958514856376, 152.992299853257 -27.9586497020464, 152.992636382771 -27.958340366916, 152.993826744679 -27.9593641031223, 152.994422517592 -27.9588215661951, 152.994267489963 -27.9586775495793, 152.994401633051 -27.9585704392852, 152.994677139155 -27.9585988322277, 152.994785690426 -27.9580339390526, 152.994816278609 -27.9578699818397, 152.994919139758 -27.9573394700036, 152.994880235583 -27.9573371695169, 152.994571639957 -27.9574107847819, 152.994514598105 -27.9572727279122, 152.994524971288 -27.9572267135127, 152.994566464888 -27.9572037043597, 152.994888030274 -27.9570817723367, 152.995166721862 -27.9569813331173, 152.995236269902 -27.9569739297678, 152.995283559722 -27.9570010825103, 152.995308592791 -27.9570294687755, 152.995273809619 -27.9572429736062, 152.99529804104 -27.9573079500462, 152.995476873892 -27.9573314159839, 152.995657332652 -27.9562614507443, 152.995291913516 -27.9562188164457, 152.993642456837 -27.9568154683257, 152.993529610914 -27.9568891269211, 152.992877933885 -27.9574881575717, 152.992724378469 -27.9573564470867, 152.992137969487 -27.9578954762405), (152.993195746086 -27.957523827179, 152.993493468589 -27.9577681809126, 152.99335947281 -27.9579002492814, 152.993067814365 -27.9576558046957, 152.993195746086 -27.957523827179), (152.993115849581 -27.9583410226186, 152.993291069116 -27.9585029367849, 152.99305443852 -27.9586996754228, 152.992866016049 -27.9585370520752, 152.993115849581 -27.9583410226186), (152.993526956843 -27.9577945994649, 152.993934569677 -27.9581012319463, 152.993938536371 -27.958220971783, 152.993861126741 -27.958296685336, 152.993386764498 -27.9579266675682, 152.993526956843 -27.9577945994649))\n10382\tHalls Head-Port Mandurah\tReady for service\tMULTIPOLYGON (((115.71213145094555 -32.541260650738252, 115.7121317088604 -32.541260403180281, 115.71213103830814 -32.541260403180281, 115.71213145094555 -32.541260650738252)), ((115.71431837975979 -32.542160321938219, 115.71431837975979 -32.542158802767638, 115.71431569755077 -32.542159544688147, 115.71431632660163 -32.54215974009346, 115.71431837975979 -32.542160321938219)), ((115.71380406618118 -32.543816485218208, 115.71397304534912 -32.543452455531686, 115.71407496929169 -32.543237654713707, 115.71419835090637 -32.543027375520438, 115.71472138166428 -32.542264261408462, 115.71438476443291 -32.542181166369147, 115.71438007056713 -32.5421795412103, 115.71431632660163 -32.54215974009346, 115.71423958986998 -32.542137993661015, 115.71423925459385 -32.5421377110246, 115.71419298648834 -32.542117926470524, 115.71406038478017 -32.542060975194062, 115.71391571313143 -32.542002893334022, 115.71362771093845 -32.541890121148072, 115.713050365448 -32.541660054144, 115.71301281452179 -32.5416521402808, 115.71282237768173 -32.54167475131667, 115.71275264024734 -32.541649879176894, 115.71272917091846 -32.541482557330184, 115.71242406964302 -32.541436204601283, 115.71213145094555 -32.541260650738252, 115.71164488792419 -32.541727675250293, 115.71090795099735 -32.54250831731229, 115.71105949580669 -32.542619110277272, 115.71108028292656 -32.5426377641814, 115.71116711944342 -32.542636633641877, 115.71126736700535 -32.542718032451866, 115.71132838726044 -32.54276155817422, 115.71138001978397 -32.542788125812535, 115.71137666702271 -32.542796039575613, 115.71201503276825 -32.543048149091696, 115.71278817951679 -32.543361871828338, 115.71276605129242 -32.543406527768404, 115.71295112371445 -32.543476055327062, 115.71289949119091 -32.543571019710441, 115.71302354335785 -32.543621328182375, 115.71303427219391 -32.543611153437517, 115.7131589949131 -32.543679550311317, 115.71321196854115 -32.543696790837409, 115.7132850587368 -32.543727032407958, 115.71380406618118 -32.543816485218208)))\nAYCA-1FDUG2\tMarsden Heights\tReady for service\tPOLYGON ((149.601534226053 -33.3983704758768, 149.601578837431 -33.3983624916195, 149.601611448918 -33.3985267597699, 149.601580789083 -33.3985796881469, 149.601635104516 -33.3990448033766, 149.601654576952 -33.399048886744, 149.601923679572 -33.3990834785507, 149.601873235482 -33.3988125820514, 149.603908555545 -33.3984688937879, 149.604345790543 -33.3983941414683, 149.604631228125 -33.3983504894174, 149.604642709033 -33.398364761033, 149.604856090048 -33.3983299450593, 149.604852531011 -33.3983144469746, 149.605130869596 -33.3982665637091, 149.606298378676 -33.3980633148141, 149.607231337998 -33.3981910027694, 149.607384530096 -33.3973338848167, 149.606820323206 -33.3972972655724, 149.606798427332 -33.3972540353888, 149.606706419051 -33.3972473325756, 149.606690994373 -33.3972900748988, 149.60640718245 -33.3972811924882, 149.605713864087 -33.3973079950206, 149.605030384661 -33.3973650330841, 149.604358694133 -33.3974783968921, 149.603833563089 -33.3975839441711, 149.60149570452 -33.3980295465414, 149.601485536181 -33.3980308687185, 149.601534226053 -33.3983704758768))\nAYCA-1OAYNC\tNelson Street Subdivision\tContracted\tPOLYGON ((151.940039 -27.6162069999815, 151.940594015589 -27.6172865677546, 151.940723890587 -27.6165809857438, 151.9425430968 -27.6168272494636, 151.94266561055 -27.6161158063511, 151.942936313052 -27.6145443425334, 151.942736681756 -27.6145295636329, 151.942708430348 -27.6147620998244, 151.942099746238 -27.6147574602457, 151.941990767477 -27.6155696187859, 151.941809233622 -27.6158124079981, 151.941015330353 -27.6159911835405, 151.94097181933 -27.6158324243191, 151.941181599604 -27.6153923727152, 151.941224363604 -27.6146607291871, 151.941248212653 -27.6145936999511, 151.941302261562 -27.614536884403, 151.940195473573 -27.6140385197085, 151.9397043958 -27.6140035911637, 151.9396365136 -27.6144022643637, 151.939651414863 -27.614402105765, 151.939608667344 -27.6146590501648, 151.939955629092 -27.6147047202091, 151.939911 -27.6153599999815, 151.939888 -27.6155009999815, 151.940036 -27.6160259999815, 151.940039 -27.6162069999815))\nAYCA-1014V5\tMoree Gateway\tUnder construction\tPOLYGON ((149.850760017586 -29.492475671184, 149.850853374915 -29.4927673181878, 149.850996856719 -29.4930844262964, 149.851095149216 -29.4934268730583, 149.851127318857 -29.4936702556937, 149.851069456734 -29.4942226099477, 149.850562517216 -29.495667002155, 149.849969742007 -29.4973616984281, 149.851144533182 -29.4976421677979, 149.851062470661 -29.4969025388391, 149.852006755068 -29.4968223541935, 149.851633150226 -29.4923777184285, 149.850760017586 -29.492475671184))\nAYAA-FPT58\tBluestone Green\tReady for service\tPOLYGON ((144.607045054923 -37.88934150819, 144.606418641229 -37.8892730627151, 144.606261496572 -37.8903826518705, 144.606253448382 -37.8904394785835, 144.607214979414 -37.8905530097891, 144.607044143054 -37.8912573405194, 144.606965099986 -37.8913393600183, 144.606138347934 -37.8912521748445, 144.605993759986 -37.8922730400183, 144.60692410345 -37.8923819485417, 144.607468059187 -37.8924222068333, 144.608548367699 -37.8925371530915, 144.6086248422 -37.8921565375411, 144.608530563984 -37.8920640606308, 144.608585733567 -37.8917645630624, 144.608664467617 -37.8917736705018, 144.608841794302 -37.8908109939512, 144.608851151221 -37.890666416081, 144.608903691956 -37.8903811780207, 144.607278695081 -37.8901931755088, 144.607181299986 -37.8902264900183, 144.606812264023 -37.8901847274867, 144.606919001367 -37.8896053408462, 144.606990445993 -37.8896103206191, 144.607045054923 -37.88934150819))\n17332661\tColes Banksia Grove Shopping Centre\tCheck with carrier\tPOLYGON ((115.803839168 -31.7052610285, 115.801637024 -31.7052610285, 115.799762144 -31.7052600295, 115.799794912 -31.7053150115, 115.799745952 -31.705336971, 115.799828032 -31.7054729645, 115.799896064 -31.705575029000002, 115.800173984 -31.70595402, 115.80046704 -31.706301968, 115.800796064 -31.706648991, 115.80119603199999 -31.707017992, 115.801342912 -31.7071439955, 115.80145488 -31.7072390485, 115.801647104 -31.7073989625, 115.801773824 -31.707443973, 115.801957088 -31.707440014, 115.802120864 -31.707416963, 115.802223104 -31.707344961, 115.802313824 -31.707260009000002, 115.802712 -31.706783005000002, 115.80330816 -31.7060409515, 115.803587872 -31.705641999, 115.803790912 -31.7053520115, 115.803839168 -31.7052610285))\nAYCA-1AAFH9\tAvonlee Estate\tContracted\tPOLYGON ((115.975602 -31.8176660000115, 115.975146 -31.8176550000115, 115.97467 -31.8176450000115, 115.974676 -31.8178870000115, 115.974396 -31.8178850000116, 115.974393 -31.8181250000115, 115.975565 -31.8181340000116, 115.975663 -31.8182000000115, 115.975626 -31.8203390000116, 115.976834 -31.8203380000116, 115.976838 -31.8199730000115, 115.977564 -31.8199640000115, 115.977572325584 -31.8176686196908, 115.977245140726 -31.8176663573593, 115.977085995107 -31.8177031462185, 115.975852181223 -31.8176937983286, 115.975602 -31.8176660000115))\n10353\tMillbridge\tReady for service\tPOLYGON ((115.72965525090694 -33.302394501737766, 115.73090851306915 -33.302405150042468, 115.73113851249218 -33.302408722828623, 115.73117941617966 -33.302498953144159, 115.7312598824501 -33.302664281740945, 115.73137857019901 -33.302807753082817, 115.73143657296896 -33.30288565343912, 115.73149122297764 -33.3029529054893, 115.73162734508514 -33.303063310825912, 115.73176145553589 -33.303152980031975, 115.73181845247746 -33.303191649848642, 115.73190897703171 -33.303231440511667, 115.73203772306442 -33.303294208844591, 115.73206923902035 -33.303308780058273, 115.73213160037994 -33.303314384370573, 115.73234617710114 -33.303341285064647, 115.73247224092484 -33.303361460579737, 115.73253057897091 -33.303366504457792, 115.7327987998724 -33.303387800828538, 115.73287189006805 -33.303396207289239, 115.73294162750244 -33.303401811595933, 115.73294028639793 -33.303452250339923, 115.73263116180897 -33.303627664855775, 115.73252856731415 -33.303735827624209, 115.73221743106842 -33.304179685870238, 115.73198676109314 -33.304598883250584, 115.73194921016693 -33.304780460100069, 115.73177821934223 -33.304741790987883, 115.731241106987 -33.304695275946152, 115.73108486831188 -33.304683507076241, 115.73066476732492 -33.304683226865038, 115.73065370321274 -33.304693034256765, 115.73050081729889 -33.304728901280008, 115.73014944791794 -33.304731703390573, 115.73014877736568 -33.304692473834415, 115.72994459420443 -33.304692193623239, 115.729790199548 -33.304691493095284, 115.72973303496838 -33.304693594679115, 115.72971493005753 -33.303962240446111, 115.72967201471329 -33.303554248599738, 115.72965525090694 -33.302396743486241, 115.72965525090694 -33.302394501737766))\n10103\tBaldivis-The Ridge\tReady for service\tPOLYGON ((115.80986805260181 -32.351800987899573, 115.81033140420914 -32.351799288495407, 115.81075116991997 -32.351802439473929, 115.81134729087353 -32.351799607133692, 115.81296466290951 -32.351797341261452, 115.81317588686943 -32.351796774793378, 115.81319130957127 -32.351992772534523, 115.81319533288479 -32.352091904178288, 115.81318225711584 -32.352305744925552, 115.81319063901901 -32.352909311248013, 115.81332877278328 -32.352910444170213, 115.81332877278328 -32.353001077900657, 115.81318661570549 -32.352998812058509, 115.81318393349648 -32.353578865797225, 115.81318661570549 -32.354129460240564, 115.81318125128746 -32.354388329103365, 115.81318527460098 -32.3545695935115, 115.81296868622303 -32.354568743835429, 115.81294236704707 -32.354568814641773, 115.81294152885675 -32.354574549955061, 115.81260323524475 -32.3545695935115, 115.81260792911053 -32.3544138194327, 115.81260524690151 -32.354289199976485, 115.81272527575493 -32.3542903328814, 115.8127386868 -32.35415891581593, 115.81260457634926 -32.354147586749626, 115.81265553832054 -32.353950460768679, 115.81265285611153 -32.353558473346077, 115.81263944506645 -32.352860595579763, 115.81153772771358 -32.35285153219673, 115.8115367218852 -32.353114936395812, 115.8115404099226 -32.353230494124929, 115.81122860312462 -32.3532321935022, 115.81122927367687 -32.353189142601579, 115.81117630004883 -32.353189709060928, 115.81117529422045 -32.353211234513665, 115.81115299835801 -32.353210384824848, 115.81115283071995 -32.353229927665836, 115.81083834171295 -32.3532321935022, 115.8108376711607 -32.353186876764134, 115.8106767386198 -32.35318744322349, 115.81048596650362 -32.353187159993816, 115.81048563122749 -32.35317668049494, 115.81034380942583 -32.353176963724657, 115.81034414470196 -32.353189709060928, 115.80987207591534 -32.353188576142223, 115.80986738204956 -32.353026002160604, 115.80986704677343 -32.352983517622476, 115.80988951027393 -32.352984084083118, 115.80988632515073 -32.35284700050488, 115.80986972898245 -32.35284586758187, 115.80986713059247 -32.35271841365379, 115.80988196656108 -32.352718980116087, 115.80988272093236 -32.352553856205439, 115.80986872315407 -32.352555272363759, 115.8098672144115 -32.352442705410162, 115.80987643450499 -32.352444564120233, 115.80987609922886 -32.352363311901328, 115.80986570566893 -32.352364197002117, 115.80986604094505 -32.352337891802165, 115.80987945199013 -32.352338529074949, 115.8098828047514 -32.352257028932264, 115.80986738204956 -32.352256250042629, 115.80986738204956 -32.352236777799412, 115.8098965510726 -32.352236388354505, 115.80989755690098 -32.352105711791474, 115.80986570566893 -32.3521058888121, 115.80986872315407 -32.351949721043965, 115.80989219248295 -32.351948588109728, 115.80989353358746 -32.351826797596289, 115.80986738204956 -32.351826071809306, 115.80986805260181 -32.351800421431527, 115.80986805260181 -32.351800987899573))\nAYAA-J8QYX\tBrentwood Rise\tReady for service\tPOLYGON ((152.881989981245 -27.6510030333771, 152.881926820896 -27.6513104291188, 152.882563021291 -27.6514340861857, 152.883112967343 -27.6509069069894, 152.883575078212 -27.6512062949992, 152.883875987639 -27.6507000103854, 152.884425705542 -27.6503803669863, 152.884619608794 -27.6501518836597, 152.884674982321 -27.6501167525447, 152.884904190016 -27.6501380500174, 152.885399971896 -27.6496294335825, 152.885476566051 -27.6489429053522, 152.885266305835 -27.6484086408735, 152.884955378699 -27.6483764578423, 152.884756180803 -27.6485033398202, 152.88466141784 -27.648418843316, 152.884364262862 -27.6483848287146, 152.882871305511 -27.6490251431198, 152.882779967191 -27.6490802331356, 152.883019288663 -27.6494933915858, 152.882551812484 -27.6497323787105, 152.882576603321 -27.6498538139722, 152.882653145485 -27.6499568824534, 152.882783843982 -27.6500185290182, 152.882917601839 -27.6500320174894, 152.882855763935 -27.650140331052, 152.882768848602 -27.6502959809011, 152.8830554336 -27.6504033067846, 152.882902325368 -27.6506711473518, 152.882870608939 -27.6507924281884, 152.882719083167 -27.6510467499766, 152.88265417483 -27.6511221430205, 152.882330323606 -27.6510530240176, 152.881989981245 -27.6510030333771), (152.884382325593 -27.6495092411491, 152.884512208073 -27.6493732904579, 152.884732481267 -27.6495264042658, 152.884683950359 -27.649580267659, 152.884608011423 -27.6496458757503, 152.884538351395 -27.6496900585338, 152.884382325593 -27.6495092411491), (152.885265094454 -27.6484169962467, 152.885353774576 -27.6486393608713, 152.885029482524 -27.6487056899871, 152.885022914223 -27.6486852818329, 152.885020512695 -27.6486786989154, 152.885008155188 -27.6486448252878, 152.884988085529 -27.6485960935173, 152.884966764549 -27.648545032435, 152.885265094454 -27.6484169962467), (152.885029532725 -27.6487058609682, 152.885353875006 -27.6486394901099, 152.885439884936 -27.6488527173072, 152.885068941383 -27.6488782429382, 152.885064824096 -27.6488406840998, 152.885050309146 -27.6487772047181, 152.885029532725 -27.6487058609682), (152.885460967255 -27.6490802207415, 152.885068001668 -27.6490479351867, 152.885076997237 -27.6490251006174, 152.885079218133 -27.6489853719641, 152.885068960323 -27.648878440375, 152.885439979591 -27.6488529039307, 152.885476293354 -27.648942921539, 152.885460967255 -27.6490802207415))\nAYCA-MLELV\tLot 502 Jane Brook Drive\tReady for service\tPOLYGON ((116.056652970219 -31.8595792828707, 116.056626689051 -31.8596108001349, 116.056622429193 -31.8597506591864, 116.056585582187 -31.8597491762219, 116.056588473709 -31.8599969768433, 116.056627209565 -31.8599991315036, 116.056615906233 -31.8603460390647, 116.056578613527 -31.860385218282, 116.056616876422 -31.8604245995005, 116.056594313012 -31.8614735990257, 116.05663222687 -31.8615955176657, 116.056710153279 -31.8617056552049, 116.056910078661 -31.8618603476179, 116.056869879881 -31.8619598572394, 116.057355667062 -31.8620516202052, 116.058020133327 -31.862117870501, 116.058624546915 -31.8621083324369, 116.058612526473 -31.8620273343564, 116.05866696 -31.8595400100118, 116.056652970219 -31.8595792828707))\n10790\tBurns Beach\tReady for service\tPOLYGON ((115.7285964739358 -31.719263385089498, 115.72913291573877 -31.719774457429686, 115.72849991441126 -31.720221643415979, 115.72792055726404 -31.720376789070425, 115.72765770078058 -31.720627759432272, 115.72779181123133 -31.720728147386755, 115.72747531056757 -31.721006495237347, 115.72728755593653 -31.720823972150963, 115.72698714852686 -31.720769215154967, 115.72656335950251 -31.720846787556415, 115.72660091042871 -31.7209836798712, 115.72626295209284 -31.721029310597864, 115.72543683171625 -31.7212118332799, 115.72458388924952 -31.721380666440805, 115.72335007310267 -31.721759399169571, 115.72300425871299 -31.721795903447219, 115.72148076399253 -31.721476490530456, 115.72071365221427 -31.721220959404572, 115.72033494045024 -31.721054621144091, 115.72002380420452 -31.72122345459135, 115.71975558330303 -31.720862971993476, 115.72016327907329 -31.7207306425868, 115.72300125632069 -31.721383238046894, 115.72456802067757 -31.72092449928952, 115.72609133433275 -31.720647565757194, 115.72667069147997 -31.720392032346176, 115.7285964739358 -31.719263385089498))\nAYAA-HV1XO\tHighlands\tReady for service\tPOLYGON ((144.903520432181 -37.5688227233428, 144.904301949602 -37.5689134703629, 144.904250347869 -37.5692170686158, 144.904569328098 -37.5692539685178, 144.904706325977 -37.5692644731751, 144.905020131732 -37.5692953136948, 144.904995873316 -37.569409997303, 144.905777748415 -37.5694979279998, 144.90563586653 -37.5702060195261, 144.906131294868 -37.5702522712454, 144.906244906889 -37.5695254079931, 144.906257721355 -37.5695177716908, 144.906302006616 -37.5692725234553, 144.906340449864 -37.5692496145251, 144.906631755245 -37.5692829410936, 144.906841430756 -37.5681361759084, 144.906525035555 -37.5680997073344, 144.906528198555 -37.5680821901793, 144.906035275148 -37.5680257297276, 144.906044095829 -37.5679766831753, 144.904160641595 -37.5677697617354, 144.90417271509 -37.5676929562586, 144.904043434207 -37.5676752682071, 144.904049113908 -37.5676372244527, 144.904015148972 -37.567597664824, 144.90376357705 -37.567566694457, 144.903520432181 -37.5688227233428))\nAYCA-HDLQ8\tRenwick\tReady for service\tPOLYGON ((150.472312610919 -34.4501084045719, 150.472555285211 -34.4488139983439, 150.472299118099 -34.4480105150124, 150.471691288177 -34.4481646103244, 150.471720189096 -34.4482041074822, 150.471634311581 -34.4483617556402, 150.4714997747 -34.4483234294078, 150.471391382553 -34.4488403061759, 150.469189208961 -34.4485255185531, 150.468940399886 -34.4496521407329, 150.471929187658 -34.4500830652855, 150.472087006476 -34.4500895698788, 150.472312610919 -34.4501084045719))\nAYAA-F68I5\tAmbrosia Estate\tReady for service\tPOLYGON ((145.232253663761 -38.1152450696986, 145.231837615202 -38.1172745031783, 145.234046399718 -38.1175453155703, 145.234383716177 -38.1158936700983, 145.234481119097 -38.1154167707232, 145.23380769412 -38.115330266946, 145.233782834859 -38.1154411780718, 145.233265044534 -38.1153746632937, 145.233270399225 -38.1153486425424, 145.23255070438 -38.1152562314193, 145.232544518212 -38.1152826386739, 145.232253663761 -38.1152450696986))\nAYAA-FU6UI\tWindradyne Estate\tReady for service\tPOLYGON ((149.54050912388 -33.4000271122747, 149.540570625572 -33.4000478889312, 149.540761830118 -33.4000839564275, 149.541247122601 -33.4001586012688, 149.543083484597 -33.4010081296225, 149.543925228748 -33.4010792458498, 149.544066223879 -33.4004225097847, 149.544058319152 -33.4001884980377, 149.543630298876 -33.4002071923551, 149.543618063308 -33.4000261582765, 149.544043801997 -33.3999798921926, 149.544036453179 -33.3995908987022, 149.543780621414 -33.3993384576152, 149.54352116316 -33.3990849457997, 149.541095727878 -33.3992203572442, 149.5411156071 -33.3995190614441, 149.540638663721 -33.3995591379191, 149.54050912388 -33.4000271122747))\n17336882\tSage Apartments\tCheck with carrier\tPOLYGON ((153.367508896 -28.056345023000002, 153.36326304 -28.0530839725, 153.36291888 -28.053045992, 153.363004928 -28.053153995000002, 153.363015008 -28.053212048000002, 153.363020032 -28.053297, 153.362979008 -28.05333696, 153.366180128 -28.057068003, 153.367508896 -28.056345023000002))\nAYCA-IKR2K\tCalifornia Creek Estate\tReady for service\tPOLYGON ((153.204977135269 -27.6595933676148, 153.20259 -27.6566738399819, 153.20218248 -27.6589854899819, 153.203309954213 -27.6602433349745, 153.204286597482 -27.6596351957407, 153.204527158965 -27.6598842052207, 153.204977135269 -27.6595933676148))\nAYCA-1FZO3Y\tKingston Downs Estate\tContracted\tPOLYGON ((144.544847507348 -38.2495510895261, 144.544992358852 -38.2488578762233, 144.54460308117 -38.2488109305487, 144.544473947427 -38.24879049423, 144.544464659503 -38.2488349316184, 144.544126548438 -38.2487909833738, 144.543777178145 -38.2487455705626, 144.543630668168 -38.248726526175, 144.54320154143 -38.2486707441881, 144.542984001636 -38.2497196811172, 144.54263162147 -38.2514187195799, 144.542913449325 -38.2514550187027, 144.543595049442 -38.2512597405903, 144.544068474958 -38.2513306056304, 144.544126704536 -38.2512194982296, 144.544312270738 -38.2512436179643, 144.544375431624 -38.2509414439823, 144.544578384776 -38.2509678232747, 144.544665655875 -38.2505498888645, 144.544675064905 -38.2505511345476, 144.544738224291 -38.2502489566848, 144.544815986803 -38.25025906391, 144.544871374035 -38.2499923952242, 144.544757909668 -38.2499776476276, 144.544847507348 -38.2495510895261))\nAYAA-GE42C\tThe Ponds\tReady for service\tPOLYGON ((150.902785947618 -33.7034999554244, 150.901719220919 -33.7065266950723, 150.903452467923 -33.7068813296491, 150.904082395599 -33.7050828834006, 150.903295599076 -33.7050193843887, 150.903802087784 -33.7034999965666, 150.902785947618 -33.7034999554244))\nAYCA-IJB9S\tSmirk Road\tReady for service\tPOLYGON ((115.813480632542 -32.348562702253, 115.813352474106 -32.3486078213285, 115.813347518546 -32.3487418202866, 115.813158182188 -32.3486821460918, 115.810278580127 -32.3490393773429, 115.810224999999 -32.3497640000137, 115.810822999999 -32.3496910000138, 115.811002999999 -32.3496740000138, 115.811177999999 -32.3496700000138, 115.811155999999 -32.3499620000137, 115.81138827785 -32.3499874577853, 115.81138196365 -32.3500860928693, 115.811426279549 -32.3501083100017, 115.811426071107 -32.3503732039357, 115.811798389046 -32.3503794628857, 115.812231953495 -32.350394648261, 115.812172799828 -32.3506429928229, 115.812121374034 -32.350673628963, 115.811946114192 -32.3506595309375, 115.811933872097 -32.3507899773949, 115.812142023832 -32.3508022375301, 115.812192234158 -32.3508479216047, 115.812192682883 -32.3509940589381, 115.812362939535 -32.3509984414366, 115.812362542234 -32.3508666339038, 115.812413619308 -32.3508228853985, 115.812921851233 -32.350821867793, 115.812942854913 -32.3508270851449, 115.812937947828 -32.3509737110694, 115.8131797613 -32.3509640371284, 115.813180717846 -32.350767913569, 115.813531473895 -32.3507689244377, 115.813683999999 -32.3499660000136, 115.813574999999 -32.3497850000136, 115.813375913188 -32.3497843235934, 115.813379378353 -32.3495131691073, 115.81369654275 -32.3495142844513, 115.813696146386 -32.3493524115554, 115.813589994378 -32.3493521147169, 115.813589238137 -32.349005099644, 115.813637415824 -32.3487885054218, 115.813480632542 -32.348562702253), (115.812371738849 -32.3504673154424, 115.812684251842 -32.3505203709789, 115.812647068107 -32.3506781896818, 115.812393243233 -32.3506784466753, 115.812335953108 -32.3506191984904, 115.812371738849 -32.3504673154424))\nAYCA-N65SV\tWilliams Landing\tReady for service\tPOLYGON ((144.748331797565 -37.8621307656859, 144.748334330111 -37.8624379114175, 144.751686997453 -37.862414041691, 144.752358072797 -37.8622501656277, 144.75242925097 -37.8622800184108, 144.752462775157 -37.8623662998297, 144.75269349797 -37.8623099571703, 144.752659973007 -37.8622236741422, 144.75269762737 -37.8621672445425, 144.756480086837 -37.8612667500613, 144.75557854248 -37.8587058643731, 144.754748426257 -37.8589001867106, 144.755437127331 -37.8608672638951, 144.754581114978 -37.8610574940324, 144.754633993996 -37.8611943054339, 144.752979519025 -37.8615986656981, 144.752872455155 -37.8613230969996, 144.752715181363 -37.8613614403353, 144.752953553177 -37.861906584758, 144.752590631059 -37.8619952144316, 144.752546816841 -37.8619847167158, 144.752535166051 -37.8619730985131, 144.752479794772 -37.8619882660371, 144.752349298283 -37.8620232371309, 144.752328391549 -37.8620598515478, 144.751917628176 -37.8621600353593, 144.748331797565 -37.8621307656859))\nAYCA-DUTWB\tLittle Creek\tReady for service\tPOLYGON ((151.215576601543 -23.8967502294119, 151.216828773517 -23.8957601730308, 151.217403444738 -23.8955839232051, 151.218477397009 -23.8955225744606, 151.218479552185 -23.895365307229, 151.218509059066 -23.895241755177, 151.218371885012 -23.8948921232531, 151.217393587061 -23.8938467779883, 151.217352817955 -23.8938667157554, 151.217089516311 -23.893716435604, 151.217097873051 -23.8937030225882, 151.216981034028 -23.8935891224916, 151.216632697367 -23.8933360257276, 151.216572539183 -23.8933942404988, 151.216020335499 -23.893612506564, 151.215576601543 -23.8967502294119))\nAYAA-F5EGE\tNewhaven\tReady for service\tPOLYGON ((115.929958985321 -32.1272630354977, 115.928596149403 -32.1283668502093, 115.928247832573 -32.1283393997641, 115.928173552435 -32.1296096162448, 115.928237341385 -32.12969356534, 115.928378080707 -32.1297033137444, 115.929323124465 -32.1297487938448, 115.929890952645 -32.129974242602, 115.931516311349 -32.1286482618815, 115.929958985321 -32.1272630354977), (115.929829 -32.1285630000132, 115.930203168696 -32.1288837386162, 115.929841830763 -32.1291914330032, 115.929674749035 -32.12918622374, 115.929611037711 -32.1291284977871, 115.929604360453 -32.1290982599076, 115.929612843797 -32.1290136920437, 115.929624352281 -32.1287818242318, 115.929652416541 -32.1287286225545, 115.929829 -32.1285630000132))\n17328401\tJOHNSTON STREET\tCheck with carrier\tPOLYGON ((150.910704736 -31.072084746, 150.910673056 -31.0720555715, 150.910562528 -31.071956393, 150.910449856 -31.071855235, 150.9103368 -31.071753984500003, 150.910224128 -31.0716528265, 150.910111456 -31.0715516685, 150.909998752 -31.0714505105, 150.909885728 -31.0713493525, 150.909773056 -31.071248102000002, 150.909660352 -31.071146944000002, 150.909628672 -31.071122191, 150.909549856 -31.0710477655, 150.909439328 -31.070948587, 150.909178336 -31.070714488, 150.909067808 -31.070615309500003, 150.908806816 -31.070381229000002, 150.908883136 -31.0703184955, 150.908702048 -31.070293465000002, 150.908463712 -31.070264845500002, 150.908248448 -31.0714061475, 150.908209216 -31.071615382500003, 150.908167072 -31.071837956, 150.908126752 -31.0720516125, 150.908091488 -31.072238555000002, 150.908056576 -31.072425571500002, 150.908017696 -31.072630311, 150.907943872 -31.0730222705, 150.909228 -31.073200925000002, 150.90957072 -31.073248803000002, 150.909649568 -31.072839657, 150.910540576 -31.072964754, 150.91057872 -31.072760014500002, 150.910616896 -31.072555164, 150.910649632 -31.0723795805, 150.910704736 -31.072084746))\nAYAA-HGK4T\tBrookhaven Rise Estate\tReady for service\tPOLYGON ((144.69416767765 -37.5631410356327, 144.694356751893 -37.5635274161156, 144.694545828003 -37.5639137963386, 144.695164940537 -37.5648124497813, 144.695784067562 -37.5657111003438, 144.696215564605 -37.5654645410643, 144.696319124899 -37.5655492630894, 144.696517710941 -37.5654019789043, 144.696438936217 -37.565334678058, 144.696788149347 -37.5651319232181, 144.696580151321 -37.5646090628612, 144.69655943243 -37.5645482151868, 144.697217487942 -37.564378026183, 144.697018335531 -37.5640889684609, 144.696890020709 -37.5639908635472, 144.696726756677 -37.5637538930177, 144.696563493653 -37.5635169222876, 144.696451619738 -37.5633882445831, 144.696366016144 -37.563183450267, 144.69626361024 -37.5629677836353, 144.696164080878 -37.5629977367992, 144.696104051443 -37.5628713366333, 144.695979608371 -37.5626093001055, 144.695200664795 -37.562844627632, 144.695160509351 -37.5627603996582, 144.694821511984 -37.5628624147109, 144.694662702847 -37.5629102049763, 144.694696981702 -37.562981754736, 144.69416767765 -37.5631410356327))\n10238\tDalyellup\tReady for service\tPOLYGON ((115.61841130256653 -33.400497208697317, 115.61830401420593 -33.400492730249894, 115.61813235282898 -33.400739044515177, 115.61803579330444 -33.400945052273578, 115.61797142028809 -33.40111523222734, 115.61794996261597 -33.401204800490177, 115.61799287796021 -33.401285411847788, 115.6181001663208 -33.401316760688893, 115.61830401420593 -33.401352587922013, 115.61894237995148 -33.401437677541452, 115.61909794807434 -33.401451112736915, 115.61967194080353 -33.4015988997498, 115.61982750892639 -33.4015988997498, 115.61994016170502 -33.401666075581652, 115.62006890773773 -33.401692945899846, 115.620476603508 -33.401791470328817, 115.62114179134369 -33.402010910700895, 115.62140464782715 -33.402109434769308, 115.62156558036804 -33.402181088567083, 115.6216835975647 -33.402194523647587, 115.62178552150726 -33.402243785591651, 115.62196254730225 -33.402315439278624, 115.62225222587585 -33.402413963001727, 115.62260091304779 -33.40250800826955, 115.62270820140839 -33.402257220662456, 115.62262237071991 -33.402230350518771, 115.62314808368683 -33.401289890254361, 115.62348604202271 -33.40141976394429, 115.62359869480133 -33.401204800490177, 115.62357723712921 -33.401119710642668, 115.62300860881805 -33.40092266014959, 115.62274575233459 -33.400837570025779, 115.62218248844147 -33.400636040452824, 115.62132954597473 -33.400335529601669, 115.62122493982315 -33.400375835693048, 115.62088698148727 -33.4011080597648, 115.62080651521683 -33.401271521788473, 115.62068849802017 -33.40123569452193, 115.620296895504 -33.401121495011225, 115.61953246593475 -33.400944597433615, 115.61935007572174 -33.4009065308192, 115.61913549900055 -33.400855028902548, 115.6189826130867 -33.400801287739604, 115.61880558729172 -33.400720675932845, 115.61863124370575 -33.400631107170952, 115.61849176883698 -33.400550495206325, 115.61841130256653 -33.400497208697317))\n92\tEast Village\tReady for service\tPOLYGON ((153.09624206692058 -27.466723234947729, 153.09453618198819 -27.466294857990043, 153.09406143099329 -27.469041201384208, 153.09425991445602 -27.469036441749353, 153.0944691267587 -27.469060239920797, 153.09463542371955 -27.469126874774112, 153.09482317835133 -27.469145913295893, 153.09587728649697 -27.469274423234072, 153.09613209634927 -27.469222067351716, 153.09619110494651 -27.469160192185662, 153.09615891843566 -27.468950768289158, 153.09619646936204 -27.468765142230627, 153.09623938471282 -27.468646151002634, 153.09632521539652 -27.467908402522635, 153.09643518597684 -27.467132571373448, 153.09615623623688 -27.467075454754063, 153.09624206692058 -27.466723234947729))\nAYCA-1VDJU8\tCutters Ridge Estate\tContracted\tPOLYGON ((153.03225402 -26.6277088799738, 153.032504122193 -26.6285174231475, 153.032845277964 -26.6290441645723, 153.03414559811 -26.6296128415985, 153.03534373588 -26.6300597259119, 153.03573792 -26.6294279699739, 153.03579498 -26.6291630099738, 153.03578796 -26.6287799699738, 153.03574692 -26.6286860099738, 153.03544092 -26.6288079599739, 153.03540096 -26.6287210199738, 153.035181 -26.6288069699738, 153.03510792 -26.6286470399738, 153.034902 -26.6287329899739, 153.03460806 -26.6288429699738, 153.03458898 -26.6288020199739, 153.03488346 -26.6286879899738, 153.0347211 -26.6283073799738, 153.03464838 -26.6283357299738, 153.03436974 -26.6276590199738, 153.03445704 -26.6274900899738, 153.03438324 -26.6272249499738, 153.03225402 -26.6277088799738))\nON-N-HBUSH-C_Park\tCentenary Park\tReady for service\tPOLYGON ((151.06499433517456 -33.863457998887348, 151.06526255607605 -33.863101642929323, 151.06428623199463 -33.862460198456915, 151.06304168701172 -33.862335472583247, 151.06226921081543 -33.86051801775497, 151.06115341186523 -33.860259650937991, 151.06077790260315 -33.861328749933044, 151.06120705604553 -33.862299836585876, 151.06221556663513 -33.862772012343989, 151.06499433517456 -33.863457998887348))\n17350455\tDiamond Hill Estate\tCheck with carrier\tPOLYGON ((144.185662816 -37.075002745, 144.185452192 -37.074907988, 144.185241248 -37.074813212500004, 144.185030624 -37.074718437, 144.18481968 -37.0746236615, 144.184742272 -37.0745888445, 144.184508992 -37.0744839865, 144.184051808 -37.0751395525, 144.183801248 -37.075135945, 144.183533408 -37.075132078500005, 144.182886112 -37.076275175, 144.184586752 -37.0768855455, 144.184721056 -37.076933701, 144.18483408 -37.07697429, 144.185259232 -37.077126933500004, 144.18580752 -37.076343218, 144.186467776 -37.075399644, 144.186545152 -37.075285351, 144.186191296 -37.0751266765, 144.186034304 -37.075056395000004, 144.185974208 -37.0751426975, 144.185662816 -37.075002745))\n10144\tBanksia Grove\tReady for service\tPOLYGON ((115.79452514648437 -31.690188411450773, 115.79442590475082 -31.6909643883538, 115.79436421394348 -31.691854471517491, 115.79645499587059 -31.691876152923946, 115.79645499587059 -31.692023358128534, 115.79681441187859 -31.692026781502598, 115.79681307077408 -31.691880717429925, 115.79753994941711 -31.69189098756754, 115.79753994941711 -31.691507568325346, 115.79800933599472 -31.69150985058743, 115.79801604151726 -31.691186909945074, 115.79717315733433 -31.691178921999754, 115.79717382788658 -31.69114468794055, 115.79709067940712 -31.691145829076067, 115.79682379961014 -31.691235978736987, 115.79662799835205 -31.690921025109784, 115.79679295420647 -31.690841145396735, 115.79693645238876 -31.690704208585814, 115.7962229847908 -31.690245468796995, 115.79623907804489 -31.689768468303381, 115.79469680786133 -31.689649788373849, 115.79452514648437 -31.690188411450773))\nAYCA-H2A18\tWonthaggi Heartlands\tReady for service\tPOLYGON ((145.584599039998 -38.6046202500285, 145.584415221068 -38.6035377580643, 145.581137697621 -38.6039220443493, 145.578900961146 -38.6037498163608, 145.578946906642 -38.6043160312285, 145.579547159998 -38.6045453700285, 145.580198759998 -38.6047200600285, 145.580999039998 -38.6048432700285, 145.581691679998 -38.6048803500285, 145.584599039998 -38.6046202500285))\n10057\tAustralind-Treendale\tReady for service\tPOLYGON ((115.7360315322876 -33.285889047832221, 115.73559165000916 -33.285785907829577, 115.7355272769928 -33.285978734691966, 115.73550045490265 -33.286310575271592, 115.73549509048462 -33.286750037880971, 115.73561310768127 -33.287238825326526, 115.73570430278778 -33.287525818514325, 115.73577404022217 -33.287978727718773, 115.7361763715744 -33.28794285380809, 115.73611736297607 -33.287579629631949, 115.7368791103363 -33.287530302775387, 115.7376354932785 -33.287539271296843, 115.7376354932785 -33.28769173602047, 115.73856353759766 -33.287682767514681, 115.73856353759766 -33.286072905795493, 115.7376354932785 -33.286072905795493, 115.73763012886047 -33.285978734691966, 115.73623538017273 -33.285974250351167, 115.73601007461548 -33.28594734430154, 115.7360315322876 -33.285889047832221))\nAYCA-1B6PNJ\tHighfields North Estate\tUnder construction\tPOLYGON ((151.940037706812 -27.438383064857, 151.940855018566 -27.438486715721, 151.940919545719 -27.4380968877894, 151.940871 -27.4379269999807, 151.940935 -27.4375389999806, 151.942769 -27.4377899999806, 151.942805573698 -27.4375819998522, 151.94376642212 -27.4377291858053, 151.943893 -27.4369699999806, 151.941314 -27.4366269999806, 151.941385 -27.4362129999807, 151.940168529266 -27.4360028469143, 151.940165 -27.4360239999801, 151.939919506278 -27.4359902490565, 151.940037706812 -27.438383064857))\nAYCA-1FU57R\tSeascapes\tContracted\tPOLYGON ((115.675273969223 -32.5600200911635, 115.675382260203 -32.5600635845388, 115.675633388042 -32.5599959950662, 115.676108914425 -32.5591906581768, 115.676177895559 -32.5590956751976, 115.676464955383 -32.5588066787433, 115.676432999999 -32.5587830000152, 115.676237999999 -32.5585920000152, 115.676304999999 -32.5585430000152, 115.676508572579 -32.5583990993456, 115.676533501497 -32.5583763205576, 115.676558181773 -32.558357201316, 115.6767613238 -32.5582249013168, 115.676811414328 -32.5581845147448, 115.676741999999 -32.5581270000152, 115.676676999999 -32.5580680000152, 115.676651999999 -32.5580130000152, 115.676620999999 -32.5579610000152, 115.676583999999 -32.5579110000152, 115.676542999999 -32.5578640000152, 115.676495999999 -32.5578210000152, 115.676444999999 -32.5577820000152, 115.676388999999 -32.5577460000152, 115.676329999999 -32.5577160000153, 115.676224999999 -32.5577140000152, 115.676230999999 -32.5573710000153, 115.676145999999 -32.5573700000152, 115.676149999999 -32.5571000000152, 115.675710999999 -32.5570950000152, 115.675625999999 -32.5571070000153, 115.675536999999 -32.5571490000152, 115.675319999999 -32.5572950000152, 115.675098999999 -32.5575110000151, 115.674894107291 -32.5574571315169, 115.674514200006 -32.5578374100082, 115.674019199999 -32.5594633500148, 115.673993263235 -32.5595057055122, 115.675273969223 -32.5600200911635))\n10091\tBaldivis-Rivergums\tReady for service\tPOLYGON ((115.82648634910583 -32.3288040654175, 115.82758605480194 -32.330018873444978, 115.82558512687683 -32.331301656763465, 115.82533299922943 -32.331029690087135, 115.82516670227051 -32.331115812956391, 115.82502722740173 -32.331088616269682, 115.82497358322144 -32.331129411296672, 115.8246248960495 -32.330744124197622, 115.82449078559875 -32.330707861797983, 115.82431375980377 -32.330816648953309, 115.82380682229996 -32.33029764239047, 115.823814868927 -32.330209252329965, 115.82513988018036 -32.329443201523773, 115.8255797624588 -32.329089637426883, 115.82648634910583 -32.3288040654175))\n17325301\tChapple Street Business Park\tCheck with carrier\tPOLYGON ((151.245870112 -23.842427048, 151.243918912 -23.842158021, 151.243529056 -23.8421050185, 151.243206112 -23.844089976, 151.243192096 -23.8441789795, 151.24317696 -23.844268982, 151.245543968 -23.844439977500002, 151.24556304 -23.844321004, 151.245582112 -23.844203011, 151.245640096 -23.843843001, 151.245699136 -23.8434840085, 151.245727936 -23.8433030045, 151.245785152 -23.8429510235, 151.24584096 -23.842605961500002, 151.245870112 -23.842427048))\nAYCA-ZFMAE\tYanchep Golf Estate\tReady for service\tPOLYGON ((115.6544456324 -31.5455487881747, 115.654869913703 -31.5453027559652, 115.65487510962 -31.5452670985373, 115.654700769481 -31.5450976291786, 115.654746397498 -31.5450484866334, 115.65579061242 -31.5444429090833, 115.655905652837 -31.544348722193, 115.655803449183 -31.544212273497, 115.655830926625 -31.5441954243315, 115.656072730957 -31.5440616617944, 115.656792841647 -31.5450141051055, 115.656913260706 -31.5449496209477, 115.657174894253 -31.5452985006589, 115.657844760156 -31.5449604419951, 115.657930209282 -31.5448274743113, 115.657789662174 -31.5446428129514, 115.657797323136 -31.5446026218884, 115.657886973609 -31.5445443337915, 115.658074624504 -31.5444240196329, 115.657985009328 -31.544320888286, 115.657848244443 -31.5444053281278, 115.657803025059 -31.5443986058207, 115.657031717949 -31.5433873350683, 115.657006112609 -31.5433580750124, 115.656319535224 -31.542996253394, 115.654331910644 -31.5440728606958, 115.653786273817 -31.5449090839626, 115.6544456324 -31.5455487881747))\n10194\tCanningvale-Sanctuary Waters\tReady for service\tPOLYGON ((115.92701017856598 -32.09340096992868, 115.92756673693657 -32.093629373529339, 115.92806428670883 -32.093898678144924, 115.92828657478094 -32.094039845283504, 115.92847533524036 -32.094188965263406, 115.92867348343134 -32.094339789224058, 115.9288515150547 -32.094495725599536, 115.92906810343266 -32.094695119265666, 115.9287341684103 -32.094787715036716, 115.92856996692717 -32.094944431745191, 115.92856229748577 -32.09495007695012, 115.92844801023602 -32.095067063979783, 115.92815916985273 -32.095348684342433, 115.9278723411262 -32.095625191236593, 115.92756271362305 -32.095932372798671, 115.9273387491703 -32.095677311343231, 115.9271228313446 -32.09583466559922, 115.92710271477699 -32.095909650203488, 115.92701755464077 -32.095952255064837, 115.92691529542208 -32.095828700912158, 115.92675134539604 -32.095697761731174, 115.92657096683979 -32.095596929912936, 115.92638052999973 -32.0955114358052, 115.92642076313496 -32.095446108027751, 115.92591181397438 -32.095233650411139, 115.92575624585152 -32.095172298921895, 115.92553965747356 -32.095050163890072, 115.92533379793167 -32.094900761280279, 115.92594869434834 -32.094359387799535, 115.92661589384079 -32.093777677566813, 115.92682275921106 -32.09359756109253, 115.92700950801373 -32.093399265687005, 115.92701017856598 -32.09340096992868))\n17319264\tPeregian Springs\tCheck with carrier\tPOLYGON ((153.070047008 -26.5011980415, 153.069726976 -26.5010519655, 153.069593056 -26.5009899535, 153.069458048 -26.500929033000002, 153.069324128 -26.500868001500002, 153.069279136 -26.500847041, 153.069192 -26.500812039, 153.069140896 -26.500790967500002, 153.069092992 -26.5007930395, 153.06894288 -26.5008009575, 153.068721856 -26.500811040000002, 153.068550112 -26.500734006000002, 153.068190112 -26.5007520065, 153.06819408 -26.5008130195, 153.067911136 -26.500790967500002, 153.067709152 -26.500775039, 153.067557952 -26.500902023000002, 153.067362112 -26.501067006, 153.067212 -26.501192991, 153.06705792 -26.5013229535, 153.066852 -26.5013360145, 153.066594976 -26.5015510215, 153.068430976 -26.503319973, 153.070047008 -26.5011980415))\nAYCA-15LCBW\tLouisiana Road\tUnder construction\tPOLYGON ((151.471524999999 -33.2607460000182, 151.471405999999 -33.2613300000181, 151.471398999999 -33.2614060000181, 151.471429999999 -33.2616530000181, 151.471093999999 -33.2617490000181, 151.471176999999 -33.2619370000181, 151.471227999999 -33.2619580000182, 151.471554999999 -33.2627350000181, 151.471572999999 -33.2629160000182, 151.471392999999 -33.2638040000182, 151.471467999999 -33.2638150000181, 151.472456999999 -33.2638640000181, 151.472703999999 -33.2637840000181, 151.473053999999 -33.2636700000181, 151.473082999999 -33.2635230000181, 151.472765999999 -33.2634780000181, 151.472836999999 -33.2631300000181, 151.473255999999 -33.2610590000181, 151.473576999999 -33.2611030000181, 151.473588999999 -33.2610420000182, 151.473120999999 -33.2609750000181, 151.473136999999 -33.2608930000182, 151.472978999999 -33.2608700000181, 151.472961999999 -33.2609520000181, 151.471524999999 -33.2607460000182))\nAYAA-F3PM8\tWarralily - Armstrong Creek\tReady for service\tPOLYGON ((144.372427115256 -38.2365722474205, 144.372796114683 -38.2365768616074, 144.37317020211 -38.2365550944462, 144.373305324104 -38.2365714059007, 144.373342981358 -38.2365759240241, 144.373350273913 -38.2365767989845, 144.373356431985 -38.2365448695879, 144.37373035456 -38.2365225296078, 144.37395712004 -38.2364743488221, 144.374117473376 -38.236440215342, 144.374258477139 -38.2364571319537, 144.374286838906 -38.236460534572, 144.374297967358 -38.2364618696729, 144.374310068148 -38.2363991231167, 144.374592134893 -38.2363390067016, 144.374695528858 -38.2363169703209, 144.374712855057 -38.2363139178602, 144.374819990101 -38.2362790077706, 144.375026015841 -38.2362131105331, 144.375192702518 -38.2361597955186, 144.375399777294 -38.2360938538655, 144.375684022991 -38.2366466500151, 144.375603697876 -38.2368300531251, 144.375936149708 -38.2370471732692, 144.376083344364 -38.2371341532152, 144.376233194453 -38.2372225198191, 144.37637872241 -38.237308337282, 144.376440113687 -38.2372332696473, 144.376760987159 -38.2373779678631, 144.376788445925 -38.2373899688379, 144.376971773676 -38.2374738125823, 144.377012468087 -38.2374945757358, 144.377020723478 -38.2374856224247, 144.377135324863 -38.2373466756304, 144.377210008729 -38.2371985442653, 144.377268954969 -38.2371372983327, 144.377340585416 -38.2370784624091, 144.377411891158 -38.2370317936017, 144.377773450499 -38.2368395139832, 144.377857145335 -38.2368403243803, 144.377760573385 -38.2367642867461, 144.377679159265 -38.2366602457808, 144.377657442206 -38.2366324929972, 144.377564777744 -38.2365140744469, 144.377306540251 -38.2366538754413, 144.377015319696 -38.2368099687121, 144.376903039666 -38.2366960131999, 144.376580977022 -38.236320832503, 144.376273580103 -38.2359293499487, 144.375964743294 -38.2355312369214, 144.375805277431 -38.2353432006551, 144.375600971179 -38.2350833001992, 144.375127100464 -38.2352914588577, 144.374669667448 -38.2354440917892, 144.37449806614 -38.2355024767125, 144.374492290887 -38.2355036919579, 144.374458274239 -38.2355108498309, 144.374322413583 -38.235542679671, 144.373989424026 -38.235617983709, 144.373819534966 -38.2356563656518, 144.373808139526 -38.2356577343828, 144.373644538963 -38.2356773846746, 144.373279081294 -38.2357212128218, 144.373104744074 -38.2357421200936, 144.373033318918 -38.2357506856275, 144.372893527173 -38.2357552306124, 144.372717115894 -38.2357610592025, 144.372581995167 -38.2357653587063, 144.372523671616 -38.2360716357368, 144.372480268045 -38.2362965948798, 144.372427115256 -38.2365722474205))\n17324013\tGrassy Flat Road Diamond Creek\tCheck with carrier\tPOLYGON ((145.155772096 -37.6597870235, 145.155735008 -37.659771983, 145.155642848 -37.659768024, 145.155711968 -37.659778014000004, 145.15289712 -37.660533036000004, 145.152672128 -37.660507025, 145.152574016 -37.661122372, 145.152030976 -37.6615700165, 145.152187104 -37.6616931525, 145.1530752 -37.661790592, 145.153928096 -37.661665310000004, 145.155381856 -37.6618539545, 145.155467168 -37.661401981000004, 145.155732832 -37.6597809925, 145.155772096 -37.6597870235))\n10268\tDalyellup\tReady for service\tPOLYGON ((115.61404466629028 -33.4037614806216, 115.61432361602783 -33.403826415643621, 115.61459988355637 -33.403886872344643, 115.61451405286789 -33.403924937653329, 115.61443895101547 -33.404191394347151, 115.61480909585953 -33.40426528555448, 115.6148037314415 -33.404294394194679, 115.61564326286316 -33.404383959180208, 115.61563789844513 -33.404424263393587, 115.615793466568 -33.404462328466821, 115.61646670103073 -33.404596675650815, 115.61734110116959 -33.404771326679416, 115.61737060546875 -33.40453621944372, 115.61756104230881 -33.40454965416005, 115.61761736869812 -33.404484719678571, 115.61789900064468 -33.404525023845196, 115.61785072088242 -33.405111671264869, 115.61783999204636 -33.405254973849331, 115.61777830123901 -33.405924462479312, 115.61754494905472 -33.405850572683136, 115.61713725328445 -33.405852811768789, 115.61665713787079 -33.405884158961918, 115.61634868383408 -33.40590654980722, 115.61582297086716 -33.405975961391, 115.61574250459671 -33.4059222233955, 115.61569422483444 -33.405552773776648, 115.61571031808853 -33.405366928828968, 115.61572909355164 -33.405183322586645, 115.61555743217468 -33.40518108348374, 115.61556547880173 -33.405066889158739, 115.61495661735535 -33.405066889158739, 115.61433970928192 -33.40516764886506, 115.61432898044586 -33.40481386982551, 115.61423510313034 -33.404775804906308, 115.61413317918777 -33.404809391600587, 115.61403661966324 -33.405028824350396, 115.61393469572067 -33.4052325828361, 115.61388105154037 -33.405384841612324, 115.61336606740952 -33.40535349423903, 115.61336606740952 -33.405198996305415, 115.61343312263489 -33.405087041109361, 115.61392396688461 -33.404104068293826, 115.61398297548294 -33.403931655059012, 115.61404466629028 -33.4037614806216))\n10516\tMadora Bay\tReady for service\tPOLYGON ((115.75327277183533 -32.482489893520842, 115.75364828109741 -32.482544195723548, 115.75412034988403 -32.482354137870743, 115.75434565544128 -32.482236482808354, 115.75419545173645 -32.482118827592153, 115.7544207572937 -32.481802062784027, 115.75366973876953 -32.481476246389654, 115.74648141860962 -32.480761256278939, 115.74629902839661 -32.480942266970523, 115.74623465538025 -32.481358590179596, 115.74671745300293 -32.481376691145, 115.74678182601929 -32.481168529823051, 115.74983954429626 -32.481458145444272, 115.74971079826355 -32.482200281219761, 115.74951767921448 -32.482127877998856, 115.7494854927063 -32.482498943890242, 115.74851989746094 -32.482489893520842, 115.74848771095276 -32.482797605569594, 115.7489275932312 -32.482815706245582, 115.74888467788696 -32.48292431022503, 115.74973225593567 -32.48301481344113, 115.74975371360779 -32.4829062095709, 115.75024724006653 -32.482951461199413, 115.75024724006653 -32.482752353863695, 115.75034379959106 -32.482372238635932, 115.75065493583679 -32.482399389776873, 115.75070858001709 -32.482218382015873, 115.75032234191895 -32.48218218042, 115.75040817260742 -32.481901617558137, 115.75063347816467 -32.481919718414318, 115.75066566467285 -32.481521498737195, 115.75247883796692 -32.481702507899762, 115.75253248214722 -32.481593902445908, 115.75287580490112 -32.481648205189217, 115.75299382209778 -32.48172965924276, 115.75339078903198 -32.481783961904164, 115.75327277183533 -32.482489893520842))\nAYCA-Z1Y3T\tAnnadale Estate\tUnder construction\tPOLYGON ((144.89832195574 -37.5359491183692, 144.898128999993 -37.5359310000244, 144.898105999993 -37.5366370000245, 144.898818999993 -37.5367150000245, 144.898661999993 -37.5375710000245, 144.901287999993 -37.5378750000245, 144.901365999993 -37.5374470000245, 144.901354999993 -37.5374460000245, 144.901602999993 -37.5360910000246, 144.899172999993 -37.5358090000245, 144.899055999993 -37.5364500000245, 144.898545999993 -37.5363920000245, 144.898517999993 -37.5363610000244, 144.898586583184 -37.5359856738666, 144.89832195574 -37.5359491183692))\n10394\tIluka\tReady for service\tMULTIPOLYGON (((115.73288798332214 -31.734344863140645, 115.73289065791812 -31.734341064757274, 115.73289066553116 -31.734340300724597, 115.73288798332214 -31.734344863140645)), ((115.73389984667301 -31.735472343316534, 115.73441818356514 -31.735459226529457, 115.73486477136612 -31.735350870391123, 115.73514506220818 -31.735240803236636, 115.73535025119781 -31.735085112167877, 115.7354736328125 -31.734878093967897, 115.73551654815674 -31.734611764088086, 115.73632121086121 -31.734664231705256, 115.73641642928123 -31.734541046817906, 115.7364097237587 -31.734276426876416, 115.73619782924652 -31.733975306713269, 115.73613274376839 -31.733793094321062, 115.73565459810197 -31.733825316569867, 115.73568535968661 -31.733707263320451, 115.73526944965124 -31.733653654548831, 115.73527984321117 -31.733592061453788, 115.73497876524925 -31.73353274954577, 115.73370069265366 -31.733582936547329, 115.73338150978088 -31.733439219152146, 115.73317229747772 -31.73394108845098, 115.73289065791812 -31.734341064757274, 115.73288932442665 -31.734474891903403, 115.73292821645737 -31.73459579567696, 115.73323667049408 -31.735152407240694, 115.73328495025635 -31.735458085939175, 115.73389984667301 -31.735472343316534)))\n10406\tIluka\tReady for service\tPOLYGON ((115.72931528091431 -31.728176271463738, 115.7310962677002 -31.727884256944041, 115.73120892047882 -31.728354217360469, 115.73029160499573 -31.72853444426655, 115.73038280010223 -31.728890334342719, 115.73003679513931 -31.728965618606757, 115.73023527860641 -31.729691082016632, 115.73023796081543 -31.730046967650583, 115.72991341352463 -31.730108563102313, 115.72893708944321 -31.730416539746813, 115.72860449552536 -31.730192971617836, 115.72832554578781 -31.730484978862144, 115.72770059108734 -31.730044686336775, 115.72818875312805 -31.729462949481071, 115.72797819972038 -31.729320366361126, 115.7278910279274 -31.729310100368032, 115.72779178619385 -31.728970181287451, 115.728180706501 -31.728899459711315, 115.72804927825928 -31.728459159652203, 115.72931528091431 -31.728176271463738))\nAYAA-HD37C\tPotts Hill\tReady for service\tPOLYGON ((151.026671196638 -33.894950814314, 151.027789867619 -33.8951199925799, 151.028279741765 -33.8945558001273, 151.028445905694 -33.8943823084413, 151.029488418398 -33.8928541998576, 151.029496178828 -33.892779780651, 151.029499548269 -33.8925481647425, 151.027584506897 -33.8923158075369, 151.027574481116 -33.8923828272495, 151.027209086809 -33.8923522222462, 151.026960044849 -33.8935764510922, 151.026671196638 -33.894950814314))\nAYCA-PU9UW\tGrey Gum Estate\tReady for service\tPOLYGON ((150.938508516345 -33.6870753533343, 150.938680546259 -33.6871998723051, 150.938835458147 -33.6870592080966, 150.938947828165 -33.6869494967371, 150.93898178058 -33.6869646310157, 150.939127935425 -33.6870449758411, 150.939287030058 -33.6871576153997, 150.939399281835 -33.6872797844007, 150.939534067112 -33.6874344082037, 150.939660793794 -33.6875820233732, 150.939769372449 -33.6876857999118, 150.939857143805 -33.6877422564901, 150.939977452352 -33.6878141495006, 150.940080572975 -33.6878594051328, 150.940211213381 -33.6879005369047, 150.94032302194 -33.6879264606877, 150.940462404878 -33.6879459700825, 150.94129532625 -33.6880373984999, 150.941322003495 -33.687869558793, 150.941097581049 -33.6878464660358, 150.941084955452 -33.6878189080076, 150.941196524083 -33.6876262178546, 150.941230392726 -33.6875912901751, 150.941323289852 -33.6875218541476, 150.941930801131 -33.6871139588382, 150.941637050446 -33.6866935926728, 150.940667768831 -33.6857117787589, 150.940588219611 -33.6856378641182, 150.940106686118 -33.6852437206321, 150.94004624288 -33.6852050061753, 150.939949320057 -33.6851822741373, 150.939869179916 -33.6852126109455, 150.93973257492 -33.6853400426457, 150.939658211942 -33.6854308059783, 150.939566063586 -33.6855861276567, 150.93946965867 -33.6857685268897, 150.939375381459 -33.6859373872051, 150.939241538481 -33.6861848663044, 150.939116157897 -33.6863866647051, 150.938985782158 -33.6865571963894, 150.938874741706 -33.6866978088514, 150.93867085792 -33.6869194838349, 150.938508516345 -33.6870753533343))\nAYCA-IA841\tTrumpet Wy/Cottier Dr/Lovell Pl\tContracted\tPOLYGON ((118.606949894255 -20.4038037645468, 118.606926439597 -20.4040899229581, 118.607217662334 -20.4041185821227, 118.60718544 -20.4044583599183, 118.606230974974 -20.4043781013766, 118.60615476 -20.4049584899184, 118.60709328 -20.4050693699184, 118.60721712 -20.4052196699183, 118.607520690124 -20.405431964827, 118.607737709671 -20.4056021172505, 118.607902991115 -20.4054145057156, 118.607609712922 -20.4051848475488, 118.60785519058 -20.4050063354452, 118.607895752423 -20.4050097154239, 118.608076813714 -20.4048577111096, 118.60793964 -20.4047498699183, 118.60820568 -20.4044472899183, 118.60823064599 -20.4041835593033, 118.608343859431 -20.4042722137871, 118.608549547976 -20.4040387324161, 118.608859929767 -20.4042811487647, 118.609871185297 -20.403142281566, 118.609719247584 -20.402137310581, 118.608397526192 -20.4022867157652, 118.60841231843 -20.4023621359308, 118.607497399189 -20.4031327828183, 118.607663308131 -20.403380653473, 118.607616965044 -20.4038626343884, 118.606949894255 -20.4038037645468))\nAYCA-TAE37\tHelena Valley\tReady for service\tPOLYGON ((116.034292150265 -31.9171237015168, 116.033243053034 -31.9174943036054, 116.033370293482 -31.9177464354072, 116.034143857855 -31.9192999232008, 116.034465843861 -31.9199471577476, 116.034610529118 -31.9201926316278, 116.034712237529 -31.9203044383157, 116.035607611193 -31.9199887452856, 116.035511385886 -31.9197887067645, 116.035671241082 -31.9197346926696, 116.035894126863 -31.9196430310241, 116.035872581756 -31.9194435587467, 116.03526206691 -31.9182028467252, 116.035271187583 -31.9181472278533, 116.035693260521 -31.9179979163019, 116.035788730242 -31.9178945159934, 116.03582557738 -31.9175564418515, 116.0354870078 -31.916647732571, 116.035035362366 -31.9167653362187, 116.035220517884 -31.9172322624228, 116.034887633177 -31.9173245824105, 116.03496435535 -31.9175350998724, 116.034702646821 -31.9176075932588, 116.034629950943 -31.9174233341284, 116.03450753361 -31.9171932810106, 116.034336930359 -31.9172462079493, 116.034313035928 -31.9171997292032, 116.034292150265 -31.9171237015168))\nAYCA-E2MNA\tEucalypt\tReady for service\tPOLYGON ((145.035290743683 -37.6110605742831, 145.034964377057 -37.6113049009576, 145.034841249996 -37.611452312221, 145.034736868304 -37.6120561910064, 145.035204119995 -37.6121092500258, 145.035104641139 -37.6124118738348, 145.035161069468 -37.6125203325682, 145.035121034839 -37.612924963637, 145.035202638176 -37.6129359646215, 145.035026832803 -37.614172208482, 145.037014788625 -37.6144282309495, 145.037054010055 -37.6141378907487, 145.037386715166 -37.6141610656779, 145.037572778303 -37.6130731599992, 145.037411330309 -37.6130548332447, 145.037434837579 -37.6128090802052, 145.036376548785 -37.6127360010499, 145.036379999995 -37.612172000026, 145.035290743683 -37.6110605742831))\nAYCA-IAOE6\tThe Boulevard\tReady for service\tPOLYGON ((145.373152448696 -36.3559703078836, 145.373378028106 -36.355972188577, 145.37379474609 -36.3559769851678, 145.37379412383 -36.3558357104218, 145.373801199759 -36.3556509779984, 145.374384834103 -36.3556518509191, 145.375343485324 -36.3556710322431, 145.37535394034 -36.3537202143381, 145.374766898743 -36.3537200488462, 145.374766484032 -36.3539771461458, 145.374561463069 -36.3539769296893, 145.374561674507 -36.3538457898276, 145.374333432906 -36.3538455483248, 145.374315408314 -36.3538569000777, 145.3743156245 -36.3537232673831, 145.373897783719 -36.3537228242797, 145.373897934001 -36.3536299772079, 145.373675085787 -36.3536297392463, 145.37367500165 -36.3536814876289, 145.373663757509 -36.3537441163739, 145.373663580795 -36.3538527234668, 145.372555896116 -36.3538515390519, 145.372554693297 -36.3545842986157, 145.372708794719 -36.3545844640437, 145.372707927129 -36.3551135290412, 145.37270742511 -36.35541962322, 145.372829271576 -36.3554197751146, 145.372834709583 -36.3559683401154, 145.373152448696 -36.3559703078836))\nAYCA-SN6ZO\tGoogong Township\tReady for service\tPOLYGON ((149.234504074279 -35.4197191360926, 149.234217945006 -35.419660944989, 149.234231271185 -35.4200121779599, 149.234004431755 -35.4200026581898, 149.234006013734 -35.4199076429174, 149.233252562023 -35.4199493049379, 149.233260316313 -35.4200587722751, 149.233066443358 -35.4200747414978, 149.233058436641 -35.4199601679537, 149.232412408976 -35.4199960004615, 149.232388618071 -35.4203086228519, 149.232307776454 -35.42060148764, 149.232183515598 -35.4210271009239, 149.231965519744 -35.4209819587516, 149.23189431103 -35.4211867669321, 149.231859175594 -35.4212033459431, 149.230703388619 -35.4210350088057, 149.230353509711 -35.4210535394744, 149.230292297581 -35.4210322860386, 149.229684849627 -35.4197605736748, 149.22949961139 -35.4198207896808, 149.229439403419 -35.4196966730019, 149.22917600001 -35.4197790000198, 149.22931800001 -35.4200780000199, 149.229681215657 -35.4209329023556, 149.229379289968 -35.4210247972126, 149.229562143699 -35.4214123678923, 149.230249028643 -35.4214070441745, 149.230501317127 -35.4213685575284, 149.230644696087 -35.4213637103537, 149.231941148551 -35.421543865, 149.233378602047 -35.421824374031, 149.233825548286 -35.4216455462827, 149.23391700001 -35.4213440000198, 149.233963233174 -35.4211942124482, 149.234303692008 -35.4212584700716, 149.234549957649 -35.4204054894841, 149.234493366375 -35.4203951969942, 149.234504074279 -35.4197191360926))\nAYCA-L8UX7\tAmbrosia Estate\tReady for service\tPOLYGON ((145.237007178357 -38.111228466431, 145.236332769227 -38.1111440655732, 145.236305662472 -38.1112749510192, 145.236259356703 -38.1112963449605, 145.233508630808 -38.1109430312481, 145.233025099613 -38.1122199122583, 145.233313282046 -38.1122832565806, 145.233377179193 -38.1124154968396, 145.23552536508 -38.112703548265, 145.235534983027 -38.1126592494539, 145.235959413343 -38.1127125087897, 145.236027621307 -38.1126393953215, 145.236041141524 -38.1125738676401, 145.236346982588 -38.1126129714126, 145.23634264651 -38.1126342785991, 145.236353501836 -38.1126526790126, 145.236728648156 -38.1126989915441, 145.237007178357 -38.111228466431))\nAYCA-N50IV\tVermont, Fernadell\tReady for service\tPOLYGON ((150.859265867241 -33.5811619493067, 150.857912541575 -33.5810159253741, 150.857255337924 -33.5809301180711, 150.856883070534 -33.5829478163964, 150.857728892075 -33.583067758078, 150.857556837862 -33.5839675413415, 150.858521700802 -33.5841070533559, 150.858784730474 -33.582798420794, 150.858965295538 -33.5828195300429, 150.8589680418 -33.5826577244594, 150.859005344343 -33.5824698214132, 150.859265867241 -33.5811619493067))\nAYCA-RZ1UT\tPhase 2 Single LEAP Robertson Barracks\tReady for service\tPOLYGON ((130.975075679746 -12.4381023599208, 130.975089099621 -12.4398779025133, 130.975061679811 -12.4407813599433, 130.975526177891 -12.4407752793437, 130.976054679836 -12.4407683599178, 130.976054679694 -12.441116173692, 130.976597901541 -12.4410906465044, 130.976733248969 -12.4409965163909, 130.977186828587 -12.4409934495348, 130.977177071497 -12.4396643606528, 130.97660823279 -12.4394542185494, 130.976454679781 -12.4381023598892, 130.975075679746 -12.4381023599208))\n17346283\tBellevue Hill Estate\tCheck with carrier\tPOLYGON ((149.562792736 -32.592495776, 149.562982432 -32.5924130625, 149.563418048 -32.5922900375, 149.563397888 -32.592248283, 149.563325152 -32.5920987845, 149.563204192 -32.591848775500004, 149.56306992 -32.5915720155, 149.563001888 -32.591431434, 149.562921248 -32.5912648415, 149.562840256 -32.5910977125, 149.562759616 -32.590930861000004, 149.5627272 -32.590864446, 149.562678592 -32.5907640835, 149.5625976 -32.590597232, 149.562585728 -32.590572479, 149.562519488 -32.5904358565, 149.56250832 -32.5903263365, 149.562500768 -32.590254427, 149.562536416 -32.5900819885, 149.562572768 -32.589904314500004, 149.56260912 -32.5897265665, 149.562390592 -32.589694173, 149.562159488 -32.589660059, 149.561949952 -32.589629016, 149.56196256 -32.589566819, 149.561543168 -32.589504622, 149.56152768 -32.5895816745, 149.56150752 -32.5896830915, 149.561471168 -32.5898607655, 149.56139376 -32.5900556075, 149.5613592 -32.5901431865, 149.561335456 -32.590258645, 149.56129152 -32.5904718575, 149.561267776 -32.5905873345, 149.56077168 -32.590890993500004, 149.560682752 -32.590841136, 149.560105312 -32.5905174045, 149.56004736 -32.5908245785, 149.560038368 -32.5908737145, 149.560399808 -32.591295903, 149.560931168 -32.5919164485, 149.56121232 -32.592244953, 149.561517952 -32.5921199485, 149.561604736 -32.5920843915, 149.561997472 -32.59192383, 149.562083872 -32.592102392, 149.562170656 -32.5922810465, 149.562613792 -32.592127052500004, 149.562706688 -32.5923183055, 149.562785536 -32.5924811055, 149.562792736 -32.592495776))\nAYCA-E0VG1\tGracewood Kellyville\tReady for service\tPOLYGON ((150.942280808775 -33.7192705851282, 150.943277719389 -33.7217403772374, 150.945121723018 -33.7212244008756, 150.944056759123 -33.718769123719, 150.942280808775 -33.7192705851282))\nAYCA-RBWFU\tGolden Bay\tReady for service\tPOLYGON ((115.76247194129 -32.418280991871, 115.762439917856 -32.4183080873819, 115.762439873561 -32.4183621637384, 115.76215288288 -32.4183618622714, 115.762152256804 -32.4187901985518, 115.762470831383 -32.4187947277104, 115.762469846029 -32.419004742124, 115.762409457716 -32.4190572749086, 115.762400999528 -32.4192210943719, 115.762471630258 -32.419268306624, 115.762529108434 -32.4194563329566, 115.762524101666 -32.4195076634152, 115.762494412426 -32.4195568222178, 115.762453475995 -32.4195949070283, 115.761611527312 -32.4199809840312, 115.76150783334 -32.4199693658276, 115.76144063915 -32.4199021096285, 115.761415235169 -32.4199172375817, 115.761680041582 -32.4202979432226, 115.76186205515 -32.4201193550594, 115.762558144556 -32.4197993892615, 115.762642363917 -32.4198297720586, 115.762747724662 -32.419805944895, 115.762883252343 -32.4202578027301, 115.762962915191 -32.4202358698578, 115.762897983876 -32.4200273933671, 115.762925619792 -32.4199963123167, 115.763986345803 -32.4199981101482, 115.763986414254 -32.4199440961678, 115.764018189562 -32.4199175785165, 115.764025298254 -32.4196561622823, 115.764083609787 -32.419637421776, 115.764111446462 -32.4196079128411, 115.764773127356 -32.41948282418, 115.764727669113 -32.4193290047463, 115.764442682069 -32.4193911713537, 115.764440650678 -32.4190838145617, 115.764564014054 -32.4190601124221, 115.764563657796 -32.417863301836, 115.764246800788 -32.417861511715, 115.764246984219 -32.4176444019984, 115.764311124429 -32.4175890078476, 115.764407457571 -32.4175892968701, 115.764409152179 -32.4174319424803, 115.763297178966 -32.4174321835542, 115.763293889312 -32.4178644567968, 115.763229155924 -32.4179201004462, 115.762473703816 -32.4179187606511, 115.76247194129 -32.418280991871))\nAYCA-UFCXA\tSaddlers Ridge\tUnder construction\tPOLYGON ((151.53493159951 -32.7612562330972, 151.534934400259 -32.7612598573997, 151.534750999999 -32.761358000016, 151.534665274368 -32.7613958596425, 151.534563396194 -32.7614421068058, 151.534420999999 -32.761500000016, 151.534600999999 -32.761843000016, 151.534669293203 -32.7619185165895, 151.534710614801 -32.7621766171265, 151.534709951361 -32.7622858725712, 151.534562950187 -32.7631546387692, 151.535351155826 -32.7636167004935, 151.53550226017 -32.7634898723792, 151.535909771471 -32.7631466378831, 151.536106991763 -32.7629787901826, 151.536385279563 -32.76273619809, 151.5367257898 -32.7622801388548, 151.536964301626 -32.7619240552073, 151.537152999999 -32.761460000016, 151.536953999999 -32.761339000016, 151.536949999999 -32.761323000016, 151.536390999999 -32.761194000016, 151.536603999999 -32.7608910000161, 151.535800999999 -32.760415000016, 151.535392999999 -32.760900000016, 151.535155999999 -32.761110000016, 151.535046999999 -32.761186000016, 151.53493159951 -32.7612562330972))\nAYCA-FTSDU\tOakdene Estate\tReady for service\tPOLYGON ((144.54527020194 -38.2384317605686, 144.543414515703 -38.2386612396584, 144.543476427896 -38.2389726941477, 144.543565078596 -38.2389617321176, 144.543593381332 -38.239104112775, 144.543342484947 -38.2403808353101, 144.54320142665 -38.2405448225047, 144.543541320646 -38.2407268076606, 144.543899653273 -38.2409083159434, 144.54407268167 -38.2409959603086, 144.544324373641 -38.2411135497743, 144.544349357165 -38.2411529706905, 144.544335197724 -38.2412250260015, 144.544490382448 -38.2412439941755, 144.544495053556 -38.2412202236034, 144.544537547748 -38.2412022143946, 144.544893517586 -38.241325786275, 144.54497754219 -38.2411215321108, 144.544943842351 -38.2411124856195, 144.545000103921 -38.2408261646923, 144.545237112541 -38.2408551327455, 144.545543185652 -38.2392974297211, 144.545340094854 -38.2392726072619, 144.545428862487 -38.2388208325855, 144.545196452908 -38.2388070982519, 144.54527020194 -38.2384317605686))\nAYCA-J3YYH\t330 Bridge Inn Road\tUnder construction\tPOLYGON ((145.069762768022 -37.6015940565486, 145.070215008926 -37.5985534233828, 145.070332919996 -37.5977647800235, 145.069128907717 -37.5976341408266, 145.069079914149 -37.5979535508821, 145.069003832531 -37.5984485258301, 145.068826355118 -37.5996124427276, 145.068898290875 -37.5996205808783, 145.06890619211 -37.5996120433798, 145.068935968401 -37.599610363218, 145.068936180686 -37.5996296969347, 145.068825655312 -37.5996182766501, 145.068539758024 -37.6014811538565, 145.069762768022 -37.6015940565486))\nAYCA-SS6F2\tThe Woods\tReady for service\tPOLYGON ((144.915389999993 -37.5371740000247, 144.913461999993 -37.5370080000246, 144.912036036129 -37.5368680349333, 144.911850457974 -37.5369039072693, 144.911796066208 -37.5369982333806, 144.911778475884 -37.5370936804074, 144.911359023622 -37.5370447978985, 144.911337474472 -37.537161722039, 144.911525999993 -37.5391910000247, 144.912202999993 -37.5390980000247, 144.912214999993 -37.5392460000247, 144.912732999993 -37.5393070000247, 144.912784999993 -37.5390220000247, 144.912782999993 -37.5388760000247, 144.912828999993 -37.5386260000246, 144.912800999993 -37.5386230000247, 144.912853999993 -37.5383370000247, 144.912846999993 -37.5381910000247, 144.912907999993 -37.5378570000247, 144.913266999993 -37.5378980000247, 144.913449999993 -37.5378950000247, 144.913729999993 -37.5379280000247, 144.913829999993 -37.5373860000247, 144.915137999993 -37.5375390000247, 144.915321999993 -37.5375420000246, 144.915679999993 -37.5375840000247, 144.915747999993 -37.5372150000247, 144.915389999993 -37.5371740000247))\nAYCA-1JRAKC\tWaverley Parks Estate Willowvale\tReady for service\tPOLYGON ((153.280826659875 -27.8269472505816, 153.280817045308 -27.8269042714296, 153.280263485443 -27.8268115535641, 153.280160760102 -27.8267201478786, 153.280138436355 -27.826635633807, 153.279929899294 -27.8266247694612, 153.279695160578 -27.8266257946277, 153.279650703991 -27.8269042699946, 153.279643375652 -27.8270023340383, 153.279616115747 -27.8270742428869, 153.279670675757 -27.8274189188521, 153.279630377492 -27.8275378903545, 153.279349 -27.8280119999839, 153.279202 -27.8281179999839, 153.28065 -27.828336999984, 153.28271 -27.8286479999839, 153.282747 -27.828468999984, 153.28272 -27.8284589999839, 153.282713 -27.8284499999839, 153.282688 -27.8284069999839, 153.282652 -27.8283709999839, 153.282646 -27.8283629999839, 153.282645 -27.828353999984, 153.282713 -27.8279789999839, 153.282775 -27.827961999984, 153.282827 -27.8277099999839, 153.282768 -27.8276809999839, 153.282831 -27.8273309999839, 153.282562 -27.8272929999839, 153.282567 -27.8272389999839, 153.282560808928 -27.8271652986089, 153.28251578761 -27.8271449833846, 153.282473060118 -27.8271281852896, 153.281088534612 -27.8269278413108, 153.281069749552 -27.8269235899854, 153.281056689788 -27.8269235075472, 153.281027696783 -27.8269263936972, 153.281002631839 -27.8269434112609, 153.280991374911 -27.8269666828136, 153.280826659875 -27.8269472505816))\nAYCA-T4NHQ\tOld Broadwater Farm\tReady for service\tPOLYGON ((115.310452530096 -33.6679280396088, 115.310571781542 -33.6682128646204, 115.310684124799 -33.6683143132638, 115.310788900278 -33.668615629401, 115.310748491126 -33.6699861337139, 115.311353161318 -33.6700070072146, 115.313176055534 -33.6700414624172, 115.313202701506 -33.670166587499, 115.313494072276 -33.6701430206501, 115.313631286917 -33.6701675747671, 115.31371497254 -33.6701525150044, 115.313738842098 -33.6701220569198, 115.313964606494 -33.6700813917599, 115.314583643946 -33.6697641646088, 115.314670043908 -33.669809089011, 115.314735346657 -33.6697419294119, 115.314694494603 -33.6696490176478, 115.314472046785 -33.6697188964387, 115.314377878295 -33.6695750287591, 115.314223732487 -33.6696231543903, 115.314329052078 -33.6697914755601, 115.313931758338 -33.6699756268741, 115.31336774746 -33.6700570412316, 115.313358183686 -33.6699273940262, 115.313347413703 -33.6695939048188, 115.312593753078 -33.6688061378011, 115.312481504392 -33.6687729996983, 115.312195754061 -33.6685524956205, 115.312102454043 -33.6683364216092, 115.312020290794 -33.6682428771984, 115.312119790023 -33.6680792596723, 115.311997039678 -33.6679388399265, 115.311935525377 -33.6678446124185, 115.312024931047 -33.6676328892013, 115.312100773192 -33.6675898493833, 115.312175162483 -33.6675876009693, 115.312178556195 -33.667572447327, 115.311816159234 -33.6675210710052, 115.311719018533 -33.6674658223587, 115.311685541707 -33.6674733497041, 115.311359219578 -33.6677477342352, 115.31128590247 -33.6676223149153, 115.311091411043 -33.6676756041714, 115.311140012968 -33.6678013670729, 115.311071781476 -33.6678211279594, 115.310983039122 -33.6677833245798, 115.310452530096 -33.6679280396088))\nAYCA-FD0UW\tThe Grove\tReady for service\tPOLYGON ((145.281703115116 -38.0903093305982, 145.280536526576 -38.0901632434364, 145.282495445395 -38.0925989687656, 145.283449547373 -38.0931701188841, 145.28368721846 -38.0912654529304, 145.283566191092 -38.0909012109518, 145.283175822606 -38.0904887650821, 145.281703115116 -38.0903093305982))\n17331693\tHunt Club Village Shopping Centre\tCheck with carrier\tPOLYGON ((145.292970976 -38.100317034, 145.293031072 -38.1004790385, 145.29309696 -38.1005299875, 145.29320208 -38.100564009, 145.293308992 -38.1005949595, 145.293416992 -38.100623042500004, 145.29352608 -38.100648961000005, 145.293635168 -38.1006729925, 145.29386304 -38.100723035, 145.295102176 -38.1008879995, 145.295240032 -38.100867039, 145.29543984 -38.1007189835, 145.295967968 -38.100138028, 145.295980928 -38.1000419945, 145.295970112 -38.1000069925, 145.295880128 -38.099916990000004, 145.296006848 -38.0998130385, 145.296099008 -38.099851019, 145.296171008 -38.0998500385, 145.29626208 -38.0998140375, 145.29642192 -38.099638972, 145.296495008 -38.0992950015, 145.29642192 -38.0991149965, 145.29640608 -38.099077016, 145.295623072 -38.098972972, 145.295130976 -38.098944001, 145.294014976 -38.09887803, 145.293343936 -38.0987890265, 145.293095872 -38.098938969, 145.292973856 -38.0998950305, 145.292970976 -38.100239001, 145.292970976 -38.100317034))\nAYCA-K7DRA\tJohnston Stage 2\tReady for service\tPOLYGON ((131.005726999986 -12.4888519998869, 131.005775999986 -12.4888429998869, 131.005887798131 -12.4891215836773, 131.006109130733 -12.4890379043782, 131.006420595453 -12.48891356054, 131.006428469556 -12.4889367554737, 131.006465434546 -12.4889693841501, 131.006514905565 -12.4888808832457, 131.006545094711 -12.4888580406716, 131.006587323483 -12.488836138562, 131.006613831525 -12.4888257423245, 131.006662997788 -12.4888467853088, 131.006697486861 -12.4888661593201, 131.006743445384 -12.488852452477, 131.006797681922 -12.4889418379632, 131.006777278102 -12.4889644523154, 131.006747773898 -12.4890603122719, 131.006754951296 -12.4891046620145, 131.006840029591 -12.4893200317279, 131.007218845982 -12.4891389572067, 131.007226615624 -12.489089851844, 131.007721126237 -12.4888534742423, 131.007731619753 -12.4888131538067, 131.008114310219 -12.4886302256821, 131.008232411809 -12.4885797494922, 131.008271267779 -12.4885489719145, 131.008199879941 -12.4885102253992, 131.008182367744 -12.4884650194129, 131.008174397832 -12.4884186654435, 131.008176883215 -12.4883344289922, 131.008194645064 -12.4882839100477, 131.008458307147 -12.4881578778239, 131.008382332031 -12.4880060762836, 131.008156565855 -12.4881212052149, 131.008107569794 -12.4881241002899, 131.008033748716 -12.4880990403534, 131.007993140619 -12.4880467324235, 131.007805567444 -12.4876901178326, 131.007776030009 -12.4876412064331, 131.007738749673 -12.4875895111514, 131.00767459445 -12.4875170578457, 131.007083956665 -12.486910788178, 131.007032854083 -12.486878364715, 131.006961539531 -12.4868536991284, 131.006900992691 -12.4868474549363, 131.005832199528 -12.4869840102889, 131.005738404021 -12.4869591564785, 131.00566552411 -12.4869040233681, 131.005526887173 -12.486921736042, 131.005470778709 -12.486993349107, 131.005386569989 -12.4870409452915, 131.005120743194 -12.487074907786, 131.00502995867 -12.4871058124189, 131.004933684609 -12.4871925224009, 131.004894112087 -12.4872794829395, 131.004819091689 -12.4876148482752, 131.004771358413 -12.4878273622361, 131.004769974167 -12.4878941893945, 131.004785610978 -12.4879805876029, 131.004807115422 -12.4880241080047, 131.004839999986 -12.4880079998869, 131.005164999986 -12.4883209998869, 131.005419999986 -12.4885939998869, 131.005574999986 -12.4887949998869, 131.005647999986 -12.4888349998868, 131.005726999986 -12.4888519998869), (131.00690499391 -12.4878039566524, 131.007163213719 -12.4876224573399, 131.007291165273 -12.4877960587948, 131.007018798943 -12.4879676154285, 131.00690499391 -12.4878039566524))\nAYCA-1RC93R\tSubdivision of Lot 3333, Katherine East\tContracted\tPOLYGON ((132.297197632446 -14.466671523834, 132.297965827801 -14.4667953733559, 132.297872940023 -14.4673589698848, 132.297871831937 -14.4673658315535, 132.298138719674 -14.467416283194, 132.298136571972 -14.4674284898166, 132.298291893304 -14.4674543910897, 132.299726473584 -14.4678163149206, 132.300298079527 -14.465684003031, 132.298104628708 -14.4651245683081, 132.297710191186 -14.4653693595946, 132.29762053778 -14.4654228420098, 132.297599000094 -14.4653949998643, 132.297435391613 -14.4653300222552, 132.297197632446 -14.466671523834))\n17315991\tSteele Road Logan Village\tCheck with carrier\tPOLYGON ((153.115872128 -27.7712690325, 153.11044512 -27.7704389745, 153.110436128 -27.770481987, 153.110333152 -27.771017044, 153.11027808 -27.771300982, 153.110184832 -27.7717809645, 153.110491936 -27.771825956500003, 153.112181056 -27.772074004500002, 153.11369088 -27.7722950425, 153.114644896 -27.7712679595, 153.115836128 -27.771452016, 153.115872128 -27.7712690325))\n10545\tMurray-Murray River Country Estate\tReady for service\tPOLYGON ((115.85558697581291 -32.6095100377231, 115.85580557584763 -32.609552401341638, 115.85581094026566 -32.609539409834092, 115.8560261875391 -32.609584597678335, 115.85602249950171 -32.609595894635845, 115.85610598325729 -32.609613404917141, 115.85623472929001 -32.609639952756481, 115.85625819861889 -32.609582903134609, 115.8563145250082 -32.609590246157275, 115.85634235292673 -32.609522464386615, 115.85640085861087 -32.609461460749166, 115.85647813975811 -32.609411754050896, 115.85656028240919 -32.609387183115984, 115.85664913058281 -32.609379557652069, 115.85674703121185 -32.609397350400208, 115.8568898588419 -32.609469368630442, 115.85648953914642 -32.610927795936924, 115.85655592381954 -32.611018170201547, 115.8574092015624 -32.611011956973776, 115.85760315880179 -32.611006026165036, 115.85822559893131 -32.610959426939921, 115.85825057700276 -32.611161356740318, 115.85826348513365 -32.61116333367319, 115.85826021619141 -32.611296211703092, 115.85827572271228 -32.61141779280959, 115.85830070078373 -32.611573969923704, 115.85844688117504 -32.611576794100479, 115.85845291614532 -32.612092487285949, 115.85487619042397 -32.612113386070945, 115.85558697581291 -32.60950947287472, 115.85558697581291 -32.6095100377231))\n10551\tMurray-Murray River Country Estate\tReady for service\tPOLYGON ((115.85722647607327 -32.603443925540866, 115.85807874798775 -32.6037755133831, 115.85803315043449 -32.603890184872547, 115.85795000195503 -32.603922948128279, 115.85785545408726 -32.604115008351926, 115.8588032796979 -32.604499410003839, 115.85883638821542 -32.6045127552924, 115.8588426746428 -32.604504635143506, 115.85899581201375 -32.604567689845531, 115.85899258498102 -32.604573797605454, 115.85919320583344 -32.604655034303434, 115.85956335067749 -32.604805009552287, 115.85978128015995 -32.604894542679084, 115.859879180789 -32.604745414897778, 115.85985973477364 -32.604670286035123, 115.8600240200758 -32.604546012590156, 115.860241279006 -32.604697965097124, 115.86013399064541 -32.604802467601019, 115.86000256240368 -32.6047889105263, 115.85987851023674 -32.6049860527856, 115.85980106145144 -32.60514492427626, 115.85974372923374 -32.605303795485128, 115.85968740284443 -32.605635658879024, 115.85977256298065 -32.605718695144432, 115.85973300039768 -32.605846921062906, 115.85968572646379 -32.605835906068315, 115.85958497598767 -32.605823055239561, 115.85952655412257 -32.605813805466077, 115.85945338010788 -32.6058130287675, 115.85947751998901 -32.605678589202732, 115.85954792797565 -32.6056311398964, 115.85958749055862 -32.605395022736381, 115.85937023162842 -32.605410556779191, 115.85915833711624 -32.605421006951936, 115.85910737514496 -32.605426514474914, 115.8588995039463 -32.605465914437133, 115.85857294499874 -32.60556730924224, 115.85838954895735 -32.605683673055481, 115.85823817178607 -32.605785914921945, 115.85808612406254 -32.605914705615234, 115.85798185318708 -32.606027397319977, 115.85790323093534 -32.606133451664476, 115.85779242217541 -32.606315198298418, 115.85770457983017 -32.606535496754233, 115.85716679692268 -32.60642082865126, 115.85708230733871 -32.606641126847258, 115.85695557296276 -32.606601021318582, 115.85700184106827 -32.606494826310865, 115.85642114281654 -32.606318587509527, 115.85662432014942 -32.60557578234058, 115.8567875996232 -32.604977297193031, 115.85689790546894 -32.604571997052005, 115.85709974169731 -32.6038303071673, 115.85769720375538 -32.603948932770862, 115.85772804915905 -32.603853467416528, 115.85768345743418 -32.603778337805778, 115.85766786709428 -32.603774101171716, 115.85766904056072 -32.603762521037588, 115.85753191262484 -32.603731734820087, 115.85715137422085 -32.603611131829389, 115.85722580552101 -32.60344279576757, 115.85722647607327 -32.603443925540866))\nAYCA-18LJI2\tSpring Farm\tContracted\tPOLYGON ((150.737881999989 -34.0714520000158, 150.737077999989 -34.0712010000158, 150.736372999989 -34.0708700000158, 150.735555999989 -34.0720450000158, 150.735717999989 -34.0723810000157, 150.738183999989 -34.0730440000158, 150.739184999989 -34.0725450000158, 150.739618999989 -34.0716330000158, 150.739547999989 -34.0716100000159, 150.738909999989 -34.0714380000158, 150.738040999989 -34.0712360000158, 150.737881999989 -34.0714520000158))\nAYCA-1F0VFN\tFranklin Place\tReady for service\tPOLYGON ((146.545633 -38.1820110000299, 146.545905 -38.1833590000299, 146.547804 -38.1836020000299, 146.547982 -38.1827250000299, 146.548244 -38.1827580000299, 146.548126 -38.1822140000299, 146.54756 -38.1821410000299, 146.54735 -38.1821470000299, 146.5468 -38.1820760000299, 146.546884 -38.1816810000299, 146.546975 -38.1815180000299, 146.546743 -38.1814850000299, 146.546752 -38.1812110000299, 146.546603 -38.1812050000299, 146.546496 -38.1806270000299, 146.546445 -38.1802040000299, 146.545277 -38.1802220000299, 146.545633 -38.1820110000299))\n10297\tDawesville-Florida Beach\tReady for service\tPOLYGON ((115.62710702419281 -32.622768271720432, 115.62677443027496 -32.622621432766209, 115.62682271003723 -32.622573992437211, 115.62666714191437 -32.622476852637462, 115.62570422887802 -32.622472334504671, 115.62568545341492 -32.622422635028975, 115.6256827712059 -32.622052147158769, 115.62565863132477 -32.621848829992992, 115.62535017728806 -32.621851089075143, 115.625519156456 -32.6201436655789, 115.62437921762466 -32.620138688443525, 115.6243684887886 -32.620165797943521, 115.62442749738693 -32.6207960915044, 115.62442749738693 -32.620951969872635, 115.62442481517792 -32.621082997856227, 115.62437921762466 -32.621306648626565, 115.62428802251816 -32.621842052746175, 115.6243309378624 -32.622013742840608, 115.6244033575058 -32.622133473895779, 115.62432020902634 -32.622786344190459, 115.62436044216156 -32.622876706485847, 115.62441408634186 -32.622926405709457, 115.6247091293335 -32.62316812426706, 115.62479227781296 -32.623272040455696, 115.62524557113647 -32.6238074328199, 115.625339448452 -32.623834541208865, 115.62688171863556 -32.62344372780737, 115.62690585851669 -32.623403065043313, 115.62680393457413 -32.623100352774706, 115.62710702419281 -32.622768271720432))\nAYCA-1FZM3S\tWaterlink Estate\tUnder construction\tPOLYGON ((142.211344 -36.7205260000284, 142.210918 -36.7208840000284, 142.210483 -36.7211660000285, 142.211278 -36.7216290000284, 142.212572 -36.7218040000285, 142.212656 -36.7218260000284, 142.213053179878 -36.7205832371739, 142.213181943506 -36.7204588699004, 142.213196166768 -36.7204684134882, 142.213467999328 -36.720205859513, 142.213083 -36.7199460000285, 142.213121 -36.7198990000284, 142.212605 -36.7196290000284, 142.213146 -36.7189590000284, 142.21278 -36.7187670000284, 142.21282 -36.7187180000284, 142.211822 -36.7181950000284, 142.211437 -36.7191340000284, 142.21169 -36.7199660000285, 142.211613 -36.7201830000284, 142.211344 -36.7205260000284))\n17327844\t85 Brooking Road Gisborne\tCheck with carrier\tPOLYGON ((144.601026848 -37.5056739945, 144.600280928 -37.510127999, 144.601196032 -37.5102479715, 144.601391872 -37.509846022, 144.60165792 -37.508358955, 144.601764832 -37.50817599, 144.601941952 -37.507125967, 144.60206688 -37.507112018, 144.602147168 -37.506696027000004, 144.602298016 -37.5067240175, 144.60237792 -37.506314964000005, 144.60249312 -37.506174031, 144.602511136 -37.505871001, 144.601026848 -37.5056739945))\nAYCA-JNMSX\tYanchep Golf Estate\tReady for service\tPOLYGON ((115.655937330626 -31.5470222925299, 115.657340366818 -31.5483988943298, 115.657835689495 -31.5480556207531, 115.657972586348 -31.5482634172932, 115.65806532969 -31.5483199168015, 115.658132134357 -31.5483211895813, 115.658282241014 -31.5483478057231, 115.658278971056 -31.5483239088873, 115.658138350193 -31.5482958316716, 115.658208202572 -31.5480108632379, 115.657665970049 -31.5473508265095, 115.657907877546 -31.5472057435943, 115.658088848539 -31.5471924757426, 115.658369861604 -31.5470785111973, 115.658599701288 -31.5474550651518, 115.658828625009 -31.5473643855708, 115.658813114049 -31.5473253167988, 115.658943118947 -31.54729661168, 115.659013219419 -31.5473913625843, 115.659045969875 -31.5474072424935, 115.659076486511 -31.5474051942652, 115.65931392866 -31.5473305694547, 115.659258844235 -31.5471939194185, 115.659292753439 -31.5471892905038, 115.658784769804 -31.5458672356389, 115.658710019999 -31.5457720200098, 115.658524979999 -31.5453490200098, 115.658182733269 -31.5454463696583, 115.658117305843 -31.5454935567744, 115.657784240379 -31.5456017628888, 115.657851167651 -31.5457528513267, 115.657723855129 -31.5457885267478, 115.656864119126 -31.5462728634503, 115.657016472096 -31.5464911677673, 115.656738607268 -31.5466471244886, 115.656689289925 -31.5465930018142, 115.655937330626 -31.5470222925299))\n10111\tBaldivis-Tuart Ridge\tReady for service\tPOLYGON ((115.81529080867767 -32.345066635895328, 115.81418573856354 -32.3450847642205, 115.81418573856354 -32.345030379234089, 115.8136922121048 -32.345062103813461, 115.81357955932617 -32.342288427131805, 115.81385850906372 -32.342292959352612, 115.81392824649811 -32.342229508240841, 115.81409990787506 -32.342224976016858, 115.81416428089142 -32.342279362689538, 115.81418573856354 -32.342451586937358, 115.81491529941559 -32.342460651362359, 115.81527471542358 -32.342501441263693, 115.81535518169403 -32.342365474854425, 115.81543564796448 -32.342324684891793, 115.81561267375946 -32.342333749329526, 115.81566095352173 -32.34241986144265, 115.81592381000519 -32.3424470547245, 115.81558048725128 -32.34322205982189, 115.81538736820221 -32.3436208902674, 115.81538736820221 -32.343933608364395, 115.81533908843994 -32.344065040285457, 115.81536591053009 -32.344640619208185, 115.81528544425964 -32.344640619208185, 115.81529080867767 -32.345066635895328))\nAYCA-KEB94\tThe Village at Wellard\tReady for service\tPOLYGON ((115.822316290807 -32.2718680080145, 115.822620074658 -32.2716261818825, 115.822131590111 -32.271237747168, 115.821743660471 -32.2709755585426, 115.82144958371 -32.2707696038097, 115.821351801231 -32.2708304257572, 115.821368161855 -32.2708408619401, 115.821369041955 -32.2708634371997, 115.82115927086 -32.2710166723579, 115.821076806899 -32.2710554945409, 115.8210732865 -32.2710469869097, 115.821063270126 -32.2710499764552, 115.821066804495 -32.2710584840871, 115.820984815506 -32.2710830151251, 115.820888004523 -32.2711027964162, 115.820789768618 -32.2711139443467, 115.820691406994 -32.2711152435415, 115.820632118995 -32.2711096416358, 115.82061957408 -32.2710911455699, 115.820646 -32.2710380000129, 115.820319415831 -32.270944340565, 115.819808059901 -32.2717904557266, 115.819638884111 -32.2717167632627, 115.819531887286 -32.2718298620971, 115.819376665512 -32.2720303025097, 115.81949077307 -32.2721029601605, 115.819742477759 -32.2722310844054, 115.819779139897 -32.2723107826322, 115.819605245326 -32.2728011393163, 115.819567645093 -32.2728148180665, 115.819533356431 -32.2728000570899, 115.819387288742 -32.2727371759918, 115.819342077726 -32.2728201121517, 115.819333540853 -32.2728657169425, 115.819467482571 -32.2729232198524, 115.819680378053 -32.2729972167859, 115.819948827847 -32.273096544009, 115.820272137779 -32.2731302025808, 115.820495378465 -32.273155650237, 115.820930043638 -32.2731845764073, 115.8209638707 -32.2731242112919, 115.821117707132 -32.2730726018029, 115.821860971305 -32.2729680036094, 115.821908638838 -32.2729916300993, 115.822039599468 -32.272963393806, 115.821957563144 -32.2727268222244, 115.82182813391 -32.2723192845942, 115.822250000842 -32.2721438527537, 115.822152074238 -32.271981888108, 115.822316290807 -32.2718680080145))\nAYCA-13EJEY\tMaddington Rd,Alcock St- Maddington\tUnder construction\tPOLYGON ((115.99974 -32.0427570000128, 115.999824653398 -32.0430416905432, 116.000063847278 -32.042985835566, 116.000087977028 -32.043065562322, 116.000159919156 -32.0433546094642, 116.000328158917 -32.0433309338596, 116.000329 -32.0433380000128, 116.000399953337 -32.0435949369058, 116.000436 -32.0437430000127, 116.000399 -32.0437500000127, 116.000494889477 -32.0439840437674, 116.000844457004 -32.044277018314, 116.000855159724 -32.0442823060288, 116.00091324 -32.0442333300122, 116.001518387372 -32.0447445193451, 116.003393989762 -32.0431356987946, 116.002349404594 -32.0422470983875, 115.99974 -32.0427570000128))\nAYCA-1BUV12\tHighgrove Estate\tContracted\tPOLYGON ((145.329204999998 -38.1132090000285, 145.328820999998 -38.1131590000285, 145.328671999998 -38.1131590000286, 145.328671999998 -38.1131240000285, 145.328463999998 -38.1130970000285, 145.328126999998 -38.1146960000285, 145.328502999998 -38.1147450000286, 145.328541999998 -38.1147230000285, 145.329201999998 -38.1148100000285, 145.329230999998 -38.1148410000286, 145.329432999998 -38.1148680000286, 145.329445999998 -38.1148050000286, 145.331763999998 -38.1151110000286, 145.331823999998 -38.1148260000285, 145.331969999998 -38.1148450000286, 145.331997999998 -38.1148770000286, 145.332199999998 -38.1149030000285, 145.332310999998 -38.1143800000286, 145.332349999998 -38.1143580000286, 145.332383999998 -38.1141980000286, 145.331698999998 -38.1141080000286, 145.331664999998 -38.1140760000285, 145.331665999998 -38.1137740000286, 145.329663999998 -38.1137730000286, 145.329715999998 -38.1135260000286, 145.329513999998 -38.1134990000286, 145.329185999998 -38.1134990000285, 145.329186999998 -38.1133060000285, 145.329204999998 -38.1132090000285))\nAYCA-TXGI1\tPlenty River Views\tReady for service\tPOLYGON ((145.109534845624 -37.4982092374781, 145.110036321648 -37.4982100159115, 145.110152841772 -37.4982098543433, 145.110147469408 -37.4982770193794, 145.110201956962 -37.4982771465493, 145.110200075894 -37.4985841812038, 145.110538587979 -37.4985849192877, 145.112281976876 -37.4987990280562, 145.112299567348 -37.4991178872748, 145.112409549472 -37.499131309315, 145.1123809598 -37.4992787669778, 145.11258577826 -37.4992923289443, 145.112670805949 -37.4992937794522, 145.112799965442 -37.4992616368446, 145.113062210098 -37.4991523847768, 145.113098348725 -37.4991703119254, 145.113112717923 -37.4991609878283, 145.112880134958 -37.4989332207875, 145.112855865217 -37.4987228216992, 145.112832467304 -37.4982491051133, 145.112831024306 -37.4982195976362, 145.113091977166 -37.4977442846628, 145.113102599092 -37.4975416491851, 145.109565416267 -37.4971137492178, 145.109570993524 -37.4973138776862, 145.109534845624 -37.4982092374781))\nAYCA-LTU0Z\tThe Dunes\tReady for service\tPOLYGON ((144.330300660642 -38.305781828889, 144.330124621115 -38.3056225129328, 144.329501528274 -38.3055545736162, 144.329478889779 -38.3056593741094, 144.329508255401 -38.3056626618096, 144.329456074683 -38.3059329219072, 144.329297876939 -38.3059139569955, 144.329246301946 -38.3061810745577, 144.329137747768 -38.3063138210947, 144.329157852093 -38.3063162312533, 144.329054699904 -38.3068504661159, 144.329034595438 -38.3068480559344, 144.32903107496 -38.3069934035643, 144.329108751128 -38.3070027061838, 144.329057174438 -38.3072698235648, 144.329102374597 -38.3072752422545, 144.329050765224 -38.3075425274456, 144.329017534841 -38.3075385455483, 144.328989211971 -38.3076809085831, 144.329106105906 -38.3076949220493, 144.329054528564 -38.3079620393827, 144.327468765094 -38.3077719244952, 144.327470177719 -38.3077537898272, 144.32729261744 -38.3077261500525, 144.327288746442 -38.3077461949252, 144.326113498294 -38.3076052798483, 144.326118745159 -38.307576550665, 144.32596035532 -38.3075585907408, 144.325905368764 -38.307859664488, 144.325719837597 -38.3078905402495, 144.325789871562 -38.3081499735742, 144.32575765543 -38.3083176528272, 144.329696378431 -38.3087891946431, 144.329747947842 -38.3085220762342, 144.329782331444 -38.3083439977764, 144.329635450901 -38.3083263885831, 144.329751444592 -38.3077342619201, 144.329781701967 -38.307579801678, 144.329788851435 -38.3074894120599, 144.329788587281 -38.3074042642243, 144.329778451124 -38.3072961162315, 144.329713068171 -38.3068947297659, 144.329709845255 -38.3068168873497, 144.329732248098 -38.3066855997462, 144.329787813013 -38.3065625009134, 144.330301094377 -38.3057822214183, 144.330300660642 -38.305781828889))\nAYCA-1ZAGER\tBunnings Warehouse Glendale\tContracted\tPOLYGON ((151.627208999998 -32.9423760000163, 151.626414379905 -32.941900587054, 151.624604013296 -32.942643669792, 151.624585487646 -32.9427536048266, 151.624505799999 -32.9428614400166, 151.623919999999 -32.9450260000162, 151.624367999998 -32.9450590000163, 151.624797999998 -32.9448180000164, 151.627208999998 -32.9423760000163))\nAYCA-J3RSC\tNabilla Riverlinks\tReady for service\tPOLYGON ((148.959075130306 -21.155124074927, 148.958918523618 -21.1565168291228, 148.959340037465 -21.1565623472393, 148.959535929903 -21.1565469938344, 148.959935039166 -21.1565930983515, 148.959939243758 -21.1565282910277, 148.96191070372 -21.1567193800611, 148.962137531719 -21.156742547271, 148.962181922055 -21.1563600933911, 148.962233786776 -21.1562200431098, 148.962278385136 -21.1558521577348, 148.963364459394 -21.1559662263914, 148.963411902033 -21.1555917978519, 148.959707579565 -21.1552172965572, 148.959476800038 -21.1551628214452, 148.959075130306 -21.155124074927))\nAYCA-1MF8QB\tTindal Avenue, Beeliar\tUnder construction\tPOLYGON ((115.808323 -32.1345160000132, 115.8083 -32.1360540000132, 115.808936 -32.1360500000132, 115.808953 -32.1359260000131, 115.809095 -32.1358790000132, 115.809731 -32.1358790000131, 115.809868 -32.1359080000132, 115.80987 -32.1360990000131, 115.80995 -32.1361640000131, 115.810061 -32.1361660000132, 115.810096 -32.1361660000132, 115.810382 -32.1361640000131, 115.810486 -32.1361500000132, 115.810521 -32.1361450000131, 115.810587 -32.1360680000132, 115.810711 -32.1359460000131, 115.811003 -32.1359030000132, 115.811003 -32.1357760000132, 115.811166212439 -32.1357759911344, 115.811162797541 -32.1343599632661, 115.808342 -32.1343600000131, 115.808341 -32.1343880000132, 115.808322 -32.1343880000132, 115.808323 -32.1344860000131, 115.808323 -32.1345160000132))\n10663\tTapping The Kestrels\tReady for service\tPOLYGON ((115.79255104064941 -31.722027374956312, 115.79211115837097 -31.721169522773415, 115.791574716568 -31.720165643116353, 115.79317331314087 -31.719490299775504, 115.79326987266541 -31.719517678655283, 115.79358100891113 -31.719389910480469, 115.79365611076355 -31.719545057526979, 115.79350590705872 -31.719700204313817, 115.7938814163208 -31.720448555756285, 115.79365611076355 -31.720548943904841, 115.79377412796021 -31.720813603048075, 115.79492211341858 -31.720840981537012, 115.79492211341858 -31.721634954198308, 115.79334497451782 -31.721662332444634, 115.79255104064941 -31.722027374956312))\n154\tWater Edge\tReady for service\tPOLYGON ((145.32787449389329 -38.070486195965572, 145.3273058655825 -38.07340011342886, 145.32902247935485 -38.073450789227323, 145.32940871744933 -38.071457514684667, 145.32900102168392 -38.070773369799539, 145.32863624126031 -38.070511534878605, 145.32787449389329 -38.070486195965572))\nAYCA-JU3C3\tZuccoli\tReady for service\tPOLYGON ((131.007866215672 -12.5038714941515, 131.007916152222 -12.5041492536344, 131.007983188525 -12.5040070844803, 131.008151463109 -12.5038993822807, 131.008399781663 -12.5038483515585, 131.008867850134 -12.5038482305362, 131.009171428951 -12.5037799943424, 131.009451911398 -12.5036470312843, 131.009695204072 -12.5034560224142, 131.010041797849 -12.5030279476868, 131.010158868792 -12.5029027951424, 131.010292845156 -12.5027952504833, 131.010349441427 -12.5028447202217, 131.010441510985 -12.5027905297825, 131.010618919349 -12.5029130775801, 131.010859291588 -12.5027831301052, 131.010967103322 -12.5027327594304, 131.010970221661 -12.5026724951036, 131.011087727946 -12.5026057393334, 131.011059000238 -12.5025589998505, 131.011088000238 -12.5024889998505, 131.011238500254 -12.5024414999012, 131.011187643448 -12.5022903282973, 131.010681463859 -12.5024464100788, 131.01060752149 -12.5024128160764, 131.010503731199 -12.5021670652956, 131.010827413969 -12.5020350873567, 131.010733340176 -12.5018059002426, 131.009962744669 -12.5020809024783, 131.010180657961 -12.5026474707341, 131.009646030105 -12.5032082454168, 131.009133694444 -12.5020790750633, 131.008808205838 -12.5021830701917, 131.008743764846 -12.5020296789048, 131.008684117843 -12.501909029935, 131.008236839926 -12.5016755897844, 131.008216470088 -12.5017152494069, 131.008076281029 -12.5017771074502, 131.006606013492 -12.5021740006883, 131.006723965907 -12.5025953453682, 131.006886879939 -12.5030039021164, 131.007132890841 -12.5033701171805, 131.007528707412 -12.5038336720477, 131.007866215672 -12.5038714941515))\n17117399\tKooringa Valley - stage 1\tCheck with carrier\tPOLYGON ((151.901484128 -27.5173340365, 151.901533088 -27.517492988500003, 151.901425088 -27.517887982, 151.901425088 -27.518437987000002, 151.901260928 -27.5192289915, 151.900940896 -27.519281994, 151.900711936 -27.519296035500002, 151.90030512 -27.519224033500002, 151.900277056 -27.519426997, 151.900679872 -27.5194839585, 151.900774912 -27.519494041, 151.90078896 -27.5195099695, 151.900792928 -27.519535980500002, 151.90090992 -27.5195349815, 151.900911008 -27.519508989000002, 151.901250112 -27.519436987000002, 151.901286112 -27.519596013, 151.901448832 -27.519553981, 151.901607968 -27.5195259905, 151.901835136 -27.519498000000002, 151.90206192 -27.519498000000002, 151.902387008 -27.519508989000002, 151.902613088 -27.519549023, 151.90266096 -27.519342026500002, 151.902836992 -27.519240961, 151.903023136 -27.519265973, 151.90313616 -27.519104967500002, 151.903181888 -27.518922983, 151.903268992 -27.5186610045, 151.903325152 -27.518460039, 151.903376992 -27.518293983, 151.90342992 -27.5181689785, 151.90349616 -27.518022995000003, 151.903575008 -27.5178570315, 151.90364016 -27.5177269765, 151.903688032 -27.517659026, 151.903748896 -27.517474988, 151.90378704 -27.517299034500002, 151.903870912 -27.517133977500002, 151.90347312 -27.5170059945, 151.903157056 -27.5168809715, 151.90272 -27.5167670485, 151.902181088 -27.516729956000002, 151.901602912 -27.5166829845, 151.901538112 -27.517043975, 151.901484128 -27.5173340365))\nAYCA-1N5EWQ\tThe Rise\tContracted\tPOLYGON ((146.561114 -38.1779480000299, 146.561467 -38.1780050000299, 146.561409 -38.1782710000299, 146.562791 -38.1784950000299, 146.562841 -38.1782640000299, 146.56288 -38.1780860000299, 146.563036 -38.17737500003, 146.563086 -38.1771530000299, 146.563349 -38.1759450000299, 146.561558 -38.17565500003, 146.561379 -38.1756260000299, 146.561155 -38.1755900000299, 146.561078 -38.1759430000299, 146.561047 -38.1760880000299, 146.560891 -38.1767990000299, 146.560842 -38.1770210000299, 146.560656 -38.1778740000299, 146.560823 -38.1779010000299, 146.56087 -38.1779540000299, 146.560863 -38.1779840000299, 146.561043 -38.1780090000299, 146.561049 -38.1779830000299, 146.561114 -38.1779480000299))\nAYAA-FI1F0\tCliftleigh Residential Estate\tReady for service\tPOLYGON ((151.514588914151 -32.7895661017861, 151.514543960109 -32.7894455161482, 151.514256506648 -32.7893193614714, 151.514218629698 -32.7893809377125, 151.512232743618 -32.7899091165931, 151.512353486555 -32.7903311529261, 151.51250887192 -32.7902895172971, 151.512701272804 -32.7908056459873, 151.512544976649 -32.7908478434182, 151.512626985575 -32.7909672814502, 151.512817697928 -32.7914787711759, 151.513213900161 -32.7913676609727, 151.513314072455 -32.7916197575832, 151.513289281457 -32.7917125599966, 151.513501417917 -32.7917198914147, 151.513518200593 -32.7917511939006, 151.513556690954 -32.7917429228395, 151.513637961545 -32.7919672105073, 151.514126461035 -32.7918377003828, 151.514146563037 -32.7918323544081, 151.514995246068 -32.7904504153329, 151.515252156465 -32.7905631583599, 151.515523143557 -32.7905333936921, 151.515807092971 -32.7906586008612, 151.516102736583 -32.7901779629011, 151.515819425717 -32.7900517199147, 151.515948612372 -32.789841695947, 151.515778072147 -32.789766853865, 151.515734881064 -32.7897783884741, 151.515060298342 -32.789482341694, 151.515046642861 -32.7894458595006, 151.515075326227 -32.7893992283587, 151.514890574904 -32.7893181475107, 151.514743712536 -32.7895249285982, 151.514588914151 -32.7895661017861))\nAYCA-R8A12\tCormiston Upper\tContracted\tPOLYGON ((147.080731 -41.4003750000277, 147.080488 -41.4003820000239, 147.080373 -41.4004750000239, 147.080297 -41.4005410000239, 147.080067 -41.400681000024, 147.07990044 -41.4007619400276, 147.07968516 -41.4009045000275, 147.079623 -41.4009180000239, 147.079519 -41.4009240000239, 147.079291330219 -41.4009021621176, 147.07897848 -41.4009063000276, 147.07875852 -41.4009326700276, 147.078663 -41.4009730000239, 147.078213 -41.401234000024, 147.078149 -41.4012480000239, 147.07805544 -41.4012709800276, 147.077929590225 -41.4012431311855, 147.078485 -41.4017650000277, 147.079867 -41.4025570000277, 147.08070288 -41.4030353400276, 147.08168964 -41.4021509100275, 147.0813336 -41.4019051200276, 147.08147616 -41.4017766000275, 147.08108412 -41.4014410800276, 147.081623 -41.4012170000277, 147.08164608 -41.4012072600277, 147.08168676 -41.4011987100275, 147.08172816 -41.4012049200275, 147.08176164 -41.4012246300275, 147.08177928 -41.4012535200275, 147.08176776 -41.4012107700276, 147.0817314 -41.4011521800275, 147.081758 -41.4009300000277, 147.081656 -41.4010180000277, 147.081386 -41.4011300000277, 147.081185 -41.4007440000277, 147.081034 -41.4004990000277, 147.080731 -41.4003750000277))\nAYCA-1J45BM\tCarinity Aged Care - Fairfield Waters\tUnder construction\tPOLYGON ((146.807784719803 -19.3082003990128, 146.808006839803 -19.3080384890131, 146.808203759803 -19.3079225690132, 146.80838844 -19.3078278899104, 146.808579599803 -19.3077458090135, 146.80877652 -19.3076765999104, 146.80897776 -19.3076207099104, 146.80918296 -19.3075784099103, 146.809390679803 -19.3075499690143, 146.8096002 -19.3075353899104, 146.80981008 -19.3075348499103, 146.80996704 -19.3075449299104, 146.810643119803 -19.3076111690155, 146.81083788 -19.3076119799104, 146.81102904 -19.3075767899103, 146.81120904 -19.3075069499104, 146.81136528 -19.3074090299104, 146.81150856 -19.3072743899104, 146.81161764 -19.3071203099103, 146.811693239804 -19.3069488590164, 146.81173104 -19.3067729999103, 146.811619799804 -19.3067621090164, 146.811591359804 -19.3070228390164, 146.8106154 -19.3069271699104, 146.8106496 -19.3066125299103, 146.81044116 -19.3065920999104, 146.810406959804 -19.3069067390153, 146.809791359804 -19.3068464390147, 146.809825559804 -19.3065317990147, 146.80962684 -19.3065123599104, 146.80959264 -19.3068269999103, 146.80727928 -19.3066002899104, 146.80731348 -19.3062856499104, 146.80659996 -19.3062156299104, 146.80656576 -19.3065288299104, 146.806072559803 -19.3069136690113, 146.80711512 -19.3081186799104, 146.80746972 -19.3078364399105, 146.807784719803 -19.3082003990128))\n10700\tWannanup-Port Bouvard North\tReady for service\tPOLYGON ((115.65177261829376 -32.592785999107569, 115.64907431602478 -32.592785999107569, 115.64913332462311 -32.593075255004933, 115.64883828163147 -32.593364509968644, 115.64835011959076 -32.593274117892769, 115.64777612686157 -32.594101201987286, 115.64790219068527 -32.59413689947678, 115.64982533454895 -32.595222046938495, 115.65177261829376 -32.592785999107569))\n10155\tBanksia Grove\tReady for service\tPOLYGON ((115.80467998981476 -31.696228093465429, 115.80216944217682 -31.696218964880938, 115.80220699310303 -31.693895710930516, 115.80305993556976 -31.69387745330171, 115.80305457115173 -31.694233476415231, 115.80469071865082 -31.69422434763451, 115.80467998981476 -31.696228093465429))\nAYCA-18GJLW\tAurora Estate\tContracted\tPOLYGON ((145.001675999995 -37.6146450000259, 145.002395999995 -37.6149920000259, 145.002468999995 -37.6148820000259, 145.003605999995 -37.6154760000258, 145.003829999995 -37.6151970000259, 145.004035999995 -37.6152020000259, 145.004447999995 -37.6146430000259, 145.004520999995 -37.6146350000259, 145.004945999995 -37.6147280000259, 145.004963999995 -37.6146210000259, 145.005051999995 -37.6146410000259, 145.005246999995 -37.6142440000259, 145.005227999995 -37.6141990000259, 145.005424999995 -37.6140190000259, 145.005344999995 -37.6140350000259, 145.003835999995 -37.6133170000258, 145.003299999995 -37.6131730000258, 145.002221999995 -37.6130460000259, 145.002148999995 -37.6135130000259, 145.001769999995 -37.6145130000259, 145.001675999995 -37.6146450000259))\n17252433\tChurchfield\tCheck with carrier\tPOLYGON ((150.785196832 -34.1031509975, 150.786352096 -34.104445017, 150.78763296 -34.1038839675, 150.78798288 -34.103730954, 150.789737152 -34.103261979, 150.790727168 -34.103396973500004, 150.790938848 -34.102176029, 150.791208128 -34.1019320325, 150.79119984 -34.1019019885, 150.791187968 -34.1018399765, 150.791180032 -34.1017790375, 150.791177152 -34.1017479945, 150.79117392 -34.1016859825, 150.79117392 -34.1016550135, 150.79118112 -34.101601012, 150.791182912 -34.101531008, 150.79102416 -34.1016910145, 150.79073616 -34.1017070355, 150.790637152 -34.101728014500004, 150.790552928 -34.1017669755, 150.79048416 -34.1018260275, 150.790447072 -34.1018849685, 150.79034592 -34.101941042, 150.790092128 -34.101912959, 150.78999888 -34.102428036, 150.790068 -34.102539998000005, 150.78940416 -34.102836997000004, 150.78923712 -34.102583991, 150.787005856 -34.1033339625, 150.78638016 -34.1026389915, 150.786352096 -34.102636013, 150.785739008 -34.1030109525, 150.785645056 -34.1030330045, 150.78562416 -34.1030600145, 150.785605088 -34.103096996, 150.785424 -34.1030140235, 150.785196832 -34.1031509975), (150.790938848 -34.102176029, 150.79083984 -34.1027430355, 150.790455008 -34.102696045500004, 150.790508992 -34.102382045, 150.790938848 -34.102176029))\n10374\tEglington-Allara\tReady for service\tPOLYGON ((115.66079020500183 -31.577557425927434, 115.66150903701782 -31.576931317386926, 115.66155731678009 -31.575624245128754, 115.66138029098511 -31.575592253619931, 115.66157877445221 -31.574810743351804, 115.66097259521484 -31.574792462331445, 115.66097259521484 -31.574646214039479, 115.66079556941986 -31.574655354564463, 115.66080093383789 -31.574801602842079, 115.66081166267395 -31.574970702127068, 115.65953493118286 -31.574993553358265, 115.65942764282227 -31.575002693849189, 115.65918624401093 -31.574998123603834, 115.65918624401093 -31.575331750925177, 115.65903604030609 -31.575336321154168, 115.65903604030609 -31.575436866135231, 115.65908968448639 -31.57543229591116, 115.65908432006836 -31.575724789799278, 115.65988898277283 -31.575743070636808, 115.65988898277283 -31.575971580803511, 115.65965831279755 -31.576241222079776, 115.65944910049438 -31.576154388533588, 115.6588214635849 -31.576136107776705, 115.6585693359375 -31.576433169631731, 115.66079020500183 -31.577557425927434))\nAYAA-G53SW\tGlenmore Ridge\tReady for service\tPOLYGON ((150.679555616151 -33.7991333865018, 150.679510353932 -33.7993401728492, 150.679504221334 -33.799369267155, 150.679428378748 -33.7996142063293, 150.679201052514 -33.8005579472692, 150.679118930331 -33.8009119788959, 150.679166407406 -33.8009418996029, 150.679183870476 -33.8009442719477, 150.679192309704 -33.8009328791516, 150.679533398256 -33.800978903573, 150.679536227144 -33.8009642916269, 150.679834679924 -33.8010045622249, 150.680340836347 -33.8010792917545, 150.680162656852 -33.8019847651041, 150.680143837752 -33.8021085186825, 150.680083784926 -33.8024221177943, 150.680382243068 -33.8024623872814, 150.680389487241 -33.8024694291038, 150.680406961224 -33.8024717464532, 150.68054741914 -33.8025103234439, 150.680572961562 -33.8024927463657, 150.680749897865 -33.8015787630616, 150.680883479593 -33.8009102109001, 150.680944218932 -33.8008706357231, 150.680979141777 -33.8008753972941, 150.681378035199 -33.8009286698784, 150.681546862902 -33.8007422234539, 150.681597681004 -33.800479700229, 150.681299678564 -33.8004371112884, 150.681588247817 -33.7989463706296, 150.681442512361 -33.7989066719001, 150.681407268454 -33.7989040389834, 150.681152593968 -33.7988945745512, 150.680999669338 -33.7989021092644, 150.680967187434 -33.7989049632007, 150.680772648149 -33.7989279094999, 150.680565896051 -33.7989774322755, 150.680109941934 -33.7990769615587, 150.679634642858 -33.7990748879008, 150.679685495539 -33.7985315609716, 150.679668019503 -33.7985292587081, 150.679662504408 -33.7985584390378, 150.679555616151 -33.7991333865018), (150.680567514446 -33.8009985073084, 150.680443625811 -33.8009845931522, 150.680453233193 -33.8009372822929, 150.680380549186 -33.8009295440419, 150.680381752341 -33.8008849705225, 150.680369262524 -33.8008847355531, 150.680379924074 -33.8008241236848, 150.680474023728 -33.8008357397924, 150.680475705313 -33.8008155146803, 150.680533570615 -33.8008225620324, 150.680531354156 -33.8008346743851, 150.680587952509 -33.8008404648197, 150.680571019895 -33.8009531924208, 150.680567514446 -33.8009985073084))\nAYCA-198O38\tGlenview Estate\tUnder construction\tPOLYGON ((151.898128 -27.5569409999816, 151.897742 -27.5568209999816, 151.896202 -27.5564889999816, 151.895824 -27.5585959999816, 151.896063 -27.5586199999817, 151.896157 -27.5585709999817, 151.896333 -27.5586739999817, 151.896435 -27.5586499999816, 151.897193 -27.5587539999816, 151.897801 -27.5588379999817, 151.897998 -27.5588239999817, 151.898278 -27.5588629999816, 151.898606 -27.5570359999816, 151.898128 -27.5569409999816))\n10577\tSecret Harbour\tReady for service\tPOLYGON ((115.76191484928131 -32.412162780362479, 115.76135158538818 -32.412162780362479, 115.76075077056885 -32.411823125898366, 115.75990855693817 -32.411216273406694, 115.75977981090546 -32.411075881577375, 115.75881958007812 -32.411134755596905, 115.75796127319336 -32.41107135280506, 115.75754821300507 -32.410591301649887, 115.75801491737366 -32.410147478498857, 115.75838506221771 -32.4102561700846, 115.75871765613556 -32.41037391915475, 115.75911998748779 -32.4102969293955, 115.75916826725006 -32.41042826482763, 115.75937211513519 -32.410342217497131, 115.75957059860229 -32.410632060809448, 115.7597690820694 -32.410591301649887, 115.75967788696289 -32.410459966455029, 115.75996220111847 -32.410319573449158, 115.76115310192108 -32.409807816449707, 115.76145350933075 -32.410088603835248, 115.76178073883057 -32.410754338177625, 115.76191484928131 -32.412162780362479))\n10216\tClarkson-Somerly\tReady for service\tPOLYGON ((115.72820484638214 -31.692362057588973, 115.72839796543121 -31.692603974829602, 115.72826385498047 -31.692677006325475, 115.72822630405426 -31.692740908837223, 115.72830140590668 -31.693749649799575, 115.72818338871002 -31.693763343040363, 115.72822093963623 -31.694023514231485, 115.72888076305389 -31.693936790582175, 115.72935819625854 -31.693859195669333, 115.7295835018158 -31.69384093803335, 115.72958886623383 -31.693955048199285, 115.73025405406952 -31.693863760077772, 115.73049545288086 -31.693795293927685, 115.73076367378235 -31.693681183565293, 115.73085486888885 -31.693557944216312, 115.73092997074127 -31.693416446984148, 115.73091924190521 -31.693357109370961, 115.73101580142975 -31.693229305152144, 115.7309353351593 -31.693124322983572, 115.73089241981506 -31.692900664924057, 115.73076367378235 -31.692435089275239, 115.73054373264313 -31.691974075791936, 115.73018968105316 -31.691992333795234, 115.72999656200409 -31.691955817785068, 115.72983026504517 -31.691882785721621, 115.72968006134033 -31.691777802029705, 115.72958886623383 -31.69169107628159, 115.72925627231598 -31.691818882618936, 115.72897732257843 -31.691946688780284, 115.72856962680817 -31.692142962185319, 115.72820484638214 -31.692362057588973))\nAYCA-WDCA1\tThe Ponds\tReady for service\tPOLYGON ((150.898332999986 -33.7064140000126, 150.898297999986 -33.7064870000125, 150.898250999986 -33.7064990000125, 150.898161996854 -33.7064920043531, 150.897830996854 -33.7064570043529, 150.897568999986 -33.7064370000125, 150.897432571128 -33.7064540300016, 150.897316065055 -33.707550033639, 150.897265999986 -33.7076680000125, 150.897227999986 -33.7080260000125, 150.89724845007 -33.708178342076, 150.897168374046 -33.708930001163, 150.898104498703 -33.708935515948, 150.898086408648 -33.7100616033267, 150.898204564868 -33.7101040850097, 150.898582111888 -33.7102315154327, 150.899179822143 -33.7089849022244, 150.898528961945 -33.7087656161383, 150.898693567129 -33.7084113177061, 150.898588056332 -33.7083761558194, 150.898599435815 -33.7083433196976, 150.898625439971 -33.7083492289086, 150.898854933741 -33.7078726323344, 150.898833082676 -33.7078674407372, 150.898906470227 -33.7077229541015, 150.89892404356 -33.7077288873971, 150.899163204192 -33.707233314527, 150.89919836972 -33.7070891136855, 150.89930477467 -33.7068519131516, 150.898655370549 -33.7066423141205, 150.898726699459 -33.7064765866622, 150.898447194962 -33.7063863318084, 150.898367352649 -33.7063521652204, 150.898332999986 -33.7064140000126))\nAYAA-ESVR8\tQuarters\tReady for service\tPOLYGON ((145.253535845232 -38.0985862731359, 145.253595876639 -38.0983023050657, 145.254193936639 -38.0983695661542, 145.254297290705 -38.0984846867974, 145.254454093749 -38.0984983804655, 145.254703726768 -38.0972054957603, 145.252787273403 -38.0969418150428, 145.252586619416 -38.0969442663531, 145.252520350455 -38.0971939920742, 145.252162089441 -38.0971613696869, 145.252049625269 -38.0976836584869, 145.250341166558 -38.0974537307241, 145.250261999995 -38.0977480000261, 145.250216999995 -38.0977410000261, 145.250112194369 -38.0982330043263, 145.250764185924 -38.0983077009944, 145.250750365751 -38.0983641872655, 145.251328054093 -38.0984430660457, 145.251391270856 -38.0981466671629, 145.252160539071 -38.0982296265707, 145.252377317403 -38.0982268411835, 145.252322861024 -38.098499559783, 145.252577717833 -38.0985197138907, 145.253086209584 -38.0985899641923, 145.253101943721 -38.0985233793577, 145.253535845232 -38.0985862731359))\n10395\tIluka\tReady for service\tPOLYGON ((115.73339223861694 -31.733395875766995, 115.73350220918655 -31.733243033141708, 115.73331579566002 -31.732806175591136, 115.73323868215084 -31.732802183410804, 115.73316425085068 -31.732405816079257, 115.73370203375816 -31.732421784867849, 115.73428206145763 -31.732470831844147, 115.73480810970068 -31.73238585508966, 115.73578996583819 -31.732128928253879, 115.73637208901346 -31.732078027569795, 115.73688983917236 -31.732122939939561, 115.7365357875824 -31.734235365093621, 115.7362300157547 -31.733998118881097, 115.73612004518509 -31.733788246725133, 115.73565736413002 -31.733824746264681, 115.73568351566792 -31.733703841484893, 115.73526978492737 -31.733653654548831, 115.73525369167328 -31.733581795933958, 115.73499083518982 -31.733532179238782, 115.73370337486267 -31.733592061453788, 115.73338687419891 -31.733439219152146, 115.73339223861694 -31.733395875766995))\n10004\tAveley-Vale\tReady for service\tPOLYGON ((115.98265528678894 -31.793775915189809, 115.98242998123169 -31.793903580730287, 115.98241925239563 -31.794332170897974, 115.98002672195435 -31.794268338445747, 115.98004817962646 -31.794168030217509, 115.97961902618408 -31.794158911282256, 115.97962975502014 -31.793930937608881, 115.9791362285614 -31.793921818650261, 115.97911477088928 -31.792927846766137, 115.97971558570862 -31.792955203933502, 115.97971558570862 -31.79286401334409, 115.98116397857666 -31.792882251469173, 115.98118543624878 -31.792553964667171, 115.98191499710083 -31.792435416368807, 115.98265528678894 -31.793775915189809))\nAYCA-IKFNQ\tCaddens Road, Kingswood\tReady for service\tPOLYGON ((150.732427925935 -33.7749321775366, 150.732162192594 -33.7762734768354, 150.73239442496 -33.776383321049, 150.735339497815 -33.7768426683368, 150.735593478084 -33.7753320583263, 150.732430083364 -33.7749333641979, 150.732427925935 -33.7749321775366))\n10613\tSecret Harbour-Anstey Park\tReady for service\tPOLYGON ((115.7690455019474 -32.405161818926416, 115.77081844210625 -32.405159306708448, 115.77117819339037 -32.405159872842077, 115.7715567201376 -32.405162703510193, 115.77195033431053 -32.405160438975706, 115.77229768037796 -32.405161005109342, 115.77304668724537 -32.405162703510193, 115.77312413603067 -32.405306625175626, 115.77295482158661 -32.405624915040832, 115.77291190624237 -32.405692036889, 115.77278718352318 -32.405874047595631, 115.77260881662369 -32.406139844842272, 115.77246531844139 -32.406246276747147, 115.77248677611351 -32.406282508856343, 115.77249616384506 -32.406297794273044, 115.77202945947647 -32.406398564733209, 115.77141925692558 -32.406452346674328, 115.77036246657372 -32.406409321123988, 115.76986625790596 -32.40637025843553, 115.76963491737843 -32.406357237535623, 115.76963558793068 -32.406551984712131, 115.76936468482018 -32.406551984712131, 115.76920710504055 -32.4065689684576, 115.7690991461277 -32.406251053442062, 115.76903644949198 -32.40606778739928, 115.76904483139515 -32.40595472096409, 115.76904684305191 -32.405162951193653, 115.7690455019474 -32.405161818926416))\nAYCA-1FBKCC\tVantage\tUnder construction\tPOLYGON ((152.11326132 -32.7242332800109, 152.113110108848 -32.7250027179318, 152.113411 -32.7250450000161, 152.113392 -32.7250960000163, 152.113291 -32.7252240000162, 152.113255 -32.7253200000162, 152.113063 -32.7262960000162, 152.114698 -32.7263680000162, 152.1149 -32.7263360000162, 152.115063 -32.7262310000162, 152.1156 -32.7255110000163, 152.115918 -32.7247040000163, 152.115966 -32.7243660000162, 152.11534752 -32.7243033000158, 152.115323 -32.7244790000162, 152.114741640003 -32.7243807900158, 152.113736520001 -32.7243684600158, 152.113565879188 -32.7242758499024, 152.11326132 -32.7242332800109))\n10118\tCarramar-Banksia Grove\tReady for service\tPOLYGON ((115.79432129859924 -31.700067510729689, 115.79385995864868 -31.70021356191501, 115.79384922981262 -31.702942851142137, 115.79501867294312 -31.702961106987008, 115.79538345336914 -31.702979362828287, 115.7955014705658 -31.703070641980769, 115.79615592956543 -31.703070641980769, 115.79668164253235 -31.702495581820514, 115.79513669013977 -31.70133632272394, 115.79432129859924 -31.700067510729689))\nAYCA-13X8E1\tRiemore Downs Estate\tUnder construction\tPOLYGON ((153.111054854636 -27.8880325616494, 153.1104282 -27.8878955399838, 153.11038932 -27.8878163399838, 153.10855944 -27.8880881399838, 153.10809288 -27.8877602699838, 153.107702985028 -27.8882495597891, 153.107699918897 -27.888250292332, 153.107605486388 -27.8884057177254, 153.107606310844 -27.8884084420296, 153.1068552 -27.8891225999838, 153.10800576 -27.8893916999837, 153.108666259328 -27.8893892743226, 153.10925892 -27.8893392299838, 153.110493 -27.8894414699838, 153.110557050247 -27.8888150413623, 153.110751442809 -27.8886543830541, 153.111054854636 -27.8880325616494))\n10544\tMurray-Murray River Country Estate\tReady for service\tPOLYGON ((115.85716210305691 -32.606426477329705, 115.85770223289728 -32.606536344054923, 115.85802426561713 -32.606602574702066, 115.85823498666286 -32.606643386313124, 115.8582504093647 -32.606949861147662, 115.85847906768322 -32.606952120605747, 115.85848074406385 -32.60695960506024, 115.85849717259407 -32.60695466249603, 115.85852164775133 -32.607083027861037, 115.85851175710559 -32.607083380900853, 115.85851661860943 -32.607105198758042, 115.85857696831226 -32.60723907131883, 115.85866648703814 -32.607361646441625, 115.85878685116768 -32.607471794450355, 115.8589219674468 -32.607558438826452, 115.85907988250256 -32.607623618430715, 115.85920594632626 -32.607655250600736, 115.8592401444912 -32.607703828554335, 115.85920393466949 -32.607887972650857, 115.85910268127918 -32.608186217500958, 115.85905306041241 -32.608433624407049, 115.85885860025883 -32.609415460872384, 115.85847605019808 -32.609362082628117, 115.85789903998375 -32.609230755066307, 115.857447758317 -32.609050567689643, 115.85703000426292 -32.608773225282334, 115.85687108337879 -32.608616760856904, 115.85669539868832 -32.608446174781982, 115.85652206093073 -32.608162899506041, 115.8564667403698 -32.608069415644039, 115.85639633238316 -32.6078558992671, 115.85634000599384 -32.607600017859106, 115.85680268704891 -32.607524891390796, 115.85676044225693 -32.607263360411793, 115.8567825704813 -32.6070597272309, 115.85679329931736 -32.606925007105012, 115.85686437785625 -32.606700473111566, 115.85690058767796 -32.606591595104568, 115.85694618523121 -32.606477068290296, 115.85712656378746 -32.606517738741722, 115.85716210305691 -32.606426477329705))\nAYCA-RJUQM\tGoogong Township\tReady for service\tPOLYGON ((149.235661448984 -35.4144397061314, 149.234589505706 -35.4161292029528, 149.234732410168 -35.4161981346375, 149.234981345186 -35.4163140417611, 149.235003211004 -35.4162814853941, 149.235582725734 -35.4165246814884, 149.235441527756 -35.4167353389466, 149.235340548026 -35.4168710686966, 149.235316552218 -35.4168606629637, 149.235168527541 -35.4170846533869, 149.235324544681 -35.4171578292492, 149.235328254931 -35.4171809830641, 149.235988806722 -35.417477033628, 149.235945313055 -35.4177686577357, 149.236477414298 -35.4178712833694, 149.236464502094 -35.4179741127799, 149.236797611059 -35.4180075541972, 149.236905034571 -35.4172678294736, 149.236834731564 -35.417101242196, 149.237448536168 -35.4158070927992, 149.23736267344 -35.4156840643646, 149.237104006471 -35.4153568802435, 149.236865882864 -35.4151264746684, 149.236604493848 -35.4149141389569, 149.236313207589 -35.4147291984542, 149.236000564171 -35.4145681824433, 149.235661448984 -35.4144397061314))\nAYCA-W4ML9\tHeights Durack\tReady for service\tPOLYGON ((130.979350484024 -12.4702565470322, 130.978992209603 -12.4705605156798, 130.979067999994 -12.4706459998883, 130.977204999987 -12.472023999887, 130.976972999987 -12.472242999887, 130.976826999987 -12.4723669998869, 130.977076999994 -12.4726199998883, 130.977698999994 -12.4729519998883, 130.978809980052 -12.4734288935086, 130.978891481184 -12.4732194620933, 130.979139827501 -12.4726602910931, 130.979065569233 -12.4726276434684, 130.979478317747 -12.4722607107723, 130.979521171631 -12.4722627114752, 130.979714517995 -12.4724776031963, 130.979813440757 -12.4723958242816, 130.979999723608 -12.472232638756, 130.979954384183 -12.4721813947583, 130.980234107439 -12.4719394017396, 130.980320990062 -12.4720370682845, 130.980439103509 -12.4719455665429, 130.980548021012 -12.4720647033142, 130.980788313349 -12.4718605831634, 130.979350484024 -12.4702565470322))\nAYCA-1D96Q5\tCasey 4\tReady for service\tPOLYGON ((149.09373520338 -35.1768342022029, 149.095316394242 -35.1763108214862, 149.094611968014 -35.1747709140419, 149.094694463014 -35.1746627990417, 149.095075313357 -35.1740365302207, 149.094717186021 -35.1738789550372, 149.094196701021 -35.1736655610373, 149.094304580007 -35.1734881660462, 149.094329883113 -35.1734478857257, 149.094152338014 -35.1733753640418, 149.093955294007 -35.1732945760463, 149.093908806021 -35.1734303630372, 149.093433290028 -35.1733206050326, 149.093327224863 -35.1732995284712, 149.092968000007 -35.1743330000209, 149.092935000014 -35.1743920000163, 149.092903000014 -35.1744270000165, 149.092852000007 -35.1744660000208, 149.092791000014 -35.1744950000164, 149.092896000007 -35.1746870000209, 149.093000000007 -35.1752100000209, 149.093117000007 -35.175612000021, 149.093682000007 -35.1767200000209, 149.09373520338 -35.1768342022029))\nAYAA-FPRLN\tBluestone Green\tReady for service\tPOLYGON ((144.60797247417 -37.8955127533772, 144.607959224581 -37.8955846711185, 144.608560031657 -37.8956545953094, 144.608636013499 -37.8951333558025, 144.608688681248 -37.8950861391225, 144.608731079939 -37.895148726934, 144.608883039229 -37.8951727163112, 144.608910857145 -37.8950554774338, 144.61016983291 -37.895042384712, 144.610143479986 -37.8945081900184, 144.610206434377 -37.8937797306026, 144.610288017004 -37.8934298306239, 144.609733816435 -37.893348976927, 144.609676593396 -37.8936390202746, 144.609596197307 -37.8936763126891, 144.608366607036 -37.8935400580121, 144.60841197757 -37.8932937571705, 144.607354466035 -37.8931714114016, 144.607110689565 -37.8948926795454, 144.607102852573 -37.8950978263476, 144.60713170735 -37.895098522391, 144.607074444841 -37.8954103449069, 144.60797247417 -37.8955127533772))\nAYCA-1IP7M3\tHunt Club Estate\tContracted\tPOLYGON ((145.300113062036 -38.1112793229141, 145.300417650716 -38.1109160061602, 145.300783398112 -38.1100339893964, 145.300967637882 -38.1090777409909, 145.300618079998 -38.1090357000281, 145.300578999995 -38.1092410000267, 145.298036999995 -38.1089350000266, 145.298064443078 -38.1087646190405, 145.297621999995 -38.1085360000267, 145.297198800008 -38.1089281500188, 145.296690116426 -38.1092414005357, 145.300113062036 -38.1112793229141))\n17319025\tIsaac Views\tCheck with carrier\tPOLYGON ((148.066696096 -21.995396002, 148.0671 -21.9964750145, 148.068367936 -21.998349009000002, 148.068577088 -21.9986569785, 148.070115008 -21.997692, 148.068245888 -21.9955750265, 148.066696096 -21.995396002))\nAYCA-F9XI8\tToolern Waters\tContracted\tPOLYGON ((144.561908358791 -37.7167718217348, 144.561381376416 -37.7167085063055, 144.561120208041 -37.71808016892, 144.560582004757 -37.7180155024347, 144.560568436771 -37.7180867575237, 144.559510404882 -37.7180416209467, 144.558703103481 -37.7179446093597, 144.558691229943 -37.7180069573195, 144.557754986825 -37.7178944438655, 144.557707128411 -37.7181457307036, 144.557663384356 -37.7183754128338, 144.557693658224 -37.7183790511382, 144.557632589286 -37.7186996970547, 144.55920235656 -37.7188883403874, 144.559214229854 -37.7188259923742, 144.559763560132 -37.7188924850628, 144.55977552293 -37.7188296645049, 144.560156753655 -37.7188754729154, 144.560165234011 -37.7188309385319, 144.561118312617 -37.7189454541413, 144.561150535772 -37.718776223141, 144.5617999767 -37.7188542431796, 144.562692530844 -37.7140855144347, 144.562425235596 -37.7140545642052, 144.562002978325 -37.716276882866, 144.561908358791 -37.7167718217348))\n79\tWildflower Ridge\tReady for service\tPOLYGON ((152.92013208417609 -27.690741712392327, 152.92055587319695 -27.690817712756864, 152.92263087563708 -27.689145863095419, 152.92282399468436 -27.688081836891826, 152.92289909653707 -27.686908545977218, 152.9223465614817 -27.686395524126052, 152.921186929 -27.687302434000006, 152.92167869143054 -27.6878277040991, 152.92180207304958 -27.687732701034705, 152.92200055651233 -27.687948832887603, 152.9217377000368 -27.688162589243941, 152.92164382272094 -27.6882029653976, 152.92164650492865 -27.688267092199915, 152.92159822516237 -27.688319343639993, 152.92170014911048 -27.688447597068649, 152.92177793317089 -27.688535474331683, 152.92146679692013 -27.688784855367494, 152.92149093679876 -27.688813356021022, 152.9209893637175 -27.689247990065141, 152.919879338 -27.690143570999997, 152.92013208417609 -27.690741712392327))\n10312\tDawesville-Dawesville Ridge\tReady for service\tPOLYGON ((115.63646256923676 -32.6230624077761, 115.63595294952393 -32.623057889672879, 115.63580274581909 -32.623103070694917, 115.63547551631927 -32.623107588795875, 115.6351912021637 -32.623098552593746, 115.63462793827057 -32.624932882922494, 115.63454747200012 -32.626229542027261, 115.6346333026886 -32.626229542027261, 115.63463866710663 -32.626523207856586, 115.63475668430328 -32.6265277257849, 115.63482105731964 -32.626478028560946, 115.63483715057373 -32.6263560443488, 115.63504099845886 -32.626365080222072, 115.63574373722076 -32.626360562285541, 115.63580811023712 -32.6262611676244, 115.63580274581909 -32.626161772852868, 115.63602805137634 -32.626161772852868, 115.63633918762207 -32.626166290799439, 115.63632309436798 -32.625840998064554, 115.63637137413025 -32.624838004689465, 115.63647329807281 -32.624842522702842, 115.63648402690887 -32.624535297273709, 115.63648134469986 -32.624369930208523, 115.63639014959335 -32.624372189227053, 115.63640356063843 -32.623775806355745, 115.63640356063843 -32.62364026423991, 115.63646525144577 -32.62364026423991, 115.63646256923676 -32.6230624077761))\nAYAA-GHEC9\tProvidence Estate\tReady for service\tPOLYGON ((144.884572459401 -37.6239441054423, 144.884625214039 -37.6239276739825, 144.884769909257 -37.6238892936118, 144.885340381009 -37.6239639121627, 144.885283646437 -37.6242116718416, 144.885296529779 -37.6242119028362, 144.885174082408 -37.6248910673022, 144.885142921004 -37.6248861189013, 144.885126062213 -37.6250263014871, 144.885142540456 -37.62502952447, 144.885022704074 -37.625616307316, 144.88463825176 -37.6255391701817, 144.884559690518 -37.6256475152212, 144.884537414802 -37.62571882186, 144.88459229051 -37.6257315145342, 144.884527819226 -37.6259105388673, 144.886813645042 -37.6264369771446, 144.886875306958 -37.6262444931212, 144.886835710532 -37.6261871964804, 144.886783613187 -37.6261743494401, 144.886840178997 -37.6260294269242, 144.886564381636 -37.6259768323774, 144.886977222009 -37.6238412744661, 144.886839327206 -37.6238149783514, 144.886661162969 -37.623755198918, 144.886451314884 -37.6236233714171, 144.88627984965 -37.6234594714205, 144.886079636654 -37.62338440316, 144.884795203081 -37.6232243737971, 144.884799540585 -37.6232036035812, 144.884463322812 -37.6231677910719, 144.884373282483 -37.6235682448567, 144.884414596904 -37.6236970531365, 144.884471025097 -37.6236891308826, 144.884572459401 -37.6239441054423))\nAYAA-GGXGS\tProvidence Estate\tReady for service\tPOLYGON ((144.892266446432 -37.6249702235692, 144.891684479251 -37.6239276203246, 144.891631643517 -37.6237885554676, 144.891477666507 -37.6235126972395, 144.890896432685 -37.623717942295, 144.890492654673 -37.623822856801, 144.890369090995 -37.6238374732667, 144.890072498498 -37.6238725569215, 144.889929212859 -37.6238541416527, 144.889990944009 -37.6235502752522, 144.890114759592 -37.6233644093468, 144.890162641251 -37.6231287112497, 144.88978244517 -37.6230798474446, 144.889718995301 -37.6230739760312, 144.889761734035 -37.6228604488643, 144.889658213744 -37.6227876764501, 144.888920190709 -37.6226928190335, 144.888741745106 -37.6226703391846, 144.888248047467 -37.622606424881, 144.888210355251 -37.6228206162256, 144.888203583023 -37.6229971388155, 144.888566212912 -37.6230321840709, 144.888662828731 -37.6233665675128, 144.88852539855 -37.6240429934443, 144.888905598494 -37.6240918614187, 144.888789947818 -37.6246610928398, 144.889349074733 -37.6247329351173, 144.889363306818 -37.6246628828765, 144.889721145645 -37.6247088738635, 144.889731387426 -37.62465846118, 144.890039921159 -37.6246981143383, 144.890451140689 -37.6246134224448, 144.890544844527 -37.6249012473354, 144.890571649063 -37.6248957268061, 144.890617081517 -37.6250352782357, 144.890770604068 -37.6250036593637, 144.890867149133 -37.6253002059877, 144.89173157166 -37.6251221688913, 144.891914441207 -37.6250945241052, 144.891978791615 -37.6252098079612, 144.892330797285 -37.6250855072455, 144.892266446432 -37.6249702235692))\n10040\tAveley-Vale\tReady for service\tPOLYGON ((115.98254799842834 -31.771019423816419, 115.98632454872131 -31.770982938937845, 115.98689317703247 -31.770782271848521, 115.98773002624512 -31.771375150628398, 115.98744034767151 -31.771548452938728, 115.98703265190125 -31.771648785706837, 115.98674297332764 -31.771667028016626, 115.98661422729492 -31.771356908261055, 115.98534822463989 -31.771420756531011, 115.98535895347595 -31.771758239511595, 115.98454356193542 -31.771758239511595, 115.98454356193542 -31.772547215189668, 115.98485469818115 -31.772542654655943, 115.98487347364426 -31.772775241588867, 115.98467499017715 -31.77316744568067, 115.98432898521423 -31.77314464316272, 115.98351359367371 -31.77238759637579, 115.98290205001831 -31.771913298846638, 115.98230123519897 -31.771584937594262, 115.9822690486908 -31.77125657517638, 115.98254799842834 -31.771019423816419))\nAYCA-HZYR1\tArbourlea\tReady for service\tPOLYGON ((145.326774694117 -38.0828084141228, 145.326601268981 -38.0837167376541, 145.327144024998 -38.0837814768527, 145.330139519998 -38.0813823900283, 145.327431108912 -38.0810609928174, 145.327184428551 -38.0823530910747, 145.325991141308 -38.0822233730397, 145.325914821918 -38.0827056101528, 145.326774694117 -38.0828084141228))\n17334900\tMinto Renewal Project\tCheck with carrier\tPOLYGON ((150.851014912 -34.036637041, 150.851112832 -34.03793304, 150.851094848 -34.038398962500004, 150.850982176 -34.0389739795, 150.851001952 -34.038979011500004, 150.851027168 -34.0389860415, 150.851053088 -34.03899198, 150.851079008 -34.038998011000004, 150.851104928 -34.039002969, 150.851130848 -34.039008001, 150.851157856 -34.039010961, 150.851184128 -34.039014032000004, 150.851211136 -34.039016992, 150.851238112 -34.039017991, 150.85126512 -34.0390189715, 150.851292128 -34.0390189715, 150.851625856 -34.038961011, 150.851768032 -34.038899998, 150.85216512 -34.0384519835, 150.85245888 -34.038071993500004, 150.852678848 -34.037838986000004, 150.853047136 -34.037358023, 150.852958912 -34.0373439815, 150.852834016 -34.037324001500004, 150.852837952 -34.037315991, 150.85284912 -34.037290979, 150.852858848 -34.037264968, 150.85286784 -34.037238957, 150.852885856 -34.037199996, 150.85290384 -34.037160036, 150.852924 -34.037120964, 150.85294416 -34.0370829835, 150.852963968 -34.0370440225, 150.85298592 -34.037006042, 150.853004992 -34.0369720205, 150.853194016 -34.0367339625, 150.853280032 -34.03665099, 150.853389856 -34.036542987000004, 150.85340496 -34.036529038, 150.853420096 -34.036514016, 150.853433056 -34.0364989755, 150.853446016 -34.0364829545, 150.853458976 -34.036467026000004, 150.853470112 -34.036451005, 150.853480928 -34.0364340035, 150.853491008 -34.036416983500004, 150.853501088 -34.036399982, 150.85351008 -34.0363819815, 150.853542112 -34.036119984500004, 150.853538176 -34.0361010035, 150.85353312 -34.0360810235, 150.853527008 -34.036062024, 150.85352016 -34.036043043, 150.853511872 -34.0360250425, 150.853507936 -34.036017032000004, 150.853505056 -34.0360080225, 150.85320192 -34.036058971500005, 150.851664 -34.035818046, 150.85163808 -34.0358849975, 150.85159488 -34.0360080225, 150.851415968 -34.0364989755, 150.851304 -34.036692023, 150.851014912 -34.036637041))\nAYCA-ICLSQ\tVillage Square Estate\tReady for service\tPOLYGON ((150.85348955162 -33.9539837867809, 150.85345569799 -33.9541870789672, 150.853543110382 -33.9542064121026, 150.853367568046 -33.9552662736903, 150.853517263966 -33.9552993818945, 150.853493569496 -33.9556504760277, 150.855490794032 -33.9560950532072, 150.855511470037 -33.9560214465969, 150.855496179934 -33.9560168389631, 150.855451294934 -33.9559606274298, 150.855532013535 -33.9554732135786, 150.855552007858 -33.9554339674772, 150.855561329848 -33.9554000185975, 150.855566210362 -33.9553742976552, 150.855607457281 -33.9552481341675, 150.855639199142 -33.9549949226385, 150.855667209463 -33.9548250344214, 150.855711433477 -33.9546949026355, 150.85571825157 -33.9546744919056, 150.85576450959 -33.954610399444, 150.855823965281 -33.9545702845066, 150.855893201489 -33.9545515814341, 150.855951417725 -33.9545503850506, 150.856089592381 -33.9545528348576, 150.856125279382 -33.954376101046, 150.85593392561 -33.9543088101618, 150.855909907955 -33.9542410835684, 150.85595413691 -33.9541010698645, 150.856094382914 -33.9536759550149, 150.856130950587 -33.9535374263884, 150.856126442526 -33.9534265562423, 150.855845262799 -33.9533682298151, 150.855835567283 -33.9534541052339, 150.855848489459 -33.9534575917522, 150.855840196898 -33.9535052241816, 150.855816469768 -33.9536180110292, 150.855708220837 -33.9539535909287, 150.855409039501 -33.9538883185117, 150.855385658865 -33.9539668201545, 150.853439918634 -33.9535297493296, 150.853391482942 -33.953802266404, 150.853363367593 -33.9539610629734, 150.85348955162 -33.9539837867809))\nAYCA-1DG0KG\tWolstenholme Drive final stage\tReady for service\tPOLYGON ((147.545286116511 -42.7806744458159, 147.546197948709 -42.7821579972821, 147.54663846012 -42.7827774193882, 147.5494326 -42.781808430025, 147.54762648 -42.780896190025, 147.547278373837 -42.7809301411234, 147.546114587653 -42.7802859691611, 147.545286116511 -42.7806744458159))\nAYCA-F191C\tEdmondson Park South P1\tReady for service\tPOLYGON ((150.854876963875 -33.9813315071457, 150.854965699095 -33.9815807811402, 150.855813954582 -33.9813379967809, 150.85616434321 -33.9819393396364, 150.856795646849 -33.9819430055781, 150.857550173865 -33.9819919164821, 150.857472768542 -33.9813669169512, 150.857507609172 -33.9810247800476, 150.857542449471 -33.9806826431199, 150.857529621484 -33.9803083256057, 150.857568873444 -33.9802671469093, 150.857549529609 -33.9801145330049, 150.857496963753 -33.9800589492644, 150.857327453243 -33.9794097836206, 150.85712504593 -33.9787383614671, 150.856629934788 -33.9788494133276, 150.856332060187 -33.9789162245394, 150.85610251732 -33.9789814538943, 150.855888494806 -33.9790418253087, 150.855998011794 -33.9793004694963, 150.855937007562 -33.9793188177454, 150.856108393633 -33.9797456855128, 150.856129543326 -33.9798250687041, 150.855868367731 -33.9798867990038, 150.855805810139 -33.9799347539805, 150.855816108761 -33.9801346418374, 150.855905216443 -33.9803388935585, 150.855994928166 -33.9805814386868, 150.855969670328 -33.9808788758062, 150.855681740648 -33.9809593011968, 150.855728369612 -33.9810815052793, 150.855250764383 -33.9812190089092, 150.854876963875 -33.9813315071457))\n10603\tSecret Harbour\tReady for service\tPOLYGON ((115.75285837054253 -32.408150707277521, 115.75309071689844 -32.408319975466348, 115.753258690238 -32.408432632044857, 115.75321946293116 -32.408470561615005, 115.75310714542866 -32.408667568678247, 115.75294956564903 -32.408608126937224, 115.75293246656656 -32.408650868383539, 115.75288452208042 -32.408870236415254, 115.75282618403435 -32.408928545763658, 115.75270213186741 -32.408968173454667, 115.75276248157024 -32.409094415840016, 115.75282484292984 -32.409073469806238, 115.75290396809578 -32.409109700780512, 115.75294587761164 -32.409239905724291, 115.75307764112949 -32.409581834334446, 115.75326003134251 -32.4100505688008, 115.75350310653448 -32.410313806292272, 115.75374014675617 -32.410565721022095, 115.75338441878557 -32.410803482594034, 115.7530221529305 -32.411046904506783, 115.7530274335295 -32.411053131570355, 115.75301930308342 -32.411058226440232, 115.75290396809578 -32.411137479934624, 115.75313530862331 -32.411385429703273, 115.75315877795219 -32.411452228839522, 115.75314939022064 -32.411527519332111, 115.75318023562431 -32.411609036787119, 115.75315609574318 -32.411680930592574, 115.75306758284569 -32.411749993879312, 115.75302064418793 -32.411744899048493, 115.75292810797691 -32.411778298489743, 115.75291402637959 -32.411850192160358, 115.75267262756824 -32.412010962051156, 115.75242703780532 -32.411745323617737, 115.75227473862469 -32.411579670698529, 115.75226526707411 -32.41158724219698, 115.75218362733722 -32.411507847574136, 115.75219708029181 -32.411498188597861, 115.75202141655609 -32.4113096614494, 115.7520120497793 -32.411313606424272, 115.75194771867245 -32.411238563419971, 115.75195109238848 -32.41123500763252, 115.7518082857132 -32.411080870302875, 115.7517009973526 -32.410800369053696, 115.75164064764977 -32.41063917243175, 115.75158096849918 -32.41046552131494, 115.75132146477699 -32.409726757327988, 115.75142003595829 -32.40947936910873, 115.75154408812523 -32.409178199926522, 115.75211774557829 -32.408843346169064, 115.75231606140733 -32.408732529964738, 115.7525385171175 -32.408608126937224, 115.75285837054253 -32.408150707277521))\n17340486\tWest Park Industrial Estate\tCheck with carrier\tPOLYGON ((144.740836992 -37.8022170065, 144.740616 -37.8023300045, 144.740299008 -37.8046270015, 144.7422 -37.804801993, 144.742572 -37.8023670045, 144.740836992 -37.8022170065))\nAYAA-H9HQB\tParagon Estate\tReady for service\tPOLYGON ((144.760691293499 -37.9105173700591, 144.760720310293 -37.9105478905962, 144.760686150264 -37.9107448938449, 144.76118587886 -37.910830403521, 144.761229786156 -37.9105682180052, 144.76180044042 -37.9072906382391, 144.758868817631 -37.9069826356865, 144.75878251224 -37.9074648338533, 144.759336298995 -37.9075224904895, 144.75930544728 -37.9077367277902, 144.760272891698 -37.9078445478416, 144.760204911303 -37.9082508724318, 144.760268463294 -37.9083347093819, 144.760206962647 -37.9086420058839, 144.760727193661 -37.9086969844687, 144.760466697052 -37.9103456361847, 144.760185091328 -37.9103149022135, 144.759896696876 -37.9104268068971, 144.760691293499 -37.9105173700591))\nAYAA-FPSHQ\tBridge Inn Rise Estate\tReady for service\tPOLYGON ((145.119855999996 -37.6010320000267, 145.119418867014 -37.6009187793096, 145.119362335957 -37.6009791854008, 145.119106329206 -37.6009302325929, 145.119021999996 -37.6012150000267, 145.118949406741 -37.6014100677166, 145.119334876315 -37.6015291042409, 145.119403045232 -37.6015649437131, 145.119292323884 -37.6017044210783, 145.119181999996 -37.6018920000268, 145.119178999996 -37.6019160000267, 145.119115999996 -37.6020810000268, 145.119083999996 -37.6022430000267, 145.119522962033 -37.6022932935615, 145.119376079996 -37.6032546000267, 145.119386294236 -37.6033799012334, 145.121193843991 -37.6035840720355, 145.121206055133 -37.6035040687316, 145.121211486883 -37.6034684816606, 145.121492519996 -37.6015046400268, 145.120642999996 -37.6013460000267, 145.119855999996 -37.6010320000267))\n194\tAvondale Heights \tReady for service\tPOLYGON ((144.86028228759304 -37.765789677413487, 144.8597243881222 -37.764534424243308, 144.86262117385797 -37.763762602595413, 144.86314688682694 -37.765077239038895, 144.86204181670723 -37.765348644943423, 144.86240659713982 -37.765950823236324, 144.86028228759304 -37.765789677413487))\nAYCA-NLQCQ\tThe Glades\tReady for service\tPOLYGON ((138.601806567167 -34.784286739695, 138.600472089556 -34.7842800193767, 138.600443089346 -34.7852228994259, 138.600456775956 -34.7852264162131, 138.600453221898 -34.7855140398841, 138.600109325602 -34.7855080078748, 138.599889319074 -34.7854927261319, 138.599559637121 -34.7854857358853, 138.599549890995 -34.785882185406, 138.599562379908 -34.7858824287739, 138.599552957762 -34.7862198485706, 138.599540587987 -34.7865567428534, 138.599580915429 -34.7865575843729, 138.59957709201 -34.7866931083629, 138.599424324737 -34.7870542750167, 138.599175104967 -34.7869026524995, 138.598871191297 -34.78678456439, 138.598715682505 -34.7869596967611, 138.598678170799 -34.7869366409352, 138.598596736751 -34.7870259596639, 138.59891727948 -34.7872496154805, 138.598722792391 -34.7874672246627, 138.598854640169 -34.7875474939411, 138.59873794602 -34.7876780610546, 138.599265342538 -34.787999134593, 138.599592730147 -34.7876328222898, 138.599918690906 -34.7878312635673, 138.60021167513 -34.7875037015732, 138.60040396209 -34.7868814723131, 138.600435949496 -34.7866891949843, 138.601095860243 -34.7859452935431, 138.601747371343 -34.7851997930557, 138.601747376334 -34.7849818400951, 138.601807449803 -34.7849825916303, 138.601812666707 -34.7846987333283, 138.601801482779 -34.7845633926496, 138.601806567167 -34.784286739695), (138.59904494578 -34.7875775698901, 138.599271727447 -34.7877098453763, 138.599157870532 -34.7878361032769, 138.598933142422 -34.7876920705641, 138.59904494578 -34.7875775698901))\nAYCA-PT8T9\tGrey Gum Estate\tReady for service\tPOLYGON ((150.938493459122 -33.6871960958341, 150.938112573739 -33.6868538861136, 150.937913793354 -33.6866364489678, 150.937924648622 -33.6861332738712, 150.937875272373 -33.6859209575089, 150.937442147645 -33.6848841910846, 150.935323666087 -33.6855490338998, 150.934943125772 -33.6847074725845, 150.934035691307 -33.6849963639219, 150.934424733135 -33.6858316776585, 150.934732018245 -33.6861319045403, 150.935341551764 -33.6863701142899, 150.936953782703 -33.6870563338334, 150.937349965729 -33.687037068515, 150.937736574065 -33.6869738633736, 150.93813019255 -33.687361279932, 150.938271912828 -33.6873708297336, 150.938493459122 -33.6871960958341))\nAYCA-FDMGP\tSpringlands Estate\tReady for service\tPOLYGON ((144.723910254727 -37.7128286267871, 144.723916107292 -37.7128149328531, 144.724026314756 -37.7125511683882, 144.725687617422 -37.7129518881047, 144.726346877262 -37.7131029670887, 144.726413725753 -37.7131802431167, 144.726449286314 -37.7134340059457, 144.726517799989 -37.7134503300212, 144.72651924 -37.7134506900297, 144.726757791729 -37.7134575338418, 144.726777586832 -37.7130051770316, 144.726757259127 -37.7129440036648, 144.726761080644 -37.7128794973228, 144.726784011724 -37.7128070835962, 144.726811069375 -37.7121968698348, 144.726451010499 -37.7121559725874, 144.726165077645 -37.7119052029336, 144.72598371688 -37.7117493409873, 144.724226748672 -37.7101528300543, 144.723813706698 -37.7104358991724, 144.723845042227 -37.7104538241878, 144.723722503963 -37.7107845236781, 144.723779522288 -37.7108402469734, 144.723692850312 -37.7113045870487, 144.723755584159 -37.7113205627195, 144.723844534144 -37.7113481853055, 144.72344211382 -37.7124311854595, 144.723485708832 -37.7124320276511, 144.723387772642 -37.7127039494897, 144.723910254727 -37.7128286267871))\nAYAA-GR8X0\tElizabeth Hills\tReady for service\tPOLYGON ((150.843414378787 -33.8996909239624, 150.843349044593 -33.8994679217838, 150.843680783646 -33.8989959874347, 150.843876661897 -33.898916282448, 150.844051683824 -33.898698915603, 150.843977453424 -33.8986560484449, 150.844168499331 -33.8984244552313, 150.844315318574 -33.8983033355817, 150.844446666206 -33.8983747359424, 150.844582515349 -33.8981337708652, 150.843991087333 -33.8978007140901, 150.843808801623 -33.8980290862943, 150.842963664866 -33.8975499400794, 150.84291614464 -33.8975752378763, 150.84289232304 -33.8975808115749, 150.842900801828 -33.8975142997971, 150.843111683009 -33.8972937974921, 150.842422870144 -33.8968990474099, 150.842212729771 -33.8971319496668, 150.84212122956 -33.8970848984742, 150.841797353893 -33.8974154779592, 150.841397535165 -33.8971593406582, 150.841082299228 -33.8987160565089, 150.841086111425 -33.898718206796, 150.843228187005 -33.8999241691807, 150.843414378787 -33.8996909239624))\nAYCA-DLVJU\tSettlers Run Estate\tReady for service\tPOLYGON ((145.251979560089 -38.1348295175072, 145.251859781195 -38.1348637827722, 145.251404929452 -38.1355469522695, 145.250570950472 -38.1372280900552, 145.250931838478 -38.1373517899301, 145.250920961455 -38.1373793882465, 145.251064980706 -38.1376344726112, 145.251297337668 -38.1375732131517, 145.251438010155 -38.1378586486363, 145.251481535294 -38.1378573708144, 145.251672432938 -38.1382842790978, 145.251721888525 -38.1382662525415, 145.251855953272 -38.1385638273268, 145.253023931395 -38.1381781596765, 145.253203739994 -38.1380917050261, 145.253138109029 -38.1380234721937, 145.252960450177 -38.1374916245091, 145.253344028675 -38.13722514352, 145.251979560089 -38.1348295175072))\nAYAA-FEBBY\tCarlingford Estate\tReady for service\tPOLYGON ((144.987274126825 -37.6627376909728, 144.987273302035 -37.6627393103972, 144.988551896908 -37.6628905720119, 144.989521532644 -37.6629849292671, 144.99132034579 -37.6631681660865, 144.99135947955 -37.6629412106233, 144.991341415241 -37.6629114668401, 144.991302662758 -37.6628793299013, 144.991139259648 -37.6626682038579, 144.990938255657 -37.6626441109818, 144.990830954971 -37.6617483332662, 144.990793241181 -37.661723973305, 144.990983708568 -37.661578982561, 144.991180113479 -37.6614518776769, 144.991124484972 -37.6611868122546, 144.99074736133 -37.6612373365101, 144.990614244938 -37.6607777473947, 144.990317467216 -37.6609090136052, 144.99035462655 -37.6606594227226, 144.989989900271 -37.6608674803474, 144.989557529597 -37.6610360608311, 144.988945829406 -37.6611646965322, 144.988668729647 -37.6612379116809, 144.988527010702 -37.6614007854214, 144.988772452949 -37.6617554378689, 144.988579584666 -37.6618475495464, 144.988453978609 -37.6619315416362, 144.987877746984 -37.6623168603568, 144.987701919279 -37.6623974111317, 144.987556161096 -37.6625049750024, 144.987571582645 -37.6625181816796, 144.987274126825 -37.6627376909728))\nAYCA-VPX4J\tKirkham Rise\tReady for service\tPOLYGON ((150.705375039098 -34.022790678117, 150.705616417158 -34.0218732830637, 150.705739552333 -34.0216572642642, 150.706299664942 -34.0211009874213, 150.706996980046 -34.0205894813789, 150.707028674228 -34.0205698371776, 150.707539494649 -34.0210827964666, 150.70780190848 -34.0209214940832, 150.705566438161 -34.0182882780889, 150.705424050585 -34.0182123596948, 150.705307935676 -34.0182001429718, 150.705132674625 -34.018252806175, 150.706359121826 -34.0197028139403, 150.70623607145 -34.0197763191517, 150.70594813075 -34.0199667773002, 150.705848815531 -34.0200383127124, 150.705686838121 -34.0201582038641, 150.705529917073 -34.0202821472308, 150.705377724692 -34.0204103907014, 150.705229983557 -34.0205421707562, 150.705115940665 -34.0206502609717, 150.704974283782 -34.0207867639856, 150.704848015132 -34.0209219344146, 150.704730060376 -34.0210622012065, 150.704621633663 -34.0212153287894, 150.704533711255 -34.02136664447, 150.704519949725 -34.0213922263247, 150.704449903096 -34.0215314412193, 150.704406167335 -34.0216530382831, 150.704381829806 -34.0217247363512, 150.704365227687 -34.0217867655844, 150.704211145079 -34.0224285434447, 150.704121396901 -34.0228023512609, 150.704079966524 -34.0229983426248, 150.704567314669 -34.0231637663665, 150.704892383337 -34.0231520616872, 150.705189488828 -34.023016829657, 150.705375039098 -34.022790678117))\nAYCA-KD23I\tRenaissance Rise\tReady for service\tPOLYGON ((145.081302875535 -37.6023091045257, 145.081192871282 -37.6029874157932, 145.08112959968 -37.6033616880669, 145.08089609293 -37.6047429649918, 145.08112852235 -37.6047647612318, 145.082349355727 -37.604928579938, 145.082434983166 -37.6045017599887, 145.082814683113 -37.6045418554811, 145.082827885889 -37.6044516064802, 145.083367849987 -37.6045015601637, 145.083674061229 -37.6044936317022, 145.084128401676 -37.6043985115626, 145.083989393964 -37.603979660074, 145.08409516781 -37.6039576319938, 145.084119324702 -37.603924586995, 145.083951250655 -37.6034190982, 145.083909244605 -37.6033984109242, 145.083864098101 -37.6032127001488, 145.083940303599 -37.6031983675563, 145.083848328175 -37.6029102926295, 145.083695263842 -37.6029425376194, 145.082978707333 -37.6029916575108, 145.082442858871 -37.6029361977699, 145.08245007872 -37.6028920424542, 145.082180548702 -37.6028641454437, 145.082173328697 -37.6029083007388, 145.081454222024 -37.6028338683376, 145.081530264333 -37.60233380129, 145.081302875535 -37.6023091045257))\nACPV\tPalmview\tReady for service\tPOLYGON ((153.06353615169382 -26.735238042555888, 153.0633162105546 -26.73679987640579, 153.0641262376771 -26.736905275463659, 153.0642335260377 -26.736852575946941, 153.06433544998026 -26.736838203347219, 153.064469560431 -26.736895693735161, 153.06455002670145 -26.737005883564152, 153.06455002670145 -26.73710170071999, 153.06571946983195 -26.737264589699645, 153.06610034351206 -26.735233251621526, 153.0659984195695 -26.735099105377135, 153.06585894470072 -26.734993704645557, 153.06426034812785 -26.734782902889393, 153.06412087325907 -26.734787693842737, 153.06403504257059 -26.73484039431618, 153.06394921188212 -26.734897885713913, 153.06389556770182 -26.734993704645557, 153.06385265235758 -26.735276370023623, 153.06353615169382 -26.735238042555888))\nAYCA-G8KWU\tSpring Farm\tReady for service\tPOLYGON ((150.735698234826 -34.0658369930352, 150.734943809828 -34.0678646851507, 150.73516735534 -34.0681528814037, 150.735225432072 -34.0681014858058, 150.735396471836 -34.0678729362758, 150.736579652174 -34.0684755977142, 150.736794267408 -34.0681865878142, 150.737113804759 -34.068355610693, 150.737148845313 -34.0684652535606, 150.737423121365 -34.0686091823414, 150.738170551333 -34.067605416561, 150.737838024549 -34.0674323939897, 150.738037424351 -34.0671866853977, 150.737681905266 -34.0670026638933, 150.73785368146 -34.0667731147133, 150.737290215653 -34.066477426869, 150.737148575399 -34.066416714939, 150.736677144804 -34.0662971940721, 150.736582451449 -34.0665558757176, 150.73643478534 -34.0664709337067, 150.736495224026 -34.0663109283063, 150.736470197423 -34.0662598643185, 150.736359455949 -34.0662430689055, 150.736316396917 -34.0663214727434, 150.73602809528 -34.0662477143387, 150.736172259204 -34.0657848892294, 150.735698234826 -34.0658369930352))\nAYCA-I9H4I\tOsprey Subdivision\tReady for service\tPOLYGON ((118.613864891264 -20.4156691923102, 118.613955613954 -20.4160194224241, 118.613755101491 -20.416028095368, 118.612839737415 -20.4162227119678, 118.612988933773 -20.4186622708339, 118.613454801616 -20.4186571458605, 118.613454205011 -20.4190057329688, 118.6141714124 -20.4190016905155, 118.614168992431 -20.4186874983477, 118.614724861475 -20.4187000515432, 118.614762485267 -20.4167378373955, 118.614853561155 -20.416212522534, 118.614784377649 -20.4156874627919, 118.614945972723 -20.4156672402895, 118.615045501563 -20.4156271683827, 118.615053640734 -20.4156377519798, 118.615156752777 -20.4156036169592, 118.615111626922 -20.4154951428425, 118.614996440344 -20.4155325116749, 118.615007197014 -20.4155778594864, 118.614730275263 -20.4156069165459, 118.613864891264 -20.4156691923102), (118.614106529595 -20.4157163291041, 118.614469367814 -20.4156994504823, 118.614502207998 -20.415727626978, 118.614547571672 -20.4162393276979, 118.614169056927 -20.4162836101118, 118.614106529595 -20.4157163291041))\nAYAA-GNWAI\tEstuary\tReady for service\tPOLYGON ((144.455436423453 -38.2012828124497, 144.456035871434 -38.2011906845718, 144.456135963504 -38.2012197527414, 144.455629805361 -38.203616121605, 144.457595076901 -38.2038675659868, 144.457921629406 -38.2021752513809, 144.457835203727 -38.202113577859, 144.457394964162 -38.2011652588429, 144.456723048333 -38.2013543978017, 144.456524112577 -38.2008939947609, 144.456495676925 -38.2008933783303, 144.456495373843 -38.2009020843802, 144.456461532996 -38.2008841707447, 144.456445401043 -38.2006101358137, 144.456285872499 -38.2006487138869, 144.455418597269 -38.2007906612151, 144.455436423453 -38.2012828124497))\nAYAA-FXOCV\tTuart Ridge\tReady for service\tPOLYGON ((115.813532501132 -32.34050648256, 115.813583878706 -32.3423620760915, 115.81485589403 -32.3423837041935, 115.81587620016 -32.3425223525469, 115.816773754074 -32.3405767965665, 115.816743719882 -32.3405706006413, 115.816396401179 -32.3404574428817, 115.8162942045 -32.340708208001, 115.815881765428 -32.3405726638559, 115.815637309361 -32.3405613294114, 115.814299767609 -32.3405452160864, 115.814298801365 -32.3404003905186, 115.81412836965 -32.3403938342243, 115.814128686695 -32.3404938569897, 115.813842152023 -32.3404892371743, 115.813532501132 -32.34050648256))\nAYCA-1VT8Y4\tRobinson Park\tContracted\tPOLYGON ((115.995133701198 -32.0839373972776, 115.993777135364 -32.0850943246556, 115.996038991943 -32.0870166023965, 115.997394583178 -32.0858613805574, 115.995133701198 -32.0839373972776))\n17341648\tDiamond Crescent\tCheck with carrier\tPOLYGON ((150.8808672 -33.895387894500004, 150.879815296 -33.894668337, 150.8795568 -33.894491218, 150.879141728 -33.894206466, 150.878077568 -33.8952851085, 150.87837024 -33.8954853525, 150.877676896 -33.8961883525, 150.877472768 -33.8966481515, 150.877666816 -33.8967813515, 150.87789216 -33.896935253, 150.87791376 -33.896954974, 150.877919168 -33.896951015, 150.877924576 -33.896947056, 150.8779296 -33.896943097, 150.877935008 -33.8969393045, 150.877940416 -33.8969355305, 150.877946176 -33.8969317565, 150.877951552 -33.8969280565, 150.877957312 -33.896924375000005, 150.877963072 -33.89692086, 150.87796848 -33.896917345, 150.87797424 -33.8969138485, 150.87798 -33.896910426, 150.877986112 -33.896907096, 150.877991872 -33.8969038585, 150.877998016 -33.896900602500004, 150.878003776 -33.8968974575, 150.878009888 -33.8968943125, 150.878016 -33.8968912415, 150.878022112 -33.896888281500004, 150.878028256 -33.8968853955, 150.87803472 -33.896882528, 150.878040832 -33.896879734500004, 150.878046976 -33.896876941, 150.87805344 -33.8968743325, 150.878059936 -33.896871724, 150.8780664 -33.896869208, 150.878072896 -33.8968666735, 150.878079008 -33.89686425, 150.878085856 -33.896861919, 150.87809232 -33.896859662000004, 150.878098816 -33.896857405, 150.87810528 -33.896855259, 150.878112128 -33.896853187, 150.878118592 -33.8968512075, 150.87812544 -33.896849228, 150.878132288 -33.8968473225, 150.878139136 -33.896845528, 150.8781456 -33.896843826, 150.878152448 -33.8968421055, 150.878159296 -33.896840496, 150.878166112 -33.8968389605, 150.87817296 -33.8968375175, 150.87818016 -33.8968360745, 150.878187008 -33.896834724, 150.878193856 -33.896833466000004, 150.878201056 -33.8968323005, 150.878207872 -33.896831135, 150.87821472 -33.896830136, 150.87822192 -33.8968291555, 150.878228768 -33.896828249, 150.878235968 -33.8968273425, 150.878242816 -33.896826547, 150.878249984 -33.896825918000005, 150.878256832 -33.896825289, 150.878264032 -33.896824734, 150.878271232 -33.8968241975, 150.87827808 -33.8968237535, 150.87828528 -33.896823476, 150.87829248 -33.8968231245, 150.878299328 -33.8968229395, 150.878306528 -33.896822847, 150.878313728 -33.8968227545, 150.878320928 -33.8968227545, 150.878327776 -33.896822847, 150.878334976 -33.896823032, 150.878342176 -33.896823217, 150.878349376 -33.896823476, 150.878356192 -33.896823846000004, 150.878363392 -33.89682429, 150.878370592 -33.8968248265, 150.87837744 -33.896825363, 150.87838464 -33.8968260845, 150.878391488 -33.896826806, 150.878398688 -33.8968275275, 150.878405536 -33.896828434, 150.878412736 -33.896829322, 150.878419552 -33.896830321, 150.878426752 -33.896831394, 150.8784336 -33.896832578, 150.878440448 -33.896833743500004, 150.878447648 -33.896835094000004, 150.878454496 -33.8968364445, 150.878461312 -33.896837795, 150.87846816 -33.896839312000004, 150.878475008 -33.8968408475, 150.878481856 -33.8968424755, 150.878488672 -33.8968441775, 150.87849552 -33.896845972, 150.878502368 -33.896847785, 150.878508832 -33.896849672, 150.87851568 -33.8968516515, 150.878522176 -33.8968537235, 150.878528992 -33.8968557955, 150.878535488 -33.8968579415, 150.878541952 -33.8968601985, 150.8785488 -33.8968624555, 150.878555296 -33.896864879, 150.87856176 -33.8968673025, 150.878568256 -33.8968697445, 150.878574368 -33.896872353, 150.878580832 -33.896874961500004, 150.878587328 -33.8968776625, 150.87859344 -33.8968803635, 150.878599552 -33.896883231000004, 150.878606048 -33.896886117, 150.87861216 -33.896889003, 150.878618272 -33.896892055500004, 150.878624416 -33.896895034, 150.878630176 -33.896898179000004, 150.878636288 -33.8969014165, 150.8786424 -33.896904654000004, 150.87864816 -33.8969078915, 150.87865392 -33.896911314, 150.87865968 -33.8969147365, 150.87866544 -33.896918159, 150.8786712 -33.896921674, 150.87867696 -33.896925263, 150.878682368 -33.896928963, 150.878688128 -33.8969326445, 150.878892256 -33.897072782, 150.879079072 -33.897200765, 150.879099616 -33.897179878500005, 150.879340096 -33.8969361595, 150.879447712 -33.8968268985, 150.879456736 -33.896817815, 150.879573728 -33.896699452, 150.879690368 -33.896581015, 150.879807008 -33.8964626705, 150.87992256 -33.896345399, 150.879979456 -33.896287975, 150.880035968 -33.896230477, 150.880149376 -33.896115629, 150.880262752 -33.896000707, 150.880375808 -33.8958857665, 150.880489216 -33.8957708445, 150.880602592 -33.895655996500004, 150.880716 -33.8955410745, 150.880843072 -33.8954122775, 150.8808672 -33.895387894500004))\nAYCA-WHHP1\tThe Vines\tReady for service\tPOLYGON ((151.323950914147 -32.8286091895677, 151.323862710181 -32.8290400602815, 151.322337349494 -32.8288172928411, 151.321903200388 -32.8310103597457, 151.322978691635 -32.8311527954353, 151.323320597097 -32.8294892386041, 151.323699342608 -32.8295414935229, 151.323707415443 -32.8294998961817, 151.326234519859 -32.8298539176254, 151.326248927672 -32.829779799522, 151.326593840896 -32.8298277558355, 151.326748249676 -32.8290084029667, 151.323950914147 -32.8286091895677))\n172\tGemstone Rise\tReady for service\tPOLYGON ((151.9103253116011 -27.572448933673176, 151.9122404088362 -27.572762773849586, 151.91212239164162 -27.573257308062871, 151.91242279905245 -27.573328634929418, 151.91211166281067 -27.575016690560595, 151.90989079374029 -27.574683836575836, 151.90988006490929 -27.574655306187342, 151.9103253116011 -27.572448933673176))\nAYCA-LJ5ZI\tMcKeachies Run\tReady for service\tPOLYGON ((151.538040753666 -32.6974762147736, 151.538128077609 -32.6977602634467, 151.541497149989 -32.6972460166704, 151.541612380558 -32.6971141611063, 151.541569414311 -32.6968223237686, 151.541438592021 -32.6962337891955, 151.541420273741 -32.6960655035107, 151.541410079931 -32.695910281247, 151.539517719304 -32.6956247767485, 151.539371739278 -32.6956686092303, 151.539430843795 -32.6959387203577, 151.539413312688 -32.6960126959389, 151.538936268909 -32.696100395371, 151.538964689596 -32.6963299263864, 151.53880084678 -32.6963542932722, 151.538848358042 -32.696545450057, 151.538574678262 -32.6965953151002, 151.538674769163 -32.6969777241303, 151.538018495818 -32.6971025717863, 151.538046779274 -32.697227446042, 151.538091575947 -32.6974584197819, 151.538040753666 -32.6974762147736))\n10475\tLakelands\tReady for service\tPOLYGON ((115.76568603515625 -32.466486497956943, 115.76750457286835 -32.466509127901212, 115.76725244522095 -32.467962877747304, 115.76687157154083 -32.468885240401271, 115.76676964759827 -32.469577695673983, 115.76624393463135 -32.4694102396583, 115.76598107814789 -32.469414765500659, 115.76609909534454 -32.469125111131255, 115.76547145843506 -32.469097955986349, 115.76506912708282 -32.469061749113735, 115.76519787311554 -32.468595584328462, 115.76532661914825 -32.46857748079298, 115.76545000076294 -32.467866914150065, 115.76551973819733 -32.467808077170304, 115.76568603515625 -32.466486497956943))\nAYAA-FUGCA\tSaratoga Estate\tReady for service\tPOLYGON ((144.71646045913 -37.9066893056224, 144.715944982794 -37.9065608781875, 144.715212828873 -37.9064576747353, 144.715160980026 -37.9064030944268, 144.714746024573 -37.9087294761261, 144.716954746915 -37.9089928165865, 144.717035666636 -37.9084671158179, 144.71726149579 -37.9069283506541, 144.71646045913 -37.9066893056224))\nAYCA-17GFGC\tQuarters\tReady for service\tPOLYGON ((145.249468999997 -38.0967720000281, 145.249017999997 -38.0972210000281, 145.248999999997 -38.0971760000281, 145.248975999997 -38.0971320000282, 145.248947999997 -38.0970900000281, 145.248915999997 -38.0970500000281, 145.248878999997 -38.0970130000282, 145.248837999997 -38.0969780000281, 145.248794999997 -38.0969450000281, 145.248746999997 -38.0969190000282, 145.248697999997 -38.0968950000281, 145.248646999997 -38.0968740000281, 145.248592999997 -38.0968570000281, 145.248537999997 -38.0968430000281, 145.248481999997 -38.0968330000281, 145.248385999997 -38.0968200000281, 145.248297999997 -38.0972280000281, 145.248157999997 -38.0972090000281, 145.248103999997 -38.0974580000281, 145.248069999997 -38.0974540000281, 145.247903999997 -38.0982260000281, 145.247880999997 -38.0982230000281, 145.247789999997 -38.0986500000281, 145.248227999997 -38.0987090000282, 145.248166999997 -38.0989930000281, 145.248109999997 -38.098985000028, 145.248083999997 -38.0991100000281, 145.24865691519 -38.0991867135242, 145.248959182768 -38.0977832949489, 145.249002999992 -38.0975790000258, 145.24950899999 -38.0976470000254, 145.249640999992 -38.0975730000241, 145.249682999992 -38.0973770000242, 145.250341166571 -38.0974537306647, 145.250575947547 -38.0965124502219, 145.2503625496 -38.0964858826004, 145.250392739537 -38.0963549661687, 145.250356412733 -38.0963485642738, 145.250387298238 -38.0962063448647, 145.250603181572 -38.0962370390194, 145.25071794869 -38.0957040928047, 145.250655498448 -38.0956945468696, 145.250686946943 -38.0955573926298, 145.25034894316 -38.0955094071725, 145.250376427303 -38.0953410631647, 145.250763039618 -38.0953929888845, 145.251026999992 -38.0941640000242, 145.250348692521 -38.0940714173574, 145.250020999997 -38.0956980000282, 145.249981999997 -38.0957200000281, 145.249854999997 -38.0957030000282, 145.249687999997 -38.0956560000282, 145.249613999997 -38.0958170000282, 145.249624999997 -38.0958200000281, 145.249458999997 -38.0965900000281, 145.249339999997 -38.0966730000281, 145.249369999997 -38.096702000028, 145.249400999997 -38.0967270000282, 145.249433999997 -38.0967510000281, 145.249468999997 -38.0967720000281))\n10220\tClarkson-Somerly\tReady for service\tPOLYGON ((115.73165953159332 -31.686396087611623, 115.73227643966675 -31.68602634005039, 115.73222279548645 -31.685957868118159, 115.73238909244537 -31.685893960935843, 115.73268413543701 -31.685702239124854, 115.73291480541229 -31.685560729915139, 115.73307037353516 -31.685446609427565, 115.73332786560059 -31.685254886692594, 115.73346734046936 -31.685177284520616, 115.73366582393646 -31.68539183154369, 115.73398768901825 -31.685163590012955, 115.73432564735413 -31.684921653377629, 115.73442757129669 -31.685054033878849, 115.73449730873108 -31.68504490419518, 115.73464214801788 -31.685159025176617, 115.7347172498703 -31.685542470646556, 115.73480308055878 -31.685811794493898, 115.7348620891571 -31.686040034430778, 115.73495864868164 -31.686341310288078, 115.73363900184631 -31.687236002524521, 115.7334566116333 -31.687345556083255, 115.73348879814148 -31.687382073907436, 115.73325276374817 -31.687541839219275, 115.73297917842865 -31.687706168967392, 115.73289334774017 -31.687697039544577, 115.73200821876526 -31.686774963214386, 115.73165953159332 -31.686396087611623))\nAYCA-11AP93\tSomerset Rise\tReady for service\tPOLYGON ((146.984624526909 -36.0236020070927, 146.984596925262 -36.023735527618, 146.985452085438 -36.0255239162258, 146.985428874791 -36.0257015215144, 146.985497339361 -36.0258654600801, 146.985541036858 -36.0258530027336, 146.98556465234 -36.0258693027687, 146.985481440488 -36.026305449018, 146.985431190056 -36.0264096483977, 146.985606569643 -36.0264429839124, 146.985657365894 -36.0265336593373, 146.985869439534 -36.02653115309, 146.985853240962 -36.026505923803, 146.98655134595 -36.0265020389586, 146.986687539395 -36.0258151011601, 146.98692147374 -36.0258459475848, 146.987268962255 -36.0239402642954, 146.984624526909 -36.0236020070927))\nAYCA-U7W4J\tLakeland Development (VR Land)\tContracted\tPOLYGON ((145.434943999999 -38.076076000029, 145.434852999999 -38.076625000029, 145.435192999999 -38.077333000029, 145.435295999999 -38.077302000029, 145.435532999999 -38.077200000029, 145.435707999998 -38.0774520000289, 145.435742999999 -38.077437000029, 145.435902999999 -38.077666000029, 145.435840999999 -38.077694000029, 145.435666999998 -38.077655000029, 145.435500999998 -38.0777270000289, 145.435397999999 -38.077758000029, 145.435513999998 -38.0779990000289, 145.436112999999 -38.0777390000289, 145.436288999999 -38.077992000029, 145.436852999999 -38.077747000029, 145.436822999998 -38.077703000029, 145.437152999999 -38.077560000029, 145.437220999999 -38.077615000029, 145.437294999999 -38.0776660000289, 145.437372999999 -38.0777120000289, 145.437468999999 -38.0777600000289, 145.437574999998 -38.077800000029, 145.437684999999 -38.077834000029, 145.437796999998 -38.077862000029, 145.438049999999 -38.077910000029, 145.438331999999 -38.077964000029, 145.438560999999 -38.0772100000289, 145.438599999999 -38.077218000029, 145.438727999998 -38.076797000029, 145.434943999999 -38.076076000029))\nAYAA-G9SX5\tSussex Rise\tReady for service\tPOLYGON ((150.581802283005 -35.1593660247606, 150.581800361766 -35.1594964381377, 150.581920375732 -35.1595756449816, 150.581978048634 -35.1598051534222, 150.582286767305 -35.1597965638475, 150.582337106937 -35.1610575404136, 150.582712962179 -35.161670335901, 150.583625995378 -35.1612574574806, 150.583833729395 -35.1610895742763, 150.583943128456 -35.1608534871599, 150.5839041553 -35.1596070705385, 150.583862637463 -35.1594460533458, 150.584332284918 -35.1588649728613, 150.584276910033 -35.158806747469, 150.581929482927 -35.1588668112509, 150.581825429889 -35.1589129284328, 150.58182136721 -35.1589675897438, 150.581704058681 -35.1589646928981, 150.581701012629 -35.1590903209824, 150.581808767273 -35.1590969026489, 150.581802283005 -35.1593660247606))\n10214\tClarkson-Somerly\tReady for service\tPOLYGON ((115.7305920124054 -31.683762174712466, 115.73065638542175 -31.683689136201426, 115.73215305805206 -31.6833832868123, 115.7321959733963 -31.68341524127322, 115.73234081268311 -31.683921946255012, 115.73238909244537 -31.68410910685509, 115.73251247406006 -31.684620372912455, 115.73294162750244 -31.684547335076658, 115.73298990726471 -31.684702540409031, 115.73308646678925 -31.684935347920991, 115.73333323001862 -31.685273146017749, 115.7330596446991 -31.685451174249756, 115.73292016983032 -31.685556165098319, 115.73236763477325 -31.68591678493457, 115.7322496175766 -31.68602634005039, 115.73167562484741 -31.686396087611623, 115.73150932788849 -31.686218061191934, 115.73133230209351 -31.68592591453249, 115.73125183582306 -31.685802664884758, 115.73116600513458 -31.685670285451202, 115.7310962677002 -31.685501387279107, 115.73103725910187 -31.685323359143407, 115.73096215724945 -31.685076858084123, 115.73079586029053 -31.684451472829966, 115.73066711425781 -31.684136496179551, 115.7305920124054 -31.683762174712466))\nAYCA-FKVUE\tKialla Lakes Estate\tReady for service\tPOLYGON ((145.402353581587 -36.4323583231229, 145.402361952009 -36.4295407500526, 145.401166439998 -36.4295413800269, 145.400869136131 -36.4309605468184, 145.400753612411 -36.4309556251472, 145.400736413537 -36.4310470817939, 145.400848185388 -36.4310648908829, 145.400747898692 -36.4315398949131, 145.400656787921 -36.4316009141341, 145.40065336464 -36.431745095953, 145.4013013408 -36.4317485051814, 145.40129818024 -36.432302593852, 145.402353581587 -36.4323583231229))\n10669\tWandi-Honeywood\tReady for service\tPOLYGON ((115.86132287979126 -32.19070947854437, 115.8610063791275 -32.190913769195184, 115.86147308349609 -32.191417684173338, 115.86119949817657 -32.191590194966253, 115.86080253124237 -32.191785404153357, 115.8608615398407 -32.191862579763004, 115.86053967475891 -32.192026010249762, 115.86058795452118 -32.192112265110573, 115.86024463176727 -32.192312012895421, 115.8604484796524 -32.192579855827965, 115.86106538772583 -32.192770523197957, 115.86095809936523 -32.193029285418312, 115.86079180240631 -32.193401538550049, 115.86129069328308 -32.193564966273264, 115.86119949817657 -32.193791948735289, 115.86155891418457 -32.193909979391812, 115.86143553256989 -32.194218674231273, 115.86178958415985 -32.194300387395856, 115.86251378059387 -32.192693348358226, 115.86241185665131 -32.192643411662345, 115.86247622966766 -32.192321092329756, 115.86210072040558 -32.192216678780056, 115.86213827133179 -32.191808102868862, 115.86190760135651 -32.191408604648878, 115.86132287979126 -32.19070947854437))\nAYCA-1IFF61\tGlebe Hill\tContracted\tPOLYGON ((147.430894 -42.8837890000249, 147.428589 -42.8834780000249, 147.428561 -42.8834780000248, 147.428575 -42.8837810000249, 147.428637 -42.8838310000249, 147.428665 -42.8840950000249, 147.428592 -42.8841680000248, 147.428618 -42.8847330000248, 147.428815 -42.8847270000248, 147.42939 -42.8848970000249, 147.429439 -42.8848340000249, 147.429784 -42.8849500000249, 147.430034 -42.8850000000249, 147.43025 -42.8850640000249, 147.430161 -42.8851760000248, 147.431197 -42.8855040000249, 147.431413392077 -42.8840052905052, 147.430894 -42.8837890000249))\nAYCA-189CVK\tHeron Park\tReady for service\tPOLYGON ((115.936707412129 -32.1181321904035, 115.938073490616 -32.1192704379671, 115.938251 -32.1191160000132, 115.93825 -32.1190390000132, 115.938068 -32.1188900000131, 115.93818 -32.1187910000131, 115.938527250656 -32.1184898679931, 115.938754549108 -32.1186791126502, 115.938854 -32.1187850000131, 115.939082 -32.1189740000131, 115.93926 -32.1188200000131, 115.93919 -32.1187640000131, 115.93928 -32.1186850000132, 115.93949799866 -32.1184967948023, 115.939344 -32.1183600000131, 115.939529 -32.1181980000131, 115.939454 -32.1181350000131, 115.939679 -32.1179430000132, 115.938287 -32.1167590000131, 115.937041 -32.1178420000132, 115.93693 -32.1179390000131, 115.936707412129 -32.1181321904035))\n17399469\tHolmesglen Private Hospital\tCheck with carrier\tPOLYGON ((145.050038016 -37.935096993500004, 145.049615008 -37.937232004500004, 145.051371008 -37.9374130085, 145.051780992 -37.9353129995, 145.051371008 -37.935262994, 145.051362016 -37.9353050075, 145.051055008 -37.9352680075, 145.051064 -37.935224995, 145.050038016 -37.935096993500004))\nAYCA-GDD50\tPennyroyal Development\tReady for service\tPOLYGON ((144.578526996617 -37.6577821951206, 144.57637224301 -37.6575214053497, 144.576312410381 -37.6576148231147, 144.576290966712 -37.6576116953518, 144.576271836859 -37.6576088578746, 144.576256979697 -37.6576056887988, 144.576210114044 -37.6577445601795, 144.57604089188 -37.658019386527, 144.575923290673 -37.6586338909039, 144.575518488285 -37.6592817789832, 144.575557495536 -37.6592864973249, 144.575530183831 -37.6594292027611, 144.575496666303 -37.6594250444959, 144.575470289402 -37.6594212735739, 144.575439583033 -37.6594164412883, 144.575427441622 -37.6594140457971, 144.575372388048 -37.6597017003157, 144.578041944688 -37.660024027995, 144.578420370903 -37.6580429302004, 144.578459081065 -37.6580202757145, 144.578480936626 -37.6580229188528, 144.578526996617 -37.6577821951206))\nAYCA-16LJ11\tNorfolk Estates Pty Ltd\tUnder construction\tPOLYGON ((153.326696189634 -27.8330656161685, 153.327485 -27.834122999984, 153.327464 -27.834227999984, 153.327928 -27.834302999984, 153.327947 -27.834211999984, 153.328245 -27.834259999984, 153.328295 -27.834023999984, 153.328595 -27.834071999984, 153.32876 -27.834145999984, 153.328763 -27.834131999984, 153.328982 -27.834166999984, 153.329036 -27.833900999984, 153.329157165793 -27.833768967267, 153.329291 -27.833790999984, 153.329345 -27.833523999984, 153.329613 -27.833566999984, 153.329668 -27.833300999984, 153.329691 -27.833306999984, 153.329791 -27.833168999984, 153.329846 -27.832902999984, 153.331541183448 -27.8331763111423, 153.331591414011 -27.833007141046, 153.331591185743 -27.8329647759517, 153.331592037349 -27.832644659916, 153.331654547218 -27.8326470671937, 153.331699047603 -27.8326217284279, 153.33172603722 -27.8325778443519, 153.331785272442 -27.832408459849, 153.329858 -27.832097999984, 153.329872 -27.832075999984, 153.329813 -27.8320649999839, 153.329769 -27.832345999984, 153.329439 -27.832290999984, 153.329404730105 -27.8325565394506, 153.329103952458 -27.832833608397, 153.328376192027 -27.8321984045569, 153.326696189634 -27.8330656161685))\nAYCA-FCJYS\tReid Street Subdivision\tReady for service\tPOLYGON ((148.779103252302 -26.5598998844113, 148.779099027791 -26.5599252976959, 148.782168720002 -26.5602837599718, 148.782251000555 -26.5597526695565, 148.782234971918 -26.5597502194174, 148.781178980896 -26.5596171281676, 148.781471051878 -26.5575468144431, 148.780550340781 -26.5574399435037, 148.780505972339 -26.5577490752468, 148.78031392093 -26.5576713723364, 148.780111486265 -26.5576847682893, 148.780114047129 -26.5576481710494, 148.779854101973 -26.5576206354816, 148.779834594447 -26.5577311003473, 148.779436531013 -26.5576843084027, 148.779103252302 -26.5598998844113))\nAYCA-J6QDT\tSanctuary\tReady for service\tPOLYGON ((151.643496053936 -32.8722398680756, 151.643460857602 -32.8724954360406, 151.643896895344 -32.8727364219759, 151.644644930727 -32.8719524408077, 151.644855554477 -32.8723581764937, 151.645722607313 -32.8721955963398, 151.645907306637 -32.8717776259141, 151.646017989419 -32.8712889752994, 151.646220320532 -32.8709859754144, 151.646653781642 -32.8710470742042, 151.64664224671 -32.870999235729, 151.646646620126 -32.8709836126401, 151.64673065832 -32.8703628085602, 151.646657462948 -32.8702400207387, 151.646728301358 -32.869926971969, 151.646738634301 -32.8696040405478, 151.646737258864 -32.8695628652134, 151.646376740134 -32.8695027093183, 151.646063537773 -32.8692786754481, 151.645957677837 -32.8692090761243, 151.645821539747 -32.8693575989804, 151.645483433469 -32.8695234227482, 151.645266633159 -32.8696417837637, 151.644847210608 -32.8699186398961, 151.644593487068 -32.8702708555343, 151.644470485587 -32.8706292665899, 151.644436858989 -32.8708834254146, 151.644421459554 -32.8710904084983, 151.64444282191 -32.8713064916348, 151.644513858134 -32.8714959406428, 151.644274288349 -32.8715413038243, 151.644031479026 -32.8716707909987, 151.643806232346 -32.8718954034428, 151.643496053936 -32.8722398680756), (151.644906313186 -32.8700009812975, 151.644983816181 -32.8699251899339, 151.645071202418 -32.8698672189901, 151.645276925787 -32.8700648820609, 151.645140545594 -32.870182571543, 151.644906313186 -32.8700009812975))\nAYCA-JJ268\tBungarribee (Bunya)\tReady for service\tPOLYGON ((150.86617327815 -33.7753775003967, 150.868515469207 -33.7756930873314, 150.868569099473 -33.7755041411002, 150.868783560298 -33.7749946697172, 150.868915028997 -33.7747991652324, 150.869071743088 -33.7745304180726, 150.869364798858 -33.7741055219273, 150.869326312282 -33.7740661378429, 150.866008561025 -33.7734915588608, 150.865759915983 -33.7735818191992, 150.865744639698 -33.7743155857701, 150.865803669717 -33.775169788108, 150.865879993441 -33.7753517467887, 150.86617327815 -33.7753775003967), (150.8677408172 -33.7751465999744, 150.867924868452 -33.7751711357803, 150.867869558689 -33.7754474033797, 150.867807357445 -33.7754847554283, 150.867679435894 -33.7754677021988, 150.8677408172 -33.7751465999744), (150.868040389349 -33.7754688239224, 150.868095434865 -33.7751938735011, 150.868279467512 -33.7752184062813, 150.868219270012 -33.7755333259582, 150.868085028761 -33.775518996545, 150.868040389349 -33.7754688239224))\n17147925\tMallia Subdivision\tCheck with carrier\tPOLYGON ((144.963704896 -37.4063609625, 144.963390976 -37.4080679945, 144.966197888 -37.4083980345, 144.96620688 -37.408399015, 144.966570112 -37.406484986500004, 144.963744128 -37.4061459555, 144.963704896 -37.4063609625))\n17289902\tDales Rd\tCheck with carrier\tPOLYGON ((142.518738976 -38.373669001, 142.518428992 -38.3752809985, 142.517989088 -38.375235988, 142.51786992 -38.3759510315, 142.518665152 -38.376032043, 142.518732832 -38.375614979, 142.518996 -38.375641989, 142.518927968 -38.3760590345, 142.520403968 -38.3762079965, 142.52085504 -38.3738830275, 142.518738976 -38.373669001))\nAYCA-EEDPT\tNewleaf Bonnyrigg Development\tReady for service\tPOLYGON ((150.895881918938 -33.8885391409453, 150.896085365343 -33.888863367607, 150.896275495368 -33.8887809206225, 150.896530264508 -33.8891841802643, 150.896658289289 -33.8891247154328, 150.896684623627 -33.8891604130561, 150.896717351921 -33.8891471120233, 150.896940957955 -33.8895059770953, 150.896399862203 -33.8897320995866, 150.896356653652 -33.8898530760917, 150.896889658911 -33.8896744295375, 150.897232796728 -33.890087001663, 150.896756564312 -33.8903055935439, 150.8968685823 -33.8903047846849, 150.896870549063 -33.8903548655442, 150.896886167128 -33.8903936553436, 150.897024127612 -33.8903414432161, 150.897042571698 -33.8903048049558, 150.898347563511 -33.889725689396, 150.898392549697 -33.8896955035445, 150.898711622528 -33.8894262505823, 150.898749148879 -33.8894173368115, 150.899027552074 -33.8896098372824, 150.899110284537 -33.8896844853965, 150.899164443523 -33.8897721806541, 150.899180050723 -33.8898311982941, 150.899168609989 -33.8898477485204, 150.899150888186 -33.8898538781718, 150.899161829201 -33.8898979970593, 150.899383545538 -33.8898745035301, 150.899384264339 -33.8898309447677, 150.899350747314 -33.8898210864875, 150.899306102573 -33.8896937898364, 150.899465336742 -33.8895256146583, 150.899222126824 -33.8893596817071, 150.899640921328 -33.8889336553163, 150.897590948619 -33.8875316740726, 150.897544469887 -33.8875554483599, 150.897515311162 -33.8875789462811, 150.897271596364 -33.8878168623248, 150.897043922907 -33.8879888627591, 150.896840781415 -33.8881130715907, 150.896649523755 -33.8882047848568, 150.895881918938 -33.8885391409453))\n17328894\tIndooroopilly Shopping Centre\tCheck with carrier\tPOLYGON ((152.973822976 -27.49784301, 152.973420832 -27.497780998, 152.973471968 -27.497517021500002, 152.97349392 -27.497466997500002, 152.973534976 -27.497429017, 152.973587872 -27.4974049855, 152.972407072 -27.497634034, 152.972170912 -27.4988799905, 152.97176304 -27.500969972500002, 152.971742176 -27.501078956, 152.973155168 -27.501303953, 152.97316992 -27.501229971500003, 152.97332112 -27.5004469775, 152.973392032 -27.500075016500002, 152.973437056 -27.499842009, 152.973822976 -27.49784301))\nAYCA-G6YEX\tEast Newman\tReady for service\tPOLYGON ((119.748159268223 -23.3565346916548, 119.747995954147 -23.3562579150034, 119.747310343903 -23.3566018835049, 119.747256581929 -23.3566598844043, 119.747093212257 -23.357076701999, 119.747141518527 -23.3572004641001, 119.747087812055 -23.3572720877907, 119.747468556175 -23.3574864861114, 119.747513930199 -23.3575319248774, 119.747446909954 -23.3575729548233, 119.747456511626 -23.3575912155095, 119.747193550484 -23.3578057847632, 119.747646698661 -23.3586180674132, 119.747929497872 -23.3584891404044, 119.747952481086 -23.3585282169736, 119.748439621745 -23.3584566781926, 119.748517788207 -23.358886476072, 119.748945834922 -23.35897344895, 119.748935463913 -23.3590054161546, 119.749558654236 -23.3591906537928, 119.749835979746 -23.3591332089353, 119.749538792688 -23.3578487988418, 119.749419588635 -23.3573688434414, 119.749323658889 -23.3570544350002, 119.749153900554 -23.3566217285973, 119.749099376587 -23.3564963989894, 119.749000104684 -23.3562742534904, 119.748937274139 -23.3561428843382, 119.748159268223 -23.3565346916548))\nAYCA-LDBQ3\tNabilla Riverlinks\tReady for service\tPOLYGON ((148.95891731688 -21.1565352551378, 148.958828047021 -21.157320717926, 148.959244573408 -21.1573727076183, 148.961807207926 -21.1576281325089, 148.963419272067 -21.1577907093494, 148.963599169833 -21.1560239858282, 148.962308171581 -21.155882809622, 148.96225006579 -21.1562265888327, 148.96221230912 -21.1563785687267, 148.962167206494 -21.1567663591477, 148.961541510449 -21.1567112702735, 148.961273272223 -21.1566837481211, 148.95995002909 -21.1565479724482, 148.959943376937 -21.1566028774632, 148.959536841452 -21.1565595344814, 148.959341144217 -21.1565756690704, 148.95891731688 -21.1565352551378))\n17326917\tJoondalup Business Park South\tCheck with carrier\tPOLYGON ((115.768271872 -31.7572630115, 115.768349984 -31.757711044500002, 115.768362944 -31.757768006000003, 115.768433888 -31.758085984, 115.768481024 -31.758604021, 115.769373824 -31.759653951500002, 115.77072816 -31.759120985000003, 115.771037024 -31.7590149615, 115.77123216 -31.758915968, 115.771110112 -31.758748025000003, 115.770974048 -31.7585999695, 115.770639968 -31.757867018000002, 115.769598848 -31.756586041000002, 115.769217952 -31.756867019, 115.768865888 -31.757115955, 115.768677952 -31.75721604, 115.768473824 -31.757250968, 115.768271872 -31.7572630115))\nAYCA-ZTGYS\tAurora Estate\tReady for service\tPOLYGON ((145.000503999995 -37.6164610000256, 145.000491999995 -37.6164770000255, 145.001300998088 -37.6168670025282, 145.001155137771 -37.6170589517902, 145.001579369581 -37.6172569477593, 145.001974964992 -37.6174442234203, 145.002534414538 -37.6166894049288, 145.002574479125 -37.6164258030467, 145.002676525783 -37.6162570365584, 145.003248873064 -37.6158642854667, 145.003599784067 -37.6154886092078, 145.002497035949 -37.6149037469032, 145.002409348488 -37.6150106243651, 145.001675999989 -37.6146450000218, 145.00127940926 -37.6146425740493, 145.000057999995 -37.6162470000256, 145.000503999995 -37.6164610000256))\nAYAA-FPPUI\tThe Ponds\tReady for service\tPOLYGON ((150.902998287707 -33.706787340221, 150.902426685083 -33.7084430580159, 150.902620066321 -33.7084893410127, 150.903382062556 -33.7085960793764, 150.904071513658 -33.7086583457074, 150.904673131526 -33.7086603051816, 150.904773885296 -33.7083188537441, 150.904831582101 -33.7082683569809, 150.90560746141 -33.708251484188, 150.905595551408 -33.7078952439196, 150.905496897503 -33.7073058965309, 150.905251645048 -33.7066196952445, 150.904913698698 -33.7065796445326, 150.904539937562 -33.7067448883073, 150.903452954323 -33.7068851461472, 150.903345396922 -33.7068864660457, 150.902998287707 -33.706787340221))\nAYCA-1F6W0L\tStage 1\tReady for service\tPOLYGON ((152.98472448 -27.2346020099783, 152.984418119994 -27.2363518800127, 152.986008157271 -27.236573941858, 152.98715016 -27.2367333899783, 152.98745508 -27.2349839699783, 152.987155593073 -27.2349421245995, 152.986856400057 -27.2349002696565, 152.9855154696 -27.2347126530816, 152.98472448 -27.2346020099783))\n17332519\tKalimna Park - stage 12\tCheck with carrier\tPOLYGON ((151.938828 -27.4353350435, 151.939448992 -27.435390025500002, 151.939412992 -27.434802965, 151.939131136 -27.434266021, 151.939369088 -27.4340719745, 151.93957104 -27.432801006000002, 151.937354176 -27.432520028000003, 151.937070848 -27.434295991000003, 151.93754784 -27.4343560235, 151.937535968 -27.4344409755, 151.938325088 -27.434521987, 151.938367936 -27.4352859815, 151.938828 -27.4353350435))\n239\tRipley Valley\tReady for service\tPOLYGON ((152.78388176915914 -27.668471218456073, 152.78802309988009 -27.669041336129006, 152.78467570303704 -27.670941706886243, 152.78388176915914 -27.668471218456073))\nAYAA-GHIU2\tProvidence Estate\tReady for service\tPOLYGON ((144.891117820951 -37.6221723380054, 144.891226740286 -37.6221356924046, 144.890636743523 -37.6210725417118, 144.8877293394 -37.6207005339947, 144.887637209471 -37.6211520894176, 144.887771351243 -37.6211702335781, 144.887519499653 -37.6224090855957, 144.887870323562 -37.6224560037997, 144.88782847152 -37.6227026126977, 144.887961969108 -37.6227197726394, 144.887978535129 -37.6227618344449, 144.888026999985 -37.622793000017, 144.888208836278 -37.6228305956899, 144.888246958679 -37.6225801366953, 144.888401891325 -37.6226046609261, 144.888396854186 -37.6225489726218, 144.889287423226 -37.6226632236301, 144.889416473732 -37.6220461502057, 144.889818007983 -37.6220930203871, 144.889987130673 -37.6220770643574, 144.890499597566 -37.6221412929905, 144.890599148302 -37.622113680554, 144.890726346288 -37.622323275329, 144.891117820951 -37.6221723380054))\nAYAA-F3CHZ\tNewhaven\tReady for service\tPOLYGON ((115.930736211416 -32.1331908950702, 115.930703156062 -32.1332196716027, 115.930703024945 -32.1332198106604, 115.930702953522 -32.1332199276657, 115.930702928369 -32.1332199688604, 115.93070290602 -32.1332200342013, 115.93070286975 -32.1332201400989, 115.930702851626 -32.1332203177047, 115.930702862535 -32.1332204014785, 115.930702874617 -32.133220494862, 115.930702937695 -32.1332206649195, 115.930702981531 -32.1332207329003, 115.930703038547 -32.1332208211597, 115.930703173316 -32.1332209576856, 115.930703336739 -32.1332210692541, 115.930703522659 -32.1332211514308, 115.930703723901 -32.1332212013103, 115.930703923453 -32.1332212160614, 115.930738483624 -32.133191519234, 115.930738621329 -32.1331913744634, 115.930738717828 -32.1331912167134, 115.930738776476 -32.1331910459379, 115.930738794872 -32.1331908686412, 115.930738772364 -32.1331906918192, 115.93073870989 -32.1331905220198, 115.930738609672 -32.1331903658578, 115.930738477982 -32.1331902315491, 115.930853133361 -32.1330917100125, 115.930853274594 -32.1330915622762, 115.930853371213 -32.1330914044491, 115.930853429756 -32.1330912336606, 115.930853448257 -32.1330910563769, 115.930853425748 -32.1330908795548, 115.930853363168 -32.1330907097425, 115.930853263057 -32.1330905535936, 115.930853129059 -32.1330904169789, 115.931163724671 -32.1328200198426, 115.931486366977 -32.1325462842258, 115.931455385412 -32.1324609405678, 115.9296926573 -32.1309819790023, 115.929734 -32.1309500000127, 115.929576172657 -32.1308161749838, 115.929699 -32.1307130000128, 115.929384623742 -32.1304367592291, 115.929056899537 -32.1307132048553, 115.92905682873 -32.1307192586672, 115.928088443573 -32.1307110622369, 115.927928497688 -32.1312665327616, 115.928063503643 -32.1314786660662, 115.930419030944 -32.1334634331485, 115.930736211416 -32.1331908950702))\nAYCA-EZXP3\tHidden Waters\tReady for service\tPOLYGON ((151.639558370114 -32.8837089157827, 151.639517699382 -32.8836548918724, 151.639371986963 -32.8833756288168, 151.639303085124 -32.8834012240675, 151.639111267302 -32.883028675323, 151.639455639814 -32.8828630784392, 151.639452461368 -32.8828207044261, 151.639213347957 -32.8825056538843, 151.639157501739 -32.882562201345, 151.638874174658 -32.8826220537503, 151.638889420994 -32.8826670218726, 151.637865750921 -32.8829388727812, 151.637331198116 -32.8831880421687, 151.637176211917 -32.8832213706606, 151.636824633227 -32.8832286768485, 151.636719123791 -32.8832137165857, 151.636665667754 -32.8835804671919, 151.636496796247 -32.8836503831994, 151.636456813369 -32.8840485907322, 151.636513908771 -32.8841449403208, 151.636928663713 -32.8843746446191, 151.637223396424 -32.8845378753029, 151.63905863942 -32.8848229654494, 151.639156857569 -32.8848349754067, 151.639235631437 -32.8844399017965, 151.639352455085 -32.8844393144942, 151.639560656272 -32.8843728019015, 151.639702802672 -32.8843018552295, 151.639886475669 -32.8842536646106, 151.639558370114 -32.8837089157827))\nAYCA-KBSOQ\tHuntington Rise\tReady for service\tPOLYGON ((153.287132 -27.9184949999847, 153.286641 -27.9189719999847, 153.286616 -27.9190749999846, 153.286415 -27.9192899999847, 153.286381 -27.9194259999846, 153.285726 -27.9200139999846, 153.285478 -27.9206019999847, 153.285529 -27.9207539999847, 153.285518 -27.9207819999847, 153.285275 -27.9208359999847, 153.285322 -27.9210259999847, 153.28533 -27.9211249999847, 153.285303 -27.9213409999847, 153.285699 -27.9212629999847, 153.286025 -27.9212399999847, 153.286184 -27.9212709999847, 153.286177 -27.9212979999847, 153.287467 -27.9215489999846, 153.287547 -27.9212239999847, 153.287724 -27.9212149999847, 153.287884 -27.9211799999847, 153.288028 -27.9211089999846, 153.288158 -27.9209889999846, 153.288289 -27.9207799999847, 153.288103 -27.9206959999847, 153.288032 -27.9207309999846, 153.287946 -27.9208659999847, 153.287876 -27.9209259999847, 153.28779 -27.9209679999847, 153.287695 -27.9209889999847, 153.287587 -27.9209859999847, 153.287647 -27.9206699999846, 153.28744 -27.9200659999847, 153.287489 -27.9198309999847, 153.287782 -27.9186639999847, 153.287132 -27.9184949999847))\n10218\tClarkson-Somerly\tReady for service\tPOLYGON ((115.72906851768494 -31.685108811962056, 115.73021113872528 -31.685072293243508, 115.73023796081543 -31.68535987776318, 115.7302862405777 -31.685565294731706, 115.73032379150391 -31.685665720639772, 115.73036670684814 -31.685757016825548, 115.73148250579834 -31.686911905822825, 115.73127329349518 -31.68713101357606, 115.73115527629852 -31.68714014305456, 115.73114454746246 -31.687354685540644, 115.73113918304443 -31.687642262988813, 115.73085486888885 -31.687646827703027, 115.73088705539703 -31.687806592559134, 115.73104798793793 -31.68808047452978, 115.72993218898773 -31.688167203652004, 115.72954595088959 -31.688304144206274, 115.7292777299881 -31.688431955207992, 115.72896122932434 -31.688687576683368, 115.72876274585724 -31.688532378014418, 115.72875738143921 -31.688441084558516, 115.72911143302917 -31.688212850525872, 115.72939574718475 -31.688048521674848, 115.72972297668457 -31.687911580743407, 115.72966933250427 -31.687697039544577, 115.72953522205353 -31.6872314377901, 115.72949230670929 -31.687026024508839, 115.72935819625854 -31.686592372755523, 115.72930455207825 -31.686350439844258, 115.72916507720947 -31.685569859548082, 115.72906851768494 -31.685108811962056))\nAYCA-JY3KC\tOakdene Estate\tReady for service\tPOLYGON ((144.545255663843 -38.238505748673, 144.545196452492 -38.2388070980486, 144.54542846425 -38.2388208090392, 144.545340190339 -38.2392721189921, 144.545543185636 -38.2392974297074, 144.545237112525 -38.2408551327318, 144.544999845389 -38.2408274803029, 144.54494393196 -38.2411125096651, 144.544977729664 -38.2411210763289, 144.54489351757 -38.2413257862614, 144.547075472014 -38.2416427828345, 144.547010394431 -38.2419292696906, 144.54810856372 -38.2420622914214, 144.548132944289 -38.2419419538599, 144.548527762276 -38.2419901986243, 144.548603777872 -38.2416032551628, 144.548454064027 -38.241584961067, 144.548515266983 -38.2412734185176, 144.548046369403 -38.2412206784219, 144.546203456686 -38.2409954624698, 144.54660296398 -38.2389620941157, 144.546345209011 -38.2389305922845, 144.546406418057 -38.2386190509231, 144.546225842976 -38.2385969802156, 144.545836284149 -38.2385493693187, 144.545832936538 -38.2385674556455, 144.545257361793 -38.238497106794, 144.545255663843 -38.238505748673))\nAYCA-1ED0W6\tElderslie\tUnder construction\tPOLYGON ((150.722491999989 -34.0564940000155, 150.722553999989 -34.0566020000155, 150.722661999989 -34.0567870000155, 150.722515999989 -34.0569260000156, 150.722459999989 -34.0569250000155, 150.722367999989 -34.0569990000154, 150.722421999989 -34.0570490000155, 150.722475999989 -34.0570920000154, 150.722508999989 -34.0571140000155, 150.722540999989 -34.0571340000156, 150.722575999989 -34.0571540000155, 150.722630999989 -34.0571810000155, 150.722726999989 -34.0572180000154, 150.722808999989 -34.0572450000155, 150.723426999989 -34.0574450000156, 150.723449999989 -34.0574900000155, 150.723512999989 -34.0575130000155, 150.723598999989 -34.0575410000155, 150.723661999989 -34.0575590000156, 150.723717999989 -34.0575390000155, 150.724200999989 -34.0576930000155, 150.724287999989 -34.0577210000155, 150.724356999989 -34.0577420000156, 150.724433999989 -34.0577630000155, 150.724519999989 -34.0577830000155, 150.724599999989 -34.0578000000155, 150.724660999989 -34.0578110000156, 150.724742999989 -34.0578240000156, 150.724831999989 -34.0578350000156, 150.724908999989 -34.0578420000156, 150.725051999989 -34.0578510000155, 150.725397999989 -34.0578560000156, 150.725416999989 -34.0578560000156, 150.725457999989 -34.0578530000156, 150.725490999989 -34.0578480000155, 150.725511999989 -34.0578430000155, 150.725536999989 -34.0578370000156, 150.725562999989 -34.0578280000156, 150.725499293232 -34.0577209013904, 150.725494818397 -34.057707572696, 150.725370771 -34.0576837362784, 150.724795039581 -34.0566325436089, 150.725130255896 -34.0565135342191, 150.725031999989 -34.0563290000156, 150.724277999989 -34.0550370000156, 150.724048999989 -34.0550980000156, 150.723893999989 -34.0551630000155, 150.723745999989 -34.0552250000155, 150.723246999989 -34.0554390000155, 150.723357999989 -34.0554390000154, 150.723599999989 -34.0558600000155, 150.722928999989 -34.0561320000155, 150.723012999989 -34.0562840000155, 150.722930999989 -34.0563160000155, 150.722491999989 -34.0564940000155))\n10583\tSecret Harbour\tReady for service\tPOLYGON ((115.75388431549072 -32.416944979494694, 115.75388431549072 -32.416469488087742, 115.75406134128571 -32.416510244592239, 115.75410425662994 -32.416206834617121, 115.75393259525299 -32.4161706064922, 115.75394868850708 -32.415382641176429, 115.7539701461792 -32.414499568421327, 115.75384140014648 -32.414499568421327, 115.7538628578186 -32.414096522086368, 115.75554192066193 -32.414110107947195, 115.7555365562439 -32.414490511220095, 115.75564384460449 -32.414490511220095, 115.75564384460449 -32.416211363131708, 115.75550973415375 -32.416215891646061, 115.75551509857178 -32.416614400020094, 115.75556337833405 -32.416627985501805, 115.75556337833405 -32.41696762188014, 115.75388431549072 -32.416944979494694))\n17359417\t1550 Pascoe Vale Road Coolaroo\tCheck with carrier\tPOLYGON ((144.933915968 -37.645206193, 144.932956384 -37.645086294500004, 144.932732544 -37.645058304, 144.932508672 -37.6450303135, 144.932284832 -37.645002323, 144.932173088 -37.644988355500004, 144.932060928 -37.6449743325, 144.931837088 -37.644946342000004, 144.931635456 -37.644921145, 144.931613248 -37.64491837, 144.931501344 -37.6449044025, 144.931389408 -37.644890435, 144.931157952 -37.644861538, 144.930811872 -37.644818359, 144.930557056 -37.6447865575, 144.929733824 -37.6446835865, 144.930055424 -37.6452166085, 144.930605504 -37.646089586500004, 144.930728544 -37.6462406205, 144.93088912 -37.646500712, 144.930898528 -37.646515142, 144.930908576 -37.646529276, 144.93091936 -37.646543077000004, 144.930930816 -37.6465565265, 144.930942944 -37.646569606, 144.93095568 -37.646582297, 144.930969056 -37.6465945625, 144.93098304 -37.6466064025, 144.930997568 -37.646617817, 144.931206016 -37.6467746415, 144.931234016 -37.646819929500005, 144.93126944 -37.646815878, 144.93135952 -37.6468055735, 144.931722432 -37.6466604595, 144.931738912 -37.6466865445, 144.93239376 -37.646428081, 144.932525056 -37.646444509, 144.933603264 -37.646579374, 144.93361248 -37.6465491265, 144.93366624 -37.646357337000005, 144.933715552 -37.6461647705, 144.933915968 -37.645206193))\nAYAA-G0M8Z\tSouth at Seaford Meadows\tReady for service\tPOLYGON ((138.484664684411 -35.1712591559897, 138.484715736084 -35.1717193613349, 138.484730299247 -35.1718965054719, 138.484612897174 -35.1719108641611, 138.484614220992 -35.1719888935645, 138.484456415808 -35.1719993800969, 138.48452788187 -35.1721310793754, 138.484679040047 -35.1721548679219, 138.484686873858 -35.1725681964977, 138.488866375105 -35.172382411574, 138.488759287518 -35.1710354505733, 138.484664684411 -35.1712591559897))\n17341536\tWyreema Estate\tCheck with carrier\tPOLYGON ((151.869831136 -27.654777992, 151.868763008 -27.656415982000002, 151.871142976 -27.656748001500002, 151.87109184 -27.657118982, 151.871771168 -27.657207005, 151.87166208 -27.656709022, 151.872665056 -27.656469003, 151.872582976 -27.656021969, 151.87277088 -27.655956997, 151.872704992 -27.655603018, 151.872233056 -27.65567502, 151.872306112 -27.65532204, 151.869831136 -27.654777992))\nAYCA-EWZHS\tSouth at Seaford Meadows\tReady for service\tPOLYGON ((138.484732855314 -35.1725839127242, 138.484756244977 -35.1728839818068, 138.484331438131 -35.1728999324613, 138.483754655126 -35.1732949520999, 138.483466499126 -35.1730515302473, 138.483351651051 -35.1729365566099, 138.482836975919 -35.1728220944505, 138.482809062975 -35.1729852602943, 138.482904071369 -35.1730046394035, 138.482897504342 -35.1730317287071, 138.48285264052 -35.1731573577738, 138.483106505441 -35.1731991028005, 138.483425309779 -35.1734939066101, 138.483312824953 -35.1735759070916, 138.483903896689 -35.1740651343323, 138.484492479877 -35.1736355374427, 138.48452005908 -35.1736688173684, 138.484628859654 -35.1735342421878, 138.484390105332 -35.1733299386773, 138.484565222667 -35.1732619754489, 138.484595378693 -35.1732483643221, 138.485294033994 -35.1732118107712, 138.485650792962 -35.1731923025879, 138.485683258932 -35.1735974950797, 138.485734810639 -35.1735942174873, 138.485742089744 -35.1737219751916, 138.485757251681 -35.1739057265648, 138.485767915554 -35.1740936323295, 138.485931548448 -35.1740525070871, 138.486023861937 -35.1742828827594, 138.486135736826 -35.1745449186248, 138.486584784249 -35.1745212205722, 138.48657035228 -35.1743368681297, 138.486866065878 -35.1743212606609, 138.486861995858 -35.1742672232253, 138.487834814843 -35.1742234720163, 138.487840825032 -35.1742698086673, 138.488880829709 -35.1742121196433, 138.488863722179 -35.1739880483606, 138.488831124546 -35.1736096102097, 138.488047244673 -35.1736504862715, 138.487254058025 -35.1736957070298, 138.487217297132 -35.1732755196316, 138.487171598805 -35.1724577644063, 138.486812189272 -35.1724801529458, 138.486242325395 -35.1725006871508, 138.485551598184 -35.1725292827586, 138.484732855314 -35.1725839127242))\nAYAA-F8LET\tOrmeau Ridge\tReady for service\tPOLYGON ((153.25226694043 -27.8018459693702, 153.252283345642 -27.8018467072781, 153.252322834813 -27.8018484834544, 153.252551762966 -27.801882137504, 153.252561463907 -27.8019816689596, 153.252532126838 -27.8020798348784, 153.254510759995 -27.802227864684, 153.254579194452 -27.8021062167773, 153.254587327026 -27.8020919508788, 153.25486272316 -27.8016715371374, 153.255070027415 -27.8013078830842, 153.255085734162 -27.8012722088288, 153.255088086209 -27.8012392492067, 153.255068477285 -27.8012112016497, 153.255034197325 -27.8011984934534, 153.254446313996 -27.8011538494077, 153.254418670682 -27.8014416812506, 153.253053596926 -27.8013380073819, 153.252883241199 -27.8013613097813, 153.252559556565 -27.8013367243808, 153.252675332576 -27.8001314296644, 153.25242245689 -27.8001122220061, 153.252204909946 -27.8000434380085, 153.251875886965 -27.8000184450997, 153.251787046602 -27.8009992767575, 153.251463363344 -27.8009746887389, 153.251297589312 -27.8008986730987, 153.251140671483 -27.8008867526975, 153.250997582625 -27.8008960433148, 153.25089897081 -27.8009116901577, 153.250750338663 -27.8009352735299, 153.250376409219 -27.801498867871, 153.250272954281 -27.8015362546701, 153.250368508749 -27.8017453355987, 153.250321517853 -27.8017712256238, 153.250387021822 -27.801899429622, 153.250565523099 -27.8022891740077, 153.250614889427 -27.8023440396832, 153.251066139348 -27.80245068013, 153.251246360524 -27.8024278839704, 153.251874297821 -27.8025762758732, 153.252039729215 -27.802602684033, 153.252265627841 -27.8018468044031, 153.252265835746 -27.8018468343689, 153.252266035662 -27.8018468267013, 153.252266230026 -27.8018467846704, 153.252266411655 -27.8018467100023, 153.252266573434 -27.8018466054298, 153.2522667095 -27.8018464749009, 153.252266814397 -27.8018463235091, 153.252266884403 -27.8018461567572, 153.25226694043 -27.8018459693702))\nAYCA-VHOKB\tAurora Estate\tReady for service\tPOLYGON ((144.996540243027 -37.6192571596227, 144.996521732684 -37.6194020263223, 144.997470463999 -37.6194973927587, 144.99749911792 -37.6193176189462, 144.997507280007 -37.6192711400024, 144.997556280004 -37.6183941400022, 144.997602280003 -37.618126140002, 144.997536280002 -37.6181191400022, 144.997630280001 -37.617583140002, 144.997672280001 -37.6175881400018, 144.99773528 -37.6173411400017, 144.997883279999 -37.6170101400013, 144.99789013913 -37.6170006212043, 144.998564722596 -37.616097957087, 144.998383358026 -37.6160047867676, 144.998729427786 -37.6155452944633, 144.997775451825 -37.6151065763283, 144.997087007473 -37.6150008153281, 144.996918751436 -37.6161177288905, 144.996722910479 -37.6161051556229, 144.996635734812 -37.6165926582946, 144.997020000261 -37.6166286738357, 144.996872101336 -37.6170091063093, 144.996766990132 -37.6176147267949, 144.996478222921 -37.6176010257699, 144.996371536541 -37.6182778975058, 144.996605613606 -37.6182860083137, 144.996540243027 -37.6192571596227))\n17359833\t75-81 Bremen Street Hemmant\tCheck with carrier\tPOLYGON ((153.139708768 -27.455191833500002, 153.1393016 -27.4551826205, 153.138887264 -27.455173204, 153.138683744 -27.455168597500002, 153.136118976 -27.45480424, 153.135999136 -27.455472756000002, 153.135875424 -27.4561625655, 153.137083872 -27.4563349855, 153.13947472 -27.4566760515, 153.139663136 -27.456702932000002, 153.139663264 -27.456699269, 153.13968448 -27.4559957695, 153.139708768 -27.455191833500002))\nAYAA-HJXUR\t165 Rowes Lane\tReady for service\tPOLYGON ((144.965936354376 -37.4196941109529, 144.965054905842 -37.4195819764509, 144.965060447955 -37.4195507521174, 144.964702517484 -37.4195103374463, 144.964706872111 -37.4194858040576, 144.964125236205 -37.4194201279542, 144.964115338903 -37.4194758855948, 144.963200506374 -37.4193725801837, 144.963149828556 -37.4196580587876, 144.963169759101 -37.4196607644825, 144.963169644707 -37.419661408882, 144.963017802446 -37.4205167539898, 144.963070497819 -37.4205227047112, 144.96294379756 -37.4212364012049, 144.965642677402 -37.4215416004136, 144.965896103448 -37.4201137543069, 144.965862547145 -37.4201099657062, 144.965936354376 -37.4196941109529))\nAYCA-Q23DQ\tStrzelecki Views Estate\tReady for service\tPOLYGON ((146.165903487972 -38.2064062373483, 146.165901430573 -38.2064063907274, 146.165896208036 -38.2067689228852, 146.16595634581 -38.2072713585271, 146.165916797783 -38.2072743056663, 146.164611817431 -38.2090974176989, 146.16472227536 -38.2092478006624, 146.165558951422 -38.2096540435495, 146.166685060727 -38.2080699970362, 146.166733366051 -38.2079489485689, 146.167220122978 -38.2080556111315, 146.167379220989 -38.2081265502277, 146.167511620097 -38.2079416815342, 146.168080691381 -38.2081954176382, 146.168143799672 -38.2066112424239, 146.167690515299 -38.2067466130298, 146.167538457321 -38.2066649018919, 146.167078928042 -38.2066742218567, 146.166977055789 -38.2067033504479, 146.166526067672 -38.206712573195, 146.166513558204 -38.206504840774, 146.166566058906 -38.2063880587653, 146.165903487972 -38.2064062373483))\nAYCA-DIOLX\tOcean Club Residential Community\tReady for service\tPOLYGON ((152.831779795737 -31.5666562701162, 152.833728467981 -31.567184981921, 152.835239 -31.5651520000097, 152.835175 -31.5651380000097, 152.835020001504 -31.5650266136155, 152.835017015839 -31.5649960470399, 152.834873392721 -31.5648914033031, 152.834910989229 -31.5648469220944, 152.834571189731 -31.564621396133, 152.834210396391 -31.564382046642, 152.833955265226 -31.5642297575063, 152.833523001867 -31.5647219985491, 152.833424838182 -31.5646627036922, 152.832205649045 -31.5659808639002, 152.8322928622 -31.5660532280476, 152.831779795737 -31.5666562701162))\n17335051\tSt Eyre Estate\tCheck with carrier\tPOLYGON ((137.733543008 -32.5007980285, 137.733956992 -32.502921033, 137.735928 -32.502837968, 137.73583008 -32.500209969000004, 137.733487936 -32.500771018500004, 137.733543008 -32.5007980285))\nAYCA-KJ1FN\tThe Parc\tReady for service\tPOLYGON ((150.950595156373 -33.719577830225, 150.950829895619 -33.7201643851623, 150.952411220546 -33.7199306961883, 150.952494976381 -33.7201110125235, 150.953820730098 -33.7184514772287, 150.953666701131 -33.7178562402679, 150.951532319994 -33.7176384300169, 150.951607788772 -33.7178343459562, 150.951330641293 -33.7185547434432, 150.950975804359 -33.7189631376551, 150.950800361952 -33.719477643623, 150.950598328921 -33.719576221245, 150.950595156373 -33.719577830225))\n17348299\tBeaumount Park\tCheck with carrier\tPOLYGON ((147.020243776 -36.047103303, 147.01960368 -36.047024271, 147.01958928 -36.0471150875, 147.019347712 -36.0470843035, 147.01874256 -36.047007362, 147.018466816 -36.0469722675, 147.018394432 -36.047347281, 147.018395168 -36.0475292655, 147.018064672 -36.0479122155, 147.01811328 -36.047922927, 147.018286816 -36.048000516, 147.018386528 -36.048131181500004, 147.01842864 -36.0483846315, 147.01839408 -36.048563101, 147.018392288 -36.0485636375, 147.018116896 -36.04864365, 147.017704672 -36.0485910915, 147.017514976 -36.048295258, 147.017024992 -36.0482803285, 147.016852576 -36.0491706965, 147.01978656 -36.0495447295, 147.020243776 -36.047103303))\n17355577\tFersfield Road \u0026 Willowbank Road Gisborne\tCheck with carrier\tPOLYGON ((144.592994176 -37.4967479665, 144.592407008 -37.500095967, 144.59391216 -37.500255992, 144.594538912 -37.4969379615, 144.592994176 -37.4967479665))\n1143\tNone\tReady for service\tPOLYGON ((144.934485623438 -37.8177849378873, 144.934816056445 -37.816073667638, 144.937587750386 -37.8150194732256, 144.937640525146 -37.8152549844248, 144.937687706304 -37.815367467472, 144.938090711674 -37.8160411996979, 144.938190479563 -37.816005367215, 144.938373243044 -37.8163102679986, 144.934485623438 -37.8177849378873))\nAYCA-1FMEEC\tBarlow Estate\tContracted\tPOLYGON ((151.91544 -27.5289549999814, 151.913777 -27.5296239999814, 151.912928 -27.5295019999814, 151.91264124 -27.5305251599807, 151.916502 -27.5311209999814, 151.916641209003 -27.5302114671755, 151.916701799993 -27.5297458199811, 151.916631993491 -27.5297795159397, 151.916001467944 -27.5300174041448, 151.91544 -27.5289549999814))\nAYCA-1940S3\tAlarah Estate\tUnder construction\tPOLYGON ((145.248546999997 -38.1107970000281, 145.248612999997 -38.1107460000281, 145.248761999997 -38.1107280000282, 145.248726999997 -38.1105490000281, 145.248675999997 -38.1105550000281, 145.248609999997 -38.1105030000281, 145.248617999997 -38.1104660000281, 145.248313999997 -38.1104250000281, 145.248300999997 -38.1104890000281, 145.248234999997 -38.1105260000281, 145.247885999997 -38.1104800000281, 145.247838999997 -38.1107020000281, 145.248186784154 -38.1107479620577, 145.248234473656 -38.1108008914781, 145.248122342413 -38.1113247317703, 145.24771741877 -38.1112704178401, 145.247447999997 -38.1125290000281, 145.247815999997 -38.1125780000281, 145.248118999997 -38.1126190000281, 145.250904999997 -38.1130020000281, 145.250801999997 -38.1126680000282, 145.251136999997 -38.1126110000281, 145.251088999997 -38.1124340000282, 145.250747999997 -38.1124920000281, 145.250428999997 -38.1114620000281, 145.250233999997 -38.1114350000281, 145.250265999997 -38.1115370000281, 145.249271999997 -38.1114000000281, 145.249311999997 -38.1112210000281, 145.249305999997 -38.1111920000281, 145.248486999997 -38.1110790000281, 145.248546999997 -38.1107970000281))\nAYAA-FKLI6\tHalcyon Landing Bli Bli\tReady for service\tPOLYGON ((153.03895856369 -26.6174680398293, 153.039161212934 -26.6176678534066, 153.03915072 -26.6177570399732, 153.039197406541 -26.6177435296047, 153.040276680529 -26.6176984252997, 153.04070268 -26.6177953799731, 153.040910308625 -26.617881817086, 153.041100248293 -26.6178992800586, 153.041243215643 -26.6178931167806, 153.041347413691 -26.6177061577243, 153.041405418274 -26.6176804491663, 153.041593810391 -26.6174095191029, 153.041844361859 -26.6172162671881, 153.041683422257 -26.6164520606643, 153.041244119221 -26.6163181857946, 153.041318945691 -26.616150540585, 153.041454163523 -26.6151742932282, 153.040266020938 -26.6150253732574, 153.040233418314 -26.6152355233314, 153.04015758817 -26.6153171830562, 153.040154424594 -26.6154019891885, 153.040026324675 -26.6159385895432, 153.039770751095 -26.6165075733452, 153.039420857112 -26.6170088217595, 153.039076553967 -26.6173711338692, 153.03895856369 -26.6174680398293))\n10594\tSecret Harbour\tReady for service\tPOLYGON ((115.76508186757565 -32.415488389974591, 115.76582349836826 -32.415491786387605, 115.76598308980465 -32.415473106114469, 115.76602315530181 -32.41547381370065, 115.76602298766375 -32.415479049838162, 115.76625214889646 -32.415477493148664, 115.76625139452517 -32.415473318390326, 115.7663257420063 -32.415475370390212, 115.76824888586998 -32.415475936459138, 115.768251568079 -32.415783877428105, 115.76826497912407 -32.415917469139238, 115.76830118894577 -32.415917469139238, 115.76829951256514 -32.416088703988223, 115.76830588281155 -32.416222578280149, 115.76830722391605 -32.416361263912215, 115.76830923557281 -32.416638634536852, 115.76831191778183 -32.416647125460891, 115.76835751533508 -32.416647691522464, 115.76835550367832 -32.416946571537615, 115.76824570074677 -32.416946288507752, 115.76824586838484 -32.416953930313369, 115.76801016926765 -32.416953364253715, 115.7680094987154 -32.416944307298749, 115.76725110411644 -32.416945439418207, 115.76622314751148 -32.416942609119644, 115.766068585217 -32.416950250925566, 115.76606908813119 -32.416943882754012, 115.76568846590817 -32.416944095026409, 115.76498597860336 -32.416943741239088, 115.76497323811054 -32.41556537530473, 115.76494507491589 -32.415491786387605, 115.76508387923241 -32.415489522112281, 115.76508186757565 -32.415488389974591))\nAYCA-10P92J\tSt Anthony\u0027s - Secret Harbour\tUnder construction\tPOLYGON ((115.762005 -32.3999940000145, 115.76202147999 -32.4009900600038, 115.762061 -32.4029950000146, 115.763178960026 -32.4030038400137, 115.763225 -32.4032230000145, 115.763227 -32.4034770000145, 115.763699 -32.4034740000145, 115.763699 -32.4037280000145, 115.763761 -32.4037770000146, 115.764001 -32.4037820000145, 115.763992 -32.4032790000145, 115.763894 -32.4026480000145, 115.763599 -32.4026430000145, 115.763597479981 -32.402519060005, 115.763542479984 -32.401927059936, 115.763541 -32.4018160000145, 115.763605 -32.4017600000145, 115.763453479904 -32.4017610600103, 115.76344572 -32.401363050014, 115.763261479988 -32.401363060009, 115.763256 -32.4010680000145, 115.76323 -32.4009410000145, 115.763228 -32.4006750000145, 115.763406 -32.4006640000145, 115.763401 -32.4004020000145, 115.763515 -32.4002590000145, 115.763514 -32.3999750000145, 115.762005 -32.3999940000145))\nAYCA-139S5J\tGolden Bay\tReady for service\tPOLYGON ((115.755524712345 -32.4205202560757, 115.755860825516 -32.4204766827811, 115.755785852118 -32.4200477559577, 115.755367783362 -32.420097291717, 115.755423698636 -32.4199191759201, 115.755208043456 -32.4199072361465, 115.755130147213 -32.4199252542789, 115.755116789232 -32.4199223256094, 115.754753414784 -32.4199242261915, 115.754780372958 -32.4198877786852, 115.754814380704 -32.4197498361422, 115.754839856781 -32.4197018085905, 115.754853601102 -32.4196761513362, 115.754766768755 -32.4196428934295, 115.754607708851 -32.4196421342411, 115.754607644865 -32.419637337684, 115.753950899146 -32.4196374315238, 115.753012263326 -32.4196543143937, 115.753020337487 -32.4198897589684, 115.752970381272 -32.4200007796902, 115.75350063629 -32.4200242293887, 115.753347754195 -32.4206365661779, 115.753173645691 -32.4209265183705, 115.752714450375 -32.4207832168054, 115.752642212254 -32.4209171846602, 115.752557132717 -32.4209441517015, 115.75246446201 -32.4211158957872, 115.752480285812 -32.4211516746422, 115.753431034234 -32.4215228496582, 115.753473838112 -32.4215098700661, 115.753531865607 -32.4214017328492, 115.753679092867 -32.4214549614684, 115.753619105755 -32.4215659932178, 115.753634480298 -32.4216015345517, 115.754469941433 -32.4219278476565, 115.754615122135 -32.4216581661538, 115.75481225925 -32.4216274923288, 115.755007017378 -32.4215979365002, 115.755036 -32.4216040000146, 115.75506409648 -32.421609913062, 115.755098250877 -32.4216299173023, 115.755131202517 -32.4216507599383, 115.755160189446 -32.4216843806224, 115.755411629988 -32.4216297140759, 115.755399620096 -32.4215579023618, 115.755453464648 -32.4214951155492, 115.755677803536 -32.421463520113, 115.755524712345 -32.4205202560757))\nAYCA-1HPMUJ\tPeregian Breeze\tUnder construction\tPOLYGON ((153.078679 -26.4864609999726, 153.079353 -26.4871349999726, 153.079524 -26.4873329999726, 153.079713 -26.4875769999726, 153.079799 -26.4876889999726, 153.080849 -26.4873999999726, 153.080765 -26.4871389999726, 153.08078 -26.4869799999726, 153.080749 -26.4869879999726, 153.080671 -26.4867589999726, 153.080806 -26.4867219999726, 153.080791 -26.4866759999726, 153.080797 -26.4866419999726, 153.080952 -26.4857479999726, 153.080917 -26.4855929999726, 153.080963 -26.4853249999726, 153.080265 -26.4852269999726, 153.080361 -26.4846769999726, 153.080063 -26.4846349999726, 153.079866 -26.4846009999726, 153.07979 -26.4845899999726, 153.079364 -26.4845299999726, 153.079327 -26.4845339999726, 153.079295 -26.4845539999726, 153.07928 -26.4845849999726, 153.079213 -26.4849729999726, 153.079063 -26.4857619999726, 153.079031 -26.4858329999726, 153.079015 -26.4859049999726, 153.079025 -26.4860049999726, 153.079047 -26.4860809999726, 153.078889 -26.4862659999726, 153.078903 -26.4862799999726, 153.078679 -26.4864609999726))\nAYCA-1NJD6X\tAspiri\tUnder construction\tPOLYGON ((115.916003 -32.1445270000132, 115.916107 -32.1444410000133, 115.91732 -32.1433870000133, 115.917359249832 -32.1434178327501, 115.917494766702 -32.1432958624388, 115.917453 -32.1432710000133, 115.918233 -32.1425930000133, 115.918508 -32.1425920000133, 115.918511 -32.1425800000133, 115.91851 -32.1423350000133, 115.918478 -32.1423080000133, 115.918701 -32.1423100000132, 115.918714 -32.1421750000132, 115.918717 -32.1419040000132, 115.9183 -32.1419010000132, 115.918297 -32.1421710000133, 115.918276 -32.1421890000133, 115.918106 -32.1421870000133, 115.917944 -32.1422450000133, 115.917833 -32.1423410000133, 115.917803 -32.1423410000133, 115.917545 -32.1421260000132, 115.916805 -32.1427700000133, 115.916147 -32.1422220000132, 115.91608 -32.1421250000132, 115.91604 -32.1420200000132, 115.915888 -32.1420010000132, 115.915847 -32.1420690000133, 115.915609 -32.1421820000132, 115.915538971888 -32.1422505808187, 115.915856177107 -32.1425590510627, 115.914544439577 -32.1437289352892, 115.914501 -32.1437110000132, 115.91449 -32.1437280000133, 115.914526969332 -32.143744515975, 115.914444343507 -32.1438182049913, 115.914882 -32.1440170000132, 115.915535 -32.1443140000133, 115.916003 -32.1445270000132))\n10629\tStirling-Princeton\tReady for service\tPOLYGON ((115.81708252429962 -31.897763880376377, 115.81791937351227 -31.8962427150228, 115.81881523132324 -31.896597959480648, 115.81900298595428 -31.896297368105543, 115.81941068172455 -31.896010439059204, 115.82062840461731 -31.897203693663975, 115.82000076770782 -31.897686456399633, 115.81975400447845 -31.897476955900743, 115.81823587417603 -31.898519899315282, 115.81708252429962 -31.897763880376377))\nAYCA-KYBBZ\tSaratoga Estate\tReady for service\tPOLYGON ((144.718687648885 -37.9077956180254, 144.719068479682 -37.9079156651998, 144.719245697617 -37.9079413910833, 144.719343237377 -37.9077266499239, 144.720732601699 -37.9079164232758, 144.720684397102 -37.9081748643734, 144.721160859211 -37.9082306520323, 144.720928920168 -37.9094519847931, 144.723293924832 -37.9097288663166, 144.723643928066 -37.9080906946194, 144.721931957734 -37.9079380629763, 144.720270347078 -37.9077894463184, 144.720208037531 -37.9076259750646, 144.720231523583 -37.9073599049131, 144.72015675636 -37.9073527424489, 144.71992726906 -37.9073292020775, 144.719888525705 -37.9075420429399, 144.71984980754 -37.9075654861965, 144.718771604584 -37.9073789677276, 144.718741924389 -37.9075276269234, 144.718687648885 -37.9077956180254))\n89\tVictoria Harbour\tReady for service\tPOLYGON ((144.94251019944431 -37.8193148648327, 144.94171626557537 -37.819636922732222, 144.94012839784648 -37.8202047582361, 144.94039661874643 -37.820594612919116, 144.94116909493547 -37.820764114312624, 144.94141585817351 -37.820526812252872, 144.94171626557537 -37.820357310313724, 144.944130253693 -37.819628447542136, 144.94440920343294 -37.820314934768469, 144.94460232248019 -37.820781064431053, 144.94546062936186 -37.820611563075779, 144.94533188332738 -37.820060680984632, 144.94565374840911 -37.819992879827929, 144.94553573121456 -37.819450468330118, 144.94544990053089 -37.819213162046331, 144.94446284761472 -37.81951826998506, 144.94414098253299 -37.818747022482242, 144.9432290314605 -37.819052132347743, 144.94251019944431 -37.8193148648327))\n10478\tLakelands\tReady for service\tPOLYGON ((115.76628684997559 -32.469392136286608, 115.76598644256592 -32.46940118797292, 115.76609909534454 -32.469088904269555, 115.76551973819733 -32.469070800833251, 115.76539635658264 -32.469097955986349, 115.76507985591888 -32.469066274973621, 115.76503694057465 -32.469310671068918, 115.76342225074768 -32.469143214556645, 115.76318085193634 -32.470351609971104, 115.76342761516571 -32.470378764737937, 115.76372265815735 -32.470537167381174, 115.76437175273895 -32.470844920291377, 115.76474189758301 -32.471179826674906, 115.76537489891052 -32.470804188348964, 115.76630830764771 -32.470568847876386, 115.76628684997559 -32.469392136286608))\nAYCA-ZDHI7\tAspiri\tReady for service\tPOLYGON ((115.917500191323 -32.141551422264, 115.917575840925 -32.1414879376349, 115.917690435238 -32.1415815665815, 115.917937091783 -32.1417868399047, 115.918198059582 -32.1415638802186, 115.918310515145 -32.1414682233323, 115.918473583664 -32.141221259022, 115.918593597626 -32.1412189485592, 115.919716127587 -32.1402380274895, 115.917875279575 -32.1386820889989, 115.917772763713 -32.1387780110985, 115.91777234401 -32.1388548707683, 115.917589987567 -32.1390104496511, 115.917437954665 -32.1388847954319, 115.917297700624 -32.1387683866938, 115.917191159914 -32.1388602790776, 115.917478953661 -32.1391043391414, 115.917615007281 -32.1391654773664, 115.917575870361 -32.1392138938196, 115.917827399857 -32.1394257943355, 115.917823214959 -32.1394667891996, 115.917345980684 -32.1394649163603, 115.917343244578 -32.1396223513323, 115.917025574271 -32.1396194541737, 115.917014130775 -32.1408639517018, 115.917082029834 -32.141019975832, 115.917212 -32.1411280000132, 115.917360061257 -32.1412509945038, 115.917249077177 -32.1413480057349, 115.917500191323 -32.141551422264))\nAYCA-JBYRH\tKirkham Rise\tReady for service\tPOLYGON ((150.707736011559 -34.0241027745067, 150.708186287396 -34.0237842960302, 150.70824906638 -34.0238464219163, 150.708345265641 -34.0239665958799, 150.708564070855 -34.0238570642597, 150.709725476747 -34.0230301537408, 150.709808148127 -34.0228234283914, 150.709653882226 -34.0228293040166, 150.709551801566 -34.022792308342, 150.709491869609 -34.0227072474927, 150.709460847922 -34.0226596693457, 150.709473217493 -34.0225533426518, 150.709130037472 -34.0225537610266, 150.708954271824 -34.0224714858747, 150.707619410001 -34.0211244172812, 150.706516186254 -34.0219000436408, 150.706609270561 -34.0222382693461, 150.706227137139 -34.022508548211, 150.707096256509 -34.0235332549849, 150.707736011559 -34.0241027745067))\nAYCA-IUBNF\tLots 156-158 \u0026 169 Landsdale\tReady for service\tPOLYGON ((115.873276630402 -31.8174764837792, 115.873275600091 -31.8180690372764, 115.8750522 -31.8180707100116, 115.875055363525 -31.8157950273471, 115.873605801906 -31.8157931089391, 115.873279557467 -31.8157926474106, 115.872418291027 -31.8157922739664, 115.872388528773 -31.8174648742186, 115.873276630402 -31.8174764837792))\n10332\tDudley Park-Mariner\u0027s Cove\tReady for service\tPOLYGON ((115.73980003595352 -32.555757370278961, 115.73970884084702 -32.555735893164567, 115.73940709233284 -32.555888493602758, 115.73892295360565 -32.556130622631287, 115.73890417814255 -32.556207487731534, 115.73905169963837 -32.55641547531976, 115.73886930942535 -32.55650364382582, 115.73845356702805 -32.556709370003063, 115.738625228405 -32.55695804936795, 115.73856353759766 -32.556987438701888, 115.73863863945007 -32.557129863799318, 115.73841065168381 -32.557229335161871, 115.73828458786011 -32.557279070801783, 115.7379412651062 -32.557444102500426, 115.73783397674561 -32.557502880840339, 115.7376354932785 -32.557591048278034, 115.73763012886047 -32.557676954928866, 115.73797076940536 -32.558059012458763, 115.73814779520035 -32.558246649584916, 115.73848843574524 -32.558628704689276, 115.73856890201569 -32.558633226041714, 115.73889881372452 -32.5584727178905, 115.73898732662201 -32.55858575182971, 115.73918849229813 -32.5588163406242, 115.74020236730576 -32.558287341921954, 115.74030965566635 -32.558224042723026, 115.74019968509674 -32.5580725766015, 115.74022114276886 -32.558016059326484, 115.74026137590408 -32.557975366866444, 115.74076563119888 -32.557762861497459, 115.74068784713745 -32.557649826521704, 115.7409480214119 -32.557534530699741, 115.74097618460655 -32.5574563067803, 115.74064761400223 -32.556989699419482, 115.74050545692444 -32.55678397388489, 115.74022650718689 -32.556374782133915, 115.7400843501091 -32.556171315927855, 115.73980003595352 -32.555757370278961))\n17231671\tLots 639-642 Horus Bend Bibra Lake - Stage 3\tCheck with carrier\tPOLYGON ((115.814032992 -32.098437995, 115.809444 -32.098439993, 115.809439008 -32.0997129965, 115.813079008 -32.0997020075, 115.814033984 -32.099030994, 115.814032992 -32.098437995))\nAYCA-HRACE\tGreenhills Beach Residential\tReady for service\tPOLYGON ((151.161808804036 -34.0341041256818, 151.16059973869 -34.0360744911556, 151.160357118538 -34.0362370412825, 151.160424491791 -34.0363738012577, 151.160504628176 -34.0364405362095, 151.160689172426 -34.0364924504988, 151.161469284269 -34.0365813599362, 151.161585996757 -34.0363512991111, 151.161640565182 -34.0363451467796, 151.161845317168 -34.0364295030834, 151.161890501435 -34.03634075503, 151.161663925285 -34.0362328465263, 151.161825940289 -34.0359816189507, 151.162552958344 -34.0362713414395, 151.162680702576 -34.0360842315783, 151.163119181967 -34.0362454448181, 151.164217493097 -34.0345845856231, 151.163945279133 -34.0344683457016, 151.163965724463 -34.0343458941116, 151.164119571304 -34.0342889302591, 151.164028494741 -34.0341478825662, 151.163822601638 -34.0342590971018, 151.163541243782 -34.0343310877728, 151.161808804036 -34.0341041256818))\n17322671\tAlbert Park Stage 5\tCheck with carrier\tPOLYGON ((143.926175168 -37.5462279925, 143.92614816 -37.546212952000005, 143.926059968 -37.546208993, 143.925972128 -37.546189013, 143.925944032 -37.546146981, 143.92592208 -37.54608804, 143.925347168 -37.5457979785, 143.92546416 -37.545645964, 143.92537488 -37.5455940345, 143.92523808 -37.545751987500005, 143.925013088 -37.545939004000005, 143.924787008 -37.545836033, 143.92426896 -37.5461350115, 143.923979872 -37.5456950075, 143.923766048 -37.545768989, 143.922377152 -37.546353996, 143.92167408 -37.5473709965, 143.921832128 -37.547463959, 143.925216128 -37.547465032, 143.926098112 -37.546363986, 143.926175168 -37.5462279925))\nAYCA-O1HNI\tAspiri\tReady for service\tPOLYGON ((115.912551774299 -32.1403086957267, 115.912565116337 -32.1404631878035, 115.912560115202 -32.1405556575469, 115.91271737699 -32.1405580927086, 115.912711888769 -32.1410063161564, 115.913080795538 -32.1410112124107, 115.913145201422 -32.1409576163985, 115.915345218696 -32.140978323115, 115.91581491082 -32.1410717884228, 115.915924979999 -32.1410349900122, 115.916246097882 -32.1410315373298, 115.916247904411 -32.1408788107299, 115.916192153327 -32.1408771198829, 115.916213693704 -32.1396162878688, 115.915869777027 -32.1396183706882, 115.915709281649 -32.1395994578973, 115.914103500806 -32.1395844741177, 115.914108292206 -32.1391681582373, 115.913995578237 -32.1391516927364, 115.913783446859 -32.1390647350396, 115.913838507629 -32.1389636992217, 115.913677299502 -32.1388934777606, 115.913639391254 -32.1389537572237, 115.913369206679 -32.1392898861896, 115.912732031044 -32.1399934092687, 115.912666580562 -32.1400395009799, 115.912571541885 -32.1400604553482, 115.911833248099 -32.1397069471382, 115.911698799994 -32.1399116392522, 115.912551774299 -32.1403086957267))\n17340366\tRed Ochre\tCheck with carrier\tMULTIPOLYGON (((152.8729 -31.4770779955, 152.872691008 -31.477025992, 152.87269097173353 -31.477026228691788, 152.8729 -31.4770779955)), ((152.872635008 -31.478602007000003, 152.872594016 -31.4776590065, 152.87269097173353 -31.477026228691788, 152.872690016 -31.477025992, 152.872738016 -31.476709993500002, 152.872243008 -31.476680005000002, 152.872270016 -31.4765110075, 152.871967008 -31.476222999500003, 152.871543008 -31.4760720025, 152.871211008 -31.4761090025, 152.870279008 -31.4761090025, 152.870184 -31.478427996, 152.871832 -31.478543991000002, 152.872635008 -31.478602007000003)))\nAYCA-SJ3BD\tThe Village at Wellard\tReady for service\tPOLYGON ((115.824519064651 -32.2738274722911, 115.823355999171 -32.2744090369272, 115.823249724242 -32.2744652406284, 115.823037739507 -32.2745338535848, 115.822919889736 -32.2742874483317, 115.82278568856 -32.2743288381357, 115.82261750893 -32.2743356405653, 115.822599340049 -32.2743645176341, 115.822475707556 -32.2743638043627, 115.822471331696 -32.274341309482, 115.822147833106 -32.274349689402, 115.821902910951 -32.2754966179884, 115.821850851402 -32.2754933227838, 115.821828030686 -32.2757197239409, 115.821817979214 -32.2757964033199, 115.821640203853 -32.2757927962124, 115.821638549585 -32.2758327172722, 115.821799834724 -32.2758434145436, 115.821855886523 -32.2758392329379, 115.822088990932 -32.2758458324179, 115.822195770286 -32.2758425833019, 115.82235361521 -32.2758400600448, 115.822459213505 -32.2758256825282, 115.823691819701 -32.2755418414716, 115.823970871859 -32.2754277153261, 115.824107129616 -32.2753419546755, 115.824126153199 -32.2752759282409, 115.825634165744 -32.2744767498498, 115.825791424811 -32.2747267254182, 115.825978619521 -32.2745286065211, 115.826121599858 -32.2740969512735, 115.825877738498 -32.2738006750084, 115.825875266234 -32.2737088104697, 115.825879610582 -32.2735388669933, 115.825791267564 -32.2734526940716, 115.825540572411 -32.2732235245413, 115.825269125518 -32.2734094722776, 115.824858266483 -32.2737565861774, 115.824707902387 -32.2736492076659, 115.824519064651 -32.2738274722911))\nAYCA-E2RAD\tRees Road, Brookfield\tReady for service\tPOLYGON ((144.556781497763 -37.7097882370117, 144.556951472087 -37.7099107564075, 144.561367573685 -37.7065767292638, 144.562554035243 -37.7054275478239, 144.561181358285 -37.7060975963103, 144.560442515219 -37.7062967020743, 144.558778362977 -37.7070586414021, 144.55791267258 -37.7076089249128, 144.557419926845 -37.7081183451423, 144.557532789357 -37.7088784536175, 144.557636271254 -37.7091259930298, 144.556781497763 -37.7097882370117))\n10113\tBaldivis-Tuart Ridge\tReady for service\tPOLYGON ((115.81399261951447 -32.339206464431314, 115.81397652626038 -32.33901157208485, 115.81408381462097 -32.338843873683338, 115.8134400844574 -32.338857470862592, 115.81351518630981 -32.340498182164168, 115.81385850906372 -32.340498182164168, 115.81404089927673 -32.340493649853478, 115.81403017044067 -32.340407535907275, 115.81408381462097 -32.340348615791605, 115.81438422203064 -32.340339551155012, 115.81438958644867 -32.340652280592487, 115.81553220748901 -32.340634151379241, 115.81578433513641 -32.340711200510434, 115.81586480140686 -32.34057069910429, 115.81634223461151 -32.340738394305781, 115.8164656162262 -32.340461923672308, 115.81679284572601 -32.340557102182444, 115.81674993038177 -32.34066587750003, 115.81713616847992 -32.340783717279869, 115.81742584705353 -32.340121999604563, 115.81674993038177 -32.339877253485142, 115.81685185432434 -32.339632506703786, 115.81671237945557 -32.339591715509208, 115.81682503223419 -32.339351500323723, 115.81681966781616 -32.338993442542908, 115.81672847270966 -32.3389254567283, 115.81649243831635 -32.338929989117524, 115.81649243831635 -32.339220061556105, 115.81399261951447 -32.339206464431314))\nAYCA-KYW9J\tEstella\tReady for service\tPOLYGON ((147.351224224319 -35.0802781835745, 147.350879902463 -35.0803447873418, 147.350920647407 -35.080496872889, 147.350415665981 -35.0805920313633, 147.350374997526 -35.0804131856728, 147.349809863627 -35.080527008116, 147.349889344788 -35.0808613771852, 147.350036683493 -35.0811791878155, 147.349828047708 -35.0812455387935, 147.350465664316 -35.0820443889869, 147.350389200139 -35.0820950963123, 147.350808274644 -35.0824528536197, 147.350854954135 -35.082414185456, 147.351346290831 -35.0828222979117, 147.352865697498 -35.0815776249654, 147.352489941942 -35.0806937800264, 147.35189543623 -35.080035862903, 147.351637382976 -35.0800082749226, 147.351224224319 -35.0802781835745))\n10509\tLakelands\tReady for service\tPOLYGON ((115.778067111969 -32.469058142569, 115.77818512916565 -32.470750798361813, 115.77853918075562 -32.470723643707181, 115.77856063842773 -32.471076653578457, 115.77519178390503 -32.471321044217035, 115.77514886856079 -32.470805107646477, 115.77537417411804 -32.470153394068348, 115.77600717544556 -32.46972796738239, 115.77696204185486 -32.4692391767937, 115.778067111969 -32.469058142569))\nAYAA-G2694\tThe Ponds\tReady for service\tPOLYGON ((150.904883037469 -33.7033945088663, 150.904884909823 -33.7048211372613, 150.904959972374 -33.7051787871167, 150.905004143179 -33.7053375937077, 150.905249890512 -33.7058671660448, 150.90544388085 -33.7061862391215, 150.907045770832 -33.7051250460136, 150.907320641965 -33.7049767876521, 150.90761587889 -33.7048590172574, 150.906930286036 -33.7033971510743, 150.904883037469 -33.7033945088663), (150.906557791334 -33.7037820097858, 150.906464715896 -33.703582659891, 150.906799640186 -33.7035636893746, 150.906890956409 -33.7037531883367, 150.906932545686 -33.7038694767146, 150.906551752609 -33.7038852850025, 150.906557791334 -33.7037820097858))\nAYCA-10NFWS\tTwin Waters Estate\tReady for service\tPOLYGON ((150.614387999986 -34.9143320000157, 150.614324999986 -34.9146710000158, 150.614208999986 -34.9148200000157, 150.613888999986 -34.9163300000157, 150.614002999986 -34.9163440000157, 150.613937999986 -34.9166910000157, 150.613987999986 -34.9168440000158, 150.613922999986 -34.9171910000157, 150.615054999986 -34.9173420000157, 150.615545769031 -34.9174059699118, 150.616090568678 -34.9144019697217, 150.615370999986 -34.9143110000157, 150.615343999986 -34.9144540000157, 150.614387999986 -34.9143320000157))\nAYCA-PCUQ6\tJohnston Stage 2\tReady for service\tPOLYGON ((131.008389200094 -12.4880008665144, 131.008464458975 -12.4881560378704, 131.008718185463 -12.4886865834136, 131.008709036391 -12.4889759249847, 131.008785525431 -12.4892148995855, 131.008879788215 -12.4894241936219, 131.009068329558 -12.4896918496152, 131.009246934128 -12.4897523961531, 131.009340579963 -12.4900317923449, 131.009464144475 -12.4901135630194, 131.009575695957 -12.4899756234459, 131.009972053352 -12.489898836194, 131.010016351213 -12.4901948572439, 131.00996320438 -12.4904316963096, 131.009903610668 -12.4907587112883, 131.009885769622 -12.4910022755593, 131.009851751654 -12.491077585004, 131.010830999986 -12.4909919998868, 131.010706017941 -12.4897414547478, 131.010446647172 -12.4889057308901, 131.01015985071 -12.4880042554685, 131.009924444508 -12.4874029936671, 131.009773497992 -12.4873903237109, 131.009766276903 -12.4872798648377, 131.009477231914 -12.4874228085808, 131.009168187911 -12.48756377424, 131.009050747437 -12.4876241587724, 131.009058732194 -12.48765371271, 131.009032750649 -12.4876934552202, 131.008389200094 -12.4880008665144))\nAYCA-15R7EA\tByford West\tReady for service\tPOLYGON ((115.976886020093 -32.2256277021986, 115.976724769456 -32.2256268080919, 115.976722693219 -32.2258973374892, 115.976721655081 -32.2260326025951, 115.976623635554 -32.2260320589951, 115.97655945722 -32.2260859065486, 115.976557727419 -32.2263112415081, 115.976880759277 -32.2263130445839, 115.977207 -32.2263150000132, 115.977684 -32.2263180000133, 115.977669 -32.2279540000132, 115.977985995385 -32.2279559874471, 115.977985 -32.2281690000132, 115.977947 -32.2283350000132, 115.977919809636 -32.2283576210455, 115.977983414025 -32.2284119584702, 115.977982 -32.2286300000133, 115.978194 -32.2286300000133, 115.978196 -32.2283590000132, 115.978218 -32.2283590000132, 115.978221 -32.2279790000132, 115.978285 -32.2279250000132, 115.979457 -32.2279250000133, 115.979463 -32.2274900000133, 115.979304 -32.2274890000133, 115.97932 -32.2263210000132, 115.97957065044 -32.226320003979, 115.97960330578 -32.225672623555, 115.979340756032 -32.2256475273949, 115.976886020093 -32.2256277021986))\nAYCA-11QH4G\tThornton East Estate\tReady for service\tPOLYGON ((151.649705999999 -32.7652340000161, 151.649693999999 -32.7653270000161, 151.649717999999 -32.7653360000162, 151.649695999999 -32.7654300000162, 151.649744999999 -32.7654530000162, 151.649781999999 -32.7654720000162, 151.649793999999 -32.7654790000162, 151.649846999999 -32.7655420000162, 151.649708999999 -32.7662440000162, 151.650025999999 -32.7662890000162, 151.650166999999 -32.7655760000162, 151.650198999999 -32.7655550000162, 151.650306999999 -32.7655380000162, 151.650490999999 -32.7655640000162, 151.650559999999 -32.7655790000162, 151.650617999999 -32.7656000000162, 151.650660999999 -32.7656220000162, 151.650702999999 -32.7656500000162, 151.650738999999 -32.7656810000162, 151.650768999999 -32.7657140000162, 151.650949999999 -32.7656100000162, 151.650932999999 -32.7655900000161, 151.650931999999 -32.7655340000162, 151.650997999999 -32.7654710000162, 151.651054999999 -32.7654200000162, 151.651136999999 -32.7653620000162, 151.651209999999 -32.7653150000162, 151.651273999999 -32.7652770000162, 151.651307999999 -32.7652590000162, 151.651341999999 -32.7652420000162, 151.651408999999 -32.7652110000161, 151.651462999999 -32.7651890000162, 151.651550999999 -32.7651580000162, 151.651616999999 -32.7651380000162, 151.651688999999 -32.7651190000162, 151.651765999999 -32.7651030000162, 151.651858999999 -32.7650880000162, 151.651963999999 -32.7650770000161, 151.652117999999 -32.7650720000162, 151.652273999999 -32.7650740000162, 151.652733999999 -32.7650800000161, 151.653004999999 -32.7650840000162, 151.653000999999 -32.7649300000162, 151.653007999999 -32.7646280000162, 151.652918999999 -32.7640880000162, 151.652846999999 -32.7638080000162, 151.652725999999 -32.7636700000162, 151.652639999999 -32.7633150000161, 151.651448999999 -32.7635320000162, 151.650603999999 -32.7639500000162, 151.650448999999 -32.7641420000161, 151.650307999999 -32.7648610000162, 151.649990999999 -32.7648160000161, 151.649946999999 -32.7648110000162, 151.649883999999 -32.7651450000162, 151.649868999999 -32.7651830000162, 151.649837999999 -32.7651990000162, 151.649805999999 -32.7652000000161, 151.649738999999 -32.7652010000162, 151.649708999999 -32.7651980000162, 151.649705999999 -32.7652340000161))\nAYAA-G2EO2\tEagle Rise Estate\tReady for service\tPOLYGON ((152.562973981554 -27.4682997975088, 152.562973904479 -27.4682997845744, 152.562973588677 -27.4682997315775, 152.562935018292 -27.4685336497587, 152.563356671423 -27.4688899919495, 152.563446807813 -27.4689310542754, 152.564925054227 -27.4696044681724, 152.565262315378 -27.4696621882956, 152.565647911621 -27.4695521502317, 152.566054152226 -27.4691156867227, 152.566263972519 -27.4676535623109, 152.564751326522 -27.4674965486197, 152.563968179288 -27.4674102729605, 152.563874278236 -27.4682213509184, 152.563397097507 -27.4683052132197, 152.56343025478 -27.4683763669577, 152.562973981554 -27.4682997975088))\nAYCA-KVTM7\tGracemere Greens Estate\tReady for service\tPOLYGON ((150.467308434216 -23.4647783600981, 150.467324828821 -23.4644013273529, 150.467053104026 -23.4643781078816, 150.467078941305 -23.4641911308186, 150.467044888453 -23.4641872124773, 150.467205585355 -23.4633142917605, 150.466916209289 -23.4632690330019, 150.466934124055 -23.4631717184405, 150.466778736096 -23.4631472960395, 150.466783748803 -23.4631208003363, 150.466725782627 -23.4631117683996, 150.466720263857 -23.4631381456946, 150.466350551358 -23.4630804370283, 150.466594892704 -23.4616539746573, 150.466012181735 -23.4615634506659, 150.466018634425 -23.4615257395621, 150.465498427144 -23.4614439680554, 150.465237412462 -23.4628684411657, 150.464943341272 -23.4644105102993, 150.467308434216 -23.4647783600981))\n10295\tDawesville-Port Bouvard South\tReady for service\tPOLYGON ((115.63187062740326 -32.611531466052533, 115.63124299049377 -32.611662507823127, 115.63094258308411 -32.61157665289165, 115.63038468360901 -32.611545022106661, 115.62904357910156 -32.611486279190636, 115.62898993492126 -32.61156309684231, 115.62865734100342 -32.61156309684231, 115.62848031520844 -32.611445610995425, 115.62853932380676 -32.611260344539112, 115.62880754470825 -32.610925960208732, 115.62915086746216 -32.61041986263109, 115.62963366508484 -32.609977024904488, 115.63026666641235 -32.609949912319472, 115.6302747130394 -32.609983344112571, 115.63105523586273 -32.609922340789062, 115.6311222910881 -32.609974306585784, 115.6311222910881 -32.610279322610829, 115.63116252422333 -32.610525594050834, 115.63119739294052 -32.6107673460901, 115.63120543956757 -32.610950354209173, 115.63133955001831 -32.611006838121021, 115.63146561384201 -32.611128843249027, 115.63159972429276 -32.611280219750839, 115.63188940286636 -32.611540044493275, 115.63187062740326 -32.611531466052533))\n156\tGrand Central Shopping Centre\tReady for service\tPOLYGON ((151.94767092229293 -27.5603446110652, 151.94725786210304 -27.561837886139735, 151.94812153340919 -27.561818863655315, 151.94967721463615 -27.562042377641987, 151.95048724176053 -27.560701286894737, 151.94767092229293 -27.5603446110652))\n10309\tDawesville-Dawesville Ridge\tReady for service\tPOLYGON ((115.63877463340759 -32.624083493256379, 115.63760250806808 -32.624080775365933, 115.6376051902771 -32.6243789662823, 115.6376051902771 -32.624430923688848, 115.63709557056427 -32.6244218876203, 115.63709557056427 -32.62454839249677, 115.63710361719131 -32.624851099868224, 115.63722163438797 -32.624851099868224, 115.63720554113388 -32.626276521565423, 115.63770174980164 -32.626272003624429, 115.63790023326874 -32.626265226712512, 115.63806116580963 -32.626310406115579, 115.63845545053482 -32.626310406115579, 115.63852518796921 -32.62625844980009, 115.63867807388306 -32.62626070877095, 115.63868075609207 -32.62639624691856, 115.63908308744431 -32.626421095556687, 115.63902676105499 -32.625583014954053, 115.63883632421494 -32.62455291052477, 115.63877463340759 -32.624083493256379))\nAYCA-ES8DH\tHillTop (Bennis)\tReady for service\tPOLYGON ((150.848479023084 -34.4376222076966, 150.848605234924 -34.4371637118563, 150.848609830433 -34.4367450907916, 150.848538046528 -34.4366839200423, 150.848214339288 -34.4366934102274, 150.848135701787 -34.4364981845755, 150.847981455324 -34.4362804543843, 150.84773866824 -34.4360335708587, 150.847000925189 -34.4354927376342, 150.847056203241 -34.4359781215512, 150.846910705546 -34.4359637038594, 150.846694546787 -34.4360281125747, 150.84623185597 -34.4355851827861, 150.846001266057 -34.4356437733266, 150.845995121135 -34.4362305228941, 150.845882458922 -34.4372520581103, 150.846818994008 -34.4373983942123, 150.848479023084 -34.4376222076966))\nAYCA-MNFP2\tBrookford\tContracted\tPOLYGON ((145.314933876048 -38.1144916738184, 145.314701179915 -38.1156302474136, 145.314441205391 -38.1169022466063, 145.314501142892 -38.1169404041772, 145.31451128026 -38.1170303558291, 145.314554613777 -38.117039540957, 145.314980482666 -38.1170878163045, 145.315234375795 -38.1171222695356, 145.315305973787 -38.1171232965004, 145.315485999998 -38.1170880000283, 145.315515245341 -38.1170871639785, 145.315634852872 -38.1170562966374, 145.315691850634 -38.1167806309811, 145.315752777078 -38.1166714769414, 145.315979099327 -38.1155586304416, 145.316193936628 -38.1154208041003, 145.316225017423 -38.1152701245816, 145.316305008549 -38.1151124676173, 145.316342261338 -38.11511007328, 145.316609890398 -38.1151278031075, 145.31759961816 -38.1152556180403, 145.317795975086 -38.1152780373537, 145.317904177231 -38.1152653678494, 145.317994663345 -38.1151989656425, 145.318025068353 -38.1151233320661, 145.318031094307 -38.1150941893955, 145.318011204653 -38.1150045320876, 145.316036780291 -38.11474974462, 145.315691047926 -38.1145893939496, 145.314933876048 -38.1144916738184))\nAYCA-YGR8M\tLearmonth Street Subdivision\tReady for service\tPOLYGON ((143.810931456638 -37.5588375241757, 143.810688000034 -37.5588110000006, 143.808895000034 -37.5586150000007, 143.808843000034 -37.5586260000008, 143.808796000034 -37.5588840000007, 143.808594000034 -37.5588600000007, 143.808314025791 -37.5603959888227, 143.808316292325 -37.5604098976486, 143.808573000034 -37.5603920000007, 143.808610000034 -37.5603910000007, 143.808990000034 -37.5604030000007, 143.809027000034 -37.5604060000007, 143.809158000034 -37.5604190000007, 143.809194000034 -37.5604240000007, 143.809466000034 -37.5604710000007, 143.809502000034 -37.5604790000007, 143.810023000034 -37.5606520000007, 143.810048000034 -37.5606510000006, 143.810081000034 -37.5606650000007, 143.810322604655 -37.5607824769356, 143.810629000034 -37.5591160000007, 143.810875000034 -37.5591440000006, 143.810931456638 -37.5588375241757))\n17376001\tSpringview Estate\tCheck with carrier\tPOLYGON ((140.750435008 -37.8073679985, 140.750643008 -37.806904, 140.750751008 -37.806939002, 140.750806016 -37.806754002, 140.750588992 -37.8067039965, 140.750544 -37.806718001, 140.750264 -37.8066250015, 140.750390016 -37.806389996, 140.748700992 -37.805904001, 140.748448 -37.805498, 140.748511008 -37.805425998000004, 140.748204 -37.805261995500004, 140.747924 -37.8052910035, 140.747843008 -37.805018998, 140.747644 -37.804911994, 140.746975008 -37.805091000000004, 140.747463008 -37.8064330085, 140.750435008 -37.8073679985))\nON-V-CNL-FUR\tFurlong Road\tReady for service\tPOLYGON ((144.79012191295624 -37.75588456672174, 144.79011118412018 -37.756062699094656, 144.7915381193161 -37.756215383644353, 144.79116797447205 -37.757699800342174, 144.78880226612091 -37.757411401715, 144.78884518146515 -37.756775224297293, 144.78934407234192 -37.755803982888324, 144.79012191295624 -37.75588456672174))\n17324603\tMoonee Ridge Estate\tCheck with carrier\tPOLYGON ((153.15106896 -30.208320005, 153.15000912 -30.2086279745, 153.150114976 -30.2080400075, 153.149439968 -30.2080100375, 153.149415136 -30.208145032, 153.148529888 -30.2079020345, 153.14835888 -30.207708987, 153.148305952 -30.2078860135, 153.14880096 -30.2081130085, 153.148911136 -30.2081380205, 153.148848832 -30.2083119945, 153.148686848 -30.208861981000002, 153.148520896 -30.209423049, 153.147885856 -30.2092800255, 153.147498848 -30.2105649615, 153.150746048 -30.210026038000002, 153.150864832 -30.2093980185, 153.150874912 -30.209344017, 153.150904096 -30.209194981, 153.15093792 -30.209012016000003, 153.150968896 -30.2088490125, 153.151002016 -30.208672985, 153.15103296 -30.2085099815, 153.15106608 -30.208338986, 153.15106896 -30.208320005))\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_-2021577587",
+ "id": "20220727-124935_109657408",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:02+0000",
+ "dateFinished": "2022-08-16T04:47:02+0000",
+ "status": "FINISHED"
+ },
+ {
+ "text": "%python\n\nz.show(new_site_df)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:52+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "language": "text",
+ "editOnDblClick": false
+ },
+ "colWidth": 6.0,
+ "editorMode": "ace/mode/undefined",
+ "fontSize": 9.0,
+ "results": {
+ "0": {
+ "graph": {
+ "mode": "pieChart",
+ "height": 300.0,
+ "optionOpen": false,
+ "setting": {
+ "pieChart": {},
+ "multiBarChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default"
+ },
+ "stackedAreaChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default"
+ },
+ "lineChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default"
+ }
+ },
+ "commonSetting": {},
+ "keys": [
+ {
+ "name": "STATUS",
+ "index": 2.0,
+ "aggr": "sum"
+ }
+ ],
+ "groups": [],
+ "values": [
+ {
+ "name": "STATUS",
+ "index": 2.0,
+ "aggr": "count"
+ }
+ ]
+ },
+ "helium": {}
+ }
+ },
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TABLE",
+ "data": "LOC_UID\tDEVELOPMENT_NAME\tSTATUS\tDEVELOPMENT_SHAPE\n8\tMandalay\tReady for service\tPOLYGON ((144.9582 -37.46798, 144.9567 -37.47636, 144.95571 -37.48181, 144.93863 -37.47984, 144.93726 -37.47967, 144.93966 -37.4656, 144.94151 -37.46591, 144.95816 -37.46764, 144.9582 -37.46798))\n23\tBrighton\tReady for service\tPOLYGON ((115.70471 -31.65684, 115.70459 -31.65681, 115.70434 -31.6566, 115.70414 -31.6564, 115.70306 -31.65532, 115.70213 -31.65461, 115.69924 -31.65204, 115.69808 -31.65102, 115.69702 -31.64993, 115.69682 -31.6497, 115.69669 -31.64946, 115.69645 -31.64893, 115.69539 -31.64694, 115.69497 -31.64612, 115.69466 -31.64546, 115.69396 -31.644, 115.69356 -31.64307, 115.69357 -31.6427, 115.69425 -31.64246, 115.69421 -31.64154, 115.69459 -31.64143, 115.69465 -31.64128, 115.69502 -31.64128, 115.6952 -31.64113, 115.69545 -31.64108, 115.69555 -31.641, 115.69588 -31.64097, 115.69603 -31.64088, 115.69629 -31.64088, 115.6963 -31.64073, 115.69678 -31.64057, 115.69712 -31.6405, 115.69716 -31.63908, 115.69727 -31.63888, 115.6974 -31.63878, 115.69792 -31.63926, 115.698 -31.63926, 115.69823 -31.63901, 115.69823 -31.63821, 115.70003 -31.63822, 115.70118 -31.63794, 115.70272 -31.64007, 115.70373 -31.64136, 115.70389 -31.64154, 115.7038 -31.6417, 115.70388 -31.64186, 115.70411 -31.64197, 115.7042 -31.64195, 115.70479 -31.64276, 115.70495 -31.64293, 115.70508 -31.64286, 115.70535 -31.6427, 115.70539 -31.64259, 115.70538 -31.64246, 115.70542 -31.6416, 115.70548 -31.64151, 115.7062 -31.64171, 115.7071 -31.64192, 115.70714 -31.64209, 115.70722 -31.64305, 115.70795 -31.64303, 115.7089 -31.64302, 115.70894 -31.64294, 115.709 -31.64273, 115.709 -31.6424, 115.70906 -31.64229, 115.70919 -31.64228, 115.70992 -31.64251, 115.70998 -31.64253, 115.71002 -31.64256, 115.71071 -31.64256, 115.71109 -31.64246, 115.7113 -31.6425, 115.7119 -31.64263, 115.71269 -31.64281, 115.71277 -31.64315, 115.71328 -31.64326, 115.71329 -31.64343, 115.71373 -31.64344, 115.71373 -31.64352, 115.71373 -31.64352, 115.71413 -31.64352, 115.71414 -31.64368, 115.71457 -31.64368, 115.71458 -31.64386, 115.71496 -31.64385, 115.71495 -31.64423, 115.71564 -31.64424, 115.71564 -31.64454, 115.71586 -31.64454, 115.71588 -31.64561, 115.71627 -31.64561, 115.71628 -31.64629, 115.71645 -31.64629, 115.71645 -31.64656, 115.71624 -31.64656, 115.71624 -31.64669, 115.71624 -31.64854, 115.71584 -31.64861, 115.71584 -31.64934, 115.71612 -31.64933, 115.71612 -31.64944, 115.71614 -31.65012, 115.71668 -31.65014, 115.71669 -31.65127, 115.71671 -31.65148, 115.71654 -31.65158, 115.71641 -31.65158, 115.71627 -31.65162, 115.71618 -31.65158, 115.71609 -31.65161, 115.71597 -31.65151, 115.71586 -31.6516, 115.71557 -31.65184, 115.71542 -31.65171, 115.71516 -31.6519, 115.71511 -31.65198, 115.71458 -31.6523, 115.71461 -31.65267, 115.71302 -31.6527, 115.71224 -31.65299, 115.71294 -31.65392, 115.7131 -31.65397, 115.71339 -31.65435, 115.7129 -31.65468, 115.71217 -31.65499, 115.71089 -31.65541, 115.7091 -31.65559, 115.70778 -31.6557, 115.70714 -31.65582, 115.7067 -31.65595, 115.70626 -31.65611, 115.70533 -31.65659, 115.70471 -31.65684))\n119\tArcadia\tReady for service\tPOLYGON ((145.43561612126868 -38.070844946421779, 145.43411408422352 -38.077567863893748, 145.43192540166396 -38.078175936505247, 145.42973671911346 -38.078040809694961, 145.40716324803984 -38.074662558297007, 145.39772187231441 -38.073311214044089, 145.394975290284 -38.073040942197693, 145.39282952306633 -38.072500395508129, 145.39347325322984 -38.070844946421779, 145.40033970831024 -38.071824706528389, 145.40081177709743 -38.069425960242491, 145.40282879827163 -38.069831387673887, 145.40300045964798 -38.068446168006204, 145.40312920569144 -38.068344809440426, 145.40823613164869 -38.0692908172665, 145.40879403112851 -38.069257031483147, 145.41051064490085 -38.06898674465662, 145.41484509466909 -38.0696962454469, 145.41553174017446 -38.07027059818914, 145.41608963964529 -38.069459745947832, 145.41690503118514 -38.06912188819436, 145.41797791479397 -38.068885386839128, 145.41887913702647 -38.068344809440426, 145.41935120581365 -38.067871800940182, 145.4351440524905 -38.070946301524863, 145.43561612126868 -38.070844946421779))\n37\tSpringfield Central\tReady for service\tPOLYGON ((152.91246017602205 -27.682974884308496, 152.91265865949379 -27.68373493962827, 152.91295370248017 -27.684946266861616, 152.91324338106003 -27.686395091591351, 152.91336676267002 -27.687297628427526, 152.91336676267002 -27.687791645430448, 152.91301807550192 -27.68826665967261, 152.9121168532694 -27.688903175516757, 152.91122635987685 -27.689406685421048, 152.9102500358006 -27.689881692636131, 152.91015347627697 -27.69024269673816, 152.91000863698704 -27.690570449427678, 152.90983161119522 -27.691273451878441, 152.90987452653704 -27.691425451813458, 152.90999254373162 -27.69162970139266, 152.91043242601691 -27.69228994741793, 152.9093273558972 -27.692527445011063, 152.90956875471073 -27.693510679551785, 152.9081042685919 -27.69380517319814, 152.90805062441015 -27.693619927287248, 152.907825318852 -27.693653176576522, 152.90750345377026 -27.69249894532712, 152.90859779504999 -27.692285197460652, 152.90843686249565 -27.691643951349427, 152.90800770906827 -27.691729451046214, 152.90766975073109 -27.690190446216157, 152.90674707082766 -27.690418448300665, 152.90612479834405 -27.69036144782417, 152.90586730627507 -27.69098845142878, 152.90311535981124 -27.691111951716945, 152.90255209593388 -27.690746200463359, 152.90172061113864 -27.690518199063305, 152.90062626984988 -27.689857942325354, 152.8996392169247 -27.688375912655758, 152.89955875067449 -27.687853397397259, 152.89745589880764 -27.687264377201053, 152.89481660513187 -27.685991322695347, 152.89470931676829 -27.68169702937703, 152.89599141267084 -27.67997736457507, 152.89504727509646 -27.67724104653092, 152.89496144440383 -27.674998734813204, 152.89571246293093 -27.675041491186995, 152.89583048012545 -27.674898969873816, 152.89615234520724 -27.674775451253229, 152.8963883796053 -27.674765949814777, 152.89726814415789 -27.67483245986493, 152.89835175659769 -27.674870465589038, 152.90170988228968 -27.675069995427158, 152.90305098679849 -27.675012986938604, 152.90508946564361 -27.674737445495293, 152.90525039818897 -27.675069995427158, 152.90566882279435 -27.675507059511183, 152.90613016274156 -27.676058137821432, 152.90645202782332 -27.676324174631564, 152.90726741936317 -27.677008266310562, 152.90811499741389 -27.6779488853742, 152.90875872757741 -27.678984507096608, 152.90928444054637 -27.679564070930788, 152.91135510591135 -27.681768285623697, 152.91229924348568 -27.682737365935935, 152.91246017602205 -27.682974884308496))\n35\tYarrabilba\tReady for service\tPOLYGON ((153.101112401 -27.797998206, 153.097860177 -27.807122487, 153.097715464 -27.8163131, 153.100598081 -27.821068293, 153.103789404 -27.825046709, 153.106078824 -27.830224804, 153.108248251 -27.836106915, 153.110692137 -27.837863953, 153.116288014 -27.840655525, 153.119923205 -27.844817942, 153.122317372 -27.853523235, 153.127785181 -27.851776938, 153.131234286 -27.851150309, 153.135634115 -27.849740655, 153.138235543 -27.848667877, 153.141702556 -27.847075291, 153.152204703 -27.844959644, 153.15548911 -27.843380913, 153.158613317 -27.841545667, 153.161936609 -27.84058971, 153.156360679 -27.838491612, 153.15709719 -27.834509947, 153.150360063 -27.83270459, 153.151126372 -27.827536316, 153.151689864 -27.822563851, 153.14849171 -27.820801492, 153.148374771 -27.817968784, 153.139018666 -27.81580407, 153.139814105 -27.808556369, 153.126485712 -27.805759965, 153.124678962 -27.803584281, 153.120764096 -27.80295276, 153.121396647 -27.797353389, 153.100468927 -27.793620173, 153.09982846 -27.793327332, 153.101112401 -27.797998206))\n63\tElliot Springs\tReady for service\tPOLYGON ((146.86272523475841 -19.401424360582585, 146.86598680091777 -19.370253030825211, 146.87276742530554 -19.370900807465254, 146.87448403907788 -19.354705619195496, 146.87491319252322 -19.354300718879195, 146.87705895973193 -19.356811084636384, 146.87971971107862 -19.358349676807865, 146.88916108680405 -19.359321411753072, 146.90006158424185 -19.367580924969729, 146.88495538307035 -19.385070277111986, 146.88341043068334 -19.402557751012733, 146.86272523475841 -19.401424360582585))\n73\tAlkimos Beach\tReady for service\tPOLYGON ((115.681571085 -31.603789876, 115.66484586 -31.60441615, 115.661566552 -31.610171621, 115.66333228 -31.61274436, 115.66392473 -31.616089765, 115.663816018 -31.618554753, 115.663953044 -31.620753676, 115.665543293 -31.623223779, 115.666318538 -31.625258444, 115.667624539 -31.627593927, 115.669081749 -31.630469262, 115.669316217 -31.631381115, 115.67351817 -31.63133169, 115.684710627 -31.631224653, 115.684558817 -31.62481191, 115.6851295 -31.623932319, 115.685971217 -31.622380167, 115.68884267 -31.62192083, 115.690931109 -31.621406698, 115.692879156 -31.619809412, 115.693845515 -31.619494743, 115.698676203 -31.619372823, 115.701569632 -31.62056546, 115.702742506 -31.621367414, 115.705721617 -31.623525252, 115.707237508 -31.624035159, 115.708668761 -31.6242125, 115.708622933 -31.617427904, 115.703317867 -31.603111134, 115.682776791 -31.60374249, 115.681571085 -31.603789876))\n274\tAlkimos Vista\tReady for service\tPOLYGON ((115.6701798417717 -31.603299491660572, 115.70301008012855 -31.602184683770115, 115.70869636323656 -31.617425327227426, 115.70871782090747 -31.624423491706466, 115.69942664887844 -31.61950838680848, 115.69363307740687 -31.619526659055179, 115.69202375199809 -31.620586443194664, 115.68962049272041 -31.621975107592277, 115.68923425462589 -31.622176096775345, 115.68929862763865 -31.622705975266779, 115.68635892656104 -31.623071406951702, 115.68573665406844 -31.623235850741583, 115.68496417787043 -31.624185964725744, 115.68477105882319 -31.631238430603442, 115.66945028093348 -31.631658638376962, 115.66438627031809 -31.622559802190811, 115.66327047136741 -31.613862090913443, 115.66816282060647 -31.621865476945167, 115.6739134767362 -31.619782470124438, 115.67897748735162 -31.618978490108461, 115.6807370164658 -31.616420325668148, 115.68369817522331 -31.615543224530459, 115.68489980485769 -31.614300650436409, 115.68678808000635 -31.614958485846515, 115.68738889482803 -31.612802230201872, 115.68558645037201 -31.609001251174902, 115.68039369371313 -31.606881407001882, 115.67490052965238 -31.606625560475315, 115.66914987352264 -31.608124080128952, 115.66155385759505 -31.611596167127558, 115.66103887346605 -31.610792116396794, 115.6701798417717 -31.603299491660572))\n66\tCalderwood Valley\tReady for service\tPOLYGON ((150.75436137069624 -34.555469949730963, 150.75773022521921 -34.556194500822592, 150.75906060088806 -34.554586342297874, 150.75910351623892 -34.549125440159777, 150.7581593786735 -34.546845540018772, 150.75678608765384 -34.546916235534937, 150.7540395056235 -34.544229763692627, 150.75094960084044 -34.545997189137637, 150.748996952679 -34.544159065894377, 150.74745200029196 -34.544653949222415, 150.7450916563561 -34.544883715482179, 150.74373982301634 -34.545802774175783, 150.74283860078384 -34.546014863202281, 150.741765717175 -34.548471521701948, 150.74133656372965 -34.548665930429195, 150.73929808488455 -34.54907241993569, 150.73740980972687 -34.549938412699241, 150.73346159806215 -34.554427291963435, 150.73534987320184 -34.554674703463647, 150.73436282029465 -34.563368983176353, 150.72972796311558 -34.56287421115659, 150.72895548691758 -34.56167260971268, 150.72835467209592 -34.562944893054329, 150.72577975144188 -34.576232022492285, 150.72629473557089 -34.577786760565317, 150.73041460862095 -34.57700939516365, 150.7350494658 -34.577574752539704, 150.73616526475067 -34.577292074332327, 150.73685191025604 -34.5727690922774, 150.74286005844579 -34.571496959237336, 150.74663660874316 -34.572910439191674, 150.74775240769381 -34.573758515629407, 150.74869654526816 -34.574394567280393, 150.75324557175458 -34.572345050093453, 150.75573466172489 -34.571779657150344, 150.75839541306263 -34.571779657150344, 150.75513384690325 -34.56697366190248, 150.75680754532476 -34.566761626302572, 150.75732252945377 -34.56559542083906, 150.76097033372562 -34.559340039708253, 150.75655005326473 -34.558173730175348, 150.75367472519991 -34.556866030345262, 150.75371764054174 -34.556866030344516, 150.75436137069624 -34.555469949730963))\n263\tEynesbury\tUnder construction\tPOLYGON ((144.5355847930891 -37.7910746733703, 144.53197990416805 -37.790922060790926, 144.53170095442815 -37.79348251900074, 144.52758108138707 -37.793143390561362, 144.529404983523 -37.778644194134444, 144.54755817413573 -37.779627855291615, 144.55086265563696 -37.783664120911816, 144.55622707366319 -37.784274629293243, 144.55734287261387 -37.785054715997774, 144.56172023773291 -37.784274629293243, 144.5624497985801 -37.786284183761765, 144.56097994804577 -37.786606385724, 144.56157003402748 -37.788141065264391, 144.56197772979291 -37.789090685260767, 144.56446681976328 -37.789226344264257, 144.56596885680847 -37.788683706756721, 144.57296405792337 -37.7893620030187, 144.57493816375575 -37.790582920599178, 144.57686935424627 -37.792244692668035, 144.57712684631525 -37.792956869256408, 144.57618270874093 -37.793295998552637, 144.57541023254291 -37.796517649227809, 144.57536731720106 -37.79841666170438, 144.5752814865084 -37.798993137976062, 144.5732215499834 -37.797908002434895, 144.5710757827747 -37.800400399388955, 144.56813608169708 -37.79890836233573, 144.54835210800465 -37.797450206097672, 144.5364860153216 -37.793804689577954, 144.53571353912361 -37.793770776951661, 144.5355847930891 -37.7910746733703))\n9\tOran Park\tReady for service\tPOLYGON ((150.72662 -33.99488, 150.7281 -33.99383, 150.73016 -33.99218, 150.73169 -33.99049, 150.73287 -33.99125, 150.7334 -33.99136, 150.73394 -33.99127, 150.73456 -33.99154, 150.73497 -33.99198, 150.73664 -33.99237, 150.7377 -33.99303, 150.7384 -33.99282, 150.73896 -33.99227, 150.73945 -33.99195, 150.73993 -33.99147, 150.74072 -33.99117, 150.74136 -33.99035, 150.74364 -33.99058, 150.74748 -33.99093, 150.74821 -33.99099, 150.75042 -33.98803, 150.75269 -33.98656, 150.75336 -33.9854, 150.75495 -33.98362, 150.75596 -33.98344, 150.75546 -33.98449, 150.75557 -33.98487, 150.75555 -33.98531, 150.75576 -33.98579, 150.75611 -33.98625, 150.75666 -33.98624, 150.75696 -33.98657, 150.75628 -33.98698, 150.75563 -33.98746, 150.75542 -33.98794, 150.75598 -33.98841, 150.75583 -33.98876, 150.75619 -33.98915, 150.75628 -33.99001, 150.75615 -33.9906, 150.75566 -33.99083, 150.75544 -33.99125, 150.75574 -33.99152, 150.75559 -33.99173, 150.75651 -33.99243, 150.75632 -33.993, 150.75684 -33.99335, 150.75664 -33.99371, 150.75604 -33.99389, 150.75608 -33.99453, 150.75636 -33.99499, 150.75598 -33.99543, 150.7563 -33.99574, 150.75626 -33.99625, 150.75581 -33.99672, 150.75508 -33.99684, 150.75538 -33.99752, 150.75499 -33.99768, 150.75469 -33.99805, 150.7548 -33.9983, 150.75523 -33.99862, 150.75531 -33.9989, 150.75551 -33.99915, 150.75533 -33.99933, 150.75538 -33.9996, 150.75566 -33.99969, 150.75576 -33.99988, 150.75553 -34.00036, 150.7551 -34.00034, 150.75497 -34.00072, 150.75454 -34.00084, 150.75413 -34.00113, 150.75385 -34.00163, 150.75357 -34.00171, 150.75317 -34.00219, 150.75323 -34.00276, 150.75297 -34.00326, 150.75314 -34.00376, 150.75222 -34.00438, 150.74821 -34.00572, 150.74782 -34.00529, 150.74418 -34.00737, 150.74304 -34.0078, 150.74106 -34.00844, 150.74012 -34.0086, 150.74031 -34.0094, 150.74074 -34.01063, 150.74151 -34.01267, 150.74111 -34.01287, 150.74053 -34.01308, 150.738 -34.01324, 150.73591 -34.01406, 150.73302 -34.01462, 150.73167 -34.01422, 150.73044 -34.01361, 150.72888 -34.01253, 150.72825 -34.01212, 150.7245 -34.01166, 150.72456 -34.00963, 150.72433 -34.00774, 150.72349 -34.00515, 150.72304 -34.00399, 150.72298 -34.00296, 150.72302 -34.00168, 150.72336 -34.00022, 150.72411 -33.99864, 150.72527 -33.99675, 150.72662 -33.99488))\n133\tSpringfield Rise\tReady for service\tPOLYGON ((152.89595519065821 -27.695522398191628, 152.89635215759267 -27.696282366168443, 152.89698515892519 -27.6970898263458, 152.89829407692315 -27.698524240869244, 152.89889489174479 -27.698638233267836, 152.89958153725016 -27.698913714406725, 152.90027891159545 -27.699350683061478, 152.90106211662442 -27.699911140297878, 152.9014483547279 -27.700129622847154, 152.90184532166239 -27.700538089049321, 152.90224228859685 -27.700699575265332, 152.90243540764411 -27.700927555399115, 152.90264998436226 -27.70142151072206, 152.90273581505494 -27.701573496525633, 152.90889416695012 -27.704717655344481, 152.90994559287907 -27.703235827430284, 152.91037474632438 -27.702741880319987, 152.91044984817708 -27.702390416591474, 152.9103854751643 -27.701791975746776, 152.91025672912983 -27.701725482116743, 152.91028891564068 -27.7016019938402, 152.90991340637714 -27.701003548671743, 152.90965591430816 -27.7003481049598, 152.90926967621365 -27.69917019622083, 152.90907655716637 -27.698752225547366, 152.90857230186836 -27.698258258143387, 152.9083469963102 -27.697944777669406, 152.90831480979935 -27.697783287376328, 152.90722046851957 -27.697688292974721, 152.90593300819259 -27.697099325841211, 152.90589009285074 -27.69687133771037, 152.90651236534333 -27.69622536875298, 152.90664111137781 -27.695427401822275, 152.90829335212845 -27.69516141154876, 152.90863667488111 -27.696130372996226, 152.90893708229194 -27.696396360907723, 152.90936623573728 -27.696073375502177, 152.90960227012636 -27.695674392210456, 152.90985976219537 -27.694971418099861, 152.91050349235888 -27.694249439976804, 152.91071806907706 -27.693869449573643, 152.91069661140614 -27.693432458973867, 152.90797148704667 -27.693869449573643, 152.90745650291768 -27.692539472743537, 152.90861521721018 -27.692254475600532, 152.90844355583383 -27.691570479421731, 152.90805731773935 -27.691646479208515, 152.90769253730676 -27.690183474014852, 152.90651236534333 -27.690392475956656, 152.90612612724883 -27.690354475633004, 152.90580426216707 -27.691038479431217, 152.90301476478589 -27.691114479588347, 152.90198479652787 -27.690392475956656, 152.90039692879 -27.689708468111938, 152.8995386218993 -27.688264437477702, 152.89653454780893 -27.68708639834254, 152.8946891880021 -27.68606035390032, 152.89477501869479 -27.681348025989148, 152.89606247902179 -27.679865880823613, 152.89447461128395 -27.676369458700144, 152.88988266944671 -27.675647357579404, 152.89061223030288 -27.672492859876254, 152.88842354774337 -27.671732726329545, 152.88567696571297 -27.67139066450849, 152.88254414558813 -27.671694719513962, 152.88211499214276 -27.675571346657765, 152.87696515083474 -27.676939535160493, 152.87185822486848 -27.678231697456734, 152.87155781745764 -27.679599852639054, 152.86979828834347 -27.68062595777964, 152.87160073280847 -27.682108092631655, 152.87035618782329 -27.686782386179317, 152.88057003974674 -27.692406474169655, 152.89117012977371 -27.697840283977445, 152.89134179115007 -27.694838422488946, 152.89595519065821 -27.695522398191628))\n17325842\tPart Section 4574 Goode Road Subdivision\tCheck with carrier\tMULTIPOLYGON (((131.148793088 -12.640363029, 131.148777952 -12.630311017, 131.148309952 -12.628445033, 131.148290144 -12.619535044500001, 131.143110848 -12.614419979500001, 131.133918944 -12.6144039585, 131.133932992 -12.624888963, 131.134289056 -12.6252710065, 131.136919936 -12.628095031500001, 131.141148832 -12.628091979, 131.14114992 -12.6326340065, 131.148485984 -12.640480023, 131.148793088 -12.640363029)), ((131.133562912 -12.628095031500001, 131.126177888 -12.628101969, 131.124642112 -12.6281040225, 131.124366016 -12.6281040225, 131.123564992 -12.6281050215, 131.12277408 -12.628106002, 131.12198208 -12.628107001, 131.121188992 -12.6281079815, 131.120394848 -12.6281089805, 131.11959888 -12.628109961, 131.11880688 -12.62811096, 131.11881696 -12.6425089735, 131.118904096 -12.642599975, 131.119394048 -12.6426300375, 131.133558944 -12.642622027, 131.133562912 -12.628095031500001)), ((131.14870704 -12.6418040125, 131.148492128 -12.641029029, 131.14114992 -12.633174003, 131.141153888 -12.642618956, 131.148438112 -12.6426200475, 131.148548992 -12.6425310255, 131.14870704 -12.6418040125)), ((131.148286912 -12.6182490355, 131.148276832 -12.6136420175, 131.148185024 -12.613552015, 131.14353312 -12.6135510345, 131.148286912 -12.6182490355)), ((131.136419168 -12.6280940325, 131.13393408 -12.625427979, 131.133938048 -12.628095031500001, 131.136419168 -12.6280940325)))\n54\tAtherstone\tReady for service\tPOLYGON ((144.58145 -37.70794, 144.58007 -37.71018, 144.58093 -37.71085, 144.57982 -37.71303, 144.58256 -37.7133, 144.58308 -37.71445, 144.58239 -37.71554, 144.58127 -37.71663, 144.58213 -37.71805, 144.58299 -37.7188, 144.58351 -37.7207, 144.58308 -37.7226, 144.58188 -37.72471, 144.58059 -37.72572, 144.58136 -37.72674, 144.581263669 -37.727394685, 144.58062394 -37.727913906, 144.579897506 -37.728205102, 144.580152951 -37.72865978, 144.580045317 -37.729274243, 144.579812075 -37.729694428, 144.579333815 -37.730018248, 144.57885404 -37.730309006, 144.578862308 -37.730757048, 144.579028682 -37.730980412, 144.579237179 -37.731299284, 144.579374167 -37.732065401, 144.578264073 -37.733281384, 144.596556641 -37.735211378, 144.59767 -37.72912, 144.60076 -37.71147, 144.58033 -37.70508, 144.58145 -37.70794))\n307\tSanctuary Cove\tUnder construction\tPOLYGON ((153.3576214596788 -27.869021570119873, 153.356374281298 -27.865787338769938, 153.35243607772102 -27.867023306218769, 153.35138445487397 -27.864376451687559, 153.35101878873218 -27.864437402556749, 153.35105016612619 -27.8642193558593, 153.35092848930137 -27.864071375804532, 153.350725488016 -27.864029201288457, 153.35012667391598 -27.862433832996572, 153.35006548180175 -27.862053742065097, 153.350157582516 -27.861678587130346, 153.3503894736472 -27.861355515546251, 153.3517454332912 -27.860061592080388, 153.35249410893795 -27.858967048294623, 153.35274595127095 -27.859170742989356, 153.35398528804708 -27.857959950145393, 153.3555892692257 -27.858291575600706, 153.35612918279912 -27.857992791118011, 153.3563898374799 -27.856996961065626, 153.35635053001738 -27.856988759095511, 153.3565618181253 -27.85685364225262, 153.35634906221171 -27.856591097189472, 153.35662554096848 -27.856414294321816, 153.35358011365111 -27.852651527311831, 153.35372855105737 -27.852480473578495, 153.35310681188489 -27.851712637370181, 153.35409861619647 -27.850022406539566, 153.35412334333978 -27.849977395797239, 153.35415701964882 -27.849902938757964, 153.35418331818494 -27.849826063746434, 153.35420199035804 -27.849747583705167, 153.35421286986141 -27.849667860086402, 153.35421534169666 -27.849629585368092, 153.35425275040961 -27.848693538731045, 153.354263740375 -27.848596305225122, 153.35430075960014 -27.848468317979503, 153.35436225771159 -27.848347939589335, 153.35444632079276 -27.848238965674668, 153.35455044667847 -27.848144561570596, 153.35462548578607 -27.848093554836357, 153.35598896199971 -27.847269169297782, 153.35603485447456 -27.847243328048563, 153.3561689973358 -27.847186211102205, 153.35631225538859 -27.847150731838433, 153.35640517896096 -27.8471400222202, 153.35717815799259 -27.847088653827274, 153.35723317241684 -27.847086525796588, 153.35738143693067 -27.847096701805082, 153.3575255050238 -27.847129632940543, 153.35766085125405 -27.847184338132866, 153.35768551485583 -27.847197180758545, 153.35860191230574 -27.847694096374791, 153.35863186134495 -27.847709723017015, 153.35871246168622 -27.847746067036677, 153.3599713099012 -27.848217262533776, 153.36193275703596 -27.849252236994012, 153.3631739979437 -27.849934286090452, 153.36436433553 -27.850791915016959, 153.364888974739 -27.851277457154261, 153.36558445956646 -27.851860201127362, 153.36633082049519 -27.852352821700947, 153.36767128296606 -27.853332138429348, 153.36778288327446 -27.853419569312575, 153.36788680338714 -27.853514331274528, 153.36798262181006 -27.853615613157221, 153.368311522681 -27.853990108040293, 153.36838745968447 -27.854081604855541, 153.36845754583689 -27.854176546959312, 153.36852169707359 -27.854274844329524, 153.36857974466133 -27.854376136403292, 153.368631435808 -27.854479972586415, 153.36867668644254 -27.854586262855257, 153.36871532782504 -27.854694646645303, 153.36874719090838 -27.854804673136652, 153.36877227475736 -27.854916071570273, 153.36879041093272 -27.855028571633802, 153.36880159788637 -27.855141722057013, 153.36880583468084 -27.855255252077892, 153.36880312037812 -27.855368890933391, 153.36879328592534 -27.855482187797953, 153.36877658164059 -27.855594871234814, 153.36875300597583 -27.855706489968625, 153.36872247454764 -27.855816863710693, 153.36868523706633 -27.85592554051216, 153.36864137635007 -27.856032249380192, 153.36859105897096 -27.856136719097375, 153.36853428369258 -27.856238588638444, 153.3682193943385 -27.856766069843026, 153.3681785430698 -27.85687132643751, 153.36817573610713 -27.856982528609826, 153.3682111060044 -27.857089296634072, 153.36828143547027 -27.857181349950917, 153.3683799950017 -27.857250041956004, 153.36849738192294 -27.857288809059231, 153.36862244412583 -27.857293890284136, 153.368743370736 -27.857264865902266, 153.36885212676685 -27.857228111988604, 153.36896552857729 -27.857202988513471, 153.36908106329369 -27.857189411932431, 153.36919764338131 -27.857187746171991, 153.36931367725856 -27.857197905234354, 153.36942765709634 -27.85721980290279, 153.36953799100365 -27.857253262935188, 153.36964333681451 -27.857297657148166, 153.36981311056755 -27.857348196470554, 153.36999207641722 -27.857343203855642, 153.37015795751788 -27.857283280573668, 153.37029017546956 -27.8571758828495, 153.37050958203704 -27.856920954046075, 153.37059691735081 -27.856791925002042, 153.37064994992795 -27.856648998474185, 153.37066610718415 -27.856499131079026, 153.37064466097181 -27.85634981598384, 153.3705865575825 -27.8562083613171, 153.37049475272175 -27.856081889273103, 153.37043752768452 -27.856026265083891, 153.37034386583068 -27.855944745120951, 153.37026031392497 -27.855856067782145, 153.37019799200124 -27.855754607411807, 153.370159257958 -27.85564414844027, 153.37014563459738 -27.855529199573478, 153.37015772281964 -27.8554140914677, 153.37019495130161 -27.855303248165974, 153.37025591121392 -27.855201095945649, 153.37033818719712 -27.855111612498561, 153.37043869176429 -27.85503814552807, 153.37055341466251 -27.854983593939377, 153.37067800851912 -27.854950225763144, 153.37080745198526 -27.854939137533222, 153.37094141473978 -27.8549516839551, 153.37112188641561 -27.854971957373046, 153.3713037832805 -27.854968038263465, 153.37148300230723 -27.854940208435377, 153.37165552484402 -27.854888930002197, 153.37181758566663 -27.854815296201448, 153.37196542204362 -27.854721122322768, 153.37221821460227 -27.854533250802831, 153.37232341544197 -27.854462116437276, 153.372435598641 -27.854400078942479, 153.37255376043552 -27.854347502033658, 153.37267689768564 -27.8543049299377, 153.37280392288989 -27.854272726601515, 153.37293383168574 -27.854251075239862, 153.37306536877 -27.854240250005027, 153.37319752978675 -27.854240434119664, 153.37332905789177 -27.85425145047164, 153.37345886405095 -27.854273211754858, 153.37358585953746 -27.85430572092173, 153.37478584121914 -27.854666647106967, 153.37492620555633 -27.854714101114503, 153.37611434888117 -27.855161061226998, 153.37628428135721 -27.855233433977453, 153.37644588594617 -27.855319457804, 153.37659790422779 -27.855418504382364, 153.37969519519376 -27.857639322630813, 153.37977624388324 -27.857704083393092, 153.37984894309562 -27.857776268033806, 153.38093751861805 -27.858979438756183, 153.38101763297314 -27.859087884919187, 153.38147613543885 -27.859860557126968, 153.3814843052028 -27.859873531299385, 153.38157637249893 -27.860070394259342, 153.38162693718081 -27.860278744136195, 153.38171529576846 -27.860923012744202, 153.38172113595164 -27.861155584467387, 153.38167604906039 -27.861674316093431, 153.3816383950481 -27.861876140824457, 153.38156192980477 -27.862069047371065, 153.38154928534286 -27.8620938122916, 153.38148453602858 -27.862236053175479, 153.38143320255418 -27.862382498929449, 153.38139578435292 -27.862532245634249, 153.3813723614455 -27.86268421001617, 153.38136494059609 -27.862837393725787, 153.38137008401532 -27.86299072320643, 153.38143454096718 -27.863793546048718, 153.38144475050024 -27.863958414167847, 153.38144884663976 -27.86412356995362, 153.38144699561138 -27.864288651926074, 153.38143894611159 -27.864453660780107, 153.38142494844115 -27.86461832505697, 153.381404834739 -27.864782554963973, 153.38137877154819 -27.864946079272467, 153.38134667445118 -27.865108717702235, 153.38130862686518 -27.865270379763469, 153.38121088294804 -27.865654595705809, 153.38117729888543 -27.865823285292869, 153.38116189853869 -27.865994181001692, 153.38116475943696 -27.866165477518773, 153.38118587692915 -27.866335821026809, 153.38134393670555 -27.867221870874925, 153.38056085879808 -27.867992195803545, 153.36932467092709 -27.868496400223492, 153.36891726489478 -27.870331296839115, 153.36687640413047 -27.870422122284, 153.36677406198075 -27.868611512805323, 153.3576214596788 -27.869021570119873))\n75\tHarpley\tReady for service\tPOLYGON ((144.625651148 -37.912572931, 144.626340218 -37.90889239, 144.621953286 -37.908351263, 144.623229814 -37.901229329, 144.598997471 -37.898326402, 144.597555364 -37.906417448, 144.596688951 -37.911478274, 144.601576481 -37.911991441, 144.601295313 -37.914289839, 144.602583748 -37.916121097, 144.604465182 -37.917459241, 144.606839982 -37.918195642, 144.609320817 -37.918736861, 144.625651148 -37.912572931))\n137\tWestbrook\tReady for service\tPOLYGON ((144.69124098091331 -37.834372936889345, 144.69955046444164 -37.8353982229159, 144.70257599621192 -37.835482956660279, 144.70506508617328 -37.835804944003613, 144.71939344671335 -37.837016620621313, 144.72082574633029 -37.826195559027411, 144.71900720861885 -37.826051493470523, 144.71911986139787 -37.82513624689166, 144.7209544923648 -37.825271839693919, 144.72130317953295 -37.82276333252922, 144.70554251935798 -37.821509046972714, 144.693644240191 -37.819860646039956, 144.69154675273961 -37.832059635909452, 144.69146092205594 -37.833347636613475, 144.69124098091331 -37.834372936889345))\n28\tJordan Springs\tReady for service\tGEOMETRYCOLLECTION (POLYGON ((150.73509684920933 -33.713721832632558, 150.74857226730117 -33.715542405921916, 150.74861518264302 -33.716042164385414, 150.74522487044914 -33.71564949726617, 150.74320784926593 -33.715899376549494, 150.73994628310658 -33.715756588476864, 150.73406688094235 -33.716327739344123, 150.73101989150115 -33.716327739344123, 150.73050490737211 -33.715399617254882, 150.72857371688161 -33.715149736516381, 150.72844497084714 -33.715899376549494, 150.73436728835318 -33.719718869369387, 150.73277942061532 -33.722146122290575, 150.735440171962 -33.722324594061028, 150.73728553175988 -33.7210395890298, 150.73857299208692 -33.721575010130522, 150.73827258467608 -33.722253205397521, 150.73634139418553 -33.723573886066454, 150.73638430953636 -33.7241092913596, 150.74007502914108 -33.723788048584481, 150.74222079634978 -33.726857652623387, 150.73535434126939 -33.731711686090179, 150.72762957930726 -33.730855111899821, 150.7270287644856 -33.728999171821073, 150.72539798140591 -33.728356721672782, 150.72050563215782 -33.72771426671504, 150.72290889143557 -33.721646399358789, 150.72634211898026 -33.71821964945633, 150.72625628828757 -33.716863189832765, 150.72514048933689 -33.714578577812922, 150.73123446821933 -33.714721367844604, 150.73492518782405 -33.715221131087723, 150.73509684920933 -33.713721832632558)), POLYGON ((150.7529925477441 -33.72444837965098, 150.75741282819598 -33.724698233324709, 150.760245240919 -33.727517960073968, 150.75930110334465 -33.729445314927467, 150.75852862714666 -33.738688878162677, 150.75200549481895 -33.739688122646477, 150.75166217206623 -33.740758728819578, 150.73908797620692 -33.739616748426769, 150.73981753706309 -33.737903749331331, 150.74200621961361 -33.736333470112932, 150.74333659528247 -33.736119338901709, 150.74591151593654 -33.734798851289142, 150.74771396040154 -33.735512630900381, 150.74762812970886 -33.732907306599927, 150.74917308210487 -33.73322851524113, 150.75101844190274 -33.7307301941155, 150.74814311383787 -33.728731484843763, 150.7529925477441 -33.72444837965098)))\n40\tThe Hermitage\tReady for service\tPOLYGON ((150.782646178 -33.999267672, 150.771383339 -34.009138271, 150.763992979 -34.0158181, 150.761280902 -34.019853454, 150.761541651 -34.019997437, 150.761976053 -34.020213471, 150.762150748 -34.020429119, 150.76267271 -34.020788837, 150.763193167 -34.020933202, 150.763713676 -34.021077582, 150.764148087 -34.021293606, 150.764495886 -34.021509481, 150.764843674 -34.02172535, 150.765104397 -34.021869308, 150.765365123 -34.022013261, 150.765715036 -34.022227712, 150.766150631 -34.022442804, 150.766585363 -34.022586432, 150.766933159 -34.022730094, 150.767280934 -34.022873747, 150.767541863 -34.023089356, 150.767976564 -34.02330485, 150.768324202 -34.023376553, 150.768671892 -34.023520163, 150.769019559 -34.023663762, 150.769367076 -34.023663546, 150.769801454 -34.023663276, 150.77014906 -34.023806857, 150.770672351 -34.023947874, 150.771021838 -34.024088768, 150.771371373 -34.02415734, 150.77171973 -34.024371048, 150.772153619 -34.024370678, 150.772413676 -34.024227088, 150.772586711 -34.023940178, 150.77275989 -34.023724939, 150.773193468 -34.023437501, 150.773453762 -34.023221644, 150.773627204 -34.023005982, 150.77397432 -34.022789954, 150.774147955 -34.022502031, 150.774408535 -34.022285593, 150.774669068 -34.022069191, 150.775016399 -34.021852546, 150.775188951 -34.021566759, 150.77544795 -34.02128163, 150.775707107 -34.020996322, 150.775966647 -34.0207823, 150.776139327 -34.020496576, 150.776399809 -34.020208583, 150.776573737 -34.019775928, 150.776660923 -34.01963102, 150.776922058 -34.019341119, 150.777182829 -34.019123864, 150.777443207 -34.018907541, 150.777790299 -34.018691064, 150.778137269 -34.018402783, 150.778484217 -34.018185904, 150.778831014 -34.01804059, 150.779090917 -34.017751508, 150.7793506 -34.017462667, 150.779437055 -34.017246468, 150.779436915 -34.016815448, 150.779436865 -34.016528541, 150.779436801 -34.016169899, 150.779436751 -34.015882979, 150.779263597 -34.015524303, 150.77909046 -34.015237366, 150.778917317 -34.014878709, 150.778917264 -34.01459179, 150.778917177 -34.01401795, 150.778917143 -34.013802715, 150.779090149 -34.013515796, 150.779176609 -34.013157185, 150.779263093 -34.012942007, 150.779436102 -34.01265507, 150.779609186 -34.012296195, 150.779522608 -34.012009193, 150.779436019 -34.01165038, 150.779782341 -34.011506424, 150.780128804 -34.011362407, 150.780475382 -34.011361998, 150.780908717 -34.011505175, 150.781168736 -34.011720418, 150.781515511 -34.011720152, 150.781862089 -34.011648246, 150.782035631 -34.011360718, 150.782035926 -34.011001292, 150.782122844 -34.010713651, 150.782296472 -34.01042592, 150.782470141 -34.010138122, 150.782730116 -34.00985067, 150.782990077 -34.009706973, 150.783337147 -34.009490977, 150.7838575 -34.009490698, 150.784204273 -34.009490643, 150.784550859 -34.009562597, 150.784810518 -34.00977844, 150.785070138 -34.009994244, 150.785416496 -34.01013809, 150.785676032 -34.010353832, 150.786022304 -34.010497634, 150.786368689 -34.010569517, 150.786801995 -34.010497587, 150.787408314 -34.010497571, 150.787841005 -34.010425854, 150.78801399 -34.01042593, 150.788705811 -34.010426225, 150.790004397 -34.010282588, 150.791304294 -34.009994898, 150.792083699 -34.009420255, 150.792257434 -34.008270905, 150.791226576 -34.006110903, 150.791918926 -34.003883117, 150.793477953 -34.003164931, 150.793207829 -34.001520251, 150.787603469 -33.994492341, 150.782646178 -33.999267672))\n86\tArmstrong Creek\tReady for service\tPOLYGON ((144.337797674 -38.219653803999996, 144.334329076 -38.21921024, 144.332997821 -38.225141406, 144.32758333 -38.224454796, 144.329290013 -38.214605253, 144.320190559 -38.214928417, 144.313901514 -38.215341411, 144.307436181 -38.215991669, 144.300853112 -38.217127332, 144.299590074 -38.223868443, 144.300598375 -38.223471576, 144.301468532 -38.223242125, 144.30201333 -38.223174227, 144.302449462 -38.223102553, 144.302957019 -38.223148463, 144.303317429 -38.223015575, 144.304403256 -38.222470702, 144.304804605 -38.222105426, 144.306451044 -38.221486849, 144.307225542 -38.221131172, 144.30777861 -38.220973069, 144.308475304 -38.221084675, 144.309018461 -38.221425209, 144.309606658 -38.221385885, 144.310495694 -38.221330715, 144.310948021 -38.221024369, 144.31153447 -38.221012428, 144.312120423 -38.221090061, 144.312503876 -38.220692035, 144.312712238 -38.22005102, 144.313667401 -38.220231488, 144.314546274 -38.220469301, 144.315132334 -38.220576604, 144.31554505 -38.221266944, 144.316222268 -38.222577394, 144.316903356 -38.22291975, 144.317284781 -38.223367943, 144.317689581 -38.224046234, 144.318303576 -38.224903548, 144.317940464 -38.226949432, 144.325020812 -38.227905549, 144.324168361 -38.232450089, 144.335061341 -38.233800422, 144.337797674 -38.219653803999996))\n12\tWaterford County\tReady for service\tPOLYGON ((151.63323 -32.76639, 151.63714 -32.76419, 151.63851 -32.7637, 151.64121 -32.76354, 151.64357 -32.76365, 151.64703 -32.76352, 151.64864 -32.75403, 151.64334 -32.75004, 151.64302 -32.74946, 151.64297 -32.74896, 151.64302 -32.74452, 151.64027 -32.74412, 151.63499 -32.74619, 151.63327 -32.74654, 151.6322 -32.7474, 151.6257 -32.74912, 151.62355 -32.75865, 151.63445 -32.76027, 151.63323 -32.76639))\n17346815\tKilgariff\tCheck with carrier\tPOLYGON ((133.874777984 -23.770110992, 133.875308 -23.7729379955, 133.878160992 -23.7724860035, 133.878228 -23.772841999, 133.877851008 -23.7729019945, 133.877761984 -23.7730159915, 133.877804 -23.773239009, 133.878868 -23.773069993, 133.879559008 -23.776754009, 133.877053984 -23.7771519995, 133.876884 -23.776244001000002, 133.876342016 -23.7763310065, 133.875762016 -23.7732329965, 133.875374016 -23.7732950085, 133.876002016 -23.7767370075, 133.876144992 -23.7774770075, 133.876216 -23.777825991500002, 133.877108 -23.781026991, 133.904918016 -23.7810330035, 133.904898016 -23.7702240085, 133.89698 -23.7700899945, 133.893275008 -23.770094009, 133.874777984 -23.770110992))\nON-Q-CM\tCoomera Waters\tReady for service\tPOLYGON ((153.34836959838867 -27.844502585656677, 153.35339069366455 -27.84123913416736, 153.35626602172852 -27.8433641834974, 153.35806846618652 -27.842377558628446, 153.35932374000549 -27.844673344950078, 153.36686611175537 -27.845935058064075, 153.36625456809998 -27.848325632134266, 153.37134003639221 -27.848828404894746, 153.37165117263794 -27.841846295366697, 153.37511658668518 -27.837615070086226, 153.37763786315918 -27.833231877968903, 153.37433338165283 -27.829247004223753, 153.3696985244751 -27.832093357543346, 153.36300373077393 -27.831562043923782, 153.3546781539917 -27.837330452596927, 153.35128784179687 -27.83812737968551, 153.34789752960205 -27.840138645832106, 153.34746837615967 -27.844464639110523, 153.34836959838867 -27.844502585656677))\n150\tBrighton - Ridgewood\tReady for service\tPOLYGON ((115.72628719298541 -31.668997101580473, 115.7263622948381 -31.669481057213204, 115.72681290595435 -31.669316695205524, 115.72888357131933 -31.668622719078183, 115.72848660438487 -31.665865025858139, 115.72724205939969 -31.663034196011619, 115.72643739669981 -31.663235096457516, 115.72518212288364 -31.66427611908124, 115.72495681732552 -31.664321777700938, 115.7245276638802 -31.663874322258181, 115.72400195091123 -31.663061591552516, 115.72373373001126 -31.662422360159777, 115.72334749191674 -31.662047951159117, 115.72270376175324 -31.66163701271395, 115.72295052498228 -31.661490900828507, 115.72337967841864 -31.660632488863083, 115.72597605675257 -31.659591425411033, 115.7261799046308 -31.659262666108283, 115.72411996810578 -31.655061750405874, 115.72077257125373 -31.65511654618091, 115.72042924850106 -31.655299198530749, 115.72010738341932 -31.654824301674321, 115.72023612945382 -31.654477260128289, 115.71967822998295 -31.654714709747321, 115.71969968765387 -31.654933893472087, 115.71875018566405 -31.655285499617328, 115.71685654609988 -31.655303764835036, 115.71634156196188 -31.655276367006749, 115.71505410163488 -31.655961310290589, 115.71574074714023 -31.656874560149568, 115.7183317610497 -31.660942979212585, 115.7181171843315 -31.659344856043028, 115.71865362613144 -31.660805998302941, 115.71823520152606 -31.661920103837108, 115.71856779544775 -31.663025064162593, 115.7187931009969 -31.663709950329586, 115.71997327296933 -31.663335546517175, 115.72100324122734 -31.662824163263277, 115.72248382060162 -31.663865190491734, 115.72308463541431 -31.663267057852121, 115.72334212748332 -31.663481655501595, 115.72310072866973 -31.663974771626666, 115.72362644163869 -31.6639382445958, 115.72405023066855 -31.6640067327668, 115.72457594363752 -31.664764665150937, 115.72495145289207 -31.664527241213474, 115.72501046148935 -31.664604860644879, 115.72409314600141 -31.6654404068808, 115.72384101835688 -31.665787407480423, 115.72429162947313 -31.665997433529363, 115.72440428225221 -31.6660522228554, 115.72429162947313 -31.666289642895311, 115.72541279283928 -31.666622943080739, 115.72524113145398 -31.667033859471307, 115.72524113145398 -31.667362591274951, 115.72521967378306 -31.667618270762642, 115.7258312174357 -31.667892212289622, 115.72571320025011 -31.6682620320691, 115.72563809839743 -31.6686272847269, 115.72651786295002 -31.668526840389312, 115.72658223596278 -31.668691203794694, 115.72628719298541 -31.668997101580473))\n17348681\tJerberra Estate\tCheck with carrier\tPOLYGON ((150.617052 -35.0503108155, 150.616404 -35.050221812000004, 150.615750592 -35.050132087, 150.615110176 -35.050044064, 150.614445248 -35.0499528035, 150.61379616 -35.049863615, 150.613155712 -35.049775592, 150.61244688 -35.049678208, 150.611807168 -35.049590370000004, 150.611097952 -35.049492986000004, 150.6108816 -35.049463201, 150.610515488 -35.049412973500004, 150.610208768 -35.049370775, 150.609871072 -35.049324414000004, 150.609529088 -35.049277350000004, 150.609196448 -35.049231729, 150.60916368 -35.049227215, 150.608841472 -35.049182944500004, 150.608509568 -35.049137305, 150.608193856 -35.0490939225, 150.607861216 -35.049048209, 150.607517408 -35.04900096, 150.607212128 -35.0489590205, 150.606869056 -35.048911864000004, 150.606542176 -35.048866946000004, 150.606410048 -35.048848853, 150.605884448 -35.048776592, 150.605629216 -35.0487414975, 150.60557376 -35.0488410275, 150.605522656 -35.048932917, 150.6054312 -35.049097530000004, 150.605386912 -35.049177006, 150.6053808 -35.049183037, 150.605211968 -35.0493465585, 150.605039168 -35.0495136875, 150.604833952 -35.0497124145, 150.60470041599999 -35.0498416555, 150.604482592 -35.0500525185, 150.60438 -35.050100489, 150.604141696 -35.0502117295, 150.603552 -35.050487398, 150.603213952 -35.050663888, 150.602958368 -35.0507971805, 150.602833088 -35.050940648, 150.602646592 -35.0511545635, 150.602468768 -35.0513583225, 150.602302816 -35.05154841, 150.60218256 -35.0516862905, 150.602057632 -35.051829480500004, 150.60191472 -35.0519930945, 150.601869728 -35.0520444875, 150.601753792 -35.0521575225, 150.601575616 -35.052331404, 150.601411808 -35.052491336500005, 150.601267072 -35.052632362000004, 150.601597568 -35.0528120155, 150.601650848 -35.052735962, 150.602462272 -35.052682053, 150.602462656 -35.0527071575, 150.602464096 -35.0527381265, 150.602466976 -35.052769077, 150.602471296 -35.052799861000004, 150.602476672 -35.0528305525, 150.60248352 -35.0528609665, 150.602491808 -35.0528913065, 150.602501152 -35.0529212765, 150.602511968 -35.052950969, 150.60252384 -35.052980402500005, 150.602537152 -35.053009373500004, 150.602551552 -35.0530380855, 150.602567392 -35.053066261, 150.60258432 -35.053093974, 150.602602336 -35.053121169, 150.602621408 -35.053147883, 150.602641568 -35.0531739865, 150.602663168 -35.053199461, 150.60270096 -35.0532412155, 150.6027096 -35.0532509465, 150.60273264 -35.0532782155, 150.60275424 -35.053306206, 150.602774752 -35.053334733, 150.602794208 -35.053363889, 150.602812192 -35.0533935815, 150.60282912 -35.053423829, 150.602844256 -35.053454428, 150.602858656 -35.053485563500004, 150.602871232 -35.0535169765, 150.602882752 -35.0535488335, 150.602892832 -35.053580968, 150.602901472 -35.0536133615, 150.602908672 -35.0536460325, 150.602914432 -35.0536788885, 150.602918752 -35.053711837, 150.602922016 -35.053744952, 150.602923456 -35.053778067, 150.602923808 -35.0538112745, 150.602922368 -35.053844408, 150.60291984 -35.053877523000004, 150.60291552 -35.0539105455, 150.602910112 -35.0539434015, 150.602903296 -35.0539760725, 150.602900032 -35.053988301000004, 150.602895008 -35.0540085585, 150.60288528 -35.0540407855, 150.602874112 -35.0540726425, 150.602861536 -35.054104222, 150.60284784 -35.054135376, 150.602832736 -35.0541661415, 150.60281616 -35.0541964815, 150.602798528 -35.0542262665, 150.602779456 -35.054255515, 150.602759296 -35.054284227000004, 150.602737696 -35.05431231, 150.602726528 -35.054325815, 150.602715008 -35.054339764, 150.602691232 -35.054366589000004, 150.6026664 -35.054392674, 150.60264048 -35.0544179635, 150.60261312 -35.0544425315, 150.602585056 -35.054466304, 150.602555872 -35.054489244, 150.602525632 -35.054511296, 150.602494688 -35.0545324415, 150.602462656 -35.0545527915, 150.60271104 -35.054646753, 150.60289248 -35.054715425, 150.602972032 -35.054375765, 150.604056352 -35.0545221, 150.60473712 -35.0546139895, 150.604812 -35.054624072, 150.605382592 -35.054701106, 150.606048256 -35.0547909235, 150.6061008 -35.054798046, 150.606699136 -35.0548787615, 150.60721104 -35.054947896, 150.607363328 -35.0549684125, 150.608006272 -35.0550551775, 150.608290688 -35.055093509500004, 150.6086712 -35.055144902500004, 150.609325312 -35.055233184500004, 150.609388672 -35.055241731500004, 150.61045536 -35.055385643, 150.610087456 -35.0572101315, 150.61021488 -35.057227059, 150.610303808 -35.0572388435, 150.610671712 -35.0554148175, 150.61132944 -35.0555035435, 150.611564896 -35.0555353265, 150.611925952 -35.0555840185, 150.612534368 -35.055666084500004, 150.612647392 -35.055681384, 150.61318992 -35.0557544775, 150.61373712 -35.0558283665, 150.613860608 -35.0558450165, 150.614507872 -35.055932318, 150.614830816 -35.055975867, 150.615160576 -35.056020322500004, 150.61579632 -35.056106107, 150.61606848 -35.0547582525, 150.616086496 -35.054669878, 150.61610448 -35.054580412, 150.6163248 -35.053490244, 150.616568896 -35.0522813615, 150.616622176 -35.0521479025, 150.616672928 -35.052020271, 150.616714688 -35.0520316115, 150.617052 -35.0503108155))\n112\tTulliallan\tReady for service\tPOLYGON ((145.32472823624735 -38.073254203657612, 145.32321010592878 -38.080536392688842, 145.33387456897745 -38.081841155984577, 145.33515130045555 -38.074569654177004, 145.32472823624735 -38.073254203657612))\n103\tDelaray\tReady for service\tPOLYGON ((145.34451757431034 -38.1054664324721, 145.34378801346315 -38.109265353034878, 145.33644948959557 -38.108387397835372, 145.33080612182943 -38.107745808516192, 145.3306344604531 -38.108623771426693, 145.32938991546791 -38.10847181706265, 145.32928262710433 -38.108995214097526, 145.33215795516918 -38.10933288761295, 145.33194337845103 -38.110143297683138, 145.33385311127063 -38.110396548985989, 145.33353124618887 -38.111814740055728, 145.34741436004614 -38.113428087034954, 145.34889493942038 -38.105989851039091, 145.34458194732312 -38.105483317000314, 145.34451757431034 -38.1054664324721))\n177\tMovida\tReady for service\tPOLYGON ((116.02860284367573 -31.880915344780455, 116.03006196537908 -31.880897124046122, 116.03012633839184 -31.883411551245853, 116.0333879045512 -31.883447991714664, 116.03343081990204 -31.881881038516219, 116.03525472202897 -31.881972141175712, 116.03528690853986 -31.879767431509908, 116.03526545085994 -31.878564840361449, 116.03524399318903 -31.877653776009577, 116.03515816250535 -31.877134465297814, 116.03493285694722 -31.876032059172093, 116.0344286016492 -31.8745834228038, 116.03391361752017 -31.873326097304858, 116.03342009106207 -31.872342091468681, 116.03326988735667 -31.872114310841987, 116.03331280269849 -31.870866063012389, 116.03326988735667 -31.868405963047994, 116.03168201962781 -31.868460632649533, 116.02867794552843 -31.871850084610173, 116.02860284367573 -31.880915344780455))\n17330606\tBenjamin Estate\tCheck with carrier\tPOLYGON ((131.178166912 -12.5455349705, 131.178165824 -12.541618983, 131.178164032 -12.537321026, 131.178162976 -12.535118009, 131.178161888 -12.5324459985, 131.178161152 -12.5287430385, 131.178160096 -12.5256380355, 131.177769856 -12.525639034500001, 131.173661152 -12.5256459535, 131.173661152 -12.526727038, 131.173661152 -12.5279219715, 131.173947008 -12.5279209725, 131.173948096 -12.52917999, 131.175631072 -12.529178991, 131.175631072 -12.5300829565, 131.175538912 -12.530172959, 131.174553952 -12.530165041, 131.17467312 -12.530231992500001, 131.17467312 -12.530367986, 131.174553952 -12.530436029, 131.175538912 -12.5304440395, 131.175631072 -12.5305350225, 131.175631072 -12.5314880315, 131.174031968 -12.5314890305, 131.174033056 -12.5326940465, 131.173404832 -12.5326940465, 131.173404832 -12.5342810135, 131.17340592 -12.536549002500001, 131.17340592 -12.5373079835, 131.173459936 -12.537978035, 131.17454208 -12.5379690255, 131.175628928 -12.537961015, 131.175631072 -12.539457998, 131.17554 -12.539548981, 131.175105824 -12.539548981, 131.17522608 -12.539617024, 131.17522608 -12.5397520185, 131.175106912 -12.539819969, 131.17554 -12.539819969, 131.17563216 -12.5399099715, 131.175633952 -12.5416009825, 131.17473216 -12.541827959, 131.173895872 -12.541827959, 131.173263008 -12.541827959, 131.173263008 -12.543188042, 131.173710848 -12.543616983, 131.173973984 -12.5438699705, 131.174604 -12.544472978, 131.175413984 -12.544713996, 131.177247136 -12.545261004, 131.17799088 -12.545483041, 131.178166912 -12.5455349705))\n222\tAmber\tReady for service\tPOLYGON ((144.99267612456649 -37.5901190955084, 144.99763284682729 -37.590544168018262, 144.99550853728951 -37.605046187428584, 144.99035869597247 -37.604621197758533, 144.99267612456649 -37.5901190955084))\n95\tNorth Harbour\tReady for service\tPOLYGON ((152.99539619869421 -27.121898664584041, 152.98569733090878 -27.11926308786261, 152.9859977383106 -27.116512854647908, 152.98818642087016 -27.115519698261046, 152.98870140499915 -27.112119980820342, 152.98938805050449 -27.11085938518239, 152.99247795529649 -27.1102863824714, 152.99960190243695 -27.112158180465933, 153.00174766964565 -27.113533359041984, 153.00449425167602 -27.117506002218327, 153.00518089719034 -27.12247160782945, 153.00140434689297 -27.126214764807827, 152.99891525693158 -27.127360604144666, 152.99917274899161 -27.129957796510684, 152.9986577648626 -27.131332756283605, 152.99187714047486 -27.128964759492938, 152.99196297115853 -27.126902269818711, 152.9919415134876 -27.126310251867878, 152.99432331509436 -27.124629667705779, 152.99522453731788 -27.123407408817588, 152.99556786007057 -27.122185136573979, 152.99565369076325 -27.121955959041355, 152.99539619869421 -27.121898664584041))\n18\tTrinity\tReady for service\tPOLYGON ((115.6923 -31.63125, 115.6959 -31.63121, 115.69749 -31.63117, 115.6985 -31.63104, 115.70682 -31.63109, 115.708724769 -31.63106514, 115.708659268 -31.626854345999998, 115.708668132 -31.624348314, 115.707113692 -31.624206878, 115.705578589 -31.623594211, 115.703145088 -31.621865106, 115.701291155 -31.620598884, 115.698636225 -31.619540256, 115.693895697 -31.619628092, 115.693032765 -31.619921765, 115.691021706 -31.621554189, 115.686102056 -31.622551403, 115.68479 -31.62478, 115.68486 -31.63068, 115.68487 -31.63125, 115.68512 -31.63126, 115.68556 -31.63125, 115.68853 -31.63125, 115.6923 -31.63125))\n6\tGregory Hills\tReady for service\tPOLYGON ((150.76602 -34.02859, 150.77628 -34.03439, 150.78134 -34.03723, 150.78486 -34.03293, 150.7855 -34.03279, 150.78731 -34.02934, 150.78752 -34.02873, 150.78756 -34.02809, 150.78718 -34.02727, 150.78666 -34.02649, 150.78636 -34.02557, 150.78628 -34.02503, 150.78649 -34.02457, 150.78688 -34.02414, 150.78739 -34.02372, 150.78748 -34.02336, 150.78718 -34.02286, 150.78417 -34.01959, 150.78306 -34.02009, 150.78168 -34.02023, 150.78014 -34.01931, 150.77988 -34.01859, 150.77971 -34.01774, 150.77233 -34.02485, 150.76937 -34.02407, 150.76898 -34.02472, 150.76799 -34.02615, 150.76602 -34.02859))\n48\tWaterford Melton\tReady for service\tPOLYGON ((144.56231 -37.71846, 144.57212 -37.71974, 144.57256 -37.72068, 144.57286 -37.72148, 144.5728 -37.72231, 144.57243 -37.72482, 144.57233 -37.72553, 144.57239 -37.72589, 144.57288 -37.72679, 144.57368 -37.72798, 144.57582 -37.73133, 144.57595 -37.73167, 144.57631 -37.7327, 144.57631 -37.73373, 144.57662 -37.74037, 144.5767 -37.74108, 144.5768 -37.7416, 144.57692 -37.74213, 144.577 -37.74264, 144.57692 -37.74326, 144.57669 -37.74397, 144.57656 -37.74442, 144.57641 -37.74439, 144.57618 -37.74451, 144.5761 -37.74466, 144.576 -37.74478, 144.57578 -37.7448, 144.57559 -37.74476, 144.57537 -37.74456, 144.57528 -37.74445, 144.57506 -37.74436, 144.57476 -37.74432, 144.57441 -37.7444, 144.57401 -37.74447, 144.57368 -37.7444, 144.57323 -37.7445, 144.57291 -37.74443, 144.57273 -37.74424, 144.57263 -37.74407, 144.57243 -37.74364, 144.57216 -37.74315, 144.57194 -37.74286, 144.5713 -37.74255, 144.57106 -37.74242, 144.57085 -37.74214, 144.57082 -37.74163, 144.57079 -37.74121, 144.57067 -37.74102, 144.57048 -37.74086, 144.57018 -37.74062, 144.56999 -37.74028, 144.56976 -37.73944, 144.56975 -37.73883, 144.56969 -37.73856, 144.56981 -37.73841, 144.56996 -37.7383, 144.57006 -37.73813, 144.57007 -37.73798, 144.56999 -37.73788, 144.57001 -37.73773, 144.57016 -37.73766, 144.57032 -37.73757, 144.5703 -37.73681, 144.57005 -37.73667, 144.56961 -37.73667, 144.56926 -37.7367, 144.56891 -37.73671, 144.5686 -37.73666, 144.56842 -37.73659, 144.56831 -37.73655, 144.5682 -37.73645, 144.56814 -37.73634, 144.56798 -37.73603, 144.5678 -37.73554, 144.56771 -37.73507, 144.5678 -37.73465, 144.56789 -37.73433, 144.56773 -37.73407, 144.56741 -37.73368, 144.56718 -37.73313, 144.56724 -37.73279, 144.56741 -37.73228, 144.56741 -37.73204, 144.56732 -37.73191, 144.56718 -37.73178, 144.56683 -37.7317, 144.5666 -37.73164, 144.56646 -37.73151, 144.5664 -37.7312, 144.56634 -37.731, 144.56613 -37.73079, 144.5661 -37.73023, 144.5663 -37.72988, 144.56634 -37.72943, 144.5663 -37.72896, 144.56606 -37.72878, 144.56581 -37.7287, 144.56572 -37.7286, 144.56574 -37.72836, 144.566 -37.72822, 144.5661 -37.72788, 144.5662 -37.72778, 144.56622 -37.72765, 144.56609 -37.72754, 144.56568 -37.72751, 144.56497 -37.72757, 144.5648 -37.72757, 144.56456 -37.72715, 144.56429 -37.7268, 144.56407 -37.72659, 144.56385 -37.72645, 144.56357 -37.72634, 144.56353 -37.72578, 144.56363 -37.72482, 144.56346 -37.72457, 144.56331 -37.72439, 144.56306 -37.72424, 144.56275 -37.72415, 144.5624 -37.72423, 144.56228 -37.72433, 144.56216 -37.72434, 144.56211 -37.72423, 144.56194 -37.7241, 144.56181 -37.72369, 144.56166 -37.72349, 144.56148 -37.72329, 144.56131 -37.72321, 144.56115 -37.72319, 144.56204 -37.71843, 144.56231 -37.71846))\n265\tMt. Atkinson\tUnder construction\tPOLYGON ((144.68840633391846 -37.74787485827774, 144.68531642913541 -37.769724927629568, 144.69132457732516 -37.770403397880315, 144.69535861968257 -37.767893026856584, 144.69827686308923 -37.750521638743095, 144.68840633391846 -37.74787485827774))\n5\tSpringwood\tReady for service\tPOLYGON ((138.76311 -34.6028, 138.77564 -34.60331, 138.78195 -34.60405, 138.78401 -34.60736, 138.77989 -34.61101, 138.78015 -34.61121, 138.77624 -34.612, 138.76861 -34.61188, 138.76839 -34.61806, 138.76698 -34.61842, 138.76582 -34.61853, 138.76444 -34.61804, 138.76303 -34.61645, 138.76225 -34.61511, 138.76174 -34.6139, 138.76213 -34.61352, 138.7629 -34.61352, 138.76311 -34.6028))\n169\tThornhill Park\tReady for service\tPOLYGON ((144.62098096373794 -37.703104910270973, 144.62114726069879 -37.703020024702717, 144.63689182760933 -37.714308952010043, 144.63547562124782 -37.722668440121758, 144.61879228118738 -37.717139402082772, 144.62098096373794 -37.703104910270973))\n220\tBotanical\tReady for service\tPOLYGON ((144.8842612361972 -37.562781836766767, 144.88533411980603 -37.558019110699377, 144.88687907219307 -37.558155192812237, 144.88984023095057 -37.548969092440174, 144.89370261193164 -37.549377387611337, 144.89494715691683 -37.545889794320587, 144.88114987374325 -37.543746119428008, 144.87951909066356 -37.548101457775459, 144.87690125466767 -37.561880344122514, 144.8842612361972 -37.562781836766767))\n124\tSt. Germain\tUnder construction\tPOLYGON ((145.35089050295065 -38.091539588909242, 145.37925754548684 -38.094781964715374, 145.37797008516878 -38.101401368692862, 145.36870037081067 -38.100118061716131, 145.36531005861679 -38.10126628480905, 145.36715541842366 -38.102921045174881, 145.36406551363163 -38.104035454507532, 145.3638080215716 -38.104677076411747, 145.36183391573027 -38.102482030771547, 145.36406551363163 -38.101739077309468, 145.36355052950259 -38.101131200676207, 145.36149059297759 -38.102380719380683, 145.35114799501963 -38.091573364398812, 145.35089050295065 -38.091539588909242))\n29\tRopes Crossing\tReady for service\tPOLYGON ((150.78022 -33.71985, 150.78186 -33.72, 150.78885 -33.72581, 150.78799 -33.72984, 150.78984 -33.73177, 150.79027 -33.73687, 150.78529 -33.7397, 150.77851 -33.74291, 150.78022 -33.71985))\n302\tMount Gilead\tUnder construction\tPOLYGON ((150.79637561797068 -34.119222085536769, 150.78594718932902 -34.117836465787747, 150.7860330200127 -34.115633638938959, 150.78204189299714 -34.115313868982419, 150.78045402525933 -34.117694349657768, 150.77895198821415 -34.118404927918704, 150.77805076598162 -34.119577368995117, 150.7781365966743 -34.120998487900913, 150.78444515227486 -34.12174456576556, 150.784402236933 -34.125830113529851, 150.783114776606 -34.128423445761861, 150.7858613586364 -34.132686284775545, 150.7858613586364 -34.133290169583681, 150.79075370787547 -34.134604492193283, 150.79191242217692 -34.126682724685274, 150.79431568145463 -34.122988014245074, 150.79637561797068 -34.119222085536769))\n17352628\tWalgrove Stage 3\tCheck with carrier\tPOLYGON ((148.972882176 -34.879298351, 148.972516832 -34.8771119285, 148.971005792 -34.876377201000004, 148.970797824 -34.875983521, 148.970268256 -34.875164359500005, 148.969697952 -34.873646601000004, 148.96962128 -34.8734425645, 148.969511232 -34.873149783500004, 148.969455712 -34.873002024, 148.969212768 -34.872638536000004, 148.968001824 -34.8710133665, 148.967629504 -34.870542634, 148.967072352 -34.8698039105, 148.96663072 -34.869191468000004, 148.96653664 -34.869192948, 148.966276896 -34.86906219, 148.958015744 -34.8694997335, 148.958075328 -34.869564705500004, 148.958158944 -34.869633192500004, 148.95833344 -34.869833085, 148.95838928 -34.869901646, 148.958480224 -34.870055973, 148.958654592 -34.870227246, 148.958780352 -34.870398667, 148.958864256 -34.870541561, 148.958913376 -34.870667398, 148.958948832 -34.8708390595, 148.9589704 -34.8710222095, 148.958984544 -34.8710851465, 148.959012928 -34.8712396585, 148.958999776 -34.871428636000005, 148.95891088 -34.871783873, 148.958814624 -34.872036065, 148.958773824 -34.872265206, 148.958726112 -34.8724943655, 148.958726848 -34.872677571000004, 148.958713216 -34.8727520335, 148.958717984 -34.872997029000004, 148.958721984 -34.87320434, 148.958739904 -34.873442657, 148.958779968 -34.873559318, 148.958932576 -34.8740033735, 148.959009344 -34.874243855, 148.959072192 -34.87446715, 148.959142016 -34.874701915, 148.959147488 -34.8747173255, 148.959225728 -34.874936680000005, 148.959337216 -34.875171445, 148.959348992 -34.875199639, 148.959427872 -34.8753890235, 148.959567104 -34.8755836805, 148.95966416 -34.8756901295, 148.959734176 -34.875766904500004, 148.959922048 -34.8759443935, 148.960082112 -34.876133334, 148.960228384 -34.876362364, 148.960325984 -34.876591394, 148.960374976 -34.876831894, 148.96034752 -34.8770781105, 148.960243584 -34.8773186105, 148.960063136 -34.877501853, 148.959854912 -34.877673644, 148.959674464 -34.87785117, 148.959528832 -34.8780515805, 148.959390144 -34.8782806475, 148.959327936 -34.8785096775, 148.959286528 -34.878744461000004, 148.9593216 -34.878979226, 148.959335808 -34.8792197075, 148.95933616 -34.8794659425, 148.959322592 -34.879712140500004, 148.95928816 -34.8799526405, 148.959330176 -34.880175954, 148.959476416 -34.880382062500004, 148.959587904 -34.880599641, 148.959678528 -34.880822954500005, 148.959769216 -34.881040533000004, 148.959866816 -34.881269563000004, 148.959985248 -34.88147569, 148.960131456 -34.8816932685, 148.960263776 -34.881893660500005, 148.960584 -34.88226009, 148.960744096 -34.882449049, 148.96088336 -34.882643706, 148.9610296 -34.882838400000004, 148.961154976 -34.8830445085, 148.961176128 -34.8832735385, 148.961204288 -34.8835140385, 148.96133664 -34.883725882, 148.961455072 -34.883949177, 148.961566592 -34.884155304000004, 148.96169888 -34.8843557145, 148.961852032 -34.884556088000004, 148.961998304 -34.8847507635, 148.962172288 -34.8849282525, 148.96236016 -34.885100006500004, 148.962575872 -34.885266044, 148.962826272 -34.885414895000004, 148.963097376 -34.8854721155, 148.963368512 -34.8855236195, 148.963653536 -34.885563672, 148.963938496 -34.8855579185, 148.964209344 -34.8854547995, 148.964452448 -34.8853288145, 148.964716416 -34.885242863500004, 148.965001376 -34.88523711, 148.96530016 -34.885214170000005, 148.96557808 -34.885151159, 148.965849056 -34.885099581, 148.966126912 -34.8850136485, 148.96639088 -34.8849219995, 148.96663392 -34.884761623, 148.966814368 -34.884584115500004, 148.967015648 -34.884429474, 148.967411328 -34.8841030415, 148.967605696 -34.883936967000004, 148.967806944 -34.883747971, 148.967980416 -34.8835589935, 148.96812608 -34.883358546000004, 148.968306496 -34.883158117, 148.968507744 -34.8829634045, 148.968660352 -34.882774427, 148.96879904 -34.882568263, 148.9689864 -34.882390737, 148.96915984 -34.8821902895, 148.96928464 -34.881984144, 148.969374656 -34.881766547, 148.969416032 -34.8815374985, 148.969394848 -34.8813027335, 148.969408384 -34.8810622335, 148.969470592 -34.88083892, 148.969616256 -34.880638491, 148.969789696 -34.88045523, 148.970018816 -34.88031204, 148.970254912 -34.880197469500004, 148.97050496 -34.880100085500004, 148.970768896 -34.879985515, 148.971025792 -34.8798366085, 148.971247936 -34.879693418500004, 148.971477056 -34.879544512, 148.971678368 -34.8793898705, 148.971942368 -34.879326841, 148.972220384 -34.879343953500005, 148.97249136 -34.8793038085, 148.972790144 -34.879280868500004, 148.972882176 -34.879298351))\n36\tEcco Ripley\tReady for service\tMULTIPOLYGON (((152.79198552872987 -27.68858776424522, 152.79198868366885 -27.688573446863977, 152.79353363605588 -27.681733061634318, 152.79061539264916 -27.681201013712833, 152.78911335560397 -27.688041432268765, 152.79198552872987 -27.68858776424522)), ((152.792975736585 -27.690283476217093, 152.79422028157018 -27.690283476217093, 152.79542191120453 -27.690093474278456, 152.79640896412073 -27.689903472008329, 152.79752476307141 -27.689599467689497, 152.79885513874027 -27.682949161434131, 152.80085070225255 -27.686122358083146, 152.80548555943162 -27.684260253862291, 152.80574305149159 -27.683386193992703, 152.80585033985517 -27.682588133218538, 152.80559284779517 -27.682265106962355, 152.80529244038433 -27.682303110100428, 152.80477745624634 -27.682645137752885, 152.804090810741 -27.682683140759536, 152.80357582661196 -27.682474124060558, 152.80344708057748 -27.682037087852962, 152.80336124989384 -27.681657054945809, 152.80306084248295 -27.681106004881723, 152.803060842474 -27.680668963199526, 152.80331833454298 -27.680098906202648, 152.80402643771924 -27.679243815128778, 152.8044341334847 -27.678483728553953, 152.80477745624634 -27.678103683283144, 152.80593617053887 -27.677514610500946, 152.80694468112597 -27.676887529532156, 152.80737383457128 -27.676298450191716, 152.80722363086588 -27.675899394639192, 152.80675156207869 -27.675823383892904, 152.80632240863335 -27.675918397318096, 152.80539972873893 -27.676355458007873, 152.80479891391727 -27.6763364554058, 152.80441267581378 -27.676070418625578, 152.80348999591934 -27.675633356795394, 152.80267460437949 -27.675348315528975, 152.80185921283064 -27.67508227634238, 152.80127985568888 -27.674227145998444, 152.80089361758542 -27.67398010709767, 152.80072195620906 -27.673885091986733, 152.79462797733561 -27.678027674070634, 152.79449923131008 -27.678450474645445, 152.79479963871196 -27.677343588775543, 152.79486401173372 -27.676298450190913, 152.79565794561162 -27.672027529975033, 152.78956396672922 -27.671153372218189, 152.78883440588206 -27.675258052306891, 152.79037935826904 -27.675866139945548, 152.79222471807589 -27.676626244733392, 152.79299719426493 -27.677196319852879, 152.79479963872097 -27.678716505629325, 152.79670937153156 -27.680326929358422, 152.79490692707557 -27.68914345962369, 152.79198552872987 -27.68858776424522, 152.79164536091616 -27.690131474692155, 152.792975736585 -27.690283476217093)))\n85\tSomerfield\tReady for service\tMULTIPOLYGON (((145.166870139 -38.005877377, 145.1670012281989 -38.005138167930454, 145.16683361581025 -38.005873117602029, 145.166870139 -38.005877377)), ((145.172674007 -38.008171035, 145.176477343 -38.005557657, 145.177066796 -38.005907585, 145.179547696 -38.006070943, 145.180705471 -38.000245324, 145.180295684 -38.000032153, 145.179993648 -37.999933379, 145.178738567 -37.999753156, 145.174299527 -37.999050472, 145.171356839 -37.99870326, 145.171247857 -37.999329955, 145.170763892 -38.001536731, 145.167712417 -38.001109969, 145.16826937 -37.998411909, 145.162358082 -37.99766618, 145.162086505 -37.998803695, 145.164613362 -37.999268502, 145.164331649 -38.00071903, 145.163239468 -38.000659044, 145.162922562 -38.001736124, 145.161435624 -38.001649459, 145.161280984 -38.002399817, 145.167355868 -38.003138362, 145.1670012281989 -38.005138167930454, 145.167097863 -38.004714442, 145.173178271 -38.005404566, 145.172674007 -38.008171035)), ((145.163782188 -38.013076203, 145.164613656 -38.011643601, 145.165454784 -38.011159292, 145.166766728 -38.011033725, 145.167364211 -38.008345706, 145.166293694 -38.008240576, 145.16683361581025 -38.005873117602029, 145.160683651 -38.005155898, 145.159270503 -38.012724952, 145.163782188 -38.013076203)))\n1\tNoosa Waters\tUnder construction\tPOLYGON ((153.0615905 -26.4021826, 153.0607295 -26.4020517, 153.0608006 -26.401618, 153.0593938 -26.4014174, 153.0555294 -26.4013916, 153.0555475 -26.4028925, 153.0535465 -26.4029934, 153.0541366 -26.4045454, 153.0534071 -26.4055832, 153.05345 -26.4066835, 153.0502367 -26.4095903, 153.050639 -26.4100563, 153.0559283 -26.4096816, 153.059324 -26.4101428, 153.0588734 -26.4124874, 153.0600429 -26.4129631, 153.0613035 -26.4131024, 153.0628484 -26.4129054, 153.0683845 -26.4100035, 153.068862 -26.4068469, 153.0687386 -26.4061021, 153.068186 -26.4052661, 153.0680037 -26.4044685, 153.0685884 -26.4011387, 153.0671239 -26.4009514, 153.066161 -26.4024601, 153.0659866 -26.4028685, 153.0647676 -26.4024937, 153.064325 -26.4021466, 153.0616455 -26.401743, 153.0615905 -26.4021826))\n4\tFernbrooke\tReady for service\tPOLYGON ((152.84131999999997 -27.649980000000006, 152.85132 -27.651259999999994, 152.84981897886712 -27.659938249647734, 152.84974387701439 -27.660365871565098, 152.84967950399263 -27.661059565782473, 152.84971169050354 -27.661848281258131, 152.84741571958943 -27.661620219536925, 152.84712604101853 -27.660422887693446, 152.84652522619686 -27.660555925213028, 152.84641793783328 -27.661183099907717, 152.84689000662047 -27.662437438501943, 152.84716895636038 -27.663207139149364, 152.84687927778049 -27.663378183001619, 152.8471153121786 -27.663644250684481, 152.84707239682777 -27.664347426441861, 152.84469059522996 -27.664024346249843, 152.83914378698742 -27.663235646476657, 152.83970168646727 -27.661857783818984, 152.8410213332962 -27.660783989154694, 152.83708385046242 -27.660261341917209, 152.83771000000002 -27.656589999999998, 152.83797000000004 -27.655259999999995, 152.83973 -27.655599999999989, 152.84008 -27.655829999999998, 152.83999 -27.655710000000006, 152.84012 -27.655609999999992, 152.84131999999997 -27.649980000000006))\n27\tGrandvue\tReady for service\tPOLYGON ((145.42937690489117 -38.064221994805287, 145.4296558546221 -38.062431202729272, 145.43027812711469 -38.059390134648062, 145.43843204252209 -38.055943438040373, 145.44006282560179 -38.050874471677645, 145.44315273038487 -38.051415178148318, 145.44263774625583 -38.053172446593663, 145.4446118520882 -38.053240032999511, 145.44529849759354 -38.051888293034068, 145.44804507962391 -38.05242899201523, 145.44778758756391 -38.053442791841249, 145.44993335477258 -38.053915893620776, 145.4485600637619 -38.059998358374976, 145.42937690489117 -38.064221994805287))\n94\tThe Pines\tReady for service\tPOLYGON ((150.70886669973959 -23.15793858635379, 150.7092958531849 -23.157386181476589, 150.71041165213558 -23.158056958530974, 150.71363030295316 -23.156123533204774, 150.71393071036397 -23.155610578944515, 150.7150035939728 -23.153243072293382, 150.71551857810181 -23.154505747713404, 150.71624813894897 -23.155018706203954, 150.71732102255785 -23.155176539190727, 150.71822224479033 -23.155255455613961, 150.72156964163338 -23.156005159319111, 150.72345791678208 -23.156399738531523, 150.72345791678208 -23.155334371990723, 150.72431622367276 -23.154742498029886, 150.72641907553961 -23.155768411233982, 150.72826443533748 -23.15695214747571, 150.72667656759964 -23.161371337021304, 150.72530327658893 -23.1608978594012, 150.72277127127674 -23.160582206724815, 150.72096882682069 -23.161016228963152, 150.72071133475171 -23.160582206724815, 150.72023926596452 -23.160463836779275, 150.71886597495384 -23.161884269221147, 150.71908055167202 -23.165001276498238, 150.71620522360715 -23.165040731821833, 150.71448860983483 -23.164685633493491, 150.71195660453159 -23.165080187132954, 150.70869503836326 -23.166658390067731, 150.70749340872888 -23.1641727120232, 150.70796547751607 -23.1629495836662, 150.70865212302141 -23.162278831115067, 150.71045456747743 -23.162002637911296, 150.71062622885376 -23.160582206724815, 150.70998249869027 -23.160029812750071, 150.7094245992194 -23.159832528636031, 150.70860920767956 -23.159477416497964, 150.70805130819971 -23.159043389273155, 150.70886669973959 -23.15793858635379))\n30\tMarriott Waters\tReady for service\tPOLYGON ((145.239757322 -38.077606995, 145.258183486 -38.079930868, 145.259570821 -38.072657914, 145.241123001 -38.070404129, 145.239757322 -38.077606995))\n199\tVerdant Hill\tUnder construction\tPOLYGON ((144.67540298462276 -37.817526995212646, 144.68441520691192 -37.818815249580531, 144.6855310058626 -37.811288813970755, 144.6948007202117 -37.8117634767226, 144.69531570434071 -37.808508585144516, 144.67720542907881 -37.806609832130995, 144.67540298462276 -37.817526995212646))\n2\tAlamanda\tReady for service\tPOLYGON ((144.74352936555584 -37.91384960992702, 144.7339807014578 -37.912783092779321, 144.73659049083045 -37.898506356911732, 144.745484695925 -37.89952228497102, 144.7436500649581 -37.909748512976854, 144.7442508797798 -37.90981623160399, 144.74353204776358 -37.913828449022958, 144.74352936555584 -37.91384960992702))\n223\tRathdowne\tReady for service\tPOLYGON ((144.98134082402584 -37.603627946007521, 144.99037450398586 -37.6046479307561, 144.99243444050191 -37.590026813022625, 144.98398011768361 -37.589074640609446, 144.98134082402584 -37.603627946007521))\n166\tGen Fyansford\tReady for service\tPOLYGON ((144.31761507750321 -38.136044246407451, 144.31738977194507 -38.137225659119792, 144.31742195844694 -38.137369115075984, 144.31849484204682 -38.137512570749465, 144.31729321242145 -38.142972115306193, 144.31600575209444 -38.143444637820807, 144.31538347960185 -38.143444637820807, 144.31497578382744 -38.143259004340436, 144.31340937376049 -38.141942680659575, 144.3126798129133 -38.141301386161039, 144.31175713300988 -38.141132623513478, 144.31100611448281 -38.141014489428493, 144.30920367002676 -38.14108199464323, 144.30701498747624 -38.141453272209674, 144.30321697950797 -38.141200128619637, 144.30306677580253 -38.142162069589396, 144.2979598498363 -38.141588281764776, 144.29858212232887 -38.137250974897178, 144.29892544508158 -38.136829044127744, 144.30021290540859 -38.136153949821527, 144.30176858663557 -38.135478849270854, 144.30378560781875 -38.135023152868513, 144.30606012106193 -38.134499942379293, 144.30747632742344 -38.134111751527506, 144.30799131155246 -38.134364919708361, 144.30874233007955 -38.134736231451448, 144.30935387373216 -38.134955642048617, 144.31007270573943 -38.135054798543763, 144.31114558934826 -38.134936654619032, 144.31204681158974 -38.135031591716874, 144.31394581556941 -38.135453532878692, 144.31574826002543 -38.135706696404988, 144.31761507750321 -38.136044246407451))\n118\tEastland Shopping Centre\tReady for service\tPOLYGON ((145.23779297099972 -37.810439312310621, 145.23719215617803 -37.813863636019263, 145.23453140484031 -37.813761925722517, 145.23311519847883 -37.814067056192414, 145.23152733074096 -37.814541701083186, 145.22959614025044 -37.815660494824478, 145.22470379100238 -37.817660720165726, 145.22281551586266 -37.818338750354883, 145.22058391796133 -37.818338750354883, 145.21800899730729 -37.8185082569287, 145.21697902904029 -37.81860996068631, 145.21577739940594 -37.812439679113623, 145.21749401317828 -37.811625977122659, 145.21968269572884 -37.810778361345967, 145.22122764812485 -37.810269787209478, 145.22247219311004 -37.810201977059478, 145.23779297099972 -37.810439312310621))\n352\tThe Hermitage (SEKI)\tReady for service\tPOLYGON ((150.76310090845152 -34.017378825959447, 150.76415857759227 -34.015800002724575, 150.76516894598808 -34.0147291720617, 150.76825718912079 -34.012385939810223, 150.76963585631026 -34.011308927095357, 150.77035940493855 -34.0103940424016, 150.77078271067498 -34.010044945881639, 150.77090979555541 -34.00971542309081, 150.7714348659768 -34.009079190884371, 150.77177007867382 -34.00872314034639, 150.77170447710515 -34.008985320388668, 150.77652671890402 -34.010907870843248, 150.77652671890402 -34.010907870843248, 150.77655710942594 -34.010854423152175, 150.77659182859819 -34.010802836340943, 150.77663071302868 -34.010753353171481, 150.7766735797251 -34.010706206505795, 150.77672022695609 -34.010661618210285, 150.77677043520046 -34.010619798111691, 150.77682396818062 -34.010580943009721, 150.7768805739741 -34.010545235750989, 150.77693998619932 -34.010512844368719, 150.77700192526896 -34.010483921291872, 150.77706609970571 -34.01045860262812, 150.77713220751374 -34.010437007523173, 150.7771999375999 -34.01041923760031, 150.77726897123742 -34.010405376482069, 150.77733898356567 -34.010395489396856, 150.777820184963 -34.010342507109335, 150.77798124535107 -34.010301164526112, 150.77790822328464 -34.010012044492044, 150.77990842257677 -34.008844400646531, 150.78013176630341 -34.008823200079306, 150.78069123901761 -34.008819474893841, 150.78119012066384 -34.008759312890263, 150.78147372003437 -34.00871046934526, 150.78155389776492 -34.008477878262966, 150.78203179564991 -34.008589234240112, 150.78216637762017 -34.008153455948339, 150.78218775291759 -34.007384386520059, 150.7829730177871 -34.007710815084735, 150.78330647826402 -34.006291971131, 150.78624859422794 -34.006427818172313, 150.7844247006401 -34.009230792618553, 150.783090814625 -34.009175733322564, 150.78286105367982 -34.009212276782954, 150.78204278582956 -34.009098246042839, 150.78100749276695 -34.009240599049519, 150.78026453269484 -34.009297589736512, 150.779762370721 -34.009482408876387, 150.77979607512333 -34.009539668607104, 150.78050841166973 -34.010385920174926, 150.78010249168358 -34.010738317167316, 150.77973103261132 -34.010984697830622, 150.77938609216443 -34.011147120061509, 150.77893745382704 -34.011324266361036, 150.77850269471878 -34.011539109605749, 150.77835427372113 -34.011650477558064, 150.77818485375616 -34.011846518959075, 150.77808626113645 -34.011982689257849, 150.777588535636 -34.012832987582719, 150.77684684216905 -34.013181665078164, 150.77689892388955 -34.013343819680557, 150.77751968227241 -34.013127996923856, 150.77869254498364 -34.013005487091611, 150.77871524586604 -34.0132376693555, 150.778894755552 -34.013233743379509, 150.77890272118398 -34.013329722461627, 150.77923490227934 -34.013304087190875, 150.77939493273053 -34.014763450185292, 150.77907204029898 -34.014788210648994, 150.77916004591069 -34.015584047195993, 150.77951960970586 -34.01657283513741, 150.77957878180842 -34.017160257260308, 150.77947431003741 -34.017710540635292, 150.77913129048423 -34.017707946649544, 150.77912779238781 -34.018003192376895, 150.77916629445065 -34.018037393305761, 150.7775700508551 -34.019723469062946, 150.77742458405743 -34.019875582255821, 150.77711666867245 -34.019846292841933, 150.77615589937491 -34.019552074697309, 150.77582413002466 -34.019366669748827, 150.77512273643271 -34.01911054352604, 150.77496699016476 -34.019084418453282, 150.77292416531955 -34.018653817730836, 150.77288240299637 -34.018645652863469, 150.77269284799434 -34.018645199547464, 150.77269284799434 -34.018645199547464, 150.77254566578088 -34.018606382916055, 150.77239578415828 -34.01857554952506, 150.772243826914 -34.01855282769678, 150.77209042647209 -34.018538311994227, 150.77193622126123 -34.018532062827695, 150.77178185305857 -34.018534106203447, 150.77162796431909 -34.01854443361546, 150.77147519550263 -34.01856300208096, 150.77132418240862 -34.018589734319157, 150.77117555353072 -34.018624519072986, 150.77102992744176 -34.018667211571959, 150.77088791021959 -34.018717634134667, 150.7707500929252 -34.018775576908112, 150.76724578496825 -34.01907637997266, 150.76725346797897 -34.018964034501806, 150.76595258446341 -34.018851142805993, 150.76596203822075 -34.018483154890191, 150.76497947544087 -34.018016067260731, 150.76490615391563 -34.0180954267643, 150.76383501388381 -34.01765777284843, 150.7637964191581 -34.01771340405201, 150.76310090845152 -34.017378825959447))\n180\tBrookhaven\tReady for service\tGEOMETRYCOLLECTION (POLYGON ((153.16414318482177 -27.726875648298432, 153.16671810547578 -27.728490109796667, 153.16667519012498 -27.728718031846626, 153.17135296264584 -27.729724681865779, 153.17124567429127 -27.731491045280155, 153.16794119278109 -27.731206149891634, 153.16779098907563 -27.73114917072456, 153.16725454727572 -27.731642989182337, 153.16663227478313 -27.735612448582195, 153.16607437531229 -27.735498494825826, 153.1655808488542 -27.738841088823886, 153.16152534881689 -27.738290327550505, 153.16158972183865 -27.736979884363326, 153.15942249695001 -27.73696089231667, 153.15847835937569 -27.737340732610207, 153.15768442550677 -27.738803105376945, 153.15538845459264 -27.7375876280905, 153.15609655776893 -27.730826288214896, 153.15755567948125 -27.729629715280478, 153.16010914245541 -27.729534748611655, 153.163048843542 -27.730883267550766, 153.16345653930745 -27.730655350028552, 153.16414318482177 -27.726875648298432)), POLYGON ((153.17214689651479 -27.728737025329007, 153.17182503144198 -27.728860482885821, 153.1715460817021 -27.731623996207126, 153.1714709798494 -27.732060833823013, 153.172093252342 -27.733266876412994, 153.17202887932021 -27.733865144556077, 153.17473254600878 -27.734282980676014, 153.1756337682323 -27.729154881109693, 153.17214689651479 -27.728737025329007)), POLYGON ((153.17479691902153 -27.734339958204625, 153.174410680927 -27.735992293575535, 153.1732519666345 -27.735840355736613, 153.1735094586945 -27.73409305536569, 153.17479691902153 -27.734339958204625)))\n262\tBingara Gorge\tUnder construction\tGEOMETRYCOLLECTION (POLYGON ((150.67318723048177 -34.228315258791596, 150.67430302943245 -34.228403965050774, 150.6752686246777 -34.2261685388363, 150.67546174373396 -34.224926609745914, 150.67471072520686 -34.223879826719596, 150.67413136805612 -34.2232765899151, 150.67226455058733 -34.2248556418165, 150.67192122783467 -34.228226552439729, 150.67318723048177 -34.228315258791596)), POLYGON ((150.67522570933588 -34.22852815365605, 150.67636296595748 -34.225245964689456, 150.67756459560081 -34.225050803478709, 150.67872330989334 -34.2245717694994, 150.68003222789127 -34.223791115696216, 150.680354092973 -34.223489497515942, 150.68071887339661 -34.222992712277112, 150.68108365382921 -34.222850773098983, 150.68357274379056 -34.222318499051838, 150.68421647395408 -34.220579713725833, 150.6841521009413 -34.220224855167857, 150.68434521998856 -34.220100654319765, 150.68455979670674 -34.219994196304022, 150.68526789989198 -34.220650685257745, 150.68653390254809 -34.221378140015425, 150.68818614329871 -34.221981390415245, 150.68762824381886 -34.224145959230654, 150.68561122264464 -34.223986279824921, 150.68344399775609 -34.225121771244424, 150.68252131786161 -34.225352416068233, 150.68243548716896 -34.225902412715769, 150.68365857448322 -34.227002395235, 150.68827197398238 -34.226434664115956, 150.68831488933318 -34.226718530153839, 150.68829343165328 -34.227392708160238, 150.68932339992028 -34.227924950142544, 150.68962380733115 -34.228421706291094, 150.68970963801479 -34.229113611758386, 150.69001004542562 -34.23049740564003, 150.68777844752427 -34.230249034053465, 150.68674847926627 -34.235677560320468, 150.68091199245285 -34.234950229066186, 150.68108365382921 -34.233300405615253, 150.68065450038384 -34.233211704513757, 150.68080470408927 -34.23248435195876, 150.68172738399269 -34.23248435195876, 150.68230674113445 -34.229450691850317, 150.67522570933588 -34.22852815365605)))\n17350712\tThe Ridge\tCheck with carrier\tPOLYGON ((150.919743232 -33.541005243, 150.919726336 -33.5410001185, 150.919703648 -33.540993366, 150.919681312 -33.5409866135, 150.919658656 -33.540979861000004, 150.919570816 -33.54095385, 150.919482976 -33.5409281165, 150.919394752 -33.540902901, 150.91930656 -33.540878703000004, 150.919217632 -33.5408557445, 150.919124768 -33.540834155, 150.91903152 -33.540814434, 150.91893792 -33.5407953605, 150.918844672 -33.540775917, 150.918751808 -33.540754679, 150.918671872 -33.540734884, 150.918591968 -33.540714534, 150.918512416 -33.540693481, 150.918433216 -33.5406715215, 150.918354368 -33.5406486555, 150.9182784 -33.540624624, 150.918203168 -33.540598983, 150.918127936 -33.540572879500004, 150.918052672 -33.54054759, 150.917976352 -33.54052428, 150.917935328 -33.540512939500005, 150.917894272 -33.5405021355, 150.917852896 -33.5404915165, 150.91781184 -33.540480897500004, 150.917770816 -33.540470186, 150.917707808 -33.5404531845, 150.9176448 -33.540436072, 150.917518816 -33.540401514, 150.917455456 -33.54038442, 150.9173712 -33.5403620165, 150.917286592 -33.5403399645, 150.917202016 -33.5403179125, 150.91711776 -33.540295324, 150.917033536 -33.540271644, 150.91695792 -33.5402484265, 150.916882688 -33.540223766000004, 150.916807456 -33.540199013, 150.91673184 -33.540175351500004, 150.91665552 -33.5401541135, 150.916568416 -33.540134226, 150.916480192 -33.5401174835, 150.916391296 -33.540101999, 150.91630272 -33.540086422, 150.916214528 -33.5400689765, 150.916116608 -33.540047905, 150.916018688 -33.540026408, 150.915921472 -33.540003727, 150.915824992 -33.539979159, 150.9157296 -33.5399518715, 150.91564464 -33.5399249725, 150.915560416 -33.539896168, 150.915476896 -33.5398656615, 150.915394432 -33.5398336195, 150.915312736 -33.5398001345, 150.915243232 -33.5397680185, 150.9151752 -33.5397329055, 150.91510752 -33.539697533500004, 150.9150384 -33.5396646035, 150.914967136 -33.539636613, 150.914894048 -33.539615097500004, 150.914818816 -33.539597541, 150.914742496 -33.5395827965, 150.914665792 -33.5395692915, 150.91458912 -33.5395557865, 150.914499136 -33.5395420225, 150.914408416 -33.539531496, 150.914317696 -33.539521136, 150.91422768 -33.5395079085, 150.914140192 -33.5394890015, 150.914080096 -33.5394725365, 150.91402032 -33.539454536, 150.913961632 -33.539434556, 150.913904416 -33.539412245, 150.913849696 -33.539387122, 150.913780192 -33.539345016, 150.91371648 -33.539294881, 150.913654912 -33.5392415085, 150.91359264 -33.5391894865, 150.913525312 -33.539143329, 150.913488256 -33.5391224425, 150.913450816 -33.539102462500004, 150.91341264 -33.5390831115, 150.913374496 -33.539064297, 150.913335968 -33.539045575, 150.913299616 -33.539028111, 150.91326288 -33.539011017, 150.913226176 -33.538994182, 150.913189088 -33.538977717, 150.913152 -33.5389616035, 150.913116352 -33.538949819, 150.913080352 -33.538937757, 150.913044736 -33.5389255285, 150.913009088 -33.5389130965, 150.912973792 -33.538900498000004, 150.91290576 -33.5388747645, 150.912838432 -33.538847754500004, 150.912771488 -33.538820134, 150.91270416 -33.538792865, 150.91263648 -33.538766669000005, 150.912534976 -33.5387303165, 150.912432736 -33.5386957585, 150.91232976 -33.538662181, 150.912226816 -33.538628696, 150.91212384 -33.538594767, 150.912029536 -33.538562096, 150.911934848 -33.5385287035, 150.911840512 -33.538495681, 150.911745472 -33.538463824000004, 150.911649728 -33.538434113, 150.911581696 -33.538414503, 150.911513632 -33.5383956885, 150.911445248 -33.5383775955, 150.91137648 -33.538360316500004, 150.91130736 -33.5383438515, 150.91122672 -33.5383263875, 150.911145728 -33.538310551500004, 150.911064352 -33.538295511, 150.910983008 -33.5382807665, 150.910902016 -33.5382653745, 150.910842592 -33.5382537565, 150.910783552 -33.538242157, 150.910724512 -33.538230539000004, 150.91066512 -33.538218847, 150.91060608 -33.538207044, 150.909224032 -33.545795947500004, 150.904330208 -33.545117349, 150.90424416 -33.5451054535, 150.90406416 -33.545085751, 150.904243808 -33.545385007, 150.907374016 -33.5506537885, 150.907480576 -33.5508315365, 150.909997696 -33.555034089, 150.910066816 -33.55496316, 150.91032672 -33.553238849, 150.91303824 -33.552101062, 150.914255392 -33.546468145, 150.916333696 -33.5467552465, 150.918799328 -33.5470959055, 150.91890768 -33.547110835, 150.918970336 -33.546549249, 150.919042336 -33.545907188, 150.91901712 -33.545562385000004, 150.919168672 -33.544883435, 150.919472896 -33.5443337075, 150.919336448 -33.543715678, 150.919689952 -33.541164639, 150.919743232 -33.541005243))\n226\tFlourish\tUnder construction\tPOLYGON ((152.75919471740568 -27.680557076021895, 152.75859390258398 -27.681583172169795, 152.75820766448948 -27.681887198806489, 152.75837932586583 -27.683065294031163, 152.76284252166855 -27.688233561612098, 152.76301418304487 -27.688537569734908, 152.76773487090762 -27.689791594291982, 152.76859317778928 -27.686941517648975, 152.77674709319672 -27.689183584184, 152.77923618316706 -27.68557345443611, 152.77404342650817 -27.68295128537131, 152.77030979156166 -27.681735185593531, 152.76481662750089 -27.681089127079431, 152.75919471740568 -27.680557076021895))\n69\tUniversity Hill\tReady for service\tPOLYGON ((145.06972 -37.67879, 145.07055 -37.67888, 145.07175 -37.67918, 145.07278 -37.67938, 145.07321 -37.67949, 145.07356 -37.67983, 145.07386 -37.6803, 145.07441 -37.68074, 145.07476 -37.68121, 145.07467 -37.68233, 145.07549 -37.68253, 145.07579 -37.68291, 145.07587 -37.68343, 145.07617 -37.68394, 145.07695 -37.68414, 145.07738 -37.68475, 145.07772 -37.68519, 145.07845 -37.68567, 145.07944 -37.6856, 145.07969 -37.68472, 145.07991 -37.68394, 145.08115 -37.68363, 145.08278 -37.68352, 145.08441 -37.68403, 145.08527 -37.68444, 145.08695 -37.68387, 145.08845 -37.68282, 145.08922 -37.6822, 145.09102 -37.68309, 145.09373 -37.68407, 145.09398 -37.68621, 145.0924 -37.6873, 145.09098 -37.68831, 145.08905 -37.68835, 145.08759 -37.68873, 145.08613 -37.68835, 145.0854 -37.68791, 145.07922 -37.68719, 145.07645 -37.68692, 145.07551 -37.68685, 145.07333 -37.68663, 145.07004 -37.68625, 145.06855 -37.68609, 145.06837 -37.68604, 145.06847 -37.68569, 145.06842 -37.68564, 145.06875 -37.6845, 145.06894 -37.68331, 145.06917 -37.68191, 145.06957 -37.67976, 145.06972 -37.67879))\n17329992\tLots 2-3 Golf Links Road Wundowie\tCheck with carrier\tPOLYGON ((116.361575008 -31.731990994, 116.361572992 -31.720592996, 116.347972 -31.720596992, 116.347963008 -31.7291629915, 116.348277984 -31.7286720015, 116.350567008 -31.7281530025, 116.350643008 -31.727806997000002, 116.350057984 -31.727526000500003, 116.349651008 -31.7270060025, 116.3496 -31.726183992000003, 116.349777984 -31.7254919995, 116.355296992 -31.726595006500002, 116.354864992 -31.7278279945, 116.354483008 -31.728131006, 116.354483008 -31.7293429965, 116.355729984 -31.7294070065, 116.35578 -31.730618997, 116.358145984 -31.730639994500002, 116.358171008 -31.731873001, 116.361575008 -31.731990994))\n183\tThe Peninsula\tReady for service\tPOLYGON ((152.90982757569347 -27.67932432276379, 152.91862522126439 -27.674079621610755, 152.92609249116651 -27.6805024456331, 152.92162929536377 -27.68468277907127, 152.91716609956106 -27.68578484032367, 152.9148057556252 -27.685404820458956, 152.90982757569347 -27.67932432276379))\n17361458\tBlackmore Subdivision\tCheck with carrier\tPOLYGON ((130.919370368 -12.7275434465, 130.911943168 -12.727573768000001, 130.911910368 -12.742114860500001, 130.91934 -12.742129753, 130.919370368 -12.7275434465))\n17346227\tRidge View Estate\tCheck with carrier\tPOLYGON ((131.053826176 -12.8086149605, 131.03896608 -12.808550969, 131.038961056 -12.8158329575, 131.053808864 -12.815841967, 131.053826176 -12.8086149605))\n3\tBlakes Crossing\tReady for service\tPOLYGON ((138.70131 -34.67067, 138.69687 -34.67847, 138.69674 -34.67895, 138.69777 -34.6794, 138.69859 -34.68004, 138.70724 -34.68389, 138.71142 -34.67672, 138.70591 -34.67452, 138.70683 -34.67286, 138.70131 -34.67067))\n17317496\tRoche Creek Road Wandoan\tCheck with carrier\tPOLYGON ((149.992989856 -26.114619951, 149.989181056 -26.1174950175, 149.995942912 -26.1186239615, 150.009822016 -26.115216021000002, 150.010792928 -26.1089119795, 150.00450192 -26.110629982000003, 150.004184032 -26.1107170245, 149.996403008 -26.1128420085, 149.995587968 -26.1126569715, 149.995587968 -26.1126569715, 149.995587968 -26.1126569715, 149.992989856 -26.114619951))\n286\tMinta Farm\tUnder construction\tPOLYGON ((145.36372219087 -38.077836007648486, 145.3713611221394 -38.078883236828645, 145.3740218734861 -38.075437458503949, 145.37513767243678 -38.073815859585423, 145.37548099518946 -38.071890164172771, 145.35565410615521 -38.069626562638831, 145.36372219087 -38.077836007648486))\n237\tKinbrook\tReady for service\tPOLYGON ((144.9586871719261 -37.541772522962034, 144.96696983335903 -37.542657245078722, 144.96478115080848 -37.551367794539622, 144.96254955289817 -37.55684539215941, 144.96091876981845 -37.556471159173796, 144.96031795499681 -37.555042252303, 144.95898757932795 -37.5536813631445, 144.95602642057042 -37.550142935026187, 144.9586871719261 -37.541772522962034))\n42\tChancellor\tReady for service\tPOLYGON ((145.0934309349293 -37.686439194876371, 145.09347385028013 -37.684809008605235, 145.08124297716449 -37.68426560521916, 145.07999843218832 -37.685080708805025, 145.07969802477746 -37.685827879223496, 145.07823890307409 -37.6854203326557, 145.07785266497061 -37.68497882134664, 145.07849639513412 -37.684231642375117, 145.07909720995579 -37.683382566226648, 145.07841056445045 -37.683246713140619, 145.07748788454705 -37.682975006222158, 145.07699435808894 -37.681871186634, 145.07682269671261 -37.6810560477791, 145.07660811999443 -37.680716403945745, 145.07585710146734 -37.6806994217128, 145.07504170992749 -37.680801315049344, 145.07471984484573 -37.68109001207641, 145.07381862262221 -37.680291846967108, 145.07345384218962 -37.6795955682635, 145.07330363848422 -37.679391778138246, 145.0733894691769 -37.678712473677244, 145.07347529986055 -37.678508681126182, 145.06987041094851 -37.678236956854185, 145.06875461198885 -37.685946746550357, 145.08913940050294 -37.68825613110117, 145.0934309349293 -37.686439194876371))\n123\tSeaside\tReady for service\tPOLYGON ((151.81044193518323 -32.856728450325335, 151.80440160048263 -32.859251926338338, 151.8039724470373 -32.859432171877764, 151.80474492323532 -32.860045003973525, 151.80674048673859 -32.860621783253784, 151.80989476454337 -32.860603758958277, 151.81003423940882 -32.860684868261082, 151.81009861243058 -32.86098226840069, 151.809991324067 -32.861252631298676, 151.80926176321981 -32.861906004899168, 151.80887016070085 -32.861734776421322, 151.80853220236364 -32.862284508783588, 151.80832299006096 -32.862221424915532, 151.80806549799198 -32.86248277207865, 151.8079260231265 -32.862505301970351, 151.8079528452129 -32.862604433426888, 151.80818887961098 -32.862829731778774, 151.80937978041436 -32.863082065252655, 151.81157919180481 -32.863406492951313, 151.81219073545748 -32.863568706355231, 151.81568833600596 -32.864082380176988, 151.81819888363825 -32.864406804215712, 151.81997987042337 -32.863000958143516, 151.82113858471587 -32.860693880401435, 151.82036610851785 -32.859612417052432, 151.81965800534161 -32.8588193355503, 151.81978675137609 -32.8577017995794, 151.82167502651581 -32.857125001311722, 151.82150336513945 -32.854673566835935, 151.8194005132726 -32.854781719785251, 151.8194005132726 -32.853447824195712, 151.81785556088559 -32.853447824195712, 151.81746932278207 -32.855142228663631, 151.81631060848957 -32.855250381041621, 151.81583853970238 -32.85395254380397, 151.81442233334087 -32.854529362698152, 151.81407901058819 -32.856584249529917, 151.81403609524637 -32.857773899098881, 151.81360694180105 -32.859035631208776, 151.8135640264592 -32.860297345371372, 151.81360694180105 -32.861126462049839, 151.81352111111735 -32.86130670378013, 151.81309195767201 -32.86098226840145, 151.81322070370649 -32.859900808568575, 151.81317778836467 -32.858386742651128, 151.81296321163751 -32.85780994883703, 151.81253405820118 -32.857269201230423, 151.811804497345 -32.857593650189926, 151.81171866665233 -32.858134395818794, 151.811289513216 -32.858062296592323, 151.81133242855782 -32.857016851219058, 151.81094619046331 -32.85654819929443, 151.81044193518323 -32.856728450325335))\n61\tBerwick Waters\tReady for service\tGEOMETRYCOLLECTION (POLYGON ((145.35408159084116 -38.076906603088688, 145.35733242816059 -38.077295098020073, 145.35587598866496 -38.084416435612539, 145.35264392679974 -38.084038534441049, 145.35382409877215 -38.078369782485453, 145.35382946318762 -38.078175538132612, 145.35408159084116 -38.076906603088688)), POLYGON ((145.35105203575029 -38.076523384598765, 145.34963314717203 -38.083682798871337, 145.3435391682896 -38.082969211325128, 145.33717160409176 -38.076149665458715, 145.33861999696416 -38.07499260200597, 145.35105203575029 -38.076523384598765)))\n17362675\tGolf Links Road Wundowie\tCheck with carrier\tPOLYGON ((116.361575008 -31.731914996, 116.358171008 -31.731873001, 116.358145984 -31.730639994500002, 116.35578 -31.730618997, 116.355729984 -31.7294070065, 116.354483008 -31.7293429965, 116.354483008 -31.728131006, 116.354864992 -31.7278279945, 116.355296992 -31.726595006500002, 116.349777984 -31.7254919995, 116.3496 -31.726183992000003, 116.349651008 -31.7270060025, 116.350057984 -31.727526000500003, 116.350643008 -31.727806997000002, 116.350567008 -31.7281530025, 116.350211008 -31.728239009000003, 116.349168 -31.728433999, 116.348277984 -31.7286720015, 116.347947008 -31.7293429965, 116.347972 -31.731912998000002, 116.347997984 -31.7375840065, 116.351100992 -31.7375619915, 116.351152 -31.736978002, 116.351203008 -31.735766992000002, 116.361629984 -31.735789007, 116.361575008 -31.731914996))\n284\tSussex Inlet\tUnder construction\tGEOMETRYCOLLECTION (POLYGON ((150.57443891523891 -35.145224920974727, 150.57109151838688 -35.146979486463756, 150.57252918241929 -35.147330395021754, 150.57184253691395 -35.15117274474062, 150.57252918241929 -35.151471001742458, 150.57207857130305 -35.152278044618015, 150.57435308454626 -35.15408508985518, 150.57611261366043 -35.154628949981458, 150.57978187559422 -35.152471031946071, 150.58072601316857 -35.148453292241392, 150.58085475920308 -35.148067298069449, 150.57619844435308 -35.147470758021726, 150.57555471418956 -35.147558484773853, 150.57443891523891 -35.145224920974727)), POLYGON ((150.57924543379428 -35.158576212914213, 150.57971750258147 -35.156120160710486, 150.58439527510237 -35.156014899673309, 150.58630500792196 -35.15761134410559, 150.58643375395647 -35.158506041022662, 150.57924543379428 -35.158576212914213)), POLYGON ((150.58737789153079 -35.145242466816605, 150.58817182539073 -35.146453120789, 150.58712039946178 -35.147944481358458, 150.58784996030897 -35.14810238852457, 150.58742080687264 -35.149751622836391, 150.58692728041456 -35.149751622836391, 150.58688436506372 -35.151207833856624, 150.58772121428348 -35.151962246185128, 150.58810745237798 -35.1516815354383, 150.58890138624693 -35.151909612993819, 150.58870826719965 -35.1528745494246, 150.58398757932795 -35.1528745494246, 150.58450256346595 -35.145382833417692, 150.58737789153079 -35.145242466816605)))\n82\tModeina\tReady for service\tPOLYGON ((144.749644009 -37.741855443, 144.748985076 -37.746939275, 144.758919208 -37.747838665, 144.75936339 -37.744627723, 144.76032347 -37.743859214, 144.760415613 -37.743097614, 144.760577834 -37.742194299, 144.7611405 -37.741460404, 144.762340374 -37.740580777, 144.762937321 -37.739937495, 144.763182955 -37.738823247, 144.762696063 -37.737767899, 144.762096629 -37.737411544, 144.76158036 -37.737203215, 144.760602745 -37.737247452, 144.756822984 -37.73865128, 144.756213076 -37.738820145, 144.755526598 -37.738650622, 144.754973974 -37.738609326, 144.75412463 -37.738912929, 144.753905835 -37.739614534, 144.753520078 -37.740149264, 144.752929524 -37.740656762, 144.752233423 -37.741036112, 144.751690482 -37.741471026, 144.751274323 -37.741780951, 144.75079661 -37.741868172, 144.75040733 -37.741765516, 144.750081868 -37.741702956, 144.749644009 -37.741855443))\n68\tBrentwood Forest\tReady for service\tPOLYGON ((152.880475846 -27.642904867, 152.883313382 -27.644190701, 152.883588028 -27.643812654, 152.88401786 -27.643710397, 152.884504429 -27.643861928, 152.890337506 -27.644642686, 152.891585033 -27.642968595, 152.892788631 -27.640813241, 152.894215137 -27.640957716, 152.895087919 -27.639723374, 152.895866308 -27.639215474, 152.89329852 -27.637353907, 152.892542437 -27.635865622, 152.892087588 -27.635642128, 152.889160928 -27.635671411, 152.886453879 -27.635729125, 152.885711906 -27.635645152, 152.88523498 -27.635747808, 152.884757058 -27.635962506, 152.884530762 -27.63594193, 152.882941574 -27.638329253, 152.880475846 -27.642904867))\nON-Q-GC-EcoVill\tEco Village, Currumbin Valley\tReady for service\tPOLYGON ((153.42949161770866 -28.176020023448768, 153.42979202511833 -28.176398322033357, 153.43135843518303 -28.175424200464967, 153.43187341931389 -28.175991651000988, 153.43290338757561 -28.174062306896527, 153.433514931231 -28.173608338520616, 153.43501696827934 -28.174828374162296, 153.43814353010521 -28.177522439486232, 153.44076136610374 -28.179565207253187, 153.44023565313682 -28.181522823083892, 153.43728522322044 -28.183660082539284, 153.43633035681114 -28.1836695393446, 153.43577245733604 -28.182600915050994, 153.43406657240257 -28.183849218486774, 153.43294004461632 -28.185750016182844, 153.43274692556724 -28.188284360546415, 153.43093375227318 -28.1888706555365, 153.43021492025719 -28.185031310579038, 153.43083719274864 -28.184473364739898, 153.4314058210598 -28.184435537797977, 153.43029008631811 -28.182433238893246, 153.42917428736791 -28.180125726923684, 153.42878804926977 -28.176588706193588, 153.42949161770866 -28.176020023448768))\n136\tJindee\tReady for service\tPOLYGON ((115.69413457871279 -31.645613986187424, 115.68795476913772 -31.645687054640707, 115.68331991195868 -31.647148411636124, 115.68263326645332 -31.647038810658323, 115.68280492782965 -31.646454269927482, 115.68267618179517 -31.644737160274772, 115.68181787491348 -31.644262209453061, 115.68100248337365 -31.644335278967997, 115.68074499130464 -31.643275765376494, 115.67984376908112 -31.641193237957982, 115.68271909714599 -31.638452999239448, 115.68632398605804 -31.638635684332687, 115.68975721360272 -31.63644343952469, 115.69413457871279 -31.645613986187424))\n102\tAlira\tReady for service\tPOLYGON ((145.32106433870212 -38.04436956469803, 145.32363925935613 -38.045890426596181, 145.32275949480353 -38.046870520856828, 145.32690082551554 -38.047377461015834, 145.32655750276282 -38.049270006594817, 145.32732997896085 -38.0493544940954, 145.32683645250273 -38.051720104536471, 145.32853160860421 -38.051905970689212, 145.32752309800807 -38.057802751771973, 145.32745872499535 -38.058292720798335, 145.3227165794527 -38.057616900594063, 145.32200847627644 -38.057414153315712, 145.32127891542029 -38.056839699642964, 145.32091413499668 -38.055927322778039, 145.32067810060758 -38.052717017468, 145.32009874345687 -38.051703207590336, 145.318510875719 -38.050013493257829, 145.31829629900079 -38.049489673894513, 145.318253383659 -38.0491179288472, 145.3182748413299 -38.04883067001726, 145.31831775667172 -38.048442023923883, 145.31934772492977 -38.046025612791077, 145.32104288103119 -38.044403361972535, 145.32106433870212 -38.04436956469803))\n7\tLightsview\tReady for service\tPOLYGON ((138.63601 -34.85796, 138.63607 -34.85819, 138.63657 -34.86501, 138.63256 -34.86521, 138.62187 -34.86571, 138.62164 -34.86214, 138.62299 -34.86203, 138.6229 -34.86063, 138.62866 -34.8603, 138.62856 -34.85833, 138.63601 -34.85796))\nON-V-LSP\tLakeside, Pakenham\tReady for service\tPOLYGON ((145.435528 -38.072927, 145.435635 -38.073248, 145.434712 -38.077047999999991, 145.434991 -38.077521000000004, 145.435378 -38.078636, 145.436622 -38.079717, 145.43748 -38.080121999999996, 145.441815 -38.081507000000009, 145.448317 -38.073501000000007, 145.435893 -38.07111900000001, 145.435528 -38.072927))\n17324634\tDrivers Run\tCheck with carrier\tMULTIPOLYGON (((147.231934912 -41.444262001, 147.23042112 -41.4426709825, 147.230379008 -41.442626970999996, 147.229424992 -41.441694034499996, 147.227718976 -41.43988701, 147.21987312 -41.4315700205, 147.219622912 -41.4317240145, 147.21946992 -41.431805007499996, 147.219339968 -41.4318770095, 147.219114976 -41.431985993, 147.218753152 -41.432067984999996, 147.21838992 -41.432166996999996, 147.218136832 -41.432257979999996, 147.217979168 -41.432293980999994, 147.217825088 -41.432339971999994, 147.217650112 -41.4324029645, 147.217472992 -41.4324389655, 147.21729984 -41.432511966499995, 147.217038848 -41.432565968, 147.21682896 -41.4325940325, 147.216606112 -41.432639042999995, 147.216375008 -41.432649033, 147.216107872 -41.432685033999995, 147.215934016 -41.4327220155, 147.21580512 -41.432731024999995, 147.215698912 -41.432713024499996, 147.215517856 -41.432650013499995, 147.21527808 -41.4326150115, 147.214987936 -41.4326150115, 147.21462288 -41.432607000999994, 147.214284832 -41.4326079815, 147.214171072 -41.432661982999996, 147.21410592 -41.4327159845, 147.213977056 -41.4328149965, 147.213803168 -41.432824986499995, 147.213627136 -41.432779976, 147.21351696 -41.4327529845, 147.213396 -41.432698982999995, 147.21334704 -41.432662982, 147.213224992 -41.432924979, 147.214220032 -41.433958980999996, 147.214172896 -41.434003972999996, 147.214127872 -41.4340489835, 147.214150912 -41.434072015999995, 147.217929856 -41.437924011999996, 147.217794112 -41.438006003999995, 147.217832992 -41.438051994999995, 147.218652 -41.439031015, 147.217384096 -41.439654983, 147.21823008 -41.441715994, 147.218240896 -41.4417429855, 147.219557056 -41.4430849755, 147.227479936 -41.440503966499996, 147.22774992 -41.441793028, 147.228126112 -41.442584032499994, 147.228890048 -41.442641992999995, 147.229842976 -41.4431669675, 147.230028 -41.443332024499995, 147.230062912 -41.443362993499996, 147.230070848 -41.443374963, 147.23101584 -41.444747996, 147.231934912 -41.444262001)), ((147.21321888 -41.432627961499996, 147.21309216 -41.432627961499996, 147.213021952 -41.432645961999995, 147.212943136 -41.432681963, 147.212849152 -41.432717964, 147.213069856 -41.432960961499994, 147.21321888 -41.432627961499996)))\n17316139\tPort Hedland International Airport Precinct 3\tCheck with carrier\tPOLYGON ((118.610489152 -20.3850569715, 118.61332704 -20.3826960015, 118.616522048 -20.3800459505, 118.621292032 -20.384857079, 118.623948832 -20.382522305000002, 118.61974656 -20.3782323585, 118.619269184 -20.3787299715, 118.616431328 -20.375758446, 118.616853952 -20.375362176, 118.612415872 -20.370749219500002, 118.61101584 -20.372396034, 118.612638368 -20.3762472345, 118.611389504 -20.377399858500002, 118.610695072 -20.377909256, 118.609754048 -20.378725013500002, 118.610489152 -20.3850569715))\n140\tGreenlea\tReady for service\tPOLYGON ((115.8279660797097 -32.294402268913331, 115.83431755065212 -32.294257161025783, 115.83354507446307 -32.299480898632247, 115.8319142913744 -32.304776880795671, 115.82358871459964 -32.304921971841857, 115.82539115905564 -32.298537746057448, 115.8279660797097 -32.294402268913331))\n17348174\tCaviar Drive\tCheck with carrier\tPOLYGON ((146.298855616 -26.387840605, 146.29795344 -26.387710198500002, 146.296469152 -26.387495635500002, 146.294985248 -26.3872809985, 146.294397728 -26.3871951215, 146.293501312 -26.387066343, 146.292017056 -26.3868515025, 146.291723296 -26.386807861, 146.29053312 -26.3866364955, 146.289049216 -26.386421396, 146.28756528 -26.386206204, 146.286080992 -26.385991012, 146.284597088 -26.385775838500003, 146.283113152 -26.385560739000002, 146.281629248 -26.385345621000003, 146.281271776 -26.387341475, 146.281275008 -26.387369373000002, 146.281293376 -26.387392054, 146.28132144 -26.387403561, 146.282746336 -26.387609947, 146.28423024 -26.387824954, 146.285714176 -26.388039961, 146.287198432 -26.388254968000002, 146.288682368 -26.3884698825, 146.2913568 -26.388857254, 146.2921848 -26.388977134, 146.292600256 -26.389037333, 146.29403088 -26.3892445145, 146.29398336 -26.389511821, 146.292552352 -26.3893046395, 146.292521408 -26.3893075255, 146.292496192 -26.389323898, 146.292483616 -26.389349465000002, 146.2922856 -26.3904543035, 146.292174016 -26.391078086500002, 146.291877376 -26.391035074, 146.292186592 -26.389306434, 146.29218336 -26.3892786285, 146.292165376 -26.389255855000002, 146.292136928 -26.389244422, 146.290118752 -26.3889521035, 146.288634496 -26.388737189, 146.28715056 -26.388522182, 146.285666656 -26.388307175, 146.284182368 -26.388092242000003, 146.282203808 -26.3878055105, 146.280917536 -26.3876192155, 146.281076992 -26.3867282185, 146.281332256 -26.3853026085, 146.278969568 -26.384960155, 146.277715328 -26.3862410395, 146.277024128 -26.3869469995, 146.27854512 -26.3882556895, 146.278972448 -26.388623525, 146.279903776 -26.3905706685, 146.281712032 -26.3905516875, 146.283746048 -26.3905302645, 146.28527136 -26.390514151, 146.286797056 -26.390498037500002, 146.288320576 -26.390482016500002, 146.289569408 -26.3913792295, 146.289671296 -26.391452212, 146.292746752 -26.3936617225, 146.292910912 -26.393424201000002, 146.294552512 -26.391049911, 146.295467296 -26.389726735500002, 146.295988576 -26.3889728975, 146.298855616 -26.387840605))\n313\tCanopy\tUnder construction\tPOLYGON ((145.25756294999746 -38.110762840000092, 145.25798572999747 -38.110621570000063, 145.25803055999745 -38.110635930000086, 145.25808852999754 -38.110744080000082, 145.25809762999745 -38.110760170000077, 145.25810754999748 -38.110775950000104, 145.25811827999746 -38.110791410000054, 145.25812977999752 -38.110806500000095, 145.25814205999745 -38.110821220000076, 145.25815506999754 -38.110835530000024, 145.25816880999753 -38.110849410000093, 145.2581832499975 -38.110862840000074, 145.25819836999747 -38.110875800000031, 145.25821413999748 -38.110888260000067, 145.2582305399975 -38.110900210000082, 145.25824752999748 -38.110911630000047, 145.25826509999754 -38.110922480000077, 145.25828320999744 -38.110932770000048, 145.25830182999758 -38.110942470000076, 145.25832093999747 -38.110951570000076, 145.25834048999752 -38.110960040000123, 145.25836046999746 -38.110967890000062, 145.25838082999746 -38.110975080000081, 145.25840153999755 -38.1109816200001, 145.25842256999749 -38.110987490000063, 145.25844387999746 -38.110992680000066, 145.25846544999754 -38.110997190000049, 145.25848722999754 -38.111001, 145.25850917999753 -38.111004110000081, 145.25870932999749 -38.111029160000072, 145.25869501999753 -38.111100350000079, 145.25875133999753 -38.111107410000059, 145.25876564999749 -38.111036210000066, 145.25939358999747 -38.111114790000066, 145.25926452999749 -38.111759840000069, 145.25935081999754 -38.112361310000054, 145.25970067999754 -38.112768630000105, 145.26134310999751 -38.1129784600001, 145.26036703999753 -38.117927040000069, 145.26017498999752 -38.117897850000119, 145.25130360999751 -38.116646230000093, 145.25210137999747 -38.112674930000139, 145.25290362999746 -38.11277672000007, 145.25314880999744 -38.11157002000008, 145.25370828999746 -38.11151248000008, 145.25372588999753 -38.11151035000006, 145.25374334999751 -38.111507610000068, 145.25376063999747 -38.111504250000088, 145.25377772999749 -38.111500290000059, 145.25379456999744 -38.111495730000073, 145.25381113999751 -38.111490570000086, 145.25382739999748 -38.111484850000096, 145.25384331999746 -38.111478550000093, 145.25480365999746 -38.111060740000106, 145.2551016499975 -38.110924130000086, 145.25560372999743 -38.110805180000071, 145.25597807999745 -38.110826920000093, 145.25635579999752 -38.110881720000094, 145.25711215999752 -38.111021920000056, 145.25717739999754 -38.110780980000087, 145.25722159999751 -38.110788450000037, 145.25724296999752 -38.110791720000073, 145.25726447999753 -38.11079435000007, 145.25728609999751 -38.11079633000012, 145.25730779999756 -38.110797660000067, 145.25732954999751 -38.1107983200001, 145.2573513199975 -38.110798340000059, 145.2573730699975 -38.110797690000119, 145.25739476999752 -38.1107964000001, 145.2574163899975 -38.110794440000078, 145.25743790999752 -38.1107918400001, 145.25745927999753 -38.110788590000119, 145.25748047999753 -38.110784700000096, 145.2575014799975 -38.110780170000076, 145.25752223999748 -38.110775010000083, 145.25754273999746 -38.110769230000095, 145.25756294999746 -38.110762840000092))\nAYAA-J6EL5\tGrantham Rebuild Project\tReady for service\tPOLYGON ((152.189940289936 -27.5642384987419, 152.190378006066 -27.5650348994952, 152.190522484165 -27.5655159211782, 152.19066844661 -27.5660018805644, 152.191228547186 -27.5668165956637, 152.191699113072 -27.5680776192539, 152.19290428783 -27.5677732722113, 152.19336723009 -27.5676313928299, 152.193444005288 -27.5678448083489, 152.193321247901 -27.5681173733995, 152.193379403746 -27.5685735711148, 152.19326359707 -27.5689590609333, 152.193267871646 -27.5692241780475, 152.193451465795 -27.5694415514752, 152.19488371979 -27.5700794778929, 152.19508 -27.5703149999811, 152.19537 -27.5705699999812, 152.198761955311 -27.57089941635, 152.203352637528 -27.5715292745966, 152.203373608702 -27.5713866487479, 152.203730871972 -27.5707762290755, 152.203354899861 -27.5706969484843, 152.203010394178 -27.5706462237063, 152.202852010702 -27.5706273527498, 152.202729988241 -27.5705870286659, 152.202629260788 -27.5705003149577, 152.202590050853 -27.5703872229933, 152.202598007939 -27.5703271665326, 152.202712059487 -27.570218930053, 152.202882387027 -27.5701499799951, 152.203069448663 -27.5701478026869, 152.203261863328 -27.5701708896685, 152.203455729178 -27.5701733186776, 152.203648533369 -27.5701551006336, 152.203841091632 -27.5701153512837, 152.204016400171 -27.5700592029105, 152.204105405219 -27.5700234934014, 152.204142610769 -27.5700606903613, 152.204544711129 -27.5696433292774, 152.204429266822 -27.569584344524, 152.20410543981 -27.5698170864033, 152.20393645194 -27.5698929588389, 152.203783991793 -27.5699417892539, 152.203618801767 -27.5699759479919, 152.203450216455 -27.5699922840983, 152.2032806567 -27.5699904674032, 152.203077910522 -27.5699671453939, 152.202833469944 -27.5699699952316, 152.202833809669 -27.5699713464087, 152.202587993748 -27.5700693660897, 152.202327688666 -27.5701659908172, 152.201438806816 -27.5700899090188, 152.201291492697 -27.5700132766251, 152.200192659644 -27.5686115980226, 152.200130434074 -27.5684285884045, 152.199984427375 -27.5684269268222, 152.199545097913 -27.5684369919209, 152.198755697484 -27.5684541889419, 152.19777817637 -27.5676185156484, 152.197688563379 -27.567543884024, 152.197386134409 -27.5669986710673, 152.197254550219 -27.5668948257523, 152.196889580213 -27.5661348235591, 152.196191928823 -27.5664008941752, 152.196030459057 -27.5661999100145, 152.195192089666 -27.5644540408572, 152.195123110958 -27.5643028627848, 152.195098696668 -27.5641827872574, 152.195140022865 -27.5640664936362, 152.195237754778 -27.5639809032726, 152.195454220625 -27.5638631387931, 152.195581326209 -27.5638134378705, 152.195755998877 -27.5637788004233, 152.195846554349 -27.5635962325678, 152.195542512014 -27.563015875432, 152.194843299737 -27.5623858421214, 152.194700842226 -27.5622574778333, 152.194383156069 -27.5619712185637, 152.19406547156 -27.5616849585912, 152.193770008982 -27.5613855873941, 152.193511593594 -27.5611237516527, 152.19277233744 -27.5616359227474, 152.192547052587 -27.5616766723129, 152.191843633239 -27.5619894014807, 152.191227992871 -27.562203033793, 152.191291974529 -27.562308492569, 152.191368118013 -27.5624124336934, 152.191453994736 -27.5625101642493, 152.191614986928 -27.5626640749832, 152.19167595698 -27.5627229693164, 152.191788171779 -27.5628492428875, 152.191889228987 -27.5629827906392, 152.191973779003 -27.5631140262893, 152.191602973013 -27.5633190774183, 152.189940289936 -27.5642384987419))\n47\tMaplewood\tReady for service\tPOLYGON ((144.56265 -37.714, 144.56172 -37.71391, 144.56167 -37.71395, 144.56155 -37.71459, 144.55993 -37.71407, 144.55977 -37.71358, 144.55883 -37.71383, 144.55833 -37.71387, 144.55795 -37.71362, 144.55825 -37.71322, 144.55819 -37.71319, 144.5584 -37.71296, 144.55842 -37.71271, 144.55855 -37.71244, 144.55866 -37.71233, 144.55899 -37.71204, 144.55865 -37.71179, 144.55863 -37.71169, 144.55885 -37.71136, 144.55985 -37.71049, 144.56005 -37.71028, 144.55965 -37.71004, 144.55973 -37.70975, 144.55928 -37.70864, 144.55785 -37.70973, 144.55524 -37.71167, 144.55319 -37.71318, 144.55195 -37.71408, 144.55157 -37.71436, 144.55115 -37.71463, 144.55082 -37.71483, 144.55046 -37.71502, 144.55017 -37.71518, 144.54984 -37.71531, 144.56223 -37.71688, 144.56241 -37.71593, 144.56253 -37.71515, 144.56265 -37.714))\n17329519\tMcMahon Road North Dandalup\tCheck with carrier\tPOLYGON ((115.930991872 -32.503848031000004, 115.930772992 -32.504526981, 115.930772992 -32.5051759795, 115.93103904 -32.5051759795, 115.931256832 -32.513838031, 115.932264128 -32.513842989000004, 115.932284992 -32.5157360385, 115.93311984 -32.5157370375, 115.933047104 -32.517093957, 115.934654144 -32.517061027000004, 115.934654144 -32.516679964, 115.934955104 -32.516249043500004, 115.935765824 -32.5158939915, 115.93570608 -32.5149820155, 115.934594048 -32.515007046, 115.93470816 -32.504120018, 115.932741824 -32.5042340335, 115.932530144 -32.5041380185, 115.930991872 -32.503848031000004))\n32\tWoodlands\tReady for service\tPOLYGON ((153.15887 -27.72047, 153.15861 -27.71982, 153.15776 -27.71839, 153.15776 -27.71661, 153.152861784 -27.716484244, 153.150497716 -27.715947333, 153.14965 -27.71566, 153.14917 -27.71566, 153.146976212 -27.715084174, 153.146641252 -27.715354382, 153.146120547 -27.715987192, 153.145334684 -27.71699626, 153.144993834 -27.718361751, 153.15887 -27.72047))\nAYAA-GBGC1\tKrystal Park Estate\tUnder construction\tPOLYGON ((120.13371719996 -33.9119984699961, 120.132463651605 -33.9141361095848, 120.130071869065 -33.9131634751851, 120.12876107996 -33.9153998399957, 120.128741079062 -33.9166006086922, 120.130851485086 -33.9174600455855, 120.13071767996 -33.9195927599959, 120.129897256033 -33.9204879100533, 120.129760895532 -33.9204884668053, 120.129724398261 -33.9205906139313, 120.134310859193 -33.9216094215393, 120.134495162551 -33.9212907854824, 120.135564298001 -33.9194658014227, 120.134201966299 -33.9189118011653, 120.135530029999 -33.9166445393225, 120.13661961488 -33.9170874375212, 120.13371719996 -33.9119984699961))\n17347518\tRiver Bend\tCheck with carrier\tPOLYGON ((147.737944096 -37.800278003, 147.73650192 -37.808235001, 147.739766048 -37.808629014000005, 147.740486048 -37.806903001, 147.74462496 -37.8031249865, 147.742876096 -37.8008299875, 147.737944096 -37.800278003))\n238\tExford Waters\tUnder construction\tPOLYGON ((144.57431589126315 -37.728708325797342, 144.57262073516173 -37.726162596313721, 144.57255636214896 -37.725687383784347, 144.56260000228554 -37.725789215297226, 144.56294332503819 -37.72874226826621, 144.56362997054353 -37.729964186775184, 144.5642307853652 -37.730405430170876, 144.57431589126315 -37.728708325797342))\n224\tTrue North\tUnder construction\tPOLYGON ((144.91319690701724 -37.617046893210357, 144.9128106689227 -37.616638969002764, 144.91070781705585 -37.616706956526585, 144.90942035672882 -37.616265036513404, 144.90839038846184 -37.614531324945659, 144.90826164242733 -37.613375494776854, 144.90675960538215 -37.613273508899461, 144.90641628262949 -37.614157381856565, 144.90693126675848 -37.618168673241769, 144.9103644943032 -37.622655624119673, 144.91469894406242 -37.6223836954119, 144.91319690701724 -37.617046893210357))\n348\tDonnybrae\tUnder construction\tPOLYGON ((144.97504161146659 -37.538066721261295, 144.97566897774456 -37.536300875149941, 144.97684271809214 -37.533304143694409, 144.98108748142749 -37.533778843347925, 144.97937216663843 -37.542786027479153, 144.97920631104137 -37.5435525731924, 144.97598426182157 -37.543217674953674, 144.9762125215446 -37.539980073045562, 144.97655319517989 -37.540086798778312, 144.97662202008735 -37.538577894397804, 144.97504161146659 -37.538066721261295))\n45\tGreenvale Gardens\tReady for service\tPOLYGON ((144.88392554244993 -37.621736953627973, 144.87944088897632 -37.621176092646991, 144.87978421172 -37.619684691724558, 144.87579308470447 -37.619157807893927, 144.87520299873174 -37.62210660968659, 144.87408719978106 -37.627183883348543, 144.87812124213841 -37.627625738459756, 144.87918339690731 -37.622777934383578, 144.8835822196973 -37.623317539082642, 144.88392554244993 -37.621736953627973))\n55\tCraigieburn\tReady for service\tPOLYGON ((144.91833857808493 -37.591837135551522, 144.918943008 -37.587920927, 144.917978165 -37.587815539, 144.916858327 -37.587245462999995, 144.914594355 -37.586188033999996, 144.911599173 -37.58546149099999, 144.910693328 -37.591452076, 144.908180785 -37.591277929000015, 144.907863619 -37.593322927, 144.90992717060848 -37.593741397512304, 144.91027049337015 -37.591497083645173, 144.91074256214833 -37.591667109792922, 144.91087130818283 -37.590476918604324, 144.91473368916388 -37.59081697517194, 144.91473368916388 -37.591599099380154, 144.91833857808493 -37.591837135551522))\n46\tCurlewis Park\tReady for service\tPOLYGON ((144.552845283 -38.17030866, 144.54364 -38.16922, 144.542886401 -38.173393312, 144.552020618 -38.174486929, 144.552845283 -38.17030866))\n300\tRidgeview\tReady for service\tPOLYGON ((152.92398963929068 -27.180970349691385, 152.92123232842931 -27.179681898101673, 152.9206637001185 -27.181056245934968, 152.91959081650967 -27.183155911324686, 152.91806732178458 -27.18433934167664, 152.91780982972455 -27.185284168187671, 152.92061005593675 -27.185961766112214, 152.92141471863661 -27.185513215834533, 152.92505179405953 -27.186038114915789, 152.92497669220683 -27.186677534096912, 152.92581354142661 -27.185589564945111, 152.92804513931895 -27.184224816707307, 152.92880688668598 -27.184005310187715, 152.92849575043519 -27.182373313389373, 152.92758379937175 -27.182268330321417, 152.92419348717786 -27.181829309151539, 152.92350684167249 -27.182201522863981, 152.92332445145624 -27.1818197651936, 152.92332445145624 -27.1818197651936, 152.92333518029616 -27.181676605730544, 152.92334590912714 -27.181676605730544, 152.92345319749074 -27.181581165986195, 152.92398963929068 -27.180970349691385))\n17362862\tGillkrest\tCheck with carrier\tPOLYGON ((149.187270976 -33.508577629, 149.181759072 -33.510091632, 149.17950208 -33.5098926275, 149.17720608 -33.5094796335, 149.176788192 -33.5115136715, 149.17647232 -33.513051077, 149.176431424 -33.513250063, 149.176375136 -33.5135241035, 149.175991232 -33.5153926775, 149.177073184 -33.5148656495, 149.179218144 -33.5147856555, 149.181049664 -33.515063248000004, 149.181954112 -33.5151296445, 149.184076096 -33.514814645, 149.185950368 -33.514229157, 149.185994112 -33.514216244, 149.186011584 -33.5141311995, 149.18599408 -33.5141203955, 149.185976544 -33.514109647, 149.185958944 -33.514098954, 149.18594128 -33.514088335000004, 149.18592352 -33.514077753, 149.18590576 -33.514067245, 149.185887904 -33.5140567925, 149.185870048 -33.514046377, 149.185852096 -33.514036054, 149.185834112 -33.514025768, 149.185816064 -33.514015556000004, 149.185797984 -33.5140053995, 149.18577984 -33.513995317, 149.185761632 -33.513985271500005, 149.18574336 -33.5139753, 149.185725088 -33.513965384, 149.18570672 -33.5139555235, 149.18568832 -33.513945737, 149.185669856 -33.5139359875, 149.18578688 -33.5137804765, 149.185927744 -33.5137556495, 149.18625808 -33.513373143500004, 149.187270976 -33.508577629))\n53\tAspire\tReady for service\tMULTIPOLYGON (((144.72971384892659 -37.70656731152792, 144.72973530659749 -37.706541847057089, 144.72970947250676 -37.706545078809441, 144.72971384892659 -37.70656731152792)), ((144.72471421132394 -37.7071699681171, 144.72970947250676 -37.706545078809441, 144.72721403012525 -37.693867943139217, 144.7266132153126 -37.694003776770359, 144.72614114652541 -37.693901901570506, 144.72545450102007 -37.694071693492255, 144.7238666332822 -37.702221248500358, 144.72471421132394 -37.7071699681171)))\n168\tSunbury Fields\tReady for service\tPOLYGON ((144.72058211325393 -37.55414704520112, 144.71967016218144 -37.556273410303554, 144.71987401006865 -37.556307431652264, 144.71984182356678 -37.55643501157072, 144.7235540008424 -37.55694532906027, 144.72752367017807 -37.558255127953579, 144.72799573896521 -37.5584337351097, 144.73091398237193 -37.559326764468381, 144.73279152868963 -37.559930616350506, 144.73368202208221 -37.560228288012183, 144.73403607366583 -37.558978059040356, 144.73411117551854 -37.557489663863919, 144.73407898901667 -37.557081413134142, 144.73418627737126 -37.556681665460843, 144.73391805647131 -37.555524936707755, 144.72502385137673 -37.553534640798489, 144.72413335798419 -37.5547849611032, 144.72401534078963 -37.554793466611194, 144.72058211325393 -37.55414704520112))\n3\tGateway Business Park\tUnder construction\tPOLYGON ((150.69754581272881 -23.16892639545118, 150.6980953637491 -23.165521877688651, 150.70507099508211 -23.162171147951561, 150.70552460368521 -23.16297585167711, 150.70659475992059 -23.162461081517971, 150.708084694562 -23.160701345122241, 150.7076599802711 -23.160395425517, 150.70911225489419 -23.158992861805089, 150.711175051273 -23.16045711138354, 150.71055493788839 -23.161203727118369, 150.71008034017751 -23.161212022569309, 150.7089448132088 -23.161595041773811, 150.70813439454031 -23.16216675217817, 150.7076516240335 -23.163052511289742, 150.70895155965241 -23.165380881568549, 150.70684985294841 -23.16663974366368, 150.70469384304249 -23.16751276838416, 150.69754581272881 -23.16892639545118))\n17197764\tHeritage Hills \tCheck with carrier\tPOLYGON ((115.834854944 -33.2903079875, 115.844623904 -33.290303048, 115.844640128 -33.2853589785, 115.840487168 -33.285348988500004, 115.834913984 -33.2845980365, 115.834884832 -33.287446981, 115.834854944 -33.2903079875))\n25\tCasiana Grove\tReady for service\tPOLYGON ((145.241297532 -38.117325487, 145.250431205 -38.118535408, 145.251544198 -38.113079411, 145.242401488 -38.112025462, 145.241297532 -38.117325487))\n17345766\tAvon Ridge\tCheck with carrier\tPOLYGON ((116.094329984 -31.750261002000002, 116.0935 -31.750194994, 116.090935008 -31.748897996, 116.089951008 -31.7501990085, 116.088544992 -31.7503880045, 116.088521984 -31.749825993, 116.08732 -31.749268995, 116.086468992 -31.749854002, 116.087100992 -31.751820996, 116.087001984 -31.7534319945, 116.087441984 -31.753501998500003, 116.087527008 -31.753958005, 116.08732 -31.7542710065, 116.087456 -31.755881006000003, 116.087688992 -31.7561200075, 116.087775008 -31.7564319915, 116.08792 -31.756768007, 116.088416992 -31.757029005, 116.088028992 -31.757897006500002, 116.090111008 -31.7584619965, 116.09026 -31.7581970025, 116.090320992 -31.757932008500003, 116.090175008 -31.757693007, 116.090179008 -31.757212007, 116.090091008 -31.756783991000002, 116.091561984 -31.756844005, 116.091857984 -31.756505991500003, 116.092621984 -31.756478001, 116.09254 -31.755636991, 116.092083008 -31.7546470005, 116.094401984 -31.7546430045, 116.094329984 -31.750261002000002))\n192\tAlbright\tReady for service\tPOLYGON ((144.72443376542194 -37.823276292240273, 144.72853218080107 -37.8234966359699, 144.7287682151902 -37.8233779894281, 144.73065649033884 -37.823615282321676, 144.72981964111912 -37.829394823609704, 144.72063575745366 -37.829327031027923, 144.72089324952267 -37.82739491625771, 144.72280298234227 -37.8254288528077, 144.72327505112943 -37.82474241314543, 144.72357545854027 -37.824793260746723, 144.72359691621119 -37.824437326801913, 144.72440157892007 -37.8233356156164, 144.72443376542194 -37.823276292240273))\n49\tPasadena\tReady for service\tPOLYGON ((145.326901918 -38.1199733, 145.326697733 -38.119402879, 145.325712465 -38.118740298, 145.318544775 -38.117738927, 145.318287669 -38.118802605, 145.31910384 -38.118916548, 145.318745082 -38.120372803, 145.31908964 -38.120474443, 145.317672598 -38.121643994, 145.321857916 -38.124258191, 145.323724992 -38.125777732, 145.325576321 -38.125958841, 145.326901918 -38.1199733))\n187\tQuay 2\tReady for service\tPOLYGON ((144.32025705337773 -38.30801646041315, 144.32053600310866 -38.307864921736353, 144.3247631645223 -38.308319536816889, 144.32600770950745 -38.308050135631191, 144.3259218788148 -38.3084037244823, 144.32704840660543 -38.308530005796811, 144.32697330475273 -38.310188479987346, 144.32764922142709 -38.310853542740169, 144.32654415130739 -38.310904053586114, 144.32622228622563 -38.312057374995405, 144.32609354019112 -38.313581078077839, 144.32536397934396 -38.314153510740489, 144.31999956130872 -38.315163675004264, 144.31879793167437 -38.314793283075119, 144.31847606659264 -38.313648423331308, 144.31860481261813 -38.312890785620972, 144.32025705337773 -38.30801646041315))\n161\tAbiwood 660\tReady for service\tGEOMETRYCOLLECTION (LINESTRING (145.33178781032115 -38.096575922527705, 145.33177708148119 -38.096575922527705), POLYGON ((145.33177680983457 -38.096577213425213, 145.33177708148119 -38.096575922527705, 145.33176635264121 -38.096575922527705, 145.33177680983457 -38.096577213425213)), POLYGON ((145.33696983813107 -38.104520628828041, 145.33833240031083 -38.097386474107822, 145.33177680983457 -38.096577213425213, 145.33039306163053 -38.10315295135959, 145.33272121905551 -38.103566634282551, 145.33263538836286 -38.104056296756056, 145.33696983813107 -38.104520628828041)))\n17383368\tHumewood Pl Luddenham\tCheck with carrier\tPOLYGON ((150.755635008 -33.848964993500005, 150.755420992 -33.850007006, 150.755406016 -33.8501420005, 150.755443008 -33.850379004000004, 150.754168992 -33.850450007, 150.753531008 -33.853889009, 150.759063008 -33.8545879945, 150.759607008 -33.853785002, 150.758788992 -33.852559007, 150.758892992 -33.852533995, 150.762816992 -33.8504469915, 150.765383008 -33.849351995, 150.766006016 -33.8488489985, 150.766835008 -33.847495002, 150.767086016 -33.8464400025, 150.766323008 -33.8463310005, 150.76482 -33.846830001, 150.764103008 -33.847692008500005, 150.763935008 -33.847752004, 150.763847008 -33.847784009, 150.76348 -33.847866001, 150.763350016 -33.847888996500004, 150.763176992 -33.847901003000004, 150.761526016 -33.847827003, 150.760934016 -33.847792001, 150.760848 -33.847935006, 150.760835008 -33.847933008, 150.760794016 -33.8479269955, 150.760358016 -33.8478139975, 150.759772992 -33.848313997, 150.759428992 -33.848608998, 150.759179008 -33.848826003, 150.758932 -33.849042009, 150.758775008 -33.8491800005, 150.757736 -33.849602004, 150.758418016 -33.851347997, 150.758443008 -33.851380002, 150.758500992 -33.8514399975, 150.758514016 -33.851529001, 150.758475008 -33.8515850005, 150.758415008 -33.8516150075, 150.758336992 -33.8516160065, 150.758292 -33.851600004, 150.758226016 -33.8515119995, 150.758232 -33.8514059945, 150.757476 -33.8494330065, 150.757399008 -33.849230006, 150.757376992 -33.849120005, 150.757356 -33.848980996, 150.757374016 -33.8488410065, 150.756536 -33.848873992, 150.756532 -33.848984992, 150.755635008 -33.848964993500005))\n10\tParkBridge\tReady for service\tPOLYGON ((150.83601 -33.91103, 150.83593 -33.91011, 150.83868 -33.90868, 150.83988 -33.90918, 150.83979 -33.90797, 150.84048 -33.9074, 150.84202 -33.9069, 150.8428 -33.90854, 150.844 -33.9079, 150.84408 -33.90711, 150.84528 -33.90619, 150.84631 -33.90597, 150.84726 -33.90989, 150.84812 -33.91203, 150.84872 -33.9131, 150.83601 -33.91103))\n250\tAquarevo\tUnder construction\tPOLYGON ((145.24955213212104 -38.071266473632569, 145.25797426842843 -38.072423596032927, 145.25912225388996 -38.073783402610296, 145.25931537293724 -38.0733864430547, 145.25287807130215 -38.064382483935255, 145.25008857392996 -38.06412062613996, 145.24920880936835 -38.067093924072111, 145.24948775910826 -38.067212177741794, 145.24920880936835 -38.067811889835525, 145.24921953820831 -38.067820336449863, 145.24955213212104 -38.071266473632569))\n17376685\tHarold Circuit\tCheck with carrier\tPOLYGON ((152.890432 -31.080961009000003, 152.888388 -31.0908220085, 152.892935008 -31.0914609985, 152.894990016 -31.081654000500002, 152.890432 -31.080961009000003))\n70\tCentral Hills\tReady for service\tPOLYGON ((150.75842 -34.02411, 150.76121 -34.0202, 150.76293 -34.02105, 150.76417 -34.02158, 150.76696 -34.02297, 150.76911 -34.02393, 150.7693 -34.024, 150.76885 -34.02468, 150.76774 -34.02619, 150.76593 -34.0285, 150.75842 -34.02411))\n60\tStoneleigh\tReady for service\tPOLYGON ((153.116339917 -27.709207521, 153.113712765 -27.708752521, 153.114035999 -27.707402558, 153.10877074 -27.706614651, 153.107670551 -27.713015857, 153.109526755 -27.71318604, 153.109670912 -27.712225855, 153.110476057 -27.712393315, 153.110313346 -27.71333106, 153.114435073 -27.713881994, 153.114518274 -27.713175298, 153.115643545 -27.713346448, 153.116339917 -27.709207521))\n326\tMambourin\tUnder construction\tPOLYGON ((144.59766150734774 -37.890161567950948, 144.59766150734774 -37.890161567950948, 144.59763625531892 -37.890449593658417, 144.59777059389015 -37.890456990743935, 144.59775802757446 -37.8906003246329, 144.59772918608891 -37.890599188036759, 144.59779417063717 -37.891070367506778, 144.59779482298632 -37.891070311000277, 144.59789798013327 -37.89181825907356, 144.59792557727403 -37.891815868626658, 144.59795707148177 -37.892044215579091, 144.597459603501 -37.892087304866351, 144.597459603501 -37.892087304866337, 144.59730587299896 -37.892098010271219, 144.59730587716408 -37.892098054071205, 144.59730587716408 -37.892098054071205, 144.59719591879573 -37.8921026129111, 144.59719586316331 -37.892102614559889, 144.59719584909951 -37.892102341595212, 144.59717686098631 -37.892102956000222, 144.59711229598628 -37.892104152000272, 144.59708851208521 -37.892104263591541, 144.59708850471142 -37.892108660709042, 144.59708850471142 -37.892108660709042, 144.59708852105612 -37.892109073137654, 144.59708857140336 -37.892109483836045, 144.59708865553759 -37.892109891045592, 144.59708877309851 -37.89211029302249, 144.5970889235827 -37.892110688045491, 144.59708910634578 -37.892111074423, 144.59708932060514 -37.892111450500494, 144.59708956544327 -37.892111814667565, 144.59708983981173 -37.892112165364779, 144.59709014253565 -37.892112501090409, 144.59709047231871 -37.892112820406822, 144.59709082774876 -37.892113121946629, 144.59711064699795 -37.89212887012107, 144.59711064699795 -37.89212887012107, 144.59711130903159 -37.892129431889821, 144.5971119231348 -37.892130026866973, 144.59711248666181 -37.892130652489122, 144.59711299718467 -37.892131306060875, 144.59711345250386 -37.892131984766351, 144.59711385065771 -37.892132685681446, 144.59711418993078 -37.892133405786275, 144.59711446886132 -37.8921341419784, 144.59711468624764 -37.892134891085981, 144.59711484115309 -37.89213564988156, 144.5971149329103 -37.892136415095955, 144.59711559499169 -37.892142544843395, 144.59699242833361 -37.892153212485091, 144.59699242833361 -37.892153212485091, 144.59699149628389 -37.892145132578456, 144.59699092559737 -37.89213703159519, 144.59699091516811 -37.892136657892422, 144.59699091979422 -37.8921362841162, 144.59699091979422 -37.8921362841162, 144.59699098144489 -37.892135475638746, 144.5969911134664 -37.892134672472196, 144.5969913152272 -37.892133878458672, 144.59699158576208 -37.892133097396496, 144.59699192377693 -37.892132333022026, 144.59699232765473 -37.892131588991838, 144.59699279546351 -37.892130868865131, 144.59699332496533 -37.8921301760868, 144.59699391362727 -37.892129513970893, 144.5969945586333 -37.89212888568477, 144.59699525689791 -37.892128294233977, 144.59701455485242 -37.892113041595309, 144.59701455485242 -37.892113041595309, 144.5970149112928 -37.892112740805437, 144.59701524214594 -37.892112422185015, 144.59701554599513 -37.892112087098411, 144.59701582153917 -37.892111736980524, 144.59701606759816 -37.892111373330629, 144.59701628311845 -37.8921109977059, 144.59701646717713 -37.892110611714855, 144.59701661898603 -37.892110217010341, 144.59701673789513 -37.892109815282559, 144.59701682339519 -37.892109408251734, 144.59701687512009 -37.892108997660891, 144.59701689284839 -37.8921085852682, 144.59701690025102 -37.892104173487411, 144.59698313498626 -37.89210386500028, 144.59691857898628 -37.892102381000235, 144.59688560318531 -37.892101181957564, 144.59687668988306 -37.892101153769836, 144.59553697494923 -37.892042500793842, 144.59553697496736 -37.892042500533677, 144.59502709498756 -37.892020151586088, 144.59502709496869 -37.892020151856393, 144.59495837143868 -37.892017139413376, 144.59479167451613 -37.892079426229543, 144.59479159624956 -37.892079546837728, 144.59476037298623 -37.89217358100025, 144.59473415598617 -37.892421233000256, 144.59473206698624 -37.89244948800026, 144.59473060098628 -37.892477768000248, 144.59472975798622 -37.892506063000241, 144.59472953798627 -37.89253436600027, 144.59474587098623 -37.893047626000254, 144.59474711498626 -37.893075912000228, 144.59474897998621 -37.893104177000254, 144.59475146798624 -37.893132412000249, 144.59475722698619 -37.893181071000285, 144.5947624179862 -37.893218805000259, 144.59476231668046 -37.893218980057839, 144.59515678824181 -37.896086497076034, 144.59515668079936 -37.896086506357776, 144.59522486970238 -37.896582170977382, 144.59522486970238 -37.896582170977382, 144.59523013319136 -37.896614866768033, 144.59528013647085 -37.896885878247105, 144.59528013647085 -37.896885878247105, 144.59529638055236 -37.8969961007874, 144.59530455615524 -37.8971068831491, 144.59530463589553 -37.897217854763404, 144.59529661947002 -37.897328644426857, 144.59528053365779 -37.897438881542854, 144.59522981582484 -37.897715964613809, 144.59525979825295 -37.897747913738669, 144.59788869553765 -37.898050042714772, 144.59788863861655 -37.898050389977229, 144.59790548739406 -37.8980521241434, 144.59785758904303 -37.898327094519061, 144.597325617492 -37.898302573202095, 144.59716622600359 -37.898232203577187, 144.59701437592818 -37.898214599479729, 144.59701414889074 -37.898214653644409, 144.59665870642061 -37.898173448125824, 144.59665892451648 -37.898173319317586, 144.59665879876354 -37.898172996719282, 144.59647758201888 -37.898149720479338, 144.59589809839207 -37.898056774363454, 144.59506296446438 -37.897959957385595, 144.59506158330015 -37.897960987790576, 144.59505994287454 -37.89795960708188, 144.59393375345144 -37.8978301341895, 144.5939339509417 -37.897829064879069, 144.59293446973913 -37.8977151333046, 144.59293505369391 -37.897711919350279, 144.59293491299212 -37.8977119031102, 144.59293738001537 -37.897698581643837, 144.5929374750975 -37.897698592491835, 144.59294306410098 -37.897667831857724, 144.59294307439507 -37.897667833032173, 144.59294369285325 -37.897664493468945, 144.59023166059816 -37.897349884322423, 144.59026055383143 -37.897193399839246, 144.59026216385135 -37.897183581170346, 144.59026236248951 -37.897183604200848, 144.59026478570331 -37.89717048014208, 144.5902646550615 -37.897170464995213, 144.5903750429861 -37.896573324000236, 144.59036530857566 -37.896572238119127, 144.59039163998611 -37.896429563000289, 144.59086419108925 -37.894735346442694, 144.59086427773477 -37.89473493131365, 144.59058049552837 -37.894707383831779, 144.59058049504898 -37.89470738693359, 144.59056357051423 -37.894705744242927, 144.59056357099365 -37.894705741141109, 144.59053062920802 -37.894702543813359, 144.59053062873164 -37.894702546895495, 144.59045155016861 -37.894694870977219, 144.59045154993782 -37.894694871249158, 144.59045154998262 -37.894694870959171, 144.59044477116285 -37.894694212957013, 144.59044477155342 -37.894694210430046, 144.59041802003142 -37.894691613901934, 144.59041801963772 -37.894691616449236, 144.59040053135433 -37.894689916430956, 144.59040053096061 -37.894689918978266, 144.58957123065036 -37.894609420497282, 144.58960992767982 -37.894359069508965, 144.58960993041777 -37.894359069774737, 144.58960999678249 -37.894358622446518, 144.5896079574014 -37.894358424487194, 144.58961003048111 -37.894345012613421, 144.58961207275132 -37.89434521085316, 144.58962541115432 -37.894258923553139, 144.5896233688141 -37.894258725292431, 144.58962419809748 -37.894253360547914, 144.58962624044221 -37.894253558809041, 144.58962990312867 -37.89422986452248, 144.58962786075259 -37.894229666258326, 144.58962993397049 -37.894216254397911, 144.58963197634623 -37.894216452662043, 144.58963204545347 -37.894216005600036, 144.58968472485472 -37.894221119453029, 144.58971512904139 -37.894024415901939, 144.59093369689774 -37.894142693021109, 144.58977001956123 -37.892455099586414, 144.589651545824 -37.8924654660054, 144.5896224172796 -37.892256397217828, 144.58961497947482 -37.892257047995948, 144.58961232634795 -37.892238005238177, 144.58947360585262 -37.892250479525615, 144.58945413698606 -37.891997638000277, 144.58945448412604 -37.891997487675134, 144.58926612871659 -37.89172431829023, 144.58919528709509 -37.891730516706026, 144.58919481696174 -37.891730299856533, 144.58919471298606 -37.8917303090003, 144.58935316999003 -37.890893235248477, 144.58935317767367 -37.890893236162356, 144.58935317017765 -37.890893234257796, 144.58957609498606 -37.889716066000261, 144.58957765498604 -37.889716152000275, 144.59435066332702 -37.889979676063838, 144.59458131884514 -37.889959702963729, 144.59458636432382 -37.8899926610171, 144.59766150734774 -37.890161567950948))\n134\tBrookwater\tReady for service\tGEOMETRYCOLLECTION (POLYGON ((152.89150808811092 -27.664953051369498, 152.89260242939071 -27.6644114193901, 152.89276336193603 -27.664696489187531, 152.89283846378876 -27.664867530709113, 152.89285992145969 -27.665067078812612, 152.89275263309611 -27.665390155922317, 152.89270971775426 -27.665551694118655, 152.89252732753798 -27.665646716475941, 152.89248441219613 -27.665855765370935, 152.89248441219613 -27.665922280843937, 152.89233420849072 -27.665884272007364, 152.89210890293259 -27.665950787463064, 152.89150808811092 -27.664953051369498)), POLYGON ((152.8957406139221 -27.664007569236734, 152.89503787516128 -27.665292757775134, 152.89469723461636 -27.665922280843123, 152.89433781860825 -27.666537547054368, 152.89428685664316 -27.666701459090213, 152.89440487383771 -27.666672952666893, 152.8944504713873 -27.666694332484489, 152.89448802231368 -27.666713336764346, 152.8945228910323 -27.66677747618326, 152.89450143336137 -27.66685349322184, 152.89445583580277 -27.666881999598075, 152.89442096709314 -27.666898628314172, 152.89428685664316 -27.668231292901758, 152.89430294989862 -27.668392826898533, 152.89437805175132 -27.668473593807409, 152.89431636093732 -27.668521103725737, 152.89393280505055 -27.668126770775867, 152.89361362217653 -27.66835719441913, 152.89393816946603 -27.668727771631026, 152.89431904314503 -27.669095972103683, 152.89469723461636 -27.669428539205619, 152.89514784573259 -27.669784859978062, 152.89531414269348 -27.669639956337942, 152.89539997337712 -27.669544937452731, 152.89550994394844 -27.669445167534231, 152.89530877826897 -27.669243251945367, 152.89516393898805 -27.669057964370154, 152.89501641749035 -27.668796660846727, 152.89489571807908 -27.668452214337105, 152.89487157820045 -27.668209913384036, 152.89499495981946 -27.666765598515308, 152.895102248183 -27.666632568554515, 152.89541606663258 -27.666625441944305, 152.89563064335076 -27.666927134678637, 152.89755915163352 -27.664230874799447, 152.89662306069138 -27.664233250388548, 152.8957406139221 -27.664007569236734)), POLYGON ((152.90161062834122 -27.658654038139588, 152.9014523780036 -27.658858348997491, 152.901294127675 -27.658996139825373, 152.90100176688736 -27.659373875859607, 152.90057529565877 -27.660195862971968, 152.900510922637 -27.660314646724885, 152.90026684162467 -27.660730388846023, 152.89947290775575 -27.661911087848978, 152.89878894445815 -27.662609523508443, 152.89883320091283 -27.663168981506967, 152.89879967328915 -27.663253315691218, 152.89885599967869 -27.663493252029141, 152.89866019842367 -27.664125161052652, 152.89857973214649 -27.66415841932124, 152.89852072354918 -27.664198804347819, 152.89846171495194 -27.664255818477709, 152.89834637996512 -27.66442923627374, 152.89833565113415 -27.664507630528778, 152.89833565113415 -27.664571771242151, 152.89834906217288 -27.6646454142364, 152.89817203638103 -27.664678672345886, 152.89750416633888 -27.666317809519473, 152.8973217761226 -27.66690694267206, 152.896956995699 -27.667365419096637, 152.89679606315363 -27.667479444022813, 152.89666463491139 -27.667617223983083, 152.8958385145406 -27.667624350528641, 152.89595921394286 -27.667997305732168, 152.89602626917238 -27.668211101134563, 152.89600481149245 -27.668436773606285, 152.89683897849548 -27.669082906947487, 152.89701600429629 -27.669063903079707, 152.89742906448618 -27.669489113819544, 152.89773081300984 -27.669492677030934, 152.898594484316 -27.668765779479397, 152.89964054582944 -27.667886844610084, 152.8997049188512 -27.667701554734982, 152.8997800207039 -27.667687301655089, 152.90025745390656 -27.667349978212236, 152.90072415827825 -27.667022155840044, 152.90114794729911 -27.666893877253369, 152.9014778590041 -27.666705022391724, 152.90153686760138 -27.666581494508179, 152.90201430081302 -27.666246543196628, 152.90215645788624 -27.666227538836409, 152.9023308014703 -27.666158648001971, 152.90258561133152 -27.666008988452656, 152.9027036285261 -27.665942473032402, 152.90269826411063 -27.665909215306698, 152.90340234395731 -27.665405597082817, 152.90350426789641 -27.6652488098031, 152.90349890348094 -27.665061139885079, 152.9034908568577 -27.664666794450625, 152.90342380162821 -27.663870972524268, 152.90332992431235 -27.6627591877119, 152.90331919548137 -27.662645157861039, 152.90319044944687 -27.662504996006053, 152.90322263594874 -27.662438478453367, 152.90327091571504 -27.662208042330487, 152.90326018687512 -27.662117768253058, 152.9029892837674 -27.661245906879962, 152.90286321994066 -27.660830166719418, 152.90282566901428 -27.660749394162089, 152.90278275367245 -27.660704256530366, 152.90267546531786 -27.660651991881107, 152.90252526161248 -27.66064248921543, 152.90275593158609 -27.660509451802003, 152.90278007146472 -27.660488070773773, 152.90278543588917 -27.660445308704805, 152.90213902350897 -27.659647080354222, 152.90181715842721 -27.659226582718279, 152.90161062834122 -27.658654038139588)))\n167\tLife\tReady for service\tPOLYGON ((144.74404923692424 -37.907726676551668, 144.74368445649165 -37.90974133442252, 144.74426381364239 -37.909809053056264, 144.74357716813708 -37.913956700561052, 144.75074403061933 -37.914667702368192, 144.75177399888634 -37.908945635803455, 144.74404923692424 -37.907726676551668))\n308\tEllarook\tUnder construction\tPOLYGON ((144.72281371116424 -37.811745994778533, 144.71215997695549 -37.810915332763415, 144.71232090950085 -37.811330664938758, 144.71234236717177 -37.811669709881109, 144.71173082351916 -37.812195226464361, 144.71119438171024 -37.812432555308511, 144.71081887245569 -37.812754643234086, 144.70947776794685 -37.812983494327007, 144.70882330894341 -37.813195392854162, 144.70810447692719 -37.8141701182483, 144.722363100048 -37.815399101489739, 144.72281371116424 -37.811745994778533))\nAYAA-H5USB\tGap Ridge Industrial Area\tReady for service\tPOLYGON ((116.765896746965 -20.7372019200672, 116.764746285363 -20.737648445312, 116.764617983446 -20.7377504677582, 116.764266754941 -20.7375265832299, 116.762341873154 -20.7377360226073, 116.762979640391 -20.7428597824349, 116.764603582634 -20.7429687666225, 116.764614356408 -20.7429694896091, 116.76579012 -20.7469337399213, 116.764696242835 -20.7549575619153, 116.767530526295 -20.7547362907677, 116.767594944986 -20.7554407139414, 116.76864672 -20.7553645799222, 116.76863538 -20.7552741299222, 116.768744493333 -20.7552641658172, 116.768874993707 -20.7567473028615, 116.768884242911 -20.7568161775159, 116.768615076834 -20.7568432787459, 116.764340496727 -20.7571769968719, 116.763878626438 -20.7601640986088, 116.769648441523 -20.7594521661448, 116.769368566655 -20.7572819306867, 116.769536715409 -20.7570351504617, 116.769499800335 -20.7565969263569, 116.769390439776 -20.7565192329422, 116.769335384639 -20.7563940282585, 116.76909534295 -20.7542705844204, 116.769093433681 -20.7542284809513, 116.76922151092 -20.7540793924051, 116.76923814698 -20.754069691688, 116.769205993897 -20.7536687006179, 116.769135482364 -20.7536559172386, 116.769057882757 -20.7535954848788, 116.76900408308 -20.7534620976341, 116.768773070049 -20.7514158844498, 116.768908853482 -20.7512559887109, 116.768909237025 -20.7510035292522, 116.773279107608 -20.7505633886536, 116.773184330148 -20.7502464991855, 116.773085319699 -20.7503970203712, 116.768853003573 -20.7508048439114, 116.768599552007 -20.750686646994, 116.768034416829 -20.7493626673391, 116.768157419502 -20.7491211274923, 116.770298475985 -20.7483023486822, 116.771082619457 -20.7475242235998, 116.771379373273 -20.7474964945643, 116.770715505392 -20.7468053145629, 116.770522525057 -20.7467697037331, 116.770767667237 -20.7469841036197, 116.770825000468 -20.7470935313199, 116.770824828903 -20.74720742833, 116.770061472543 -20.747976716216, 116.768691053401 -20.7485242688923, 116.768299756205 -20.747649813162, 116.768937207906 -20.7473974169851, 116.768553365336 -20.7465396180129, 116.769288199454 -20.746248659924, 116.769132765565 -20.7459013020811, 116.768099935467 -20.7463091682661, 116.767431581796 -20.7447779566098, 116.767180645527 -20.7443675230774, 116.765082855198 -20.739679086499, 116.765391147003 -20.7390134675279, 116.76559353224 -20.7389343080078, 116.765491298886 -20.7386339196254, 116.765415518233 -20.7386458937743, 116.765260132705 -20.7386122113021, 116.764931145098 -20.7384729180511, 116.764824565547 -20.7383881538297, 116.764790043288 -20.7383038330355, 116.764812787761 -20.7381665648727, 116.764862843427 -20.7380634401222, 116.764997942166 -20.7379502620242, 116.76592759951 -20.73761821881, 116.766111083244 -20.7375495003614, 116.765969893039 -20.737145714814, 116.765896746965 -20.7372019200672))\n17291731\tFishermans Rd\tCheck with carrier\tPOLYGON ((115.577883712 -33.4777957195, 115.580933984 -33.479492669, 115.58180736 -33.4780608615, 115.582199392 -33.477702757, 115.582550752 -33.477362634500004, 115.582900672 -33.476851627500004, 115.58301264 -33.4763792115, 115.583131072 -33.4761931755, 115.583406464 -33.475760738, 115.583105504 -33.4754314195, 115.58339424 -33.474886021, 115.584069952 -33.4742748365, 115.58482704 -33.4741564735, 115.584995168 -33.4742470125, 115.58551104 -33.4748285045, 115.585511392 -33.475050449, 115.589207168 -33.4769497145, 115.593747104 -33.470484038500004, 115.59371184 -33.470407985, 115.589310112 -33.469245001000004, 115.587227872 -33.467873041000004, 115.577883712 -33.4777957195))\n21\tEvergreen Waters\tReady for service\tGEOMETRYCOLLECTION (LINESTRING (144.27743 -36.71427, 144.27743 -36.7143), POLYGON ((144.2837 -36.71591, 144.28563 -36.71441, 144.28881 -36.71282, 144.28605 -36.70903, 144.2841 -36.7075, 144.28542 -36.70646, 144.2866 -36.70542, 144.28549 -36.70453, 144.28456 -36.70456, 144.28393 -36.70463, 144.28328 -36.70477, 144.28236 -36.70516, 144.28177 -36.70556, 144.2808 -36.70637, 144.28006 -36.70723, 144.27974 -36.70747, 144.27984 -36.70765, 144.27985 -36.70782, 144.27889 -36.71056, 144.27941 -36.7109, 144.27743 -36.7143, 144.27868 -36.71506, 144.28031 -36.71358, 144.2837 -36.71591)))\n255\tRiverside at Tea Gardens\tContracted\tPOLYGON ((152.14687858579424 -32.644572203834592, 152.14880977629377 -32.650715136092963, 152.15149198530241 -32.650136995751325, 152.15235029219306 -32.651365539508859, 152.15338026045109 -32.650516400771984, 152.154431686389 -32.649594985786386, 152.15724264142315 -32.648420619592351, 152.15728555677399 -32.643397771680633, 152.16196332929485 -32.642458214854543, 152.16385160444355 -32.640434520476212, 152.16333662030556 -32.639278103133073, 152.16226373670568 -32.639314241401607, 152.16136251447321 -32.64036224483047, 152.16020380018065 -32.641771609393587, 152.16003213880435 -32.642096844216169, 152.15724264142315 -32.643108678323991, 152.15561185834346 -32.644337318637817, 152.15243612287674 -32.643000268074232, 152.15149198530241 -32.643180951750551, 152.14687858579424 -32.644572203834592))\n17339141\tSwan Bay Estate\tCheck with carrier\tPOLYGON ((147.034243072 -41.282250026999996, 147.039063136 -41.283351998, 147.035802976 -41.274411021999995, 147.032753056 -41.275356038999995, 147.028213088 -41.2778930365, 147.024883072 -41.283054998999994, 147.028722112 -41.2819190065, 147.033968032 -41.282236984499995, 147.034243072 -41.282250026999996))\n17271033\tMarshmead\tCheck with carrier\tPOLYGON ((150.223744992 -31.0154570045, 150.210464992 -31.0134590045, 150.209440992 -31.018447992000002, 150.222415008 -31.020394007, 150.223744992 -31.0154570045))\n342\tWestwood\tUnder construction\tPOLYGON ((144.71112482498938 -37.699409089000177, 144.7167569928869 -37.697324009727531, 144.71675712220994 -37.697323471484061, 144.71720114998965 -37.697157878000134, 144.71772256686413 -37.700016305722208, 144.71772256629015 -37.700016305789063, 144.71915594798963 -37.707786090000162, 144.71280016598948 -37.708524403000162, 144.71112482498938 -37.699409089000177))\n17314584\tFig Tree Fields Estate\tCheck with carrier\tMULTIPOLYGON (((153.560368096 -28.6500259885, 153.55934496 -28.649870995500002, 153.558523072 -28.6497469715, 153.558512992 -28.649744992000002, 153.556734976 -28.6494769825, 153.556193152 -28.6493949905, 153.555977152 -28.649363041, 153.554372992 -28.649126962500002, 153.552412096 -28.6488399535, 153.55186992 -28.6487600335, 153.551337856 -28.648682019000002, 153.550986848 -28.649598028, 153.550171072 -28.6496139565, 153.54966384 -28.6502210155, 153.549299168 -28.650554015500003, 153.548978048 -28.6514970345, 153.55019088 -28.652195964500002, 153.552053152 -28.6532700375, 153.55213488 -28.6538779845, 153.552223072 -28.6544520025, 153.551963168 -28.654890027, 153.553071968 -28.65534102, 153.553763872 -28.655580965000002, 153.553822912 -28.655601037500002, 153.55418112 -28.653146013500002, 153.55575216 -28.653352011000003, 153.555694912 -28.651920037, 153.555666848 -28.651212005, 153.556146016 -28.6511609635, 153.55786608 -28.650976019, 153.558564832 -28.650813034000002, 153.559608832 -28.6505700365, 153.56006496 -28.6506399665, 153.56011104 -28.6505479845, 153.559608128 -28.6504710245, 153.55874592 -28.6506710095, 153.558361088 -28.6504589625, 153.558354976 -28.6504560025, 153.55834992 -28.650453024, 153.558344896 -28.6504489725, 153.55833984 -28.6504450135, 153.558335168 -28.650440962, 153.558330848 -28.650437003, 153.55832688 -28.650431971, 153.558322912 -28.650427013, 153.558318976 -28.650422961500002, 153.558316096 -28.650418022, 153.558312832 -28.650411991000002, 153.558309952 -28.650407033, 153.55830816 -28.650402001, 153.558306016 -28.65039597, 153.55830384 -28.650391012, 153.558303136 -28.650384981000002, 153.558302048 -28.6503789685, 153.55830096 -28.6503730115, 153.55830096 -28.650366999, 153.558299872 -28.650360968, 153.55830096 -28.650355011000002, 153.558302048 -28.6503479995, 153.558303136 -28.6503419685, 153.55830384 -28.650336030000002, 153.558306016 -28.650329999, 153.55830816 -28.650323968000002, 153.55831104 -28.6503190285, 153.55831392 -28.650313978, 153.558316096 -28.6503090385, 153.558320032 -28.650303988, 153.558322912 -28.650299048500003, 153.55832688 -28.650294997, 153.558330848 -28.650290039, 153.558335168 -28.650285987500002, 153.55833984 -28.6502820285, 153.558344896 -28.650277977, 153.55834992 -28.650274018, 153.558354976 -28.650270965500003, 153.558361088 -28.650267987, 153.558366848 -28.650265027, 153.558371872 -28.650261956, 153.558378016 -28.6502599765, 153.558384832 -28.650257997, 153.558390976 -28.650256017500002, 153.558397088 -28.650254038, 153.558403936 -28.650252965, 153.558410048 -28.650251966000003, 153.558416896 -28.6502509855, 153.558423008 -28.6502509855, 153.558429856 -28.6502509855, 153.558435968 -28.6502509855, 153.558443168 -28.650251966000003, 153.558448928 -28.650251966000003, 153.558456128 -28.650254038, 153.558461888 -28.650255037, 153.558469088 -28.6502570165, 153.558474848 -28.650258996, 153.558942112 -28.6504649935, 153.559266112 -28.650390031500002, 153.55959984 -28.650312997500002, 153.560125088 -28.6503939905, 153.56020608 -28.6503540305, 153.560368096 -28.6500259885)), ((153.561143872 -28.6478800255, 153.56109888 -28.6478330355, 153.560592 -28.647650977, 153.560397952 -28.6475509845, 153.559734112 -28.64705598, 153.559410848 -28.646820993000002, 153.559392832 -28.646810004000002, 153.558240832 -28.646633976500002, 153.557349856 -28.646497983, 153.556836128 -28.646418951, 153.556800128 -28.6464140115, 153.556080128 -28.646304029, 153.556040896 -28.646297998, 153.553493152 -28.6459080365, 153.55251216 -28.645755023, 153.551692096 -28.6456310175, 153.551225152 -28.645559996, 153.550366912 -28.645430033500002, 153.54992304 -28.646819994, 153.550469888 -28.6483750115, 153.555941888 -28.649168994500002, 153.556769152 -28.649291039, 153.558556928 -28.649555996, 153.559134016 -28.6496409665, 153.559374112 -28.6496769675, 153.559389952 -28.649679021, 153.560482912 -28.649840045, 153.56065392 -28.649341988, 153.560791072 -28.648942018, 153.56097504 -28.6484319915, 153.56107008 -28.648168015, 153.561143872 -28.6478800255)), ((153.56134512 -28.647101971, 153.55982304 -28.6468810255, 153.560517856 -28.6474020225, 153.56068416 -28.6474889725, 153.56117088 -28.647640987000003, 153.561228832 -28.647617048, 153.56134512 -28.647101971)))\n17204078\tEurama Estate\tCheck with carrier\tPOLYGON ((150.53916096 -33.7120599615, 150.539851072 -33.708132985, 150.536943008 -33.7077880155, 150.536122912 -33.7076900025, 150.53242896 -33.707250997500005, 150.53233104 -33.707820964, 150.53229504 -33.708032012000004, 150.5322 -33.708581018000004, 150.53207184 -33.709328011000004, 150.53204016 -33.709515027500004, 150.531989056 -33.7098099545, 150.53180112 -33.7109040075, 150.531768 -33.7110959635, 150.53162112 -33.711955011, 150.531131872 -33.7147949645, 150.537927968 -33.715623968, 150.540715072 -33.7159639795, 150.541218016 -33.713115035, 150.539023072 -33.7128499855, 150.53916096 -33.7120599615))\n26\tJackson View\tReady for service\tPOLYGON ((145.85796 -38.1263, 145.8594 -38.12509, 145.86052 -38.12525, 145.86067 -38.12446, 145.86359 -38.12478, 145.86341 -38.12435, 145.86421 -38.12016, 145.85618 -38.11913, 145.85088 -38.11846, 145.85073 -38.11925, 145.85193 -38.11945, 145.85144 -38.12207, 145.85567 -38.12268, 145.85502 -38.12597, 145.85796 -38.1263))\n162\tClydevale\tReady for service\tPOLYGON ((145.33187213534754 -38.096327914488072, 145.33043447131513 -38.103690119612622, 145.33860984439346 -38.1046863243351, 145.34030500049488 -38.0973579924028, 145.33187213534754 -38.096327914488072))\n210\tMeridian\tReady for service\tPOLYGON ((145.34457658290762 -38.090788080233828, 145.34381483554057 -38.09429224009066, 145.34363244533327 -38.094461111021729, 145.34322474955886 -38.096394655366126, 145.35779450893045 -38.098345034732468, 145.35144303797907 -38.091674690771718, 145.34457658290762 -38.090788080233828))\n297\tThe Orchard\tUnder construction\tPOLYGON ((144.65684209824462 -37.816153962518605, 144.6557692146358 -37.8226798777851, 144.66501747132298 -37.82383244702261, 144.66594015122641 -37.81844233615422, 144.66285024643437 -37.817984667102223, 144.66310773850338 -37.816255669519876, 144.65855871201697 -37.8156454254104, 144.65840850831157 -37.81630652296797, 144.65684209824462 -37.816153962518605))\n10514\tMaddington\tReady for service\tPOLYGON ((116.00603342056274 -32.029747974646448, 116.00397348403931 -32.027674150743145, 116.00231051445007 -32.023842882032639, 116.00209593772888 -32.023952036395158, 115.99326610565186 -32.031483373294392, 116.00103378295898 -32.033822719919073, 116.00603342056274 -32.029747974646448))\n11\tTea Trees\tReady for service\tPOLYGON ((152.90857676178814 -27.6976693876262, 152.90857139737267 -27.697892624377545, 152.90869477898266 -27.698125360078418, 152.9087484231645 -27.698244102591, 152.90918830544078 -27.6986953229638, 152.90931168705978 -27.698951805291134, 152.909381424497 -27.699118043514549, 152.90993932396785 -27.700846906028346, 152.91043821484143 -27.701621085583529, 152.91047040135231 -27.701744573839257, 152.91050795227864 -27.702352513982873, 152.91050258786319 -27.70263273525218, 152.91032556206238 -27.70295095175349, 152.91041139275504 -27.702998446673821, 152.91146818310841 -27.703064939528165, 152.91161838681387 -27.703074438504281, 152.9117685905193 -27.703079187991232, 152.91192952305568 -27.702946202260165, 152.91271809250912 -27.702143534940351, 152.91333500057721 -27.701910807808513, 152.91398945958068 -27.701687579277184, 152.91416648537253 -27.701621085583529, 152.91462782532869 -27.701502346744419, 152.91482630879142 -27.701450101614487, 152.91507843644496 -27.701383607776918, 152.917138372961 -27.700737665526418, 152.91898909718333 -27.698690573285266, 152.91913930088876 -27.698438840033717, 152.92026046425491 -27.69777388148178, 152.9203489771553 -27.697348780855911, 152.9203597059863 -27.697021048516724, 152.919321691105 -27.695000010682815, 152.91843656212797 -27.695802730542393, 152.91754875093417 -27.695026134794386, 152.91712227971453 -27.695379997151175, 152.91492823273953 -27.693285305293234, 152.91484776646234 -27.693385053435605, 152.91465464741512 -27.693594049249, 152.91435960442877 -27.693940791420093, 152.91430596024694 -27.693993040144765, 152.91423622280973 -27.694135536539825, 152.91416648537253 -27.694126036785683, 152.91394654423883 -27.694401529313183, 152.91371587426522 -27.694648522021861, 152.91344765335629 -27.694976261484776, 152.91344228894081 -27.6950285097138, 152.91339400918349 -27.69509025758888, 152.91329744965088 -27.695109256927744, 152.91259471089009 -27.695869227780243, 152.91208509117655 -27.696443952223952, 152.911709581922 -27.696871431252479, 152.91168812424209 -27.696966426365041, 152.91152719170572 -27.697089919887706, 152.91116241128213 -27.697308408084783, 152.91062060505774 -27.697626640111611, 152.91054013878951 -27.697745383167589, 152.91037920624416 -27.697721634566882, 152.91005197674693 -27.697783380917649, 152.90976229817605 -27.697792880353497, 152.90926877171796 -27.697726384287602, 152.90873232990904 -27.697664637903795, 152.90857676178814 -27.6976693876262))\n44\tGrand Lakes\tReady for service\tPOLYGON ((144.38463099 -38.025754875, 144.384728128 -38.026075102, 144.384971269 -38.026561798, 144.385044324 -38.026989028, 144.385022747 -38.027539235, 144.384805438 -38.028044098, 144.38445963 -38.028505335, 144.383992686 -38.028839278, 144.383725574 -38.02897428, 144.382806857 -38.02914947, 144.381535963 -38.029907323, 144.380163652 -38.030188902, 144.379897925 -38.030284235, 144.379081952 -38.03066619, 144.378297006 -38.029531601, 144.376355994 -38.029305169, 144.375840714 -38.031920969, 144.391717482 -38.033685625, 144.391278291 -38.032234203, 144.389921187 -38.032072596, 144.390475467 -38.028801219, 144.387982465 -38.028511202, 144.38638328 -38.028429009, 144.386830974 -38.025664935, 144.384649222 -38.025415479, 144.38463099 -38.025754875))\n56\tTrillium\tReady for service\tPOLYGON ((144.890532129 -37.563836207, 144.887992759 -37.575853368, 144.892651679 -37.576362039, 144.895112381 -37.564357796, 144.890532129 -37.563836207))\n17325360\tOnslow Aerodome Redevelopment\tCheck with carrier\tPOLYGON ((115.115901984 -21.6636330045, 115.114276992 -21.661580466500002, 115.11351504 -21.660617967, 115.111951424 -21.661694167500002, 115.109663616 -21.6629520565, 115.108296128 -21.66370299, 115.107874912 -21.664059022500002, 115.107547328 -21.664366289, 115.106736 -21.6650839965, 115.105723008 -21.6666789925, 115.105732672 -21.6666830625, 115.105714912 -21.6667070015, 115.106799968 -21.667186984, 115.107320864 -21.667353021500002, 115.106802848 -21.669490974000002, 115.10640288 -21.673033021000002, 115.10699616 -21.6732539665, 115.107140864 -21.6735270265, 115.109007104 -21.6742560375, 115.111024928 -21.669859975, 115.110879104 -21.668497024500002, 115.110880704 -21.6684928805, 115.111752992 -21.666387007, 115.111606848 -21.666312933, 115.111392128 -21.666204005, 115.112521056 -21.6642230435, 115.113520992 -21.664770995, 115.113521024 -21.664770939500002, 115.113521152 -21.6647710135, 115.113857024 -21.664284038, 115.114566944 -21.664547996, 115.114566976 -21.6645479775, 115.114567008 -21.664547996, 115.115901984 -21.6636330045))\n164\tAurora\tReady for service\tPOLYGON ((145.00537906646929 -37.606178773039986, 145.0037482833896 -37.613233139449541, 145.01173053741169 -37.614066020474446, 145.0127175903279 -37.606722747992485, 145.00537906646929 -37.606178773039986))\n17332589\tCalula Estate\tCheck with carrier\tPOLYGON ((140.757626176 -37.804131997, 140.75158608 -37.8021869995, 140.745570112 -37.8002709915, 140.74540416 -37.8005969615, 140.747447872 -37.8064119555, 140.749160032 -37.8069620345, 140.755200832 -37.808903961, 140.757626176 -37.804131997))\n67\tTannum Blue\tReady for service\tPOLYGON ((151.36700841 -23.960568557, 151.366548137 -23.962853004, 151.364719008 -23.962625425, 151.364467102 -23.963556157, 151.36339897 -23.963468748, 151.361140873 -23.961834242, 151.357448073 -23.964694442, 151.357935829 -23.96514342, 151.358439528 -23.965654695, 151.358881651 -23.966030968, 151.359155878 -23.96627498, 151.359465148 -23.966518218, 151.359755937 -23.966776902, 151.359954577 -23.966873635, 151.369212567 -23.968167693, 151.369798815 -23.964135521, 151.369725397 -23.963545419, 151.36953048 -23.962963222, 151.369187575 -23.962373262, 151.36883464 -23.961667327, 151.368344619 -23.960780369, 151.36700841 -23.960568557))\n264\tWarralily Grange\tUnder construction\tGEOMETRYCOLLECTION (POLYGON ((144.31824003217659 -38.225271387329769, 144.31907688138733 -38.225473668709661, 144.3196562385381 -38.225271387329769, 144.32085786817242 -38.225473668709661, 144.32111536024144 -38.225810803093054, 144.32068620679613 -38.2264850671724, 144.32189856527941 -38.2276481580183, 144.32085786816347 -38.232123355861646, 144.31703840253323 -38.231516565511789, 144.31824003217659 -38.225271387329769)), POLYGON ((144.32132993695063 -38.232393038836278, 144.32068620678712 -38.236033661117233, 144.32742391583304 -38.236337038080144, 144.3286255454764 -38.233067241898695, 144.32132993695063 -38.232393038836278)), POLYGON ((144.32429109570816 -38.228853370218076, 144.32360445020282 -38.232325618186543, 144.32514940258983 -38.232561590188205, 144.32617937085686 -38.229055641637004, 144.32429109570816 -38.228853370218076)))\n17347475\t324 Tea Tree Rd Brighton - Stages 3\u00264\tCheck with carrier\tPOLYGON ((147.283779008 -42.6948000075, 147.284028 -42.697932001999995, 147.284307008 -42.697970000999995, 147.284710016 -42.6980260005, 147.285084 -42.698114004999994, 147.285826016 -42.698266999999994, 147.287751008 -42.6986470085, 147.288232992 -42.698716993999994, 147.28848 -42.698735993499994, 147.288931008 -42.6987329965, 147.289246016 -42.698705006, 147.292008992 -42.698414000999996, 147.293515008 -42.698227003, 147.293683008 -42.698178995499994, 147.294132 -42.698002005999996, 147.2945 -42.697821002, 147.294818016 -42.6975889935, 147.295107008 -42.697312992, 147.295230016 -42.6971769985, 147.295348992 -42.696915001499995, 147.295451008 -42.696639999, 147.295479008 -42.696509000499994, 147.295484992 -42.696239991999995, 147.295536 -42.6959900015, 147.295570016 -42.6956530055, 147.295644992 -42.695409008999995, 147.295766016 -42.695222991499996, 147.295895008 -42.695067998499994, 147.294991008 -42.694026004499996, 147.294455008 -42.693423996, 147.294336 -42.693424994999994, 147.294143008 -42.6933210065, 147.293972 -42.6928380085, 147.293696992 -42.6925179955, 147.283779008 -42.6948000075))\nAYCA-NZGFP\tLampada\tReady for service\tPOLYGON ((150.95517748943 -31.1369920275562, 150.955192372405 -31.1360933843825, 150.955285022487 -31.1359747078289, 150.954904571165 -31.135789352306, 150.954704427246 -31.1357399424342, 150.954662500458 -31.1359384099374, 150.954593148481 -31.1359729058922, 150.954332043323 -31.135935034105, 150.954264564578 -31.1358778676175, 150.954195157791 -31.1359906173781, 150.954058874275 -31.1362796273341, 150.954342155786 -31.1363319864581, 150.954251407387 -31.1367610689511, 150.954218333428 -31.1367435724128, 150.954181121252 -31.1368820915915, 150.953886602414 -31.1372268023284, 150.953498974499 -31.1373665583432, 150.953251344169 -31.1374558384313, 150.952922737915 -31.1376496225208, 150.953046505003 -31.1376928050976, 150.952688905486 -31.1383993830294, 150.951693422652 -31.138038990947, 150.949971267011 -31.1417269990076, 150.951388811074 -31.144948430122, 150.952596448432 -31.1451329198095, 150.95444448046 -31.1413581138708, 150.953778899857 -31.1412802048104, 150.954007310457 -31.140895596312, 150.953452655639 -31.1406161575637, 150.953772748752 -31.1398981189201, 150.954124909698 -31.1398891881476, 150.954591747463 -31.139402053378, 150.95481501893 -31.1391690721303, 150.954368504313 -31.1390074851147, 150.95384859844 -31.1388192191276, 150.953424497661 -31.1387559848212, 150.953584427467 -31.138429139437, 150.953733381483 -31.1382813282083, 150.953874893658 -31.1379921185462, 150.954320450968 -31.1381044916235, 150.954469141131 -31.1378007157074, 150.95466657271 -31.1377258637439, 150.95517748943 -31.1369920275562))\nAYCA-G1IS9\tCasey 3 Estate\tReady for service\tPOLYGON ((149.085451564776 -35.1769730130313, 149.087234160019 -35.1776421000185, 149.087324139822 -35.1773258209707, 149.088067920012 -35.1775632600094, 149.088794474321 -35.1760301862643, 149.088700779264 -35.1755433966277, 149.088696315882 -35.1754432926344, 149.08867764248 -35.1753354059478, 149.088678445125 -35.1752462204652, 149.088684538613 -35.1751817669935, 149.088702345911 -35.1751049342008, 149.08872854061 -35.1750243623781, 149.088801413527 -35.1748968843609, 149.088846955574 -35.174806946399, 149.088905111927 -35.1747440942345, 149.0889935368 -35.174677044522, 149.089122280331 -35.1745679772449, 149.089334760007 -35.174418300021, 149.089818240007 -35.174242710021, 149.090097240007 -35.174011590021, 149.090248440007 -35.1737446500209, 149.090287143992 -35.17345102278, 149.090214341536 -35.1731642793525, 149.089792319967 -35.1718455598127, 149.089724280007 -35.1714885300209, 149.090956200006 -35.1713301300175, 149.090623560014 -35.1695848500164, 149.091468840006 -35.1694762200175, 149.091375240007 -35.168910030021, 149.091519841082 -35.1682407999922, 149.090478119982 -35.1684605700207, 149.089368139273 -35.1684527449739, 149.088225444719 -35.1683546834395, 149.087599888081 -35.1695117796902, 149.087411747 -35.17164938359, 149.087961851447 -35.1721238037286, 149.08830876003 -35.1721670400177, 149.089546800007 -35.1719983800209, 149.089981320031 -35.1732010500635, 149.089834080007 -35.1739133100209, 149.089333443301 -35.1741697462411, 149.088407399784 -35.1742722300426, 149.087176560042 -35.1742886100206, 149.086316880025 -35.1739378800139, 149.085540618062 -35.1742400846587, 149.085120239998 -35.1756612000893, 149.085451564776 -35.1769730130313), (149.088880068466 -35.1717411112112, 149.088824921251 -35.1715094895716, 149.088955732284 -35.171484158615, 149.089035504359 -35.1717163326954, 149.088880068466 -35.1717411112112))\n243\tSt. Claire\tReady for service\tPOLYGON ((145.02730918279434 -37.608234919439887, 145.0266439949599 -37.613062424662751, 145.02582860342008 -37.613011431526878, 145.02466988912752 -37.613198406187045, 145.02057147374842 -37.608183922993888, 145.02228808752076 -37.607707954478748, 145.02730918279434 -37.608234919439887))\nAYCA-1D96NK\tCrace\tReady for service\tPOLYGON ((149.112121260484 -35.2026701433085, 149.112100544008 -35.202758664046, 149.112028985008 -35.2030937850461, 149.112137142008 -35.2031093440461, 149.111993075008 -35.2037840260461, 149.112106641008 -35.2038003630461, 149.112049772007 -35.2040666850461, 149.112028939441 -35.2041551889323, 149.111930937933 -35.2041410911239, 149.111910461007 -35.2042296460461, 149.111779039059 -35.204851246342, 149.111307271962 -35.2047833804133, 149.111150872897 -35.205515763737, 149.111090025602 -35.2058006957962, 149.110982048007 -35.2057842800461, 149.110711648007 -35.2057453810462, 149.110692689015 -35.2058341540414, 149.109448848007 -35.2056552080462, 149.109400501007 -35.2058815800462, 149.109445102007 -35.2059337480461, 149.109407183007 -35.2061112950462, 149.109569423007 -35.2061346360462, 149.10952771203 -35.2063299380321, 149.109635873015 -35.2063454990415, 149.109451964007 -35.2072066020461, 149.109776450007 -35.2072532850462, 149.109992774007 -35.2072844060463, 149.109962440022 -35.2074264440368, 149.110007041015 -35.2074786110414, 149.109969122015 -35.2076561580416, 149.110131366007 -35.2076794990461, 149.110090604015 -35.2078703620414, 149.110196063015 -35.2078855330416, 149.110012156007 -35.2087466370462, 149.109690369007 -35.2087003430462, 149.109659085015 -35.2088468200415, 149.109352919241 -35.2097500022394, 149.109713280015 -35.2100007900161, 149.110402000015 -35.2105410000151, 149.111014000015 -35.207640000015, 149.111461000015 -35.206499000015, 149.112394000015 -35.206627000015, 149.114914560015 -35.2069932600159, 149.115979000015 -35.2071390000149, 149.116249000015 -35.2057280000149, 149.116097000015 -35.2039390000149, 149.116244466808 -35.2033611721901, 149.115260080015 -35.2032131490414, 149.114600319023 -35.2031182560367, 149.114475412485 -35.2030994230009, 149.114351561022 -35.2030824590366, 149.113691802015 -35.2029875610413, 149.113525945023 -35.2028865400367, 149.113461995015 -35.2028630050414, 149.112685970015 -35.2027513770414, 149.112121260484 -35.2026701433085))\n17352159\tGermantown Road Two Wells\tCheck with carrier\tPOLYGON ((138.556290976 -34.6144390125, 138.55647312 -34.6182609645, 138.562521856 -34.618090043, 138.562352992 -34.614321038, 138.55752 -34.6144490025, 138.557487968 -34.614412021, 138.556290976 -34.6144390125))\n312\tThe Vale\tUnder construction\tPOLYGON ((150.76265755179605 -34.474845028924058, 150.76259293046576 -34.474896078788987, 150.76265150110967 -34.474539859196142, 150.76269324636354 -34.474513128608407, 150.76273046480762 -34.474282888787528, 150.76278581738285 -34.474288867762056, 150.7627819807995 -34.474169225523809, 150.76271117432313 -34.47409997877994, 150.76270990143797 -34.47408698997323, 150.76276174013313 -34.474054889961614, 150.76286586572238 -34.474067538137056, 150.76289825258135 -34.473889737597979, 150.76279056829213 -34.473876730863282, 150.76275094750144 -34.473833147993574, 150.7627641335157 -34.473751656453281, 150.76276444576524 -34.473751691059164, 150.76291557209697 -34.472816440544925, 150.76291544551304 -34.472816426399639, 150.76292398691129 -34.472763638742343, 150.76285957194102 -34.472758670585115, 150.76289217852192 -34.472530879373686, 150.76289902118603 -34.472531242318681, 150.76295329148803 -34.472536388461414, 150.76298035489125 -34.472229765535531, 150.76298035489125 -34.472229765535531, 150.76298163052169 -34.472216609366917, 150.76297079806977 -34.472111812882645, 150.76296842261513 -34.472060269998849, 150.7633631245732 -34.47217943714616, 150.76364004880082 -34.472133039586772, 150.7637435207055 -34.4721472171091, 150.76374859775183 -34.47213656332346, 150.76374859775183 -34.47213656332346, 150.76375755081443 -34.472120921336405, 150.76376775985332 -34.472105816217962, 150.76377917818576 -34.472091317038142, 150.76379175359952 -34.472077490096154, 150.76380542859147 -34.472064398617363, 150.76382014063071 -34.472052102464033, 150.76383582244432 -34.472040657861747, 150.76385240232514 -34.472030117142218, 150.76386980445957 -34.472020528504089, 150.76388794927419 -34.472011935792452, 150.76390675379974 -34.472004378298429, 150.76392613205041 -34.471997890579466, 150.763945995417 -34.4719925023014, 150.76398000591564 -34.471957084037271, 150.7640478396082 -34.4718892786302, 150.76407922288629 -34.471898369819783, 150.76410425106442 -34.471906204517126, 150.76413082033739 -34.471911782890452, 150.76415844486715 -34.4719128227413, 150.76419012216402 -34.471907439993, 150.76422294781543 -34.471897146159669, 150.76425395341772 -34.471883047611215, 150.76428015570121 -34.4718653276633, 150.76429700387806 -34.471842372027041, 150.76429484924776 -34.471816954068707, 150.76428185973177 -34.471794735010263, 150.76425011861335 -34.471755772079177, 150.7642385022352 -34.471737768499608, 150.76423028826972 -34.471722855383724, 150.76422106459583 -34.471707304496576, 150.76421372199189 -34.471693220504768, 150.76421003382387 -34.471681924456846, 150.76421026335015 -34.471674431938553, 150.76421483538911 -34.471666428443378, 150.76422566068939 -34.471656285302835, 150.76424133412411 -34.471645822311082, 150.76425923749184 -34.471636462863692, 150.76427513361452 -34.471629810107018, 150.76429963296582 -34.471625546795664, 150.76432942967563 -34.471627558814511, 150.76440256589882 -34.471640637571781, 150.76444082335064 -34.471644578551647, 150.76448381123936 -34.47164512520802, 150.76452601052213 -34.471644511075283, 150.76456811451837 -34.471642929554989, 150.7646100515251 -34.471640563283444, 150.76465212142421 -34.471637568810074, 150.76469225005 -34.471633133144152, 150.76477038070669 -34.471621055725443, 150.76480797385335 -34.47161640965443, 150.76484527930182 -34.471614439790557, 150.76488209344066 -34.471614595140622, 150.76491955614216 -34.471615885201786, 150.7649562480124 -34.471618952162821, 150.76499131871984 -34.4716243934349, 150.76502384054908 -34.471632717953014, 150.765047698439 -34.471642461938906, 150.76507131914124 -34.471655408134389, 150.76509574944296 -34.471670307652055, 150.76512179407555 -34.471685474002811, 150.76514955063374 -34.471698556776019, 150.76518664884563 -34.471713303981716, 150.76522571106398 -34.47172784355238, 150.76526653116318 -34.471740109044724, 150.76530833793615 -34.4717475027351, 150.76535003923053 -34.471746842193738, 150.76539005387249 -34.471735511567729, 150.76542693988634 -34.471716341577938, 150.7654608299049 -34.471692648140234, 150.76549193385114 -34.471667103178831, 150.76552090953365 -34.4716415862924, 150.7655406212395 -34.471620143508709, 150.76557196565702 -34.471575167171963, 150.76558696503264 -34.471557318694082, 150.76559203023132 -34.471553464592056, 150.7656110195739 -34.4715525164878, 150.76563750903594 -34.471551880788581, 150.76566403919665 -34.47155192598084, 150.76569052501137 -34.471552651739273, 150.76571679077927 -34.471554052862771, 150.7657397343846 -34.4715560491668, 150.76576280649087 -34.471558800561873, 150.7658638234405 -34.471573109482122, 150.76592596644522 -34.471583498672949, 150.76595833858772 -34.471587264203571, 150.76599121595245 -34.471588446822572, 150.76600871127937 -34.471587572989854, 150.76602530136256 -34.471585940022692, 150.76605621062694 -34.471582457596227, 150.76607112920163 -34.471581443924649, 150.76611835033393 -34.47157963331103, 150.76614112949866 -34.471579758901605, 150.76616247491145 -34.471581383157449, 150.76618260152443 -34.471585103454217, 150.76619341952457 -34.47158815735731, 150.76620466687842 -34.471591936377564, 150.7662156947674 -34.471596247763536, 150.76622636609702 -34.471601037834361, 150.76623142581403 -34.471603627531557, 150.76624603805485 -34.471630528911973, 150.76625901173267 -34.471666867681606, 150.76627129288286 -34.47170608871015, 150.76629884114988 -34.4717767363889, 150.76631012334585 -34.471811441335795, 150.76632256695694 -34.4718469102715, 150.76633920485506 -34.4718814012332, 150.76636280490706 -34.471911954264975, 150.76638550014815 -34.47193303953339, 150.76641080462088 -34.471953347685329, 150.7664388939877 -34.471971715718304, 150.76646952849853 -34.471986198010441, 150.76650393857022 -34.471994607311643, 150.76654658903618 -34.471988677064871, 150.766587839916 -34.471968644257842, 150.76662696005724 -34.471941920235288, 150.76669903376077 -34.471887234545122, 150.76673096737503 -34.471860304938751, 150.76678698556373 -34.471801590724965, 150.76681395561167 -34.47177878716343, 150.76684331124406 -34.471763899147895, 150.76686268654879 -34.47175836154743, 150.76688461157246 -34.471753723256278, 150.76690675403424 -34.47175078952742, 150.76692817120613 -34.471749900605381, 150.76694760062512 -34.47175127480552, 150.766973047583 -34.471757489253278, 150.76699931763147 -34.471768728289582, 150.76702525256283 -34.471783941374859, 150.76704918434717 -34.47180162721061, 150.76706615301188 -34.471817036043831, 150.76707440075518 -34.4718558636356, 150.76705126549916 -34.471921112076593, 150.76696417795958 -34.472093404271504, 150.76695183321 -34.47233592059667, 150.7669575407013 -34.472430664551531, 150.7670003115112 -34.472504731160996, 150.76705514665903 -34.472548011292254, 150.767095711585 -34.472560310585031, 150.76713436746806 -34.472569064456735, 150.76717853104608 -34.472580387392867, 150.76723939941152 -34.47258544463967, 150.76730628706591 -34.472575478285925, 150.76736404558298 -34.472549191213169, 150.76740996362847 -34.472496006454818, 150.76743296500385 -34.472411317300988, 150.76744949773035 -34.472367444534342, 150.76749407457521 -34.472315300169164, 150.76754525532945 -34.472283972595349, 150.76763136512292 -34.472242356263536, 150.76778727133376 -34.472200953917181, 150.76785750934644 -34.472188341361417, 150.76793492196103 -34.472183842118447, 150.76801544087252 -34.472183930256236, 150.76809273442416 -34.472185020838239, 150.76816733225857 -34.472188851859315, 150.76824188733002 -34.4721979358952, 150.76839365903245 -34.472222222342346, 150.76854444421451 -34.472242090910825, 150.76861984279836 -34.472253979876285, 150.76869625418522 -34.472264177468716, 150.76877280939706 -34.472268683760895, 150.76884846184768 -34.472263238016147, 150.7689200057886 -34.472244666356772, 150.76898753349803 -34.472216237045991, 150.76911587083313 -34.47215036152113, 150.76925007536246 -34.472091789311335, 150.76932102432519 -34.472058408075405, 150.76939018891161 -34.47202915409121, 150.76945471358994 -34.472010808109886, 150.76951327873573 -34.472008821485417, 150.76955407379987 -34.472017943755922, 150.76959675845285 -34.472033701477571, 150.7696385421157 -34.472054445551777, 150.76967777235424 -34.47207861520797, 150.76971321786687 -34.472104834493052, 150.76973977752422 -34.472126418139858, 150.76975746313042 -34.472141844536679, 150.76972768336677 -34.472293437291327, 150.76971587899513 -34.472303225018941, 150.76969223131547 -34.472333900627149, 150.76967713173937 -34.472365413012263, 150.76967082309503 -34.47238218594952, 150.76966720301294 -34.472400065398752, 150.76966950765694 -34.472429064083094, 150.76969985407794 -34.47243510146626, 150.76959898395933 -34.472942420434975, 150.7695985562589 -34.472945776252487, 150.76959951770021 -34.472945902238031, 150.76923972147944 -34.475772460201036, 150.76923829500598 -34.475772335505717, 150.7692138976266 -34.475963745391155, 150.76917336943333 -34.47595790661871, 150.76917600551107 -34.475966646895188, 150.76504830795366 -34.475372837018043, 150.76492229232582 -34.475292152235966, 150.76449374238004 -34.47507861230941, 150.76422743150445 -34.4749953279732, 150.76392222592062 -34.475165491201551, 150.76379447128068 -34.4751775746463, 150.76369131380127 -34.475137281557167, 150.76344450854572 -34.474839838779793, 150.763434612312 -34.474777180561048, 150.76345933496827 -34.474719999333978, 150.763647963995 -34.474598429840086, 150.76359137439059 -34.474549280338891, 150.76346450718464 -34.474527686111593, 150.76332358445833 -34.474445827048179, 150.76310497988322 -34.474432183870945, 150.76294290216467 -34.474457883600962, 150.76270841341736 -34.4746391083804, 150.76263836887929 -34.4747161358587, 150.76265755179605 -34.474845028924058))\n17316815\tLOT 224 ORTON ROAD OAKFORD\tCheck with carrier\tPOLYGON ((115.953296032 -32.228281984, 115.953306112 -32.231957046, 115.953316928 -32.2356320155, 115.956861824 -32.2355999735, 115.95749904 -32.235594035, 115.95885984 -32.235581973, 115.958729152 -32.234169960500004, 115.958608928 -32.232880973, 115.958495168 -32.231657975000005, 115.95836592 -32.230262964, 115.958184128 -32.2283099745, 115.958181952 -32.2282829645, 115.957769024 -32.2282829645, 115.957008 -32.2282829645, 115.95637008 -32.2282829645, 115.953296032 -32.228281984))\n71\tMayfield\tReady for service\tPOLYGON ((145.289746189 -38.125209668, 145.290090071 -38.125409107, 145.290278346 -38.125682642, 145.293721739 -38.126126179, 145.2956644 -38.125995293, 145.299757986 -38.126511268, 145.30034641 -38.123066242, 145.291994746 -38.122078125, 145.291939639 -38.122256158, 145.289614312 -38.122116059, 145.289003116 -38.122735682, 145.289746189 -38.125209668))\n185\tAgar Industrial Park\tReady for service\tPOLYGON ((144.75201086321994 -37.79845362681997, 144.75168899813818 -37.800725594324348, 144.73911480227883 -37.799759168925824, 144.73945812503155 -37.797080239440554, 144.7475262097463 -37.796961550443989, 144.751989405549 -37.798334940029292, 144.75201086321994 -37.79845362681997))\n196\tKaduna Park \tReady for service\tPOLYGON ((145.428175673462 -38.083378128834276, 145.42970989701806 -38.089373703065661, 145.42582605836611 -38.08999856560618, 145.42580460069519 -38.089812796219334, 145.42416308877557 -38.090049229902391, 145.4234227990884 -38.087330196379121, 145.42247866151408 -38.085835529286321, 145.42261813638848 -38.083302125441676, 145.428175673462 -38.083378128834276))\n78\tZeally Sands\tReady for service\tPOLYGON ((144.33959113 -38.309154864, 144.345805384 -38.30981596, 144.346892075 -38.304176496, 144.340847061 -38.302849758, 144.33959113 -38.309154864))\n43\tCallaway Park\tReady for service\tPOLYGON ((144.789941126 -37.79528303, 144.804301009 -37.796477217, 144.804376792 -37.79538357, 144.802785335 -37.795193168, 144.802431453 -37.79496446, 144.802463436 -37.794341751, 144.801605119 -37.794152943, 144.80175001 -37.793454824, 144.790403949 -37.792240465, 144.789941126 -37.79528303))\nAYCA-G7P1X\tGap Ridge Industrial Area\tReady for service\tPOLYGON ((116.767197579578 -20.7597367757634, 116.763878626438 -20.7601640986097, 116.76287416889 -20.7659208852749, 116.76997144373 -20.7652827405118, 116.770099320943 -20.765138955679, 116.769648441523 -20.7594521661456, 116.767197579578 -20.7597367757634))\n322\tAureus\tUnder construction\tGEOMETRYCOLLECTION (LINESTRING (153.59664909935495 -28.8311386760887, 153.59664911110238 -28.83113867903851, 153.59665010144022 -28.831135620855594, 153.59685288832517 -28.831167976449457), POLYGON ((153.59653875972938 -28.831857201617538, 153.59664909008478 -28.831138743941253, 153.59664908895596 -28.831138743806843, 153.59664909935495 -28.8311386760887, 153.59653875972938 -28.831857201617538)), POLYGON ((153.60176022040858 -28.831871778421231, 153.60176025253728 -28.831871753732052, 153.59884069352182 -28.831453087135934, 153.59884071718596 -28.831453090529916, 153.59884070972555 -28.831453130864535, 153.59884070972558 -28.831453130864624, 153.5988883402274 -28.831459963524583, 153.59888834782797 -28.831459921808275, 153.60176022040858 -28.831871778421231)), POLYGON ((153.60176543397984 -28.831872496754169, 153.60176158693878 -28.831870728316098, 153.60176025253728 -28.831871753732052, 153.60176543397984 -28.831872496754169)), POLYGON ((153.59661953131052 -28.832125071414126, 153.59660390814867 -28.83210577800164, 153.59658975112629 -28.832085626281689, 153.59657712085072 -28.83206470252459, 153.59656607138416 -28.832043096293251, 153.59655665002217 -28.832020900071861, 153.59654889709128 -28.831998208869823, 153.59654284577621 -28.831975119815386, 153.59653852197818 -28.831951731739586, 153.59653594420365 -28.831928144753384, 153.59653512348547 -28.831904459819096, 153.59653606333541 -28.831880778318236, 153.59653875972938 -28.831857201617538, 153.59653603039538 -28.831880779524582, 153.59653506369563 -28.83190446431415, 153.59653586379707 -28.831928153921396, 153.59653842725305 -28.831951746260547, 153.59654274301803 -28.831975139664998, 153.59654879249521 -28.83199823332534, 153.59655654961662 -28.832020927723754, 153.59656598095543 -28.832043125062974, 153.59657704587013 -28.832064729687531, 153.59658969667939 -28.832085648496232, 153.59660387886777 -28.832105791343164, 153.59661953131052 -28.832125071414126)), POLYGON ((153.59658104032155 -28.832221609879838, 153.59658510046552 -28.832213003455582, 153.59657781970122 -28.832204630479282, 153.59656732532824 -28.832205837452928, 153.59656750453883 -28.8322070456761, 153.59657976244495 -28.832221142433205, 153.59658104032155 -28.832221609879838)), POLYGON ((153.59782890338954 -28.832770483690357, 153.59898448012854 -28.831991311305096, 153.59878382213242 -28.831760560422079, 153.59892048282407 -28.831668412737546, 153.59884070972558 -28.831453130864624, 153.59884070972552 -28.831453130864617, 153.59884070972555 -28.831453130864535, 153.59884069352182 -28.831453087135934, 153.59884068606016 -28.831453127469871, 153.59809182686976 -28.8313457052729, 153.59809183594172 -28.831345656239471, 153.59745621340662 -28.831254466565614, 153.59745621182816 -28.8312544534021, 153.59745620129931 -28.831254451891958, 153.59745619046734 -28.831254510451938, 153.59720697902179 -28.831218765904598, 153.5972069898539 -28.831218707344632, 153.5972069786896 -28.831218709209555, 153.59685288832517 -28.831167976449457, 153.59673943886941 -28.83178195707746, 153.59678369059316 -28.83195123614675, 153.59685960763204 -28.831962125436291, 153.59716051891334 -28.831759233523165, 153.59729198483709 -28.831852477753621, 153.59712723088509 -28.831963564808817, 153.59752854132657 -28.832425071279573, 153.59729085988363 -28.83258533009344, 153.59739056481783 -28.832699990044979, 153.59762789866878 -28.832539965485264, 153.59762822296949 -28.83253970417482, 153.59782890338954 -28.832770483690357)), POLYGON ((153.59710426681343 -28.83278287633156, 153.59710832693494 -28.832774269892571, 153.59710104608939 -28.8327658969464, 153.59709055166698 -28.832767103961366, 153.59709073088473 -28.832768312183635, 153.59710298892765 -28.832782408890033, 153.59710426681343 -28.83278287633156)), POLYGON ((153.59756547098 -28.833254709554531, 153.5975654709799 -28.833254709554389, 153.5974368494883 -28.833075449071661, 153.5972962526557 -28.832903302474048, 153.59661953132036 -28.832125071426244, 153.59661953131052 -28.832125071414126, 153.5966195313203 -28.832125071426205, 153.59729625265567 -28.832903302474048, 153.59743684948836 -28.833075449071785, 153.59756547098 -28.833254709554531)), POLYGON ((153.59758917258802 -28.833292598694232, 153.59756547098007 -28.833254709554645, 153.59756547098 -28.833254709554531, 153.59758917258802 -28.833292598694232)), POLYGON ((153.59755407528948 -28.833393507268568, 153.59755814230599 -28.833384903346925, 153.59755086810623 -28.833376525896007, 153.59754037266205 -28.833377726412628, 153.59754055091594 -28.83337893474539, 153.59755279776994 -28.833393039035961, 153.59755407528948 -28.833393507268568)), POLYGON ((153.59768165419371 -28.833440438810182, 153.59768165419374 -28.833440438810165, 153.59758917258802 -28.833292598694232, 153.59768165419371 -28.833440438810182)), POLYGON ((153.6039138337014 -28.834273404446549, 153.6048067567643 -28.832403417586168, 153.60439035275681 -28.832337820059188, 153.60432886571479 -28.832240094474638, 153.60176543397984 -28.831872496754169, 153.60176552677115 -28.831872539409211, 153.60176022040858 -28.831871778421231, 153.60045247550207 -28.832876710210705, 153.60110282026298 -28.832969977037237, 153.60115587152731 -28.8326831249123, 153.60168311240957 -28.83275873154048, 153.60186556366276 -28.832995834436751, 153.60192693402789 -28.832959112157688, 153.60198974530809 -28.832924330269584, 153.60213496075434 -28.832852767758478, 153.60228527853843 -28.832789903183496, 153.6024400277208 -28.832736017135041, 153.60256835629897 -28.832699063429228, 153.60287123655425 -28.832639606790881, 153.60308247885891 -28.832614910548092, 153.60324560400863 -28.832603594171367, 153.60325238285884 -28.83260333271528, 153.60325916592853 -28.832603487594543, 153.603265920281 -28.832604058057086, 153.60327261311875 -28.832605041332908, 153.60327921194326 -28.832606432647456, 153.60328568471229 -28.832608225244904, 153.60329199999578 -28.832610410420852, 153.60329812712837 -28.832612977564661, 153.60330403635828 -28.832615914210926, 153.60330969899186 -28.832619206100134, 153.60331508753279 -28.832622837247648, 153.6033201758157 -28.832626790021607, 153.60332493913316 -28.83263104522835, 153.60332935435571 -28.832635582205711, 153.60333340004414 -28.832640378923291, 153.60333705655358 -28.832645412089484, 153.6033403061289 -28.832650657264523, 153.60334313299091 -28.832656088979192, 153.60334552341311 -28.832661680858493, 153.60334746578806 -28.832667405749657, 153.60335858193451 -28.832700214321363, 153.60337214025671 -28.832732302915737, 153.60338808127125 -28.832763530747833, 153.60340633504072 -28.832793760809025, 153.60342682148075 -28.832822860468195, 153.603449450711 -28.83285070205369, 153.60347412344959 -28.83287716341334, 153.60350073144886 -28.832902128450566, 153.60352915796997 -28.832925487633688, 153.60355927829534 -28.832947138476364, 153.60359096027571 -28.832966985987561, 153.60362406490981 -28.832984943088043, 153.60365844695468 -28.833000930992572, 153.60369395556231 -28.833014879555538, 153.60373043494198 -28.833026727578812, 153.60373043494198 -28.833026727578797, 153.60373981380332 -28.833029904287425, 153.60374892745429 -28.833033631791483, 153.60375773423419 -28.83303789305165, 153.60376619388504 -28.833042668588668, 153.60377426773564 -28.833047936572417, 153.60378191887847 -28.833053672921643, 153.60378911233815 -28.833059851414077, 153.60379581523156 -28.833066443806356, 153.60380199691804 -28.833073419963011, 153.60380762913948 -28.833080747994316, 153.6038126861495 -28.833088394402033, 153.60381714483117 -28.833096324232518, 153.60382098480247 -28.833104501236548, 153.6038241885098 -28.833112888035018, 153.60382674130821 -28.833121446289695, 153.60383215015091 -28.833139577809277, 153.60383893889613 -28.833157345790354, 153.6038470764712 -28.833174668905489, 153.60385652562951 -28.833191467863383, 153.60386724312096 -28.833207665771869, 153.6038794694455 -28.833226145012652, 153.60389024782907 -28.833245310344488, 153.60389952887058 -28.833265073927347, 153.60390727003164 -28.833285345179352, 153.60391343583137 -28.833306031191654, 153.60391799800928 -28.833327037154465, 153.60353332595685 -28.834132522063257, 153.6039138337014 -28.834273404446549)), POLYGON ((153.60344496484464 -28.83431623972508, 153.60390595813345 -28.83427048854497, 153.60353339882241 -28.834132549042671, 153.60344496484464 -28.83431623972508)), POLYGON ((153.59451354529853 -28.837440459400074, 153.60045247550207 -28.832876710210705, 153.59885705222331 -28.832647908388765, 153.59768165419393 -28.833440438810548, 153.59768165419371 -28.833440438810182, 153.59754388070178 -28.833533333284638, 153.59753751415136 -28.833521304015754, 153.59746051158956 -28.833401006451464, 153.59741059663054 -28.833329398256367, 153.59747029174562 -28.83329808611493, 153.5974628926879 -28.833285593361623, 153.59743817370227 -28.833248559489842, 153.59738645893742 -28.833175701851715, 153.59735954022125 -28.833139871868646, 153.59735435206005 -28.833130735215605, 153.59733934477532 -28.83309997049918, 153.59731829349778 -28.833060359587584, 153.59729619459281 -28.833021181051368, 153.59725938586121 -28.832991399157329, 153.59718801268713 -28.832928777772562, 153.597142345948 -28.832962744201012, 153.5971293807174 -28.832952426823319, 153.59694236819308 -28.832757469084271, 153.59700135718361 -28.832713593767096, 153.59690623736549 -28.832607210160855, 153.596806356407 -28.83250403682182, 153.59677426050081 -28.832468838138308, 153.59674123380441 -28.832434267048004, 153.59665893671993 -28.832376077212004, 153.59661847323372 -28.832346520398112, 153.59652918765465 -28.832251220203574, 153.59649027535181 -28.832212222167794, 153.59648354944193 -28.832204814517741, 153.59646980871634 -28.832188437256296, 153.59645689180385 -28.832171530260268, 153.59644483458817 -28.832154124143873, 153.59643157557164 -28.832137197330916, 153.59641641507346 -28.832120807109096, 153.59640218166024 -28.8321036214894, 153.59638892930889 -28.832085688481175, 153.596375956565 -28.832067272586912, 153.59636435607234 -28.832048083336137, 153.59635360725431 -28.832028328951392, 153.59634374243726 -28.832008039539129, 153.59633605638112 -28.831987077411885, 153.5963318053829 -28.83196549239738, 153.59632929954279 -28.831943691043403, 153.59632783645685 -28.831921808021253, 153.59632677661014 -28.83187790061826, 153.59632696790135 -28.831855848742272, 153.59632819500456 -28.831833767903934, 153.59632901303519 -28.831824695820824, 153.59633227331477 -28.831772776688933, 153.59633629991907 -28.831727677371735, 153.59634232417682 -28.831682840346765, 153.59635068992739 -28.831592682749505, 153.59635610472813 -28.831547765703053, 153.59637375091589 -28.831367570608148, 153.59642744013237 -28.831106950441615, 153.59619078177357 -28.831073003709552, 153.59619078188928 -28.831073003084011, 153.59619055563743 -28.831072971271951, 153.59592783458635 -28.831923587582384, 153.5960155279918 -28.832012890622767, 153.59612255863729 -28.832164648755747, 153.5962323187895 -28.8323620640291, 153.59631205559432 -28.83249002060067, 153.59639160663443 -28.832585357019344, 153.59662296562502 -28.832804416609108, 153.59685614936524 -28.832996936031826, 153.59696051475979 -28.83311390959997, 153.59702052633133 -28.833246302455304, 153.59709527724786 -28.833365581682482, 153.59716495388949 -28.833460961319325, 153.59725000306031 -28.833654135611571, 153.59735633235769 -28.833759783335775, 153.59738362764287 -28.833860585663469, 153.59742373248764 -28.833984432009363, 153.59738800206716 -28.83421512002818, 153.59737085396802 -28.834232581860384, 153.59734275189527 -28.834502379722025, 153.59734386782168 -28.834502818035322, 153.59734374070064 -28.834504039066218, 153.59739323188663 -28.83452339247491, 153.59747550676826 -28.834570751231894, 153.59746510349143 -28.834651474398974, 153.59744452599028 -28.834734504703921, 153.5973857545533 -28.834861300985352, 153.59727403379617 -28.835043617534442, 153.59715849164783 -28.835258636018882, 153.59707564141866 -28.835357922262183, 153.59679454884292 -28.835567808888236, 153.59662578725639 -28.835674027669153, 153.59649418923073 -28.83574637408455, 153.59618988817562 -28.835889486341891, 153.5961202259727 -28.835925826070156, 153.59548118989701 -28.836235875997616, 153.59500804713855 -28.83647355017488, 153.5947960436668 -28.836474485049617, 153.59468771948511 -28.83649359363384, 153.59458929002483 -28.836510956689786, 153.59441284772703 -28.836551739492652, 153.59429190482092 -28.836587832561577, 153.59421641646736 -28.836628170348817, 153.59413078213564 -28.836659662718283, 153.5940048165327 -28.836700222681145, 153.59391398292851 -28.836705067628376, 153.59387375264052 -28.83673191491107, 153.59383935720706 -28.837217463549333, 153.59451354529853 -28.837440459400074)), POLYGON ((153.60135765661502 -28.838651893087565, 153.60225655011357 -28.836800081485904, 153.60225656311596 -28.836800010071666, 153.60224967451538 -28.836799037647157, 153.60135765661502 -28.838651893087565)), POLYGON ((153.60130784413403 -28.838755361108056, 153.60135765661502 -28.838651893087565, 153.60130749562606 -28.838755229802583, 153.60130784413403 -28.838755361108056)), POLYGON ((153.60090183043093 -28.839575834611363, 153.60180421668403 -28.837712330327026, 153.6022433148232 -28.83680743126666, 153.60224748312325 -28.836798728300813, 153.60224967451538 -28.836799037647157, 153.60344496484464 -28.83431623972508, 153.59794976596575 -28.834861609559614, 153.59451504215733 -28.837440725486246, 153.60039689340127 -28.839386263131491, 153.60090183043093 -28.839575834611363)))\n17334879\tSt Eyre Estate\tCheck with carrier\tPOLYGON ((137.736468 -32.5057349755, 137.736439936 -32.505143031, 137.736412928 -32.5045510125, 137.73634992 -32.5032000315, 137.736291968 -32.5019469525, 137.736232928 -32.500656004, 137.736173888 -32.499376026, 137.736077056 -32.497296034, 137.729921056 -32.5017029745, 137.731809952 -32.5057699775, 137.736468 -32.5057349755))\nON-V-LSP-WTN7\tWorthington Estate\tReady for service\tPOLYGON ((145.44930696487427 -38.056759116436055, 145.45020818710327 -38.052535049254409, 145.44171094894409 -38.051571927809711, 145.4409384727478 -38.05566088242076, 145.44930696487427 -38.056759116436055))\n17344902\tFishermans Road Stratham Park\tCheck with carrier\tPOLYGON ((115.580933984 -33.479493039, 115.586069024 -33.482348995, 115.58718288 -33.4798430405, 115.589207168 -33.476949992, 115.585552064 -33.4750719645, 115.58551104 -33.474827968, 115.584995168 -33.4742470125, 115.58482704 -33.4741560295, 115.584069952 -33.474275003, 115.583393888 -33.474886021, 115.583105888 -33.475430975500004, 115.583406848 -33.475760997, 115.583131072 -33.476193009, 115.583012992 -33.4763790265, 115.582901024 -33.476851979, 115.582551104 -33.4773630045, 115.582200128 -33.477703016, 115.581807008 -33.478060954, 115.580933984 -33.479493039))\n287\tPavilion\tReady for service\tPOLYGON ((145.317223415383 -38.121935435108206, 145.315152750018 -38.132282585327637, 145.31841431618639 -38.13270454238269, 145.31985198021883 -38.125294621808983, 145.3217402553675 -38.125463421082053, 145.32191191674383 -38.124501259996357, 145.317223415383 -38.121935435108206))\n17326687\tLot 9601 Maddern Road Chittering WA\tCheck with carrier\tPOLYGON ((116.068223168 -31.522233961, 116.068780064 -31.525973995, 116.069312864 -31.525880033500002, 116.070432832 -31.527743039, 116.075851904 -31.527636035, 116.07591888 -31.5266619545, 116.076660832 -31.525226003, 116.071539104 -31.5219699845, 116.070365152 -31.5218940235, 116.068223168 -31.522233961))\n17307174\tRendezvous Road Vasse\tCheck with carrier\tPOLYGON ((115.276300928 -33.6766400095, 115.272884864 -33.676795983, 115.27288416 -33.678270988, 115.274312992 -33.678268028, 115.274315168 -33.678268028, 115.274333152 -33.681551038, 115.274336032 -33.6820959925, 115.274338912 -33.682665959, 115.274354048 -33.685442994, 115.275596032 -33.685417982000004, 115.275585952 -33.685129974, 115.276588928 -33.684631029, 115.278554144 -33.6846780005, 115.279579072 -33.6847030125, 115.279579072 -33.68530602, 115.279579072 -33.6853140305, 115.279826048 -33.68530602, 115.279818112 -33.6838640375, 115.279818112 -33.683821025, 115.27981488 -33.6833980225, 115.279808032 -33.6821830165, 115.279803008 -33.681212007, 115.279803008 -33.6812110265, 115.27980192 -33.6810549605, 115.279793984 -33.681058013, 115.279443008 -33.6812010365, 115.279233824 -33.6812859885, 115.27893792 -33.681405961, 115.277335904 -33.6814229625, 115.277335904 -33.6814100125, 115.27729488 -33.678254967, 115.277294144 -33.6782130275, 115.27636896 -33.678258038, 115.276301984 -33.678260998, 115.276301984 -33.678258038, 115.276303072 -33.6766400095, 115.276300928 -33.6766400095))\n16\tPanorama\tReady for service\tMULTIPOLYGON (((150.8907794739327 -33.965076958055747, 150.89132922304751 -33.962150535542555, 150.89136248564427 -33.961937877847092, 150.8908904168571 -33.961857790483585, 150.89137116836898 -33.961933413532776, 150.89153414702059 -33.9611814941856, 150.88906651473016 -33.96114589949439, 150.8879185292686 -33.961074710068026, 150.88740354513959 -33.961003520581365, 150.88682418798885 -33.9607543569111, 150.88544016813819 -33.9597665937488, 150.88525777793089 -33.95973989728796, 150.88493591284913 -33.95993567113981, 150.886266288518 -33.961074710068026, 150.8848715398274 -33.962240429429009, 150.88441019988019 -33.961857790483577, 150.88537579512544 -33.961065811385282, 150.88448530173287 -33.960345015010283, 150.88170653319165 -33.962382806271812, 150.88299399351865 -33.963557406130143, 150.8829832646787 -33.964189191769542, 150.88910943007198 -33.964874362441222, 150.8891339514723 -33.964793011449764, 150.88979607557735 -33.962356110631987, 150.88995700812268 -33.961795500260344, 150.88957077001919 -33.963343843725951, 150.8891339514723 -33.964793011449764, 150.88910943007198 -33.964883260724818, 150.89023595786261 -33.964998938333657, 150.8907794739327 -33.965076958055747)), ((150.89165216421515 -33.965203598332444, 150.89228516554769 -33.962062458040961, 150.89151268934967 -33.961955675029245, 150.89137116836898 -33.961933413532776, 150.89136248564427 -33.961973472206921, 150.89132922304751 -33.962150535542555, 150.89110499357525 -33.963584101392961, 150.89079385733348 -33.965079022739744, 150.8907794739327 -33.965076958055747, 150.89077239966255 -33.965114615785168, 150.89165216421515 -33.965203598332444)))\n17266708\tEdenvale \tCheck with carrier\tPOLYGON ((152.966187008 -27.8746859935, 152.966608992 -27.8728600065, 152.965924 -27.872881004, 152.966060992 -27.8726489955, 152.966220992 -27.872729008, 152.966518016 -27.871205995500002, 152.95732 -27.8698039915, 152.956624 -27.873234002500002, 152.966187008 -27.8746859935))\n17339941\tSherwin Ridge\tCheck with carrier\tPOLYGON ((149.65457184 -35.0642670305, 149.64938784 -35.063517965500004, 149.64896592 -35.0657919855, 149.64666912 -35.070687992, 149.644395008 -35.072179018, 149.644700992 -35.072219977, 149.64491808 -35.072249040500004, 149.645683072 -35.072351993, 149.64574896 -35.0723610025, 149.646511072 -35.072463955, 149.64672816 -35.072493037, 149.647599008 -35.0726110115, 149.647665952 -35.072620021, 149.648077088 -35.072676002, 149.651753056 -35.067482996500004, 149.653425952 -35.0661050055, 149.654513888 -35.0645069755, 149.654559968 -35.064341012, 149.654567168 -35.064304012, 149.65457184 -35.0642670305))\n248\tLara Industrial Park\tUnder construction\tPOLYGON ((144.35825859069561 -38.048203343505, 144.35858045577737 -38.048135752449362, 144.36036144256246 -38.04840611629821, 144.36031852722064 -38.049774817962543, 144.36214242934759 -38.050095867733631, 144.36242137908752 -38.048608888529778, 144.37074695587128 -38.049656536112437, 144.37040363311857 -38.051684198518728, 144.36503921508336 -38.05105900859941, 144.36478172302336 -38.052495247755523, 144.35845170974287 -38.05173488935926, 144.35825859069561 -38.048203343505))\n171\tWaterside\tReady for service\tPOLYGON ((145.33521009756245 -38.077916796186784, 145.33711983038208 -38.07632903477294, 145.34329963995714 -38.082882550857214, 145.34322453810441 -38.082992334139554, 145.34272028281538 -38.082950109819755, 145.34066034629035 -38.082620759286584, 145.33872915579983 -38.08239274650996, 145.33803178145453 -38.082544755106717, 145.3378064758964 -38.082646093995649, 145.33764554336003 -38.082586979660604, 145.33759189917822 -38.082510975445615, 145.33737732246004 -38.082434971151635, 145.33634735419304 -38.082603869475193, 145.33547831847139 -38.08268831849103, 145.3340621121099 -38.082713653176683, 145.33430887533893 -38.081683368879979, 145.33452345206612 -38.080653070065367, 145.33521009756245 -38.077916796186784))\n254\tWeemala at the Lake\tContracted\tMULTIPOLYGON (((151.62975265339009 -32.94898060072704, 151.63289223669912 -32.946609451358995, 151.62973184294088 -32.948920984521408, 151.62975265339009 -32.94898060072704)), ((151.62760641659096 -32.9504755355894, 151.62973184294088 -32.948920984521408, 151.62920151709443 -32.947401747026376, 151.63239871023205 -32.944502630612966, 151.63265620230106 -32.942899972664136, 151.63132582663221 -32.940198798024568, 151.6310897922431 -32.94001871678018, 151.62984524725792 -32.940594975467569, 151.62984524725792 -32.94099115113638, 151.63111124991403 -32.943422190242039, 151.62733469961665 -32.946789519179895, 151.62718449591122 -32.948536158004309, 151.62366543769184 -32.948518151594783, 151.62364398001193 -32.949796597574604, 151.62760641659096 -32.9504755355894)), ((151.62784968375465 -32.953487781499845, 151.62860070227276 -32.952983628881633, 151.62930880545798 -32.953001634381529, 151.63018857001063 -32.952695540380631, 151.62954483984709 -32.952173377578546, 151.62774239539104 -32.952371439694339, 151.62900839803817 -32.950588864677108, 151.62982378957804 -32.94918438631418, 151.62975265339009 -32.94898060072704, 151.62774239539104 -32.950498834681945, 151.62760641659096 -32.9504755355894, 151.62737761496746 -32.950642882629289, 151.62694846152215 -32.953217700097227, 151.62784968375465 -32.953487781499845)))\n52\tBaywater\tReady for service\tPOLYGON ((144.549435001 -38.157866291, 144.545735554 -38.158447199, 144.544859131 -38.164405734, 144.550847583 -38.164413154, 144.550914406 -38.164045284, 144.550758464 -38.162938948, 144.55045152 -38.16264492, 144.55076581 -38.1618042, 144.550608149 -38.160842053, 144.55049677 -38.160225774, 144.549863895 -38.159388014, 144.549435001 -38.157866291))\n17338135\tDavid Road\tCheck with carrier\tPOLYGON ((114.637218112 -28.6656509775, 114.637219904 -28.667834014500002, 114.644104928 -28.667829963000003, 114.644104928 -28.669148014, 114.648036832 -28.669146034500002, 114.648033952 -28.664917027, 114.644105984 -28.6649190065, 114.644104928 -28.6656470185, 114.637218112 -28.6656509775))\nAYAA-HJ45E\tLatitude 32 Flinders Precinct\tReady for service\tPOLYGON ((115.791616563541 -32.2085506036102, 115.792288250564 -32.2085570222319, 115.792282023984 -32.2084526735458, 115.792065898697 -32.2084576208421, 115.791987113553 -32.2083913246043, 115.791994921075 -32.2077048935914, 115.792377738429 -32.2075334274716, 115.79243298233 -32.2075270515062, 115.792406946862 -32.20734992119, 115.792429632085 -32.2073446167375, 115.791966214708 -32.2071046049343, 115.791976 -32.2057930000131, 115.792062 -32.205581000013, 115.792273 -32.205308000013, 115.792404 -32.2052160000132, 115.792822 -32.205038000013, 115.792997516307 -32.2049900609025, 115.793173808082 -32.204941909688, 115.794655667038 -32.2058772577697, 115.795628206882 -32.2053688704901, 115.796467993358 -32.2049827829618, 115.796899915217 -32.2038510915328, 115.796910079791 -32.2023870759973, 115.794159309963 -32.202352154459, 115.79280336 -32.202339570013, 115.79279449071 -32.2028314062634, 115.791901741254 -32.2028238651333, 115.791912602076 -32.2022816467081, 115.791188815777 -32.2022841665712, 115.791200898532 -32.201277634698, 115.788691948783 -32.2012630720123, 115.787672240701 -32.2032162239693, 115.788420535523 -32.2035056429791, 115.788514098544 -32.2035664820314, 115.788566318558 -32.2036520451455, 115.788884325387 -32.2046896392738, 115.788895253732 -32.2063031507377, 115.788936703092 -32.206561588571, 115.78905877508 -32.2068083407521, 115.789237356032 -32.2070297801325, 115.789485761667 -32.2072070947992, 115.789770278815 -32.2073139965008, 115.790041121667 -32.2073773726373, 115.790311667911 -32.2074311247885, 115.790580412951 -32.2074749160497, 115.790850986816 -32.2075096257533, 115.791290512119 -32.2075455713778, 115.791623612713 -32.2077018403086, 115.791616563541 -32.2085506036102), (115.789668200234 -32.203130500848, 115.789678919999 -32.2023105000131, 115.79180544 -32.202330300013, 115.791794816389 -32.2031517695263, 115.790538211352 -32.2031392062313, 115.790522565828 -32.2042941538875, 115.789658656408 -32.2042858862529, 115.789668200234 -32.203130500848))\n213\tLara Views \tReady for service\tPOLYGON ((144.38508068086276 -38.032962093516318, 144.3940070724592 -38.03397616290804, 144.39336334229566 -38.037390093329506, 144.38430820466473 -38.03634227022458, 144.38508068086276 -38.032962093516318))\n17353506\tGrandevue Estate\tCheck with carrier\tPOLYGON ((147.100400992 -38.1822589915, 147.09954 -38.186671001, 147.106391008 -38.1875730055, 147.10718 -38.183076007000004, 147.100400992 -38.1822589915))\n17347514\tHumpty Doo Industrial Park\tCheck with carrier\tPOLYGON ((131.095235712 -12.5915301515, 131.095233696 -12.590555590000001, 131.095232384 -12.5899204665, 131.095233504 -12.5896483685, 131.09523344 -12.5892112135, 131.095233376 -12.588879749, 131.095233312 -12.588548303, 131.095233216 -12.588216838500001, 131.095233152 -12.5878085065, 131.095233088 -12.587445407, 131.095232992 -12.587126596500001, 131.095232832 -12.5867648845, 131.09523264 -12.5864026915, 131.095232576 -12.5859505515, 131.095232416 -12.585589043, 131.095232224 -12.585227553000001, 131.095229024 -12.584775339, 131.095226464 -12.5843259185, 131.09092864 -12.584327139500001, 131.090929984 -12.591531576, 131.095235712 -12.5915301515))\nON-V-LSP-DEV\tLakeside, Devonia\tReady for service\tPOLYGON ((145.43976366519928 -38.071794816771721, 145.43969929218292 -38.07215377746585, 145.43924868106842 -38.072229792445647, 145.43835282325745 -38.074797363140824, 145.43947398662567 -38.074750911182129, 145.44065415859222 -38.075012730927469, 145.44197916984558 -38.076110674491709, 145.4433336853981 -38.077552756092118, 145.44488131999969 -38.078048926934358, 145.44742941856384 -38.073285547885945, 145.43976366519928 -38.071794816771721))\n10241\tDalyellup\tReady for service\tPOLYGON ((115.61975240707397 -33.39055091775127, 115.62018156051636 -33.390533001909944, 115.62057852745056 -33.390568833588922, 115.62099695205688 -33.390631538991585, 115.62144756317139 -33.390694244349014, 115.62186598777771 -33.390739033862346, 115.62156558036804 -33.391285464066662, 115.62132954597473 -33.391724397316644, 115.62155485153198 -33.391805017468549, 115.62146902084351 -33.391912510888112, 115.62146902084351 -33.391984173093959, 115.62124371528625 -33.392234990349181, 115.62120079994202 -33.392423102815613, 115.621018409729 -33.392879945682019, 115.62098622322083 -33.393587599499241, 115.62048196792603 -33.393578641891985, 115.62029957771301 -33.394205672170116, 115.62064290046692 -33.394286290020545, 115.62047123908997 -33.39484165540258, 115.62040686607361 -33.39495810253262, 115.62020301818848 -33.395522421029604, 115.6200098991394 -33.39577322807429, 115.61980605125427 -33.395988204965107, 115.61976313591003 -33.396382327883757, 115.61976313591003 -33.396767491736455, 115.61982750892639 -33.397206397301595, 115.61987042427063 -33.3975826003074, 115.61983823776245 -33.39794088737024, 115.61968803405762 -33.3982723015882, 115.61957001686096 -33.398424572561865, 115.61926960945129 -33.398254387338461, 115.61911940574646 -33.398164816034374, 115.61837911605835 -33.3977259153098, 115.61744570732117 -33.397215354534943, 115.61686635017395 -33.396982466167778, 115.61672687530518 -33.396910808083085, 115.61652302742004 -33.396874979018584, 115.61641573905945 -33.396910808083085, 115.61561107635498 -33.396812278120166, 115.61554670333862 -33.396722705329665, 115.61553597450256 -33.39614047994101, 115.6156325340271 -33.395710526380981, 115.6157398223877 -33.395459719155333, 115.61583638191223 -33.395298485556623, 115.6151819229126 -33.395119336762804, 115.6151282787323 -33.3950208047688, 115.6151282787323 -33.394886442778756, 115.61525702476501 -33.394698335643731, 115.61592221260071 -33.393695090714253, 115.61660885810852 -33.392656003400482, 115.61711311340332 -33.391867721979452, 115.61720967292786 -33.391840848623175, 115.61726331710815 -33.39166169270235, 115.6177031993866 -33.391294421910246, 115.61818599700928 -33.390998812584542, 115.61878681182861 -33.390747991762247, 115.61945199966431 -33.390586749422866, 115.61975240707397 -33.39055091775127))\nAYCA-1DER92\tLots 9004 Eastlyn Dr Deepdale\tReady for service\tPOLYGON ((114.67999499999 -28.7938689999871, 114.68292899999 -28.7950069999872, 114.68976299999 -28.7906249999872, 114.68977499999 -28.7872589999872, 114.68715099999 -28.7872519999872, 114.68714799999 -28.7883529999871, 114.68713099999 -28.7883529999871, 114.68713099999 -28.7883689999871, 114.68714799999 -28.7883689999871, 114.68714699999 -28.7885329999872, 114.68735199999 -28.7885339999872, 114.68742199999 -28.7901399999872, 114.68695399999 -28.7902459999871, 114.68543099999 -28.7909729999871, 114.68392399999 -28.7912479999871, 114.68289499999 -28.7912809999871, 114.68152299999 -28.7909219999871, 114.68045899999 -28.7923389999871, 114.68024999999 -28.7924339999871, 114.68082199999 -28.7927669999871, 114.67999499999 -28.7938689999871))\n17349902\tLot 1301 Gull Rock Road Albany WA\tCheck with carrier\tPOLYGON ((117.999468 -34.948832044, 117.999317152 -34.948833024500004, 117.997016032 -34.948842034, 117.996319072 -34.948844994, 117.99516384 -34.9488500445, 117.995091104 -34.9490469585, 117.996380992 -34.951457971, 117.996805088 -34.953752970000004, 117.996812992 -34.953748012, 117.99735984 -34.9537249795, 117.997382144 -34.953308008, 117.997481152 -34.9529319955, 117.997828928 -34.952478024, 117.99794016 -34.9517480325, 117.99826416 -34.951316039, 117.99849312 -34.9513739995, 117.99873792 -34.9514949525, 117.998391968 -34.952031989, 117.99841392 -34.9526040275, 117.99823392 -34.952847025000004, 117.998003872 -34.9534130325, 117.998034112 -34.954224035500005, 117.99793296 -34.954385041, 117.99857808 -34.9547589815, 118.000041824 -34.954776982, 118.00027584 -34.9549610385, 118.00023696 -34.955273966, 118.000519904 -34.955405001500004, 118.000940032 -34.955700021, 118.001012032 -34.955750970000004, 118.00137312 -34.955963017, 118.00182816 -34.9559870485, 118.001813024 -34.9531509615, 118.001808 -34.9522090155, 118.00179504 -34.94970702, 118.001792864 -34.9493759995, 118.001571104 -34.9493759995, 118.001571104 -34.949373021, 118.000155968 -34.9493270485, 117.99998784 -34.9495589645, 117.99930384 -34.950142972500004, 117.999312832 -34.950372021, 117.99878112 -34.951307048000004, 117.998612992 -34.9511949935, 117.998345152 -34.9511159615, 117.999474112 -34.949296986, 117.999468 -34.948832044))\n186\tSanctuary\tReady for service\tPOLYGON ((144.34730645652323 -38.2314381624407, 144.35191449161587 -38.231971211753766, 144.35072359081249 -38.237406827518768, 144.34975263115174 -38.237271995452772, 144.34954878327352 -38.238455980988221, 144.34598680970331 -38.237908232069529, 144.34730645652323 -38.2314381624407))\n17123438\tSouthern Cross - Stage 1 (52L)\tCheck with carrier\tPOLYGON ((151.272823008 -27.214454996500002, 151.272279008 -27.219095, 151.278312992 -27.2198619915, 151.278994016 -27.215060002, 151.272823008 -27.214454996500002))\n158\tRobina Town Centre\tReady for service\tPOLYGON ((153.38309799194224 -28.078905311663959, 153.38369880675492 -28.07970992327504, 153.38406358718751 -28.079785651116804, 153.38424597739481 -28.080041232186744, 153.38612352371251 -28.080372540075604, 153.38637028694157 -28.080145357633192, 153.3865419483179 -28.080277880782734, 153.38847313880845 -28.07917036086064, 153.38908468246106 -28.078441473996847, 153.38921342849557 -28.078015498864019, 153.38890229224481 -28.077031016536861, 153.3886877155266 -28.076728097082754, 153.3877650356232 -28.076216918566313, 153.38740025519962 -28.075724670288029, 153.38740025519962 -28.075488011658823, 153.386262998578 -28.075383881697171, 153.38604842185981 -28.075383881697171, 153.38475023269285 -28.074976827240853, 153.38436399459835 -28.07467390199367, 153.38360224723129 -28.074484573280468, 153.38305507659143 -28.074352042981971, 153.38241134642792 -28.074475106835767, 153.38195000648071 -28.0745887041139, 153.38175688743343 -28.074579237678371, 153.38166032790983 -28.0745887041139, 153.38147793769352 -28.075128289544487, 153.38190709113886 -28.075951862081283, 153.38250790596052 -28.076377845398415, 153.38269029616782 -28.076926888071036, 153.38307653427131 -28.07733393513745, 153.38335548400227 -28.077882972922051, 153.38318382262591 -28.078555067080259, 153.38309799194224 -28.078905311663959))\nAYAA-H0UT9\tWedgefield\tReady for service\tPOLYGON ((118.592672576525 -20.3804388011695, 118.593131299179 -20.3813253955829, 118.593725388852 -20.3810806700211, 118.593864174257 -20.3813833493657, 118.593283360116 -20.3816203348314, 118.593568864513 -20.3821734671046, 118.59571499896 -20.3812913311482, 118.59546888788 -20.3807555941885, 118.595798509113 -20.38062095479, 118.596044786163 -20.3811570505617, 118.597189491703 -20.3806871095014, 118.597203476734 -20.3806337454017, 118.596615264175 -20.3793849240068, 118.597849052316 -20.3787765714485, 118.598759696349 -20.3797289227947, 118.60171151066 -20.3785031237489, 118.602833574162 -20.3780289353461, 118.602296555059 -20.3768640012259, 118.601762393581 -20.3770661411191, 118.601656813565 -20.3773152675457, 118.601812674237 -20.3776671506204, 118.601714222627 -20.3777024517452, 118.601350811163 -20.3768444391335, 118.600525584418 -20.3757129858551, 118.601025522985 -20.3754194745335, 118.600149860422 -20.3741657435935, 118.599743995478 -20.374327462372, 118.599457066094 -20.3739414099331, 118.595778908724 -20.3761913161043, 118.596306342916 -20.376617251152, 118.596916147367 -20.3779584765702, 118.597225021678 -20.378630605074, 118.596273611832 -20.3790009564974, 118.592672576525 -20.3804388011695), (118.594816392565 -20.3810117305136, 118.595144473418 -20.3808777220054, 118.595396405436 -20.3814220994022, 118.59506640324 -20.3815558896664, 118.594816392565 -20.3810117305136), (118.595378967942 -20.3801067831168, 118.595204433338 -20.3797221004114, 118.595614803095 -20.3795568290774, 118.595743829191 -20.3796053733648, 118.59587672512 -20.3798974006776, 118.595378967942 -20.3801067831168), (118.594521325414 -20.3799983349327, 118.594859026815 -20.3798604271722, 118.595186246908 -20.3805727335521, 118.594848556106 -20.3807106677231, 118.594521325414 -20.3799983349327))\nAYAA-FRYDK\tTeviot Downs Estate\tReady for service\tPOLYGON ((152.951579273602 -27.7504397198131, 152.951040713602 -27.7515605798121, 152.950871873603 -27.7520487398117, 152.950764953603 -27.7526297798112, 152.950544633603 -27.7525644398112, 152.950290473603 -27.7532424998106, 152.950118753603 -27.7534036898104, 152.949926873604 -27.7542902798096, 152.950301273604 -27.7543836998096, 152.950598633604 -27.7545027698097, 152.950828673604 -27.7546365998097, 152.951251313604 -27.7549677098095, 152.952107033604 -27.7559134298093, 152.952518873604 -27.7555594598098, 152.952965993603 -27.7550979398103, 152.952505553603 -27.7546980698105, 152.952594833603 -27.7546617998104, 152.952772673603 -27.7544997098107, 152.953221953603 -27.7539509798113, 152.953505993603 -27.7537624298115, 152.953663673603 -27.7535808098117, 152.95391748 -27.753365429982, 152.954189273603 -27.7531781498123, 152.954586353602 -27.7530291098125, 152.954680673602 -27.7528354298127, 152.95493952 -27.7525640699821, 152.955239753602 -27.7523988398134, 152.955307433602 -27.7522029998135, 152.955496793602 -27.7522722098136, 152.955732953602 -27.7522444898137, 152.955959033602 -27.7521893198138, 152.956086113602 -27.7523528498138, 152.956135073602 -27.7524256598136, 152.956299593602 -27.7522306298139, 152.956367273602 -27.7523315198139, 152.956389953602 -27.7523930798138, 152.9564454 -27.752469749982, 152.956535393602 -27.7525125998138, 152.956617833602 -27.7525110698138, 152.957132633602 -27.7523817398142, 152.957238305373 -27.7523153798328, 152.956922230283 -27.7510431653912, 152.956512689187 -27.7511257070108, 152.955674273601 -27.750488319815, 152.955556913601 -27.7500176198153, 152.955235793601 -27.7500631598151, 152.952960953601 -27.748965789815, 152.952865193601 -27.7489356398149, 152.951583245419 -27.7485323302417, 152.95173336 -27.7471395899826, 152.950477143234 -27.7470325649936, 152.9503524 -27.7470854999827, 152.95048567432 -27.7495956847837, 152.950453553608 -27.7501476698128, 152.950799873602 -27.7501841198129, 152.951137193602 -27.7502616098131, 152.951460113602 -27.7503786998132, 152.951579273602 -27.7504397198131))\n189\tAshbury\tReady for service\tPOLYGON ((144.35133218646388 -38.22122706468388, 144.35028076052595 -38.225812226077274, 144.35538768649215 -38.226284211579959, 144.35568809390298 -38.226317924712454, 144.35530185580851 -38.227717005951725, 144.35858487963878 -38.228172122963628, 144.35884237170779 -38.226756194019458, 144.35534477115033 -38.226250498431128, 144.3563103663956 -38.221783368050794, 144.35133218646388 -38.22122706468388))\n17340096\tMundoolun Estate\tCheck with carrier\tPOLYGON ((153.087716896 -27.8594579775, 153.079827136 -27.857205991, 153.078977152 -27.8565869625, 153.078810112 -27.8558720115, 153.077532128 -27.8569299525, 153.078982912 -27.859124977500002, 153.081343072 -27.861081038000002, 153.083284928 -27.861864032, 153.084931936 -27.86184198, 153.085973056 -27.862075986500003, 153.087716896 -27.8594579775))\n181\tThe Surrounds\tReady for service\tPOLYGON ((153.33939444392914 -27.928418734504167, 153.34008108943451 -27.928475610200998, 153.3399523434 -27.931736433437418, 153.34402930110821 -27.92923394996614, 153.34557425349522 -27.928722071208654, 153.346153610646 -27.933272019605607, 153.33997380107093 -27.934788626501646, 153.33952318996367 -27.932608497395915, 153.33935152857833 -27.931508937334502, 153.33926569789466 -27.930219783705194, 153.33939444392914 -27.928418734504167))\n17316655\tForest Hills\tCheck with carrier\tPOLYGON ((150.928926112 -31.032246957, 150.92476992 -31.031649999000003, 150.92455104 -31.031618031, 150.924539168 -31.031616958, 150.924327136 -31.0315860075, 150.91850304 -31.0307439615, 150.91801488 -31.0332470485, 150.918012 -31.0332599985, 150.918121088 -31.033275039, 150.923917088 -31.0341060035, 150.927036832 -31.034554018, 150.927501952 -31.034620988, 150.928323136 -31.0347399615, 150.92843616 -31.034755982500002, 150.928926112 -31.032246957))\n17219184\tEdenvale\tCheck with carrier\tPOLYGON ((152.974415008 -27.8724570025, 152.966563008 -27.8712459925, 152.966267008 -27.8727589965, 152.966060992 -27.872659004000003, 152.965947008 -27.8729010025, 152.966563008 -27.872921001, 152.966198016 -27.874696002, 152.973388 -27.875806002, 152.974415008 -27.8724570025))\n17322026\tTanby Heights Stage 2\tCheck with carrier\tPOLYGON ((150.75956592 -23.2286249645, 150.759606976 -23.2288070415, 150.759305984 -23.230592014, 150.757269856 -23.2300289665, 150.757143136 -23.230791, 150.757111072 -23.230979996000002, 150.75689616 -23.232267004, 150.757722016 -23.232331976, 150.758777152 -23.232853972, 150.759569152 -23.233050997, 150.759268928 -23.2332380135, 150.75949392 -23.233631046, 150.759872992 -23.2336269945, 150.760022048 -23.233424031000002, 150.760060928 -23.233174022, 150.762421088 -23.233053957, 150.762596032 -23.232027965500002, 150.762690016 -23.231867034, 150.76417104 -23.2327220485, 150.765437152 -23.2327199765, 150.765690976 -23.232687028, 150.765579008 -23.231968025500002, 150.765406912 -23.2318119595, 150.764436 -23.2318140315, 150.762813856 -23.230716038, 150.76423584 -23.229349017500002, 150.765795008 -23.2294259775, 150.765912 -23.228811000500002, 150.764694848 -23.2282459735, 150.764573888 -23.2283760285, 150.764452928 -23.2285959935, 150.764432032 -23.228648996, 150.764429152 -23.2286779855, 150.764441056 -23.228703996500002, 150.764465888 -23.228720998, 150.764411872 -23.2288569915, 150.764383072 -23.2288530325, 150.764355008 -23.228864003, 150.76433808 -23.228886961500002, 150.764221088 -23.229181981, 150.764046848 -23.229095031, 150.76317888 -23.228613994, 150.762912832 -23.2290399565, 150.76257984 -23.2288509605, 150.762305888 -23.228694987, 150.76163088 -23.228312037000002, 150.761584096 -23.2282850455, 150.761076832 -23.229064987, 150.760950112 -23.2290009955, 150.760875968 -23.2291279795, 150.760827008 -23.2291179895, 150.760778048 -23.229131032, 150.76074384 -23.229164961000002, 150.76055808 -23.229041048, 150.760548 -23.2289250345, 150.760468096 -23.228737019, 150.76027296 -23.2284969815, 150.75956592 -23.2286249645))\n17325176\tFletcher Industrial Stage 1\tCheck with carrier\tPOLYGON ((148.63352688 -32.213367987, 148.627864096 -32.212643046000004, 148.627340992 -32.21681598, 148.628130112 -32.2168589925, 148.628052 -32.21748198, 148.631320576 -32.217959317, 148.631346976 -32.2179630725, 148.63255072 -32.218138674500004, 148.632672608 -32.217543215, 148.632827232 -32.2167876195, 148.632943456 -32.2162197065, 148.633098368 -32.2154627235, 148.633116128 -32.2153759215, 148.63352688 -32.213367987))\n17328781\tAvoca Dell Stage 1\tCheck with carrier\tPOLYGON ((139.316762176 -35.092629991, 139.312636928 -35.0897020145, 139.312140128 -35.09023302, 139.310690048 -35.0900780455, 139.310080928 -35.089769965, 139.309796896 -35.089626960000004, 139.30881299199999 -35.091088016, 139.308128992 -35.090600041500004, 139.308030016 -35.0907869655, 139.307946112 -35.0909469905, 139.307829856 -35.0911680285, 139.307823008 -35.091179998, 139.30826688 -35.091504007000005, 139.307657056 -35.092090975, 139.30772688 -35.0921410175, 139.308338176 -35.091552958, 139.308630848 -35.0917559955, 139.308920992 -35.091962992, 139.309211168 -35.092169008, 139.30950096 -35.092376004500004, 139.309791136 -35.092583001, 139.310080928 -35.092789017, 139.309466048 -35.0933810355, 139.309590976 -35.093469965000004, 139.310205856 -35.092878039, 139.31050896 -35.093094026500005, 139.310799136 -35.093301023, 139.311088928 -35.093508038, 139.31138016 -35.0937150345, 139.311668896 -35.093921032000004, 139.311055072 -35.0945129765, 139.311178912 -35.09460198, 139.311794176 -35.0940099615, 139.312083968 -35.094216958000004, 139.312374112 -35.094422974000004, 139.312663936 -35.0946299705, 139.31295408 -35.094836967, 139.313243872 -35.095042983, 139.313534048 -35.095249979500004, 139.31382384 -35.095456976, 139.316762176 -35.092629991))\n17051058\tLot 17 Harbour Rd\tCheck with carrier\tPOLYGON ((121.883787008 -33.844219022000004, 121.883784832 -33.841917992, 121.883784832 -33.840885951000004, 121.884516 -33.840885951000004, 121.88531808 -33.8408849705, 121.885319168 -33.841650963, 121.885589152 -33.841650963, 121.886825024 -33.841649964, 121.887164864 -33.841649964, 121.887272864 -33.841649964, 121.88727216 -33.839250033, 121.887164864 -33.8391579585, 121.884596992 -33.8391029765, 121.88242512 -33.8390569855, 121.880253952 -33.8390099955, 121.880253952 -33.839785978, 121.880253952 -33.839966963500004, 121.880253952 -33.842019964, 121.880253952 -33.8442210015, 121.883787008 -33.8442200025, 121.883787008 -33.844219022000004))\n17337131\tTimbertop Estate\tCheck with carrier\tMULTIPOLYGON (((151.705602016 -32.633970038, 151.704486016 -32.6323780205, 151.704352096 -32.632237975500004, 151.70440896 -32.632199995, 151.703399872 -32.631224046, 151.701465952 -32.6330900115, 151.699861088 -32.632981028, 151.699744096 -32.6341079925, 151.699682176 -32.634313028, 151.699111936 -32.6343549675, 151.69861296 -32.6359500375, 151.70002992 -32.635934997, 151.700789152 -32.6358620145, 151.70168016 -32.6357029885, 151.702724896 -32.635418033, 151.703841952 -32.6349410475, 151.704541088 -32.6345339735, 151.705095136 -32.6342109635, 151.705602016 -32.633970038)), ((151.70961312 -32.633252016, 151.70929488 -32.631959976000005, 151.709226848 -32.6309979575, 151.707498112 -32.630788981500004, 151.707422176 -32.631080042, 151.706247136 -32.6308149925, 151.70598 -32.631399981, 151.70565312 -32.631577026, 151.706667968 -32.6337759915, 151.70961312 -32.633252016)))\n17333083\tWaterside Pastures\tCheck with carrier\tPOLYGON ((151.828084992 -32.7579690075, 151.827584992 -32.758579008, 151.829407008 -32.760173005, 151.828268992 -32.7616419975, 151.828920992 -32.762206007, 151.830192 -32.7610410065, 151.832150016 -32.762317007, 151.836938016 -32.763180994, 151.837710016 -32.7620169925, 151.838058016 -32.7615220065, 151.838430016 -32.760806001, 151.838298016 -32.7604150035, 151.834415008 -32.759964991000004, 151.833738016 -32.7606690085, 151.831170016 -32.758187992, 151.830954016 -32.758366998, 151.829954016 -32.759586, 151.828084992 -32.7579690075))\nAYCA-1ORQMM\tRIVERLAND GARDENS\tContracted\tPOLYGON ((146.014765 -35.9649560000272, 146.013991 -35.9649470000272, 146.014027 -35.9657010000272, 146.01441 -35.9656370000272, 146.01458 -35.9656060000272, 146.014431 -35.9658970000272, 146.01411 -35.9659550000273, 146.013975 -35.9667820000273, 146.013649 -35.9667430000272, 146.013509 -35.9678510000273, 146.01375 -35.9679970000272, 146.013573 -35.9690660000273, 146.01474 -35.9691330000273, 146.014936 -35.9691110000273, 146.018084 -35.9694500000272, 146.018084 -35.9693980000272, 146.019234 -35.9695250000273, 146.01922 -35.9696000000272, 146.019191 -35.9697780000272, 146.020084 -35.9698830000272, 146.020257 -35.9688270000273, 146.019822 -35.9687810000272, 146.019832 -35.9679220000273, 146.019981 -35.9670420000273, 146.020051 -35.9670500000273, 146.020083 -35.9668500000273, 146.020058 -35.9668470000272, 146.020207 -35.9660130000272, 146.019733 -35.9659560000272, 146.019822 -35.9658290000272, 146.019921 -35.9657030000272, 146.01993 -35.9656950000273, 146.019694 -35.9655700000272, 146.019631 -35.9655810000272, 146.019222 -35.9653890000273, 146.019165 -35.9653720000272, 146.019058 -35.9653480000273, 146.01898 -35.9653430000273, 146.015846 -35.9652160000272, 146.015802 -35.9649670000272, 146.014961 -35.9649580000273, 146.014971 -35.9653640000272, 146.014773 -35.9653670000272, 146.014765 -35.9649560000272))\nAYCA-IQWLC\tJimboomba Woods\tReady for service\tPOLYGON ((153.059876 -27.8661709999843, 153.059393 -27.8657739999842, 153.05906 -27.8654649999842, 153.059073 -27.8654119999843, 153.058731 -27.8649699999842, 153.057635 -27.8628849999842, 153.057228 -27.8625079999842, 153.056898 -27.8642849999843, 153.056244 -27.8641909999843, 153.055819 -27.8655359999842, 153.054619 -27.8653589999843, 153.054332 -27.8669009999843, 153.053726 -27.8701509999843, 153.054884 -27.8702949999842, 153.054732 -27.8709139999843, 153.054569 -27.8717849999843, 153.056308 -27.8720519999843, 153.056603 -27.8720939999843, 153.05661 -27.8719129999843, 153.056579 -27.8719019999843, 153.056548 -27.8718519999842, 153.056541 -27.8716609999843, 153.056462322502 -27.8714537774465, 153.057889038769 -27.8706141810958, 153.05687 -27.8700129999842, 153.056707 -27.8698759999842, 153.056423 -27.8681089999842, 153.05652 -27.8681319999843, 153.056937929266 -27.8667522724327, 153.056988626325 -27.8667706002395, 153.057006209358 -27.8669011888625, 153.057235842592 -27.8667815795985, 153.057200368391 -27.8666563018243, 153.05753459366 -27.8663982685003, 153.058547498497 -27.8673962552253, 153.059133392735 -27.867140336309, 153.059876 -27.8661709999843))\n17331968\tRavendene Estate\tCheck with carrier\tPOLYGON ((145.593441376 -38.041282535, 145.593394208 -38.041230957, 145.593331936 -38.041538131, 145.595067104 -38.0417476435, 145.594859392 -38.042867245000004, 145.59588432 -38.0429861445, 145.5992136 -38.043390684, 145.599485056 -38.042158954, 145.599557024 -38.0418093965, 145.599820192 -38.0417600755, 145.60046928 -38.0410301765, 145.60115616 -38.040258153, 145.601208736 -38.0396099685, 145.60113888 -38.0394430245, 145.600887616 -38.038844697500004, 145.59560496 -38.039096871, 145.594209248 -38.039163471, 145.593930976 -38.039226204500004, 145.593855712 -38.039278504, 145.593755648 -38.0394503135, 145.593487456 -38.0407716945, 145.595234528 -38.040923431500005, 145.59511824 -38.0414953775, 145.593441376 -38.041282535))\nAYCA-1DEL05\tTeviot Downs Estate\tReady for service\tPOLYGON ((152.9503524 -27.7470854999827, 152.948535360195 -27.7478542384934, 152.94739572 -27.7478035199826, 152.9471574 -27.7479611099826, 152.94605184 -27.7476701399826, 152.9441478 -27.7457898599826, 152.94309624 -27.7451774099826, 152.941554906769 -27.7448023370258, 152.941071448579 -27.7464403555462, 152.941825 -27.7466149999833, 152.941819 -27.7468369999833, 152.942345 -27.7468489999832, 152.942859 -27.7472129999833, 152.94324 -27.7475959999833, 152.943483 -27.7479259999833, 152.943675 -27.7482629999833, 152.943926 -27.7486319999832, 152.944266 -27.7490429999833, 152.945062 -27.7497149999833, 152.945346 -27.7498489999833, 152.94564 -27.7491879999833, 152.945684 -27.7491739999833, 152.946124 -27.7494239999833, 152.945997 -27.7497319999833, 152.94567 -27.7503429999833, 152.945288417462 -27.7509761775147, 152.94579012 -27.7512297299827, 152.94603348 -27.7513226099827, 152.94653712 -27.7516403999826, 152.94677720825 -27.7513288364134, 152.94699648 -27.7510060799826, 152.947199294295 -27.7506664379592, 152.9473788 -27.7503157799826, 152.947737 -27.7503795899826, 152.948161815013 -27.7504160130004, 152.948566793608 -27.750403359811, 152.94931704 -27.7503007499827, 152.95010544 -27.7501527899827, 152.95045356 -27.7501476599826, 152.95048567432 -27.7495956847837, 152.9503524 -27.7470854999827))\n304\tTeneriffe\tUnder construction\tPOLYGON ((149.71105729101944 -34.7266547867358, 149.71214090345927 -34.725817090894132, 149.71290265082629 -34.72513811014052, 149.71619640349655 -34.72513811014052, 149.71699033736547 -34.719238679019504, 149.7142222976552 -34.719062306885654, 149.71381460188977 -34.721513845821171, 149.71216236113915 -34.721866579253991, 149.71105729101944 -34.7266547867358))\n17355158\tMulcahys Road\tCheck with carrier\tPOLYGON ((144.305286016 -37.389870007, 144.301134016 -37.391763001, 144.304863008 -37.3969689935, 144.306048 -37.396428997, 144.305232992 -37.3952910065, 144.308210016 -37.393941006, 144.305286016 -37.389870007))\nAYCA-G3LBH\tParklands\tReady for service\tPOLYGON ((152.288441837448 -24.9399487796629, 152.28817513162 -24.9425001535266, 152.294878145861 -24.9397478313031, 152.293951546323 -24.9379605380704, 152.295240157652 -24.9373946333853, 152.294560752871 -24.936065948286, 152.288630298248 -24.9383792466263, 152.288441837448 -24.9399487796629))\n38\tCentral Walk\tReady for service\tPOLYGON ((152.9088333969901 -27.697382894156359, 152.90984190757723 -27.697553884496916, 152.91055001076248 -27.697439890965789, 152.911193740926 -27.69704091266922, 152.91295327004016 -27.695102997340452, 152.914283645709 -27.693678037648464, 152.91473425682528 -27.693127048247163, 152.91490591820161 -27.692842052638117, 152.91499174888529 -27.692785053427038, 152.91589297111778 -27.690695061801925, 152.915828598105 -27.690543060850796, 152.91473425682528 -27.690239058312084, 152.91183747108946 -27.690790062289498, 152.91162289436232 -27.690790062289498, 152.91042126472797 -27.690581061108013, 152.91022814568069 -27.691360063477426, 152.91076458748063 -27.692196059836668, 152.91089333351516 -27.692405057925587, 152.91108645256239 -27.693830034235464, 152.91076458748063 -27.694514016256687, 152.91039980705705 -27.694951002525976, 152.910163772659 -27.695216993312222, 152.9088333969901 -27.697382894156359))\n170\tWaratah\tReady for service\tPOLYGON ((144.90365844136687 -37.5356296673782, 144.90258555775802 -37.539492060768424, 144.90895848638033 -37.540053537424676, 144.90955930120202 -37.536344310313453, 144.90365844136687 -37.5356296673782))\n17335030\tGlenview Park Estate Stage 1\tCheck with carrier\tPOLYGON ((152.720484128 -31.453299002, 152.71999488 -31.45326696, 152.720003872 -31.4537779855, 152.719687072 -31.453795986, 152.719770976 -31.453998024500002, 152.719634176 -31.454217989500002, 152.71975296 -31.454506978, 152.718522848 -31.454336963, 152.718666848 -31.453887968, 152.71740288 -31.4536860035, 152.715392992 -31.462711025, 152.715735008 -31.462721015, 152.715980896 -31.4627030145, 152.71625808 -31.4625779915, 152.71647408 -31.462427975, 152.716744096 -31.462145017500003, 152.717250976 -31.46159196, 152.717624992 -31.461175987500003, 152.717874848 -31.460886000000002, 152.718090112 -31.460810039000002, 152.718355072 -31.460735965, 152.718612128 -31.4606729725, 152.718825952 -31.460601951, 152.719003072 -31.4604369865, 152.71911216 -31.4602370015, 152.719355872 -31.458780996, 152.719381088 -31.458583971, 152.719412032 -31.458329004, 152.719395136 -31.458006993, 152.719146016 -31.456960022500002, 152.719018912 -31.4568729985, 152.71906608 -31.4565499885, 152.719103872 -31.4563789745, 152.719254016 -31.4561379565, 152.719355872 -31.456053985, 152.719630912 -31.455906022, 152.719980832 -31.455710014500003, 152.72019216 -31.455539019, 152.720340832 -31.4553860055, 152.720502112 -31.4551819875, 152.720552896 -31.455096036500002, 152.720632096 -31.4549150325, 152.720703008 -31.454684004500002, 152.720727136 -31.4544629665, 152.72072496 -31.4542739705, 152.72067888 -31.453993973, 152.72053488 -31.453556041000002, 152.720484128 -31.453299002))\nAYAA-H5ANY\tFreeway Business Park\tReady for service\tPOLYGON ((151.625651039999 -32.8086195300159, 151.623323619146 -32.8132851741578, 151.6245000239 -32.8137146262431, 151.6247872793 -32.8136767574153, 151.62467021099 -32.8137700075646, 151.624272326446 -32.8139769275337, 151.624150508049 -32.8143225392098, 151.623006113841 -32.8139632559037, 151.622667568345 -32.8144901031541, 151.622390178698 -32.8159386132717, 151.628148508135 -32.8152431288012, 151.627358322492 -32.8147125515763, 151.627215301027 -32.8143338660223, 151.62712648618 -32.8140980261941, 151.627349112895 -32.8127848073229, 151.626820477606 -32.8125128377644, 151.626873715355 -32.8124088367098, 151.626355559055 -32.8111873541852, 151.627406687331 -32.808723180885, 151.626535440947 -32.8085786764784, 151.625651039999 -32.8086195300159), (151.624854605095 -32.8102162438369, 151.625792956065 -32.8105567366861, 151.625664310874 -32.8108655200671, 151.624706635455 -32.8105166473681, 151.624854605095 -32.8102162438369), (151.625033944844 -32.8098597420961, 151.625947580977 -32.8101931421591, 151.625792847261 -32.8105566972025, 151.624854623993 -32.8102161954665, 151.625033944844 -32.8098597420961))\nAYCA-1D96QN\tO\u0027Malley\tReady for service\tPOLYGON ((149.117269000008 -35.351972000021, 149.117384000008 -35.3519170000211, 149.117488000008 -35.351848000021, 149.117575000008 -35.351769000021, 149.117610000008 -35.351704000021, 149.117613000008 -35.3516710000209, 149.117602000023 -35.3516240000114, 149.117329000007 -35.351165000021, 149.117306000008 -35.351138000021, 149.117259000007 -35.351105000021, 149.117199000008 -35.351085000021, 149.117145000015 -35.3510810000162, 149.116881000015 -35.3511440000162, 149.116716000015 -35.3511720000161, 149.116617479498 -35.351178571301, 149.116494960022 -35.3511390600113, 149.116429082007 -35.3511053195478, 149.116374720008 -35.350913340021, 149.116368600007 -35.350892460021, 149.116365360007 -35.3508814800211, 149.116361400007 -35.350869060021, 149.116357440023 -35.3508566400114, 149.116353480007 -35.350844220021, 149.116349880007 -35.350833240021, 149.116345920008 -35.3508209100211, 149.116341960008 -35.350809840021, 149.116337640008 -35.350797600021, 149.116332240007 -35.350782570021, 149.116326840007 -35.350767540021, 149.116321080007 -35.350752510021, 149.116315320007 -35.350737570021, 149.116309560008 -35.3507227200211, 149.116304160007 -35.350709220021, 149.116298040007 -35.350694370021, 149.116291920007 -35.3506796100211, 149.116285440008 -35.3506647600211, 149.116278960023 -35.3506500900114, 149.116272120007 -35.350635330021, 149.116265640007 -35.3506207500211, 149.116258440007 -35.350606080021, 149.116251600007 -35.350591500021, 149.116244400008 -35.3505770100211, 149.116237920007 -35.3505638700209, 149.116230720007 -35.350549380021, 149.116222440008 -35.350533630021, 149.116214880008 -35.3505192300211, 149.116206240008 -35.3505036600211, 149.116197600007 -35.350488090021, 149.116189680007 -35.350473870021, 149.116180680007 -35.350458390021, 149.116172040022 -35.3504430000114, 149.115678120008 -35.349615720021, 149.115341160023 -35.3494989900114, 149.115107520007 -35.349314220021, 149.115095640007 -35.349310350021, 149.114057760007 -35.349757380021, 149.113861665079 -35.3498237604394, 149.113729000007 -35.349588000021, 149.113623000007 -35.3494260000211, 149.113507000008 -35.349266000021, 149.113272000008 -35.3489800000211, 149.113287000008 -35.348738940021, 149.113437840023 -35.3484215100115, 149.113367000015 -35.3483170000162, 149.113358000015 -35.3482560000162, 149.113311000015 -35.3481410000163, 149.113163000015 -35.3479360000162, 149.113063000015 -35.3478420000162, 149.112932000015 -35.3477610000162, 149.112758000015 -35.3476790000163, 149.112642000015 -35.3475900000162, 149.112586000015 -35.3475260000164, 149.112538000015 -35.3474500000163, 149.112488000015 -35.3473120000161, 149.112476033146 -35.347219382406, 149.112747541317 -35.3471990809871, 149.112729428656 -35.3470524384002, 149.112456593613 -35.3470689294327, 149.112392000015 -35.3465690000163, 149.112360000015 -35.3464860000162, 149.112314000008 -35.3464150000211, 149.112197000007 -35.346310000021, 149.112090000007 -35.346249000021, 149.111971000007 -35.346204000021, 149.111859000007 -35.3461810000211, 149.111665000007 -35.346165000021, 149.111534000007 -35.3461650000211, 149.111305000007 -35.3461860000211, 149.111148000007 -35.3462160000211, 149.111024000007 -35.346250000021, 149.110709000007 -35.3463660000211, 149.110376000007 -35.3465070000211, 149.109976000007 -35.3467010000211, 149.109708000007 -35.3468480000212, 149.109459000007 -35.3469980000211, 149.109184000007 -35.3471810000211, 149.109138000007 -35.3472230000211, 149.109061000007 -35.3473530000211, 149.109003000007 -35.3474120000211, 149.107968000007 -35.3480380000211, 149.107812000007 -35.3480990000211, 149.107746000007 -35.3481140000211, 149.107579000007 -35.3481350000211, 149.107506000036 -35.3481530000054, 149.107407000015 -35.3481920000163, 149.107291000015 -35.3482530000164, 149.107267000015 -35.3482700000164, 149.107215000015 -35.3483410000163, 149.107205880015 -35.3484365400164, 149.107528800022 -35.3487942900116, 149.107839120007 -35.3486062800211, 149.107934520007 -35.3485485900212, 149.108378760007 -35.3482790400211, 149.108769000007 -35.3480426100211, 149.108769720007 -35.3480421600211, 149.109126840007 -35.3478258900211, 149.109168240015 -35.3478038400169, 149.109498360006 -35.3482062300194, 149.109545520015 -35.3481839100164, 149.1096858921 -35.3483684870293, 149.109734160015 -35.3483426700164, 149.109773040007 -35.3483208900211, 149.109802920007 -35.3483028900211, 149.109857640007 -35.3482668900211, 149.109899760015 -35.3482360200166, 149.110188840015 -35.3480147100165, 149.110271640015 -35.3479612500164, 149.110325280033 -35.3479352400073, 149.110385400022 -35.3479122900117, 149.110437960015 -35.3478969900164, 149.110448040007 -35.3478945600211, 149.110459200007 -35.3478920400212, 149.110469280007 -35.3478898800211, 149.110480800007 -35.3478877200212, 149.110490880007 -35.3478858300211, 149.110498080007 -35.3478845700211, 149.110506720007 -35.3478833100211, 149.110515000007 -35.3478820500212, 149.110522200007 -35.3478810600212, 149.110979760025 -35.3478213000188, 149.111161200007 -35.3483211600211, 149.111354520014 -35.3488539600148, 149.110977732772 -35.3490306402668, 149.111168760015 -35.3492547300163, 149.111631720015 -35.3499099300164, 149.111677440022 -35.3501782200116, 149.113036440015 -35.3502005400162, 149.113284840007 -35.350092000021, 149.113650600007 -35.349932250021, 149.113773720008 -35.3498784300211, 149.113895000008 -35.349883000021, 149.113985000007 -35.350092000021, 149.114112000008 -35.350442000021, 149.114139000007 -35.3505500000211, 149.114151000007 -35.3506580000211, 149.114143000008 -35.350912000021, 149.114152000007 -35.351043000021, 149.114172000008 -35.3511610000211, 149.114226000007 -35.351371000021, 149.114225000007 -35.351561000021, 149.114217000008 -35.351580000021, 149.114053080007 -35.351586720021, 149.114062000007 -35.3516960000211, 149.113789000008 -35.3517650000211, 149.113507000008 -35.3518110000211, 149.113243000007 -35.351831000021, 149.112642000008 -35.351850000021, 149.112600000007 -35.351861000021, 149.112567000007 -35.351881000021, 149.112533000007 -35.351922000021, 149.112523000015 -35.3519680000162, 149.112532000015 -35.3520540000162, 149.112572000015 -35.3522140000162, 149.112660000015 -35.3524020000162, 149.112784000022 -35.3526010000115, 149.112829000007 -35.3526500000211, 149.112900000007 -35.3526960000211, 149.112973000007 -35.352722000021, 149.113316000007 -35.3527800000211, 149.113435000007 -35.3528120000211, 149.113551000008 -35.352859000021, 149.113717000008 -35.352945000021, 149.113834000023 -35.3529860000115, 149.113965000007 -35.353014000021, 149.114069000007 -35.353024000021, 149.114157000007 -35.3530250000211, 149.114286000007 -35.353013000021, 149.114514000008 -35.3529580000211, 149.114696000007 -35.352890000021, 149.114962000007 -35.352753000021, 149.115862000007 -35.352275000021, 149.116074000007 -35.352181000021, 149.116255000007 -35.352124000021, 149.116454000007 -35.352083000021, 149.116594000023 -35.3520660000114, 149.116982000007 -35.352037000021, 149.117146000023 -35.3520110000114, 149.117269000008 -35.351972000021))\nAYCA-EGT1A\tKrystal Park Estate\tContracted\tPOLYGON ((120.134017439686 -33.9109884902099, 120.133781279961 -33.9108938999961, 120.13337951996 -33.9108179399961, 120.13303931996 -33.9108110999961, 120.13371719996 -33.9119984699961, 120.13661961488 -33.9170874375212, 120.137671156919 -33.9175230748263, 120.139850558926 -33.9138032018392, 120.135864428957 -33.9115618463849, 120.135614083648 -33.9118498753204, 120.134254873869 -33.9110924108619, 120.134017439686 -33.9109884902099))\n10542\tMurray-Murray River Country Estate\tReady for service\tPOLYGON ((115.8599978685379 -32.607827868144106, 115.85984498262405 -32.607565773189165, 115.85967868566513 -32.607638075322306, 115.85952043533325 -32.607656150846474, 115.85937827825546 -32.607665188607186, 115.85934340953827 -32.607694561323221, 115.85930585861206 -32.607897910631507, 115.85936486721039 -32.608171301751689, 115.85933268070221 -32.608239084544962, 115.85923880338669 -32.608747453859216, 115.85918247699738 -32.609093143344658, 115.85910737514496 -32.609438831495765, 115.85883378982544 -32.609411718747836, 115.85847169160843 -32.609362012021954, 115.85808008909225 -32.609278414284383, 115.85789501667023 -32.609233226285639, 115.8574578166008 -32.609050214657586, 115.85720837116241 -32.608896574977358, 115.85702866315842 -32.608772307396158, 115.8566826581955 -32.608442432616926, 115.85647344589233 -32.60807640575495, 115.85640102624893 -32.607841424758853, 115.85633665323257 -32.607595145937793, 115.85610061883926 -32.607629037558866, 115.85599333047867 -32.60807640575495, 115.85558295249939 -32.609507072269054, 115.85611402988434 -32.609620041877726, 115.85629105567932 -32.609665229681291, 115.85631787776947 -32.609561297698995, 115.85637152194977 -32.60948899711844, 115.85647881031036 -32.609421215271155, 115.85663437843323 -32.609380546138169, 115.85675776004791 -32.609394102517882, 115.85689187049866 -32.609479959541765, 115.85649490356445 -32.610925960208732, 115.85657000541687 -32.6110163344752, 115.8581417798996 -32.610966628639936, 115.85822224617004 -32.610962109926263, 115.85827052593231 -32.611423017545654, 115.8582866191864 -32.611567615525644, 115.85844218730927 -32.611572134208764, 115.85845291614532 -32.612105337215141, 115.86320042610168 -32.612055631984326, 115.86331844329834 -32.611838736108794, 115.86365103721619 -32.611319087603334, 115.86392998695374 -32.610989222204836, 115.86393535137177 -32.610831067130796, 115.86367249488831 -32.610514756144767, 115.86331844329834 -32.610343043998768, 115.86303412914276 -32.61024815030315, 115.86265861988068 -32.610209281985853, 115.8626988530159 -32.609953972147188, 115.8627524971962 -32.609644436233886, 115.8619236946106 -32.609447869076604, 115.86147308349609 -32.609258079687777, 115.86111098527908 -32.6090750681105, 115.86055308580399 -32.608792642103055, 115.86037069559097 -32.608702265592584, 115.8599790930748 -32.608573478907559, 115.85967600345612 -32.608521512298012, 115.85975378751755 -32.608123853765889, 115.85979670286179 -32.607904688933829, 115.8599978685379 -32.607827868144106))\n17399839\tGOLDEN VALLEY PLACE\tCheck with carrier\tPOLYGON ((153.00147056 -26.5433651285, 153.001189184 -26.5433263155, 153.000523616 -26.543234666500002, 152.999525088 -26.543097156, 152.999326528 -26.5430697945, 152.997823168 -26.542862761000002, 152.99660384 -26.542694818, 152.996558304 -26.5429640115, 152.99715728 -26.543045985, 152.997103872 -26.543360152, 152.99658096 -26.544460384, 152.993698592 -26.5469600485, 152.994594624 -26.547082500000002, 152.999189568 -26.547710723, 152.999160032 -26.5455362145, 153.001176384 -26.544527317, 153.00120064 -26.5443775595, 153.001300384 -26.544390990500002, 153.001315296 -26.5443014505, 153.00147056 -26.5433651285))\nAYCA-FWZJ8\tGrantham Rebuild Project\tReady for service\tPOLYGON ((152.190239281867 -27.563568564007, 152.189800720717 -27.5621391335632, 152.191011874636 -27.5616347122847, 152.190856824491 -27.5613733332842, 152.192157325277 -27.5609496953363, 152.192464749874 -27.560816017647, 152.193551192857 -27.5601790092941, 152.196057019745 -27.5616609805369, 152.197354263678 -27.5637359644543, 152.198993996425 -27.5664222900217, 152.197881095402 -27.5665897948387, 152.197279577962 -27.5668835401698, 152.197688563379 -27.567543884024, 152.19877135546 -27.5684538478778, 152.199984392038 -27.5684274199895, 152.200010403959 -27.5680643912891, 152.1995977019 -27.5664045589576, 152.199068569796 -27.5663910236108, 152.196153265739 -27.5616413909312, 152.194543333553 -27.5606290267603, 152.193471309363 -27.5600817258179, 152.192727209033 -27.5596892717923, 152.191917741281 -27.5602088567059, 152.191841974931 -27.5595976241688, 152.192018371514 -27.5590228427348, 152.188723799991 -27.5585633100324, 152.187864913466 -27.5636794134442, 152.189393143717 -27.5638433017599, 152.190239281867 -27.563568564007))\n51\tBellaview\tReady for service\tPOLYGON ((144.538409178 -38.172782464, 144.542848598 -38.173391775, 144.543662712 -38.168996938, 144.539206303 -38.168561956, 144.538409178 -38.172782464))\nAYCA-ISJ9I\tHarrington Grove\tReady for service\tPOLYGON ((150.755048319874 -34.0211317989616, 150.754786534884 -34.0212118767349, 150.754339637233 -34.0218807884444, 150.753497534043 -34.0227418022734, 150.753350636364 -34.0226324734695, 150.753192436296 -34.0227187591474, 150.753261343029 -34.0227675080129, 150.75289144218 -34.0231267806564, 150.752331664301 -34.0236214392139, 150.75243694707 -34.0243865886029, 150.752446838494 -34.0244548084856, 150.752488706237 -34.0244512797502, 150.752480946211 -34.0243823695586, 150.753936818267 -34.0240986178118, 150.75439858067 -34.0240132867023, 150.754700174076 -34.0239837389303, 150.755210345566 -34.0241262278851, 150.756198605471 -34.0247530379435, 150.756286176328 -34.0246661688251, 150.756873812055 -34.025012427486, 150.756977725302 -34.0248755092362, 150.757943019048 -34.0238972241635, 150.759234261973 -34.0224828342623, 150.760376174851 -34.0204081528703, 150.758680128932 -34.0200994937357, 150.758597782112 -34.0214120538742, 150.758411587086 -34.0216754982765, 150.757520690182 -34.0214150368541, 150.756991079007 -34.0214521830264, 150.756250619312 -34.0215219118648, 150.755821996664 -34.0214206604217, 150.755048319874 -34.0211317989616))\nACNC\tNewcastle\tReady for service\tPOLYGON ((151.69733047485352 -32.884942742051216, 151.69696569442749 -32.887915884943787, 151.70054912567139 -32.888168147022263, 151.70048475265503 -32.887645603348474, 151.70404672622681 -32.887933903687511, 151.7056131362915 -32.886420316442653, 151.69733047485352 -32.884942742051216))\nAYCA-G07X9\tLot 502 Jane Brook Drive\tContracted\tPOLYGON ((116.062230625921 -31.8562302562125, 116.062522009928 -31.8574419140419, 116.063059079202 -31.8573268459721, 116.062882826152 -31.86207556273, 116.06116896932 -31.8620485518722, 116.06121367394 -31.8631955500188, 116.064181 -31.8632390000114, 116.064625547931 -31.8631925951221, 116.064929933551 -31.8538234060927, 116.06357025619 -31.8555172324367, 116.062137025318 -31.8560565282265, 116.062230625921 -31.8562302562125))\n17350846\tCountry Hills Estate\tCheck with carrier\tPOLYGON ((152.590619168 -27.568049751500002, 152.589957472 -27.5681173505, 152.58897792 -27.567971903500002, 152.589198592 -27.566784629, 152.589314176 -27.566163547000002, 152.5890528 -27.566125104, 152.587806848 -27.5659414175, 152.587476736 -27.565892818000002, 152.587149472 -27.565844496, 152.586600128 -27.565763577000002, 152.585997472 -27.565674758500002, 152.58452112 -27.565917386000002, 152.583973216 -27.568834466000002, 152.588226592 -27.569465464, 152.589694688 -27.569683172, 152.589952448 -27.568300685500002, 152.590584256 -27.568236065, 152.590619168 -27.568049751500002))\n207\tYarraBend\tReady for service\tPOLYGON ((145.02525959964044 -37.781985196862017, 145.02937947269047 -37.781137240926796, 145.02936874385949 -37.781467944899276, 145.02917562480326 -37.782816184240758, 145.02869282717614 -37.786078567303868, 145.02869282717614 -37.786455883668914, 145.02729271407904 -37.786544913091788, 145.02575849052297 -37.786366854138066, 145.02549026961404 -37.786036172085794, 145.02534006590861 -37.784755825056962, 145.02559755797762 -37.7831023639555, 145.02525959964044 -37.781985196862017))\n58\tSpires\tReady for service\tPOLYGON ((115.80864 -32.30285, 115.80465 -32.30281, 115.80473 -32.30774, 115.80679 -32.30785, 115.80671 -32.30655, 115.80877 -32.30651, 115.80864 -32.30285))\n17357158\tHuntington Downs\tCheck with carrier\tPOLYGON ((153.28360512 -27.922871963000002, 153.283521952 -27.922300017, 153.28337616 -27.9224919915, 153.283354912 -27.9230499885, 153.282987008 -27.923560015, 153.282270976 -27.9237680105, 153.282666976 -27.9240100275, 153.282978016 -27.924451012000002, 153.282411008 -27.925023957, 153.281811968 -27.9245570355, 153.281403008 -27.925272005, 153.28167408 -27.925393957, 153.281554912 -27.925892014000002, 153.281094112 -27.9270070275, 153.281271968 -27.927134992, 153.280613888 -27.928153972, 153.280793152 -27.928128960000002, 153.281012032 -27.9293779875, 153.281400128 -27.9293630395, 153.281466016 -27.930347998000002, 153.281968928 -27.9303920095, 153.281838976 -27.9311820335, 153.281871008 -27.9313710295, 153.281693152 -27.9321550225, 153.284486048 -27.932534994, 153.284874112 -27.931758031, 153.283766048 -27.930308038, 153.283407136 -27.929688029, 153.283071968 -27.928908994, 153.282929056 -27.9279140455, 153.282849856 -27.926588964500002, 153.282506048 -27.926197023500002, 153.28263312 -27.925920985, 153.282859936 -27.9258900345, 153.28333008 -27.924586025, 153.28427184 -27.923991028, 153.28414512 -27.9235950355, 153.284393888 -27.9233540175, 153.28360512 -27.922871963000002))\n17325574\tDarling Downs Lot 102 Keenan Street\tCheck with carrier\tPOLYGON ((116.00267616 -32.1866129725, 116.002544032 -32.187018955, 116.003152064 -32.187153968000004, 116.003364128 -32.187335046, 116.00349984 -32.188462029, 116.00426304 -32.189300005, 116.005025888 -32.189247002500004, 116.005206944 -32.189124958, 116.006479904 -32.18949999, 116.007347872 -32.1915320115, 116.008027904 -32.191779967, 116.00823312 -32.1910880485, 116.008388992 -32.1904909795, 116.008463168 -32.190139979, 116.008521824 -32.189786999, 116.008567904 -32.1894330385, 116.008599968 -32.1890769875, 116.008617952 -32.188719956, 116.008612928 -32.1866180045, 116.00267616 -32.1866129725))\n17331436\tSt Andrews - stage 2\tCheck with carrier\tPOLYGON ((152.565019936 -26.0649970125, 152.566278112 -26.064960031000002, 152.566521856 -26.063525966500002, 152.565954112 -26.063350013, 152.565737056 -26.0631839755, 152.565615008 -26.0631540055, 152.564753152 -26.063126015, 152.564729056 -26.063031961, 152.564658848 -26.0627550345, 152.56465488 -26.062628032, 152.564645888 -26.062224029, 152.56463904 -26.061937020000002, 152.564572096 -26.061840986500002, 152.564277952 -26.0614199635, 152.563884128 -26.0608490165, 152.563852096 -26.0606719715, 152.56372896 -26.0606829605, 152.563195072 -26.060697002, 152.56315008 -26.0606829605, 152.563128832 -26.06064498, 152.562929056 -26.060661001, 152.562932992 -26.060706992, 152.562935872 -26.060807965000002, 152.561899072 -26.060880966, 152.561886112 -26.060740014500002, 152.561436128 -26.060778994, 152.560994048 -26.060748025000002, 152.560572832 -26.0607189615, 152.560167136 -26.060689972000002, 152.559339136 -26.06063499, 152.559160928 -26.0612080275, 152.558751968 -26.061002992000002, 152.558849152 -26.062082004500002, 152.558803072 -26.062612011000002, 152.55895392 -26.0631269955, 152.559001088 -26.063287020500002, 152.55911088 -26.0635889775, 152.559191872 -26.063814955, 152.563070176 -26.06366196, 152.56327104 -26.0636560215, 152.56328112 -26.063889029000002, 152.563820032 -26.063870048000002, 152.564355008 -26.063850956, 152.56489392 -26.063831975, 152.565017056 -26.0646640125, 152.565012 -26.0648180065, 152.565019936 -26.0649970125))\n195\tHighland Views \tReady for service\tPOLYGON ((150.68084751128293 -33.807140119426315, 150.68273578642265 -33.810171081520863, 150.68376575468963 -33.8105989734025, 150.68638359068552 -33.810848576011324, 150.68728481291802 -33.810848576011324, 150.68831478117602 -33.81042068537807, 150.68878684996321 -33.808851734746952, 150.68882976530503 -33.808209883014214, 150.68449531553682 -33.807675002892125, 150.68084751128293 -33.807140119426315))\n10564\tSecret Harbour\tReady for service\tPOLYGON ((115.74870228767395 -32.406905705934577, 115.74997901916504 -32.404858583096093, 115.75016140937805 -32.404242625545209, 115.7498824596405 -32.402693654894534, 115.74950695037842 -32.402548720608365, 115.74921727180481 -32.4026483629551, 115.7470178604126 -32.399867394343453, 115.74654579162598 -32.400456205921287, 115.74551582336426 -32.402240734477644, 115.74638485908508 -32.404858583096093, 115.74681401252747 -32.405556059366113, 115.7474148273468 -32.406615850655079, 115.74870228767395 -32.406905705934577))\nAYCA-H18JF\tThe Key Industrial Estate\tReady for service\tPOLYGON ((145.18197712273 -38.0188635264808, 145.182505978388 -38.0187911196923, 145.18260876956 -38.0192708227462, 145.18267609641 -38.0192615651913, 145.18272281427 -38.0194767751231, 145.182981369548 -38.0194412978916, 145.183616623651 -38.0186372896451, 145.184074075794 -38.0204209587416, 145.182017929499 -38.020716285649, 145.182251422076 -38.0217803042007, 145.186707095885 -38.0211596406549, 145.186257033726 -38.0186884201697, 145.186383438778 -38.0161552179387, 145.186465884206 -38.0155279267727, 145.185081882605 -38.0153514072288, 145.18507281913 -38.0153958832113, 145.184994681276 -38.0153859167744, 145.184988702664 -38.015476226807, 145.184779071297 -38.0153762558762, 145.18197712273 -38.0188635264808))\nACDU\tDurack\tReady for service\tPOLYGON ((152.98293471336365 -27.578192809613444, 152.98768758773804 -27.577270352798759, 152.98868536949158 -27.581026700584395, 152.98387885093689 -27.581939616311764, 152.98293471336365 -27.578192809613444))\nAYCA-19PQFS\tRedbank Motorway Estate\tContracted\tPOLYGON ((152.873819345554 -27.5852564442896, 152.8739019815 -27.5852654991441, 152.874136456738 -27.5852943730481, 152.875326780988 -27.5854563714505, 152.875487511661 -27.5854867516755, 152.875648144462 -27.5855342035491, 152.876325799075 -27.5858650076581, 152.876345044432 -27.5859044755358, 152.876350637508 -27.5859439645202, 152.875841829336 -27.5889336804285, 152.877504273637 -27.589193789068, 152.878808847333 -27.5892470289336, 152.879564721943 -27.588935696155, 152.880297191982 -27.5889687595109, 152.880498097043 -27.5887013815061, 152.880626278643 -27.588719669272, 152.880685560268 -27.58873057706, 152.880399881367 -27.5903837850372, 152.880034269261 -27.5922651414871, 152.880267598902 -27.5922953005381, 152.880575002156 -27.5905599116427, 152.881233910173 -27.5867761947248, 152.88102684 -27.5867509499813, 152.879369319156 -27.5865053545199, 152.878025907877 -27.5863138224179, 152.878326600674 -27.5845805884629, 152.875624434422 -27.5842084190592, 152.875443186086 -27.5852531097134, 152.874205804369 -27.5851023866874, 152.874149019597 -27.5850789480709, 152.874115824372 -27.5850355848825, 152.874124875895 -27.584964094179, 152.873869186523 -27.5849290230346, 152.873819345554 -27.5852564442896))\nAYCA-1JBB7K\tThe Fairways\tContracted\tPOLYGON ((152.479575 -27.5314779999815, 152.477638 -27.5311849999815, 152.477484 -27.5311019999814, 152.477326 -27.5311169999815, 152.476955 -27.5314719999815, 152.476748 -27.5315729999815, 152.477118462835 -27.5325019783714, 152.481552467475 -27.5331624827076, 152.482319 -27.5290169999815, 152.481605 -27.5290499999815, 152.481515 -27.5281339999814, 152.481467 -27.5279979999815, 152.481455 -27.5279429999814, 152.481273 -27.5270719999814, 152.478934 -27.5274539999814, 152.47879 -27.5273799999815, 152.47829 -27.5281619999815, 152.478223 -27.5281109999814, 152.478172 -27.5281759999815, 152.478243 -27.5282279999814, 152.478159 -27.5283479999814, 152.478269 -27.5284229999815, 152.477848 -27.5292069999815, 152.478203 -27.5294579999815, 152.479989 -27.5293229999815, 152.479575 -27.5314779999815))\n126\tPark Edge\tReady for service\tPOLYGON ((152.91510616302708 -27.693434833927977, 152.91656260252267 -27.694831297718888, 152.91713659524893 -27.695377528695218, 152.91754965543885 -27.695016541574045, 152.91845087767135 -27.69579076248753, 152.91931454896854 -27.694983292700051, 152.91912142992126 -27.694593805138069, 152.91940037966117 -27.693164088880014, 152.9195452189511 -27.692418349048868, 152.91969005823208 -27.691696354040211, 152.9197276091584 -27.691506354560435, 152.91974370241385 -27.691449354651962, 152.91973833799838 -27.691416104691452, 152.91971688032746 -27.691397104709036, 152.91964177847476 -27.691363854733424, 152.91955594778207 -27.691316354749205, 152.91938428640574 -27.691235604729656, 152.91913752317672 -27.690836603755731, 152.91875664949765 -27.69014784864325, 152.91742627382882 -27.689839094941181, 152.91693274737071 -27.689881845505472, 152.91631583929359 -27.689848595068376, 152.91623537302542 -27.690157348743575, 152.91619782209909 -27.690485101689323, 152.91618709325911 -27.690660852863978, 152.91609589815099 -27.690817603673242, 152.91598860979641 -27.69113585462328, 152.91577135086146 -27.691724853934485, 152.91549776554604 -27.692375599477828, 152.91523222685382 -27.692855343707404, 152.91520540475844 -27.692964592099511, 152.91522954463707 -27.693031091067127, 152.9151973581352 -27.693107089837874, 152.91513298511344 -27.693145089202613, 152.91504983663754 -27.693149839121673, 152.91493718385846 -27.693268587047843, 152.91510616302708 -27.693434833927977))\n240\tWandana\tContracted\tPOLYGON ((144.293338403687 -38.172482021397926, 144.29355298040514 -38.172195247312018, 144.29655705450452 -38.172009687007552, 144.29870282171322 -38.171739780267373, 144.29926072119304 -38.17246515236549, 144.29844532965319 -38.172600104517748, 144.29818783758418 -38.173713450237223, 144.29947529791121 -38.173966480983317, 144.29990445135655 -38.174152036305671, 144.29951821325307 -38.174506276972359, 144.29917489050038 -38.17489425286923, 144.29926072119304 -38.175467778673578, 144.29891739844038 -38.176058168168247, 144.2979303455152 -38.176935309443607, 144.29784451483155 -38.1772558007371, 144.29323111532338 -38.172616973518949, 144.293338403687 -38.172482021397926))\nAYCA-IQRNE\tJimboomba Woods\tReady for service\tPOLYGON ((153.02928854703 -27.8694558108568, 153.028954060229 -27.8713069646716, 153.029344906502 -27.8711451557373, 153.029613012585 -27.8711927032893, 153.029928811219 -27.8714296646998, 153.030183755476 -27.8718369597671, 153.030651652724 -27.8722339342381, 153.031423054635 -27.8725280043284, 153.031946451666 -27.8725309549276, 153.032739909993 -27.8729322419019, 153.034045392171 -27.8727867518589, 153.034983650602 -27.873041792578, 153.035562482193 -27.8730331302099, 153.035790000005 -27.8731499999935, 153.035865825004 -27.8735044525422, 153.036377761487 -27.8740990751319, 153.036855195206 -27.8740165505321, 153.037659044946 -27.8735792094477, 153.033925304254 -27.8700727989356, 153.02928854703 -27.8694558108568))\n17351673\tHighlands Estate\tCheck with carrier\tPOLYGON ((146.108255776 -37.0380393935, 146.107436768 -37.040408818, 146.106875168 -37.0402010075, 146.10681504 -37.040374796500004, 146.106706688 -37.0403508575, 146.106486368 -37.041037207500004, 146.107841408 -37.041520945500004, 146.107772288 -37.041586824, 146.10929904 -37.0417009505, 146.113832896 -37.0423742395, 146.11415904 -37.040941618, 146.11210416 -37.040652981, 146.112360128 -37.039631485, 146.11239504 -37.039209759, 146.11147776 -37.0388929465, 146.110604768 -37.038400199, 146.110463648 -37.0389774545, 146.110172416 -37.0388929465, 146.109334688 -37.0385339355, 146.109475808 -37.0383720235, 146.109194656 -37.038297339, 146.108585888 -37.038079076, 146.108255776 -37.0380393935))\n17348813\tPaynters Creek Road Rosemount\tCheck with carrier\tPOLYGON ((153.012338656 -26.6289672555, 153.011788192 -26.628486662500002, 153.011891168 -26.6278425295, 153.009634336 -26.6271808585, 153.008184608 -26.626755599, 153.00804096 -26.627716896000003, 153.0075312 -26.631126816000002, 153.007523296 -26.6311787455, 153.008326432 -26.632300049, 153.00877104 -26.632355401, 153.009260288 -26.631585634500002, 153.009394912 -26.631622523500003, 153.01037808 -26.6318913655, 153.010973152 -26.632054073000003, 153.011213632 -26.632066764, 153.01152576 -26.630119269, 153.011545568 -26.629993617, 153.011642752 -26.629390702000002, 153.012042368 -26.629442465, 153.012079456 -26.629210179, 153.012338656 -26.6289672555))\n132\tThe Sanctuary\tReady for service\tPOLYGON ((152.91255538226966 -27.682922783188548, 152.91288261176689 -27.68416262129697, 152.91306500198317 -27.684908417517214, 152.91325812103042 -27.685905971377569, 152.913365409394 -27.686399994677505, 152.91347806217308 -27.687307281646433, 152.91345660449318 -27.687820299213865, 152.91310791732502 -27.688347564757951, 152.9122496104433 -27.688984080130446, 152.91126255751817 -27.689535090440689, 152.91037206412565 -27.689976846699079, 152.91030769111285 -27.690290350055889, 152.91024331810007 -27.690347350569496, 152.91028623344192 -27.690409101092452, 152.91154955388131 -27.690644227763336, 152.91176144840071 -27.690646602778106, 152.91234348775026 -27.690520726949259, 152.91237567426109 -27.6904542264525, 152.91242931843391 -27.690420976188935, 152.91248832703118 -27.690420976188935, 152.91257415772387 -27.690458976489445, 152.91259025097929 -27.690477976634337, 152.91378651619817 -27.690230974489566, 152.9137972450381 -27.69016447381631, 152.9138777113063 -27.690135973515481, 152.91396890641445 -27.690150223667217, 152.91401182175628 -27.690188224061174, 152.91403596164392 -27.690276099922436, 152.91469042064736 -27.690147848641661, 152.91539852382365 -27.690337850485694, 152.91567747356356 -27.68908383220279, 152.9159778809744 -27.688475818153453, 152.916857645527 -27.687639793307319, 152.91669671299061 -27.687445036600188, 152.91647140743251 -27.687079273064981, 152.9163104748871 -27.68692251688946, 152.91604761840264 -27.686770510685506, 152.91601543190075 -27.686742009498751, 152.91595105887902 -27.686675506700478, 152.91590277912169 -27.686533000568343, 152.91586522819534 -27.686380993822954, 152.91597251654994 -27.6859724746445, 152.9152536845337 -27.685815716879315, 152.91496400596282 -27.68572071206437, 152.91469578506289 -27.685578204686191, 152.91450803043111 -27.685454698141061, 152.91428808928845 -27.68525518727354, 152.91388039352304 -27.684689904502818, 152.91320447684865 -27.683720841516447, 152.91276995898781 -27.68315555080261, 152.91260366202698 -27.682927533552327, 152.91255538226966 -27.682922783188548))\nAYCA-MAELG\tMuirhead\tReady for service\tPOLYGON ((130.900787162569 -12.3591377592361, 130.899117999989 -12.3603079998873, 130.898739999989 -12.3605229998873, 130.898771999989 -12.3605779998874, 130.898612999989 -12.3606679998873, 130.898653999989 -12.3607379998873, 130.898510999989 -12.3608199998873, 130.898489999989 -12.3607899998874, 130.898332999989 -12.3608789998873, 130.898307999989 -12.3608409998873, 130.898150999989 -12.3609299998874, 130.898136999989 -12.3609069998873, 130.897977999989 -12.3609969998873, 130.898009999989 -12.3610519998873, 130.897850999989 -12.3611419998873, 130.897873999989 -12.3611809998873, 130.897714999989 -12.3612719998873, 130.897668999989 -12.3611939998873, 130.89750999999 -12.3612839998873, 130.897532999989 -12.3613229998873, 130.897372999989 -12.3614129998874, 130.89739595875 -12.3614529281667, 130.897252999989 -12.3615339998874, 130.897211999989 -12.3614629998874, 130.897052999989 -12.3615539998873, 130.89707499999 -12.3615929998873, 130.89693199999 -12.3616749998873, 130.89671499999 -12.3613039998873, 130.895909999989 -12.3617559998874, 130.896235184939 -12.3623278629384, 130.8955236638 -12.3627490228027, 130.895993225824 -12.3635441455701, 130.896029318556 -12.363523300466, 130.896742116988 -12.3647259657531, 130.896327016491 -12.3653616702827, 130.896290845028 -12.3655927696026, 130.900757820864 -12.3655816395572, 130.900787162569 -12.3591377592361), (130.896843131739 -12.363863640841, 130.897064292293 -12.3637341216402, 130.897089499982 -12.3637404002962, 130.897178899939 -12.3638879355861, 130.896941942142 -12.3640267062619, 130.896843131739 -12.363863640841), (130.897783136586 -12.3616549362567, 130.898019315856 -12.3615185462916, 130.898117216304 -12.3616821766173, 130.897865187104 -12.3618277365765, 130.897776911992 -12.3616788923994, 130.897783136586 -12.3616549362567))\n114\tWest\tReady for service\tPOLYGON ((138.4939632858763 -34.877605383583415, 138.49356631894184 -34.8784239351548, 138.49351267476004 -34.878727589310444, 138.49351803917554 -34.879154463544957, 138.49377016682902 -34.880347059193312, 138.49384526868175 -34.881852081401419, 138.49386672635268 -34.881900488090871, 138.49392037053445 -34.881922491122054, 138.49562625546685 -34.881869683837053, 138.49629680771676 -34.881847680791743, 138.49660794396758 -34.881786072233687, 138.49683324952568 -34.88171126177847, 138.49697272439113 -34.88161004752574, 138.49712292809656 -34.881535236911034, 138.49729458947292 -34.881491230635454, 138.49779884477093 -34.88142522117716, 138.50073854584858 -34.881412019279587, 138.50074391026405 -34.881284400823567, 138.50088874955398 -34.881288801462681, 138.50113014836754 -34.881293202102285, 138.5025892700709 -34.881302003380767, 138.50323836464989 -34.881306404019668, 138.50356559414712 -34.881284400823567, 138.50349049229442 -34.880074215958807, 138.50342075486617 -34.879977400400143, 138.50313107628631 -34.879942194713834, 138.50078682560587 -34.879920191152515, 138.49918286462159 -34.8798981875853, 138.4987429823363 -34.879849779716558, 138.49822263379181 -34.879739761726611, 138.49729995388839 -34.87925568082165, 138.49616269726678 -34.878371125621982, 138.49557797570054 -34.878063069337919, 138.49523465294789 -34.877913441583487, 138.49461238045527 -34.877675796942739, 138.49425296444718 -34.877578978558304, 138.49410812516621 -34.877574577720573, 138.49397401470728 -34.877609784420244, 138.4939632858763 -34.877605383583415))\n251\tSequana\tReady for service\tPOLYGON ((153.11554227829404 -27.715761863642843, 153.1222585296691 -27.716616668658872, 153.12296663284533 -27.71878214471236, 153.12292371750348 -27.719427980123093, 153.11489854813058 -27.71901008705861, 153.11554227829404 -27.715761863642843))\n244\tAscot Grove\tReady for service\tPOLYGON ((150.75497303962794 -34.015506343998354, 150.75446878432993 -34.016048814300525, 150.75362120628816 -34.018983429608085, 150.7604876613596 -34.01994382712877, 150.76091681480494 -34.019783761629931, 150.76181803703744 -34.018343158557428, 150.759350404738 -34.016795816912889, 150.75847064018538 -34.016493459504979, 150.75497303962794 -34.015506343998354))\n17271426\tWoodscott\tCheck with carrier\tPOLYGON ((147.523613056 -34.4601080165, 147.521826016 -34.459882020500004, 147.520311136 -34.4596899535, 147.519780128 -34.4604040165, 147.51924912 -34.4611160075, 147.51862416 -34.4619549825, 147.517998848 -34.462793976, 147.516936832 -34.464219031, 147.518985952 -34.464477957, 147.520935008 -34.464724025500004, 147.52272096 -34.464950003, 147.523002112 -34.463426047, 147.523167008 -34.462529019, 147.523331872 -34.4616319725, 147.523471936 -34.4608700315, 147.523613056 -34.4601080165))\n270\tWoodgrove Shopping Centre\tReady for service\tPOLYGON ((144.5592192390933 -37.685222846336579, 144.55934798512777 -37.687515272755689, 144.5653132179757 -37.687753001810272, 144.56632172857175 -37.687396407941932, 144.56741606984255 -37.687498292079262, 144.56799542699329 -37.684611520658429, 144.5592192390933 -37.685222846336579))\n13\tLochiel Park\tReady for service\tPOLYGON ((138.65406 -34.87687, 138.65334 -34.87655, 138.6529 -34.8765, 138.64894 -34.8748, 138.64832 -34.87456, 138.6479 -34.87509, 138.64749 -34.87567, 138.64723 -34.87608, 138.64724 -34.87632, 138.64741 -34.87661, 138.64775 -34.87684, 138.6479 -34.87702, 138.64798 -34.87726, 138.64838 -34.87746, 138.64858 -34.87773, 138.64888 -34.87825, 138.64911 -34.87898, 138.64882 -34.87937, 138.64858 -34.87973, 138.64851 -34.88002, 138.64957 -34.88118, 138.65217 -34.87923, 138.65406 -34.87687))\n17354065\tLinton Hill\tCheck with carrier\tPOLYGON ((151.827287008 -27.466329999, 151.827627008 -27.464369998000002, 151.827590016 -27.464286008000002, 151.820788992 -27.4634309935, 151.820178016 -27.4673519945, 151.822048992 -27.4673380085, 151.821984 -27.467994999000002, 151.824286016 -27.467800009, 151.824648992 -27.465892992, 151.827287008 -27.466329999))\n285\tSummit Business Park\tUnder construction\tPOLYGON ((145.34356270786907 -38.094252133188668, 145.34329448696914 -38.095729741412661, 145.34095560071316 -38.095493326104133, 145.33814464566106 -38.095155588623278, 145.33840213773007 -38.09344999049997, 145.33893857953 -38.090123115274579, 145.34187828060763 -38.090460876010169, 145.34189973828754 -38.090798635185784, 145.34451757428337 -38.091187056308293, 145.34434591290704 -38.092031442931209, 145.34194265362936 -38.091896341727434, 145.34151350018402 -38.093669525163264, 145.34356270786907 -38.094252133188668))\nAYCA-RI32N\tDeepdale North\tReady for service\tPOLYGON ((114.671990385878 -28.7710969532846, 114.67198883148 -28.7711022256125, 114.672518124105 -28.7711029055237, 114.672670664945 -28.7710894733066, 114.672815443689 -28.7710660194565, 114.67311173999 -28.7709956999862, 114.673999209184 -28.7707587376567, 114.674600959431 -28.7703874728508, 114.68132462446 -28.7724604605487, 114.68175622224 -28.7713448263177, 114.681785965742 -28.7711062655176, 114.681166857321 -28.7709168318716, 114.68177153824 -28.7693826416671, 114.682457823475 -28.7694016065395, 114.682536019543 -28.7693682256804, 114.68281982198 -28.7685228472608, 114.680592719367 -28.7682085801752, 114.675691695748 -28.7697570695963, 114.674125372663 -28.7696027418065, 114.673716115237 -28.7693531936976, 114.672692182015 -28.7687242548737, 114.671990385878 -28.7710969532846))\n17349923\tLot 50 and 51 Link Road ALbany\tCheck with carrier\tPOLYGON ((117.8126136 -34.9695262735, 117.812627264 -34.969660565, 117.813928672 -34.9696731635, 117.81389088 -34.967411002, 117.813930464 -34.966578872, 117.812224448 -34.966578872, 117.812224448 -34.966315987, 117.808880384 -34.966315987, 117.808880384 -34.966148229, 117.807256064 -34.9654099495, 117.807245632 -34.9693193695, 117.808818848 -34.9693193695, 117.808825664 -34.9695374475, 117.8126136 -34.9695262735))\n17339915\tSamford Skies\tCheck with carrier\tPOLYGON ((152.835657856 -27.386634959000002, 152.833727872 -27.386432014, 152.833822912 -27.385288011, 152.832998176 -27.3852039655, 152.832998176 -27.3852039655, 152.83172592 -27.386492046500003, 152.830847168 -27.387062013, 152.830085056 -27.386255968, 152.828934112 -27.3928640385, 152.82908208 -27.392883038, 152.831575072 -27.388805046, 152.834958016 -27.390450954000002, 152.835657856 -27.386634959000002))\n17147547\tSummit View\tCheck with carrier\tPOLYGON ((151.867271872 -26.512940972, 151.86534192 -26.513997026000002, 151.865636032 -26.514755008, 151.865682112 -26.5147409665, 151.865748 -26.514917993, 151.86569904 -26.514988015500002, 151.866584992 -26.515531971, 151.867818016 -26.5147890295, 151.870425856 -26.515122029500002, 151.870780096 -26.5154550295, 151.870370048 -26.518372017, 151.86954384 -26.5189259625, 151.870023008 -26.519506011500003, 151.870350976 -26.5192859725, 151.870470848 -26.519430957, 151.87110912 -26.5202019815, 151.872067072 -26.5190200165, 151.872285952 -26.5176620055, 151.872928928 -26.5136930155, 151.867271872 -26.512940972))\nAYCA-1WH7YL\tL9001-9003 Wungong Sth Rd Darling Downs\tContracted\tPOLYGON ((116.001872 -32.1933860000136, 116.004069 -32.1930040000135, 116.005121 -32.1927290000135, 116.005179 -32.1928840000136, 116.005663 -32.1927590000136, 116.005837 -32.1927590000136, 116.006179 -32.1930200000136, 116.006647 -32.1930640000136, 116.007459 -32.1925430000135, 116.007533 -32.1923730000136, 116.006214 -32.1917450000135, 116.006305 -32.1913810000135, 116.006271 -32.1911010000135, 116.006021 -32.1904830000136, 116.005734 -32.1901600000135, 116.005277 -32.1900430000136, 116.003659 -32.1900720000136, 116.003581 -32.1900330000135, 116.003347 -32.1896650000136, 116.002569 -32.1886740000135, 116.002717 -32.1884130000136, 116.002628 -32.1878150000135, 116.002292 -32.1877310000135, 116.001629 -32.1896630000135, 115.999290370028 -32.1931613661561, 115.999792 -32.1934020000135, 116.001872 -32.1933860000136))\n17312227\tTrilla Hills Estate\tCheck with carrier\tPOLYGON ((149.22698688 -21.298979967, 149.226851168 -21.2989879775, 149.225717888 -21.298042979, 149.225325856 -21.2979960075, 149.226123968 -21.2971550345, 149.22687888 -21.2963599785, 149.222549888 -21.2958430145, 149.221664992 -21.295919974500002, 149.220520928 -21.295782982000002, 149.22041616 -21.2963720405, 149.220108 -21.2987790015, 149.219949952 -21.300019019500002, 149.221320128 -21.3001919945, 149.222048032 -21.300393959, 149.222945888 -21.300504034, 149.224052896 -21.2993379975, 149.224688992 -21.2986670395, 149.22517104 -21.298159973, 149.225634016 -21.298214973500002, 149.226723008 -21.299122972, 149.226730912 -21.2992499745, 149.22698688 -21.298979967))\nAYCA-10UTGP\tJimboomba Woods\tReady for service\tPOLYGON ((153.055174379743 -27.8623843557346, 153.055174838104 -27.8623821359339, 153.053434190498 -27.8621313960063, 153.053025436909 -27.8627994820007, 153.052884492446 -27.8629168729896, 153.052372456696 -27.8633433381995, 153.051692513404 -27.8640596626272, 153.05055112169 -27.8643861683161, 153.050607103079 -27.8647029361291, 153.050356614427 -27.866491330059, 153.049665650738 -27.8668012660888, 153.049899227008 -27.8670765463064, 153.04989619833 -27.8670809641327, 153.049906954059 -27.8670922537776, 153.05022469497 -27.8671258431554, 153.050415228335 -27.8670101186494, 153.050561021561 -27.8669407808292, 153.050664018312 -27.8669010237043, 153.050502558984 -27.8678321938874, 153.050903342073 -27.8683954800253, 153.051724321482 -27.8678117466373, 153.051939241443 -27.8672872698673, 153.053000587082 -27.8675593812259, 153.053207625675 -27.8676084315537, 153.054173367268 -27.8677505324474, 153.054618977039 -27.8653591233497, 153.055819 -27.8655359999836, 153.056244031654 -27.8641907938923, 153.05487302388 -27.8639933237239, 153.055174379743 -27.8623843557346))\n268\tBurwood Brickworks\tUnder construction\tPOLYGON ((145.13495121956865 -37.851994880682255, 145.13852392197882 -37.851207029511862, 145.13847027779704 -37.851071484376149, 145.13679657936652 -37.850910524203051, 145.13719354630098 -37.84880106630176, 145.138223514559 -37.84893661561204, 145.13855610848071 -37.847256479702871, 145.138542697442 -37.847230877138017, 145.13818864584937 -37.847184281013043, 145.13832812071485 -37.846510751915723, 145.13491635085003 -37.846099853785567, 145.13462667227915 -37.847705308736089, 145.13317291499129 -37.84753163323699, 145.13267938853321 -37.850263412859817, 145.1352113938454 -37.850576864044648, 145.13495121956865 -37.851994880682255))\n17238926\tLane Court Mt Warren Park\tCheck with carrier\tPOLYGON ((153.198027008 -27.7269029985, 153.19886112 -27.727338951, 153.19856592 -27.728036993, 153.197235008 -27.7277180345, 153.197287936 -27.7270000125, 153.197553952 -27.7268349555, 153.19758096 -27.7265660395, 153.197430112 -27.726552997000002, 153.197310976 -27.726543007, 153.197258048 -27.726483955000003, 153.197237888 -27.7264829745, 153.197036992 -27.7264659545, 153.197064 -27.7261949665, 153.196934048 -27.726392972, 153.196748992 -27.7265050265, 153.196565056 -27.7266159895, 153.19638 -27.726728044, 153.196184896 -27.726470006, 153.19568592 -27.726068963, 153.195471008 -27.7262219765, 153.195330976 -27.726275978, 153.195066016 -27.725869977000002, 153.19492992 -27.725942978000003, 153.19477008 -27.726062044000003, 153.194676128 -27.7261360255, 153.194577856 -27.725993002, 153.193898176 -27.7258120165, 153.193887008 -27.726199018000003, 153.193503968 -27.726728044, 153.193354912 -27.726935040500003, 153.19290816 -27.7275529775, 153.19272096 -27.7280000115, 153.192705856 -27.7280710145, 153.19271088 -27.7280720135, 153.193086016 -27.728178037, 153.193940992 -27.7281009845, 153.19456704 -27.728184956, 153.194995072 -27.728297991, 153.195452992 -27.728511037, 153.195858016 -27.728699034, 153.196512128 -27.7290019715, 153.19768608 -27.729063003, 153.197664832 -27.729422994500002, 153.19770192 -27.729439015500002, 153.198029888 -27.729582039, 153.198348832 -27.7297199935, 153.19858608 -27.72999396, 153.19881504 -27.7302590095, 153.199123936 -27.730616041, 153.199229056 -27.730737993, 153.199376992 -27.7309089885, 153.19958112 -27.7311449745, 153.200433952 -27.7316009995, 153.201233888 -27.7318320275, 153.201714112 -27.732216957000002, 153.20187504 -27.7323450325, 153.20192688 -27.732283020500002, 153.202061888 -27.7321200355, 153.202195072 -27.731960991, 153.202354912 -27.731768036000002, 153.20237904 -27.7317389725, 153.202245856 -27.731527018, 153.201957856 -27.7310680145, 153.201795136 -27.7308080155, 153.201637088 -27.7305570075, 153.201528 -27.7305630385, 153.20144592 -27.730499047000002, 153.201439072 -27.730403013500002, 153.200882176 -27.729927008500002, 153.200796832 -27.729763024500002, 153.200698912 -27.729575009, 153.200599936 -27.7294490055, 153.200414176 -27.729212039, 153.20034 -27.7291170045, 153.200315872 -27.7290860355, 153.200016 -27.7288849775, 153.199680128 -27.7286589815, 153.199719008 -27.7284179635, 153.19976688 -27.7281140455, 153.199811168 -27.7278399865, 153.19989216 -27.727331033000002, 153.199905856 -27.727241049, 153.19973808 -27.727125035500002, 153.199529984 -27.726980032500002, 153.199171072 -27.7267300235, 153.198852128 -27.726507006000002, 153.198811072 -27.726503047, 153.198378016 -27.726458036500002, 153.19831392 -27.726539048, 153.198027008 -27.7269029985))\n17338860\tBlind Creek Estate Stage 1\u00262\tCheck with carrier\tPOLYGON ((143.776407968 -37.521863992, 143.775775072 -37.5253239545, 143.778067936 -37.526399008, 143.776852928 -37.527290005000005, 143.777082976 -37.527488991, 143.778336128 -37.5265700035, 143.780627168 -37.5285519825, 143.781432128 -37.5241329985, 143.776407968 -37.521863992))\n17344475\tQuilpie Industrial Estate\tCheck with carrier\tPOLYGON ((144.249904096 -26.6136479975, 144.24937488 -26.616488043500002, 144.256145056 -26.6169330055, 144.256691168 -26.616846962, 144.256915072 -26.6140790105, 144.249904096 -26.6136479975))\n17320060\tWindella Ridge P/L\tCheck with carrier\tPOLYGON ((151.473242176 -32.697926018000004, 151.472464928 -32.702234039000004, 151.473989888 -32.702482975, 151.47521712 -32.702819046, 151.47823104 -32.703852955500004, 151.478592832 -32.701705013, 151.477335008 -32.701597028500004, 151.477296832 -32.701683960000004, 151.477277056 -32.701744973000004, 151.477286048 -32.7017989745, 151.477049888 -32.7018159945, 151.475712832 -32.702111014, 151.47588384 -32.701095993, 151.476606016 -32.7011799645, 151.476770176 -32.7002979585, 151.47689904 -32.700286988, 151.477109984 -32.7002789775, 151.47723888 -32.7002519675, 151.47739008 -32.700186995500005, 151.477486912 -32.700149015, 151.47759888 -32.700102025, 151.47703584 -32.699583988, 151.476855136 -32.699872976500004, 151.476463072 -32.700218038500005, 151.47603504 -32.700105984000004, 151.47592704 -32.700067023, 151.475915872 -32.699805026, 151.476012 -32.699495965000004, 151.476332032 -32.6990369615, 151.477106048 -32.6991470365, 151.477143136 -32.699156046, 151.477170112 -32.699162965, 151.47719712 -32.6991709755, 151.477224128 -32.699178986, 151.477268032 -32.6991940265, 151.477293952 -32.6992040165, 151.47732816 -32.699217965500004, 151.477336096 -32.699222017000004, 151.477603936 -32.6991609855, 151.478160128 -32.6986039875, 151.478160128 -32.6986039875, 151.478160128 -32.6986039875, 151.473242176 -32.697926018000004))\n17358725\tRusty Lane Branxton\tCheck with carrier\tMULTIPOLYGON (((151.384457152 -32.636706021500004, 151.38445810109187 -32.636701028752505, 151.384457888 -32.6367009895, 151.38445707333042 -32.636706003060823, 151.384457152 -32.636706021500004)), ((151.38652608 -32.63708196, 151.386855136 -32.635338039000004, 151.384803136 -32.6348859545, 151.38445810109187 -32.636701028752505, 151.38652608 -32.63708196)), ((151.382246048 -32.638311988, 151.383143168 -32.637986018, 151.38336384 -32.637819962, 151.384316032 -32.637573986, 151.38445707333042 -32.636706003060823, 151.381338112 -32.635974957, 151.38162288 -32.634185045, 151.37800704 -32.633387991, 151.377491872 -32.636005019500004, 151.379636032 -32.6366199965, 151.379612992 -32.636781982500004, 151.379835136 -32.636797023, 151.379818912 -32.637284997500004, 151.380965888 -32.6375039635, 151.380828 -32.6380490105, 151.382246048 -32.638311988)))\n62\tJindalee Beachside\tReady for service\tPOLYGON ((115.68944719351767 -31.649101558193706, 115.68863180197782 -31.648188231954176, 115.68801489390073 -31.647850298970727, 115.68717268027447 -31.647389064132792, 115.68431344546504 -31.647731565468515, 115.68458166636502 -31.648110598809325, 115.68494644678862 -31.648439397564122, 115.68508592165406 -31.648759061905675, 115.68518248118667 -31.648950859982648, 115.68524685419945 -31.649096991585456, 115.68531511500001 -31.649295854, 115.685408808 -31.650038780000006, 115.68550434626843 -31.650179271615041, 115.68557944812115 -31.650736389755668, 115.68565756399998 -31.650886188000012, 115.685526656 -31.651069685, 115.68564711000002 -31.651477835000005, 115.68545141299998 -31.65163395, 115.685568086 -31.652068055000008, 115.685907141 -31.652291204999997, 115.68616000000002 -31.652700987, 115.68649789300001 -31.65313625400001, 115.686846558 -31.653501088, 115.68755753299999 -31.654004972, 115.688099671 -31.654037896, 115.68823483504336 -31.653668054784053, 115.68767693556354 -31.65247165436806, 115.6875320962826 -31.652311828719, 115.68714049376362 -31.652074372960758, 115.68701174772912 -31.651846049545167, 115.6869366458764 -31.65172732114689, 115.68678644217097 -31.651576627192128, 115.6868561796082 -31.651448765463744, 115.68684545076826 -31.651261539043883, 115.68674352682916 -31.650891651592989, 115.68669524706286 -31.65084598637382, 115.68783786810891 -31.650115339812089, 115.68944719351767 -31.649101558193706))\nAYAA-H8QSJ\tMinto Renewal\tReady for service\tPOLYGON ((150.854598026553 -34.022587931237, 150.853163219664 -34.0263256059331, 150.853655564148 -34.0264342371452, 150.854004719697 -34.0264139774564, 150.854358705825 -34.0262965408747, 150.854504157988 -34.0265459627033, 150.854603374159 -34.0265034421953, 150.854769656637 -34.0268340665438, 150.855302008218 -34.0266177871911, 150.855717902792 -34.0267131782082, 150.85587049493 -34.0266583249837, 150.857137861272 -34.0269478197576, 150.85833529926 -34.0237962657839, 150.858493919992 -34.0238232900169, 150.858605359797 -34.0235163732842, 150.854598026553 -34.022587931237), (150.856926410431 -34.0238418542272, 150.857559919301 -34.0240101157436, 150.857587363501 -34.024054806368, 150.857471889031 -34.0243515434983, 150.857417830023 -34.0243740629143, 150.85707297618 -34.0242800932109, 150.857005330696 -34.0242689785927, 150.856912079989 -34.0242653794759, 150.856926410431 -34.0238418542272))\n204\tCollege Green\tReady for service\tPOLYGON ((145.36312792316772 -38.080488774943511, 145.37428591267451 -38.081958216403635, 145.37407133595633 -38.083140504185813, 145.36278460041504 -38.081890656524607, 145.36312792316772 -38.080488774943511))\nAYAA-FPSKZ\tGovernors Hill\tReady for service\tPOLYGON ((147.425006282888 -35.1389166799533, 147.424900230645 -35.1389660262275, 147.424133974319 -35.1403530544073, 147.42322591093 -35.1412157152418, 147.422037469379 -35.1423431403189, 147.421517644278 -35.142836287659, 147.422970424102 -35.1435584680389, 147.423509948117 -35.14428096481, 147.424177952855 -35.1442185844746, 147.424431371889 -35.1434437377229, 147.42489237308 -35.1434005047872, 147.424603876355 -35.142941064967, 147.42662469803 -35.1420860985028, 147.427236337263 -35.14259555733, 147.427757422372 -35.1409321653845, 147.42700019018 -35.1406141502736, 147.426762264737 -35.140417811678, 147.426456496814 -35.1403431344304, 147.42600214067 -35.1401188276424, 147.426243352402 -35.1395904906735, 147.425006282888 -35.1389166799533))\n17362563\tMurray Banks\tCheck with carrier\tPOLYGON ((144.725100992 -36.092428007, 144.729314016 -36.096424007, 144.73214 -36.094661993, 144.731814176 -36.094320705, 144.731164736 -36.094721544500004, 144.730384608 -36.095213829500004, 144.730020576 -36.094853616, 144.730310336 -36.0946795125, 144.729099296 -36.0934307995, 144.729842272 -36.0929865405, 144.730170016 -36.092598577000004, 144.729314016 -36.091701993, 144.729252992 -36.0917440065, 144.728634016 -36.091419997500005, 144.728546016 -36.091695, 144.727212 -36.0917159975, 144.726488 -36.091399, 144.726375008 -36.091582002, 144.725100992 -36.092428007))\n190\tHighfields\tReady for service\tPOLYGON ((153.16209955950143 -27.061379929370613, 153.16293640871217 -27.063214328342891, 153.16405220766285 -27.063434072040351, 153.16860123415825 -27.061790760914043, 153.16750689287849 -27.059402184365585, 153.16209955950143 -27.061379929370613))\n57000359\t(RAPA) Berne Court\tCheck with carrier\tPOLYGON ((147.001377952 -41.355567007, 147.001123072 -41.355311041, 147.000714112 -41.354632978999994, 146.999936896 -41.352702023, 146.999642048 -41.3528490055, 146.998654912 -41.351984001, 146.998423072 -41.352082014, 146.997079936 -41.352570987499995, 146.99747088 -41.353014969, 146.997617056 -41.354287029, 146.99728512 -41.354303031499995, 146.997371872 -41.3545660275, 146.996548928 -41.354705961499995, 146.99644704 -41.354349022499996, 146.99585088 -41.354445962499994, 146.99594304 -41.3547350435, 146.997092896 -41.3554809635, 146.996880128 -41.355704961499995, 146.998316896 -41.357261977, 147.001377952 -41.355567007))\nAYAA-F6JJR\tGoogong Township\tReady for service\tPOLYGON ((149.227824858636 -35.4180637043333, 149.227981577302 -35.4183759578603, 149.228136320335 -35.4186926108255, 149.228330439505 -35.4188815455881, 149.228289683582 -35.4189105603116, 149.228529359343 -35.4191167963343, 149.228623192156 -35.4190486208498, 149.228815258881 -35.4192206026788, 149.228894475989 -35.419163211117, 149.229993301923 -35.4184019164663, 149.23028100002 -35.4183100000133, 149.23055900002 -35.4188930000133, 149.23065600002 -35.4188450000132, 149.230929174148 -35.41935220313, 149.231909588924 -35.4190086182513, 149.233049400512 -35.4183562871332, 149.233315134242 -35.4186228156043, 149.233597926284 -35.4185095963816, 149.233857414964 -35.4185440979419, 149.233895430258 -35.4185620537834, 149.234037914506 -35.4183371199474, 149.233913205505 -35.4182742752989, 149.233988877125 -35.4181623173686, 149.234132415837 -35.4182244096253, 149.234320532454 -35.4179464004768, 149.234471345939 -35.4180172564525, 149.234434713181 -35.4180756953033, 149.234615117141 -35.4181489827432, 149.234662606453 -35.4180759039031, 149.234800086642 -35.4181325673297, 149.23488105353 -35.4179941887874, 149.234603995192 -35.4178781331553, 149.23474590788 -35.4176733064341, 149.234884070104 -35.417734532116, 149.2353226588 -35.4171587760764, 149.235143828791 -35.4170769212388, 149.235302005897 -35.4168456282813, 149.235341593757 -35.4168631802894, 149.235574705811 -35.4165294460989, 149.234981878309 -35.4163193333831, 149.234580104263 -35.4161313529661, 149.234509135094 -35.4164989904249, 149.234457307649 -35.4165041589033, 149.234196317193 -35.4169205954451, 149.233705182176 -35.4176247139441, 149.233643580899 -35.4177051665972, 149.233428775123 -35.4178469424377, 149.233274438517 -35.4177640106826, 149.232754808585 -35.4174341140808, 149.232499129548 -35.4173297599169, 149.232442862857 -35.4170567338078, 149.232945225468 -35.4168135951207, 149.23346512122 -35.4165384467604, 149.233892729593 -35.4164450357315, 149.23391335991 -35.4163409980957, 149.234151818106 -35.4142100878741, 149.233969127814 -35.4142191813835, 149.2337850549 -35.4142363519446, 149.233603517036 -35.4142619899785, 149.233423305363 -35.4142945715337, 149.23324921044 -35.4143366377371, 149.232900707311 -35.4144408528475, 149.232570535168 -35.4145743987543, 149.23225728001 -35.4147345000195, 149.23195287395 -35.4149229151946, 149.231893785296 -35.4149744357431, 149.231863849172 -35.4150013211382, 149.231834878066 -35.4150263271801, 149.231729552636 -35.4151191581941, 149.231581694447 -35.4152696202321, 149.231318323673 -35.415561204718, 149.231065110333 -35.4158543787077, 149.230492052848 -35.4165233405405, 149.230272240221 -35.4167498697907, 149.230084023038 -35.4169320482753, 149.229991487147 -35.4170121477997, 149.229898065598 -35.4170810945863, 149.229775011557 -35.4171693613036, 149.229642104387 -35.4172558991409, 149.229468000001 -35.4173589000241, 149.229287098244 -35.4174580369228, 149.229130537669 -35.4175303602965, 149.229095660691 -35.4175477677375, 149.22897396334 -35.4175979216207, 149.228929764141 -35.4176165451685, 149.228893374361 -35.4176314984788, 149.228816831202 -35.4176592338565, 149.228768965251 -35.4176768711806, 149.228709493866 -35.417698716621, 149.228690943792 -35.417704958799, 149.228622660308 -35.4177267206616, 149.228539180423 -35.4177528997139, 149.228495113324 -35.417766999868, 149.228458679876 -35.417776876575, 149.228292368172 -35.4178220718915, 149.228076869713 -35.4178711690331, 149.227824858636 -35.4180637043333), (149.229255926946 -35.4189070928355, 149.22916762765 -35.418822148639, 149.229323555728 -35.418717147441, 149.229407605202 -35.4188037405196, 149.229255926946 -35.4189070928355), (149.23348216701 -35.4154091807694, 149.233328540101 -35.4151794960297, 149.23348729096 -35.4151318015243, 149.233625728133 -35.4153552129943, 149.23348216701 -35.4154091807694))\nAYCA-PXLYW\tParamount Park\tReady for service\tPOLYGON ((150.514225099238 -23.271600332771, 150.513003999994 -23.275180999939, 150.514705924047 -23.2752173464174, 150.516578420536 -23.2754156549094, 150.516820785705 -23.2755856240845, 150.518703404749 -23.2755212013386, 150.519575390266 -23.2749629834395, 150.519802694857 -23.2748804006593, 150.520165909224 -23.2749978877793, 150.520245271357 -23.2746102154817, 150.520843971252 -23.2732159237292, 150.519941663745 -23.2728420081795, 150.519697081286 -23.2728015794416, 150.518985087242 -23.2725568501093, 150.518752192893 -23.2729748440493, 150.518492141124 -23.2728839656028, 150.518932402669 -23.2735649118513, 150.517875474631 -23.273690313786, 150.517679525678 -23.2736980559157, 150.516701651105 -23.2736971442065, 150.515976455502 -23.2731919855145, 150.515892235481 -23.2721091999031, 150.515275918505 -23.2719575284693, 150.51511224866 -23.2718585499202, 150.514225099238 -23.271600332771))\n10380\tHalls Head-Port Mandurah\tReady for service\tPOLYGON ((115.70585131645203 -32.538752015753069, 115.70602834224701 -32.538752015753069, 115.70605583488941 -32.538911428583006, 115.70612289011478 -32.53904427239177, 115.70626236498356 -32.539111259514428, 115.70643939077854 -32.539176550712483, 115.70656042546034 -32.53921329465588, 115.70667207241058 -32.539238167470558, 115.70685982704163 -32.539276607261534, 115.70695638656616 -32.539286782497555, 115.70727221667767 -32.539311090001185, 115.70753306150436 -32.539309606113079, 115.70765443146229 -32.539306779659462, 115.70779055356979 -32.539349176454408, 115.70790387690067 -32.539332217738831, 115.70794008672237 -32.5392299000869, 115.70793271064758 -32.53918071973758, 115.70811040699482 -32.5391812850291, 115.70826329290867 -32.539179023862985, 115.70833202451468 -32.539077553974792, 115.70839673280716 -32.538982302192665, 115.70855230093002 -32.539056920808008, 115.70857778191566 -32.539074444867758, 115.70858381688595 -32.5391072318091, 115.70914104580879 -32.53928303744555, 115.70932041853666 -32.53933885990282, 115.70950113236904 -32.539382245940573, 115.70987462997437 -32.539465626214863, 115.710169672966 -32.539517632855215, 115.71057736873627 -32.539571900621738, 115.71086771786213 -32.539604934695326, 115.71118254214525 -32.539676284719746, 115.7114477455616 -32.539736328927624, 115.71158722043037 -32.539776464368686, 115.71166902780533 -32.539800489095953, 115.71174178272486 -32.539829177438328, 115.71175469085574 -32.539833063789416, 115.71177162230015 -32.539849386462194, 115.71233790367842 -32.540034235224581, 115.71238903328776 -32.540052607022695, 115.71249179542065 -32.540091329107923, 115.71278315037489 -32.540225301741145, 115.71290938183665 -32.540292853267339, 115.71297279093415 -32.540307197361017, 115.71306838653982 -32.540289885523528, 115.71313619613647 -32.540316312572067, 115.71265205740929 -32.540635132395074, 115.71241468191147 -32.540810369758979, 115.71218937635422 -32.541008217984626, 115.71191847324371 -32.541258071406709, 115.71163684129715 -32.541497749149244, 115.71088314056396 -32.542213386903725, 115.71049019694328 -32.542533895802315, 115.71015425026417 -32.542905842966434, 115.70972442626953 -32.543420235441751, 115.70964261889458 -32.54343747601763, 115.70945084095001 -32.543450194473124, 115.70918932557106 -32.543411756468785, 115.70896670222282 -32.543298703419516, 115.70883259177208 -32.543184943644981, 115.70871323347092 -32.543085456717805, 115.70861399173737 -32.542980317004528, 115.70852547883987 -32.542912484866079, 115.70837393403053 -32.542766645594924, 115.70815801620483 -32.542595934209167, 115.70805206894875 -32.542458008216734, 115.70790722966194 -32.542311037663758, 115.70771276950836 -32.542106409031682, 115.7072514295578 -32.541632708917284, 115.70690274238586 -32.541238357318633, 115.70676863193512 -32.541030334562763, 115.70674180984497 -32.540898624253487, 115.70667743682861 -32.540794047260889, 115.70641458034515 -32.540383652048313, 115.70616245269775 -32.539931423746587, 115.7059720158577 -32.53932769541413, 115.70592641830444 -32.539092534216188, 115.70585131645203 -32.538752015753069))\n17335365\tMundoolun\tCheck with carrier\tPOLYGON ((153.076204096 -27.860803020000002, 153.078363008 -27.8601029985, 153.078147008 -27.8590529755, 153.077175008 -27.8578119585, 153.073901152 -27.856538992, 153.072173888 -27.8581619785, 153.071777888 -27.8592120015, 153.073541152 -27.859785039000002, 153.073901152 -27.860389027, 153.074657152 -27.860293974, 153.076204096 -27.860803020000002))\nON-Q-VT\tVue Terraces\tReady for service\tPOLYGON ((153.38100671768188 -28.068610116288863, 153.38199377059937 -28.0687805214635, 153.38401079177856 -28.067455140759694, 153.38220834732056 -28.0620777141967, 153.38019132614136 -28.0639144007095, 153.38034152984619 -28.065391301115952, 153.38000893592834 -28.066082407796298, 153.38040590286255 -28.068553314503923, 153.38100671768188 -28.068610116288863))\nAYCA-F193I\tEdmondson Park South P1\tReady for service\tPOLYGON ((150.853549054355 -33.9861716630198, 150.856619399984 -33.9852032100121, 150.857550173817 -33.9819919166502, 150.856795646769 -33.9819430055729, 150.856164343204 -33.9819393396364, 150.855813954582 -33.9813379967809, 150.854965699095 -33.9815807811402, 150.853419518867 -33.9820911999524, 150.851969999809 -33.982579697111, 150.853455597798 -33.9862011396577, 150.853549054355 -33.9861716630198))\nAYCA-WDIWW\tMuirhead\tReady for service\tPOLYGON ((130.89374145864 -12.3585879914992, 130.89389710448 -12.3588576318572, 130.893856627081 -12.3588772649386, 130.893882805526 -12.3589230431014, 130.893923587895 -12.35890310552, 130.894042475487 -12.3591079613984, 130.893882137175 -12.3591928979786, 130.893903880711 -12.3592322848465, 130.893587845389 -12.3594163497661, 130.893610207447 -12.359454451901, 130.893483086105 -12.3595292766608, 130.893964063243 -12.360356859143, 130.894318125096 -12.3601568019767, 130.894344614279 -12.3601991670196, 130.894596304266 -12.3600569910153, 130.894677856092 -12.3601992164848, 130.894637762565 -12.3602222189218, 130.894720164384 -12.3603615774636, 130.894800096635 -12.3603165684904, 130.894883592055 -12.3604581429513, 130.894792620107 -12.3605104485967, 130.894883503846 -12.3606655879247, 130.894923165526 -12.3606432852255, 130.89501555006 -12.3607991339343, 130.895054927657 -12.3607768418063, 130.895140303863 -12.3609197476343, 130.895063321983 -12.3609643585524, 130.895151272824 -12.3611154476871, 130.895230308658 -12.3610709371301, 130.895315829319 -12.36121562528, 130.895275794969 -12.3612402394637, 130.895357634134 -12.3613753860861, 130.89560600651 -12.3612372024731, 130.895910294019 -12.3617549464015, 130.896715492438 -12.3613026395941, 130.896932281073 -12.3616742272648, 130.897074499092 -12.3615929602003, 130.897052115061 -12.3615535733934, 130.897212134956 -12.3614620352312, 130.897254435045 -12.361531694086, 130.897394069932 -12.3614524762698, 130.897371715127 -12.3614128186506, 130.897532556561 -12.3613229396889, 130.897509857406 -12.3612839336552, 130.897669234857 -12.3611936681709, 130.897715115913 -12.3612713109992, 130.897873885832 -12.3611809748422, 130.897850938772 -12.3611419900641, 130.898009986142 -12.361051993722, 130.897977934558 -12.3609969909372, 130.898137046093 -12.3609068000644, 130.898151073953 -12.3609296118314, 130.898308947205 -12.3608391239618, 130.898333333556 -12.3608766815399, 130.89849000712 -12.3607897642314, 130.898511004983 -12.3608198260052, 130.898653286092 -12.3607377708168, 130.898612150398 -12.3606678842207, 130.89877025594 -12.3605777666908, 130.898737568572 -12.3605224171113, 130.899114564708 -12.3603069263942, 130.898995476267 -12.3600961799541, 130.8995394902 -12.3597877984403, 130.899116698303 -12.3590797915682, 130.899173195851 -12.3590457107041, 130.897985978729 -12.357016333264, 130.897254995298 -12.3574260118585, 130.897158970356 -12.3572802030405, 130.896996494581 -12.3573731256352, 130.897078259707 -12.3575374973419, 130.896835603422 -12.3576749948664, 130.896787337179 -12.3575939837965, 130.896639122285 -12.3576790810902, 130.896668422753 -12.3577292604573, 130.896517665315 -12.3578166741117, 130.896495268606 -12.3577748724156, 130.896352831659 -12.3578571264154, 130.89632216454 -12.3578059055037, 130.896164823758 -12.3578943442703, 130.896188874397 -12.3579339936138, 130.896037325426 -12.3580191776986, 130.896059904992 -12.3580584985933, 130.895902461826 -12.3581482236289, 130.895879584879 -12.3581079327842, 130.895728384255 -12.3581954231071, 130.895581656403 -12.3579467538518, 130.895605714351 -12.3579330618172, 130.895529438984 -12.3578018581869, 130.895489243169 -12.3578246112495, 130.895328889208 -12.3575507994222, 130.895163511764 -12.3576449654693, 130.895186370722 -12.3576840239407, 130.895015233806 -12.3577802565645, 130.895054193974 -12.3578510328088, 130.894799948922 -12.3579953087198, 130.894769115886 -12.3579465956514, 130.894637535575 -12.3580225749228, 130.894656108519 -12.3580526250925, 130.894139684129 -12.358345702216, 130.894105523722 -12.358284209513, 130.894052525049 -12.3583142137208, 130.893987062555 -12.3581963571766, 130.893949063005 -12.3582179998401, 130.894034810684 -12.3583661205799, 130.893948856834 -12.3584150031128, 130.893970349251 -12.3584512809536, 130.89374145864 -12.3585879914992))\nAYCA-19Q49D\tLot 10,50 \u0026 700 Ocean Reef Gnangara\tReady for service\tPOLYGON ((115.855602468613 -31.7874542885804, 115.855689 -31.7907460000114, 115.856324 -31.7907370000114, 115.856335 -31.7912640000113, 115.855703 -31.7912740000114, 115.855732272554 -31.7924396170656, 115.857022 -31.7932690000114, 115.857538 -31.7935310000113, 115.857931 -31.7935890000113, 115.858813612118 -31.7928999663155, 115.858802275284 -31.7920821288681, 115.85868092483 -31.7920819118731, 115.858690851778 -31.7877473878707, 115.858827651508 -31.787630998176, 115.858743626803 -31.7874537637698, 115.858537 -31.7874540000113, 115.855602468613 -31.7874542885804), (115.856744892211 -31.7917864249926, 115.856739429323 -31.7922286101717, 115.856454190017 -31.7922331875583, 115.856459654264 -31.7917910024237, 115.856744892211 -31.7917864249926))\n327\tMadison Rise\tUnder construction\tPOLYGON ((151.46842898041183 -33.23597707399918, 151.46799211100227 -33.238103314187939, 151.46782818183209 -33.2381615833139, 151.46793501172621 -33.238380744237617, 151.46756925608526 -33.240157819516362, 151.47144413979356 -33.240724228499467, 151.47230623454772 -33.2365546248921, 151.47149342654049 -33.236424709168709, 151.46842898041183 -33.23597707399918))\nAYCA-1FTKU1\tMolonglo Valley - Coombs Stage 2\tReady for service\tPOLYGON ((149.042577119006 -35.3176259170474, 149.042656008006 -35.3183621090476, 149.042734899006 -35.3190983020474, 149.045282409006 -35.3189148920475, 149.044911646006 -35.3181997160476, 149.044809611013 -35.3180187490436, 149.044730154006 -35.3179052850474, 149.044627336019 -35.3177817950396, 149.044283194019 -35.3174031980395, 149.044115577006 -35.3172187980475, 149.044071331019 -35.3171638290395, 149.044024762006 -35.3170847960475, 149.043993361006 -35.3170008860475, 149.043978910006 -35.3169249900475, 149.043976415006 -35.3168591680476, 149.043985089006 -35.3167826840476, 149.043997036006 -35.3167347970475, 149.044017835006 -35.3166786840476, 149.044292765013 -35.3160532250435, 149.044736420006 -35.3150439000476, 149.045080584006 -35.3142598130475, 149.045138758006 -35.3140922390474, 149.045185130006 -35.3138631390475, 149.045195431006 -35.3137278720475, 149.045190412013 -35.3135536940434, 149.045162052006 -35.3133011980475, 149.045087750006 -35.3126513570473, 149.045081437013 -35.3126135030436, 149.045068084006 -35.3125670250476, 149.045044258006 -35.3125131680475, 149.045006203006 -35.3124540760474, 149.044950229006 -35.3123930570475, 149.044882492013 -35.3123406580435, 149.044815093006 -35.3123030700475, 149.044166678006 -35.3119964670475, 149.043634364006 -35.3126603700474, 149.043102040006 -35.3133242710475, 149.042551561025 -35.3140108020357, 149.041541316019 -35.3152706920396, 149.041293286935 -35.3155800052777, 149.041045256006 -35.3158893180476, 149.040549188006 -35.3165079410474, 149.041367346006 -35.3168947010475, 149.041377555006 -35.3168991820475, 149.041387877006 -35.3169034860474, 149.041398307012 -35.3169076110435, 149.041408841012 -35.3169115550435, 149.041419474012 -35.3169153160434, 149.041430201006 -35.3169188920474, 149.041441018006 -35.3169222830474, 149.041451919012 -35.3169254860435, 149.041462900006 -35.3169285010474, 149.041473957012 -35.3169313250435, 149.041485083006 -35.3169339570475, 149.041496275012 -35.3169363970435, 149.041507527006 -35.3169386440475, 149.041518834012 -35.3169406950436, 149.041530192006 -35.3169425510475, 149.041541594012 -35.3169442100435, 149.041553037006 -35.3169456720475, 149.041564514012 -35.3169469360435, 149.041576022006 -35.3169480020475, 149.041587555012 -35.3169488690434, 149.041599107006 -35.3169495360476, 149.041610673012 -35.3169500040435, 149.041622250006 -35.3169502730475, 149.041633830012 -35.3169503410435, 149.041645410012 -35.3169502090436, 149.041656984006 -35.3169498780476, 149.041668547006 -35.3169493470475, 149.041680093006 -35.3169486160475, 149.042498231006 -35.3168897250475, 149.042577119006 -35.3176259170474))\nAYAA-IWD7J\tRadford Park\tReady for service\tPOLYGON ((151.355551754519 -32.6450822595972, 151.35799158764 -32.647247156744, 151.357953993932 -32.6468407877229, 151.358083229737 -32.6458828991235, 151.358541021105 -32.6439165907732, 151.358756420045 -32.6428431932194, 151.359138016669 -32.6409629033437, 151.359284673167 -32.6401856939146, 151.359416020259 -32.6397813938324, 151.359510496019 -32.6397955014772, 151.359586208407 -32.6393852830025, 151.359665558935 -32.6389757275298, 151.359556820724 -32.6389583038523, 151.358710326857 -32.6388076857286, 151.35881169778 -32.6384727243598, 151.358425229242 -32.638384842403, 151.358298317163 -32.6387422134639, 151.358188241464 -32.638797778664, 151.357344169896 -32.6385961072484, 151.357269828323 -32.6388116727012, 151.357541386323 -32.6388827599336, 151.357042042543 -32.6397199008214, 151.357079095979 -32.6404402029723, 151.357025174955 -32.6420188942427, 151.356862835789 -32.6428187147251, 151.356707917409 -32.6427835338385, 151.356510540901 -32.6433764644196, 151.356454465441 -32.643364386452, 151.356414215228 -32.643548461512, 151.356472165216 -32.6435608929574, 151.355973578949 -32.6444008718744, 151.356190112385 -32.6445544305442, 151.355551754519 -32.6450822595972))\n10000\tAveley-Vale\tReady for service\tPOLYGON ((115.98894238471985 -31.791797076764176, 115.98843812942505 -31.792645155562454, 115.9885561466217 -31.793967413434405, 115.98856687545776 -31.794140673409089, 115.99021911621094 -31.794177149151842, 115.99027276039124 -31.794578381372133, 115.9905731678009 -31.79497049299551, 115.99092721939087 -31.794797234576347, 115.99101305007935 -31.794879304394335, 115.99117398262024 -31.795289652391133, 115.99286913871765 -31.79470604580424, 115.99541187286377 -31.792608679215139, 115.99520802497864 -31.791842672596403, 115.99221467971802 -31.791860910923006, 115.99091649055481 -31.791760600082206, 115.98974704742432 -31.7918973875654, 115.98894238471985 -31.791797076764176))\n10750\tPagewood Green\tReady for service\tPOLYGON ((151.22275114059448 -33.943452567717465, 151.22397422790527 -33.939554048502778, 151.22815847396851 -33.940177111504767, 151.22723579406738 -33.942277690310078, 151.22667789459229 -33.944164606739413, 151.22275114059448 -33.943452567717465))\n6\tNLV Bridgewater\tReady for service\tPOLYGON ((115.69084383614063 -32.560811869226839, 115.69007135994434 -32.561553349941526, 115.68966366417408 -32.562168231740209, 115.68940617210865 -32.563633080223994, 115.69125153191089 -32.566743543367586, 115.69277502663135 -32.565929769822432, 115.69427706367969 -32.564826642786556, 115.69374062187671 -32.564392621873807, 115.69262482292652 -32.5641032734321, 115.6921527541399 -32.563741586567659, 115.69200255043506 -32.563361813790671, 115.6920454657793 -32.562927785791359, 115.69219566948414 -32.562548009569575, 115.69286085731983 -32.5620597234937, 115.69294668800831 -32.561625689195367, 115.69251753456592 -32.559925701310725, 115.69084383614063 -32.560811869226839))\nAYCA-OOFYN\tCasuarina Town Centre\tReady for service\tPOLYGON ((153.5708838363 -28.3003885237326, 153.570926404706 -28.3003717933896, 153.571271295071 -28.3004221464378, 153.57128508 -28.3003727399865, 153.571487234049 -28.30040948194, 153.571413207205 -28.3008195366514, 153.572558173917 -28.3010010365304, 153.572581397472 -28.3009195737802, 153.572578430963 -28.3008606556719, 153.572515435102 -28.3007913544054, 153.572501495193 -28.3007064564418, 153.572527461176 -28.300578964905, 153.572556308429 -28.3004873399837, 153.572452067526 -28.3005114694952, 153.571774088177 -28.3003994341474, 153.57167325691 -28.3003555581049, 153.571530472815 -28.3003320852248, 153.571505910532 -28.3003005045647, 153.571673535682 -28.2995249144659, 153.571689064335 -28.2994280537038, 153.571692580129 -28.2992913520385, 153.571671522948 -28.2991397259984, 153.571631127915 -28.2990089139233, 153.571642909386 -28.2989623630372, 153.571714084041 -28.2989327961298, 153.571763592747 -28.2988912356034, 153.57357966075 -28.2991764677786, 153.573342038925 -28.3003110323547, 153.573098453159 -28.3004446089814, 153.572849863307 -28.3004193879023, 153.572577929556 -28.3004823351498, 153.572552226469 -28.3005814962713, 153.573394820395 -28.3007160941114, 153.574453944499 -28.2958257402173, 153.572719329554 -28.2957018185727, 153.571442545172 -28.2961018219201, 153.572136524381 -28.2949717930689, 153.571530375299 -28.2946661302995, 153.570938352243 -28.2948894892393, 153.570387462514 -28.2953853914456, 153.569544526724 -28.2959694513852, 153.56961771223 -28.2983107366077, 153.570736145062 -28.2984097627418, 153.57080628 -28.2989415599864, 153.570780814825 -28.2990222417222, 153.570642517254 -28.3000023213204, 153.5708838363 -28.3003885237326), (153.570424118964 -28.2958512505823, 153.571227357283 -28.296076452991, 153.571064724826 -28.2964032319258, 153.570928613631 -28.296732362802, 153.569845326668 -28.296595136058, 153.569775682734 -28.2962620242049, 153.570424118964 -28.2958512505823))\n17332860\tPalm Lake Resort\tCheck with carrier\tPOLYGON ((151.790780896 -32.867030966, 151.790780896 -32.867036997, 151.790781952 -32.8670389765, 151.79078592 -32.867047986, 151.790792032 -32.867060048, 151.790797088 -32.867069039, 151.790803936 -32.867080028000004, 151.790814016 -32.867091997500005, 151.790830912 -32.867109998000004, 151.79085504 -32.867134011000005, 151.79088096 -32.867160022, 151.790923072 -32.867200981, 151.79096304 -32.8672389615, 151.791005888 -32.8672749625, 151.791050176 -32.867308984000005, 151.79109408 -32.8673420065, 151.791127936 -32.867364965, 151.79116608 -32.8673879975, 151.791208928 -32.867413028, 151.791255008 -32.8674400195, 151.791297856 -32.867465031500004, 151.791343936 -32.8674899695, 151.791396832 -32.8675159805, 151.791464896 -32.867550002, 151.791544096 -32.867595993, 151.79162112 -32.867654046, 151.79168016 -32.867709028, 151.791730912 -32.867765009, 151.79177808 -32.8678250415, 151.791820928 -32.8678910125, 151.791858016 -32.8679669735, 151.79188608 -32.868055977000004, 151.791897952 -32.868138968000004, 151.791900832 -32.868209971, 151.79190192 -32.868267025, 151.791903008 -32.868317974, 151.791905888 -32.868369996, 151.791906976 -32.868425977, 151.791908032 -32.8684799785, 151.791908032 -32.8685310015, 151.79190912 -32.8685820245, 151.791909856 -32.8686429635, 151.791910912 -32.868702996, 151.791912 -32.868759957500004, 151.791914176 -32.868815032, 151.791917056 -32.8688700325, 151.79192208 -32.868933025000004, 151.791926048 -32.868992965000004, 151.791931072 -32.869043007500004, 151.79193792 -32.8690839665, 151.791949088 -32.869118968500004, 151.791953056 -32.8691289585, 151.791962048 -32.869148032, 151.791975008 -32.8691709905, 151.791990112 -32.869198981000004, 151.792005952 -32.8692290435, 151.792062112 -32.869364038, 151.792059968 -32.869254962, 151.79205888 -32.869118968500004, 151.792057088 -32.868980015, 151.792056 -32.8688440215, 151.792053856 -32.868705956, 151.79205312 -32.868569962500004, 151.792050976 -32.8684300285, 151.792049888 -32.868293036000004, 151.792048096 -32.86815399, 151.792047008 -32.868017016, 151.792044832 -32.867882003, 151.792044128 -32.8677440485, 151.792041952 -32.8676090355, 151.792040896 -32.8674709885, 151.792039072 -32.8673330155, 151.792038016 -32.8671950425, 151.79203584 -32.867057976, 151.792035136 -32.8669219825, 151.792034048 -32.8667979585, 151.792057088 -32.866710028, 151.792092 -32.866577013000004, 151.792162912 -32.8663080045, 151.792197856 -32.8661729915, 151.791941888 -32.8661219685, 151.792013152 -32.8658509805, 151.792668 -32.8659740055, 151.792820992 -32.865389017, 151.792957088 -32.864865023, 151.793088128 -32.86445103, 151.793548928 -32.862995006, 151.795122848 -32.8616299835, 151.79600304 -32.8610160055, 151.794963008 -32.860853002, 151.792697888 -32.8604979685, 151.792090912 -32.860403008, 151.791372 -32.860289973, 151.791131168 -32.860242983, 151.791023872 -32.860409039000004, 151.791020992 -32.860413997, 151.791012 -32.860429019, 151.791003008 -32.860442968, 151.790994016 -32.860458008500004, 151.790983936 -32.8604720315, 151.790972032 -32.860490032, 151.790946112 -32.8605219815, 151.790920928 -32.860550971, 151.790901856 -32.8605710435, 151.790889952 -32.860583013, 151.790883136 -32.860592004000004, 151.79085792 -32.860625045, 151.790834176 -32.860657975, 151.79081616 -32.860685965500004, 151.790803936 -32.8607090165, 151.790796 -32.8607279975, 151.790793856 -32.860740966, 151.790790976 -32.8607589665, 151.790789152 -32.8607810185, 151.790788096 -32.860807011, 151.790788096 -32.860830968500004, 151.790789888 -32.860857960000004, 151.790793856 -32.8608870235, 151.790801056 -32.860919972, 151.790810048 -32.8609590255, 151.790820128 -32.860998005, 151.790833088 -32.8610420165, 151.790847136 -32.861086028, 151.790864032 -32.8611339985, 151.790883136 -32.8611850215, 151.790901856 -32.861237043500005, 151.790918048 -32.8612799635, 151.790934976 -32.861323975, 151.79095296 -32.861372038, 151.790972032 -32.861422987000005, 151.790990048 -32.8614769885, 151.79100912 -32.8615419605, 151.791026048 -32.8616060445, 151.791041152 -32.8616720155, 151.791054112 -32.861739966, 151.791064928 -32.8618089895, 151.79107104 -32.861872981, 151.791075008 -32.861936972500004, 151.791077152 -32.861997985500004, 151.791077888 -32.862058018, 151.791077152 -32.862117958, 151.79107392 -32.862175012, 151.791069952 -32.8622290135, 151.791066016 -32.8622789635, 151.791062048 -32.862324954500004, 151.791059872 -32.862366006, 151.791059168 -32.8624190085, 151.791059872 -32.862474009, 151.79106096 -32.862531951, 151.791063136 -32.862592982500004, 151.79106384 -32.8626579545, 151.79106384 -32.8627220385, 151.791062048 -32.8627819785, 151.79106096 -32.8628379595, 151.79106096 -32.862887003000004, 151.79106384 -32.862933993, 151.79106816 -32.862966035, 151.791072832 -32.863002036000005, 151.791078976 -32.863038037, 151.791086176 -32.863074038, 151.791092992 -32.86310904, 151.79110704000001 -32.863164022, 151.79112288 -32.863220003, 151.791141952 -32.863278962500004, 151.791162848 -32.863341955, 151.791183008 -32.863404966000004, 151.791206048 -32.8634739895, 151.791230176 -32.8635420325, 151.791256096 -32.8636130355, 151.791280928 -32.863687017000004, 151.791306112 -32.863762978000004, 151.791329888 -32.8638419915, 151.79135184 -32.8639210235, 151.791374176 -32.864000037000004, 151.791393952 -32.864079957, 151.791413056 -32.8641550115, 151.791437152 -32.864245014, 151.79146416 -32.8643399745, 151.79149008 -32.864445998, 151.791509152 -32.864562992, 151.791513856 -32.8646850365, 151.791508096 -32.864766029500004, 151.791496928 -32.864840011, 151.79148288 -32.8649129935, 151.791464896 -32.864983016000004, 151.791441856 -32.865056017, 151.79141088 -32.865131978, 151.791377056 -32.8652000025, 151.791347872 -32.8652530235, 151.791329888 -32.865291004, 151.791319072 -32.8653189945, 151.791314048 -32.8653440065, 151.79131008 -32.865379027, 151.791306112 -32.8654230385, 151.791302176 -32.865474968, 151.791296032 -32.8655300425, 151.79128704 -32.8655989735, 151.79127984 -32.8656670165, 151.791270848 -32.8657400175, 151.791258976 -32.865818032, 151.791242048 -32.8658969715, 151.791224032 -32.865966994000004, 151.791203872 -32.866034038, 151.79118192 -32.8660990285, 151.79115888 -32.866162021, 151.791135136 -32.866224033, 151.791104896 -32.866298995, 151.791072832 -32.8663729765, 151.791040096 -32.866443998, 151.791008032 -32.866512022500004, 151.790974912 -32.8665819525, 151.79093712 -32.866658006, 151.790898976 -32.866731007, 151.790865856 -32.8667949985, 151.790838848 -32.866850961000004, 151.790817952 -32.866909014, 151.790803936 -32.8669530255, 151.790789888 -32.866994965, 151.790781952 -32.867024047, 151.790780896 -32.867030966))\n292\tNortham Eco Lifestyle Village\tReady for service\tPOLYGON ((116.65020329840772 -31.661646746555668, 116.64942545779421 -31.659327193490913, 116.64900703318884 -31.659235871319105, 116.64912505038338 -31.658742730041766, 116.65007991678871 -31.657902557393534, 116.6502837646759 -31.657162833881912, 116.64996189959415 -31.656468766960668, 116.64500517733335 -31.658048674921062, 116.64614243395494 -31.660724411523692, 116.64633555301117 -31.660934449018896, 116.64800925142373 -31.661089693818788, 116.65020329840772 -31.661646746555668))\nAYCA-1MO0PE\tParaweena Drive\tUnder construction\tPOLYGON ((144.75090726482 -37.811130011173, 144.75048778005 -37.8142684819762, 144.751514168957 -37.814356122844, 144.753865607387 -37.8145568276005, 144.754309943472 -37.8145948016425, 144.757534578004 -37.8148700087178, 144.757632505833 -37.8141477344387, 144.757765343634 -37.8141590694407, 144.757930856119 -37.8142394611497, 144.758170093581 -37.814259874457, 144.758313194819 -37.8132043348797, 144.754982498005 -37.8129200949585, 144.754948004025 -37.8131744478577, 144.751411542547 -37.8108681884176, 144.751446696458 -37.8107049076104, 144.751353403491 -37.8106969416681, 144.750990062705 -37.8109376800198, 144.75090726482 -37.811130011173))\n17341715\tCanobolas Meadows\tCheck with carrier\tPOLYGON ((149.0541512 -33.268190294, 149.054638688 -33.2682615745, 149.055263744 -33.268352983, 149.055868192 -33.268441376, 149.056121792 -33.2684784685, 149.05671856 -33.268565733, 149.05731024 -33.2686522575, 149.057669952 -33.268704853, 149.057839584 -33.26872968, 149.058271136 -33.268792783500004, 149.058636256 -33.2688461745, 149.058944 -33.2688911665, 149.059090848 -33.2681970465, 149.059231648 -33.267531657, 149.059276704 -33.267318611, 149.059383136 -33.266815448, 149.05946864 -33.2664114635, 149.059509216 -33.266219526, 149.059561472 -33.265972070000004, 149.0596424 -33.2655888055, 149.056386528 -33.265093172, 149.055780416 -33.2650044645, 149.05552688 -33.2649673535, 149.054833056 -33.264865807, 149.0541512 -33.268190294))\nAYAA-G1FKH\tRiemore Downs Estate\tReady for service\tPOLYGON ((153.115619080583 -27.8886882702533, 153.115670435819 -27.8860081581788, 153.111759677863 -27.8852706771765, 153.111330151558 -27.8857798171239, 153.11253016125 -27.886155663833, 153.113369175103 -27.8869181826115, 153.112580253056 -27.887592608393, 153.111706042377 -27.8881749096944, 153.112048301405 -27.8885617718044, 153.112393953229 -27.8890441195233, 153.113272998565 -27.8900095877092, 153.1133252006 -27.8900772535429, 153.114330113501 -27.8908264049759, 153.114932921195 -27.8912128735711, 153.115396953478 -27.8906733001938, 153.11611278637 -27.8896344141252, 153.11663756994 -27.8898399502847, 153.116845155854 -27.8894846899597, 153.115619080583 -27.8886882702533))\nAYAA-G3N4A\tSix Mile Creek Village\tUnder construction\tPOLYGON ((152.848832768594 -27.6355815192483, 152.845844766036 -27.6363554142549, 152.846966587568 -27.6403154462007, 152.848789588261 -27.6405667263019, 152.849676386002 -27.6407679880675, 152.849738332729 -27.6405485615946, 152.849078796198 -27.6403100548981, 152.849787294193 -27.6392823743815, 152.850215990947 -27.6374259987518, 152.849956706858 -27.6358382937849, 152.848832768594 -27.6355815192483))\n17354521\tDandenong LOGIS\tCheck with carrier\tPOLYGON ((145.192518016 -38.005410961, 145.192754176 -38.005443003, 145.197488512 -38.006053022, 145.19766096 -38.0052587615, 145.197799552 -38.004683578, 145.197455392 -38.0046316485, 145.197487456 -38.0044986335, 145.19765808 -38.0037904165, 145.197630016 -38.003674958000005, 145.197585728 -38.003577759, 145.197811456 -38.0024931595, 145.197289792 -38.002430074500005, 145.196671328 -38.0023528555, 145.195445536 -38.0023233295, 145.194984352 -38.0023141535, 145.194604576 -38.002306587, 145.19451744 -38.002326382, 145.193374432 -38.002587398500005, 145.193254208 -38.0026546275, 145.192575616 -38.004366414, 145.192812128 -38.0043950335, 145.192822912 -38.004401971, 145.192518016 -38.005410961))\n10233\tDalyellup\tReady for service\tPOLYGON ((115.62436580657959 -33.39171543951737, 115.6240439414978 -33.392199159357027, 115.62388300895691 -33.392118539570696, 115.62322854995728 -33.392996395440385, 115.6230354309082 -33.393927987890734, 115.62305688858032 -33.394017563561661, 115.62343239784241 -33.394035478684764, 115.62337875366211 -33.3945191856128, 115.62377572059631 -33.394537100632519, 115.62374353408813 -33.395119336762804, 115.6241512298584 -33.395131863194379, 115.62438189983368 -33.395109469572411, 115.62437653541565 -33.395257267370759, 115.62437653541565 -33.395512553884963, 115.6244570016861 -33.395512553884963, 115.62434434890747 -33.395929072377257, 115.6242424249649 -33.39630528091255, 115.62421023845673 -33.396479948607478, 115.62424778938293 -33.396833761580417, 115.62425315380096 -33.397003949585958, 115.62450528144836 -33.397254752355046, 115.62434434890747 -33.397424939536137, 115.62448918819427 -33.397510033001694, 115.62448382377625 -33.3975772119946, 115.62495589256287 -33.397841448862813, 115.62504172325134 -33.397836970278512, 115.62516510486603 -33.397716048415354, 115.62534749507904 -33.397617519365404, 115.62549769878387 -33.39753690460509, 115.6257176399231 -33.397487639992519, 115.62592685222626 -33.397496597196884, 115.62606632709503 -33.39752346880443, 115.62614142894745 -33.397501075798715, 115.62629699707031 -33.397017385466924, 115.62624335289001 -33.396932291518979, 115.62628626823425 -33.396735231530144, 115.62697291374207 -33.394746692092681, 115.62707483768463 -33.394545148394073, 115.62716603279114 -33.394509318354281, 115.62720894813538 -33.394142059594742, 115.62727868556976 -33.392789459073342, 115.62721431255341 -33.392735712922438, 115.62679052352905 -33.3925879108361, 115.62652766704559 -33.392534164560573, 115.62624335289001 -33.392480418251814, 115.62562108039856 -33.392269911555836, 115.62534213066101 -33.392193770710449, 115.62521874904633 -33.392131066434757, 115.62485933303833 -33.391938474448025, 115.62436580657959 -33.39171543951737))\nAYCA-1O7JIC\tSpring Mountain\tContracted\tPOLYGON ((152.906283 -27.7311679999831, 152.906484 -27.7301609999832, 152.906491 -27.7301209999831, 152.906482 -27.7300969999831, 152.906456 -27.7300899999831, 152.905424 -27.7302569999831, 152.904915 -27.7301749999831, 152.904674 -27.7301779999831, 152.904346 -27.7301489999832, 152.903913 -27.7302199999832, 152.903764 -27.7301939999831, 152.902866 -27.730398999983, 152.902318 -27.7309109999832, 152.902009 -27.7326529999831, 152.902328 -27.7329909999832, 152.902437 -27.7337069999831, 152.903099 -27.7344319999831, 152.903073 -27.7344759999832, 152.903043 -27.7344899999831, 152.903046 -27.7345199999831, 152.903144 -27.7346209999831, 152.904723 -27.7348459999831, 152.905387 -27.7342819999831, 152.905915 -27.7340059999831, 152.905941 -27.7339989999832, 152.905599 -27.7331209999832, 152.905538 -27.7331419999832, 152.905515 -27.7329589999832, 152.905742 -27.7329029999832, 152.905699 -27.7321529999832, 152.906354 -27.7321329999832, 152.906609 -27.7315059999831, 152.906607 -27.7314679999832, 152.906585 -27.7314359999831, 152.906563 -27.7314229999832, 152.906138 -27.7313099999831, 152.906283 -27.7311679999831))\n17319634\tWaldara Park Estate\tCheck with carrier\tMULTIPOLYGON (((146.302532992 -36.334407951500005, 146.30171184 -36.334312029, 146.301568928 -36.3341829545, 146.301566048 -36.334104033500005, 146.301519968 -36.334069013000004, 146.301297856 -36.3340749515, 146.301185888 -36.334079003, 146.30117904 -36.334079003, 146.301172928 -36.3339350175, 146.30151312 -36.3339250275, 146.301555968 -36.333887047000005, 146.301549856 -36.333752034, 146.301751072 -36.333747002, 146.301766912 -36.334117982500004, 146.301812992 -36.3341600145, 146.302468928 -36.3342359755, 146.30251392 -36.333981008500004, 146.302228096 -36.333946987000004, 146.302220896 -36.3337849825, 146.302206112 -36.3334419925, 146.302193152 -36.333152005, 146.302182016 -36.332899017500004, 146.30216688 -36.332574028, 146.30216112 -36.3324230125, 146.302152832 -36.332243007500004, 146.30214384 -36.332030979, 146.302135936 -36.3318640165, 146.29842288 -36.331432023, 146.297757952 -36.3328280145, 146.297909888 -36.333296009, 146.299123072 -36.334040042, 146.298722048 -36.3348710065, 146.299832992 -36.3349999885, 146.300792032 -36.3351120245, 146.30118192 -36.335786035, 146.301156 -36.3359619885, 146.301599872 -36.3360140105, 146.301831008 -36.336041002, 146.302028992 -36.3360639605, 146.302053856 -36.336048032, 146.302080832 -36.3358970165, 146.302106048 -36.335761023, 146.302131968 -36.3356139665, 146.302160032 -36.335456994000005, 146.302211872 -36.335162973500005, 146.302193152 -36.3351429935, 146.302166176 -36.335140015, 146.302194976 -36.3349790095, 146.302247872 -36.334680031, 146.302480096 -36.3347070225, 146.302496992 -36.334608029, 146.302532992 -36.334407951500005)), ((146.304649088 -36.334991978, 146.304450016 -36.334964968, 146.30424192 -36.3349369775, 146.30403312 -36.3349080065, 146.303813152 -36.3348780365, 146.303592832 -36.334847974, 146.30354208 -36.3351359635, 146.30358384 -36.335141014, 146.30355504 -36.3353020195, 146.30352912 -36.3354499825, 146.30350608 -36.335574987, 146.303484128 -36.3356999915, 146.303462176 -36.3358250145, 146.30343984 -36.335950019, 146.303417152 -36.3360750235, 146.30339088 -36.336222986500005, 146.30336208 -36.336383011500004, 146.30294304 -36.336333968, 146.302841888 -36.336394981, 146.302751872 -36.336903028, 146.302787168 -36.3369509985, 146.303166976 -36.3370629605, 146.303196128 -36.3370719515, 146.303224928 -36.337080961, 146.30325408 -36.3370910435, 146.303282176 -36.337102014, 146.303309888 -36.337113003, 146.303337952 -36.3371239735, 146.303366048 -36.3371360355, 146.303393056 -36.337149004000004, 146.30343408 -36.3371670045, 146.30347584 -36.3371869845, 146.303568 -36.336723023000005, 146.303664128 -36.336247018, 146.304276128 -36.336313988, 146.304363968 -36.336322979, 146.304443168 -36.3359390485, 146.304519136 -36.3355890285, 146.304587872 -36.3352730485, 146.304640096 -36.3350339915, 146.304649088 -36.334991978)))\n17312200\tBERRINBA STAGE 1\tCheck with carrier\tPOLYGON ((153.09164016 -27.646784993, 153.092394016 -27.648482035, 153.091418048 -27.6488330355, 153.090667072 -27.6471320345, 153.089670976 -27.647474044000003, 153.09122112 -27.6509760385, 153.096077888 -27.649132014, 153.096078976 -27.649132014, 153.09603504 -27.649035, 153.095329088 -27.647447034000002, 153.094344832 -27.6477980345, 153.093583072 -27.646097033500002, 153.09164016 -27.646784993))\n10691\tWannanup-Port Bouvard North\tReady for service\tPOLYGON ((115.63935399055481 -32.593080692667876, 115.64087212085724 -32.594982512703446, 115.64040005207062 -32.595348593068323, 115.64051806926727 -32.595515814465763, 115.640829205513 -32.596229891516266, 115.64063340425491 -32.596306263245282, 115.64075142145157 -32.596597767498821, 115.6408479809761 -32.596900569362631, 115.64058780670166 -32.597298277718679, 115.63873708248138 -32.596794821859746, 115.63755691051483 -32.595976801567119, 115.63693463802338 -32.595773425197109, 115.63668251037598 -32.596307640266147, 115.63651084899902 -32.597012672171864, 115.63636064529419 -32.597555000632049, 115.63597440719604 -32.598006938508021, 115.63666105270386 -32.5987933049781, 115.6365430355072 -32.599343743277771, 115.63622117042542 -32.599239799319065, 115.63629627227783 -32.598860176880152, 115.6361997127533 -32.598860176880152, 115.63615679740906 -32.5990545076153, 115.6352287530899 -32.59885565755571, 115.63476204872131 -32.598530265597141, 115.6347244977951 -32.597834284385435, 115.63543796539307 -32.597338069641886, 115.63580274581909 -32.597509806719088, 115.63661813735962 -32.595485096031446, 115.63622117042542 -32.595322394079552, 115.6362909078598 -32.594987032223251, 115.63568472862244 -32.594675184822584, 115.63686490058899 -32.593885180674185, 115.63882827758789 -32.593279555543653, 115.63935399055481 -32.593080692667876))\nAYCA-MUELL\tHarrington Grove\tReady for service\tPOLYGON ((150.752128700289 -34.0254648141925, 150.752091627378 -34.0256380663038, 150.751702767288 -34.02572244377, 150.751628630877 -34.0261322136239, 150.751582350199 -34.0264194901497, 150.751517398397 -34.0265058520008, 150.751502244514 -34.0265059152312, 150.751430432589 -34.0270414018592, 150.751813723383 -34.0270624611189, 150.751765506481 -34.0281142638624, 150.751885469058 -34.0281806975879, 150.751691410501 -34.0283333732674, 150.752991309681 -34.0291278851399, 150.75686197521 -34.02501428011, 150.756286932219 -34.024670173541, 150.756199303203 -34.024756121184, 150.755207874265 -34.0241320373933, 150.75470105434 -34.0239907786386, 150.754401933315 -34.024020279494, 150.752490147392 -34.0243869715516, 150.752499545292 -34.0245861095491, 150.752485712717 -34.0246529855531, 150.752471351099 -34.0246520507072, 150.752457872348 -34.0247115904538, 150.752476147099 -34.0247138115047, 150.752467962256 -34.0247821064058, 150.752381317013 -34.0250151631389, 150.752253483285 -34.0252295814984, 150.752223476762 -34.0252165400361, 150.752167312275 -34.0252959712637, 150.752202949833 -34.0253157746578, 150.75216789204 -34.025371065162, 150.752103866861 -34.0254429464049, 150.752128700289 -34.0254648141925))\nAYAA-F9DJ9\tMuirhead\tReady for service\tPOLYGON ((130.890501027488 -12.3553955559965, 130.890499390129 -12.3553977406598, 130.890481951958 -12.3556804638583, 130.89043494066 -12.3562270781828, 130.890416126005 -12.3563779141502, 130.890452705529 -12.3565411986863, 130.890660524393 -12.3574090730419, 130.890667851413 -12.3574412970815, 130.890685150395 -12.3575096914583, 130.890694427378 -12.3575509151752, 130.890711819093 -12.357630838281, 130.890929121219 -12.3585054040736, 130.891024559369 -12.3588944161929, 130.891406238662 -12.3604884366127, 130.891422563946 -12.3605556155893, 130.891432225102 -12.3605953714816, 130.891448681269 -12.3606630889699, 130.891538353034 -12.3610320894111, 130.891791958623 -12.3620756719483, 130.891866995451 -12.3623844450067, 130.89189457941 -12.3624979514632, 130.892016015218 -12.3622729005611, 130.892020691495 -12.3622728809732, 130.893300541636 -12.3622675138598, 130.893299539638 -12.3621284483712, 130.893299246591 -12.36208777655, 130.893298165295 -12.362033552259, 130.893298562818 -12.3619928756328, 130.893300152018 -12.3617074401759, 130.893484027608 -12.3617073204638, 130.893483997742 -12.3616621284303, 130.893667873286 -12.3616620085985, 130.893662300798 -12.3614344664555, 130.893671922207 -12.3613901101363, 130.893671134121 -12.3612807385154, 130.893666900171 -12.3612236463562, 130.893677509858 -12.3612236394407, 130.893658280531 -12.3609390209047, 130.893859033511 -12.3609194304315, 130.894008796818 -12.3608450701562, 130.894039822541 -12.3608271708207, 130.89401802029 -12.3607901020267, 130.894161281459 -12.3607086630144, 130.894026913811 -12.3604810317749, 130.894011073048 -12.3604560049433, 130.893983153991 -12.3604092332898, 130.893957561531 -12.3603663592702, 130.893653961525 -12.360543135769, 130.893621194398 -12.3605312213325, 130.89355706596 -12.3603580016507, 130.893850538616 -12.3601870678751, 130.893766781663 -12.3600467528244, 130.893664412184 -12.3598752565968, 130.893638819837 -12.3598323825306, 130.893610900924 -12.3597856108176, 130.893585308595 -12.3597427367434, 130.893462000232 -12.3595361616065, 130.893604726713 -12.3594538200584, 130.893581460997 -12.3594148436217, 130.893740045851 -12.3593233529553, 130.893882772116 -12.3592410112897, 130.893859506387 -12.3592020348795, 130.894018091002 -12.3591105440821, 130.8938947827 -12.358903969139, 130.89387198232 -12.358865772253, 130.893837151206 -12.3588076735057, 130.893815679373 -12.3587714493169, 130.893692371414 -12.3585648742297, 130.893473152645 -12.3581834083333, 130.89343599999 -12.3581479998874, 130.89307999999 -12.3575519998874, 130.89331799999 -12.3574149998873, 130.89330299999 -12.3573919998874, 130.893344388654 -12.3573681127312, 130.893155097395 -12.3570594022257, 130.892812541599 -12.3572384015202, 130.892760185316 -12.357163914355, 130.892611287221 -12.3569144642991, 130.892722295963 -12.3568504213448, 130.892638540891 -12.3567101056718, 130.892598894929 -12.3567329781458, 130.892505833862 -12.3565770717798, 130.892466187904 -12.3565999442334, 130.892382433056 -12.3564596284476, 130.892461724945 -12.3564138835636, 130.892368664094 -12.3562579771189, 130.892400380832 -12.3562396791724, 130.89224450416 -12.3559785357873, 130.892221704316 -12.3559403386829, 130.892188202518 -12.3558842123214, 130.892157473514 -12.3558505896893, 130.891864333544 -12.3553594836976, 130.891841533818 -12.3553212865446, 130.891808032193 -12.35526516011, 130.891785232485 -12.3552269629494, 130.891705940775 -12.3552727076049, 130.891582636386 -12.3550661310325, 130.891439911287 -12.35514847129, 130.89141664634 -12.3551094945515, 130.891273921155 -12.3551918347326, 130.891250656227 -12.3551528579789, 130.891107930955 -12.3552351980835, 130.891154460798 -12.3553131516161, 130.891011735409 -12.3553954916866, 130.890972917785 -12.3553304587341, 130.890864039473 -12.3553932719106, 130.890698558758 -12.3553944241631, 130.890501027488 -12.3553955559965), (130.892497629903 -12.3605397017425, 130.892719535333 -12.3605381586328, 130.892795541271 -12.3606435154972, 130.892820674219 -12.3607686489421, 130.892499293163 -12.3607708838958, 130.892497629903 -12.3605397017425), (130.891869935568 -12.3617234153559, 130.892205554484 -12.361721085407, 130.892207119287 -12.3619387094478, 130.891889885461 -12.3619402453606, 130.891871355524 -12.3619222853615, 130.891869935568 -12.3617234153559), (130.891892926405 -12.3613535542535, 130.892210053772 -12.3612791321969, 130.892212051704 -12.3615566086895, 130.891876487023 -12.3615589437392, 130.891875170866 -12.3613758278156, 130.891892926405 -12.3613535542535))\nAYCA-NZ9RQ\tGrantham Estate Riverstone\tReady for service\tPOLYGON ((150.866171279992 -33.6574602900158, 150.868533025251 -33.6605186444084, 150.869874491933 -33.6598180973201, 150.871526909636 -33.6588602374523, 150.871804692586 -33.6582298809302, 150.869756122322 -33.6555330055306, 150.866237318668 -33.6574053442407, 150.866171279992 -33.6574602900158))\nAYCA-GE6TE\tVoyager Point\tReady for service\tPOLYGON ((150.970919147374 -33.9612904042168, 150.970908863059 -33.9606380197032, 150.971215712992 -33.9602394780082, 150.971464695377 -33.9601044235468, 150.971766243742 -33.9600226718554, 150.972051195621 -33.9599989623086, 150.970304410155 -33.9571841309123, 150.967973485954 -33.9580085870113, 150.966707994362 -33.9586561861871, 150.96667979039 -33.9593650914321, 150.967131975615 -33.9606106611718, 150.967627337857 -33.9614052278831, 150.970919147374 -33.9612904042168))\n9\tRCA Cardinia Waters\tReady for service\tPOLYGON ((145.4930143046206 -38.0794393994041, 145.49344345806298 -38.0795069615482, 145.49582525966821 -38.08034303791537, 145.49608275173364 -38.080680843837122, 145.49642607448754 -38.080875081535481, 145.496865956766 -38.080925752154563, 145.49709126232324 -38.080875081535481, 145.49899026630578 -38.08189693223396, 145.4995159792727 -38.0820489418615, 145.49995586155114 -38.08212494655676, 145.5005244898623 -38.079211376706972, 145.49420520542321 -38.078383732795274, 145.49328252552209 -38.078164152226073, 145.4930143046206 -38.0794393994041))\n179\tGemlife Bribie Island\tReady for service\tPOLYGON ((153.16211615558882 -27.061404864414, 153.16302810665232 -27.063248817059335, 153.16424046512662 -27.063411236306255, 153.16865001674753 -27.061930346236231, 153.16748057361505 -27.059369793399984, 153.16214834209072 -27.061414418651186, 153.16211615558882 -27.061404864414))\nAYCA-Q13UU\tLot 502 Jane Brook Drive\tReady for service\tPOLYGON ((116.062904454047 -31.8615610033738, 116.063059079205 -31.8573268459033, 116.062522009928 -31.8574419140424, 116.062230625947 -31.8562302562604, 116.062137025318 -31.856056528226, 116.05934988 -31.8570425100102, 116.05933872 -31.8574077300113, 116.05869324 -31.8572948700114, 116.058691806194 -31.859259968134, 116.059360734452 -31.8592718241528, 116.059547872855 -31.8591058005127, 116.060985112629 -31.8591291340891, 116.061085739655 -31.8591570349995, 116.061025530351 -31.8593369167361, 116.060988080984 -31.8596160018753, 116.060878386752 -31.8599505614195, 116.060831196563 -31.8603501273169, 116.060856762045 -31.8606212270566, 116.060939858883 -31.8606907920096, 116.061184113654 -31.8613704953309, 116.061182646528 -31.8615137722717, 116.061444002245 -31.86154680161, 116.062904454047 -31.8615610033738))\nAYCA-1DF126\tMistful Park\tUnder construction\tPOLYGON ((149.703161000029 -34.7264160000054, 149.703132000029 -34.7266480000054, 149.703118000029 -34.7267670000054, 149.703116000029 -34.7268800000054, 149.703115000029 -34.7270560000054, 149.703113000029 -34.7272120000054, 149.703112000029 -34.7273650000054, 149.703112000029 -34.7273990000054, 149.703124000029 -34.7275180000054, 149.703144000029 -34.7276990000054, 149.703171000029 -34.7279580000054, 149.703179000029 -34.7280280000054, 149.703370000029 -34.7281600000054, 149.703568000029 -34.7282960000054, 149.703870000029 -34.7285040000054, 149.704036000029 -34.7286180000054, 149.704437000029 -34.7288940000054, 149.704577000029 -34.7287530000053, 149.704788000029 -34.7285450000053, 149.704791000029 -34.7285490000053, 149.704878785537 -34.7286087059075, 149.70515374104 -34.7284029396157, 149.705310217819 -34.7283470993515, 149.70554864652 -34.7282620131985, 149.705566063545 -34.7282557976974, 149.70559311025 -34.7282461457082, 149.706221151919 -34.7282080470846, 149.706244856673 -34.7282066090287, 149.706260957806 -34.728205632246, 149.706271001573 -34.7282050229352, 149.706347362233 -34.7282003904445, 149.706462159258 -34.728193426084, 149.706474703201 -34.7281926650774, 149.706495994442 -34.728191373393, 149.706584858935 -34.7281859821739, 149.706678620241 -34.7281802938039, 149.706700000029 -34.7281790000052, 149.706721999494 -34.7281776620193, 149.706896839314 -34.7281670544673, 149.7069486925 -34.7281639084795, 149.706961131396 -34.7281631537951, 149.70696903037 -34.7281626745532, 149.707008168901 -34.7281602999554, 149.707075972594 -34.7281561861658, 149.707113906239 -34.7281538846367, 149.707176023702 -34.7281501157888, 149.707226012033 -34.7281470828274, 149.707259105091 -34.728145074948, 149.707402956419 -34.7281363468443, 149.707495976174 -34.7281307028275, 149.707547940966 -34.7281275498081, 149.707592991868 -34.7281248162782, 149.70762995421 -34.7281225735209, 149.707686934536 -34.7281191161136, 149.707766016036 -34.7281143176238, 149.707815180986 -34.7281113343775, 149.707856948832 -34.728108799959, 149.707916025239 -34.7281052152549, 149.707983002733 -34.7281011510844, 149.708033838012 -34.7280980663927, 149.70808235483 -34.7280951223654, 149.708118000029 -34.7280930000052, 149.708198004933 -34.7280881045741, 149.708417254329 -34.7280747999426, 149.708563961141 -34.7280898996742, 149.708616571535 -34.7279166867609, 149.708671826458 -34.7277347661531, 149.708968930131 -34.7277347556956, 149.7094121292 -34.7276531559782, 149.710010649344 -34.7278053547375, 149.710138000029 -34.7276760000051, 149.708542000029 -34.7261040000052, 149.708682000029 -34.7251650000052, 149.708092000029 -34.7251390000052, 149.707965000029 -34.7251340000052, 149.707827000029 -34.7251280000052, 149.707602000029 -34.7251180000052, 149.707394000029 -34.7251090000052, 149.707388000029 -34.7251080000053, 149.707332000029 -34.7251060000052, 149.707154000029 -34.7251370000052, 149.707119000029 -34.7251440000052, 149.707065000029 -34.7251530000053, 149.706614000029 -34.7252320000052, 149.706407000029 -34.7252870000053, 149.706353000029 -34.7253490000053, 149.706307000029 -34.7254020000053, 149.706216000029 -34.7255060000053, 149.706147000029 -34.7255850000053, 149.706080000029 -34.7256630000053, 149.706008000029 -34.7257460000053, 149.705816000029 -34.7259670000053, 149.705687000029 -34.7261130000053, 149.705547000029 -34.7262510000053, 149.705406000029 -34.7263890000053, 149.705266000029 -34.7265270000053, 149.705194000029 -34.7265980000053, 149.705012000029 -34.7266990000054, 149.704831000029 -34.7268010000053, 149.704522000029 -34.7269730000054, 149.704312000029 -34.7269080000054, 149.703853000029 -34.7267640000054, 149.703710000029 -34.7264620000054, 149.703524000029 -34.7264470000054, 149.703161000029 -34.7264160000054))\nAYAA-F9C6X\tParamount Park\tReady for service\tPOLYGON ((150.516972407757 -23.275657059569, 150.517201922469 -23.2760474913148, 150.517248721618 -23.2774489046606, 150.517108283998 -23.2780381039765, 150.517178012798 -23.2785634420809, 150.517991777929 -23.2796564903346, 150.518314856632 -23.2794838739758, 150.518759007994 -23.2792119934391, 150.519106015994 -23.2785419974391, 150.519403999994 -23.2787109949391, 150.519092363994 -23.2790262465703, 150.51914164653 -23.279185439298, 150.520471395306 -23.2784011376173, 150.521215078611 -23.2772406164104, 150.521959475225 -23.2773987809659, 150.521484196837 -23.2760793906524, 150.521157662717 -23.2757884785098, 150.520161736198 -23.2752389863286, 150.519970633307 -23.2752749159387, 150.519802694857 -23.2748804006593, 150.519575390266 -23.2749629834395, 150.518703404749 -23.2755212013386, 150.516972407757 -23.275657059569))\nAYCA-1D18C9\tThe Fairways\tReady for service\tPOLYGON ((152.483766 -27.5271879999808, 152.484363004872 -27.5244290254236, 152.48427024534 -27.5244119094026, 152.476147679693 -27.5231725608009, 152.476126 -27.5232979999814, 152.475968 -27.5241279999815, 152.476412 -27.5242789999814, 152.476509 -27.5237669999814, 152.477369 -27.5239529999814, 152.47758 -27.5240109999814, 152.477608 -27.5238569999814, 152.478468 -27.5239839999815, 152.478379 -27.5244519999814, 152.478775 -27.5245319999814, 152.478721 -27.5248179999814, 152.480299 -27.5250819999814, 152.480322 -27.5252169999814, 152.480405 -27.5254309999814, 152.480487 -27.5256439999814, 152.480581 -27.5258339999815, 152.480663 -27.5260019999815, 152.480674 -27.5260249999814, 152.480771 -27.5266499999814, 152.480847 -27.5271389999815, 152.481053 -27.5271049999814, 152.481257 -27.5270719999808, 152.482732 -27.5268309999808, 152.48269 -27.5270319999808, 152.483766 -27.5271879999808))\n17337667\tLoc 1017 Redgate Road Witchcliffe\tCheck with carrier\tPOLYGON ((115.074863008 -34.0241140025, 115.074860992 -34.026132001, 115.081839008 -34.026125008, 115.08184 -34.0241169995, 115.074863008 -34.0241140025))\n10185\tCanningvale-Avenues\tReady for service\tPOLYGON ((115.92247389256954 -32.091735413584288, 115.92255435883999 -32.0914934065377, 115.92271596193314 -32.091376379426087, 115.92263750731945 -32.091302527288235, 115.92288359999657 -32.091105966691941, 115.92299290001392 -32.091009390521513, 115.92301771044731 -32.091029841954359, 115.92324502766132 -32.090840524001742, 115.92325005680323 -32.090846418002428, 115.9232671558857 -32.0908329967232, 115.92353671789169 -32.090616835742722, 115.92376537621021 -32.090592407531418, 115.92446945607662 -32.090027716361512, 115.92501863837242 -32.089591413349432, 115.92521175742149 -32.089538579640141, 115.925482660532 -32.089319859120792, 115.92506423592567 -32.088935818708464, 115.92460423707962 -32.0885176900337, 115.92448957264423 -32.088417134346884, 115.92399001121521 -32.088035362596244, 115.92367753386497 -32.087875722447812, 115.92365875840187 -32.087932533920508, 115.92331074178219 -32.08788253982641, 115.92312432825565 -32.087851293503718, 115.92301972210407 -32.087754713893275, 115.92260599136353 -32.087817206594046, 115.9223049134016 -32.088059791491155, 115.92249535024166 -32.088233066023378, 115.9223411232233 -32.0883580507279, 115.92217013239861 -32.088202956046281, 115.92188782989979 -32.088430200911326, 115.92175036668777 -32.088304648193244, 115.92162296175957 -32.088338663907095, 115.92146538197994 -32.088379567963763, 115.92131081968546 -32.08850316769734, 115.92097587883472 -32.088765386055719, 115.92063792049885 -32.089036941932164, 115.9202966094017 -32.08930736078959, 115.92006526887417 -32.089098297541433, 115.91991037130356 -32.089219872423293, 115.91980174183846 -32.089121021830714, 115.91993115842342 -32.089017058161069, 115.91978028416634 -32.088878723805195, 115.91962069272995 -32.088734140034894, 115.91937594115734 -32.088932978166859, 115.91937527060509 -32.088932410058526, 115.91958314180374 -32.089124430473611, 115.91959722340107 -32.089136360722769, 115.91959840813172 -32.089139873780006, 115.91959856450558 -32.089139769365104, 115.91959856450558 -32.089140337472145, 115.91959840813172 -32.089139873780006, 115.91951943933964 -32.089192603304987, 115.92005722224712 -32.089680321619213, 115.92013970017433 -32.089761276358296, 115.91962270438671 -32.090242458485235, 115.91983778402209 -32.0904322037513, 115.92003207653761 -32.090607178078564, 115.92023575678468 -32.090786696845313, 115.92031605541706 -32.090834416964483, 115.92052409425378 -32.090951728818148, 115.92069659382105 -32.09105199766811, 115.92113949358463 -32.091304799662595, 115.92144627124071 -32.091432904675905, 115.92176981270313 -32.091563281877541, 115.92247389256954 -32.091735413584288))\n50\tEncore\tReady for service\tPOLYGON ((144.721116645 -37.712129506, 144.720637702 -37.714672705, 144.726632018 -37.71543235, 144.726701496 -37.714460761, 144.726505218 -37.71346157, 144.721116645 -37.712129506))\n17318655\tNEVERWOODS ESTATE\tCheck with carrier\tPOLYGON ((152.499962176 -32.0491919755, 152.500658048 -32.048289009, 152.501113088 -32.048442004, 152.502008032 -32.049075962, 152.502375968 -32.049469975, 152.502990848 -32.0497260335, 152.503872832 -32.049988012, 152.50462992 -32.050436045, 152.505753856 -32.0504709545, 152.506999072 -32.050279979, 152.507778112 -32.0498379955, 152.509086016 -32.049812965, 152.50920192 -32.0497029825, 152.509316032 -32.0495139865, 152.509411072 -32.049255967, 152.509364992 -32.0489399685, 152.509179968 -32.048790026, 152.508966112 -32.048657011, 152.507117152 -32.048892997, 152.506559872 -32.049189996, 152.505138976 -32.049358013, 152.504323936 -32.0489469985, 152.50354416 -32.048738004, 152.503292896 -32.0484899745, 152.502806176 -32.048207017, 152.502968896 -32.0474439845, 152.502692032 -32.0469429675, 152.500456096 -32.046671961, 152.500456096 -32.046671961, 152.499962176 -32.0491919755))\nAYCA-1FLSZY\tFrizzo Road, Palmview\tReady for service\tPOLYGON ((153.039069 -26.7471129999749, 153.039389 -26.7476789999749, 153.040121 -26.7475959999749, 153.040161 -26.7479339999748, 153.039616 -26.7480869999749, 153.039571 -26.7482089999749, 153.039604 -26.7483479999748, 153.039635 -26.7485269999749, 153.039801 -26.7487289999749, 153.039934 -26.7489319999749, 153.039903 -26.7492309999748, 153.039933 -26.7492409999749, 153.040068 -26.7493019999749, 153.040195 -26.7493749999749, 153.040312 -26.7494599999749, 153.040419 -26.7495559999749, 153.040514 -26.7496599999749, 153.040552 -26.7497119999749, 153.040597 -26.7497739999748, 153.040666 -26.7498939999749, 153.04072 -26.7500199999749, 153.040759 -26.7501509999749, 153.040785 -26.7502849999749, 153.040792 -26.7503209999748, 153.040815943059 -26.7504170308685, 153.040870145446 -26.7505432598077, 153.040908753977 -26.7505903070147, 153.040959442987 -26.7506102957128, 153.04100356553 -26.7506327315275, 153.041319 -26.7504829999749, 153.041452 -26.7504189999749, 153.041587 -26.7503589999749, 153.04173 -26.7503169999749, 153.041888 -26.7502859999749, 153.042216 -26.7502729999749, 153.042176 -26.7503289999749, 153.042363 -26.7509979999749, 153.043676976103 -26.7507477170718, 153.043715 -26.7501859999742, 153.04389048 -26.7493223699749, 153.04392684 -26.7488268299743, 153.04383648 -26.748336869974, 153.042934682941 -26.7481753576203, 153.043086836471 -26.7473785503111, 153.042764 -26.7473429999749, 153.041661606519 -26.7472356670633, 153.041625225608 -26.7474669583709, 153.041016455965 -26.7473960088948, 153.040896408686 -26.7472990230945, 153.04083862658 -26.7473486189176, 153.04077175077 -26.7473501201468, 153.04071573888 -26.7473102914226, 153.040663730384 -26.7472805260552, 153.040996311263 -26.746373881797, 153.040588011102 -26.7463024969866, 153.040296854779 -26.7464045144084, 153.040247134944 -26.7465400534082, 153.039984539411 -26.7465772289911, 153.0397697554 -26.746556245266, 153.039474604376 -26.7463615335426, 153.039189620222 -26.74626273457, 153.039159 -26.7462769999748, 153.039041 -26.7463599999748, 153.039004 -26.7464179999748, 153.039 -26.7464609999748, 153.039 -26.7464999999748, 153.039019 -26.7465359999749, 153.039113 -26.7466419999748, 153.039192 -26.7467199999749, 153.039071 -26.7468199999742, 153.039069 -26.7471129999749))\nAYCA-EUUAD\tWindmill Downs\tReady for service\tPOLYGON ((150.900431984145 -31.039191773641, 150.900175661044 -31.03916956619, 150.900129545319 -31.0404095781991, 150.900023168216 -31.042994975882, 150.902926149129 -31.0433984226754, 150.903714580225 -31.0391248217961, 150.902764477409 -31.0392643271721, 150.901201024343 -31.0390358631377, 150.901106533018 -31.039105639639, 150.900951854081 -31.0390848307371, 150.90090394287 -31.0389924490125, 150.900431984145 -31.039191773641))\n10687\tWannanup-Port Bouvard North\tReady for service\tPOLYGON ((115.64025521278381 -32.600238560195571, 115.63976168632507 -32.600713080692266, 115.64028203487396 -32.601770574471466, 115.6393164396286 -32.602208933617604, 115.63930571079254 -32.602489120814134, 115.64119935035706 -32.604016577538758, 115.64049661159515 -32.604540787452891, 115.63801288604736 -32.603204060231462, 115.63579201698303 -32.602300234632487, 115.63512682914734 -32.602146583373774, 115.63538432121277 -32.601857356760092, 115.63565254211426 -32.601269862326284, 115.6360924243927 -32.600926402257336, 115.63666105270386 -32.600212362636611, 115.63696146011353 -32.599714325105708, 115.63735842704773 -32.600084905400827, 115.63810408115387 -32.600351541494192, 115.63860297203064 -32.599519995801721, 115.63960611820221 -32.600026154968461, 115.63986361026764 -32.60008896567566, 115.63996553421021 -32.599987282215316, 115.64025521278381 -32.600238560195571))\nAYCA-DGEDI\tAmberton\tReady for service\tPOLYGON ((115.665663637788 -31.5957645503307, 115.665797781717 -31.5966551862201, 115.666171140618 -31.5966851977679, 115.666216806295 -31.5968560489338, 115.666240220472 -31.5969091870205, 115.666502755744 -31.5967332559472, 115.666648489709 -31.5967984699923, 115.666815732111 -31.5971172709415, 115.666813534778 -31.5975922501303, 115.666813683369 -31.5976796256374, 115.667108442873 -31.5976874802656, 115.667107213397 -31.5981676129245, 115.66681491166 -31.5981673821041, 115.666808652814 -31.5986474561843, 115.666906194858 -31.5986573584982, 115.666890588294 -31.599331185176, 115.669781853807 -31.5993425026873, 115.669781586458 -31.5993314561279, 115.669725344295 -31.5991326940996, 115.669732680715 -31.5990473757851, 115.669763667594 -31.5989599622537, 115.669731586428 -31.5984843928446, 115.669733936602 -31.5983502934246, 115.669718028576 -31.5982842845983, 115.669731999999 -31.596859000007, 115.669739999999 -31.5964060000116, 115.669697999997 -31.5961750000032, 115.669605740385 -31.595823818264, 115.669632 -31.5957480000074, 115.669689000001 -31.5956880000071, 115.669860999984 -31.5955850000182, 115.670099000011 -31.5954240000003, 115.670324999998 -31.5952510000101, 115.670356999999 -31.5952230000094, 115.670538000008 -31.5950660000001, 115.670647999999 -31.5949580000095, 115.670736999998 -31.5949490000088, 115.670846999999 -31.5947490000094, 115.671237999999 -31.5942860000095, 115.671602999999 -31.5938990000094, 115.671642707904 -31.5938311557375, 115.670955630495 -31.5934460584213, 115.67089267092 -31.5935054691482, 115.671140798595 -31.5938874907986, 115.670728999999 -31.5944500000094, 115.670653999999 -31.5945380000095, 115.670498999999 -31.5947100000094, 115.670311999999 -31.5948940000095, 115.670128999999 -31.5950530000095, 115.669883999999 -31.5952410000094, 115.669746729813 -31.5953326418564, 115.669623128147 -31.5951244207746, 115.669289999999 -31.5952690000095, 115.669257999999 -31.5952160000094, 115.669181999999 -31.5951360000096, 115.668989121906 -31.5948114066403, 115.66887252205 -31.5946141584708, 115.668840916121 -31.5946273052705, 115.669005369575 -31.594930237496, 115.668574344036 -31.5951110979983, 115.66854610469 -31.5950511392905, 115.668227377792 -31.5951587755998, 115.667969907894 -31.5952251026957, 115.667993750109 -31.5953076106771, 115.667674600765 -31.5953977367087, 115.667628486432 -31.5952686552074, 115.666315769232 -31.5955160129109, 115.666342358364 -31.5956389611602, 115.665663637788 -31.5957645503307))\nAYCA-LQAH1\tLot 511 Kalgan Drive Newman Townsite\tUnder construction\tPOLYGON ((119.753393000012 -23.3608589999371, 119.750556000012 -23.3556319999371, 119.749000104684 -23.3562742534904, 119.74916747271 -23.3566538577242, 119.749325752508 -23.3570620670885, 119.749419588671 -23.3573688434166, 119.749557782807 -23.3579301288632, 119.749835979758 -23.359133208927, 119.750054038173 -23.3600954317883, 119.750380560564 -23.3607020405614, 119.751502679302 -23.3621169289708, 119.751584000012 -23.3621319999372, 119.753355000012 -23.3610359999371, 119.753393000012 -23.3608589999371))\nAYCA-HT2UX\tRidge Road Estate\tReady for service\tPOLYGON ((145.140747839996 -37.5105770100269, 145.140856505757 -37.5105787210029, 145.142060697802 -37.51084290784, 145.146324959996 -37.5060673800269, 145.145797919996 -37.5055954200268, 145.145065112109 -37.5049407154907, 145.143100039479 -37.506276944471, 145.142547462712 -37.5060097839102, 145.140747839996 -37.5105770100269))\nAYCA-1J8WWD\tJimboomba Woods\tUnder construction\tPOLYGON ((153.046244 -27.8632579999842, 153.045056 -27.8631109999843, 153.044564 -27.8632259999843, 153.043131 -27.8622169999842, 153.042498 -27.8622189999842, 153.042334 -27.8621599999842, 153.041303 -27.8620179999842, 153.040965 -27.8624819999842, 153.041431 -27.8629789999842, 153.041586 -27.8634999999842, 153.041949 -27.8639779999843, 153.042585 -27.8642499999842, 153.04318 -27.8649649999842, 153.043602 -27.8650689999842, 153.043498 -27.8652389999843, 153.043226 -27.8656059999842, 153.04331 -27.8656579999842, 153.043442 -27.8654789999842, 153.0436 -27.8655649999842, 153.043985 -27.8658209999842, 153.045347 -27.8658429999842, 153.045638213312 -27.8658916052704, 153.045671 -27.8658669999842, 153.046804 -27.8657139999843, 153.046617 -27.8649319999842, 153.046982 -27.8641749999842, 153.047233 -27.8641709999842, 153.047898 -27.8640399999842, 153.046244 -27.8632579999842))\n217\tGolden Grove\tUnder construction\tMULTIPOLYGON (((144.28606911036462 -36.710448380748566, 144.28776642917768 -36.709594857966394, 144.28343197940947 -36.705818906185094, 144.28396842121839 -36.708240181345992, 144.28597471356164 -36.709560453776092, 144.28596398472166 -36.710394751042557, 144.28606911036462 -36.710448380748566)), ((144.28416154026564 -36.713258816028286, 144.28785225987036 -36.711358052081493, 144.28606911036462 -36.710448380748566, 144.28540608525083 -36.710781793090106, 144.28392550587654 -36.710437755810545, 144.28306719898586 -36.712673970591815, 144.28416154026564 -36.713258816028286)))\n209\tEden\tReady for service\tPOLYGON ((150.7617563462324 -34.012448700328783, 150.76438491106825 -34.014974361234181, 150.76694910288234 -34.01266213936799, 150.76330129861947 -34.00964726320337, 150.7617563462324 -34.012448700328783))\nAYCA-1CRLQU\tMoncrieff Residential Estate\tUnder construction\tPOLYGON ((149.104790000007 -35.1564860000211, 149.105470000007 -35.1570530000211, 149.105992695338 -35.1579576985545, 149.106731000007 -35.158476000021, 149.107832000007 -35.159357000021, 149.108161000007 -35.159579000021, 149.109241000007 -35.159910000021, 149.109317000007 -35.160038000021, 149.109422000007 -35.159771000021, 149.109952000007 -35.159762000021, 149.110044000015 -35.1594190000162, 149.110141497117 -35.1590480525773, 149.110236000007 -35.158692000021, 149.110448000007 -35.158188000021, 149.110421000007 -35.158132000021, 149.110397000007 -35.1581190000209, 149.110502000007 -35.157912000021, 149.109323000007 -35.157463000021, 149.109468000007 -35.157206000021, 149.109022000007 -35.156800000021, 149.108923000007 -35.156858000021, 149.108766000007 -35.156674000021, 149.108638000007 -35.156693000021, 149.108575000007 -35.156647000021, 149.108529000007 -35.156542000021, 149.108322000007 -35.1566040000209, 149.108355000007 -35.156686000021, 149.108036000007 -35.156782000021, 149.107152000007 -35.154796000021, 149.104790000007 -35.1564860000211))\n10234\tDalyellup\tReady for service\tPOLYGON ((115.62284231185913 -33.391038213222714, 115.62254190444946 -33.391481626633279, 115.62271356582642 -33.391580162639563, 115.62193036079407 -33.392628220520947, 115.62184721231461 -33.39287186277533, 115.62179356813431 -33.393057734448092, 115.62176406383514 -33.393403058607191, 115.62178552150726 -33.394518275865614, 115.62171578407288 -33.394522754620937, 115.6216835975647 -33.395096033396463, 115.62178015708923 -33.39508707594468, 115.62174260616302 -33.3952348737811, 115.62160849571228 -33.39563347881419, 115.6215226650238 -33.396126134194091, 115.62149584293365 -33.396318716901547, 115.62151730060577 -33.396793453846072, 115.62178552150726 -33.397765312898429, 115.62195718288422 -33.397725005596172, 115.62205374240875 -33.3980295491947, 115.62214493751526 -33.398011634894921, 115.62242388725281 -33.397962370551475, 115.62270820140839 -33.3979310205002, 115.62291741371155 -33.397948934816604, 115.62325537204742 -33.397966849129304, 115.62352895736694 -33.397971327706912, 115.62371671199799 -33.397926541920526, 115.62385618686676 -33.39786832036372, 115.62394201755524 -33.397810098767913, 115.62416195869446 -33.397644390935554, 115.62449991703033 -33.397232359280096, 115.62425315380096 -33.3969905137029, 115.62419950962067 -33.396466512643414, 115.62443017959595 -33.395499117771337, 115.62436580657959 -33.395499117771337, 115.62436580657959 -33.395248309935596, 115.62435507774353 -33.395113948297265, 115.62403321266174 -33.395122905746284, 115.62378108501434 -33.395104990847337, 115.6237006187439 -33.395082597218433, 115.62377035617828 -33.394513797110065, 115.6233412027359 -33.394491403328843, 115.62340557575226 -33.394021132590396, 115.62299251556396 -33.394003217464331, 115.62301933765411 -33.393855417533388, 115.62314808368683 -33.393407537419982, 115.62320172786713 -33.392991006843225, 115.62392592430115 -33.392100624052468, 115.62403321266174 -33.392172286103218, 115.62433362007141 -33.391688566114013, 115.62284231185913 -33.391038213222714))\n252\tTonsley Village \tReady for service\tPOLYGON ((138.56730763673485 -35.008155671689565, 138.56888477564172 -35.00821718537032, 138.56934075117346 -35.006626602480118, 138.57153479814846 -35.006907812755138, 138.57171718835576 -35.006033421385254, 138.57100372076403 -35.004908562461694, 138.57011322737148 -35.004376885478116, 138.56693749189574 -35.003792476212489, 138.56730763673485 -35.008155671689565))\n17320872\tThe Beacons\tCheck with carrier\tPOLYGON ((147.604363936 -37.777715995, 147.604115872 -37.7789650225, 147.605047936 -37.779051954, 147.604867936 -37.779949981, 147.606004096 -37.7800649955, 147.605825152 -37.780929001000004, 147.611583008 -37.781604991, 147.611940832 -37.779890041, 147.606892928 -37.7793019815, 147.606688096 -37.779505019, 147.60597888 -37.7789850025, 147.606114976 -37.777911022, 147.604363936 -37.777715995))\n10377\tHalls Head-Port Mandurah\tReady for service\tPOLYGON ((115.70966005325317 -32.535507592267805, 115.71018576622009 -32.535756330368152, 115.7109260559082 -32.535896527902963, 115.712149143219 -32.535842257915448, 115.71253538131714 -32.537696463908148, 115.71199893951416 -32.539360694246909, 115.71112453937531 -32.539148144807477, 115.70982098579407 -32.538971773614115, 115.70907533168793 -32.538777312666063, 115.70850133895874 -32.538492404005012, 115.70824384689331 -32.538096696031829, 115.70814728736877 -32.537511045031586, 115.70843696594238 -32.53598697780928, 115.70899486541748 -32.53502820416756, 115.70966005325317 -32.535507592267805))\nAYCA-LGXW5\tWedgefield\tContracted\tPOLYGON ((118.596070833098 -20.3827064266398, 118.596246747185 -20.3826343468397, 118.596483255604 -20.3831472645966, 118.596376360026 -20.3831910645415, 118.596512375584 -20.3834862113145, 118.598591166694 -20.3845738101998, 118.598977610629 -20.3845956972308, 118.598886973677 -20.3861129995032, 118.599510087754 -20.3861460738921, 118.599548566902 -20.3863277852896, 118.599882453997 -20.3862857306508, 118.599848016698 -20.3861236015089, 118.599857883612 -20.3859584082551, 118.600480995882 -20.3859914976342, 118.600632157641 -20.3834605393934, 118.600438229095 -20.3834502411566, 118.600476071294 -20.3828166433148, 118.600987107084 -20.3828206454671, 118.601081644224 -20.3824496848751, 118.598598659957 -20.3812701281307, 118.598156805067 -20.381248836707, 118.597567912063 -20.380754262216, 118.598142774986 -20.3815780859796, 118.595957645929 -20.3824734466176, 118.596070833098 -20.3827064266398))\nAYCA-TBR12\tShoal Point Bay Develoment\tContracted\tPOLYGON ((149.152767009298 -21.0044656120105, 149.152912236234 -21.0039649741764, 149.150880768266 -21.0035614058604, 149.14524433356 -21.0027776601243, 149.144505462245 -21.0019983582167, 149.14410074787 -21.001832003054, 149.14403663021 -21.0020236669109, 149.144113873249 -21.0020824746328, 149.14389478759 -21.0029712187093, 149.143830613198 -21.0030139895235, 149.143333841419 -21.002969930061, 149.143323360848 -21.0029173931365, 149.143347890232 -21.002833313435, 149.143201036213 -21.0028126255578, 149.143175888946 -21.0029137864312, 149.14316609651 -21.0029319549624, 149.143124371745 -21.0029473643664, 149.142643265843 -21.0028973185933, 149.14261860933 -21.0028877629439, 149.142603170264 -21.0028673356926, 149.142613533374 -21.0027940105127, 149.142472962855 -21.0027636354981, 149.142460554428 -21.0028143079234, 149.142448655659 -21.0028349567158, 149.142419428351 -21.0028544567521, 149.142389131653 -21.0028544340063, 149.1422874989 -21.003178947607, 149.143305460302 -21.0037085556173, 149.14332700077 -21.0036880078478, 149.143673947233 -21.0039195322401, 149.142617701618 -21.0051435059043, 149.142133328146 -21.0051443704301, 149.142096359624 -21.0058433422709, 149.142490692199 -21.0058617322204, 149.142443470219 -21.0067546122353, 149.142180253539 -21.0071458427798, 149.142428320561 -21.0073000527987, 149.142514188327 -21.0073192555383, 149.142350546461 -21.0075550552753, 149.142471333171 -21.007600440401, 149.142668326928 -21.0076067460386, 149.143299990103 -21.0075254943649, 149.143340573208 -21.0077931806354, 149.143504522822 -21.0077729061815, 149.143814986576 -21.007997308632, 149.14388507412 -21.0080317149836, 149.143961156311 -21.0080519923961, 149.144081769814 -21.0080512574579, 149.144648241667 -21.0036401960807, 149.145002312877 -21.0034935982463, 149.151659523415 -21.0042425652931, 149.152767009298 -21.0044656120105))\nAYCA-1D96QE\tCasey 4\tReady for service\tPOLYGON ((149.099585000007 -35.1740050000209, 149.099496000014 -35.1737140000163, 149.099359000007 -35.1734510000209, 149.099202000014 -35.1731760000162, 149.098917000007 -35.1726930000209, 149.098608000014 -35.1724560000163, 149.098568000007 -35.1723380000208, 149.098573000007 -35.1718710000207, 149.098137000007 -35.1712390000208, 149.097569000007 -35.1712290000209, 149.097403000007 -35.1712110000209, 149.097141000007 -35.1712020000208, 149.097014000007 -35.1711960000208, 149.096288000007 -35.1712640000209, 149.094428000007 -35.171044000021, 149.093941000007 -35.1710530000208, 149.093758000007 -35.1710830000209, 149.093526000007 -35.1711540000209, 149.093681000021 -35.1717150000121, 149.093675000007 -35.1718580000209, 149.093581000007 -35.1723040000208, 149.093453000014 -35.1729050000164, 149.093415000007 -35.1730470000209, 149.093327224863 -35.1732995284712, 149.093433290007 -35.1733206050462, 149.093908806007 -35.1734303630463, 149.093955294007 -35.1732945760463, 149.094152338007 -35.1733753640463, 149.094329883113 -35.1734478857257, 149.094304580007 -35.1734881660462, 149.094196701021 -35.1736655610373, 149.094717186021 -35.1738789550372, 149.09507531335 -35.1740365302252, 149.095237354007 -35.1737700680463, 149.096140845014 -35.1741404780418, 149.096713089654 -35.174226460757, 149.099585000007 -35.1740050000209), (149.095109355738 -35.1731168702425, 149.095283337947 -35.1730419545781, 149.095379214008 -35.1731890877557, 149.095295050662 -35.1732211647142, 149.095219214007 -35.1732570877779, 149.095109355738 -35.1731168702425), (149.095898093007 -35.1731241190463, 149.095835620014 -35.1726401400416, 149.096236760014 -35.1726052310417, 149.096297121014 -35.1726452940417, 149.096348027007 -35.1730396470461, 149.096299235007 -35.1730892100461, 149.095898093007 -35.1731241190463))\n235\tWarralily Central\tUnder construction\tPOLYGON ((144.36323677063632 -38.234255509577849, 144.36413799286882 -38.23058108713554, 144.36023269654595 -38.230041706747549, 144.35937438965527 -38.23361502728261, 144.36323677063632 -38.234255509577849))\n10169\tBurns Beach\tReady for service\tPOLYGON ((115.72501301765442 -31.728975670762381, 115.72486281394958 -31.728346018738922, 115.72481989860535 -31.72823195088564, 115.7247394323349 -31.728250201751592, 115.72450876235962 -31.727679860491303, 115.72447657585144 -31.727556666318094, 115.72440683841705 -31.727301151955249, 115.72399914264679 -31.727392407165706, 115.72363436222076 -31.726502665030598, 115.72352707386017 -31.726073760642254, 115.72389721870422 -31.726023569573449, 115.72377920150757 -31.725653979957091, 115.72375237941742 -31.725576411578874, 115.72420835494995 -31.72549428028411, 115.72498083114624 -31.725348268913709, 115.72493255138397 -31.725129251426793, 115.72542607784271 -31.725033431113516, 115.72534024715424 -31.724682089117238, 115.72500765323639 -31.724745969579256, 115.72490036487579 -31.72491479630267, 115.72474479675293 -31.725074496974187, 115.7237845659256 -31.725257011690406, 115.72245955467224 -31.725507968838293, 115.72197139263153 -31.725594662967815, 115.72168707847595 -31.725612914353178, 115.72147250175476 -31.725480591727912, 115.7213169336319 -31.725421274627678, 115.72128474712372 -31.725325454616307, 115.72137594223022 -31.725220508775909, 115.72132229804993 -31.725056245482797, 115.72091996669769 -31.725152065772498, 115.72085022926331 -31.724996928110961, 115.72054445743561 -31.72506993410169, 115.72038888931274 -31.72510187420453, 115.72042644023895 -31.725257011690406, 115.72007775306702 -31.725311766035176, 115.72005093097687 -31.725142940034885, 115.71956276893616 -31.725229634505876, 115.71962714195251 -31.725403023204581, 115.7192462682724 -31.725476028875402, 115.71921408176422 -31.725302640313284, 115.71883320808411 -31.725389334634883, 115.71877419948578 -31.72540758606069, 115.71855962276459 -31.725466903169679, 115.71837186813354 -31.725393897491681, 115.71826457977295 -31.725270700279616, 115.71816802024841 -31.725092748461989, 115.71779787540436 -31.725316328895769, 115.71770668029785 -31.725311766035176, 115.71766912937164 -31.72552622024072, 115.71791589260101 -31.725626602889829, 115.71806609630585 -31.725731548270389, 115.71817338466644 -31.725936875845139, 115.71820020675659 -31.726114826041947, 115.71811437606812 -31.726338404010018, 115.71805536746979 -31.7264981022284, 115.71817874908447 -31.726676051347571, 115.71826994419098 -31.726844874555034, 115.71828603744507 -31.727123204036396, 115.71835041046143 -31.727392407165706, 115.71851670742035 -31.727629670292359, 115.71870982646942 -31.72782130545118, 115.71890830993652 -31.72799925202953, 115.71911215782166 -31.728012940213706, 115.71941256523132 -31.727917122881973, 115.7197505235672 -31.727830430925053, 115.72001874446869 -31.727720925179312, 115.72052836418152 -31.727584042815177, 115.72087705135345 -31.72747909953241, 115.72110772132874 -31.727725487921308, 115.72255611419678 -31.727292953240536, 115.7229745388031 -31.726909680341411, 115.72336077690125 -31.727055689251806, 115.72424054145813 -31.729154541916696, 115.72428345680237 -31.7293096726183, 115.72450876235962 -31.729172792600952, 115.72456240653992 -31.7290632884415, 115.72480916976929 -31.729054163089035, 115.72501301765442 -31.728975670762381))\nAYCA-1BC5OS\tHuntlee Stage 1\tUnder construction\tPOLYGON ((151.351995999998 -32.6743620000152, 151.351916999998 -32.6744700000152, 151.351782999998 -32.6746770000152, 151.352735999998 -32.6749690000152, 151.352853999998 -32.6749950000152, 151.352931999998 -32.6750070000152, 151.353018999998 -32.6750200000153, 151.354070999998 -32.6750870000152, 151.354558999998 -32.6752850000152, 151.354613999998 -32.6753270000152, 151.354847999998 -32.6755240000152, 151.354991999998 -32.6757660000152, 151.353828111694 -32.6762616449879, 151.353898145814 -32.6763897889366, 151.353466989389 -32.6765850146814, 151.353478964843 -32.6766050642333, 151.35322629244 -32.6767099445105, 151.353164999998 -32.6768710000152, 151.353037588851 -32.6768335617201, 151.352967429185 -32.6769681229608, 151.352655999998 -32.6768410000152, 151.352422999998 -32.6766880000152, 151.352152999998 -32.6766560000152, 151.352017999998 -32.6772700000152, 151.352002999998 -32.6772840000152, 151.351210768857 -32.6779623382177, 151.350828285223 -32.678288250254, 151.351471999998 -32.6788530000151, 151.351847999998 -32.6786800000152, 151.351799980151 -32.6785959779776, 151.351957569555 -32.6785242642248, 151.352078999998 -32.6786950000152, 151.352238052847 -32.6788088009927, 151.352444826259 -32.6788785095011, 151.352706215214 -32.6789362305937, 151.352710061502 -32.6787222656783, 151.353053999998 -32.6788050000152, 151.353696999998 -32.6790160000152, 151.353701999998 -32.6792950000152, 151.353763999998 -32.6795820000152, 151.353916307129 -32.6795621868522, 151.353933999998 -32.6795590000152, 151.35393260748 -32.6795432430649, 151.354257999998 -32.6794610000152, 151.354312999998 -32.6796020000152, 151.354817999998 -32.6794570000152, 151.355864999998 -32.6792330000151, 151.355987999998 -32.6792410000152, 151.356303391732 -32.677668287154, 151.355670382912 -32.6759477883949, 151.355055322989 -32.6748026049263, 151.351995999998 -32.6743620000152))\n311\tIngenia Hervey Bay\tReady for service\tPOLYGON ((152.89279818800648 -25.318376649408144, 152.89283109753279 -25.318334859691962, 152.89681232751377 -25.317736725072979, 152.8969551864075 -25.318524004029904, 152.89695628101904 -25.318523841786387, 152.8970051165272 -25.318795870455606, 152.897005116938 -25.3187958703947, 152.89700515098889 -25.318796060068294, 152.89700515057811 -25.318796060129127, 152.89745051732072 -25.321253545841842, 152.89744644681588 -25.321254159002052, 152.897447262996 -25.321258705178142, 152.89543534370722 -25.321558355104671, 152.89543534366882 -25.321558354890691, 152.89494212296572 -25.321631809400195, 152.894942608242 -25.321634547323043, 152.89459881536172 -25.321684884870706, 152.8945984961297 -25.321683050843991, 152.89346918312489 -25.321853029983597, 152.89346917164565 -25.321853022507227, 152.89346921958966 -25.321852961695654, 152.89342324226976 -25.3218231089429, 152.89326984180391 -25.32097751234646, 152.89326548957104 -25.320978160462008, 152.89310756791792 -25.320098342383151, 152.89311022574196 -25.320097946591162, 152.89279818800648 -25.318376649408144))\nAYCA-JR6GE\tMuirhead\tReady for service\tPOLYGON ((130.892741370061 -12.3653714219552, 130.893981602021 -12.3653741022313, 130.894458045105 -12.365375130372, 130.895500995493 -12.3653773780919, 130.895303179534 -12.3650754906898, 130.895168176417 -12.3648302082081, 130.895177520862 -12.3648055662116, 130.895325729655 -12.3647242137759, 130.895466613606 -12.3649838450466, 130.895308784758 -12.3650768629658, 130.895504204907 -12.3653758911053, 130.896394316093 -12.3648023104559, 130.89665628295 -12.3646461543925, 130.896329947131 -12.3641180302981, 130.896009425957 -12.363594102907, 130.895975491267 -12.3635735904897, 130.895482370035 -12.3627395275387, 130.896197063346 -12.3623161251834, 130.895605438765 -12.3612383173931, 130.89535499999 -12.3613799998874, 130.89527199999 -12.3612389998873, 130.89531199999 -12.3612159998874, 130.89522899999 -12.3610749998873, 130.89514999999 -12.3611209998873, 130.89505799999 -12.3609639998873, 130.89513699999 -12.3609189998873, 130.89505499999 -12.3607779998873, 130.89501499999 -12.3608009998874, 130.89492299999 -12.3606439998874, 130.89488299999 -12.3606669998874, 130.89479099999 -12.3605099998873, 130.89488299999 -12.3604579998873, 130.89479999999 -12.3603169998874, 130.89471999999 -12.3603619998873, 130.89463699999 -12.3602219998873, 130.89467699999 -12.3601989998874, 130.89459499999 -12.3600579998874, 130.89434400002 -12.3601999998701, 130.893996605242 -12.3603564595389, 130.89396164535 -12.3603732008034, 130.894026458636 -12.3604817807845, 130.894161281459 -12.3607086630144, 130.89401802029 -12.3607901020267, 130.894039822541 -12.3608271708207, 130.893859033511 -12.3609194304315, 130.893658275697 -12.3609389493891, 130.893677372296 -12.3612214591326, 130.893677509858 -12.3612236394407, 130.893667579186 -12.3612236459136, 130.893667873286 -12.3616620085985, 130.893483997742 -12.3616621284303, 130.893484027608 -12.3617073204638, 130.893300152018 -12.3617074401759, 130.893300489138 -12.3622080457313, 130.893300528554 -12.3622675139135, 130.892181040729 -12.3622722088598, 130.892179080556 -12.3631464566195, 130.892308368888 -12.3636891133709, 130.892388178296 -12.3639249983662, 130.892898997615 -12.3638323993311, 130.892890266746 -12.3643660167645, 130.892801723816 -12.3645835183705, 130.892748352642 -12.3647051117988, 130.89274227653 -12.3652877515537, 130.892741370061 -12.3653714219552))\nAYCA-DZ1PY\tHoly Spirit Boondall\tReady for service\tPOLYGON ((153.061465 -27.3601289999794, 153.06151104 -27.360456659979, 153.061559640021 -27.3605982300406, 153.061615079964 -27.360758069877, 153.061998479999 -27.3618701999763, 153.062234640159 -27.3624381903623, 153.062458559866 -27.3629758496581, 153.062856 -27.3639320099795, 153.0626886 -27.3648129299795, 153.0627066 -27.3648316499794, 153.06270804 -27.3648418199795, 153.06273324 -27.3648587399793, 153.062742540676 -27.3648868911334, 153.062755897899 -27.3649147006881, 153.062772349324 -27.3649443117238, 153.062787754139 -27.3649748630926, 153.06280272 -27.3650135399795, 153.062821800002 -27.3650372999815, 153.06284448 -27.3650564699801, 153.06285096 -27.3650733899791, 153.062866080001 -27.3650858999808, 153.062891640001 -27.3651266699805, 153.062967240003 -27.3651726599812, 153.06304392 -27.3652028999794, 153.063171360005 -27.3652208099802, 153.063272519993 -27.3652225199793, 153.063389520006 -27.3652352099808, 153.063512639995 -27.365262029979, 153.063660960002 -27.3652762499796, 153.063759959998 -27.3652536599804, 153.063822570395 -27.3652113110054, 153.063933480007 -27.3651428699757, 153.064019880002 -27.3650975999791, 153.064215359995 -27.3650564699811, 153.064323719992 -27.365018219983, 153.064391039998 -27.3649891499808, 153.064442879999 -27.3649468499806, 153.06446952 -27.3648958199792, 153.064505879999 -27.36487592998, 153.064556640001 -27.3648759299801, 153.064616040001 -27.3649178699809, 153.064674360002 -27.3649895999818, 153.064737359999 -27.3650468399792, 153.064829879994 -27.3650671799788, 153.06486767999 -27.365071409979, 153.064880730561 -27.3650719893315, 153.06498324 -27.3650765399802, 153.065783112452 -27.3607620164626, 153.061465 -27.3601289999794))\nAYCA-GNFE0\tRIVERSTONE RISE\tReady for service\tPOLYGON ((151.31856988929 -23.9689175040552, 151.318941591885 -23.9693200178553, 151.319367514234 -23.969483600108, 151.319581946088 -23.9696385616847, 151.319515130763 -23.96971663112, 151.319852649216 -23.9699605413924, 151.319982999998 -23.9698579999485, 151.320032999999 -23.9698269999485, 151.320129999998 -23.9698079999485, 151.320982999999 -23.9699919999485, 151.32126970188 -23.9695525414743, 151.324094665085 -23.9689749522279, 151.324122962618 -23.9687691459779, 151.324158421059 -23.9687473052209, 151.324241169718 -23.9687578378551, 151.324278611302 -23.9685194923955, 151.32406797383 -23.9684890481138, 151.324104316238 -23.9682622815667, 151.322941860172 -23.9673174501157, 151.322214092796 -23.9674227196282, 151.322161435161 -23.9671669412031, 151.320848930522 -23.9662173588678, 151.320427114904 -23.9661983018289, 151.319873796645 -23.9668381801394, 151.319351265309 -23.9664631986299, 151.318460816607 -23.9673364849699, 151.318321150024 -23.9676732415925, 151.31824862408 -23.96764538605, 151.31784696762 -23.9685284362468, 151.31806565453 -23.9686563947812, 151.318283152718 -23.9687378357194, 151.31832045958 -23.9687164255841, 151.318609239627 -23.9688309912009, 151.31856988929 -23.9689175040552))\nAYCA-JBQMC\tWishart Business Precinct\tReady for service\tPOLYGON ((130.953474865161 -12.4685142851903, 130.955416855685 -12.4705828567013, 130.956416424524 -12.4701293714973, 130.957557648092 -12.4696182556814, 130.957048453979 -12.4685357748211, 130.956526806752 -12.4674065364066, 130.955973101033 -12.4664751271599, 130.955394678197 -12.4658142179147, 130.955259982389 -12.4656595985019, 130.954388295703 -12.4649978105365, 130.953457238662 -12.4644934299771, 130.953474865161 -12.4685142851903))\nAYCA-1AO4XL\tCloverlea - Chirnside Park\tContracted\tPOLYGON ((145.326879999998 -37.7488860000284, 145.326930999998 -37.7489360000284, 145.326831999998 -37.7494950000284, 145.326556999998 -37.7500010000283, 145.326352999998 -37.7510220000284, 145.326287999998 -37.7510660000283, 145.326558999998 -37.7510680000283, 145.3268630871 -37.7509743767973, 145.327057999998 -37.7508900000283, 145.326998999998 -37.7503980000283, 145.327057999998 -37.7501380000284, 145.327343999998 -37.7497490000284, 145.329393999998 -37.7507000000284, 145.330438999998 -37.7510320000284, 145.330359999998 -37.7515250000284, 145.329440999998 -37.7518080000284, 145.329129999998 -37.7524600000284, 145.330467999998 -37.7532870000284, 145.330815999998 -37.7530030000284, 145.331314999998 -37.7527590000284, 145.331873999998 -37.7526190000284, 145.332335999998 -37.7523730000284, 145.332496999998 -37.7515450000285, 145.332380999998 -37.7508100000284, 145.332417999998 -37.7506230000284, 145.331862999998 -37.7505550000283, 145.331864999998 -37.7505440000284, 145.331527999998 -37.7505030000284, 145.331538999998 -37.7504470000284, 145.331258999998 -37.7504130000283, 145.330737999998 -37.7503430000284, 145.330754999998 -37.7502550000284, 145.330396999998 -37.7502110000284, 145.330601999998 -37.7491580000284, 145.330287999998 -37.7491190000284, 145.330311999998 -37.7489950000284, 145.330235999998 -37.7489850000284, 145.330110999998 -37.7490690000284, 145.329554999998 -37.7491860000284, 145.328990999998 -37.7491080000283, 145.327736999998 -37.7486590000284, 145.326926999998 -37.7485810000283, 145.326879999998 -37.7488860000284))\n17365410\tWestwood\tCheck with carrier\tPOLYGON ((152.761562016 -26.9620360015, 152.762610016 -26.9615219975, 152.762594016 -26.961349004000002, 152.762748 -26.961268991500003, 152.762784992 -26.9612970005, 152.762852 -26.961315001, 152.762852 -26.961315001, 152.762926016 -26.9613039935, 152.763256992 -26.9611420075, 152.762671008 -26.960123009, 152.762507008 -26.9598219955, 152.762351008 -26.9595279935, 152.762096992 -26.959059999, 152.762232992 -26.959003999500002, 152.761863008 -26.958412998500002, 152.762439008 -26.9577440015, 152.762298016 -26.957510994, 152.762494016 -26.957452996500002, 152.762384992 -26.957278005, 152.76232 -26.957317003, 152.761743008 -26.956366991, 152.758904992 -26.9577400055, 152.761562016 -26.9620360015))\nAYCA-1FTKWM\tMolonglo Valley - Coombs Stage 3\tReady for service\tPOLYGON ((149.038520189006 -35.3142289200475, 149.037890970006 -35.3142290710475, 149.037879491006 -35.3142291710476, 149.037868017006 -35.3142294690474, 149.037856552019 -35.3142299630396, 149.037845103006 -35.3142306520475, 149.037833674019 -35.3142315380397, 149.037822270019 -35.3142326190397, 149.037810896006 -35.3142338950477, 149.037799557006 -35.3142353650475, 149.037788258019 -35.3142370290398, 149.037777004006 -35.3142388860475, 149.037721576006 -35.3142510360475, 149.037678536019 -35.3142641250399, 149.037636977006 -35.3142801110476, 149.037616845013 -35.3142891570437, 149.037587554006 -35.3143039970476, 149.037379159006 -35.3144171250476, 149.037429244018 -35.3145397030395, 149.037441791006 -35.3145730710477, 149.037452352019 -35.3146068980398, 149.037458277019 -35.3146296640397, 149.037465476006 -35.3146640790477, 149.039311165508 -35.3146612663121, 149.039462314006 -35.3148040980476, 149.039626620006 -35.3147918790476, 149.040899026006 -35.3153935720476, 149.041293286953 -35.3155800052658, 149.041541316006 -35.3152706920475, 149.042551561006 -35.3140108020475, 149.043102040006 -35.3133242710475, 149.043634364006 -35.3126603700474, 149.044166678006 -35.3119964670475, 149.043902891013 -35.3118717340435, 149.043073318012 -35.3114794600436, 149.043006297012 -35.3114536650435, 149.042955658012 -35.3114410740435, 149.042914047006 -35.3114346500475, 149.042893006012 -35.3114326770436, 149.042840112012 -35.3114313910435, 149.042808420012 -35.3114331250435, 149.042766558012 -35.3114383440436, 149.042745906006 -35.3114421860476, 149.042725503013 -35.3114468390435, 149.042695470012 -35.3114553130435, 149.042656735012 -35.3114693320434, 149.042619824012 -35.3114863390434, 149.042602160006 -35.3114959150475, 149.042585079012 -35.3115061770435, 149.042485046012 -35.3115682840436, 149.042383764012 -35.3116290160436, 149.042281262012 -35.3116883560434, 149.042212263006 -35.3117271350475, 149.042107790006 -35.3117841200476, 149.042002173012 -35.3118396690436, 149.041894419006 -35.3118942770475, 149.041821967012 -35.3119298540434, 149.041749032012 -35.3119647620434, 149.041601754006 -35.3120325570476, 149.041527428006 -35.3120654350476, 149.041490098006 -35.3120816170474, 149.041415108012 -35.3121134650436, 149.041263845012 -35.3121750840435, 149.041187590012 -35.3122048470435, 149.041110934012 -35.3122339070436, 149.041033884012 -35.3122622600436, 149.040212030012 -35.3125491770435, 149.040124512012 -35.3125834640436, 149.040054628006 -35.3126167770475, 149.039987919012 -35.3126542090437, 149.039924746012 -35.3126955570437, 149.039865449012 -35.3127405980436, 149.039821247006 -35.3127789190476, 149.039779854019 -35.3128192930396, 149.039741413006 -35.3128615830476, 149.039714599006 -35.3128944700474, 149.039689571006 -35.3129282900474, 149.039093057676 -35.3137757531399, 149.038896079454 -35.3136951740953, 149.038723936536 -35.3139364088066, 149.038914978006 -35.3140287460476, 149.038890130006 -35.3140632300475, 149.038878402012 -35.3140774420438, 149.038865862012 -35.3140911810437, 149.038838462006 -35.3141171150476, 149.038816005006 -35.3141351000474, 149.038792040006 -35.3141517250474, 149.038775286006 -35.3141620120474, 149.038757953006 -35.3141716330475, 149.038712353006 -35.3141926380476, 149.038673882006 -35.3142061530475, 149.038654102006 -35.3142117690475, 149.038623877006 -35.3142187320476, 149.038593122006 -35.3142239100476, 149.038572403006 -35.3142263570475, 149.038551565006 -35.3142279930476, 149.038520189006 -35.3142289200475))\n10567\tSecret Harbour\tReady for service\tPOLYGON ((115.75070321559906 -32.401691777732488, 115.75112700462341 -32.401646485290392, 115.75112164020538 -32.401315849774818, 115.75135767459869 -32.401301801984751, 115.75131475925446 -32.401071269299173, 115.75148105621338 -32.400926332408346, 115.7517009973526 -32.400776865995979, 115.75275778770447 -32.400758748838257, 115.75314939022064 -32.4009127445629, 115.75320303440094 -32.401053152200546, 115.75322985649109 -32.401397376452778, 115.75365364551544 -32.401397376452778, 115.75366973876953 -32.402449078151648, 115.75406670570374 -32.403970878230695, 115.75374484062195 -32.40512126959667, 115.75231790542603 -32.405556059366113, 115.75191020965576 -32.405764395388445, 115.75110554695129 -32.4049582228932, 115.75132012367249 -32.402992581124877, 115.75070321559906 -32.401691777732488))\n10397\tIluka\tReady for service\tPOLYGON ((115.72926163673401 -31.739053156731849, 115.7295486330986 -31.7390622810995, 115.73007166385651 -31.739263016960418, 115.73052495718002 -31.739404444237586, 115.73095679283142 -31.739454628058205, 115.73098160326481 -31.739629130677407, 115.73174670338631 -31.739780822229612, 115.73234349489212 -31.740061393919611, 115.73235020041466 -31.740292351685209, 115.73227107524872 -31.740648766860055, 115.73232203722 -31.740773084150415, 115.73188617825508 -31.740928195398006, 115.73144227266312 -31.74102856136096, 115.73152776807547 -31.741200209716016, 115.731465741992 -31.741321674971083, 115.73137421160936 -31.741520695162059, 115.73117539286613 -31.742116612660777, 115.73115259408951 -31.742442797457368, 115.73102653026581 -31.742447359474347, 115.73075294494629 -31.74319552721893, 115.72972297668457 -31.74292294851185, 115.72845697402954 -31.742723361083669, 115.72782397270203 -31.742743890096133, 115.72788029909134 -31.74064990738642, 115.7280358672142 -31.74023703592713, 115.72840601205826 -31.739570963174195, 115.72882980108261 -31.738804517367424, 115.72917312383652 -31.738964194100152, 115.72926163673401 -31.739053156731849))\n8\tRCA Beleura Village\tReady for service\tPOLYGON ((145.07253621425161 -38.224609205304276, 145.07041190471182 -38.224061352088746, 145.07117365207205 -38.222527341135645, 145.0708410581542 -38.221659177746787, 145.07153843249807 -38.22133045298294, 145.07267568912039 -38.220892150987375, 145.07337306346426 -38.220656141126831, 145.07490728702078 -38.220167261123159, 145.07599089946279 -38.219897532818408, 145.07464979495535 -38.222982490617504, 145.07352326716909 -38.222695915349838, 145.07317994441519 -38.223513494747344, 145.07329796161184 -38.223875923912018, 145.07319067325125 -38.22420463717431, 145.0727507909728 -38.224701918517177, 145.07253621425161 -38.224609205304276))\n22\tEvergreen Links\tReady for service\tPOLYGON ((144.27727 -36.71305, 144.27458 -36.71215, 144.27508 -36.71144, 144.27562 -36.71066, 144.27624 -36.70969, 144.27683 -36.70886, 144.27719 -36.70834, 144.27838 -36.70796, 144.27959 -36.70759, 144.27963 -36.70795, 144.27894 -36.70969, 144.27859 -36.71063, 144.27809 -36.71157, 144.27727 -36.71305))\nAYCA-ENWFM\tCoolalinga Sub-Division\tReady for service\tPOLYGON ((131.043822840234 -12.5197478098528, 131.040649800235 -12.5152283698527, 131.039849520235 -12.5142972298527, 131.03937767588 -12.5161285498199, 131.038959785845 -12.5183383306745, 131.040297238958 -12.5192687215971, 131.040226088142 -12.5193820429338, 131.040437577485 -12.5194831759446, 131.040507658602 -12.5194106412702, 131.041236795075 -12.5199091856967, 131.041667167998 -12.5193197492831, 131.042216538001 -12.5200981071464, 131.041984244629 -12.5204391235121, 131.042249230836 -12.5205624876425, 131.042484112286 -12.5202777364172, 131.042427306546 -12.5202339741934, 131.042594018994 -12.5200048775955, 131.042653489093 -12.5200497664566, 131.042686906446 -12.5200072436663, 131.042882319447 -12.5201385363999, 131.042714904274 -12.5203712667455, 131.042442913253 -12.520713287301, 131.043246209846 -12.5213230394631, 131.043822840234 -12.5197478098528), (131.040801274339 -12.5179311147254, 131.040639975268 -12.5176956609142, 131.040827579934 -12.5175716124322, 131.0409888792 -12.5178070658849, 131.040801274339 -12.5179311147254), (131.041749476821 -12.5186584168319, 131.041994180033 -12.5184885092734, 131.042133528269 -12.5186449718472, 131.04188843636 -12.5188341201719, 131.041749476821 -12.5186584168319), (131.041487419551 -12.5182874750301, 131.041698581565 -12.5181047814807, 131.041848034473 -12.5182760852897, 131.041620963426 -12.518471442023, 131.041487419551 -12.5182874750301), (131.041376576505 -12.5175507477144, 131.04154457737 -12.5177847569171, 131.041352994128 -12.5179148665278, 131.04118857903 -12.517678496291, 131.041376576505 -12.5175507477144), (131.04228136656 -12.5193970347662, 131.042526136148 -12.519236396877, 131.042654135626 -12.5194246448852, 131.042409365977 -12.5195852829041, 131.04228136656 -12.5193970347662), (131.041400307815 -12.5189217330362, 131.041645839782 -12.5187537118691, 131.041646653338 -12.5187556711449, 131.04177596814 -12.5189404351006, 131.041532575846 -12.5191057485356, 131.041400307815 -12.5189217330362), (131.041660234657 -12.5193079968497, 131.041918799399 -12.519141069017, 131.042044716549 -12.519327668394, 131.041784735447 -12.5194846708143, 131.041660234657 -12.5193079968497), (131.041185569876 -12.5176796468513, 131.041351666427 -12.5179149971567, 131.041159402408 -12.5180468127325, 131.040992190231 -12.5178077468695, 131.041185569876 -12.5176796468513), (131.042429257079 -12.5198713926533, 131.042541251156 -12.5199686962449, 131.042594018986 -12.5200048775942, 131.042427512017 -12.5202316632586, 131.042226873777 -12.5200922617276, 131.042182929887 -12.5200370600537, 131.042429257079 -12.5198713926533), (131.042810170023 -12.5196271599645, 131.0430463242 -12.5194795650209, 131.043154944516 -12.5196573900647, 131.043204072229 -12.5197652534168, 131.043209446466 -12.5198102629585, 131.043188488278 -12.5199839877165, 131.042985790692 -12.5197928046565, 131.042832485976 -12.5199962927362, 131.042634196747 -12.5198574451255, 131.042564267263 -12.5197858667439, 131.042810170023 -12.5196271599645), (131.041303845074 -12.5198168057597, 131.040581696148 -12.5193034680358, 131.041212798821 -12.5186430589472, 131.041666842731 -12.5193197034073, 131.041303845074 -12.5198168057597))\n17344624\tMadison Ridge\tCheck with carrier\tPOLYGON ((152.956953728 -27.0450116095, 152.955926272 -27.044889565000002, 152.955654496 -27.044857264, 152.954649376 -27.0447377355, 152.953855936 -27.050087436000002, 152.954852416 -27.050266257, 152.955649792 -27.0504093545, 152.95625856 -27.0504432835, 152.956953728 -27.0450116095))\n17326045\tAurukun Res Sub-division - stage 2\tCheck with carrier\tPOLYGON ((141.725994848 -13.365806045, 141.723996128 -13.365349021, 141.723302048 -13.368440963, 141.722093888 -13.3682010365, 141.721646048 -13.3700519615, 141.724902976 -13.3708130145, 141.725994848 -13.365806045))\nAYCA-1BK5IS\tJimboomba Woods\tReady for service\tPOLYGON ((153.060515 -27.8666469999842, 153.060372 -27.8666269999842, 153.059875 -27.8661779999843, 153.059133398122 -27.8671403544844, 153.058547718472 -27.8673962512061, 153.057534 -27.8663989999842, 153.057200569308 -27.866656995573, 153.057235731278 -27.8667811618183, 153.057006762777 -27.8669015610607, 153.056988626325 -27.8667706002395, 153.056937929266 -27.866752272432, 153.056520136533 -27.8681308542803, 153.056422855791 -27.8681089629918, 153.056707400948 -27.8698755077248, 153.056865 -27.8698569999843, 153.056995 -27.8694319999843, 153.057264 -27.8690049999843, 153.057527 -27.8688289999842, 153.057878 -27.8687709999842, 153.058293 -27.8688559999843, 153.058823 -27.8692639999843, 153.059276 -27.8696019999842, 153.059681 -27.8697349999843, 153.059956 -27.8687809999842, 153.060193 -27.8687429999843, 153.060546 -27.8688389999843, 153.06103 -27.8694429999843, 153.062017 -27.8686789999843, 153.062525 -27.8672179999842, 153.062493 -27.8671929999843, 153.060515 -27.8666469999842))\n10385\tHalls Head-Port Mandurah\tReady for service\tPOLYGON ((115.70902973413467 -32.54463498135928, 115.7095567882061 -32.544603750894147, 115.70989809930325 -32.544573438961713, 115.7099524140358 -32.544564960097659, 115.71000874042511 -32.54455308968663, 115.71003254503012 -32.544526522570571, 115.71004830300808 -32.544498824930557, 115.71004394441843 -32.544577961022206, 115.7100436091423 -32.54463674778799, 115.71006372570992 -32.544704119352637, 115.7100972533226 -32.544766297574071, 115.71019113063812 -32.544874826730087, 115.71031987667084 -32.544973746419487, 115.71053177118301 -32.545089623631284, 115.71084156632423 -32.545216240511259, 115.71105010807514 -32.545297636982653, 115.71126200258732 -32.545376207117684, 115.71143433451653 -32.545450255167616, 115.71172267198563 -32.54556376477445, 115.71174815297127 -32.545577330805614, 115.71175888180733 -32.545590896834746, 115.71178168058395 -32.545649682937281, 115.71170926094055 -32.5457649940266, 115.71184806525707 -32.545820953766565, 115.7119157910347 -32.545853844228773, 115.7119258493185 -32.5458442349865, 115.71201637387276 -32.545892846436871, 115.71217328310013 -32.545956719581639, 115.71265742182732 -32.54614551250495, 115.71275800466537 -32.545979894782221, 115.71284115314484 -32.545810885255321, 115.71290552616119 -32.545682008211628, 115.7130691409111 -32.545748707757355, 115.71323812007904 -32.545815407253492, 115.71333602070808 -32.545855769609908, 115.71334473788738 -32.545875217723534, 115.71336083114147 -32.546014834212038, 115.713253878057 -32.546251284414573, 115.7131796143949 -32.546425186022525, 115.71313083171844 -32.54650299562222, 115.71312949061394 -32.546507517585539, 115.713095292449 -32.546519952983466, 115.71298196911812 -32.546556799905311, 115.71296118199825 -32.546599864505232, 115.71293268352747 -32.546652997502434, 115.7129068672657 -32.546701608514887, 115.7128793746233 -32.54674626279381, 115.71288071572781 -32.546743542557522, 115.71285020560026 -32.546732688107348, 115.71283847093582 -32.546753487317076, 115.7126996666193 -32.54697958457281, 115.71256890892982 -32.547192239120477, 115.71237310767174 -32.547544913539454, 115.7122041285038 -32.54785632428819, 115.71210153400898 -32.548033737847156, 115.71203883737326 -32.548154662897574, 115.71201704442501 -32.548225847155784, 115.71199525147676 -32.548334372129645, 115.71198619902134 -32.548423113807644, 115.71211025118828 -32.5485045073715, 115.71285925805569 -32.548531355926706, 115.71320626884699 -32.548546475899016, 115.71340994909406 -32.548553470651704, 115.7135231886059 -32.548555837562823, 115.71361899375916 -32.548557639241409, 115.71368873119354 -32.548560748020051, 115.71375712752342 -32.548554389154525, 115.7137531042099 -32.548555943543917, 115.71376048028469 -32.548555943543917, 115.71376115083694 -32.548596640274809, 115.71376081556082 -32.548597770739335, 115.71376316249371 -32.54859890120381, 115.71327701210976 -32.548596640274845, 115.71265071630478 -32.548614727704894, 115.71217060089111 -32.548596640274845, 115.71092337369919 -32.548541954038413, 115.71058072149754 -32.54848733842276, 115.71038827300072 -32.548430461840752, 115.70996850728989 -32.548211151055483, 115.70980489253998 -32.548069842275986, 115.70966809988022 -32.547917228544293, 115.70947900414467 -32.5476950903156, 115.70931270718575 -32.547481995365906, 115.7091162353754 -32.54728868332942, 115.70893988013268 -32.547131546338079, 115.70876888930798 -32.54698797488971, 115.70859655737877 -32.546844403211729, 115.70833437144756 -32.546645437357142, 115.70819389075041 -32.546548215245096, 115.70808559656143 -32.54646908089012, 115.70791259407997 -32.546358292675961, 115.70775233209133 -32.546275766672494, 115.70764571428299 -32.546281419140904, 115.70793807506561 -32.5459196604451, 115.70813119411469 -32.54563929645321, 115.70873737335205 -32.544942904685151, 115.7090163230896 -32.544635405302188, 115.70902973413467 -32.54463498135928))\nAYCA-NGQ9B\tBungarribee (Bunya)\tReady for service\tPOLYGON ((150.867204897709 -33.7714202761297, 150.86747910028 -33.7720757212164, 150.868673850575 -33.7717185402559, 150.868914886698 -33.7722523899595, 150.869303654312 -33.7723160870849, 150.87064666411 -33.7719836485922, 150.870909277107 -33.7724519201447, 150.872552507301 -33.7719255529855, 150.872515464771 -33.772705420325, 150.872752703334 -33.772704966609, 150.873043536082 -33.7716128256996, 150.873013386715 -33.771495132806, 150.872952514689 -33.7713896618798, 150.872885733575 -33.771299049038, 150.872118696349 -33.7702765387939, 150.87153989761 -33.7696106248882, 150.869893543606 -33.7690480144143, 150.868852773566 -33.7694113420474, 150.869129400054 -33.7700285806642, 150.866912149517 -33.7707346007485, 150.867204897709 -33.7714202761297))\n17394228\tGol Gol Heights Lot 78 on DP 756946\tCheck with carrier\tPOLYGON ((142.233328 -34.1830270045, 142.233672 -34.185376005, 142.238648992 -34.184924993500005, 142.239036 -34.181792999, 142.238232992 -34.181910992, 142.238046016 -34.182564005, 142.236655232 -34.1827063255, 142.236726944 -34.1832639525, 142.235923776 -34.1833232635, 142.235837696 -34.1827775135, 142.233328 -34.1830270045))\n17341371\tLinton Hill Stage 3\tCheck with carrier\tPOLYGON ((151.822847168 -27.470484988000003, 151.82378208 -27.4700829645, 151.823927168 -27.468804966, 151.82411616 -27.468744027, 151.82428608 -27.4678000275, 151.821983872 -27.467994962000002, 151.822049056 -27.467337953, 151.820178112 -27.4673519945, 151.819602112 -27.4710459635, 151.82051904 -27.4711599975, 151.82070192 -27.47117304, 151.821556928 -27.4707240265, 151.821726848 -27.471050015, 151.822847168 -27.470484988000003))\n10356\tMillbridge\tReady for service\tMULTIPOLYGON (((115.73473628458848 -33.295665728421589, 115.73474138975143 -33.295662411326781, 115.7347346842289 -33.295664653248259, 115.73473628458848 -33.295665728421589)), ((115.73048070073128 -33.300927475174035, 115.73058262467384 -33.300809781319053, 115.73062151670456 -33.300773912684051, 115.73068890720606 -33.300693488425395, 115.73075897991657 -33.300620349923705, 115.73090314865112 -33.300458380149948, 115.73098830878735 -33.300549172932143, 115.73107212781906 -33.300502655654306, 115.7312498241663 -33.300401774725557, 115.7313048094511 -33.300370949974052, 115.73123574256897 -33.300279036104911, 115.73131486773491 -33.300241590983333, 115.7314932346344 -33.300142951559046, 115.73150765150785 -33.300135105236414, 115.73169104754925 -33.300062246492558, 115.73187276721 -33.300001717643696, 115.73205515742302 -33.299950155998573, 115.73225364089012 -33.299915407916181, 115.73241256177425 -33.29989512651894, 115.73245614767075 -33.299888856448725, 115.73262512683868 -33.299876421391929, 115.73282763361931 -33.299877542298532, 115.73285529389977 -33.2998774021852, 115.73287758976221 -33.299880624791605, 115.73308445513248 -33.299896037255365, 115.73308244347572 -33.299818274342272, 115.73341436684132 -33.299814351166447, 115.73459655046463 -33.299840132032955, 115.73445171117783 -33.299667512172732, 115.7340681552887 -33.298945643601414, 115.73393538594246 -33.29858806984506, 115.73385894298553 -33.298241703899784, 115.73386967182159 -33.298010792505529, 115.73386967182159 -33.297806782901063, 115.73405474424362 -33.297490679164945, 115.73425054550171 -33.297329264049395, 115.73457174003124 -33.297105075893391, 115.73499754071236 -33.297117406256945, 115.7351179048419 -33.297124412144548, 115.73522888123989 -33.2971314180316, 115.73541194200516 -33.297143187920561, 115.73543205857277 -33.29613489500678, 115.73509007692337 -33.295903417556836, 115.73473628458848 -33.295665728421589, 115.73405206203461 -33.296110304059873, 115.73367387056351 -33.296360276667372, 115.73330439627171 -33.296598478597694, 115.73310658335686 -33.296725986422544, 115.73291212320328 -33.296855175479195, 115.73276242241263 -33.296951576733044, 115.73261942714453 -33.297047417408876, 115.73230661451817 -33.297245824087391, 115.7320786267519 -33.297398832319416, 115.7318526506424 -33.297546235600471, 115.73153547942638 -33.29777042262269, 115.73136297985911 -33.297896974190863, 115.73125887662172 -33.297988776725539, 115.73100842535496 -33.298207130281817, 115.73085855692625 -33.298355372891642, 115.73071673512459 -33.298509219870624, 115.73055412620306 -33.298682682714549, 115.73039688169956 -33.298872398547928, 115.73026210069656 -33.2990601523638, 115.73012933135033 -33.299241740744556, 115.73005959391594 -33.299349908952195, 115.72977662086487 -33.299869906122034, 115.72961434721947 -33.300230276878906, 115.72948962450027 -33.300514425088394, 115.72975784540176 -33.300581678967, 115.7299630343914 -33.300702735817794, 115.73010988533497 -33.300769324019726, 115.73020443320274 -33.300810131598624, 115.73048070073128 -33.300927475174035)))\n17235866\tAcacia Avenue - stages 4to6\tCheck with carrier\tPOLYGON ((152.954452096 -26.9617699715, 152.95227696 -26.966133992, 152.95231008 -26.966247027, 152.95235616 -26.9663930105, 152.952406912 -26.966568964, 152.952458048 -26.9667770335, 152.95252608 -26.967236037, 152.952559936 -26.9674170225, 152.954345152 -26.966229026500002, 152.956028896 -26.964902965, 152.957079008 -26.964071001500002, 152.956566016 -26.963714969, 152.956793152 -26.9634410025, 152.956446112 -26.963215025, 152.956699936 -26.962869963, 152.954452096 -26.9617699715))\n17367991\tKilgariff Residential Subdivision\tCheck with carrier\tPOLYGON ((133.875308 -23.7729379955, 133.875374016 -23.7732950085, 133.875762016 -23.7732329965, 133.876342016 -23.7763310065, 133.876884 -23.776244001000002, 133.877053984 -23.7771519995, 133.879559008 -23.776754009, 133.878868 -23.773069993, 133.877804 -23.773239009, 133.877761984 -23.7730159915, 133.877851008 -23.7729019945, 133.878228 -23.772841999, 133.878160992 -23.7724860035, 133.875308 -23.7729379955))\nAYCA-J9CE8\tAE2 Ermington\tReady for service\tPOLYGON ((151.055244815032 -33.8208669951457, 151.05403716915 -33.8208195809866, 151.052863999995 -33.8208470000185, 151.052153082368 -33.8207595345472, 151.052101199995 -33.8209854300181, 151.052558718854 -33.8210772285421, 151.052234067143 -33.8228628846005, 151.052159904533 -33.8232748186268, 151.053275978979 -33.8233752639358, 151.055117714468 -33.823346300013, 151.055925551811 -33.8232964450618, 151.055926462077 -33.8233176124406, 151.056276535003 -33.8233141773977, 151.056274087824 -33.8232650355276, 151.056671999995 -33.8232340000185, 151.057503239665 -33.8231244363218, 151.057159132081 -33.8210531081992, 151.057172434982 -33.8207051234432, 151.057204829761 -33.8205175594944, 151.05715792077 -33.820419652573, 151.055244815032 -33.8208669951457))\n17341714\tSilverdown Heights\tCheck with carrier\tPOLYGON ((149.060066048 -33.263683028, 149.05982304 -33.263647027000005, 149.059857952 -33.263470981000005, 149.059932128 -33.26310198, 149.058142912 -33.2628550235, 149.057301952 -33.262415001, 149.057052128 -33.262380998, 149.055390016 -33.262148971, 149.054866912 -33.2646990295, 149.05483488 -33.2648569825, 149.059670048 -33.265593005, 149.060066048 -33.263683028))\nAYCA-14QOEO\tHarrington Grove\tUnder construction\tPOLYGON ((150.734399607064 -34.0145969382659, 150.734412114382 -34.0146558481711, 150.735175016924 -34.0152214200882, 150.735476027782 -34.0150284891953, 150.735634388417 -34.0149934434841, 150.735655427065 -34.0150001752495, 150.735675226285 -34.0150315021449, 150.735693002046 -34.0150504511101, 150.735733677799 -34.0150749206595, 150.735780119611 -34.0150948902452, 150.735803157659 -34.0151138212667, 150.735981684008 -34.0153016564474, 150.736048801361 -34.0153657297685, 150.736122141793 -34.0154248844879, 150.736480716779 -34.0157100838341, 150.736570359767 -34.0158402342039, 150.736715079292 -34.0159939266364, 150.736865655888 -34.0160743995915, 150.737000622854 -34.0161090826067, 150.737129441852 -34.0161204202361, 150.73723075732 -34.0161123911761, 150.737377731202 -34.016074318158, 150.737674041061 -34.0159623178744, 150.737728632708 -34.0159671442391, 150.737754742028 -34.0159950561677, 150.737821734458 -34.0160567707066, 150.738007591748 -34.0161151484525, 150.738255317438 -34.0160600526914, 150.738437935739 -34.0159698093943, 150.738550008995 -34.0158714588717, 150.738640227923 -34.0157341748406, 150.738697317934 -34.0155850809185, 150.738705546706 -34.0155027838842, 150.738696171703 -34.0153844114646, 150.738685639475 -34.0153236474883, 150.738715517958 -34.0152859601197, 150.738794765663 -34.0152589497039, 150.738919565285 -34.0152276759711, 150.739062066393 -34.0152168831049, 150.73920006409 -34.0152304226459, 150.739647830431 -34.0153137019088, 150.73976839662 -34.0153310927629, 150.739890413577 -34.015338734674, 150.740625923087 -34.0153496938111, 150.74076085487 -34.0153364901267, 150.740893298386 -34.0153106957449, 150.740990616568 -34.0152834969009, 150.741474126894 -34.0151232159043, 150.741526667647 -34.0150985221263, 150.741564062228 -34.015068682162, 150.741590147152 -34.0150339179342, 150.741611539491 -34.0149848989571, 150.741614403187 -34.0149356095655, 150.741397795593 -34.013707774868, 150.741390423578 -34.0135784700048, 150.741696605559 -34.0134358059132, 150.741404199964 -34.0130312619753, 150.740963778209 -34.0132211889874, 150.740779319907 -34.013277875255, 150.740651999989 -34.0133230000154, 150.739980999989 -34.0133100000153, 150.738819999989 -34.0133300000152, 150.738342999989 -34.0133610000153, 150.737998999989 -34.0134570000153, 150.737591999989 -34.0135910000152, 150.736458999989 -34.0140470000152, 150.735847999989 -34.0142730000152, 150.735284999989 -34.0144330000152, 150.734399607064 -34.0145969382659))\n10703\tWannanup-Port Bouvard East\tReady for service\tPOLYGON ((115.64411759376526 -32.606240847447289, 115.64523339271545 -32.606421605344558, 115.64615607261658 -32.606620438610236, 115.64857006072998 -32.607994183658612, 115.64977169036865 -32.606566211399731, 115.64604073762894 -32.603399264179991, 115.64500272274017 -32.604274163828194, 115.64444482326508 -32.604793853210033, 115.64411759376526 -32.606240847447289))\nAYCA-NS3TL\tEttamogah Rise\tReady for service\tPOLYGON ((146.976677442572 -36.0218474363591, 146.975791292516 -36.0217479072452, 146.975759581465 -36.0219373943899, 146.975021553878 -36.0218558842049, 146.974276932725 -36.0218817268695, 146.974249679674 -36.0215316940708, 146.974007842462 -36.021556210621, 146.973990485646 -36.021459684357, 146.973044604877 -36.0214705469207, 146.973027544946 -36.0224201771799, 146.973282504393 -36.0224241584153, 146.973019971018 -36.0231290078055, 146.972061113505 -36.0243273630808, 146.971809550904 -36.0247653964478, 146.976084156868 -36.0253249556807, 146.976677442572 -36.0218474363591))\nAYCA-KDKUW\tVasse Newtown\tReady for service\tPOLYGON ((115.244804440601 -33.6737884319301, 115.244776096828 -33.6711478186396, 115.244230390703 -33.6711178025796, 115.243784145506 -33.6711114606481, 115.241877905518 -33.6712124024697, 115.241873981334 -33.6716646868133, 115.241787711395 -33.6716648854908, 115.241789205148 -33.6730622630841, 115.241875476697 -33.6730622356399, 115.241875749569 -33.6732966631077, 115.241835826756 -33.6732966758274, 115.241832975004 -33.67347700564, 115.241975677857 -33.6734769601278, 115.241975006082 -33.6737775842487, 115.240918173282 -33.6737759291558, 115.240917504575 -33.6740734708143, 115.240793680501 -33.6740727078844, 115.240783685259 -33.6743445387451, 115.240826276004 -33.6743439895366, 115.240858268877 -33.6743706300919, 115.240858129116 -33.6746179781537, 115.240940803114 -33.6746631803219, 115.241602259358 -33.6746697209312, 115.24160189913 -33.675316828471, 115.241609150292 -33.6754757629027, 115.241668162131 -33.6754795783257, 115.241818421316 -33.6755148246633, 115.241885540939 -33.6755584960448, 115.241927827627 -33.675625027891, 115.242139841826 -33.6756246289724, 115.2421838073 -33.6755656092004, 115.242269517456 -33.6755036959144, 115.242360843537 -33.675479662111, 115.242886713822 -33.6754739767169, 115.243012168414 -33.6754343036568, 115.243066232022 -33.6753360005171, 115.243068308661 -33.6744015170849, 115.24313324584 -33.6743474253216, 115.245969981005 -33.6743517980655, 115.246056241644 -33.6744240616863, 115.246056238576 -33.6744422657802, 115.246271921108 -33.6744425954419, 115.246278938058 -33.6744263210637, 115.246398613565 -33.6743536831842, 115.246374664513 -33.6737699112935, 115.244804440601 -33.6737884319301), (115.2442093289 -33.6738023670993, 115.244452043334 -33.6738042814168, 115.244450933079 -33.6740754374945, 115.244202305309 -33.6740719045471, 115.2442093289 -33.6738023670993), (115.242531910076 -33.6734820829466, 115.242579930219 -33.6734819702769, 115.242590623651 -33.6736663459393, 115.24288390256 -33.6736705171205, 115.24284814546 -33.6737997261351, 115.242846034841 -33.6739034707132, 115.24252313076 -33.6738988780326, 115.242531910076 -33.6734820829466), (115.242896164382 -33.6750847083728, 115.242472878119 -33.6750728908716, 115.242481465448 -33.6746508975994, 115.242894834783 -33.674656694611, 115.242896164382 -33.6750847083728))\nAYCA-F8YLR\tFreeway Business Park\tReady for service\tPOLYGON ((151.631399631104 -32.8006781615145, 151.630774115726 -32.8036791998558, 151.630836701516 -32.8039916007222, 151.630973164553 -32.8041637985766, 151.631521518512 -32.8052819331645, 151.633135098673 -32.8044402700107, 151.63314123062 -32.8036366394416, 151.63334009432 -32.8025648909741, 151.632952433572 -32.8025205702119, 151.632553104233 -32.8024638649744, 151.632495719999 -32.8018894200183, 151.632687240167 -32.8008073490653, 151.633521028154 -32.8009131545993, 151.633588184251 -32.8002665624079, 151.633735604575 -32.7991100709852, 151.633106722553 -32.7991727796729, 151.633053962385 -32.7991788743847, 151.63225699639 -32.7992709349181, 151.632190161892 -32.7992786549816, 151.632106612554 -32.799285221482, 151.631264886278 -32.7993513863228, 151.63022464156 -32.7992172402273, 151.630107078779 -32.7998446458517, 151.629887279129 -32.7998051795964, 151.629686304116 -32.7997282019181, 151.629411688795 -32.7995203483519, 151.629210654874 -32.7996491661035, 151.629380388312 -32.7998027674335, 151.629676428919 -32.7999642635072, 151.629991857421 -32.8000448771151, 151.631243340499 -32.8002061517077, 151.631163024529 -32.8006360538081, 151.631399631104 -32.8006781615145))\nAYAA-GR9JV\tIronbark Ridge\tReady for service\tPOLYGON ((150.899503128249 -32.2977687119396, 150.899680749884 -32.2982479508773, 150.900338495144 -32.2981155904504, 150.90177322057 -32.2992362814975, 150.902627626501 -32.2984629797066, 150.902926058222 -32.297870750374, 150.904991499325 -32.2962784755962, 150.904558503081 -32.2959367824749, 150.904971771402 -32.2949182093956, 150.904227796014 -32.2946939814621, 150.903858750092 -32.2949069165593, 150.90363328607 -32.294814808031, 150.903446874985 -32.2948264472791, 150.90298585958 -32.2946652827431, 150.902216278851 -32.2954752520887, 150.900699323449 -32.2962383475425, 150.900277389169 -32.297344315472, 150.899503128249 -32.2977687119396))\nAYCA-PO3A4\tBerrimah Business Park\tReady for service\tPOLYGON ((130.914388151337 -12.4270496727612, 130.913420283369 -12.4276452995985, 130.913087109309 -12.4284873285129, 130.912704600219 -12.4286062459154, 130.912567223695 -12.4288561331118, 130.91365625061 -12.4293186355552, 130.916020124054 -12.4301812012474, 130.91892520147 -12.4312773313399, 130.919555160269 -12.431480759843, 130.91964419105 -12.4284369713539, 130.914388151337 -12.4270496727612), (130.914428882447 -12.4295033454032, 130.914495312471 -12.4293018492141, 130.914756820151 -12.4293707674682, 130.914687411333 -12.4295937306272, 130.914428882447 -12.4295033454032), (130.918489214823 -12.4303507496766, 130.918654942278 -12.429912851228, 130.918717103127 -12.4299284966932, 130.918829662129 -12.4299364789043, 130.918875994538 -12.4299559088229, 130.918910530517 -12.4299881776292, 130.918929509926 -12.4300363396375, 130.918930879086 -12.4302229372965, 130.918915920416 -12.430418430619, 130.918893414214 -12.4304990861925, 130.918489214823 -12.4303507496766), (130.916001999989 -12.4294469998872, 130.916166999989 -12.4290109998872, 130.916579999989 -12.4291619998872, 130.916414999989 -12.4295979998871, 130.916001999989 -12.4294469998872), (130.91832658 -12.4283432597776, 130.91867014 -12.4284360897776, 130.918772537423 -12.4284890702625, 130.91885289 -12.4285876697776, 130.9188797 -12.4287050697775, 130.91888079 -12.4289498197776, 130.91819166 -12.4286927897775, 130.91832658 -12.4283432597776), (130.916834936701 -12.4297530475971, 130.917240613405 -12.4298997648607, 130.917024248513 -12.4304780562355, 130.916618537142 -12.430331429099, 130.916834936701 -12.4297530475971), (130.917405604857 -12.4294634318333, 130.918230934765 -12.4297641488017, 130.91806666112 -12.4302007430528, 130.917240613687 -12.4298997648172, 130.917405604857 -12.4294634318333), (130.916585634165 -12.4291643907053, 130.916999389848 -12.4293135011398, 130.916618526945 -12.4303314531788, 130.9162050453 -12.4301819861124, 130.916585634165 -12.4291643907053), (130.91463579989 -12.4284423086515, 130.914587717973 -12.4285770611748, 130.914463610932 -12.4285343497643, 130.914352158794 -12.4288289720593, 130.914477679874 -12.4288739691285, 130.914412198348 -12.4290488521209, 130.914368589401 -12.4290320813578, 130.91420790331 -12.4294624740315, 130.913643999978 -12.4292559998846, 130.913512999978 -12.4291689998845, 130.913435999978 -12.4290299998845, 130.913304999973 -12.4285219998833, 130.913454999973 -12.4281239998834, 130.913489999978 -12.4280859998846, 130.913542999973 -12.4280629998834, 130.913593999973 -12.4280609998834, 130.91463579989 -12.4284423086515), (130.91433759827 -12.4272906594548, 130.914409466361 -12.4272583474127, 130.914506443581 -12.4272495100969, 130.914576745095 -12.4272562692872, 130.915803816047 -12.4275916597146, 130.91584459452 -12.427643273839, 130.915867527646 -12.4276869119759, 130.9158683122 -12.4277360102273, 130.915645869399 -12.4283242703626, 130.915557205756 -12.4284574579262, 130.915434526485 -12.4285126927529, 130.915272892386 -12.428493001732, 130.914554368391 -12.4282327083809, 130.914543071736 -12.4282626165724, 130.913751958758 -12.4279669741364, 130.913745847267 -12.4279594214332, 130.913728847553 -12.4279536439546, 130.913695711981 -12.4279335606673, 130.913625533085 -12.4278754200142, 130.913629248499 -12.427779456963, 130.913690324089 -12.4276938030618, 130.91433759827 -12.4272906594548))\nAYAA-F7FJT\tKingsley Drive, Beaudesert\tReady for service\tPOLYGON ((153.011802811568 -27.9947144922874, 153.011870614587 -27.9950031087973, 153.011818278318 -27.9951018209668, 153.011610807366 -27.9951882529777, 153.011405768823 -27.9948004761973, 153.010956112068 -27.9948033754098, 153.010614798034 -27.9945724636891, 153.010551089883 -27.9945294171233, 153.010205069294 -27.994978005746, 153.010583340337 -27.9952322097846, 153.01075499215 -27.9953498618829, 153.010933193635 -27.9955338198486, 153.011017811759 -27.9956685787117, 153.011140478864 -27.9958973251162, 153.011278483023 -27.9961866544465, 153.01092256235 -27.9963364018617, 153.010999615098 -27.9965115071163, 153.01136065591 -27.9963655084108, 153.011826465284 -27.9971885599296, 153.011986926771 -27.997384225006, 153.012092788383 -27.9975118093773, 153.012220433632 -27.9976216079433, 153.012339193876 -27.9976940052306, 153.013025800032 -27.997972705585, 153.014685541113 -27.9978515124223, 153.015073027365 -27.9979126976576, 153.015310419241 -27.997590305594, 153.01574157899 -27.9976637625854, 153.016017500518 -27.9963253226502, 153.016041086521 -27.9960895477552, 153.016015362016 -27.9958531067415, 153.015941382176 -27.9956256950972, 153.015855765514 -27.995431791771, 153.014083520123 -27.9953544931662, 153.011802811568 -27.9947144922874))\n260\tGlenside\tReady for service\tPOLYGON ((138.62478255578358 -34.940416129598376, 138.62525462457074 -34.94615023181472, 138.62716435739037 -34.94607987716239, 138.62714289971944 -34.945393916136005, 138.62671374627411 -34.945024550129361, 138.62656354256868 -34.943441534110967, 138.6263275081796 -34.943124927240085, 138.62675666161596 -34.941629822722781, 138.62934231110992 -34.941515490078622, 138.62939595528272 -34.941427541782289, 138.62936376877187 -34.940732746927054, 138.62729310341587 -34.940811901068408, 138.62719654389224 -34.940143485917545, 138.62495421715093 -34.940319385170078, 138.62478255578358 -34.940416129598376))\n10357\tMillbridge\tReady for service\tPOLYGON ((115.7363560795784 -33.307243356502212, 115.73614418506622 -33.307067388852005, 115.73598727583885 -33.30718843670045, 115.73579952120781 -33.307280343287985, 115.73561176657677 -33.307341987896081, 115.73539584875107 -33.307384578690751, 115.73519602417946 -33.307391303551171, 115.73498010635376 -33.307366873391707, 115.73476284742355 -33.30730634961234, 115.7347360253334 -33.307378081494385, 115.73439538478851 -33.307301866367744, 115.73420226573944 -33.307266000402755, 115.73389381170273 -33.307205476553371, 115.73380798101425 -33.307454296554418, 115.73378920555115 -33.307537236396989, 115.73380261659622 -33.307682941334811, 115.7336550951004 -33.307687424559809, 115.73343515396118 -33.307723290351475, 115.73312669992447 -33.307792780280842, 115.73325276374817 -33.308122296288779, 115.73351830244064 -33.308541474716989, 115.73363363742828 -33.3088665047315, 115.7339608669281 -33.3096134037029, 115.73420763015747 -33.30967168431954, 115.73435246944427 -33.309716515536607, 115.73434710502625 -33.309779279201777, 115.73440611362457 -33.310119995452915, 115.73467969894409 -33.310281386896648, 115.73475480079651 -33.310335183978168, 115.73467433452606 -33.310474159618479, 115.73448657989502 -33.310855220721614, 115.73425054550171 -33.310994195533006, 115.73423445224762 -33.311088339634217, 115.73473870754242 -33.311388703468076, 115.73493719100952 -33.311366288292312, 115.73510348796844 -33.311155585358556, 115.73533952236176 -33.311227314074031, 115.7352751493454 -33.3114290507699, 115.73529124259949 -33.311532160456423, 115.73551654815674 -33.311594922814592, 115.73575794696808 -33.31166395435168, 115.73591619729996 -33.310825625502574, 115.73594301939011 -33.310695616563372, 115.7359778881073 -33.310700099633465, 115.73603421449661 -33.310372834910659, 115.73626488447189 -33.310390767256052, 115.73640167713165 -33.310395250341827, 115.73659747838974 -33.31038852571308, 115.73678523302078 -33.310377317997364, 115.73697298765182 -33.310354902561585, 115.73695689439774 -33.310285414674091, 115.73725998401642 -33.310215926731196, 115.7374182343483 -33.310177820416421, 115.73739141225815 -33.310124023237812, 115.73773741722107 -33.310000737911615, 115.73762744665146 -33.309814688816594, 115.73753625154495 -33.309682436808863, 115.73762208223343 -33.3096308808871, 115.73741555213928 -33.309364134544118, 115.73750138282776 -33.309310336863469, 115.73728412389755 -33.309061522158629, 115.73742628097534 -33.308972314348729, 115.73731631040573 -33.308857538402513, 115.73705345392227 -33.308637863054564, 115.737184882164 -33.308519058809253, 115.73727607727051 -33.308395771213746, 115.73745310306549 -33.307882444624006, 115.73715806007385 -33.307815196375273, 115.73690861463547 -33.307676216496887, 115.736643075943 -33.307463263027685, 115.7363560795784 -33.307243356502212))\nPRJ0001049-3A6E2E02\tO\u0027Connell Street\tContracted\tPOLYGON ((150.73397789150476 -33.76839194885882, 150.73434267193079 -33.766197899085469, 150.739964582026 -33.767321687694455, 150.73964271694422 -33.769319497721895, 150.73397789150476 -33.76839194885882))\nAYCA-1FA2OY\tThe Grove\tUnder construction\tPOLYGON ((114.685670982283 -28.7839001827515, 114.685294813259 -28.7853028536031, 114.685305508168 -28.785631068386, 114.685334951 -28.7857002016177, 114.685329818178 -28.7872473809138, 114.689456056556 -28.7872579209508, 114.68946499999 -28.7847149999865, 114.689465560329 -28.7846895919465, 114.685670982283 -28.7839001827515))\nAYCA-10LG0G\tSpringlake Subdivision, Mt Barker\tContracted\tPOLYGON ((138.856486999992 -35.0928450000204, 138.856388999992 -35.0938210000204, 138.856715999992 -35.0938430000204, 138.856712999992 -35.0938730000205, 138.857193999992 -35.0939060000204, 138.857357999992 -35.0922870000204, 138.857612999992 -35.0920880000204, 138.857627999992 -35.0921010000204, 138.857738999992 -35.0920140000204, 138.857977999992 -35.0918270000204, 138.858108999992 -35.0919410000204, 138.858094999992 -35.0920790000205, 138.858209999992 -35.0920870000204, 138.858586999992 -35.0919960000205, 138.858803999992 -35.0898580000204, 138.855618999992 -35.0896040000203, 138.855560999992 -35.0898010000204, 138.855553999992 -35.0898580000204, 138.854232999992 -35.0897540000204, 138.854262999992 -35.0894960000204, 138.853782999992 -35.0894590000204, 138.853640999992 -35.0906660000204, 138.853624999992 -35.0908200000204, 138.855117999992 -35.0909380000203, 138.855157999992 -35.0915560000204, 138.854866999992 -35.0915420000203, 138.854819999992 -35.0917340000204, 138.854836999992 -35.0917390000203, 138.854816999992 -35.0920090000204, 138.855320999992 -35.0920340000203, 138.855484999992 -35.0920420000204, 138.855703999992 -35.0920520000204, 138.855851999992 -35.0920490000203, 138.855837999992 -35.0924530000204, 138.855855999992 -35.0924530000204, 138.855828999992 -35.0927220000204, 138.855673999992 -35.0927190000204, 138.855658999992 -35.0928240000204, 138.856002999992 -35.0928480000204, 138.856155999992 -35.0928610000204, 138.856159999992 -35.0928220000204, 138.856486999992 -35.0928450000204))\n10348\tEaton-Millbridge\tReady for service\tPOLYGON ((115.7294225692749 -33.312235992885491, 115.72925627231598 -33.312496005976172, 115.72963714599609 -33.312647971780969, 115.72961837053299 -33.312679352564082, 115.73013603687286 -33.3128878103366, 115.73027819395065 -33.312661420689409, 115.7304659485817 -33.312760045954505, 115.73073953390121 -33.312914708077386, 115.73097825050354 -33.313049196656877, 115.73046326637268 -33.313883021219013, 115.72963312268257 -33.313527522521127, 115.72946280241013 -33.313818912132859, 115.72939306497574 -33.313956989141829, 115.72913825511932 -33.314351483670258, 115.72946012020111 -33.314604766148058, 115.72963714599609 -33.314678733458493, 115.72966665029526 -33.314752700706165, 115.72953790426254 -33.31485356503368, 115.72976857423782 -33.314961153521054, 115.72928041219711 -33.315485645495521, 115.7294574379921 -33.316077148600492, 115.72981417179108 -33.315958582134364, 115.72997510433197 -33.315898064318993, 115.72994291782379 -33.315848753475414, 115.7299268245697 -33.31576358013443, 115.73026746511459 -33.31563133715062, 115.73077440261841 -33.315418403111046, 115.73102116584778 -33.315257021176677, 115.73106676340103 -33.315230124158568, 115.73136985301971 -33.315409437455862, 115.73128938674927 -33.31549685255456, 115.73122501373291 -33.315539439365764, 115.73133230209351 -33.315653751229789, 115.731600522995 -33.315918236928788, 115.73173731565475 -33.315855477682994, 115.73192238807678 -33.316135652538016, 115.73208600282669 -33.316050479477362, 115.73223084211349 -33.31586220189007, 115.73239177465439 -33.315644785598813, 115.73257952928543 -33.31539823038559, 115.73262244462967 -33.315160640156712, 115.73265194892883 -33.315010464866731, 115.73290407657623 -33.314938739263795, 115.73330640792847 -33.314591317539417, 115.73322862386703 -33.314501660095466, 115.73310524225235 -33.314342517905352, 115.73293894529343 -33.314376139519013, 115.73289602994919 -33.314252860205514, 115.73281556367874 -33.314214755655151, 115.73274046182632 -33.31403319845122, 115.73325276374817 -33.313573700134512, 115.73434174060822 -33.312607625043221, 115.73419690132141 -33.312513482582546, 115.73449730873108 -33.312136911723265, 115.73432832956314 -33.312076391254877, 115.73404401540756 -33.311939659671644, 115.73384553194046 -33.311807410887127, 115.73348879814148 -33.311758097729694, 115.73340564966202 -33.311771546775404, 115.73306769132614 -33.312161568198334, 115.73304891586304 -33.312213122623682, 115.73268681764603 -33.312143636217151, 115.73251515626907 -33.312011387742047, 115.73236495256424 -33.3120136292433, 115.73235154151917 -33.311825342937475, 115.73197066783905 -33.311825342937475, 115.73197335004807 -33.312101047747056, 115.73190629482269 -33.312370027208893, 115.73187410831451 -33.31242382300168, 115.73176145553589 -33.312634522870468, 115.73158979415894 -33.31293039842236, 115.73156833648682 -33.313024540432828, 115.73139399290085 -33.312934881377537, 115.7312947511673 -33.31295281319597, 115.72955131530762 -33.311984489722562, 115.7294225692749 -33.312235992885491))\n17337529\t276 Old North\tCheck with carrier\tPOLYGON ((152.866091168 -27.061864018, 152.86669488 -27.061986969, 152.867071072 -27.062766004, 152.868651136 -27.062589958, 152.869030912 -27.062161017, 152.870054048 -27.0617519635, 152.870906176 -27.0607500035, 152.870778016 -27.0606009675, 152.870673952 -27.060352013, 152.870610976 -27.060137006, 152.87058 -27.0600519615, 152.870515936 -27.05993802, 152.870420896 -27.0598850175, 152.870259968 -27.0598619665, 152.870148 -27.059814995, 152.87006304 -27.059765045000002, 152.86997808 -27.059588999000002, 152.869749856 -27.059288041000002, 152.869637152 -27.0592119875, 152.86915296 -27.0590120025, 152.86895712 -27.058760994500002, 152.868930112 -27.058581008, 152.86736304 -27.058404962, 152.86731984 -27.059058992500002, 152.867702176 -27.059096973000003, 152.867405152 -27.0598889765, 152.86713696 -27.059738035000002, 152.86691088 -27.0601160455, 152.86691088 -27.060531037500002, 152.867220832 -27.0606570225, 152.866854016 -27.061160037500002, 152.866685152 -27.06126003, 152.866091168 -27.061864018))\n10565\tSecret Harbour\tReady for service\tPOLYGON ((115.74663698673248 -32.396324465154152, 115.74640095233917 -32.396097989253605, 115.74716806411743 -32.395608799369889, 115.7471090555191 -32.395386851233852, 115.74365973472595 -32.395537246634341, 115.74568748474121 -32.397883523993336, 115.7470178604126 -32.399858335673812, 115.74900269508362 -32.402267909766742, 115.74982881546021 -32.402041448774334, 115.74967861175537 -32.401633817556458, 115.7499897480011 -32.40143453051337, 115.74818730354309 -32.39805564232595, 115.74684619903564 -32.398599171748515, 115.7463526725769 -32.397837309598991, 115.74621319770813 -32.397302834517106, 115.74641168117523 -32.396691354907553, 115.74663698673248 -32.396324465154152))\nAYCA-1MI4GK\tMoncrieff Residential Estate\tContracted\tPOLYGON ((149.119975532677 -35.1609006970852, 149.120341885097 -35.1607838737635, 149.120368285657 -35.1607892647282, 149.120395050887 -35.1607923751234, 149.120421984154 -35.1607931820985, 149.120448887592 -35.1607916797249, 149.120475157005 -35.1607879545889, 149.120501018746 -35.160782027612, 149.120526288602 -35.1607739410122, 149.120550786575 -35.1607637523901, 149.120702614305 -35.16069112147, 149.120760070515 -35.1607035690423, 149.120954784351 -35.1609780706941, 149.121014572353 -35.1610500795422, 149.12108071996 -35.1611162941433, 149.121152668248 -35.1611761550075, 149.121229809281 -35.1612291563314, 149.12129972786 -35.1612688668065, 149.121372561977 -35.1613029361606, 149.121447857399 -35.1613311519186, 149.121525144541 -35.1613533381114, 149.121603941398 -35.1613693563736, 149.121950099084 -35.1614338247594, 149.121981623606 -35.1614393353041, 149.122013259839 -35.1614441633844, 149.12204499301 -35.161448306746, 149.122076925334 -35.1614517748867, 149.122108925362 -35.1614545496875, 149.122140978042 -35.1614566298431, 149.122242056723 -35.1614621104267, 149.122250813225 -35.1614624785352, 149.122259576086 -35.1614626336816, 149.12226834013 -35.1614625757743, 149.122277094408 -35.1614623050961, 149.122285839527 -35.1614618218387, 149.122294570326 -35.1614611262874, 149.123126319262 -35.1615665886602, 149.123349963834 -35.1610263749436, 149.123379606885 -35.1608687039272, 149.123408185631 -35.1608627881616, 149.123436118965 -35.1608543341769, 149.123463181939 -35.1608434100535, 149.12348806958 -35.1608307209505, 149.123511776431 -35.1608159428148, 149.123534127566 -35.1607991846883, 149.123545653875 -35.1607888878396, 149.12355633889 -35.1607777204147, 149.123566117049 -35.1607657509327, 149.123574594929 -35.1607535741562, 149.12358213384 -35.1607407947526, 149.123588691154 -35.1607274849827, 149.123766684597 -35.1603190909408, 149.123772481157 -35.1603054917966, 149.12377804908 -35.1602917974522, 149.123783386803 -35.1602780117513, 149.12378846485 -35.1602642165742, 149.123793312381 -35.1602503387168, 149.123797928049 -35.1602363820307, 149.124064259007 -35.1594071874399, 149.124081766568 -35.1593491026701, 149.124097060974 -35.1592903963133, 149.124110120264 -35.1592311526629, 149.124120856134 -35.1591718870707, 149.124129355208 -35.1591122596016, 149.124135605458 -35.1590523546459, 149.124182998371 -35.158492448335, 149.124183978252 -35.1584818965163, 149.124185128165 -35.1584713618713, 149.124186447812 -35.15846084714, 149.124187940132 -35.1584503331999, 149.124189602161 -35.1584398447482, 149.124191433463 -35.1584293845242, 149.124238698294 -35.1583966454019, 149.124285511541 -35.158397799126, 149.124332337386 -35.1583981883079, 149.124379163343 -35.1583978128441, 149.124425959041 -35.1583966734161, 149.124472729907 -35.1583947703301, 149.124519463481 -35.1583921040933, 149.124720687352 -35.15838055959, 149.124895806061 -35.1579830339057, 149.124619225826 -35.1580181176888, 149.124621351762 -35.1580998452539, 149.124470653909 -35.1581137955094, 149.124382613014 -35.1581180516929, 149.124250817206 -35.1581180869802, 149.124097472391 -35.1581091862605, 149.12395339293 -35.1580919228401, 149.123867277617 -35.1580773768342, 149.123739917403 -35.1580498469112, 149.123233297349 -35.1579096338418, 149.122930336312 -35.1578291645954, 149.122884778494 -35.1577661101813, 149.122681381385 -35.1577308076855, 149.122609512908 -35.1577687352335, 149.122557318102 -35.1577614452722, 149.122505032917 -35.1577548346239, 149.122452666192 -35.1577489044063, 149.122400122998 -35.1577436459165, 149.122347515751 -35.1577390724511, 149.122294853383 -35.1577351847866, 149.122036451476 -35.1577163906094, 149.12201447919 -35.157714139999, 149.121992813774 -35.1577098439187, 149.121971645219 -35.1577035400426, 149.12195115916 -35.1576952836518, 149.121932646801 -35.157685784931, 149.121915043611 -35.1576746916515, 149.121898486583 -35.1576620901442, 149.121883104569 -35.1576480784776, 149.121842621028 -35.1576109984857, 149.121799118144 -35.1575775120412, 149.121752913906 -35.1575478639172, 149.121704346049 -35.1575222708297, 149.121650640353 -35.1574997630439, 149.121595116436 -35.1574822132039, 149.121538230933 -35.1574697656413, 149.121480451677 -35.1574625227264, 149.121459604833 -35.1574596080179, 149.121439106867 -35.157454820551, 149.121419125661 -35.1574481995356, 149.121399824864 -35.1574397991989, 149.121381362551 -35.1574296883407, 149.121363889932 -35.1574179497705, 149.121347550111 -35.1574046796287, 149.121331903366 -35.1573893722949, 149.121317764869 -35.1573726618796, 149.121305259837 -35.1573546963782, 149.12129449902 -35.1573356349017, 149.12128557772 -35.1573156462676, 149.12127857495 -35.1572949075048, 149.120988428544 -35.1573723035123, 149.120999792038 -35.1573967387004, 149.121009406722 -35.1574219133955, 149.121017224864 -35.1574477026195, 149.121023120591 -35.1574735238, 149.121027215151 -35.1574996910989, 149.12102948891 -35.1575260790313, 149.121026776269 -35.1575383296262, 149.121023061148 -35.1575503143404, 149.12101836893 -35.1575619512899, 149.121012731675 -35.1575731609667, 149.121006187899 -35.1575838667822, 149.12099878231 -35.1575939955902, 149.120990565506 -35.1576034781869, 149.120981593629 -35.1576122497838, 149.120971760947 -35.1576203772674, 149.120961280568 -35.1576276504568, 149.12095022651 -35.1576340179853, 149.120938676842 -35.1576394348822, 149.120926713132 -35.157643862891, 149.120914419874 -35.157647270739, 149.120901883889 -35.1576496343583, 149.120889193712 -35.1576509370559, 149.120876438966 -35.1576511696316, 149.12073707456 -35.1576402615722, 149.120695374958 -35.1578986357208, 149.120779134036 -35.1579078421851, 149.120795525613 -35.1579121563826, 149.120811709124 -35.157917195243, 149.120827652547 -35.1579229487968, 149.120843015502 -35.1579292704701, 149.120858088321 -35.1579362557454, 149.120872842356 -35.1579438913461, 149.120884104584 -35.157952277719, 149.120895079406 -35.157961036846, 149.12090575449 -35.1579701588851, 149.120915919033 -35.1579794457347, 149.120925772887 -35.1579890616104, 149.120935305408 -35.1579989961241, 149.120950563479 -35.1580179413246, 149.120966966928 -35.1580359039598, 149.120984452622 -35.1580528148988, 149.121003675612 -35.1580691865781, 149.121023912445 -35.1580842871028, 149.121045079204 -35.1580980538566, 149.12106126297 -35.1581093650788, 149.121077923041 -35.1581199622517, 149.121095027933 -35.1581298253492, 149.121112977303 -35.1581391483128, 149.121131323934 -35.1581476629283, 149.121150031445 -35.1581553523112, 149.121158398804 -35.1581595639693, 149.121166347005 -35.1581645214762, 149.121173809746 -35.158170183478, 149.121180724776 -35.1581765027447, 149.121187034412 -35.158183426563, 149.121192686022 -35.1581908971772, 149.121197632461 -35.1581988522701, 149.12120149136 -35.1582064683515, 149.121204703448 -35.1582143789956, 149.121207246466 -35.1582225293855, 149.121209102792 -35.1582308630431, 149.121210259564 -35.1582393222201, 149.121210708765 -35.1582478482986, 149.121210447283 -35.1582563821971, 149.121206926893 -35.1583239041772, 149.121195381879 -35.1584476572663, 149.121196874744 -35.1585817571294, 149.121203883242 -35.1586738212042, 149.121225249931 -35.1588081862869, 149.121244624413 -35.1588765542698, 149.121261232468 -35.1589381286706, 149.121368353332 -35.1592547706398, 149.121340678772 -35.1592939182216, 149.119594629303 -35.160091628925, 149.119392475722 -35.1601802709489, 149.119113920128 -35.1603066559139, 149.119131833048 -35.160329689889, 149.119151676378 -35.1603510833223, 149.119173300545 -35.160370674957, 149.119196542552 -35.1603883171175, 149.119221227209 -35.1604038768229, 149.119247168451 -35.1604172367891, 149.119274170741 -35.1604282963129, 149.119300668961 -35.1604366090027, 149.119327763015 -35.1604427056134, 149.119355267911 -35.1604465445184, 149.119382995847 -35.1604480995061, 149.119410757503 -35.1604473599593, 149.119438363325 -35.1604443309275, 149.119465624826 -35.1604390330926, 149.119492355867 -35.1604315026273, 149.119975532677 -35.1609006970852))\n282\tArcadia Group Hidden Valley\tReady for service\tGEOMETRYCOLLECTION (POLYGON ((144.98722587585655 -37.395428045229842, 144.98795543670374 -37.393382337909038, 144.98885665893627 -37.392904998167623, 144.99351297378624 -37.394592721484813, 144.99366317749167 -37.395547376433164, 144.99327693938815 -37.395649660170712, 144.99203239441198 -37.39556442373221, 144.99078784942679 -37.395257571751856, 144.98973642348889 -37.39512119269115, 144.98804126739643 -37.39556442373221, 144.98722587585655 -37.395428045229842)), POLYGON ((144.99366317749167 -37.395547376433164, 144.99445711136059 -37.395547376433164, 144.99402795791522 -37.393586911153506, 144.99329839705908 -37.393740340720456, 144.99366317749167 -37.395547376433164)))\n17325557\tAvenue Hill Stage 1\tCheck with carrier\tPOLYGON ((143.714459872 -37.517128029, 143.713523168 -37.522501021000004, 143.716290112 -37.522828989000004, 143.716674976 -37.5208869515, 143.716547168 -37.5206949955, 143.716626016 -37.520189002, 143.71586208 -37.519968963000004, 143.71608816 -37.519005964, 143.715356992 -37.518563962, 143.715533056 -37.5176880055, 143.715273856 -37.517649026, 143.71536816 -37.5171849905, 143.714459872 -37.517128029))\n17335954\tMalcolm Road Subdivision\tCheck with carrier\tPOLYGON ((145.562276896 -17.191856979, 145.561530976 -17.1899929745, 145.55805696 -17.1875140115, 145.557780832 -17.191574003, 145.562276896 -17.191856979))\n245\tMorphettville Redevelopment\tReady for service\tGEOMETRYCOLLECTION (POLYGON ((138.5436800574976 -34.986034111343166, 138.54297195432133 -34.985401225460805, 138.5436585998267 -34.984750754316416, 138.54664121625513 -34.984170600017165, 138.546673402766 -34.984715593567309, 138.54626570699159 -34.98483865612458, 138.5436800574976 -34.986034111343166)), POLYGON ((138.5437873458612 -34.9861747519862, 138.54420577046659 -34.986561512507848, 138.544355974172 -34.986719732194729, 138.54453836438827 -34.987229549105969, 138.54482804295915 -34.987194389420686, 138.5453108405863 -34.987062540467313, 138.545385942439 -34.987510826042417, 138.5457721805335 -34.987493246262417, 138.5457936382044 -34.988073377016747, 138.54699526784776 -34.988020638027137, 138.54774628636588 -34.9882140141565, 138.54741369245315 -34.984724383755626, 138.54702745434966 -34.984768334686031, 138.546673402766 -34.9848562364746, 138.5463944530261 -34.984917767671035, 138.54638372418611 -34.984926557838392, 138.54511772153003 -34.985515496885071, 138.5437873458612 -34.9861747519862)))\n17203252\tRedgum Rise Estate\tCheck with carrier\tPOLYGON ((146.092817888 -37.048975021000004, 146.093456896 -37.0492479885, 146.094149888 -37.049194986, 146.09444112 -37.049226029, 146.09444112 -37.049226029, 146.09482992 -37.0493489615, 146.094750016 -37.0494700255, 146.094684832 -37.049686013, 146.096244 -37.0501329545, 146.096355968 -37.050461015, 146.097559072 -37.050641001500004, 146.098140832 -37.0478899775, 146.098063072 -37.047879007, 146.098091168 -37.0477530035, 146.097692992 -37.0476970225, 146.097433088 -37.047735003, 146.097209152 -37.047826985, 146.097155872 -37.047688013, 146.096874016 -37.047751024, 146.096740096 -37.0478570475, 146.096565856 -37.0477160035, 146.096523008 -37.0476240215, 146.096523008 -37.0476240215, 146.096466112 -37.047632032, 146.096358112 -37.0476539915, 146.096287936 -37.047474005, 146.096193952 -37.047005992, 146.095382176 -37.047105004, 146.095207936 -37.046972969500004, 146.093814016 -37.0472910215, 146.093614912 -37.0482489885, 146.093587936 -37.0484129725, 146.092817888 -37.048975021000004))\n10393\tIluka\tReady for service\tPOLYGON ((115.732501745224 -31.73569532841298, 115.73292821645737 -31.735551614294661, 115.73347337543964 -31.735462078005057, 115.73416337370872 -31.735491163051293, 115.73465455323458 -31.735427004848926, 115.73518328368664 -31.735253349758263, 115.73546793311834 -31.7350796943421, 115.73550833389163 -31.734949523853629, 115.73552459478378 -31.734620888893204, 115.73636412620544 -31.734682481304272, 115.73636412620544 -31.735425008815248, 115.73638021945953 -31.73605803448212, 115.7364459335804 -31.736836479034046, 115.7365545630455 -31.737363992686053, 115.73665782809258 -31.738058024990551, 115.73651969432831 -31.738387075465702, 115.73585048317909 -31.73843954094469, 115.73450535535812 -31.7382730199741, 115.73256611824036 -31.737962788326424, 115.73271095752716 -31.737459800248629, 115.73276996612549 -31.736883812814156, 115.73267877101898 -31.736212013044341, 115.732501745224 -31.73569532841298))\nAYCA-FZTQG\tLot 502 Jane Brook Drive\tReady for service\tPOLYGON ((116.058612526473 -31.8620273343564, 116.058635992741 -31.8621854584307, 116.058632227866 -31.8625070718082, 116.057742588692 -31.8624971776635, 116.057754569496 -31.8632268909605, 116.06046984 -31.8631852800109, 116.06121367394 -31.8631955500188, 116.06116896932 -31.8620485518726, 116.062885539982 -31.8620713836498, 116.062905819395 -31.8615604685691, 116.061182646528 -31.8615137722717, 116.061184113654 -31.8613704953309, 116.061036538804 -31.8609598305967, 116.060939858883 -31.8606907920096, 116.060856762045 -31.8606212270566, 116.060831196563 -31.8603501273169, 116.060878386752 -31.8599505614195, 116.060950454646 -31.8597463208598, 116.060988080984 -31.8596160018753, 116.06100371832 -31.8594994674732, 116.061025530351 -31.8593369167361, 116.061042441135 -31.8592770046055, 116.061085739655 -31.8591570349995, 116.060985112629 -31.8591291340891, 116.059547872855 -31.8591058005127, 116.059360734452 -31.8592718241528, 116.058670242509 -31.8592595858961, 116.05866696 -31.8595400100118, 116.058612526473 -31.8620273343564))\nAYCA-1COQ8Z\tRiver Oaks Estate\tUnder construction\tPOLYGON ((153.092011 -27.7696789999834, 153.091515 -27.7698409999834, 153.091749 -27.7708729999834, 153.091621 -27.7721599999834, 153.091202 -27.7720959999834, 153.090956 -27.7733339999835, 153.092056 -27.7734989999835, 153.092182 -27.7734689999835, 153.09223 -27.7736879999835, 153.091946 -27.7749779999835, 153.092599 -27.7750769999835, 153.092203 -27.7770639999835, 153.092105 -27.7773819999835, 153.092485 -27.7774349999835, 153.092686 -27.7763489999835, 153.092703 -27.7758489999835, 153.092762 -27.7754399999835, 153.094232 -27.7754459999835, 153.094798 -27.7747809999835, 153.095099 -27.7741099999835, 153.09495 -27.7733149999835, 153.093075 -27.7731639999835, 153.092943 -27.7728069999835, 153.092883 -27.7725749999834, 153.092796 -27.7719909999835, 153.092787 -27.7715149999834, 153.092888 -27.7706259999834, 153.092475 -27.7700689999835, 153.092174 -27.7696199999834, 153.092011 -27.7696789999834))\nAYCA-19ZSPD\tVermont Riverlands\tContracted\tPOLYGON ((150.868297999992 -33.5638770000159, 150.867572999992 -33.5675750000159, 150.867502999992 -33.5675720000159, 150.867435999992 -33.5677530000159, 150.867482999992 -33.5677670000159, 150.867355999992 -33.5684550000159, 150.867318999992 -33.5684360000159, 150.867116342249 -33.5695225155869, 150.867324057364 -33.5694944192937, 150.867553868856 -33.5701883397118, 150.869125000069 -33.569844000001, 150.868921999992 -33.5691580000158, 150.869546999992 -33.5659870000159, 150.870055999992 -33.5661700000159, 150.870480999992 -33.5641750000158, 150.868297999992 -33.5638770000159))\n17356820\tAspect\tCheck with carrier\tPOLYGON ((153.138958912 -27.746267041, 153.138601088 -27.748105016, 153.138996 -27.7481889875, 153.138687136 -27.749748963000002, 153.138938048 -27.749806017, 153.13904496 -27.749810975000003, 153.141473152 -27.749727003500002, 153.142047008 -27.7468070375, 153.140996896 -27.7456280325, 153.140928832 -27.745623981, 153.138958912 -27.746267041))\nAYCA-L6RW4\tRiverside Estate\tContracted\tPOLYGON ((146.949994 -36.1360260000277, 146.949659 -36.1359710000276, 146.949417 -36.1359000000276, 146.949173 -36.1357970000276, 146.948976 -36.1356810000277, 146.948811 -36.1355500000276, 146.948677 -36.1354240000277, 146.948385 -36.1349980000276, 146.948321 -36.1346100000276, 146.947905 -36.1347950000276, 146.947797 -36.1346590000276, 146.946876 -36.1351030000276, 146.946276 -36.1353740000276, 146.946514 -36.1356910000277, 146.946599 -36.1361050000276, 146.946405 -36.1361050000276, 146.946398 -36.1385370000276, 146.946523 -36.1385370000277, 146.946524 -36.1391040000277, 146.94671 -36.1391240000276, 146.94703 -36.1391250000276, 146.947012 -36.1391530000277, 146.947035 -36.1392290000277, 146.94705 -36.1393460000277, 146.947039 -36.1394330000276, 146.947115 -36.1394300000277, 146.947415498818 -36.1394115630109, 146.94733 -36.1396140000274, 146.947588000001 -36.1396800000271, 146.947702000003 -36.1396800000267, 146.947805 -36.139669000027, 146.9479 -36.1396350000271, 146.947903 -36.1395870000262, 146.947934 -36.1393880000271, 146.947927 -36.139223000027, 146.947896414415 -36.1391011301803, 146.947947665643 -36.1388588462116, 146.948003881048 -36.1388381619407, 146.948200591175 -36.138832033298, 146.948397321613 -36.1387948413083, 146.948303069353 -36.1383806046545, 146.948553 -36.1383390000276, 146.948672579579 -36.1375430276011, 146.949038302554 -36.137539231898, 146.949039 -36.137466000027, 146.949686 -36.1371930000271, 146.949829654707 -36.1372972523496, 146.950034532874 -36.1371064498956, 146.949875 -36.1370120000276, 146.949746 -36.1369160000276, 146.949652 -36.1368280000276, 146.949586 -36.1367520000276, 146.949994 -36.1360260000277))\nAYCA-XKC83\tGreenway - 799 Richmond Rd\tUnder construction\tPOLYGON ((150.844540999992 -33.7239020000161, 150.844644075365 -33.7265980865351, 150.844726908911 -33.7268420705954, 150.846686867368 -33.7263654863023, 150.846756830365 -33.7263278483477, 150.84679413825 -33.7263036597492, 150.84688342031 -33.7262473529465, 150.846944421012 -33.7261867877418, 150.849032349801 -33.725705990203, 150.849022999992 -33.7256890000162, 150.848981999992 -33.7256400000161, 150.848954999992 -33.7255740000162, 150.848885722684 -33.7255446203415, 150.848830999992 -33.7255170000162, 150.848761999992 -33.7254750000162, 150.848725999992 -33.7254240000162, 150.848669525815 -33.725303417855, 150.848613999984 -33.7248530000114, 150.848643724191 -33.7246910871128, 150.848760133455 -33.7241007374696, 150.848707999984 -33.7236040000114, 150.848689999984 -33.7235390000115, 150.848601999984 -33.7235060000114, 150.848460045259 -33.723539453667, 150.847807011735 -33.723617862742, 150.847701999984 -33.7233900000114, 150.844540999992 -33.7239020000161))\n17340077\t5-21 GRAY ST\tCheck with carrier\tMULTIPOLYGON (((151.921127168 -27.619234016, 151.920209888 -27.616966027, 151.917098048 -27.6170040075, 151.916996896 -27.617639038500002, 151.91675712 -27.6191279925, 151.920988928 -27.6196709675, 151.921127168 -27.619234016)), ((153.42793488 -28.145302014000002, 153.42785712 -28.145104027000002, 153.42776208 -28.144900971000002, 153.427377952 -28.14484203, 153.427448896 -28.1444789675, 153.427200832 -28.144440987, 153.426953152 -28.144402026, 153.426848032 -28.144386005, 153.42670512 -28.1443640455, 153.426497056 -28.1443320035, 153.426457088 -28.144325972500003, 153.426209056 -28.144286993, 153.426146048 -28.144278002, 153.425959936 -28.1442490125, 153.425923936 -28.1442429815, 153.425711872 -28.144211032, 153.42546384 -28.1441719785, 153.425374912 -28.1441580295, 153.425360896 -28.144167039, 153.425198176 -28.1443940155, 153.42503507199999 -28.144619993, 153.424879936 -28.144835999, 153.424994048 -28.144846988, 153.425320928 -28.144898011000002, 153.425570048 -28.144935991500002, 153.42581808 -28.1449749525, 153.426066112 -28.145013025500003, 153.426314176 -28.145051006, 153.426561856 -28.1450899855, 153.426810976 -28.145127966, 153.427059008 -28.145166039, 153.42730704 -28.145205, 153.42793488 -28.145302014000002)))\nAYAA-FPQGL\tThe Ponds\tReady for service\tPOLYGON ((150.909569357808 -33.6949818131024, 150.909622526901 -33.6968798195078, 150.909226338473 -33.6969268406154, 150.908964223177 -33.6991554900977, 150.910340370191 -33.6991099964759, 150.912668243558 -33.6986884107241, 150.91227180681 -33.6967516941239, 150.911474706347 -33.6968146505588, 150.911469240512 -33.6947322087368, 150.909569357808 -33.6949818131024))\nAYCA-1J8WS5\tJimboomba Woods\tReady for service\tPOLYGON ((153.042010627221 -27.8691483307398, 153.042887429639 -27.868691599569, 153.042983 -27.8685109999836, 153.043840292203 -27.8679257444822, 153.043987 -27.8680999999842, 153.044351 -27.8682049999842, 153.044512 -27.8678749999836, 153.045403 -27.8682409999842, 153.045552082939 -27.8680452830521, 153.045249009143 -27.8679220626409, 153.044676 -27.8675379999843, 153.044285 -27.8670819999836, 153.044083 -27.8661979999842, 153.043762 -27.8662199999842, 153.043291 -27.8658869999842, 153.043236 -27.8656379999842, 153.041161 -27.8642119999842, 153.040912 -27.8643519999842, 153.040886 -27.8660019999842, 153.040787 -27.8665299999842, 153.041636 -27.8684939999843, 153.041797 -27.8686839999842, 153.042010627221 -27.8691483307398))\n10192\tCanningvale-Sanctuary Waters\tReady for service\tPOLYGON ((115.92712484300137 -32.095832890394789, 115.9273387491703 -32.095676104202134, 115.92755936086178 -32.095929461466476, 115.92811658978462 -32.095390437363157, 115.92873215675354 -32.094781466245294, 115.92884413897991 -32.09471812619914, 115.92900708317757 -32.094883151070619, 115.92924177646637 -32.095176843478058, 115.92952609062195 -32.095633002153654, 115.92973262071609 -32.096105064337465, 115.93006655573845 -32.097211645791624, 115.93012824654579 -32.097508170988164, 115.93018390238285 -32.09814382233273, 115.93021541833878 -32.098426143271809, 115.9301570802927 -32.099096119462629, 115.93022882938385 -32.099443442899414, 115.92989891767502 -32.09950195130709, 115.92989522963762 -32.099493714688862, 115.92976950109005 -32.099508199775592, 115.92978090047836 -32.099573027611143, 115.92908151447773 -32.099515087291522, 115.92908687889576 -32.099403750887923, 115.92876568436623 -32.099390685892892, 115.92877238988876 -32.099320248496163, 115.9285806119442 -32.099318544364934, 115.92861145734787 -32.099434141195232, 115.92861145734787 -32.099453738677759, 115.92826746404171 -32.099436697388846, 115.92826411128044 -32.099481572776142, 115.92790469527245 -32.099467939749424, 115.92789731919765 -32.099378756982752, 115.92768978327513 -32.09939153795785, 115.92732332646847 -32.0993912539362, 115.92732198536396 -32.09921913665432, 115.92714160680771 -32.09847953989054, 115.92704437673092 -32.098089857466363, 115.92695318162441 -32.0977223274759, 115.92739574611187 -32.0976831317637, 115.92738837003708 -32.097538845953551, 115.92743128538132 -32.09741614603017, 115.92745408415794 -32.097211077734755, 115.92750437557697 -32.096791850811869, 115.9273923933506 -32.096504980331808, 115.92722810804844 -32.096235150840258, 115.92701755464077 -32.09595111893546, 115.92710271477699 -32.095905922277161, 115.9271228313446 -32.095832322329358, 115.92712484300137 -32.095832890394789))\nON-V-LSP-WTN\tWorthington Estate\tReady for service\tPOLYGON ((145.44869273900986 -38.058961870753983, 145.44821530580521 -38.058904849186689, 145.44806778430939 -38.058966094572014, 145.44720947742462 -38.058887953898967, 145.44674545526505 -38.058968206480934, 145.446737408638 -38.058632412196381, 145.44631361961365 -38.058414884258866, 145.44520854949951 -38.058634524114943, 145.44499933719635 -38.058043184539159, 145.44344633817673 -38.058389541156139, 145.44336050748825 -38.058754903371785, 145.44292867183685 -38.058683098224861, 145.4434597492218 -38.056714764997068, 145.44388622045517 -38.056769676298508, 145.4439988732338 -38.0568942825605, 145.44519513845444 -38.056951305694376, 145.44537484645844 -38.0562733611157, 145.44917017221451 -38.056780236159447, 145.44869273900986 -38.058961870753983))\nAYAA-FPOR9\tThe Fairways\tReady for service\tPOLYGON ((152.464248641146 -27.5456169942859, 152.46420943736 -27.54572485242, 152.463764291121 -27.5485510846923, 152.466462790367 -27.5487419994609, 152.466471512243 -27.5487061655414, 152.466510176777 -27.5485598611549, 152.466576474276 -27.5483678863908, 152.46666777903 -27.5481792149603, 152.466761579422 -27.5480383355078, 152.466928303219 -27.5479022238044, 152.467056954203 -27.5478399516769, 152.467200556573 -27.547804631387, 152.467336497997 -27.5477916994567, 152.467497520548 -27.5477968045847, 152.46825331832 -27.5478658524799, 152.468146468606 -27.5468237265946, 152.468284739787 -27.5466323776609, 152.468155498236 -27.5456202793463, 152.466629114085 -27.5457479176698, 152.464248641146 -27.5456169942859))\n269\tWatergardens Town Centre\tReady for service\tMULTIPOLYGON (((144.77382932661777 -37.700012890712117, 144.77394504853783 -37.699935895159186, 144.77393661497237 -37.699911023768991, 144.77382932661777 -37.700012890712117)), ((144.77627550123731 -37.70288208544553, 144.7771552657899 -37.702440678099421, 144.77623258588648 -37.701455990702208, 144.77621112821555 -37.700641067101351, 144.77640424727178 -37.700624089431322, 144.77616821287373 -37.699554488365727, 144.77666173933181 -37.699588444192528, 144.7790649986095 -37.69987706808994, 144.77940832136218 -37.699163995242067, 144.7790649986095 -37.698824434332138, 144.77627550123731 -37.698722565755943, 144.77565322874472 -37.697262434115856, 144.77458034513586 -37.697398261527624, 144.77451597212311 -37.697568045443461, 144.77477346418311 -37.699384708999823, 144.77394504853783 -37.699935895159186, 144.77417264937043 -37.700607111757414, 144.77627550123731 -37.70288208544553)))\n17336600\tRiverglen Estate\tCheck with carrier\tPOLYGON ((152.659110976 -27.4389650025, 152.659730176 -27.439731994000002, 152.660001952 -27.439812006500002, 152.660882176 -27.440613001, 152.661067936 -27.440411036500002, 152.66174688 -27.441207998, 152.662289056 -27.440769955, 152.661981952 -27.4405529685, 152.662998976 -27.4393899845, 152.66330496 -27.439107027000002, 152.664089056 -27.437586031000002, 152.66463696 -27.436895999500003, 152.664127936 -27.4367259845, 152.66375712 -27.4365109775, 152.662912928 -27.436250978500002, 152.662652992 -27.4361490065, 152.661705856 -27.437997952, 152.659110976 -27.4389650025))\nAYCA-1F7EBL\tLampada\tContracted\tPOLYGON ((150.954064771498 -31.1398907133126, 150.95377293535 -31.139898114185, 150.953452655634 -31.1406161575606, 150.954007310451 -31.1408955963089, 150.953778899851 -31.1412802048073, 150.954444455445 -31.1413581649546, 150.953718999994 -31.1428410000051, 150.954868999994 -31.1431250000052, 150.955066999994 -31.1431940000051, 150.955069999994 -31.1431740000051, 150.956309999994 -31.1432020000051, 150.956720999994 -31.1424710000052, 150.957769999994 -31.1406050000051, 150.956613999994 -31.1398220000051, 150.955562999994 -31.1394460000051, 150.954811999994 -31.1391740000051, 150.954124937854 -31.1398891874303, 150.954064771498 -31.1398907133126))\nAYCA-13X4N6\tCalleya\tReady for service\tPOLYGON ((115.874723296591 -32.1265031928837, 115.874722919333 -32.1265029887134, 115.873599504474 -32.1277429033041, 115.873852153837 -32.1279089842485, 115.873708985973 -32.1280682343799, 115.873457900908 -32.127904346772, 115.872734970256 -32.1287045089616, 115.872982087754 -32.1288330021713, 115.872903882946 -32.1289512773255, 115.873007410484 -32.1290054699088, 115.872870153693 -32.1291962873395, 115.873355047325 -32.1294116958567, 115.873172962739 -32.1297287087218, 115.873752232218 -32.130123159846, 115.875165372583 -32.1307144222396, 115.875019752945 -32.130899241428, 115.875103679727 -32.1309356359467, 115.875224848271 -32.1307377476969, 115.875967030679 -32.1310465427034, 115.877480490382 -32.1314057000293, 115.87903655183 -32.131873603431, 115.879097356655 -32.1317232823281, 115.877501845391 -32.1312782409625, 115.877109248216 -32.1309327844717, 115.877023569236 -32.1308982411479, 115.876964712621 -32.130856120608, 115.876271750115 -32.129671928643, 115.875977898976 -32.127836028326, 115.876147067214 -32.1273331282065, 115.875276191848 -32.126788856828, 115.875074554796 -32.126720297746, 115.874984837829 -32.1266718273606, 115.874940613418 -32.1266457150466, 115.874723296591 -32.1265031928837))\n10876\tMelrose Park\tContracted\tPOLYGON ((151.06601751590676 -33.809225805531725, 151.06670304115596 -33.811099715993983, 151.07128279545009 -33.809817827862126, 151.07038617279034 -33.807299889684082, 151.06806236947978 -33.80828068229556, 151.0668360948082 -33.80878890354812, 151.06601751590676 -33.809225805531725))\n88\tLakes Entrance\tReady for service\tPOLYGON ((152.919766137 -27.684162625000003, 152.919945161 -27.684291788000007, 152.920035528 -27.684509403999996, 152.9200107 -27.685141700999996, 152.92011309851614 -27.684305267307131, 152.91916896095077 -27.683887239718313, 152.91895438422358 -27.682633147352593, 152.91818190802559 -27.682367125909018, 152.91740943183657 -27.682367125909018, 152.91650820960407 -27.681835081076372, 152.91509200324256 -27.680808987295123, 152.91509200324256 -27.679934899804188, 152.91470576514806 -27.679554859582471, 152.91401911963371 -27.679516855487307, 152.91324664344472 -27.678832779518441, 152.91316994238414 -27.678224708393707, 152.91327186632327 -27.678072690083415, 152.91324504423687 -27.677930172725638, 152.91329868841865 -27.677602382097469, 152.91324504423687 -27.677165326395716, 152.91318067122413 -27.676994304123486, 152.91373857069496 -27.676048926176652, 152.9140228848504 -27.675963414200112, 152.91458078433021 -27.676034674185612, 152.91514941264103 -27.676153440723496, 152.91538008261463 -27.676348217567849, 152.91577704954909 -27.676343466917121, 152.91588433790366 -27.676267456479014, 152.91593798208544 -27.676134438086258, 152.91624375391174 -27.67607743015397, 152.91658171224896 -27.675939660861548, 152.91647442389439 -27.675725880580455, 152.91642077971255 -27.675483595756997, 152.91633494901993 -27.675450340935189, 152.9160077195227 -27.675564357424527, 152.91556783724639 -27.675630866988616, 152.91483291197471 -27.675564357424527, 152.914242825993 -27.675578609476936, 152.913861952314 -27.675759135318398, 152.91354008723224 -27.676034674185612, 152.91299828100784 -27.676965800385407, 152.912821255216 -27.677212832534668, 152.91250475454976 -27.677521621936645, 152.91221507597885 -27.677768652828963, 152.91218825388347 -27.677873165730457, 152.91254766989158 -27.678243710667331, 152.91259058523343 -27.678405229862349, 152.91257985640246 -27.67895154301495, 152.91258522081793 -27.679540608048022, 152.91259058523343 -27.679692624315404, 152.91267641592606 -27.6798161373761, 152.91315384912875 -27.680319689180831, 152.91337915468685 -27.680545336641281, 152.91345157433182 -27.680545336641281, 152.91355349827094 -27.680599967009432, 152.91355618048766 -27.680666473507529, 152.91353740502447 -27.680711602893791, 152.91395851183762 -27.681177147051923, 152.91428037691938 -27.681528679081559, 152.91460760641661 -27.681870709159295, 152.91470148373247 -27.681868333954441, 152.91492142487513 -27.681699694254309, 152.915462804 -27.682284108, 152.915646576 -27.682328904000002, 152.915825692 -27.682454621000023, 152.91573145199948 -27.682830287825723, 152.91591115999904 -27.682977549151428, 152.91628935147034 -27.682965673245427, 152.91669972945249 -27.682951422156851, 152.91744270134737 -27.682939546248029, 152.91743465472413 -27.683079681890284, 152.91847266960536 -27.683063055636904, 152.91851585899997 -27.683522156000002, 152.919317834 -27.683992197999991, 152.919766137 -27.684162625000003))\nAYCA-KYG28\tThe Sands\tReady for service\tPOLYGON ((151.37942871765 -23.9894081127128, 151.380074394312 -23.9891504198859, 151.380388999998 -23.9888799999477, 151.380154575351 -23.9886495655096, 151.380311523841 -23.9885426462713, 151.380362999998 -23.9884299999477, 151.380294999999 -23.9883319999488, 151.380280983381 -23.9881476114661, 151.380011815172 -23.9877950899626, 151.379720144315 -23.9875597220427, 151.379574999997 -23.9874039999468, 151.379393000002 -23.9872759999505, 151.378394676375 -23.9868078481876, 151.378325999999 -23.9867509999488, 151.378297011648 -23.9866689510225, 151.37833149327 -23.9865581683212, 151.378138729314 -23.986510575116, 151.378079511446 -23.9865713340753, 151.377994678771 -23.9865965356388, 151.377908296945 -23.9865796213575, 151.377755484274 -23.9864228336274, 151.377680734517 -23.9864058442101, 151.377441999907 -23.9869029999077, 151.377120422079 -23.9867585946119, 151.376379999998 -23.9868629999466, 151.376606613814 -23.988213249911, 151.376788000252 -23.9892939998136, 151.376423000252 -23.9893449998137, 151.376283000252 -23.9894529998136, 151.375925000251 -23.9895039998138, 151.375985000252 -23.9898599998137, 151.376126000252 -23.9900279998137, 151.376019000251 -23.9904259998126, 151.376441000252 -23.9905219998136, 151.376635440253 -23.9904924298139, 151.377430320253 -23.9900388298138, 151.377616135058 -23.9898310910193, 151.378482011484 -23.990417750378, 151.378362592415 -23.9905848942824, 151.378282938056 -23.9906809974036, 151.378346160253 -23.9907070798136, 151.378551070478 -23.9911778264783, 151.37942871765 -23.9894081127128), (151.378798009355 -23.9898136034058, 151.378843586761 -23.9898238765762, 151.379157095438 -23.9899555449547, 151.378551032689 -23.9911736617187, 151.378346571015 -23.990706538035, 151.378284144027 -23.9906809274252, 151.378362662117 -23.9905855072584, 151.378466732487 -23.9904411413325, 151.378482282171 -23.9904178783137, 151.378512402946 -23.9903728162646, 151.378567795107 -23.9902780495708, 151.378641794976 -23.9901477244556, 151.378715449353 -23.9900190020612, 151.378747462587 -23.9899543694875, 151.378776089082 -23.9898838873315, 151.378798009355 -23.9898136034058))\nAYCA-10ILHK\tMarsden Park Precinct\tContracted\tPOLYGON ((150.821641697981 -33.6969017543874, 150.827300861783 -33.6934177371323, 150.826574797348 -33.6925996126248, 150.825750944857 -33.6931088383887, 150.825545813144 -33.6928769491956, 150.82489187289 -33.6921376808184, 150.825163999991 -33.6920290000158, 150.825542999991 -33.6917950000158, 150.825693999991 -33.6917020000158, 150.82583557379 -33.6917666348031, 150.825655442617 -33.6915636544446, 150.825690840609 -33.6915419517519, 150.825500999991 -33.6913250000158, 150.825475999991 -33.6913930000159, 150.825472999991 -33.6914020000158, 150.825468999991 -33.6914110000158, 150.825465999991 -33.6914200000158, 150.825459999991 -33.6914280000158, 150.825453999991 -33.6914350000158, 150.825447999991 -33.6914430000157, 150.825441999991 -33.6914500000158, 150.825435999991 -33.6914580000158, 150.825429999991 -33.6914650000158, 150.825423999991 -33.6914730000158, 150.825421999991 -33.6914760000158, 150.825418999991 -33.6914800000158, 150.825412999991 -33.6914860000158, 150.825400999991 -33.6915000000158, 150.825375999991 -33.6915250000158, 150.825361999991 -33.6915370000158, 150.825354999991 -33.6915420000158, 150.825347999991 -33.6915480000158, 150.825340999991 -33.6915530000158, 150.825333999991 -33.6915590000158, 150.825325999991 -33.6915640000158, 150.825318999991 -33.6915690000158, 150.825310999991 -33.6915740000158, 150.825303999991 -33.6915790000158, 150.825302999991 -33.6915790000158, 150.825293999991 -33.6915850000158, 150.825284999991 -33.6915900000158, 150.825276999991 -33.6915950000158, 150.825267999991 -33.6916010000157, 150.825258999991 -33.6916060000159, 150.825250999991 -33.6916110000158, 150.825241999991 -33.6916170000158, 150.825232999991 -33.6916220000158, 150.825224999991 -33.6916270000158, 150.825215999991 -33.6916330000158, 150.825197999991 -33.6916430000158, 150.825189999991 -33.6916490000158, 150.825180999991 -33.6916540000158, 150.825170999991 -33.6916600000158, 150.825161999991 -33.6916670000158, 150.825151999991 -33.6916740000158, 150.825133999991 -33.6916880000158, 150.825125999991 -33.6916950000158, 150.825095999991 -33.6917250000158, 150.825089999991 -33.6917320000158, 150.825068999991 -33.6917530000158, 150.825062999991 -33.6917590000157, 150.825056999991 -33.6917640000158, 150.825050999991 -33.6917700000158, 150.825049999991 -33.6917700000159, 150.825005999991 -33.6918100000158, 150.824981999991 -33.6918290000158, 150.824927999991 -33.6918720000158, 150.824870999991 -33.6919130000158, 150.824810999991 -33.6919520000158, 150.823828999991 -33.6925550000158, 150.823827999991 -33.6925560000158, 150.821497999991 -33.6939860000158, 150.821630999991 -33.6941370000157, 150.822964999991 -33.6956560000158, 150.821437999991 -33.6965930000157, 150.821425999991 -33.6966560000158, 150.821641697981 -33.6969017543874))\nAYCA-1D9BBM\tHarrington Grove\tUnder construction\tPOLYGON ((150.719515999989 -34.0141980000153, 150.719234999989 -34.0141670000154, 150.719197999989 -34.0144370000153, 150.719169999989 -34.0148540000153, 150.719157999989 -34.0152960000153, 150.719163999989 -34.0155380000153, 150.719194999989 -34.0157860000153, 150.719229999989 -34.0160140000154, 150.719272999989 -34.0162030000153, 150.719453999989 -34.0167880000153, 150.719601999989 -34.0172260000153, 150.719618999989 -34.0172780000153, 150.719698999989 -34.0175370000153, 150.719723999989 -34.0176280000153, 150.719739999989 -34.0177190000153, 150.719745999989 -34.0177720000154, 150.719749999989 -34.0178260000153, 150.719750999989 -34.0178940000154, 150.719748999989 -34.0179530000153, 150.719745999989 -34.0180560000154, 150.719996999989 -34.0180550000154, 150.720056999989 -34.0180040000154, 150.721294999989 -34.0177500000154, 150.721389999989 -34.0177290000153, 150.721496999989 -34.0176990000154, 150.721626999989 -34.0176510000154, 150.721743999989 -34.0175980000154, 150.721846999989 -34.0175410000154, 150.721946999989 -34.0174760000154, 150.722028999989 -34.0174130000153, 150.722092999989 -34.0173580000154, 150.722157999989 -34.0172940000154, 150.722224999989 -34.0172170000153, 150.722700999989 -34.0166330000154, 150.722728999989 -34.0165960000154, 150.722753999989 -34.0165590000154, 150.722774999989 -34.0165230000153, 150.722806999989 -34.0164580000154, 150.722823999989 -34.0164160000154, 150.722841999989 -34.0163540000154, 150.723262999989 -34.0146560000154, 150.721449999989 -34.0143930000154, 150.720377999989 -34.0142810000153, 150.719515999989 -34.0141980000153))\nAYCA-1J527U\tMuirhead\tContracted\tPOLYGON ((130.893439999995 -12.3530259998886, 130.893416999995 -12.3529869998885, 130.893274999995 -12.3530689998886, 130.893320999995 -12.3531469998885, 130.893177999995 -12.3532299998886, 130.893131999995 -12.3531519998886, 130.892988999995 -12.3532339998886, 130.893011999995 -12.3532729998886, 130.892869999995 -12.3533549998886, 130.892895999995 -12.3533999998885, 130.892752999995 -12.3534819998886, 130.892982999995 -12.3538669998885, 130.892695999995 -12.3540339998885, 130.89335599999 -12.3551409998874, 130.893397982635 -12.3551320036039, 130.893640999995 -12.3555389998885, 130.893782999995 -12.3554559998886, 130.893736999995 -12.3553779998886, 130.893879999995 -12.3552959998885, 130.893925999995 -12.3553739998886, 130.894068999995 -12.3552919998886, 130.894045999995 -12.3552529998886, 130.894203999995 -12.3551609998885, 130.894180999995 -12.3551219998886, 130.894323999995 -12.3550399998886, 130.894369999995 -12.3551179998886, 130.894512999995 -12.3550349998886, 130.894477999995 -12.3549769998885, 130.894620999995 -12.3548949998885, 130.894630999995 -12.3549119998885, 130.894773999995 -12.3548299998886, 130.894750999995 -12.3547909998886, 130.894892999995 -12.3547079998886, 130.894939999995 -12.3547859998886, 130.895082999995 -12.3547039998885, 130.89505699999 -12.3546619998874, 130.895188999995 -12.3545879998886, 130.89522199999 -12.3545759998873, 130.895432999995 -12.3545229998886, 130.895441999995 -12.3545899998885, 130.895725000002 -12.3545539998858, 130.89592348053 -12.3545499901793, 130.896009999984 -12.3550559998833, 130.89606699999 -12.3550959998874, 130.896108999995 -12.3552409998885, 130.896626999995 -12.3550869998885, 130.899100999995 -12.3536599998885, 130.899146999995 -12.3533339998886, 130.899098999995 -12.3533869998886, 130.897420999995 -12.3534349998886, 130.897005999995 -12.3536739998886, 130.896997999995 -12.3525639998886, 130.896857999995 -12.3525649998886, 130.896851999995 -12.3518099998886, 130.896410999995 -12.3518129998885, 130.896412999995 -12.3520629998886, 130.895534999995 -12.3520689998885, 130.895534999995 -12.3521169998886, 130.895285999995 -12.3521179998886, 130.895287999995 -12.3527689998885, 130.894983999995 -12.3527709998885, 130.894983999995 -12.3526639998886, 130.894792999995 -12.3526979998885, 130.894568999995 -12.3527829998886, 130.894461999995 -12.3528379998885, 130.894409999995 -12.3528229998885, 130.894284999995 -12.3526129998885, 130.894165999995 -12.3526819998886, 130.894174999995 -12.3526969998886, 130.893910999995 -12.3528489998886, 130.893868999995 -12.3527789998886, 130.893725999995 -12.3528609998885, 130.893748999995 -12.3528999998886, 130.893606999995 -12.3529829998886, 130.893582999995 -12.3529439998886, 130.893439999995 -12.3530259998886))\nAYCA-1FTKTT\tMolonglo Valley - Coombs Stage 1\tReady for service\tPOLYGON ((149.043426474012 -35.3229330840435, 149.043493157019 -35.3231268710395, 149.044142520006 -35.3234346400476, 149.044747731019 -35.3237208830396, 149.045400656013 -35.3240295740436, 149.045874160019 -35.3242533180395, 149.046178981013 -35.3243974250436, 149.046342179019 -35.3241655650394, 149.046322026019 -35.3241040140395, 149.046689630006 -35.3235817430474, 149.047057230006 -35.3230594700475, 149.047132332006 -35.3230429520475, 149.047182688342 -35.3230667583658, 149.047319335006 -35.3228738490476, 149.047473186006 -35.3226552590475, 149.047512095013 -35.3225904180434, 149.047448655006 -35.3225604260475, 149.047418757125 -35.3225458172532, 149.047572357006 -35.3223275830475, 149.047602397013 -35.3223209760434, 149.047753499013 -35.3221062880435, 149.047745437025 -35.3220816680355, 149.048086100013 -35.3215976450433, 149.048260551013 -35.3213497780435, 149.048331979019 -35.3212482900394, 149.048655844006 -35.3214013970474, 149.048903094019 -35.3210500880392, 149.048986935007 -35.3209170150476, 149.048995104006 -35.3208401340475, 149.049020089006 -35.3206049940474, 149.048901031013 -35.3202496810434, 149.048789711019 -35.3202747370393, 149.048699438006 -35.3200053240475, 149.048650961069 -35.3198709016713, 149.048325440006 -35.3199441690474, 149.048158302013 -35.3199817880435, 149.048101375006 -35.3199963180473, 149.048018562006 -35.3200239510474, 149.047952457006 -35.3200521470476, 149.047889500019 -35.3200848280394, 149.047841707006 -35.3201140440475, 149.047785539019 -35.3201541850396, 149.047723909013 -35.3202072790434, 149.047669174006 -35.3202652260474, 149.047629237006 -35.3203167920475, 149.047434093006 -35.3205940600475, 149.046563413013 -35.3201824250435, 149.046544709006 -35.3201734810475, 149.046526114006 -35.3201643870476, 149.046507628006 -35.3201551430475, 149.046489255006 -35.3201457500474, 149.046470995006 -35.3201362100474, 149.045807330013 -35.3210791370436, 149.045784866013 -35.3211103080435, 149.045749713013 -35.3211563350435, 149.045712841013 -35.3212014510435, 149.045661067013 -35.3212601120436, 149.045632670006 -35.3212902450475, 149.045588598006 -35.3213344820474, 149.045558252019 -35.3213633110396, 149.045495310006 -35.3214193190475, 149.045412568019 -35.3214861000396, 149.045307636006 -35.3215612460474, 149.045215793019 -35.3216194930396, 149.045100706006 -35.3216838820475, 149.044943350019 -35.3217593710395, 149.044587515523 -35.3219233882517, 149.044482119178 -35.3217671245641, 149.044239671986 -35.3218715925673, 149.044342280499 -35.3220364251165, 149.044196866013 -35.3221034510436, 149.044168069013 -35.3221171760434, 149.044125809006 -35.3221390260475, 149.044084742006 -35.3221623540475, 149.044031974006 -35.3221956820476, 149.043993986013 -35.3222222840436, 149.043969456006 -35.3222407570476, 149.043933905013 -35.3222695340434, 149.043888669006 -35.3223100600475, 149.043856667006 -35.3223418290476, 149.043836283013 -35.3223636300436, 149.043797873006 -35.3224086400474, 149.043762713006 -35.3224554000475, 149.043426474012 -35.3229330840435))\nAYCA-G4D1B\tDeepdale Industrial Estate\tReady for service\tPOLYGON ((114.691418008669 -28.7918229925085, 114.691401201346 -28.791822548118, 114.691363941589 -28.7918224470435, 114.689762290792 -28.7918174806182, 114.689761241026 -28.7912983922332, 114.686381316048 -28.7934648515512, 114.687187985452 -28.7944405707148, 114.687095509694 -28.7944998968237, 114.687194524116 -28.7946159162389, 114.687663207915 -28.7943303262344, 114.687781263331 -28.7943706823514, 114.687982453913 -28.7943325235681, 114.688007174189 -28.79419401379, 114.688387545058 -28.7939499881777, 114.689850845772 -28.7945172302887, 114.689849723912 -28.79490611027, 114.690074752118 -28.7949967013748, 114.690714776144 -28.7949981352138, 114.690713111159 -28.7955754541713, 114.69135313905 -28.7955768852662, 114.691393790649 -28.7955976702067, 114.691407848681 -28.7949599925132, 114.691418008669 -28.7918229925085))\nAYCA-DNDK2\tManooka Valley\tReady for service\tPOLYGON ((150.772927577922 -34.0383650689773, 150.774532162344 -34.0393236607035, 150.774696246536 -34.0393918096648, 150.77653559999 -34.0404517800159, 150.776667084031 -34.0405867958204, 150.776819247316 -34.0406233356764, 150.776978850105 -34.0407555601103, 150.777088947131 -34.0406811117463, 150.777159899692 -34.0407456802178, 150.777384054193 -34.0408931363176, 150.77788511855 -34.0402183962324, 150.778398943405 -34.0388592573101, 150.777860873441 -34.0387151309479, 150.777805349327 -34.0383731091373, 150.777575763391 -34.0380272922767, 150.77703542929 -34.0378013145223, 150.776423526213 -34.0376575728372, 150.775410623699 -34.037607367336, 150.775449292649 -34.0369429527975, 150.774967500863 -34.0366108329183, 150.774473343798 -34.03647856521, 150.772927577922 -34.0383650689773), (150.775687810547 -34.0386187385006, 150.775961733381 -34.0386280106465, 150.775958866086 -34.0387378145291, 150.775682333506 -34.038728465181, 150.775687810547 -34.0386187385006))\n17342032\tHighfields Views\tCheck with carrier\tPOLYGON ((151.993666816 -27.450900814, 151.992504 -27.450746191, 151.992302752 -27.4507194585, 151.988511616 -27.4502151855, 151.987757056 -27.450671488, 151.98900624 -27.4522731255, 151.986641056 -27.453799986, 151.986603616 -27.454027221500002, 151.986449536 -27.4549531465, 151.990098112 -27.452889268, 151.993666816 -27.450900814))\n17350580\tBroadview Estate\tCheck with carrier\tPOLYGON ((149.59184 -32.626900004, 149.591762016 -32.627376009, 149.591852992 -32.6282979935, 149.592284992 -32.6288030065, 149.592420992 -32.629082005, 149.592366016 -32.629236998, 149.592956992 -32.6300749925, 149.594619008 -32.632449005, 149.595519008 -32.627354993000004, 149.59184 -32.626900004))\nAYCA-T062O\tGoogong Township\tReady for service\tPOLYGON ((149.237467703633 -35.4157760444998, 149.236837159653 -35.4171012659491, 149.236905032777 -35.4172678318296, 149.236745842295 -35.4185127138487, 149.236765358031 -35.4186869713317, 149.236715096685 -35.418983060719, 149.23531518907 -35.4187097914382, 149.235134944507 -35.4186254269678, 149.234879173759 -35.4189970200308, 149.23470968586 -35.4189304351509, 149.23455252405 -35.4192536739339, 149.234649534806 -35.4195779756572, 149.234673773539 -35.4195866832978, 149.234640364142 -35.4197468152706, 149.234504072487 -35.4197191384458, 149.234493364583 -35.4203951993469, 149.234549955857 -35.4204054918367, 149.23430400002 -35.4212590000131, 149.233964217424 -35.42119589151, 149.23391700002 -35.4213440000131, 149.233825546494 -35.4216455486342, 149.233579126912 -35.42174414392, 149.233545585149 -35.4218575761295, 149.234245329278 -35.4219963981135, 149.23460123978 -35.4220669590659, 149.234975732136 -35.4221502172209, 149.234991804392 -35.4220654281694, 149.234892656892 -35.4220496989013, 149.234953661638 -35.4218589565229, 149.235029322242 -35.4216183415629, 149.235116472813 -35.4215656336544, 149.23516681934 -35.4213947955037, 149.235189562872 -35.4213992864924, 149.235357383101 -35.4208298258335, 149.235408221416 -35.4208398644633, 149.235507916626 -35.4208628367212, 149.235583073644 -35.4206078355195, 149.235931624954 -35.4206766686138, 149.235904256986 -35.420769527285, 149.236565900534 -35.4208951770485, 149.236770018716 -35.4210887666459, 149.237434097507 -35.4211885825743, 149.237555877485 -35.4210423107434, 149.237610350277 -35.4208197918293, 149.237520967478 -35.4208064917472, 149.237582170016 -35.4205395322994, 149.237603735445 -35.4205428686651, 149.237624364587 -35.4204514284879, 149.23768100001 -35.4201640000197, 149.23764100001 -35.4201580000197, 149.23770000001 -35.4199060000197, 149.23779300001 -35.4199200000197, 149.23795900001 -35.4190650000197, 149.23790400001 -35.4190660000197, 149.23809200001 -35.4180500000196, 149.23810300001 -35.4180090000197, 149.23814800001 -35.4178520000197, 149.23825600001 -35.4176150000197, 149.23847100001 -35.4173120000197, 149.23857700001 -35.4172530000197, 149.238612137901 -35.4172338101049, 149.238793179673 -35.4171451940773, 149.238443202526 -35.4167837130339, 149.237467703633 -35.4157760444998))\nAYAA-HE3NB\tBroome North\tReady for service\tPOLYGON ((122.230466306045 -17.9224571928365, 122.230451710555 -17.9229093740291, 122.230395512646 -17.9247236592523, 122.230471620578 -17.9247401287782, 122.230478248606 -17.9250702040474, 122.231260022394 -17.9250922638074, 122.231273744733 -17.925546393144, 122.231403362082 -17.9255449707677, 122.231421028655 -17.9258250788469, 122.231417887137 -17.9265533933096, 122.233083458649 -17.9264377019639, 122.233285740994 -17.9258255788295, 122.233206628416 -17.9257166886721, 122.233264502481 -17.9254978994141, 122.233421932045 -17.9253968272989, 122.23433836315 -17.9226348046698, 122.230466306045 -17.9224571928365))\n17248287\tNogoa Rise Estate \tCheck with carrier\tPOLYGON ((148.161332896 -23.548365996, 148.161197888 -23.550939993500002, 148.161760928 -23.5530759665, 148.162842016 -23.554606046, 148.163416928 -23.555065956, 148.16347488 -23.550795009, 148.16348208 -23.550418978, 148.16348496 -23.550262024000002, 148.163487136 -23.55015798, 148.163509088 -23.548940014, 148.163514112 -23.548705027, 148.163516992 -23.548515032, 148.162973056 -23.5485170115, 148.162973056 -23.5485359925, 148.162935968 -23.5485690335, 148.162897088 -23.548604035500002, 148.162844896 -23.548602962500002, 148.162791968 -23.5486019635, 148.162757056 -23.548570014, 148.162718176 -23.5485330325, 148.16271888 -23.5485009905, 148.161896992 -23.5484749795, 148.16172096 -23.548379038500002, 148.161332896 -23.548365996))\n173\tGemstone Waters\tReady for service\tPOLYGON ((152.93148641347787 -27.095016408891176, 152.93519859075352 -27.095522630480207, 152.9346836066245 -27.098340237129189, 152.93373946905018 -27.098674524738463, 152.9333746886266 -27.098330686039695, 152.93070320844893 -27.097652556622815, 152.93069247960895 -27.097643005474676, 152.93148641347787 -27.095016408891176))\n17296036\tINNOVATION PARK\tCheck with carrier\tPOLYGON ((145.219498912 -38.042261999000004, 145.21893408 -38.045979000500004, 145.221444 -38.045755983, 145.221761888 -38.044948957500004, 145.222376224 -38.045372219, 145.22259312 -38.043473046, 145.223777152 -38.0435709665, 145.223883008 -38.042847006, 145.219498912 -38.042261999000004))\n314\tLiving Gems Kuluin\tUnder construction\tPOLYGON ((153.04729444825927 -26.65790047155776, 153.04707891364106 -26.657826261932833, 153.04718994749371 -26.65681365102639, 153.04718994749371 -26.65681365102639, 153.04720207321284 -26.656773200582215, 153.04721727216506 -26.656733597022868, 153.0472354720971 -26.656695028609004, 153.04725658649028 -26.656657678680393, 153.04728051497207 -26.656621724784408, 153.04730714379303 -26.656587337832057, 153.04733634636779 -26.656554681285542, 153.04736798387665 -26.656523910381278, 153.04740190592554 -26.656495171391928, 153.04743795126103 -26.656468600931131, 153.04747594853671 -26.656444325304154, 153.04751571712791 -26.656422459907443, 153.04755706799003 -26.656403108680127, 153.04759980455745 -26.656386363609979, 153.04764372367774 -26.656372304296106, 153.04768861657726 -26.656360997570651, 153.04773426985378 -26.656352497181054, 153.04778046649059 -26.656346843534603, 153.04782698688837 -26.656344063506339, 153.04807702706526 -26.656366191056112, 153.04807702706526 -26.656366191056112, 153.04808998766941 -26.656366949373631, 153.04810297571225 -26.656366934562428, 153.04811593413243 -26.656366146687574, 153.04812880599877 -26.656364589210504, 153.04814153476036 -26.65636226897379, 153.04819157366927 -26.656410537361619, 153.04820793819707 -26.656303723136542, 153.04873672333633 -26.655865750997144, 153.0486677695128 -26.655722285658427, 153.04866435030053 -26.655670362859926, 153.04917890270892 -26.655643005733033, 153.04941555804703 -26.65556087482031, 153.05018463736695 -26.655697089475982, 153.0502217522201 -26.655722693902518, 153.05031624607255 -26.655706554304675, 153.05057356477661 -26.655491127390384, 153.05071144292086 -26.655388040486148, 153.05091774832957 -26.655597872746526, 153.05105816566174 -26.655733238956476, 153.05112282892949 -26.655679106031563, 153.05122610506075 -26.655558384977347, 153.0544668516288 -26.656005747486134, 153.05436854523919 -26.656560503311383, 153.05382565465774 -26.656484883487153, 153.052122715314 -26.657179098224852, 153.05224484191149 -26.657474206382751, 153.05135147775542 -26.657772679038356, 153.05073144358019 -26.656211685281988, 153.04941088982991 -26.657314291684855, 153.04968997779031 -26.657523629363514, 153.04957119720882 -26.657641283604583, 153.04953408347691 -26.65769834388767, 153.04918650083818 -26.657502136335442, 153.04908953176013 -26.657466722850735, 153.04899904294169 -26.657698512513637, 153.0489500430221 -26.657687873330403, 153.04891890363962 -26.657714194796462, 153.04888481569455 -26.657901852177954, 153.04888481569458 -26.657901852177954, 153.04888380625965 -26.657907742055261, 153.04888234878473 -26.657913555689298, 153.0488804501594 -26.657919265598409, 153.04887811935859 -26.65792484479125, 153.0488753674002 -26.657930266894372, 153.04887220729296 -26.657935506276921, 153.04886865397495 -26.657940538171772, 153.04886472424306 -26.657945338792612, 153.04886043667358 -26.657949885446371, 153.0488558115342 -26.657954156640518, 153.04885087068845 -26.657958132184664, 153.04884563749224 -26.65796179328596, 153.04884013668342 -26.657965122637968, 153.04883439426493 -26.657968104502476, 153.04882843738181 -26.65797072478388, 153.04882229419286 -26.657972971095813, 153.04881599373766 -26.657974832819693, 153.04880956579916 -26.657976301154964, 153.04880304076295 -26.657977369160616, 153.04879644947363 -26.657978031788069, 153.04878982308892 -26.65797828590502, 153.04878319293255 -26.657978130310237, 153.04877659034597 -26.657977565739209, 153.0487700465404 -26.657976594860735, 153.04810240325762 -26.657925448382457, 153.04783584929766 -26.657900290369938, 153.04729444825927 -26.65790047155776))\n10740\tLiving Choice Glenhaven\tReady for service\tPOLYGON ((150.99443078041077 -33.69626396335785, 150.99408745765686 -33.695897984789795, 150.99437713623047 -33.694835745483786, 150.99282145500183 -33.694621510755184, 150.99279999732971 -33.6938895380691, 150.99446296691895 -33.69413948066294, 150.99464535713196 -33.693612815063624, 150.99594354629517 -33.693737786853859, 150.995911359787 -33.692970100128676, 150.99798202514648 -33.693005806640073, 150.99801421165466 -33.693862758462359, 150.99871158599854 -33.694353716593305, 150.99840044975281 -33.695469520095237, 150.9974992275238 -33.69524636055398, 150.99524617195129 -33.695469520095237, 150.99443078041077 -33.69626396335785))\nAYCA-19ZSTU\tVermont Riverlands\tContracted\tPOLYGON ((150.870480999992 -33.5641750000158, 150.870055999992 -33.5661700000159, 150.869546999992 -33.5659870000159, 150.868922000201 -33.5691579998688, 150.869077999992 -33.5696840000159, 150.869124999992 -33.5698440000158, 150.870296999992 -33.5696180000159, 150.871650999992 -33.5695980000159, 150.871155999992 -33.5652730000159, 150.871442999992 -33.5643200000159, 150.870480999992 -33.5641750000158))\n10704\tWannanup-Port Bouvard East\tReady for service\tPOLYGON ((115.64603269100189 -32.60341102088821, 115.64819991588593 -32.605083070342729, 115.65008282661438 -32.606267043243285, 115.65141320228577 -32.60480289125956, 115.64817309379578 -32.602755749751907, 115.64857006072998 -32.601846941477646, 115.64825624227524 -32.60151704119307, 115.64603269100189 -32.60341102088821))\nAYCA-OVO23\tMINDA Redevelopment\tReady for service\tPOLYGON ((138.51675979825 -35.0032417638245, 138.516790293938 -35.0035031672521, 138.51732804696 -35.003483564111, 138.517660274504 -35.0034609559322, 138.517722 -35.0042832900249, 138.51835956 -35.0045442000249, 138.52183284 -35.004360510025, 138.52186704 -35.0043311700249, 138.52169028 -35.0020066500249, 138.5176014 -35.0022219300249, 138.51756684 -35.0022530700249, 138.517639589334 -35.0032127211708, 138.517308112401 -35.0032237465644, 138.51675979825 -35.0032417638245))\n10553\tMurray-Riverland Ramble\tReady for service\tPOLYGON ((115.8260753005743 -32.577042513371417, 115.82641325891018 -32.576966796228781, 115.82647159695625 -32.57694871451362, 115.82645483314991 -32.57691085591069, 115.82653194665909 -32.57688938386012, 115.82654871046543 -32.576918201611008, 115.82698255777359 -32.576806885933848, 115.82704290747643 -32.57692893763349, 115.82711666822433 -32.577221069962093, 115.82720048725605 -32.5777081434111, 115.82719512283802 -32.578020049844987, 115.82760013639927 -32.578049180656848, 115.82799308001995 -32.578085092017446, 115.82844637334347 -32.578127532296485, 115.82847252488136 -32.577956323126116, 115.82851678133011 -32.57796140855173, 115.8285865187645 -32.577793024305912, 115.828947275877 -32.577893602853194, 115.82899153232574 -32.577830317488278, 115.82915715873241 -32.577888517423723, 115.82912027835846 -32.5779636687408, 115.82930635660887 -32.578042492798936, 115.82936771214008 -32.578053511210143, 115.82936553284526 -32.578069897562763, 115.82945052534342 -32.578106625583629, 115.82936033606529 -32.57822867551414, 115.82926779985428 -32.578563181879488, 115.82926981151104 -32.578728174424448, 115.82924298942089 -32.57905476836131, 115.82928523421288 -32.579057028522826, 115.82933686673641 -32.579178512120059, 115.82922035828233 -32.579191084250375, 115.82921650260687 -32.579186705193955, 115.82893252372742 -32.579218064883641, 115.82897342741489 -32.579336723069709, 115.82879170775414 -32.579385881415078, 115.82876287400723 -32.579312991445065, 115.82867989316583 -32.579330648904481, 115.82867603749037 -32.5793257048162, 115.82843296229839 -32.579384186300167, 115.82843899726868 -32.57944012507523, 115.82856774330139 -32.579760501023763, 115.82882523536682 -32.580066591062646, 115.82907199859619 -32.580361944446437, 115.82934893667698 -32.580691357582694, 115.82904987037182 -32.58087555719645, 115.82877930253744 -32.580982912625011, 115.82852063700557 -32.581046195764777, 115.82785360515118 -32.58116993677509, 115.82782812416553 -32.581129819845252, 115.82744054496288 -32.581263731217071, 115.82745999097824 -32.581306673217988, 115.82737550139427 -32.581327014158624, 115.82732923328876 -32.581175587045458, 115.82725748419762 -32.581034895207381, 115.82679077982903 -32.580593607327209, 115.826674439013 -32.580420001480704, 115.82659430801868 -32.580212493319138, 115.82654435187578 -32.580009787469557, 115.82652524113655 -32.579814991660363, 115.8265782147646 -32.579152131829652, 115.82556903362274 -32.579559524578748, 115.8246798813343 -32.578217551178405, 115.8255609869957 -32.577790940690136, 115.82573063671589 -32.577818628054956, 115.82578159868717 -32.57772822030153, 115.82565888762474 -32.577691492125659, 115.82574605941772 -32.577409532243742, 115.82582250237465 -32.577394275872152, 115.82589223980904 -32.577432699321584, 115.82621410489082 -32.577507851020684, 115.82611503079534 -32.577186544399048, 115.82610715180635 -32.577189577139862, 115.82606574520469 -32.577052759372108, 115.82607655785978 -32.577049896584008, 115.8260753005743 -32.577043643477545, 115.8260753005743 -32.577042513371417))\nAYCA-IEEZM\tLot 1693 Parker St \u0026 Lot 2119 Stanley St\tReady for service\tPOLYGON ((118.599534752865 -20.3946096122919, 118.599863319602 -20.3951005817677, 118.6002431198 -20.3957933908421, 118.600478751077 -20.3968489079075, 118.603353219582 -20.3965266137156, 118.603931396318 -20.396133065357, 118.604220525739 -20.3963073156522, 118.604345299501 -20.396382513063, 118.604376018431 -20.3964010264179, 118.604673826345 -20.3959446790679, 118.604692776002 -20.3959342601813, 118.604699309583 -20.3959208469197, 118.604723030758 -20.3958766401453, 118.604662615368 -20.3958398844816, 118.604882508932 -20.3954136408365, 118.603929895488 -20.3949135195323, 118.60283448 -20.3948834399183, 118.602312828872 -20.3932677627157, 118.601099331617 -20.3936181591263, 118.599566438767 -20.3945694889545, 118.599534752865 -20.3946096122919))\n83\tStonybrook\tReady for service\tPOLYGON ((144.731148311 -37.690168202, 144.731463713 -37.690269841, 144.73388925 -37.690431715, 144.734551418 -37.687019791, 144.731238968 -37.686583179, 144.731148311 -37.690168202))\nAYCA-ETCHB\tWhiteman Edge\tReady for service\tPOLYGON ((115.963526331826 -31.8141469707026, 115.963217919711 -31.8141452027641, 115.963206803361 -31.8171411392833, 115.963787301134 -31.8171395487868, 115.963852325245 -31.8171400034224, 115.963930982343 -31.8171769998828, 115.964091335786 -31.8173896782137, 115.964076798991 -31.8174122118049, 115.96378448636 -31.8174103797239, 115.963787296906 -31.8171399896167, 115.963206813756 -31.8171412810407, 115.963200401579 -31.8188660325025, 115.963576778094 -31.8188658609458, 115.963576382118 -31.8187404778349, 115.963724928268 -31.8187375553241, 115.963725296443 -31.8189765713542, 115.964723794864 -31.818981160227, 115.964796542974 -31.8190407781169, 115.965099155546 -31.8190329460168, 115.965323987658 -31.8190104994301, 115.965278856252 -31.8189027168933, 115.965566485277 -31.81877989629, 115.965831353189 -31.8187115634245, 115.965830153059 -31.8184035199477, 115.966759800593 -31.818415327901, 115.967052822432 -31.8184113002995, 115.967052044064 -31.8181677339801, 115.96689038498 -31.8178324338783, 115.966889693749 -31.8176160243518, 115.966572747767 -31.8176167620695, 115.966570230646 -31.8168048329001, 115.966626358697 -31.8167732333863, 115.966404056316 -31.8164853398005, 115.966665619784 -31.8163532113312, 115.966474763619 -31.8161092593279, 115.966380947423 -31.8161741893473, 115.966235556642 -31.8160463323269, 115.965980074413 -31.815715463789, 115.96560096082 -31.8159291820622, 115.965428421115 -31.8157045949477, 115.965396443473 -31.8156223161103, 115.965080570136 -31.8156223712579, 115.965080611185 -31.8156919823306, 115.964922196707 -31.8157868157198, 115.964645071162 -31.8159196072829, 115.964380658565 -31.8160688236349, 115.964323360792 -31.815994797979, 115.964202015792 -31.8160581094494, 115.964192148287 -31.816045792454, 115.9639141434 -31.8162023463961, 115.963813068187 -31.8160717614938, 115.963812699321 -31.815446999508, 115.963491793011 -31.8154478333111, 115.9634934964 -31.815321641514, 115.963559163121 -31.8152666856442, 115.96355908552 -31.8151313705795, 115.963759697615 -31.8151312865185, 115.963759391374 -31.814589736748, 115.963558775012 -31.8145901102829, 115.96352616926 -31.8143931502596, 115.963526331826 -31.8141469707026))\n17357878\tSerpentine Downs\tCheck with carrier\tPOLYGON ((115.981357984 -32.374276991, 115.981336 -32.378594003, 115.983856 -32.378593004, 115.983848992 -32.3742860005, 115.981357984 -32.374276991))\nAYCA-1ABGJI\tJimboomba Woods\tReady for service\tPOLYGON ((153.046343 -27.8718669999843, 153.046361 -27.8713169999843, 153.046409 -27.8708929999843, 153.047031 -27.869132999983, 153.046554083675 -27.8686873115019, 153.046218296901 -27.8684327266404, 153.045404644257 -27.8682413235373, 153.04482107747 -27.8690758889709, 153.044919 -27.8693139999836, 153.044148 -27.8710709999837, 153.043041 -27.8710879999836, 153.043622 -27.8716819999843, 153.043981 -27.8720429999843, 153.044244 -27.8728909999843, 153.045988 -27.8730769999843, 153.047052 -27.8727439999843, 153.046848 -27.8721019999843, 153.046760697866 -27.8718954687418, 153.046488009669 -27.8719653318301, 153.046277743227 -27.8719859225319, 153.046343 -27.8718669999843))\n115\tThe Grove\tReady for service\tPOLYGON ((149.1008225536489 -35.175531914056855, 149.1011336898907 -35.17329562155183, 149.10179887772514 -35.173014984423219, 149.10246406555956 -35.173172842927386, 149.10243187905766 -35.173514868634989, 149.10525892735626 -35.174185761035616, 149.10474930764272 -35.176807888686788, 149.1008225536489 -35.175531914056855))\n338\tLincoln on the Bellarine\tUnder construction\tPOLYGON ((144.37139348266936 -38.227050444975667, 144.37250413997793 -38.229648060000684, 144.37243248997791 -38.229762790000692, 144.37243248997791 -38.229762790000692, 144.37228490780825 -38.229808804535608, 144.3721413730367 -38.229862194423575, 144.37200247730738 -38.229922739595281, 144.37186879314658 -38.22999019048757, 144.37174087160327 -38.230064269072024, 144.37161923997778 -38.230144670000719, 144.37103415997782 -38.230541240000676, 144.37086503097777 -38.230657134000708, 144.37078778097779 -38.230712600000707, 144.37071177097775 -38.23076912200073, 144.37063702197776 -38.230826681000693, 144.37015708997777 -38.231215210000713, 144.37006868997778 -38.231210460000696, 144.37002958997772 -38.231168630000731, 144.36982418997778 -38.231231110000707, 144.3697922599778 -38.231106160000735, 144.36962298997778 -38.230759940000681, 144.3695945099777 -38.230708582000673, 144.36955554697775 -38.230653286000717, 144.3695097539777 -38.23060134800069, 144.3694575939777 -38.230553292000721, 144.36939958997766 -38.2305096010007, 144.36933632697776 -38.230470715000727, 144.36926844297773 -38.230437026000693, 144.36919661997774 -38.230408873000705, 144.36912158197777 -38.2303865390007, 144.36899749997767 -38.230363540000688, 144.3687495349777 -38.230333748000724, 144.36943023997776 -38.226817160000692, 144.36965546686255 -38.226844036389792, 144.36965565046427 -38.226843085960446, 144.37139348266936 -38.227050444975667))\nAYCA-LF9PR\tGolden Bay\tReady for service\tPOLYGON ((115.755533304269 -32.4205231935049, 115.755685576633 -32.4214599849829, 115.758028102288 -32.4211630219989, 115.758011088173 -32.4210413646862, 115.759329004627 -32.4208794842957, 115.759293494565 -32.4206869540975, 115.759252022474 -32.4204979156857, 115.759099865522 -32.4196087647467, 115.759341633294 -32.4196084564714, 115.759405762388 -32.4196452087842, 115.759450299708 -32.4197387942045, 115.759667902285 -32.4196675045532, 115.759955137023 -32.419556530435, 115.759942677938 -32.4194887897225, 115.759907817034 -32.4192861534829, 115.759916232134 -32.4187296899629, 115.759850671551 -32.4184580332888, 115.759811202144 -32.4181398517063, 115.759506869739 -32.4181828887512, 115.758810327024 -32.4181808887771, 115.75880635161 -32.4183462961756, 115.758611099681 -32.4183482051619, 115.758618235603 -32.4181805817177, 115.757881132463 -32.4181790113071, 115.757699878877 -32.418049723472, 115.757350093483 -32.4180375627037, 115.757340726793 -32.4181695829965, 115.757012087603 -32.4181650054514, 115.75684727501 -32.4182151696667, 115.756502608545 -32.4182183212618, 115.756512286624 -32.4184521639309, 115.756479879717 -32.41867840072, 115.756040941214 -32.4195024501863, 115.755976407955 -32.4195874272468, 115.755775093931 -32.4199589749537, 115.755868149051 -32.4204815806849, 115.755533304269 -32.4205231935049))\n17320876\tWokarena Road\tCheck with carrier\tPOLYGON ((114.62454 -28.660908965, 114.624482048 -28.6608510045, 114.620392064 -28.660852984, 114.62031792 -28.6609059865, 114.620025952 -28.662121973, 114.619743008 -28.663304049, 114.624209152 -28.6633029575, 114.624376928 -28.6620900235, 114.62454 -28.660908965))\n17347341\tPeak Drive Estate Stage 1\tCheck with carrier\tPOLYGON ((145.33659504 -38.0048399955, 145.339054912 -38.0064999635, 145.339620832 -38.006001999, 145.339885088 -38.0059730095, 145.34060112 -38.005347968500004, 145.34060688 -38.0053430105, 145.340264896 -38.0052260165, 145.340058976 -38.0046719785, 145.339947008 -38.003678991, 145.33949808 -38.002713032, 145.33931808 -38.0025459955, 145.338222976 -38.002403971, 145.337954048 -38.0025520265, 145.337095072 -38.0024409525, 145.33659504 -38.0048399955))\n17289791\tEagle Bay Rise\tCheck with carrier\tPOLYGON ((147.674397248 -37.896200096, 147.674826368 -37.8962599435, 147.675158272 -37.896306212, 147.675279232 -37.896323121, 147.675615488 -37.8963700185, 147.67595136 -37.896416916, 147.676213088 -37.896453361, 147.676287616 -37.8964637025, 147.676623488 -37.8965106, 147.676959712 -37.8965574975, 147.677295584 -37.896604284, 147.678348256 -37.896751174, 147.67845408 -37.8967658445, 147.678454816 -37.896762237000004, 147.679014976 -37.894231529500004, 147.678912736 -37.894217136500004, 147.678380992 -37.894142341, 147.678123232 -37.8941059885, 147.67789392 -37.8940737615, 147.677664224 -37.894041368, 147.67764768 -37.8940390185, 147.677401088 -37.894004368000004, 147.677154848 -37.8939697175, 147.676908608 -37.8939349745, 147.676662368 -37.893900324, 147.676415776 -37.8938656735, 147.676309216 -37.8938506515, 147.676169536 -37.893830949, 147.67594272 -37.8937990735, 147.6756792 -37.893761907, 147.675452768 -37.89373005, 147.675206528 -37.893695399500004, 147.674962816 -37.893661119, 147.67487424 -37.894059091, 147.674812672 -37.894335925, 147.674754368 -37.8945963865, 147.674748608 -37.89462249, 147.6747 -37.894840383, 147.674638816 -37.8951154225, 147.674557088 -37.895481815000004, 147.674545184 -37.895535095, 147.67452576 -37.895622933, 147.674397248 -37.896200096))\n17382301\tLyn Parade\tCheck with carrier\tPOLYGON ((150.881592992 -33.936563992, 150.881304 -33.937063991500004, 150.882103008 -33.937190994, 150.882290016 -33.9372690085, 150.882162016 -33.937444999, 150.883419008 -33.937621008, 150.883240992 -33.9383120015, 150.882824992 -33.9382479915, 150.882696992 -33.9388970085, 150.882348992 -33.938847003, 150.882280992 -33.9391359915, 150.883963008 -33.939368999, 150.884142016 -33.9384319925, 150.884906016 -33.9385369985, 150.885067008 -33.9378610085, 150.888355008 -33.938326006000004, 150.888270016 -33.9387560015, 150.88816 -33.9388970085, 150.887980992 -33.938953008, 150.887794016 -33.939925997, 150.889026016 -33.9400880015, 150.889408992 -33.9383539965, 150.888559008 -33.938220001, 150.888618016 -33.9378610085, 150.889484992 -33.938001997, 150.889552992 -33.9376489985, 150.881592992 -33.936563992))\nAYCA-12UCDR\tJimboomba Woods\tReady for service\tPOLYGON ((153.046562722769 -27.8704580343858, 153.046409 -27.8708929999829, 153.046343 -27.871866999983, 153.046273293392 -27.8719716867665, 153.046275851815 -27.8719734395511, 153.046277239412 -27.8719881806665, 153.046310415825 -27.8719857143208, 153.046490187754 -27.8719690162492, 153.046757715938 -27.8718958836174, 153.046848062232 -27.8721017295378, 153.047051620182 -27.8727443310164, 153.048110311401 -27.8724429584112, 153.048289889048 -27.8719054441316, 153.049039440702 -27.8702860292242, 153.049313179112 -27.867815200117, 153.04925920007 -27.8675798753982, 153.049881546804 -27.8671113709321, 153.049906954059 -27.8670922537769, 153.04989619833 -27.867080964132, 153.049899227008 -27.8670765463058, 153.049665650738 -27.8668012660881, 153.048984015068 -27.8671070128471, 153.048393511085 -27.8674086543222, 153.048545990915 -27.8676121177831, 153.047772919108 -27.8680593497465, 153.047682945963 -27.8682543524077, 153.046554083679 -27.8686873115048, 153.047031 -27.869132999983, 153.046641605742 -27.8702348299856, 153.046562722769 -27.8704580343858))\nACSP\tSpringfield\tReady for service\tPOLYGON ((152.90936708450317 -27.687529725072931, 152.91000008583069 -27.687377719714519, 152.91167378425598 -27.685543173513114, 152.91173279285431 -27.685443418205736, 152.91173815727234 -27.684280564458696, 152.91260719299316 -27.684489577700074, 152.91298270225525 -27.685572639907175, 152.91337966918945 -27.687795733940973, 152.91332602500916 -27.6881567449396, 152.91305780410767 -27.688422752280061, 152.91287541389465 -27.688536755227588, 152.91109442710876 -27.689410773870723, 152.90936708450317 -27.687529725072931))\nAYCA-LIVVA\tIronbark Ridge\tReady for service\tPOLYGON ((150.896860220885 -32.2974524392657, 150.897377059112 -32.2983503677872, 150.899294673422 -32.2975687897232, 150.899297541365 -32.2975860054721, 150.899321026139 -32.2975858000821, 150.899577359052 -32.2977109044461, 150.899596167627 -32.2977049098993, 150.899600346888 -32.2977154238225, 150.900277389389 -32.2973443153328, 150.900395919294 -32.2970336289447, 150.899638479565 -32.2971594786625, 150.899535005149 -32.2971814171867, 150.899607020755 -32.2963730547168, 150.899513611197 -32.2961881706804, 150.899412741772 -32.2959056297066, 150.899238153235 -32.2956687596103, 150.899165895475 -32.2956090997912, 150.898960862207 -32.2954328001674, 150.898074059783 -32.2948582776951, 150.897839250299 -32.2947089742286, 150.897699449624 -32.2946195918812, 150.897644258047 -32.2945844464817, 150.897615192796 -32.2945658143624, 150.897560874666 -32.2945302875526, 150.897355570524 -32.2943962373981, 150.897230055801 -32.2943141069651, 150.897188542834 -32.2942847922169, 150.897110915014 -32.2942365515771, 150.897038249722 -32.2942005418057, 150.896674497524 -32.2940707130637, 150.896271338133 -32.2939268323543, 150.896185117691 -32.2938958162429, 150.896117270356 -32.2938694743806, 150.896113585447 -32.2938680562186, 150.895770285768 -32.2945186124962, 150.895275881123 -32.2950445797192, 150.896413080218 -32.2956841498758, 150.896596511558 -32.2964423768175, 150.896794073774 -32.2971845181393, 150.896860220885 -32.2974524392657))\n10351\tMillbridge\tReady for service\tPOLYGON ((115.72964385151863 -33.307908608381773, 115.72967603802681 -33.30790741752817, 115.72967670857906 -33.307873197992876, 115.72977662086487 -33.307870360958141, 115.73013670742512 -33.30787092136007, 115.7303174212575 -33.307872882766809, 115.73049277067184 -33.307873723369674, 115.73066376149654 -33.307872042163929, 115.73119282722473 -33.307837857639882, 115.73135711252689 -33.307826089194094, 115.73151737451553 -33.307815441551277, 115.73151536285877 -33.307807035516554, 115.73174301534891 -33.307791064048381, 115.73195926845074 -33.307775652979807, 115.73211818933487 -33.307760522109831, 115.73234081268311 -33.308107971054547, 115.73214769363403 -33.308137111870863, 115.73249101638794 -33.308578706126, 115.73274850845337 -33.309340843234629, 115.73283970355988 -33.309910200139164, 115.73283433914185 -33.310206084936425, 115.73278337717056 -33.31030471297904, 115.73308378458023 -33.310856131343584, 115.73313072323799 -33.311051144320665, 115.73313474655151 -33.311246156861571, 115.73311597108841 -33.311259605986244, 115.73303282260895 -33.31128202118942, 115.73274582624435 -33.31128202118942, 115.73243468999863 -33.311279779669363, 115.73247157037258 -33.311822786219579, 115.73223050683737 -33.311825868290448, 115.73209522292018 -33.311825167819805, 115.7320939656347 -33.311830421349491, 115.73202561121434 -33.311826323596364, 115.73197938501835 -33.311826708855214, 115.73180437088013 -33.31182895036121, 115.73180839419365 -33.3114053047039, 115.73181174695492 -33.311188998058562, 115.73181409388781 -33.311031530966261, 115.73175139725208 -33.310978294696348, 115.73130581527948 -33.310973251258567, 115.73086425662041 -33.310969328584541, 115.73024801909924 -33.31096316438213, 115.73010351508856 -33.310948314256358, 115.72993671521544 -33.310899420899872, 115.72980679571629 -33.310823068755376, 115.72974191978574 -33.31076661015414, 115.72969045490026 -33.31071239305107, 115.72962641716003 -33.310612364508835, 115.72956673800945 -33.31054932125101, 115.72945307940245 -33.310419732188961, 115.72946280241013 -33.310234104278059, 115.72948157787323 -33.310080558175358, 115.72952449321747 -33.309683802760169, 115.72952449321747 -33.309188416345826, 115.72951376438141 -33.308798381622992, 115.72951912879944 -33.308547323866968, 115.72953321039677 -33.308205480670885, 115.72953186929226 -33.308123312014345, 115.72957411408424 -33.308124432814957, 115.72964318096638 -33.308125553615554, 115.72964552789927 -33.308008955251381, 115.72964519262314 -33.307909729185134, 115.72964385151863 -33.307908608381773))\n10328\tDudley Park-Mariner\u0027s Cove\tReady for service\tPOLYGON ((115.73004484176636 -32.549830180521958, 115.72999656200409 -32.550160271010569, 115.7301253080368 -32.5501919234594, 115.73013067245483 -32.550635056571032, 115.73014140129089 -32.550767989012677, 115.73018968105316 -32.550788336879016, 115.73019504547119 -32.550894597883833, 115.73016822338104 -32.550923989203376, 115.73014006018639 -32.550926020454064, 115.73014944791794 -32.551048107367961, 115.73013603687286 -32.551078629070481, 115.73011860251427 -32.551086542102773, 115.7300890982151 -32.551091063835194, 115.73009848594666 -32.551201846208478, 115.7300890982151 -32.5512628894986, 115.73004752397537 -32.551276454668539, 115.72995364665985 -32.551283237252747, 115.7299616932869 -32.551667812471244, 115.72997510433197 -32.552000157045391, 115.72995632886887 -32.552015753329947, 115.72993218898773 -32.552022535858278, 115.72992816567421 -32.5521898380617, 115.72992078959942 -32.552199331816524, 115.72989866137505 -32.552215722892285, 115.72988994419575 -32.552239461686334, 115.72989664971828 -32.552375677026063, 115.72993487119675 -32.55280953528225, 115.7299992442131 -32.553551082120279, 115.72997510433197 -32.5535960685799, 115.72994962334633 -32.553605111791676, 115.72940111160278 -32.553639253440409, 115.7293313741684 -32.553582733373368, 115.72872519493103 -32.553537976520019, 115.72762012481689 -32.55351536847197, 115.72760671377182 -32.553540678887884, 115.72757318615913 -32.553559895723687, 115.72738274931908 -32.553554243713585, 115.72724729776382 -32.553530505267268, 115.7272070646286 -32.553513549230352, 115.72720035910606 -32.553486419564621, 115.72720974683762 -32.553193874347272, 115.72722584009171 -32.553055964636791, 115.72723120450974 -32.552701015718874, 115.72724729776382 -32.552427455403944, 115.72724997997284 -32.552058938950829, 115.72726339101791 -32.55195267932443, 115.72709172964096 -32.55195041847994, 115.72703003883362 -32.551559291527468, 115.72703003883362 -32.551292510316266, 115.727099776268 -32.550905902238632, 115.72725266218185 -32.550912684850857, 115.72724729776382 -32.550817728233362, 115.72724461555481 -32.550505727211487, 115.72723388671875 -32.550173377104, 115.7271882891655 -32.5501304201976, 115.72719633579254 -32.549843286663595, 115.72738945484161 -32.54988398281089, 115.72767645120621 -32.549886243707427, 115.72781324386597 -32.549868156533577, 115.72798490524292 -32.549868156533577, 115.72817534208298 -32.549877200120967, 115.72837918996811 -32.549870417430519, 115.72913020849228 -32.549863634739559, 115.72948426008224 -32.549863634739559, 115.72985172271729 -32.549838764868305, 115.73004484176636 -32.549830180521958))\n10731\tEpping Park\tReady for service\tPOLYGON ((151.07181787490845 -33.782216765389535, 151.06724739074707 -33.784026967934878, 151.06612086296082 -33.78212759186151, 151.07036948204041 -33.780415442118858, 151.07181787490845 -33.782216765389535))\nAYCA-FWOIG\t1440 Frankston-Flinders Road, Tyabb\tReady for service\tPOLYGON ((145.190052381605 -38.2535102671778, 145.181984759997 -38.2535198100275, 145.182988998607 -38.2549176000568, 145.189785975265 -38.2549156200179, 145.190052381605 -38.2535102671778))\n10612\tSecret Harbour-Anstey Park\tReady for service\tPOLYGON ((115.76897978782654 -32.402189320789844, 115.76959200203419 -32.402181394657788, 115.76997857540846 -32.402176423132623, 115.77040923759341 -32.402169408150989, 115.77065281569958 -32.4021652239309, 115.77072758227587 -32.402164940854689, 115.77081634663045 -32.402165153161846, 115.770816472359 -32.402160163943549, 115.77090638922527 -32.402158235486745, 115.77090511098504 -32.402166497773827, 115.77100125141442 -32.402162747014046, 115.77104575932026 -32.402156731644276, 115.77114634215832 -32.402381493894325, 115.77129721641541 -32.402337334100963, 115.7712509483099 -32.402235992955013, 115.77184706926346 -32.402042368773273, 115.7722232490778 -32.402892160704781, 115.77253371477127 -32.40359531360339, 115.77281601727009 -32.40474394057982, 115.77304400503635 -32.40516351732726, 115.77210925519466 -32.4051612527928, 115.7706343755126 -32.405161535859605, 115.76971253380179 -32.405161677392975, 115.76906360685825 -32.405160686659165, 115.7690267264843 -32.40452749935821, 115.76899353414774 -32.402856342999719, 115.76898045837879 -32.402189320789844, 115.76897978782654 -32.402189320789844))\n10658\tTapping The Kestrels\tReady for service\tPOLYGON ((115.78534126281738 -31.721625828114394, 115.78589916229248 -31.721507188941835, 115.78589916229248 -31.72141592793653, 115.78628540039062 -31.721352045179373, 115.78625321388245 -31.72121515340859, 115.78670382499695 -31.721224279532937, 115.78672528266907 -31.721123892115781, 115.78750848770142 -31.721133018249095, 115.78920364379883 -31.721105639846424, 115.7894504070282 -31.721324666841383, 115.78965425491333 -31.721671458524948, 115.78982591629028 -31.721799223554996, 115.79001903533936 -31.722082131209078, 115.78985810279846 -31.722191643617542, 115.78983664512634 -31.72242892005869, 115.78963279724121 -31.722419794052939, 115.78965425491333 -31.722784833581489, 115.78956842422485 -31.722821337455283, 115.78963279724121 -31.723852565949837, 115.78625321388245 -31.723852565949837, 115.78534126281738 -31.721625828114394))\n17349312\tMOUNTAIN VIEW ESTATE\tCheck with carrier\tPOLYGON ((150.621471712 -33.912672574, 150.620083936 -33.9124691665, 150.61875984 -33.912283852, 150.617723776 -33.912133299000004, 150.617719456 -33.9121325775, 150.617409472 -33.912087308000004, 150.616733056 -33.911983079, 150.616018432 -33.9118726525, 150.61529232 -33.911766185, 150.614661248 -33.911673574, 150.614648288 -33.9117361225, 150.614548576 -33.912219324, 150.614449216 -33.912701101, 150.61435488 -33.913156497, 150.621182656 -33.914141363, 150.621471712 -33.912672574))\n17356160\tWoodridge Estate Stage 1B\tCheck with carrier\tPOLYGON ((150.548339168 -34.837832969000004, 150.54759216 -34.8383739645, 150.548081056 -34.8388309885, 150.547674976 -34.839102957, 150.547538176 -34.8391169985, 150.54752016 -34.839181989000004, 150.547397056 -34.8392539725, 150.547374016 -34.839356037, 150.546740032 -34.839548992000005, 150.54729984 -34.8400809965, 150.548159872 -34.8405249595, 150.548195872 -34.8403059935, 150.54821712 -34.840215991, 150.548192992 -34.8401060085, 150.548227936 -34.839977045, 150.548288032 -34.839869042000004, 150.548511968 -34.8397540275, 150.54881184 -34.839746017, 150.54897312 -34.839869042000004, 150.549095168 -34.840042017, 150.549098048 -34.8402169715, 150.54928416 -34.8404400075, 150.549392896 -34.840577962000005, 150.549671872 -34.8406839855, 150.549900128 -34.840689036, 150.550129088 -34.8406240455, 150.550332128 -34.840593983, 150.550530112 -34.8404689785, 150.551300896 -34.840791008000004, 150.551255168 -34.840839959, 150.551597888 -34.8409819835, 150.552114112 -34.8386799545, 150.549687008 -34.8376280445, 150.54957792 -34.838370986, 150.548339168 -34.837832969000004))\nAYAA-GDLZ8\tHarrington Grove\tReady for service\tPOLYGON ((150.7532483145 -34.0194031212073, 150.753092785742 -34.0192292333846, 150.753129528268 -34.0192312426531, 150.752751394729 -34.0191839831188, 150.751580306332 -34.0190469710432, 150.750505945275 -34.0189289877692, 150.749494810919 -34.0187986360661, 150.749473224744 -34.0189939707445, 150.749404057727 -34.0196198599067, 150.749462601962 -34.0199988255293, 150.749647802845 -34.0204244212552, 150.749785020324 -34.0206787485271, 150.75019955941 -34.0213153634332, 150.750307635258 -34.0214522244205, 150.750407081345 -34.0215446251154, 150.751112509168 -34.0220572088755, 150.751627252311 -34.0224068514111, 150.751833061248 -34.0225065765463, 150.752069240877 -34.0225027847628, 150.752113714676 -34.022472029001, 150.752646044893 -34.0219638772147, 150.752754180422 -34.0219478312322, 150.752938429301 -34.0218462288032, 150.752946520084 -34.021780350506, 150.753108336197 -34.0217940578762, 150.753143042872 -34.0217436053288, 150.753369749872 -34.0212485511137, 150.753374424394 -34.0211904491216, 150.753324763709 -34.0210811366684, 150.75328206428 -34.0210530740651, 150.753135307648 -34.0210208546529, 150.753090766342 -34.021007990691, 150.753093097992 -34.0208955428726, 150.753007557287 -34.0208107486905, 150.753027771507 -34.0206264378897, 150.753115084355 -34.0206350654735, 150.753127289725 -34.0205665474895, 150.753184398217 -34.020569513023, 150.753193403129 -34.0204908408664, 150.753045099658 -34.0204711154488, 150.7532483145 -34.0194031212073))\nAYCA-1CRLYV\tMoncrieff Residential Estate\tUnder construction\tPOLYGON ((149.107155000007 -35.154803000021, 149.107539000007 -35.155665000021, 149.107856000007 -35.1563760000209, 149.108036000007 -35.156782000021, 149.108355000007 -35.156686000021, 149.108324000007 -35.156604000021, 149.108529000007 -35.156542000021, 149.108575000007 -35.156647000021, 149.108638000007 -35.156693000021, 149.108766000007 -35.156674000021, 149.108923000007 -35.156858000021, 149.109022000007 -35.156800000021, 149.109468000007 -35.157206000021, 149.109323000007 -35.157463000021, 149.110502000007 -35.157912000021, 149.110752000007 -35.158008000021, 149.110891000007 -35.157741000021, 149.111305000022 -35.1568910000117, 149.111524000015 -35.1563730000163, 149.111717333818 -35.1558577655407, 149.111252000007 -35.155513000021, 149.110329000007 -35.154981000021, 149.110253000007 -35.1550560000209, 149.110174000007 -35.155067000021, 149.109828000007 -35.154860000021, 149.109673000007 -35.154697000021, 149.109613000007 -35.1545830000209, 149.109351000007 -35.153939000021, 149.109054000007 -35.154022000021, 149.109013000007 -35.153954000021, 149.108957000007 -35.1539080000209, 149.108836000007 -35.153841000021, 149.108214000007 -35.154100000021, 149.107813000007 -35.154327000021, 149.107155000007 -35.154803000021))\nAYCA-WHTZS\tFarragher subdivision\tReady for service\tPOLYGON ((151.6233730003 -32.765554999864, 151.623466999999 -32.7656050000162, 151.624907999999 -32.7663710000161, 151.624910999999 -32.7663720000161, 151.624921999999 -32.7663770000162, 151.625349999999 -32.7665650000161, 151.625547999999 -32.7666530000162, 151.626041999999 -32.7668700000162, 151.627752999999 -32.7637780000162, 151.627112999999 -32.7635110000162, 151.627071999999 -32.7634940000161, 151.627028999999 -32.7634760000162, 151.626984999999 -32.7634600000161, 151.626184999999 -32.7632410000161, 151.626131999999 -32.7632280000162, 151.626079999999 -32.7632170000161, 151.626027999999 -32.7632080000162, 151.625974999999 -32.7632000000161, 151.625921999999 -32.7631950000161, 151.625866999999 -32.7631910000161, 151.624961999999 -32.7631510000162, 151.624864999999 -32.7631470000161, 151.624828999999 -32.7631450000161, 151.624788999999 -32.7631420000161, 151.624763999999 -32.7631370000162, 151.624709999999 -32.7631230000162, 151.624674999999 -32.7630670000161, 151.624442999999 -32.7629980000162, 151.623847570036 -32.7644209308851, 151.623583345527 -32.7650526801596, 151.6233730003 -32.765554999864))\nAYCA-10KKU8\tThe Gateway\tReady for service\tPOLYGON ((150.786361112653 -34.1901310500305, 150.78628199999 -34.190252000017, 150.78619699999 -34.1903760000169, 150.78601599999 -34.1906230000169, 150.78592799999 -34.1907360000169, 150.78583999999 -34.1908480000169, 150.78574499999 -34.1909570000169, 150.78564199999 -34.1910740000169, 150.78554499999 -34.1911820000169, 150.78542999999 -34.1913040000169, 150.78531099999 -34.191424000017, 150.78516299999 -34.1915670000169, 150.78505199999 -34.1916700000169, 150.78490599999 -34.1917970000168, 150.784734878078 -34.1919559663619, 150.784985743051 -34.1921141586927, 150.784810934868 -34.1925065700012, 150.785943158369 -34.1926719526181, 150.786263053143 -34.1927184752146, 150.786424014891 -34.1927417942344, 150.786637023671 -34.1927727025635, 150.786836045802 -34.1927994827459, 150.78704999999 -34.192828000017, 150.787264069071 -34.1928564624794, 150.787694019862 -34.1929138417228, 150.787908282948 -34.1929409086907, 150.788124911298 -34.1929691650549, 150.788342167633 -34.1929966572924, 150.788566799981 -34.1930264400107, 150.789188041616 -34.1931065828895, 150.789705101281 -34.1931730394511, 150.789879258958 -34.193195797742, 150.790116930992 -34.1919556770345, 150.790174437291 -34.1916557990799, 150.788766999991 -34.191483000017, 150.78878199999 -34.191413000017, 150.78865699999 -34.191396000017, 150.788696999991 -34.191176000017, 150.789065999991 -34.1912240000169, 150.78909299999 -34.191088000017, 150.78914599999 -34.190801000017, 150.788374990481 -34.1906966394142, 150.78838104339 -34.1906668721417, 150.78754953723 -34.1905557201037, 150.787174812538 -34.1904474235976, 150.787199049344 -34.1903895976563, 150.786826441928 -34.1902817056308, 150.786798198038 -34.190325694194, 150.786361112653 -34.1901310500305))\nAYCA-DXRRI\tMiddleton Grange\tReady for service\tPOLYGON ((150.837332954119 -33.9132582515769, 150.836773204192 -33.9159658930164, 150.840228853377 -33.9164556232338, 150.840589626877 -33.9146927533392, 150.840441489028 -33.9144945811888, 150.840582277208 -33.9143246561057, 150.840723248155 -33.9136264914087, 150.841618919867 -33.9137505579435, 150.841653621314 -33.9136017129614, 150.838141759281 -33.9131000811425, 150.838122319134 -33.9132108494306, 150.83736520922 -33.9130994879333, 150.837332954119 -33.9132582515769), (150.839636226717 -33.9148563493757, 150.840258403678 -33.9145697445072, 150.84037698963 -33.914757030031, 150.839853003865 -33.9149951397709, 150.839615015105 -33.9149599141975, 150.839636226717 -33.9148563493757), (150.840006288988 -33.9151240703677, 150.839917658521 -33.9155783883302, 150.839562808521 -33.9155304564976, 150.839661865651 -33.9150773662999, 150.840006288988 -33.9151240703677))\n17327379\tTwin Creeks Golf Couse Estate\tCheck with carrier\tPOLYGON ((150.757997056 -33.845982479, 150.757867072 -33.8458295765, 150.757699328 -33.845715986500004, 150.757543808 -33.845610518, 150.757460992 -33.845554537, 150.757423936 -33.845436174, 150.757409152 -33.845390368000004, 150.75732816 -33.845133329, 150.7572936 -33.845070503, 150.756266528 -33.8456768405, 150.756129376 -33.8453155725, 150.756043328 -33.8450903165, 150.755979616 -33.844922096, 150.75583776 -33.844549413500005, 150.75547488 -33.844498649500004, 150.755636896 -33.8437362645, 150.755530336 -33.8437221305, 150.75514944 -33.845622395, 150.755121728 -33.8457623475, 150.755009408 -33.8463230455, 150.75496368 -33.846550207, 150.754928416 -33.8467230895, 150.75484704 -33.847122967000004, 150.754818976 -33.847261291500004, 150.754765696 -33.847522918500005, 150.754683232 -33.8479260335, 150.754599008 -33.848339046, 150.754513696 -33.848758626, 150.754498208 -33.8488351235, 150.75443088 -33.8491641645, 150.75435024 -33.849560527, 150.754268512 -33.849962014, 150.7541688 -33.850449711, 150.75514368 -33.8503914915, 150.755285536 -33.850383037, 150.75542592 -33.8503746565, 150.755424128 -33.850365832, 150.755422688 -33.8503569335, 150.755420896 -33.8503480165, 150.755420896 -33.850347128500005, 150.755419456 -33.850339118, 150.755418016 -33.850330201, 150.755416576 -33.8503211915, 150.755415136 -33.850312293, 150.755414048 -33.850303376, 150.75541296 -33.850294385, 150.755411872 -33.850285468, 150.755410816 -33.850276477, 150.75541008 -33.850267467500004, 150.755409376 -33.850258569000005, 150.75540864 -33.8502495595, 150.755407936 -33.8502405685, 150.7554072 -33.850231559, 150.755406848 -33.850222568, 150.755406496 -33.8502135585, 150.755406112 -33.8502045675, 150.755406112 -33.850195558, 150.75540576 -33.850186567, 150.75540576 -33.850177557500004, 150.75540576 -33.8501685665, 150.755406112 -33.850159557, 150.755406112 -33.850150566, 150.755406496 -33.8501415565, 150.755406848 -33.850132565500004, 150.7554072 -33.850123556, 150.755407936 -33.850114565, 150.755408288 -33.8501055555, 150.755408992 -33.8500965645, 150.755409728 -33.850087647500004, 150.755410816 -33.8500786565, 150.755411872 -33.850069647, 150.755412608 -33.8500607485, 150.755414048 -33.850051739, 150.755415136 -33.850042822, 150.755416576 -33.850033831000005, 150.755417632 -33.850024914, 150.755419072 -33.8500160155, 150.755420896 -33.8500070985, 150.755422336 -33.8499981815, 150.755424128 -33.849989283, 150.75542592 -33.8499804585, 150.755635072 -33.848964993500005, 150.756520672 -33.848973263, 150.756524288 -33.8488663515, 150.756538688 -33.8485129275, 150.756549856 -33.848235631, 150.756662176 -33.848021697, 150.7567824 -33.8477930925, 150.756905152 -33.847571333, 150.756954112 -33.847483236, 150.756816608 -33.847121968, 150.756679072 -33.8467607185, 150.757287488 -33.8464015225, 150.757997056 -33.845982479))\n10705\tWannanup-Port Bouvard East\tReady for service\tPOLYGON ((115.65199792385101 -32.602154244759411, 115.65223395824432 -32.601871796929323, 115.65045833587646 -32.600808902457786, 115.64985752105713 -32.600736594812226, 115.64851641654968 -32.601408580560175, 115.64897239208221 -32.602019128889793, 115.64857006072998 -32.602327349533134, 115.6485915184021 -32.602679842494766, 115.65163850784302 -32.604614009956684, 115.65199255943298 -32.604424210324808, 115.65291523933411 -32.603149830952674, 115.65304398536682 -32.6028244545906, 115.65199792385101 -32.602154244759411))\n10235\tDalyellup\tReady for service\tPOLYGON ((115.62134027481079 -33.39171543951737, 115.62159776687622 -33.391258590530363, 115.62183380126953 -33.390721118059787, 115.62223076820374 -33.390819654928173, 115.62284231185913 -33.3910346440715, 115.62256336212158 -33.391482536412255, 115.62270283699036 -33.391554198972607, 115.62229514122009 -33.392136455085229, 115.62193036079407 -33.392647045697224, 115.62180697917938 -33.393022358676539, 115.62176406383514 -33.393376185725607, 115.62178015708923 -33.393967387201116, 115.62178015708923 -33.3945361908855, 115.62172651290894 -33.394527233376017, 115.6216835975647 -33.395091554670692, 115.62178015708923 -33.395091554670692, 115.62175333499908 -33.395248309935596, 115.62167823314667 -33.395458809417981, 115.62160849571228 -33.39563347881419, 115.62150120735168 -33.396193314256791, 115.62147974967957 -33.396314238238773, 115.62149584293365 -33.396793453846072, 115.62178552150726 -33.397756355721768, 115.62194108963013 -33.397729484186243, 115.62204837799072 -33.398047463490791, 115.62149047851562 -33.398190777726548, 115.62108278274536 -33.398208691989396, 115.62078237533569 -33.39820421342403, 115.62039613723755 -33.398123599207963, 115.62015473842621 -33.398078813500057, 115.62010109424591 -33.3982400419405, 115.62000453472137 -33.398419184301268, 115.61992943286896 -33.398531148089212, 115.61980605125427 -33.398544583734072, 115.61955392360687 -33.398432619963437, 115.61968266963959 -33.398226606248549, 115.61976850032806 -33.398105684927572, 115.61982750892639 -33.397917584760478, 115.6198650598526 -33.397738441365675, 115.61987578868866 -33.397563776200165, 115.61973094940186 -33.396466512643414, 115.61975240707397 -33.396332152888462, 115.61982214450836 -33.395960423150733, 115.62003135681152 -33.395691701868252, 115.62018692493439 -33.39553046869991, 115.62032639980316 -33.3951497780878, 115.62039077281952 -33.394957192790024, 115.62045514583588 -33.394813873221693, 115.62066435813904 -33.394276422735572, 115.62029421329498 -33.394191326103829, 115.62051951885223 -33.393577732134951, 115.62100231647491 -33.393582210938753, 115.62100231647491 -33.393049231667518, 115.62102913856506 -33.392811853293082, 115.6211793422699 -33.392426671909824, 115.62123835086823 -33.3922564749409, 115.62130272388458 -33.392144503069076, 115.62141537666321 -33.392077319876748, 115.62147438526154 -33.391965347774125, 115.62145292758942 -33.391893685552752, 115.62127590179443 -33.391839938847944, 115.62134027481079 -33.39171543951737))\n17313925\tSanctuary on Moggill\tCheck with carrier\tPOLYGON ((152.880090112 -27.5747120085, 152.877075136 -27.5742129525, 152.876409856 -27.574612016, 152.87604192 -27.5747540405, 152.877490912 -27.5773179555, 152.879303872 -27.5784560015, 152.880090112 -27.5747120085))\n10573\tSecret Harbour\tReady for service\tPOLYGON ((115.75586915016174 -32.39568219217621, 115.75425982475281 -32.396751158362243, 115.75473189353943 -32.397466815092514, 115.75516104698181 -32.397557404147591, 115.75595498085022 -32.397530227440612, 115.75655579566956 -32.397059163219915, 115.75778961181641 -32.397077281119991, 115.75821876525879 -32.397484932910793, 115.75814366340637 -32.398553877754949, 115.75793981552124 -32.398898111536262, 115.758798122406 -32.399178932859492, 115.75945258140564 -32.399124580413485, 115.75945258140564 -32.395510069319322, 115.75586915016174 -32.39568219217621))\n17244744\tPremier Gardens Estate\tCheck with carrier\tMULTIPOLYGON (((146.076099136 -34.291925016, 146.07152496 -34.294128033, 146.073170176 -34.2950830215, 146.073107168 -34.295157003, 146.07412704 -34.2957490215, 146.07582912 -34.294637967, 146.076099136 -34.291925016)), ((146.076527872 -34.2963140485, 146.074939936 -34.295390991, 146.074267072 -34.2958310135, 146.07605808 -34.296870954, 146.076090112 -34.2968339725, 146.076527872 -34.2963140485)))\n10171\tBurns Beach\tReady for service\tPOLYGON ((115.71629583835602 -31.724599957029927, 115.71662843227386 -31.724942173580182, 115.71707367897034 -31.725489717432271, 115.71718096733093 -31.72552622024072, 115.71731507778168 -31.725466903169679, 115.71744382381439 -31.725421274627678, 115.71759402751923 -31.72541671177224, 115.71783542633057 -31.725434963192622, 115.7178407907486 -31.725302640313284, 115.71818947792053 -31.72510187420453, 115.71833968162537 -31.725343706054687, 115.71837723255157 -31.72541671177224, 115.71853280067444 -31.725471466022647, 115.71872055530548 -31.725421274627678, 115.71923553943634 -31.725311766035176, 115.71925699710846 -31.725471466022647, 115.71967005729675 -31.725393897491681, 115.71963250637054 -31.725238760234959, 115.72007238864899 -31.725156628640963, 115.72010457515717 -31.725325454616307, 115.72044253349304 -31.725252448826865, 115.72039425373077 -31.725074496974187, 115.72087705135345 -31.724992365234638, 115.72092533111572 -31.725161191509208, 115.7214081287384 -31.72506993410169, 115.72137057781219 -31.72491479630267, 115.72155833244324 -31.724882856135338, 115.72148859500885 -31.724604519925578, 115.72147250175476 -31.72453607646726, 115.72139739990234 -31.724271427952875, 115.72132766246796 -31.724180169669236, 115.7210111618042 -31.723659995736742, 115.72078049182892 -31.723263018929391, 115.72087705135345 -31.723212826338415, 115.72015285491943 -31.722268287967076, 115.71986317634583 -31.722437119203697, 115.71981489658356 -31.722373237150318, 115.7196432352066 -31.722473623214416, 115.71842551231384 -31.723176322618812, 115.71826994419098 -31.723272144852103, 115.71840941905975 -31.723422722447125, 115.71837186813354 -31.723454663117629, 115.71708977222443 -31.724212110078732, 115.71702003479004 -31.724180169669236, 115.71700930595398 -31.724148229248733, 115.71689128875732 -31.724225798822289, 115.71699321269989 -31.724371811961074, 115.71669280529022 -31.72454063936604, 115.71658551692963 -31.724440255540696, 115.71629583835602 -31.724599957029927))\nAYCA-DVQ33\tParkland Heights\tReady for service\tPOLYGON ((115.798355647355 -32.3549928434823, 115.798451991763 -32.3553699352017, 115.79849 -32.3556690000139, 115.798491778559 -32.3579576581, 115.798795911317 -32.3579611260389, 115.798795237267 -32.3580121070452, 115.799401478074 -32.3580170018895, 115.7994004765 -32.3580959213709, 115.800667312409 -32.3581085221385, 115.800693690148 -32.3568290786532, 115.800860050825 -32.3568293534333, 115.801299100813 -32.3568320850638, 115.801309100211 -32.3566405130569, 115.801331881481 -32.355721979468, 115.803241125026 -32.3557328356629, 115.803241071715 -32.3557024722184, 115.803455441111 -32.3557036972506, 115.803457201199 -32.3554977165717, 115.80347957934 -32.3554615770789, 115.803569475552 -32.3554325394295, 115.803437844321 -32.3552484063506, 115.803434290397 -32.354982824985, 115.798355647355 -32.3549928434823))\nAYCA-1EL358\tEden Park Estate\tReady for service\tPOLYGON ((146.647843999839 -19.2331609988561, 146.647292999837 -19.2372459988554, 146.647401999837 -19.2376239988554, 146.647540999837 -19.2374459988556, 146.649135999837 -19.2373989988574, 146.649304999837 -19.2377669988575, 146.649885999837 -19.2378519988581, 146.649841999836 -19.2384279988581, 146.650174999836 -19.2384969988585, 146.650285999837 -19.2374519988587, 146.650230999837 -19.2372309988586, 146.649948843635 -19.2371151599172, 146.649810239837 -19.2369634188572, 146.649556800498 -19.236042180794, 146.649802441917 -19.2337616221085, 146.649119999839 -19.2336789988575, 146.649152999839 -19.2334309988575, 146.649054999839 -19.2333079988574, 146.647843999839 -19.2331609988561))\nAYAA-GVMB7\tArise\tReady for service\tPOLYGON ((153.115738596112 -27.5736358170092, 153.11523024 -27.5763293999812, 153.116633917818 -27.5765641202416, 153.116648002924 -27.5765665546249, 153.11663928 -27.5766129899812, 153.119916823727 -27.5771672175432, 153.119971764003 -27.576876214461, 153.120082435228 -27.5767465279428, 153.120164158364 -27.5763205126533, 153.119626616226 -27.5760813401441, 153.119519578763 -27.5760502726541, 153.118594472322 -27.5759124280471, 153.118681964522 -27.5754236773469, 153.118618309805 -27.5751355406054, 153.118753167609 -27.5743754918204, 153.117222455093 -27.574147345067, 153.117239377614 -27.5740571906616, 153.116779735782 -27.573988679351, 153.116815423661 -27.5737985565908, 153.115738596112 -27.5736358170092), (153.116713508362 -27.576060363591, 153.11682657265 -27.5760763348502, 153.116794699362 -27.5762408975662, 153.11668308164 -27.5762186711988, 153.116713508362 -27.576060363591), (153.116587715015 -27.5765500765817, 153.116359429893 -27.5765146321417, 153.116401420366 -27.5762875414317, 153.116481914437 -27.5763005142836, 153.116621004425 -27.5763366805525, 153.116587715015 -27.5765500765817), (153.116533700679 -27.5754951435665, 153.116607909647 -27.5751473618443, 153.117806874605 -27.5753408605024, 153.11774350159 -27.5756729384442, 153.116533700679 -27.5754951435665))\nAYAA-ESS68\tTalana\tReady for service\tPOLYGON ((150.844216592569 -33.9517943675023, 150.844228126837 -33.9519068258114, 150.844142191117 -33.9525375676691, 150.844183328754 -33.9527140492275, 150.843989580323 -33.953839356685, 150.843932366363 -33.9542447253249, 150.843898923095 -33.9544652644049, 150.843901212382 -33.9547866922792, 150.843964999992 -33.9547610000165, 150.844167999992 -33.9547450000165, 150.844271711301 -33.9547551699583, 150.844293131982 -33.9550903336832, 150.84450124326 -33.9550665386662, 150.844614844453 -33.9552427156473, 150.844782240192 -33.9552316798737, 150.84531822188 -33.955323156489, 150.845688805113 -33.9553864027706, 150.845990718037 -33.9554190935347, 150.846115746382 -33.9554212822979, 150.846271000098 -33.9554240000138, 150.846548000006 -33.9553130000027, 150.846681000004 -33.9551839999918, 150.847147000035 -33.9542189997499, 150.847467410064 -33.9525177236257, 150.845290999984 -33.9524230000109, 150.845241142482 -33.9523778722476, 150.84535644 -33.9516443700215, 150.84539712 -33.9513860700215, 150.845592449993 -33.95119334094, 150.8454512576 -33.951162637154, 150.845363948157 -33.9512438804114, 150.845231899992 -33.9514491400165, 150.845202999992 -33.9515641400166, 150.845149399992 -33.9518864800165, 150.845114322193 -33.9521300745628, 150.844872999992 -33.9520980000165, 150.844645999992 -33.9520340000165, 150.844550999992 -33.9519600000166, 150.844401999992 -33.9518960000166, 150.844216592569 -33.9517943675023))\nAYCA-19M72I\tLot 9000 Baile Road Canning Vale\tContracted\tPOLYGON ((115.913695 -32.0656820000128, 115.912922 -32.0658160000129, 115.913144712481 -32.066741547773, 115.913650023291 -32.0666490931937, 115.914471479994 -32.0664987900135, 115.915387690761 -32.0662810073945, 115.915534213935 -32.0662092676814, 115.916252399977 -32.0658576300229, 115.917005879995 -32.0653359000158, 115.9171434 -32.0652208800119, 115.916474879999 -32.064644970012, 115.91424 -32.0627200500118, 115.91351 -32.0628460000129, 115.913198 -32.0629000000128, 115.912322 -32.0630520000129, 115.912197 -32.0629810000128, 115.911989 -32.0630170000128, 115.911907 -32.0631240000129, 115.91133 -32.0632240000124, 115.911372 -32.0634000000129, 115.91324 -32.0630770000128, 115.913365 -32.0631470000128, 115.91396 -32.0656360000128, 115.913695 -32.0656820000128))\n17327746\tBindea Estate\tCheck with carrier\tPOLYGON ((150.264839168 -30.993058980500003, 150.263547136 -30.992867006, 150.26282496 -30.992760002, 150.262804096 -30.9928629545, 150.26225184 -30.995632978, 150.261932896 -30.9972349855, 150.263957888 -30.9975319845, 150.264839168 -30.993058980500003))\nAYCA-DF9C9\tBungarribee (Bunya)\tReady for service\tPOLYGON ((150.871540932996 -33.7782366150764, 150.871848227012 -33.7783437992281, 150.872013383806 -33.7779547769863, 150.871845673635 -33.7777057984735, 150.871641121767 -33.7774975033237, 150.871253017715 -33.7772553165078, 150.870872026244 -33.7771247333353, 150.870128780703 -33.7769941382103, 150.86956627718 -33.7768623413401, 150.869674985752 -33.7766656131578, 150.86897444724 -33.7765921348688, 150.868966200884 -33.7762178670691, 150.868807908742 -33.7761926862653, 150.868802610994 -33.7764173095824, 150.868765528614 -33.776478422721, 150.868683975599 -33.7764901504463, 150.866614681665 -33.7759607867223, 150.86651985762 -33.7759579509831, 150.866435952982 -33.7759950902314, 150.866385494039 -33.7760623257549, 150.866228906763 -33.7764881067847, 150.866199218036 -33.7766471672172, 150.866255459104 -33.7768979223986, 150.866375520384 -33.7769766136498, 150.8666544861 -33.7769848900638, 150.866737251255 -33.7770347989569, 150.86749723397 -33.7787442140341, 150.867568071367 -33.7788061445338, 150.867670627423 -33.778805662827, 150.867736807277 -33.7787814721562, 150.867803291782 -33.7787791630327, 150.867854164459 -33.7788149812711, 150.868395074826 -33.7796432429844, 150.868490117564 -33.7796984958428, 150.868600096883 -33.7796682058383, 150.869780478964 -33.778690906639, 150.869575792357 -33.7784850875502, 150.86966673904 -33.7784307559129, 150.869486571821 -33.7782685545288, 150.870145527163 -33.7779022433393, 150.87028188469 -33.7778097272943, 150.870287212956 -33.7778137804532, 150.870409308477 -33.777556969752, 150.871670880894 -33.7779307647463, 150.871540932996 -33.7782366150764), (150.86762255512 -33.7766755592885, 150.868270292973 -33.7768084378615, 150.868228191745 -33.7769220394538, 150.86812001504 -33.7769422509783, 150.867961115372 -33.7769398881814, 150.867619223761 -33.7769309520312, 150.86762255512 -33.7766755592885))\n20\tMacarthur Gardens\tReady for service\tPOLYGON ((150.79716301894049 -34.078731685352246, 150.79565025305536 -34.077460926946763, 150.79610086417162 -34.077096580111167, 150.79465247129923 -34.075799137186991, 150.79342938399395 -34.075905777081026, 150.79308606124127 -34.076767777962438, 150.79296804403776 -34.077958568873647, 150.7933971974831 -34.07859838991115, 150.79383707975941 -34.078944957621623, 150.79434133505742 -34.07902493458419, 150.79449153876286 -34.079042707232027, 150.79471684432096 -34.07918488828274, 150.79493142103914 -34.079255978718209, 150.79531765913367 -34.079300410209981, 150.79562879538443 -34.079291523913952, 150.79602576231889 -34.079229319811809, 150.79636908507158 -34.079149343042253, 150.79675532316611 -34.078989389276572, 150.79716301894049 -34.078731685352246))\n10389\tIluka\tReady for service\tPOLYGON ((115.73255270719528 -31.737971912801473, 115.73366716504097 -31.738165807683931, 115.73433168232441 -31.738262754972968, 115.73499619960785 -31.738352858832975, 115.73577672243118 -31.7384520870331, 115.73667526245117 -31.7384190109782, 115.73695957660675 -31.739146681457662, 115.73716074228287 -31.739752308798906, 115.73725461959839 -31.740284938235007, 115.73635339736938 -31.74041723971855, 115.7354736328125 -31.740405834425705, 115.73499083518982 -31.740523308874931, 115.73423981666565 -31.740836953519118, 115.73380529880524 -31.740437769242167, 115.73310524225235 -31.740000945619194, 115.73280081152916 -31.73956126858678, 115.73252320289612 -31.738911728918328, 115.73242396116257 -31.738533066290049, 115.73255002498627 -31.737971912801473, 115.73255270719528 -31.737971912801473))\n5\tEl Caballo Lifestyle Village\tReady for service\tPOLYGON ((116.35106955017488 -31.800599504507684, 116.35602627243441 -31.800599504507684, 116.35602627243441 -31.801383674998871, 116.35614428963106 -31.80292464180879, 116.35311875786226 -31.802915523737557, 116.35106955017488 -31.800599504507684))\nAYAA-F7DKM\tHighland Reserve\tReady for service\tPOLYGON ((153.278922005378 -27.8823195164227, 153.279175517498 -27.882312956606, 153.279281702309 -27.8823938691562, 153.279312630119 -27.8829053418118, 153.279456570347 -27.8830488383831, 153.279584634019 -27.8831303120556, 153.279764118797 -27.8831940885013, 153.279941689246 -27.8832786725815, 153.279954500137 -27.8832847749197, 153.280079205961 -27.8834261413138, 153.280239442459 -27.8835767394807, 153.280454587218 -27.8836338780015, 153.280658123717 -27.8837104853744, 153.280818450055 -27.8837781407235, 153.280976069156 -27.8838073240476, 153.281048450117 -27.8838920985107, 153.281405886071 -27.8840641013084, 153.281824721202 -27.884262055925, 153.281874765512 -27.8841718664925, 153.281983178655 -27.8839363242595, 153.282061647774 -27.8837090588748, 153.282142287873 -27.8834939000405, 153.282150679651 -27.8833210015813, 153.28218127427 -27.8832976228159, 153.282196885851 -27.8831871162728, 153.282215249292 -27.8830847780257, 153.282239694578 -27.882872350824, 153.282257913597 -27.882738859609, 153.282266565177 -27.8826704961707, 153.282272390205 -27.8826010486553, 153.282292874521 -27.882591885899, 153.2822906174 -27.8825736661434, 153.28227796447 -27.882436954257, 153.282489392514 -27.8823154031056, 153.282510650825 -27.8823214025795, 153.283146495303 -27.8823915583036, 153.283182589553 -27.8823622047333, 153.283189748395 -27.8822826032596, 153.283180780905 -27.8821201365671, 153.283118307934 -27.881977571374, 153.283039520875 -27.8818707936366, 153.282964277653 -27.8817922354384, 153.282926656181 -27.881753958419, 153.283405363051 -27.8813429114422, 153.28313172 -27.8805805199838, 153.28305108 -27.8804737799837, 153.28290204 -27.8803512899837, 153.282867554254 -27.880263886493, 153.282607540476 -27.8804228246798, 153.28251844042 -27.8804818075522, 153.282441227285 -27.8805478952935, 153.282371156703 -27.8806199939127, 153.282309683159 -27.8807000649567, 153.282255947369 -27.8807814246332, 153.28221013968 -27.8808680327282, 153.282173871808 -27.8809571113511, 153.28214732389 -27.8810472887208, 153.28212938712 -27.8811424210191, 153.28212160289 -27.8812369023159, 153.282123866327 -27.8813322192062, 153.281915046734 -27.8813885540661, 153.281779117775 -27.881388831918, 153.281752014121 -27.8813791658821, 153.281468220591 -27.8812779555464, 153.280900186356 -27.8810745996795, 153.280744009218 -27.8810178490687, 153.279859656562 -27.8806842485408, 153.279842784037 -27.8807416395728, 153.279714277582 -27.8810199747326, 153.279531217377 -27.8810482672562, 153.27942991388 -27.8812617159865, 153.279538732174 -27.8813035115158, 153.279321020686 -27.8817854831345, 153.279254031442 -27.8817615913039, 153.278922005378 -27.8823195164227))\nAYCA-1DIQ1G\tDeepdale North\tUnder construction\tPOLYGON ((114.682667281468 -28.7695852595405, 114.682647993578 -28.7693896745515, 114.68253857297 -28.769361746858, 114.682536019533 -28.7693682256754, 114.682457823475 -28.7694016065347, 114.681771538229 -28.7693826416671, 114.681157210557 -28.7709446899764, 114.681782455493 -28.7711344198171, 114.681756664264 -28.7713456302067, 114.681199706687 -28.7727591516134, 114.680814889024 -28.773156842617, 114.681511862251 -28.7733628127493, 114.681919186006 -28.7722928185805, 114.685080475602 -28.7732603821697, 114.685396232689 -28.7724591855149, 114.685358344393 -28.7723902875581, 114.685156835885 -28.7721372683945, 114.685403127192 -28.7715117137987, 114.684104285229 -28.7711146808133, 114.683890462217 -28.7711056447604, 114.683077314578 -28.7708568528202, 114.683480418274 -28.7698340540221, 114.682667281468 -28.7695852595405))\nAYCA-G6D99\tIronbark Ridge\tReady for service\tPOLYGON ((150.897661735819 -32.2945243372932, 150.89762196471 -32.2945702034084, 150.898074059564 -32.2948582778338, 150.898960861988 -32.2954328003064, 150.899238153016 -32.2956687597493, 150.89941492645 -32.2959059372634, 150.899515831828 -32.2961867433978, 150.899607020755 -32.2963730547168, 150.899535005149 -32.2971814171867, 150.900395919197 -32.2970336289607, 150.900699323449 -32.2962383475425, 150.902216278851 -32.2954752520887, 150.902981646862 -32.2946638829776, 150.902690547696 -32.2945395748975, 150.902566324463 -32.2944952808649, 150.900883605279 -32.2937678448936, 150.90054565338 -32.2936238063681, 150.900134071053 -32.2934474370959, 150.898346241779 -32.294097524552, 150.897661735819 -32.2945243372932))\n17320794\tStegemann Road Buccan\tCheck with carrier\tPOLYGON ((153.135784096 -27.752138016, 153.136055168 -27.750760025, 153.13508208 -27.75060999, 153.135110176 -27.7503959635, 153.132807968 -27.749728983, 153.132864128 -27.7492010485, 153.133021088 -27.7490250025, 153.132594112 -27.748798026, 153.132509152 -27.748847976, 153.13214016 -27.748572030000002, 153.131528896 -27.7490210435, 153.131092928 -27.751400994500003, 153.135784096 -27.752138016))\nAYCA-MVLET\tMount Margaret\tReady for service\tPOLYGON ((146.596882842201 -19.3376598365711, 146.596519286094 -19.3400516344113, 146.596527328741 -19.340325134072, 146.596432683727 -19.3409477667322, 146.596560392176 -19.3415796451863, 146.59651070207 -19.342129395233, 146.596462937963 -19.3425152330739, 146.597192826593 -19.3427465779283, 146.597463799029 -19.3428239234488, 146.597406292132 -19.3429906434563, 146.597240116519 -19.3432828588305, 146.597367278742 -19.3435760088589, 146.597765828997 -19.3434001687534, 146.598285147643 -19.3435797184814, 146.598414458122 -19.3427839686197, 146.59846602759 -19.3425212972627, 146.598320076364 -19.3424977894588, 146.598359884405 -19.3419510326852, 146.598316439693 -19.3419507396131, 146.598160977845 -19.3405786986226, 146.598314134299 -19.3395710578566, 146.598267442291 -19.3395636433458, 146.598359679292 -19.3390326228807, 146.598398482833 -19.3390372380206, 146.598571237126 -19.3378794789881, 146.597821367147 -19.3377783818931, 146.59784293826 -19.3376299251971, 146.597560244269 -19.3375916107964, 146.597540255671 -19.3377398823715, 146.596882842201 -19.3376598365711))\n10387\tIluka\tReady for service\tPOLYGON ((115.73422908782959 -31.741005750924383, 115.7352215051651 -31.740608848428671, 115.73631852865219 -31.740565508397982, 115.73731899261475 -31.740430926068143, 115.73774814605713 -31.74234243302692, 115.73777228593826 -31.742757576101905, 115.73772668838501 -31.743081477648303, 115.73740214109421 -31.743240006513407, 115.73669135570526 -31.743435030860088, 115.73538780212402 -31.743688219750108, 115.7348245382309 -31.743679095838171, 115.73445439338684 -31.7436152284294, 115.73428273200989 -31.743250270962942, 115.73426932096481 -31.742835130096442, 115.73434174060822 -31.742474731571516, 115.7345375418663 -31.741936412175619, 115.73452949523926 -31.74154407572949, 115.73423981666565 -31.741010313012161, 115.73422908782959 -31.741005750924383))\nAYAA-HLIZF\tNickol West\tReady for service\tPOLYGON ((116.79243804 -20.7363338099194, 116.792851868382 -20.7376158347818, 116.793644451396 -20.7375967229697, 116.79363892323 -20.7382453958611, 116.793050416848 -20.7382417304937, 116.793294479704 -20.7390730489739, 116.79393104532 -20.739062121547, 116.794063805026 -20.7390436571975, 116.794041404014 -20.7396653122022, 116.794073092582 -20.7394547758944, 116.794100070882 -20.739458459294, 116.794090833834 -20.739824926379, 116.794462058534 -20.7399485840712, 116.79447669223 -20.73990521238, 116.794789751316 -20.7399831964784, 116.794790080617 -20.7399833225261, 116.794862925271 -20.7400043703842, 116.794896949737 -20.7399250144207, 116.79494139245 -20.7398909805616, 116.794938688363 -20.7395687177871, 116.795759615433 -20.7395715150376, 116.795838410917 -20.7380075730927, 116.795846347666 -20.7380050690789, 116.795904173911 -20.737265453559, 116.795820068276 -20.7372638617781, 116.795870396612 -20.7367148394442, 116.796644730489 -20.7367024179985, 116.796693557218 -20.7367264420565, 116.796712157307 -20.7367595344421, 116.796811249088 -20.7367630170925, 116.796825543641 -20.7365919304293, 116.797706664579 -20.7365930173158, 116.797698929546 -20.7363525596193, 116.79243804 -20.7363338099194))\nAYCA-1GCO65\tWhitby\tContracted\tPOLYGON ((115.997557 -32.279590000014, 115.996896 -32.279594000014, 115.996893 -32.279324000014, 115.995956 -32.279331000014, 115.995968 -32.280548000014, 115.995187 -32.2805540000141, 115.994913 -32.280668000014, 115.994907 -32.281213000014, 115.995439 -32.282130000014, 115.996078 -32.282649000014, 115.996328 -32.2828980000141, 115.995468 -32.283501000014, 115.995359 -32.283745000014, 115.995506 -32.283800000014, 115.995608 -32.283572000014, 115.996651 -32.2827710000141, 115.998422 -32.282759000014, 115.998816 -32.282795000014, 115.998874 -32.282347000014, 115.998782 -32.282338000014, 115.998776 -32.281657000014, 115.998955 -32.2816740000139, 115.999023 -32.281272000014, 115.998483 -32.281222000014, 115.997978 -32.281222000014, 115.997973 -32.280673000014, 115.99799 -32.280597000014, 115.997987 -32.2802810000139, 115.997432 -32.280285000014, 115.997432 -32.280015000014, 115.99756 -32.280014000014, 115.997557 -32.279590000014))\n17311856\tFantasia Land\tCheck with carrier\tPOLYGON ((138.651928928 -34.644247026500004, 138.652008128 -34.6441059825, 138.651314048 -34.643791982, 138.65154192 -34.6433329785, 138.651576128 -34.643206975, 138.651131872 -34.643154953, 138.650864032 -34.643042991, 138.65117184 -34.6425039935, 138.65127408 -34.64237799, 138.652059968 -34.642293038, 138.652184896 -34.642063971, 138.652470016 -34.642059031500004, 138.652594912 -34.641552964, 138.65293296 -34.640658008, 138.650519872 -34.641026010000004, 138.650059072 -34.640931956, 138.649478048 -34.6421040235, 138.64878 -34.642031041, 138.648788992 -34.6421899745, 138.647531168 -34.642145963000004, 138.647504896 -34.642883965, 138.647773088 -34.6429770385, 138.647777056 -34.642511005, 138.64939488 -34.6431400235, 138.649635008 -34.642731969, 138.649925152 -34.642817994, 138.649717088 -34.6431660345, 138.649610176 -34.643243975000004, 138.649277888 -34.6432930185, 138.648945952 -34.6438770265, 138.650817952 -34.644528985, 138.650933888 -34.644324967, 138.651298912 -34.6444659925, 138.651527872 -34.644061971, 138.651928928 -34.644247026500004))\n10172\tBurns Beach\tReady for service\tPOLYGON ((115.72688519954681 -31.728574154024283, 115.72672426700592 -31.727962750195161, 115.72668135166168 -31.727829967522087, 115.72673231363297 -31.727820842048178, 115.72665184736252 -31.72755392153864, 115.72654187679291 -31.72757901666203, 115.72613149881363 -31.726084704287867, 115.72609663009644 -31.725952382336217, 115.7260362803936 -31.72596583911659, 115.72595715522766 -31.72567153621015, 115.72562053799629 -31.725736556700152, 115.72554141283035 -31.725432218350335, 115.72549849748611 -31.725304458328264, 115.72536706924438 -31.724731817494082, 115.72717487812042 -31.724396444526015, 115.72723925113678 -31.724428384860971, 115.72727411985397 -31.724487702596697, 115.72735458612442 -31.724585804922462, 115.72748064994812 -31.724683907144389, 115.72760671377182 -31.724761476269585, 115.72775155305862 -31.724807105136453, 115.72782397270203 -31.7248801112767, 115.72805732488632 -31.724845889655619, 115.72826653718948 -31.7248093865792, 115.72835773229599 -31.725096847916756, 115.72837918996811 -31.725149089213648, 115.72843417525291 -31.72512969701954, 115.72865009307861 -31.725913598280105, 115.72877615690231 -31.725888502705722, 115.7288646697998 -31.726191930558397, 115.72901219129562 -31.726155428012142, 115.7288646697998 -31.726194211967051, 115.72890758514404 -31.726321970762559, 115.72869837284088 -31.726369880265469, 115.72859108448029 -31.726397257113153, 115.728540122509 -31.726436040966842, 115.72850525379181 -31.72653414123025, 115.72848379611969 -31.726657336762777, 115.72891294956207 -31.72819088642408, 115.72689324617386 -31.728603348171056, 115.72688519954681 -31.728574154024283))\n10574\tSecret Harbour\tReady for service\tPOLYGON ((115.75571894645691 -32.395528187530232, 115.75414180755615 -32.396760217343648, 115.75410962104797 -32.397222224189811, 115.75038135051727 -32.397284716662277, 115.7502955198288 -32.396877063967558, 115.75010776519775 -32.396908770354258, 115.74997365474701 -32.396627941970316, 115.74975371360779 -32.396655118948864, 115.74913144111633 -32.3961025187772, 115.74857890605927 -32.395930396721518, 115.74823021888733 -32.395907749058189, 115.74826240539551 -32.395536326569115, 115.74927091598511 -32.395663153932276, 115.74944794178009 -32.395450265042662, 115.75571894645691 -32.395528187530232))\n10688\tWannanup-Port Bouvard North\tReady for service\tPOLYGON ((115.6345796585083 -32.601983893518465, 115.63247680664062 -32.601287939135545, 115.63191890716553 -32.60090832537513, 115.63336730003357 -32.597609233297533, 115.63381254673004 -32.59761283468432, 115.63431680202484 -32.5975405244593, 115.63469767570496 -32.59732811283579, 115.63499808311462 -32.597594757133535, 115.63466012477875 -32.597811687502229, 115.63476204872131 -32.598548342959177, 115.63521265983582 -32.5988746528397, 115.63618898391724 -32.5990825414838, 115.63618361949921 -32.5992687158061, 115.63653230667114 -32.5993387649863, 115.63644915819168 -32.599587326151536, 115.63635528087616 -32.599646535861488, 115.63581883907318 -32.599429609935314, 115.63510000705719 -32.599321146775267, 115.63450455665588 -32.598959601960104, 115.63419878482819 -32.599090662124183, 115.63425779342651 -32.599429609935314, 115.63509464263916 -32.599800191408093, 115.63583493232727 -32.5999357696127, 115.63591003417969 -32.600229521685534, 115.63560962677002 -32.600601017819521, 115.63529849052429 -32.6007727486423, 115.63476204872131 -32.6006371717043, 115.63382863998413 -32.600293709209758, 115.63356041908264 -32.600646210173224, 115.63385009765625 -32.600872171599775, 115.63488006591797 -32.601025825044282, 115.6350302696228 -32.601170439810154, 115.6345796585083 -32.601983893518465))\n10197\tCanningvale-Sanctuary Waters\tReady for service\tPOLYGON ((115.93021810054779 -32.100772582784344, 115.92992305755615 -32.10064988720486, 115.92979431152344 -32.1005908114967, 115.92985332012177 -32.10048174855045, 115.92986941337585 -32.100395406958974, 115.92901110649109 -32.100218179226047, 115.928995013237 -32.100299976683978, 115.92864096164703 -32.1002272678361, 115.9285980463028 -32.100345419684508, 115.92845857143402 -32.100304520985055, 115.92842638492584 -32.100372685473978, 115.928093791008 -32.100249989357287, 115.92802405357361 -32.100422672733522, 115.92795431613922 -32.1005680900603, 115.92772901058197 -32.100781671339242, 115.92743933200836 -32.100604444355817, 115.92726230621338 -32.100440849912033, 115.92696726322174 -32.100190913390449, 115.92637717723846 -32.099681949632078, 115.92628598213196 -32.099759203242272, 115.92601776123047 -32.099518353536013, 115.92593193054199 -32.099636506301458, 115.92569053173065 -32.099868267051278, 115.92530429363251 -32.100209090615081, 115.92482686042786 -32.100604444355817, 115.92510581016541 -32.100831658374965, 115.92516481876373 -32.1007771270619, 115.92624306678772 -32.101658712631242, 115.92618405818939 -32.101731420339604, 115.92645764350891 -32.101958631555107, 115.92653810977936 -32.101885924027648, 115.92709600925446 -32.102349433523564, 115.92716574668884 -32.102281270509934, 115.92725157737732 -32.102353977722665, 115.92750906944275 -32.102563010636842, 115.92741787433624 -32.10264026181013, 115.92800796031952 -32.10312648828323, 115.928093791008 -32.103044693356722, 115.92832982540131 -32.103149209083149, 115.92848539352417 -32.103217371449, 115.92849612236023 -32.103189644992774, 115.92880189418793 -32.103316881311521, 115.9293007850647 -32.102430767552939, 115.92946171760559 -32.102139938599251, 115.92967629432678 -32.101746863619809, 115.92995792627335 -32.1012560855482, 115.93021810054779 -32.100772582784344))\nON-V-LSP-TWC\tLakeside, Town Centre\tReady for service\tPOLYGON ((145.43586373329163 -38.072816794351404, 145.43553113937378 -38.073796528046365, 145.43574571609497 -38.074750911182129, 145.4379665851593 -38.074987393573721, 145.43969392776489 -38.074776248617809, 145.44045567512512 -38.072343814767223, 145.43829917907715 -38.072022862593244, 145.43785929679871 -38.073255986940993, 145.43586373329163 -38.072816794351404))\n17334924\tHalcyon\tCheck with carrier\tPOLYGON ((153.363738976 -27.878194981, 153.367494112 -27.878028037, 153.367565056 -27.877854951, 153.367490176 -27.876538972000002, 153.36747216 -27.876212003, 153.366962048 -27.876233962500002, 153.366936832 -27.875797011, 153.366000128 -27.875674985, 153.365072032 -27.875696038, 153.36502704 -27.8760470385, 153.36382896 -27.875816991, 153.363726016 -27.875942014, 153.363498112 -27.876252962000002, 153.363485888 -27.876273034500002, 153.363475072 -27.8762930145, 153.363439072 -27.8763949865, 153.363422176 -27.8764260295, 153.363400928 -27.876455019, 153.363346912 -27.876522951000002, 153.363327136 -27.876551034000002, 153.363124096 -27.876902034500002, 153.36313488 -27.876931024, 153.362943008 -27.876992037, 153.362658976 -27.877274014, 153.362693152 -27.877545002, 153.36307296 -27.8779619735, 153.36360288 -27.878113988000003, 153.363633856 -27.878157981, 153.36368208 -27.8781869705, 153.363738976 -27.878194981))\n101\tBarangaroo\tReady for service\tPOLYGON ((151.20260026877574 -33.860891437945874, 151.20045450155803 -33.861033984197483, 151.2011626047433 -33.865844780638177, 151.20169904654321 -33.865844780638177, 151.20197799628312 -33.865737876995496, 151.20234277670673 -33.865595338596769, 151.20249298041213 -33.865452799960067, 151.20264318411756 -33.8653637131912, 151.20287921850669 -33.865345895826565, 151.20313671057568 -33.865328078458219, 151.20260026877574 -33.860891437945874))\nAYCA-ILWV9\tCloverlea - Chirnside Park\tReady for service\tPOLYGON ((145.332093027342 -37.745503247648, 145.330713366711 -37.7486744948705, 145.330238291506 -37.7489853015421, 145.330311999998 -37.7489950000284, 145.330287999998 -37.7491190000284, 145.330601999998 -37.7491580000284, 145.330390999998 -37.7502110000284, 145.330754999998 -37.7502550000284, 145.330737999998 -37.7503430000284, 145.331258999998 -37.7504120000284, 145.331538999998 -37.7504470000284, 145.331527999998 -37.7505030000284, 145.331862999998 -37.7505550000283, 145.332417999998 -37.7506230000284, 145.332955999998 -37.7478620000284, 145.333385999998 -37.7473030000284, 145.333418999998 -37.7471320000284, 145.333536999998 -37.7465260000284, 145.333756999998 -37.7461100000284, 145.333498999998 -37.7456290000281, 145.332093027342 -37.745503247648))\nAYCA-1INGUF\tLot 9000 Baile Road Canning Vale\tContracted\tPOLYGON ((115.909507261094 -32.0671115083085, 115.909570981925 -32.067395292871, 115.90995563938 -32.0673249901255, 115.90968852 -32.0662669500124, 115.9111206 -32.0660049600124, 115.91138772 -32.0670630000125, 115.911803406193 -32.0669865937148, 115.912003540893 -32.0669503349593, 115.913144712481 -32.066741547773, 115.912827 -32.0654190000128, 115.911841 -32.0655900000129, 115.911837 -32.0655740000128, 115.911785 -32.0655830000128, 115.911289 -32.0635070000129, 115.911372 -32.0634000000129, 115.91133 -32.0632240000128, 115.909669 -32.0635110000128, 115.909544 -32.0634410000129, 115.909336 -32.0634770000128, 115.909254 -32.0635830000128, 115.908664075399 -32.0636860854527, 115.908713683044 -32.0639621837802, 115.909070035967 -32.0653993084393, 115.909507261094 -32.0671115083085))\n17362323\tHOEVET FIELD\tCheck with carrier\tPOLYGON ((145.4283672 -17.0509390565, 145.428337984 -17.0507605685, 145.428264992 -17.050314219, 145.428192 -17.049867888, 145.428119008 -17.049421557, 145.428045984 -17.048975226, 145.42791808 -17.0481930645, 145.427872448 -17.0479141585, 145.42482352 -17.047647499500002, 145.424621408 -17.049785711000002, 145.425323136 -17.049847094, 145.4255664 -17.049868369000002, 145.425528736 -17.050266526, 145.425498368 -17.050385536500002, 145.425410656 -17.0505260625, 145.425358816 -17.0505706475, 145.426247328 -17.0506483475, 145.426265408 -17.050734705500002, 145.426309216 -17.0509435335, 145.426870112 -17.051024656, 145.4273464 -17.05109355, 145.427439232 -17.051079564000002, 145.4279032 -17.0510092455, 145.4283672 -17.0509390565))\nAYAA-J45NH\tPimpama Rivers Estate\tReady for service\tPOLYGON ((153.265624578904 -27.7926076471019, 153.265543420928 -27.7925107591948, 153.265384647505 -27.7926063733716, 153.265353215414 -27.7926064337381, 153.26532265773 -27.7925867723432, 153.265255493986 -27.792501094055, 153.265470375718 -27.7923748908153, 153.265408562671 -27.7922635183304, 153.26523612 -27.791886779983, 153.265145000953 -27.7917991365851, 153.26503596 -27.7917305399829, 153.264903427577 -27.7916873441794, 153.26451828 -27.7918101899831, 153.26444196 -27.791674919983, 153.263606343611 -27.7918912626421, 153.263225341237 -27.7918586699694, 153.262927644066 -27.7918085827755, 153.262917113766 -27.7921281667979, 153.262914072304 -27.7922204718124, 153.262910444737 -27.7923305642788, 153.263019745077 -27.793128720332, 153.26296149599 -27.7931353320679, 153.263002550736 -27.7934213779956, 153.262956693443 -27.793569042054, 153.262799569699 -27.7935561181068, 153.262774911331 -27.7935880061655, 153.262830661775 -27.7940241285157, 153.26316872949 -27.7940455891253, 153.263203250067 -27.7944409299263, 153.263217734159 -27.7945341591662, 153.263226363932 -27.7945599924967, 153.263521080293 -27.7945028097098, 153.263687746672 -27.794471002915, 153.264013127009 -27.7944476670215, 153.26413313758 -27.7944870521438, 153.264273980603 -27.7946527015214, 153.264446700571 -27.7947509671253, 153.264583304511 -27.7947251305455, 153.264603904806 -27.7950547688884, 153.264524126766 -27.7950593618504, 153.264534637768 -27.7950941149162, 153.264761897506 -27.79517984043, 153.264881064914 -27.7951390366496, 153.26512368486 -27.7955006396155, 153.265164862908 -27.795436391418, 153.265542344534 -27.7955466323454, 153.265810373843 -27.795630845172, 153.265833769053 -27.795438480048, 153.265867584178 -27.795372254057, 153.266252735875 -27.7947855257858, 153.266328806127 -27.79463801714, 153.266510440419 -27.7933444555408, 153.266328387952 -27.793328452226, 153.266309899871 -27.7932724984429, 153.266270850934 -27.7931918255749, 153.2662822115 -27.7931226184912, 153.266262322874 -27.7931003179583, 153.265806471656 -27.7925310784423, 153.265749014059 -27.7925172607694, 153.265651125526 -27.7925883725075, 153.26562636 -27.7926130799829, 153.265624578904 -27.7926076471019))\nAYCA-TCBF0\tWandi Estate\tUnder construction\tPOLYGON ((115.860880999999 -32.194845000013, 115.856624999999 -32.1973170000131, 115.856167966274 -32.1984312419833, 115.85632117682 -32.1984715069978, 115.856671454712 -32.1985760109309, 115.856736713624 -32.1984166842668, 115.856830129913 -32.1984442238542, 115.85711223998 -32.1987938402838, 115.856479588482 -32.1991629213849, 115.856183769863 -32.198806974786, 115.856026930388 -32.1987759386446, 115.855766999999 -32.199410000013, 115.856153097605 -32.1998883595213, 115.860667999999 -32.197255000013, 115.860571999999 -32.196569000013, 115.860574999999 -32.1964220000129, 115.860296345408 -32.1964646162018, 115.860174158834 -32.1964517002027, 115.859814061239 -32.1960056093241, 115.860618669601 -32.1955359937958, 115.860675581514 -32.1955343798437, 115.860937794077 -32.1955876363699, 115.861221999999 -32.194934000013, 115.860880999999 -32.194845000013))\nAYCA-T0C3W\tWickham South\tReady for service\tPOLYGON ((117.14284520041 -20.6825016927027, 117.142645406475 -20.6825292189216, 117.142619673948 -20.6825577020452, 117.141952177474 -20.6826972402596, 117.141603383938 -20.682782209439, 117.141549102504 -20.6827566302886, 117.141430004923 -20.6827937995148, 117.141078515655 -20.6829520271639, 117.140935803896 -20.6829728617407, 117.141120326379 -20.6838560929233, 117.14125447609 -20.6848420760747, 117.140996238778 -20.6848806441264, 117.141053457403 -20.6852853763193, 117.140731110087 -20.6853621669179, 117.139160854844 -20.6857704515298, 117.139102231644 -20.6856953295152, 117.138602977405 -20.6858496130096, 117.138331608096 -20.6865830308393, 117.138489650793 -20.6869758548686, 117.139489508951 -20.6867451217474, 117.13941797627 -20.6864826466003, 117.139675269054 -20.6864192239591, 117.139749833337 -20.6866822937452, 117.140700563914 -20.6868821331693, 117.141602583005 -20.6866761271616, 117.141805533351 -20.6866293224438, 117.14236162727 -20.6856903887652, 117.14272219814 -20.6856743352239, 117.143436510258 -20.6849301622877, 117.143705833032 -20.6848957705182, 117.143705414848 -20.6848861688895, 117.143700678842 -20.6848279299781, 117.143682783695 -20.6848170320882, 117.14338392474 -20.6848379165946, 117.143391622657 -20.684824887754, 117.143436097586 -20.6847183716378, 117.143462074422 -20.6846066096354, 117.143475749578 -20.6844918243425, 117.143265427653 -20.6845168352201, 117.142931307068 -20.682917344732, 117.14293001357 -20.6829156448836, 117.14284520041 -20.6825016927027), (117.140959752113 -20.6829907690652, 117.141083731297 -20.6829720465343, 117.141186138758 -20.6830114367997, 117.141274380791 -20.6832686359415, 117.141029864836 -20.6833151176419, 117.140959752113 -20.6829907690652), (117.141763025749 -20.6848734921848, 117.14205855236 -20.6848348710433, 117.142359766428 -20.6847980752793, 117.142412626088 -20.6851827706446, 117.142384188202 -20.6852810752798, 117.142296826044 -20.6853846969228, 117.1422566635 -20.6853896031925, 117.141936367613 -20.6851528245645, 117.141869584075 -20.6850931864035, 117.141816949087 -20.685022919453, 117.141781248311 -20.6849474183301, 117.141763025749 -20.6848734921848), (117.142895280133 -20.684563011765, 117.143475434198 -20.6844920551955, 117.143461888574 -20.6846065724633, 117.143434225308 -20.6847176823126, 117.14339139216 -20.6848248692192, 117.143329441838 -20.6849310187654, 117.143261677591 -20.6850248136365, 117.143137739172 -20.6851410532001, 117.143091220046 -20.6851395295502, 117.142956569917 -20.6850146462001, 117.142895280133 -20.684563011765))\n10092\tBaldivis-The Chase\tReady for service\tPOLYGON ((115.82371830940247 -32.303049020278486, 115.82316845655441 -32.304973761485051, 115.82223504781723 -32.304973761485051, 115.8218702673912 -32.304796931842866, 115.82155913114548 -32.30514378966172, 115.81914514303207 -32.305144923181835, 115.819131731987 -32.304428535646707, 115.81892251968384 -32.304420600942919, 115.81892251968384 -32.303556847605854, 115.81948444247246 -32.303556847605854, 115.81948310136795 -32.303182778645244, 115.81941604614258 -32.303169176108483, 115.81941604614258 -32.3028223107314, 115.82378268241882 -32.3028223107314, 115.82371830940247 -32.303049020278486))\nAYCA-1EFSPR\tCoomera Springs Estate\tContracted\tPOLYGON ((153.2906154 -27.8408675699834, 153.29050754849 -27.8408000549641, 153.29036664 -27.8407620899834, 153.29020968 -27.8407526399834, 153.2900538 -27.8407723499834, 153.2899062 -27.8408204999834, 153.2897928 -27.8406728099834, 153.290092931339 -27.8391405710308, 153.286799 -27.838601999984, 153.286826780308 -27.8385033516107, 153.286627 -27.8384699999828, 153.286289894985 -27.8401100386966, 153.286478 -27.840140999984, 153.286521 -27.839935999984, 153.286809 -27.8401149999841, 153.287117 -27.840488999984, 153.287173 -27.840572999984, 153.287393 -27.8408949999841, 153.287775 -27.841557999984, 153.288193 -27.8417459999841, 153.288632 -27.842017999984, 153.288804 -27.842123999984, 153.28950408 -27.8424559799834, 153.2906154 -27.8408675699834))\nAYCA-F6OD2\tThe Fairways\tReady for service\tPOLYGON ((152.46376330561 -27.5485524851706, 152.463722942925 -27.5487821645764, 152.463139360168 -27.5522044751826, 152.464089252315 -27.5523357306259, 152.464027373572 -27.5526052768444, 152.465250274928 -27.5527178950144, 152.465312150708 -27.5524483595476, 152.465651104373 -27.5524928215778, 152.466187884274 -27.5487240833686, 152.46376330561 -27.5485524851706))\nAYCA-FZLKH\tMadigan Road\tReady for service\tPOLYGON ((116.789252316717 -20.7493197720858, 116.789209055822 -20.749778716366, 116.791245095918 -20.749964249424, 116.791072737033 -20.7523103801412, 116.793953411002 -20.7525609438356, 116.793972878161 -20.7512441914248, 116.793752394791 -20.7504078298742, 116.79375036959 -20.7500979975568, 116.793679395142 -20.7489542030277, 116.792518347941 -20.7488437776833, 116.792519992678 -20.7488173020324, 116.792495995003 -20.7488157115861, 116.79249381432 -20.7488415124269, 116.792156770446 -20.7488098560769, 116.792093385534 -20.7495696427207, 116.789252316717 -20.7493197720858), (116.790715107494 -20.7495810780196, 116.790797819404 -20.7495863661234, 116.790841858445 -20.7496367075686, 116.790825725387 -20.7498004632787, 116.790697751243 -20.7497914731743, 116.790715107494 -20.7495810780196), (116.792296030263 -20.7507358196575, 116.792279482565 -20.7509086851372, 116.792224146164 -20.7509512008938, 116.792134755574 -20.7509447734368, 116.792152585297 -20.7507288729372, 116.792296030263 -20.7507358196575), (116.793527803508 -20.7516066931115, 116.793829300928 -20.7516310379633, 116.793858140316 -20.7516588423479, 116.793858625415 -20.7517964296697, 116.793519522899 -20.7517701463126, 116.793527803508 -20.7516066931115), (116.79272085637 -20.7515312639833, 116.793010194906 -20.7515513693717, 116.793036953151 -20.7515782149074, 116.793022462726 -20.7517416441292, 116.792704142374 -20.7517163649526, 116.79272085637 -20.7515312639833))\nON-Q-GC-SeaChange\tSeachange Emerald Lakes, Carrara\tUnder construction\tPOLYGON ((153.381919 -28.015345000000003, 153.38032 -28.016509999999993, 153.38118900000006 -28.017684999999993, 153.382112 -28.018110999999998, 153.38223 -28.018565999999993, 153.382251 -28.018992000000008, 153.38198299999996 -28.019332999999996, 153.381747 -28.019551000000018, 153.381844 -28.020004999999994, 153.382294 -28.020583000000002, 153.384 -28.020318, 153.38394599999998 -28.018830999999995, 153.382552 -28.015838000000006, 153.381919 -28.015345000000003))\nAYCA-M5S0I\tWindmill Downs\tReady for service\tPOLYGON ((150.904114385348 -31.0370319898862, 150.901387056954 -31.0372010841187, 150.899123498279 -31.0372647959784, 150.89902257924 -31.0373935328028, 150.899331147985 -31.0380558605678, 150.899711289598 -31.0393141003711, 150.900174553461 -31.0391663331314, 150.900197318398 -31.0389105095477, 150.900904033014 -31.0389923930483, 150.900952099727 -31.0390844248845, 150.901106222224 -31.0391050860778, 150.901200875284 -31.039035243051, 150.902764693991 -31.0392632279298, 150.902817623148 -31.0389945891315, 150.903714879426 -31.0391232556322, 150.904114385348 -31.0370319898862))\n10590\tSecret Harbour\tReady for service\tPOLYGON ((115.76870754361153 -32.410379155588195, 115.76885707676411 -32.410337264112115, 115.76971035450697 -32.410564270391575, 115.77044829726219 -32.410762405081513, 115.77066019177437 -32.410859773969719, 115.77070310711861 -32.4109093075208, 115.77070511877537 -32.411054511430983, 115.77158018946648 -32.411045453883958, 115.77158287167549 -32.41113716150555, 115.77267989516258 -32.411125839581985, 115.77288374304771 -32.411124424341452, 115.77288206666708 -32.411121452336239, 115.77295482158661 -32.411121876908418, 115.77306680381298 -32.411126971774422, 115.77368102967739 -32.411274156667893, 115.77348070219159 -32.411861903180991, 115.77340375632048 -32.412155279673541, 115.7732230424881 -32.412840528720515, 115.7732143253088 -32.413037455483845, 115.77255383133888 -32.412913482954238, 115.771763920784 -32.412923743244257, 115.77074937522411 -32.412931102348118, 115.77073730528355 -32.412351022684433, 115.77072322368622 -32.412093045159615, 115.7706568390131 -32.412151352425774, 115.76921246945858 -32.412170599476241, 115.76921112835407 -32.412132671461109, 115.76915547251701 -32.412134369730786, 115.769152790308 -32.412172297745208, 115.76905086636543 -32.412162108130964, 115.768949277699 -32.4121338036409, 115.76886512339115 -32.412080591175567, 115.76821636408567 -32.411576769469981, 115.76785996556282 -32.41132032880256, 115.76785393059254 -32.411245038137096, 115.76839372515678 -32.410708501874566, 115.76855633407831 -32.410544961081342, 115.76870821416378 -32.410380287789991, 115.76870754361153 -32.410379155588195))\nAYAA-J4JYO\tWickham South\tReady for service\tPOLYGON ((117.137120090343 -20.6838523976977, 117.13795889985 -20.6860236347729, 117.138731660415 -20.685890210214, 117.14073172224 -20.6853633128075, 117.141051119408 -20.6852889915087, 117.140991576746 -20.6848779410107, 117.14124329901 -20.6848331172305, 117.141110222128 -20.683854567357, 117.140885697347 -20.6828141182819, 117.137652935971 -20.6836927149813, 117.137324688435 -20.6837933677404, 117.137245586329 -20.6835834744423, 117.137185018719 -20.6835970296359, 117.137223114084 -20.683692699958, 117.137120090343 -20.6838523976977))\n271\tWestpoint Shopping Centre\tReady for service\tPOLYGON ((150.90482269288674 -33.768528306844821, 150.9039214706543 -33.770722296950169, 150.90735469819896 -33.771542799142019, 150.90748344422448 -33.771560636058652, 150.90759073258809 -33.771239570986374, 150.9080413437043 -33.771168223029406, 150.90793405534075 -33.770026647633181, 150.90799842836248 -33.769134781272271, 150.90482269288674 -33.768528306844821))\n334\tOceanside\tUnder construction\tPOLYGON ((152.41152280181123 -24.77278537946005, 152.41392140208984 -24.773130789321133, 152.41358759308534 -24.775067090008992, 152.41356424504252 -24.775189905931036, 152.41350293720444 -24.77520054434115, 152.41326851098933 -24.775166747064841, 152.41318790414289 -24.775169732314193, 152.41319345378071 -24.775137645229957, 152.41295902777787 -24.7751038474726, 152.41295215470925 -24.775143585981581, 152.41289354821151 -24.775135136482248, 152.41290042129825 -24.775095397976269, 152.41235342789497 -24.775016534910915, 152.41234680455264 -24.775054828489512, 152.41205377258734 -24.775012579587411, 152.41206039601676 -24.774974286023209, 152.41174782891235 -24.774929219914672, 152.41174081188689 -24.774969788480981, 152.41150965661203 -24.774936456367488, 152.41146066029449 -24.775219838118222, 152.41149261048855 -24.7752244448006, 152.41142812629511 -24.775573794000962, 152.41118825432275 -24.775813276239781, 152.4102489934794 -24.775769412708222, 152.41000957207564 -24.775032124460996, 152.41005672985023 -24.774866471326316, 152.40988282786327 -24.77479955460414, 152.40985987207992 -24.774745496993564, 152.40974231969921 -24.774771589785107, 152.40972136217394 -24.774727564844412, 152.40968638530933 -24.774537747297146, 152.4097657045042 -24.774079208742872, 152.40955653642479 -24.774017620752861, 152.40930985097853 -24.773770001840884, 152.40935829341188 -24.773488529415317, 152.40972523109224 -24.773295943521944, 152.41083418413797 -24.773455032642438, 152.41136151560283 -24.773717848456258, 152.41152280181123 -24.77278537946005))\nAYCA-13X8H5\tRiemore Downs Estate\tContracted\tPOLYGON ((153.10899288 -27.8859651299838, 153.10859976 -27.8869904099838, 153.10854 -27.8871631199838, 153.10809288 -27.8877602699838, 153.10855944 -27.8880881399838, 153.11038932 -27.8878163399838, 153.1104282 -27.8878955399838, 153.11170584 -27.8881748999838, 153.112579606512 -27.8875916036591, 153.113367683269 -27.8869181781118, 153.112529908805 -27.8861558819561, 153.111329786178 -27.8857798960081, 153.1106496 -27.8857429199837, 153.10997568 -27.8858786399838, 153.10947384 -27.8861107499837, 153.10899288 -27.8859651299838))\n17362631\tBarbers Paddock\tCheck with carrier\tPOLYGON ((144.76534032 -36.1019571165, 144.765215488 -36.102763901500005, 144.765318272 -36.102918136, 144.770230176 -36.10349948, 144.770421056 -36.102496946500004, 144.767612768 -36.1022099005, 144.767730272 -36.1016581935, 144.767627456 -36.101646335, 144.767759616 -36.100875144, 144.76770448 -36.100866338, 144.767741184 -36.100651294, 144.767880672 -36.100669091, 144.76790272 -36.100563789, 144.76777056 -36.100544512, 144.76783296 -36.100141101, 144.766896832 -36.1000372975, 144.766772032 -36.1007358205, 144.766177312 -36.100673531, 144.766173952 -36.1007040005, 144.765582592 -36.100640175500004, 144.76534032 -36.1019571165))\n193\tChambers Pines\tReady for service\tPOLYGON ((153.08751662773457 -27.721799275380192, 153.08700164360556 -27.721780280689021, 153.0866797785238 -27.721694804536636, 153.0864437441347 -27.721628323038182, 153.08582147164213 -27.7252562541139, 153.08867534202707 -27.725693117250394, 153.08930834335965 -27.725569656107062, 153.09002717537584 -27.725607644165692, 153.08998426003402 -27.724373025466761, 153.08997353119406 -27.72418308288778, 153.08846076530892 -27.723974145668087, 153.0883642057853 -27.723883922653968, 153.08825155300622 -27.72384118541115, 153.08826228184614 -27.723689230632669, 153.08731814427185 -27.723599007382767, 153.08764537376908 -27.721832516082387, 153.08751662773457 -27.721799275380192))\nAYAA-F548W\tElizabeth Hills\tReady for service\tPOLYGON ((150.845726075931 -33.8956701905742, 150.845313358595 -33.8956845243021, 150.845321470285 -33.8958526259179, 150.845354220132 -33.8961228876424, 150.845402183381 -33.8961145920596, 150.845435347146 -33.8963888852546, 150.845386932754 -33.8963958603444, 150.845423946906 -33.8965293614127, 150.845456430067 -33.8966507642801, 150.84539528314 -33.8967918234961, 150.845340935085 -33.8969192222845, 150.845289352593 -33.8970283053412, 150.845189541976 -33.8972428535373, 150.845080257767 -33.8974734709192, 150.844880830282 -33.8978582724434, 150.844796365588 -33.8980245613983, 150.844699613319 -33.8981919323363, 150.844590157584 -33.8981323483896, 150.844448919997 -33.8983802413803, 150.844339152454 -33.898323968363, 150.844171673035 -33.898426505895, 150.843989627603 -33.898650320926, 150.844063031024 -33.8986917071716, 150.843972416954 -33.8988040483723, 150.843881671316 -33.8989159240072, 150.843690475527 -33.8989974514528, 150.843579831915 -33.8991527081686, 150.843524608432 -33.8992303920253, 150.843469384847 -33.8993080758525, 150.843358607427 -33.8994632573245, 150.843422732651 -33.8996920705714, 150.843230744843 -33.899928766699, 150.84336288491 -33.900003296448, 150.843458925172 -33.9000896186464, 150.843562014076 -33.9001942186135, 150.8436711383 -33.9002982458604, 150.84377701977 -33.9003996698474, 150.843988303957 -33.9006018866086, 150.844249137817 -33.9004123916889, 150.844352278635 -33.9005161668513, 150.844497489419 -33.9004113060449, 150.844503786035 -33.9003349946155, 150.8451118487 -33.8998932309061, 150.845161811959 -33.8998494536132, 150.845199278399 -33.8997975549238, 150.845221032067 -33.8997448798659, 150.845230578131 -33.8997240056059, 150.845241919747 -33.8996694994709, 150.845250654605 -33.8995342858143, 150.845321359897 -33.8994814096214, 150.845603589081 -33.8994803402902, 150.845659440939 -33.8993234162817, 150.845680771383 -33.8990548581181, 150.845894827199 -33.8990794703426, 150.845983885111 -33.8990966990744, 150.846081046504 -33.8988394669644, 150.846126736068 -33.8986733389384, 150.846258474187 -33.8984307132367, 150.846392347883 -33.8984638088466, 150.84647151868 -33.8983467956038, 150.846540933904 -33.8982436146469, 150.846610348956 -33.8981404336425, 150.846679763836 -33.898037252591, 150.846749178543 -33.8979340714922, 150.846818224525 -33.8978307698443, 150.846888007442 -33.8977277091528, 150.846946881231 -33.897640195792, 150.847077169549 -33.8976331056406, 150.847407135599 -33.897558155581, 150.847604323321 -33.8975136581674, 150.847594378598 -33.897418410609, 150.847576161028 -33.8972439278076, 150.847562525864 -33.8971133336761, 150.847470667348 -33.896749283196, 150.847305237701 -33.8964565808851, 150.847060276897 -33.8960205187626, 150.84679425618 -33.895867204043, 150.846617882897 -33.8957835624515, 150.846391940434 -33.8957107667034, 150.846018670488 -33.895692826338, 150.845726075931 -33.8956701905742))\n17348353\tAvenue Hill\tCheck with carrier\tPOLYGON ((143.718275008 -37.5230560025, 143.718631008 -37.5211049925, 143.718516 -37.521079, 143.718478016 -37.521034008, 143.718258016 -37.5209899965, 143.718370016 -37.520381994000005, 143.717587008 -37.5202899935, 143.717720992 -37.519560002, 143.716938016 -37.5194680015, 143.717103008 -37.5185730085, 143.716887008 -37.5185050025, 143.717011008 -37.517831991, 143.715790016 -37.5170560085, 143.715734016 -37.517045001, 143.715671008 -37.517051994, 143.715596992 -37.5170659985, 143.715544992 -37.5171039975, 143.715427008 -37.517670005, 143.715532992 -37.5176880055, 143.715356992 -37.518563999, 143.716088 -37.519006001, 143.715862016 -37.519969, 143.716626016 -37.520189002, 143.716547008 -37.5206949955, 143.716675008 -37.520887007, 143.716290016 -37.5228290075, 143.718275008 -37.5230560025))\n17345976\tWestwood\tCheck with carrier\tPOLYGON ((152.764883648 -26.957241264, 152.764068256 -26.9585364675, 152.76463344 -26.959046938, 152.764055808 -26.959915069, 152.763766912 -26.960343029500002, 152.763462752 -26.960079349, 152.762936416 -26.958703948, 152.76268944 -26.958768661, 152.762096896 -26.959059906500002, 152.762350784 -26.9595279565, 152.762507456 -26.959822199, 152.762670848 -26.9601234345, 152.7632712 -26.961131703, 152.762926336 -26.961304419, 152.762851808 -26.9613145755, 152.762785216 -26.961296575000002, 152.76274848 -26.961269491, 152.762594048 -26.961348782, 152.76261024 -26.9615216645, 152.76156192 -26.9620359275, 152.762343136 -26.9632979975, 152.763725152 -26.962633977, 152.764134112 -26.961968976, 152.763923872 -26.961860973, 152.764876096 -26.960349967, 152.764614016 -26.9602229645, 152.766075328 -26.957850691, 152.764883648 -26.957241264))\nAYCA-FD0SO\tForest Springs\tReady for service\tPOLYGON ((151.248552545618 -23.8947114383945, 151.247326974519 -23.8966568533947, 151.249092309191 -23.897634607997, 151.249811837147 -23.8977041467752, 151.250507375955 -23.8975329477873, 151.251252380229 -23.896704342016, 151.251539109755 -23.8958291065575, 151.251485004698 -23.8954637886811, 151.249276337525 -23.8943697548482, 151.248764404038 -23.8944518288277, 151.248552545618 -23.8947114383945))\nAYCA-1CPHX4\tMoncrieff Residential Estate\tContracted\tPOLYGON ((149.114634000007 -35.1611090000209, 149.114633000008 -35.1611150000209, 149.114633000007 -35.161121000021, 149.114632000007 -35.1611270000209, 149.114632000008 -35.161140000021, 149.114633000008 -35.161146000021, 149.114633000007 -35.1611520000209, 149.114634000007 -35.1611580000209, 149.114635000007 -35.1611650000209, 149.114636000007 -35.1611710000209, 149.114638000007 -35.1611770000209, 149.114639000008 -35.1611830000209, 149.114645000008 -35.1612010000209, 149.114651000008 -35.1612130000209, 149.114653000008 -35.161219000021, 149.114657000007 -35.1612240000209, 149.114660000007 -35.1612300000209, 149.114664000007 -35.1612350000209, 149.114667000007 -35.1612410000209, 149.114671000007 -35.1612460000209, 149.114675000008 -35.1612520000209, 149.115181000007 -35.1618770000209, 149.115118000008 -35.162041000021, 149.115059000008 -35.1620730000209, 149.114056000007 -35.162542000021, 149.114543000008 -35.1633110000209, 149.115434000007 -35.1628850000209, 149.115353000008 -35.1625940000209, 149.115827000007 -35.1623690000209, 149.116265000008 -35.1622320000209, 149.116752000007 -35.1621610000209, 149.116696000008 -35.1618990000209, 149.116722000007 -35.1618980000209, 149.116749000008 -35.1618970000209, 149.116803000008 -35.1618970000209, 149.116830000008 -35.1618980000209, 149.116884000008 -35.1619020000209, 149.116910000007 -35.1619050000209, 149.116937000008 -35.1619090000209, 149.116940000008 -35.1619090000209, 149.116943000007 -35.1619100000209, 149.116946000008 -35.1619100000209, 149.116949000007 -35.1619110000209, 149.116951000008 -35.1619120000209, 149.116963000008 -35.1619160000209, 149.116965000008 -35.1619170000209, 149.116971000008 -35.161919000021, 149.116973000008 -35.1619200000209, 149.116976000008 -35.1619220000209, 149.116978000008 -35.1619230000209, 149.116981000008 -35.1619240000209, 149.116983000008 -35.1619260000209, 149.116986000008 -35.1619270000209, 149.116990000007 -35.1619310000209, 149.116992000008 -35.1619320000209, 149.116995000008 -35.1619340000209, 149.117003000007 -35.1619420000209, 149.117004000008 -35.1619440000209, 149.117008000008 -35.1619480000209, 149.117009000007 -35.1619500000209, 149.117011000008 -35.161952000021, 149.117012000008 -35.1619540000209, 149.117014000008 -35.1619560000209, 149.117015000008 -35.1619590000209, 149.117017000008 -35.1619630000209, 149.117018000008 -35.1619660000209, 149.117020000008 -35.1619700000209, 149.117021000008 -35.1619730000209, 149.117022000008 -35.1619750000209, 149.117023000008 -35.1619780000209, 149.117281000008 -35.1619470000209, 149.117281000007 -35.1619250000209, 149.117282000008 -35.1619230000209, 149.117282000008 -35.1619200000209, 149.117283000008 -35.1619180000209, 149.117285000008 -35.1619120000209, 149.117285000008 -35.1619100000209, 149.117286000008 -35.1619070000208, 149.117287000008 -35.1619050000209, 149.117289000008 -35.1619020000209, 149.117291000008 -35.1618980000209, 149.117293000008 -35.1618950000209, 149.117294000008 -35.1618930000209, 149.117296000008 -35.1618910000209, 149.117297000008 -35.1618880000209, 149.117305000008 -35.1618800000209, 149.117307000008 -35.1618770000209, 149.117311000008 -35.1618730000209, 149.117313000008 -35.1618720000209, 149.117315000008 -35.1618700000209, 149.117318000008 -35.1618680000209, 149.117320000008 -35.1618660000209, 149.117323000008 -35.1618640000209, 149.117325000008 -35.1618630000209, 149.117328000008 -35.1618610000208, 149.117330000008 -35.1618600000209, 149.117333000007 -35.1618580000209, 149.117365000008 -35.1618420000209, 149.117399000008 -35.1618280000209, 149.117416000008 -35.1618220000209, 149.117433000008 -35.1618150000209, 149.117451000008 -35.1618100000209, 149.117469000008 -35.1618040000209, 149.117487000008 -35.1618000000209, 149.117505000008 -35.1617950000209, 149.117541000007 -35.1617870000209, 149.117626000008 -35.1620480000209, 149.117928000008 -35.1619810000209, 149.118071000008 -35.1619490000209, 149.118799000008 -35.1617320000209, 149.118872000008 -35.1618960000209, 149.119159000008 -35.1618500000208, 149.119396000008 -35.1617920000209, 149.119397000008 -35.1617560000209, 149.119397000008 -35.1616850000208, 149.119395000008 -35.1616500000209, 149.119394000008 -35.1616140000209, 149.119391000008 -35.1615790000209, 149.119388000008 -35.1615430000209, 149.119380000008 -35.1614730000209, 149.119377000008 -35.1614590000209, 149.119373000008 -35.1614460000209, 149.119369000008 -35.1614320000209, 149.119361000008 -35.1614060000209, 149.119356000008 -35.1613930000209, 149.119351000008 -35.1613790000209, 149.119346000008 -35.1613660000209, 149.119340000008 -35.1613540000209, 149.119335000008 -35.1613420000209, 149.119330000008 -35.1613310000209, 149.119324000008 -35.1613200000208, 149.119318000008 -35.1613100000208, 149.119311000008 -35.1612990000208, 149.119304000008 -35.1612890000209, 149.119297000008 -35.1612780000209, 149.119289000008 -35.1612680000209, 149.119281000008 -35.1612590000209, 149.119263000007 -35.1612390000209, 149.119254000008 -35.1612300000209, 149.119139000007 -35.1611280000208, 149.118490000008 -35.1605920000209, 149.118471000008 -35.1605670000208, 149.118454000008 -35.1605410000209, 149.118437000008 -35.1605140000209, 149.118421000008 -35.1604870000209, 149.118406000008 -35.1604590000208, 149.118393000008 -35.1604310000209, 149.118380000008 -35.1604040000209, 149.118368000008 -35.1603750000209, 149.118357000008 -35.1603460000209, 149.118226000008 -35.1600150000209, 149.118145000008 -35.1598090000209, 149.118136000008 -35.1597870000209, 149.118116000008 -35.1597430000209, 149.118105000008 -35.1597220000209, 149.118093000008 -35.1597010000209, 149.118080000008 -35.1596800000209, 149.118052000008 -35.1596400000209, 149.118037000008 -35.1596200000209, 149.118005000008 -35.1595820000209, 149.117988000008 -35.1595630000208, 149.117013000008 -35.1598680000209, 149.117006000007 -35.1598650000209, 149.116982000007 -35.1598560000209, 149.116974000008 -35.1598540000209, 149.116966000008 -35.1598510000209, 149.116942000008 -35.1598450000209, 149.116933000008 -35.1598440000209, 149.116925000008 -35.159842000021, 149.116917000008 -35.1598410000209, 149.116908000008 -35.1598400000209, 149.116900000007 -35.1598390000209, 149.116891000007 -35.1598380000209, 149.116848000008 -35.159838000021, 149.116840000008 -35.1598390000209, 149.116831000007 -35.1598390000209, 149.116823000008 -35.1598400000209, 149.116814000008 -35.1598410000209, 149.116789000008 -35.159846000021, 149.116764000007 -35.1598500000209, 149.116738000008 -35.1598560000209, 149.116714000008 -35.1598610000209, 149.116689000008 -35.159867000021, 149.116664000008 -35.1598740000209, 149.116640000007 -35.1598810000209, 149.116592000007 -35.1598970000209, 149.116035000008 -35.1601530000209, 149.116013000008 -35.1601690000209, 149.115990000008 -35.1601840000209, 149.115966000007 -35.160198000021, 149.115943000008 -35.1602130000209, 149.115919000007 -35.1602270000209, 149.115894000008 -35.1602400000209, 149.115870000008 -35.1602530000209, 149.115845000008 -35.160265000021, 149.115819000008 -35.1602770000209, 149.115112000007 -35.160551000021, 149.114685000008 -35.1610060000209, 149.114681000007 -35.161011000021, 149.114676000007 -35.161016000021, 149.114668000007 -35.1610260000209, 149.114664000007 -35.1610320000209, 149.114661000008 -35.1610370000209, 149.114657000007 -35.1610430000209, 149.114654000007 -35.161049000021, 149.114651000007 -35.1610540000209, 149.114649000008 -35.161060000021, 149.114646000008 -35.161066000021, 149.114636000007 -35.1610960000209, 149.114635000008 -35.1611020000209, 149.114634000007 -35.1611090000209))\n17338330\tAmorosa Gardens\tCheck with carrier\tPOLYGON ((152.000035936 -27.4216899615, 151.999926848 -27.4216760125, 151.999877152 -27.4216689825, 151.997401088 -27.421328064500003, 151.99679088 -27.424887039, 151.998928928 -27.425177008000002, 151.998820928 -27.424422985, 151.999664032 -27.4242840315, 151.999848 -27.422966961, 152.00000208 -27.422056983, 152.000035936 -27.4216899615))\nAYCA-F190V\tEdmondson Park South P1\tReady for service\tPOLYGON ((150.852090806049 -33.9783097831143, 150.852145212961 -33.9784227240743, 150.852164757339 -33.9784161896055, 150.852218627485 -33.9784369635346, 150.852715466639 -33.9796805738223, 150.852726294352 -33.9797264036439, 150.852730953695 -33.979775694615, 150.852729296393 -33.9798183746987, 150.852724889661 -33.9798479105986, 150.852718364172 -33.9798644097894, 150.852705155626 -33.9798814461219, 150.852684475685 -33.9798963273218, 150.852516764308 -33.9799548561255, 150.852587193677 -33.9801147674443, 150.852631819426 -33.9800999169104, 150.852664660617 -33.98009070338, 150.852723537569 -33.9800797464525, 150.852766905225 -33.9800759455786, 150.852803090062 -33.9800754457348, 150.852831728811 -33.9800790355264, 150.85285801821 -33.9800900872391, 150.852874407473 -33.9801027169223, 150.852892874236 -33.980126061986, 150.852903924936 -33.9801476520218, 150.853616033146 -33.9819251958524, 150.853589680182 -33.9819730646129, 150.853578290774 -33.9819769501116, 150.853608654152 -33.9820274584669, 150.853800534389 -33.9819652689233, 150.853856605945 -33.982078718016, 150.853944129745 -33.9820482102479, 150.853888730447 -33.9819351049632, 150.854965699095 -33.9815807811402, 150.854876963975 -33.9813315071156, 150.855250764383 -33.9812190089092, 150.855416986389 -33.9811717492558, 150.855728369612 -33.9810815052793, 150.855570978115 -33.9806888640536, 150.855523245271 -33.9805731958087, 150.855481637444 -33.9804707291414, 150.855399192544 -33.9802694300242, 150.855313368622 -33.9800598796191, 150.855273752488 -33.979963151268, 150.855235378414 -33.9798706971008, 150.855196742625 -33.9797751202597, 150.855157917937 -33.9796803237115, 150.855116648753 -33.9795795583168, 150.8550566068 -33.9794463077385, 150.854995448644 -33.9793105761763, 150.854888718217 -33.9791619571973, 150.854785364874 -33.9788998743928, 150.854848239275 -33.9788788515138, 150.854507497025 -33.9780408561682, 150.854813792134 -33.9779384416031, 150.854789769859 -33.9778784790179, 150.85481623499 -33.9778308445905, 150.854723529262 -33.9775994388687, 150.854666838541 -33.9775796090891, 150.854614122103 -33.9774661029056, 150.852090806049 -33.9783097831143))\n17357936\tBroadview Estate\tCheck with carrier\tPOLYGON ((149.594210016 -32.6346520035, 149.594619008 -32.632449005, 149.593994016 -32.6315559915, 149.593548 -32.630928009, 149.592956992 -32.6300749925, 149.592895008 -32.630424994, 149.592636 -32.631194002, 149.592596 -32.6312140005, 149.592532992 -32.631241991, 149.592487008 -32.6313240015, 149.592538016 -32.631422995, 149.592612 -32.631455, 149.592628992 -32.631494997000004, 149.592311008 -32.6316619965, 149.591922016 -32.63238, 149.591964 -32.6326870075, 149.590779008 -32.634029996500004, 149.590710016 -32.634164991, 149.594210016 -32.6346520035))\n234\tLogan Hyperdome Shopping Centre\tReady for service\tPOLYGON ((153.16967998506846 -27.659035338906623, 153.1694439506704 -27.658731248681416, 153.16950832368312 -27.658275111757256, 153.16985164644478 -27.658199088751012, 153.17002330782111 -27.6580090310057, 153.17002330782111 -27.657666926231023, 153.17113910677179 -27.657666926231023, 153.17105327607914 -27.657438855786523, 153.1707528686683 -27.657438855786523, 153.17070995332648 -27.656716629573232, 153.17019496919747 -27.656754641598383, 153.17019496919747 -27.656013404729244, 153.17178283693531 -27.656013404729244, 153.17184720994808 -27.656925695546867, 153.17173992158448 -27.656982713470203, 153.17173992158448 -27.657438855786523, 153.17201887132438 -27.657438855786523, 153.17204032899531 -27.657685932079655, 153.17182575227716 -27.657742949606533, 153.17173992158448 -27.657933007815213, 153.17195449831164 -27.657914002008742, 153.1719115829608 -27.658123065692696, 153.17208324433713 -27.658199088751012, 153.17204032899531 -27.658731248681416, 153.17229782106432 -27.659130366928881, 153.1722549057225 -27.659339428285968, 153.172383651748 -27.659719538821246, 153.172126159688 -27.659795560770174, 153.17216907502981 -27.6599666099608, 153.17229782106432 -27.660061637172742, 153.17259822847515 -27.659985615409635, 153.17294155122784 -27.660137658883777, 153.17337070466417 -27.660897873080817, 153.17178283693531 -27.661506040632425, 153.17135368348997 -27.660574782692677, 153.17122493745546 -27.6602516913504, 153.17077432633923 -27.6598905881308, 153.1704953766083 -27.659225394867732, 153.16967998506846 -27.659035338906623))\n17136044\tThe Grange Stage 1\tCheck with carrier\tPOLYGON ((146.10346992 -37.0329309885, 146.102594048 -37.0371459545, 146.10454416 -37.0374710365, 146.104747936 -37.036379962, 146.105065088 -37.036523966000004, 146.105304832 -37.0364010335, 146.105142848 -37.035716034000004, 146.105380096 -37.035594008000004, 146.105236096 -37.035378002, 146.105058976 -37.035453963, 146.105479072 -37.0332140385, 146.10346992 -37.0329309885))\nAYAA-GR8ZS\tElizabeth Hills\tReady for service\tPOLYGON ((150.847407166737 -33.8975584538271, 150.847077063063 -33.8976326389823, 150.846945809376 -33.8976402580106, 150.846392347883 -33.8984638088466, 150.846258337327 -33.8984302483363, 150.84612555202 -33.8986748026648, 150.846080225695 -33.8988348709925, 150.845983885111 -33.8990966990744, 150.845896167807 -33.8990783832547, 150.845794195877 -33.8990629995033, 150.845680504498 -33.8990546327562, 150.845658851399 -33.8993233145574, 150.845602494386 -33.8994791973774, 150.8453208783 -33.8994818841775, 150.845250713987 -33.899533543924, 150.845237738615 -33.8996641169648, 150.845233465079 -33.8996978956928, 150.845227314742 -33.8997245855622, 150.845213250255 -33.8997638293775, 150.845195978834 -33.899797440562, 150.845178453307 -33.8998239709687, 150.845159937328 -33.8998470717241, 150.845127803736 -33.8998793953146, 150.8450985531 -33.8999028903783, 150.844503786035 -33.9003349946155, 150.844497489419 -33.9004113060449, 150.84435527985 -33.9005139790706, 150.844249137809 -33.900412391684, 150.843988303949 -33.9006018866037, 150.84469140689 -33.9012748316359, 150.844952212039 -33.9010852673005, 150.845011852476 -33.9011423703931, 150.845153680796 -33.9010393314212, 150.84540594009 -33.9008560627534, 150.845469855967 -33.9009172333492, 150.845825797249 -33.9006806918603, 150.847108109478 -33.9005021244586, 150.847087432304 -33.900428778449, 150.847413802423 -33.9003652907263, 150.847511369469 -33.9003461294801, 150.847445857977 -33.9001167511974, 150.849695454665 -33.8998954575961, 150.849910869951 -33.8998742857011, 150.849881097023 -33.8998086272625, 150.849845381576 -33.8997478515436, 150.849799475765 -33.8996856812185, 150.849767992012 -33.8996498428171, 150.849702209188 -33.8995872466935, 150.849642215599 -33.8995408661904, 150.8495824126 -33.8995023381281, 150.849497142855 -33.8994580199911, 150.849375054546 -33.8993953934817, 150.849289149441 -33.8993419002526, 150.849208385074 -33.8992830219043, 150.849141836404 -33.8992269180733, 150.849077663822 -33.8991647437189, 150.84903127806 -33.899113626165, 150.84897267983 -33.8990393550472, 150.848916662378 -33.8989542257239, 150.848890447108 -33.8989075341638, 150.848846114155 -33.8988127554792, 150.848811116972 -33.8987189887619, 150.848766172886 -33.8986206584265, 150.848726706291 -33.8985516143819, 150.848682146011 -33.8984855547148, 150.84862728589 -33.898416170646, 150.848572760872 -33.8983567322383, 150.848539015304 -33.8983236919911, 150.848475904213 -33.8982681744652, 150.848393140984 -33.8982055604599, 150.848306069251 -33.8981498096962, 150.848228931429 -33.8981076612542, 150.848151469135 -33.8980712726298, 150.848096801679 -33.8980458282773, 150.848019992262 -33.8980038147239, 150.847941613871 -33.8979521101811, 150.847880551515 -33.8979042646809, 150.847830331701 -33.8978587145906, 150.847782526568 -33.8978087719107, 150.84775102677 -33.8977750502156, 150.847726960565 -33.8977558992533, 150.847696860083 -33.8977378062635, 150.847655165174 -33.8977179672818, 150.84763885753 -33.8977048377059, 150.847622012342 -33.8976795423678, 150.847616837892 -33.8976530107345, 150.847604323321 -33.8975136581674, 150.847407166737 -33.8975584538271))\nAYCA-1JH740\tCockburn Coast\tContracted\tPOLYGON ((115.761090935601 -32.0863006079454, 115.761039017858 -32.0862992130994, 115.761031659925 -32.0863963005139, 115.760977209351 -32.0864507507975, 115.760889483571 -32.0864931009263, 115.760001134779 -32.0867391346993, 115.759780308828 -32.0861492549926, 115.761070784971 -32.0857968659266, 115.761082760018 -32.0843471300156, 115.761082760018 -32.0843201300157, 115.761056760018 -32.0843201300155, 115.760604760018 -32.0843171300148, 115.760339760017 -32.0843161300142, 115.760074760017 -32.0843141300137, 115.759810760016 -32.0843131300133, 115.759545760016 -32.0843111300127, 115.759412760016 -32.0843111300125, 115.759280760016 -32.0843101300122, 115.759015760015 -32.0843081300117, 115.758750760015 -32.0843071300113, 115.758486760015 -32.0843051300107, 115.758488760016 -32.0839451300108, 115.758171760015 -32.0839431300102, 115.758167760014 -32.0843031300101, 115.758132760014 -32.08433313001, 115.757663760013 -32.0847251300092, 115.757608760012 -32.0847721300091, 115.757597760012 -32.0847721300091, 115.757097760012 -32.0847681300082, 115.75611076001 -32.0847601300063, 115.75620776001 -32.0851251300064, 115.756394760009 -32.0853691300067, 115.756553760009 -32.085578130007, 115.756708760009 -32.0857081300073, 115.75674144548 -32.0857355997658, 115.757242310406 -32.0855129918071, 115.75745204628 -32.0857549938053, 115.75705058822 -32.0860235565776, 115.757067760008 -32.086041130008, 115.757363760008 -32.0863431300085, 115.757517760008 -32.0865001300088, 115.757630760008 -32.086615130009, 115.757777760008 -32.0866311300092, 115.758102760009 -32.0864291300099, 115.758317760009 -32.0865191300103, 115.75829753958 -32.0865316474744, 115.758318979771 -32.0865406223923, 115.758436189361 -32.0865183077246, 115.759536290065 -32.0862168136804, 115.759748041172 -32.086800643254, 115.759647207074 -32.0868248433595, 115.760026341955 -32.087853350037, 115.760877380613 -32.0876244581443, 115.760809822307 -32.087436906966, 115.760341952523 -32.0875679904047, 115.760123143637 -32.0869871865425, 115.760922758058 -32.086769386275, 115.761062766512 -32.086754168311, 115.761090935601 -32.0863006079454))\nAYCA-GKAGS\tParks Edge @ Casey Fields\tReady for service\tPOLYGON ((145.304366851953 -38.1198055463689, 145.304838013257 -38.1200624371428, 145.306640018578 -38.1202922624774, 145.307274004391 -38.1172534436857, 145.306969055836 -38.1171320028274, 145.307090436175 -38.1163445544295, 145.3051159885 -38.1160828890201, 145.304751223958 -38.1178660548879, 145.30462854761 -38.1178604743403, 145.304515303331 -38.1183451487173, 145.304602481026 -38.1185931628573, 145.304366851953 -38.1198055463689))\nAYCA-13X8OH\tRiemore Downs Estate\tContracted\tPOLYGON ((153.10899288 -27.8859651299838, 153.1082718 -27.8857466099837, 153.10694196 -27.8860976099837, 153.10615716 -27.8869849199837, 153.1058616 -27.8871999299838, 153.1043604 -27.8882738099837, 153.104328359999 -27.889026930002, 153.10554696 -27.8890613999838, 153.10553544 -27.8893862099838, 153.10555776 -27.8894927699838, 153.10561356 -27.8895889799838, 153.10569924 -27.8896660199837, 153.10593072 -27.8898286499837, 153.10605672 -27.8896869899838, 153.106855200001 -27.8891225999833, 153.107606310843 -27.8884084420304, 153.107605486388 -27.8884057177254, 153.107699918897 -27.8882502923314, 153.107702985028 -27.8882495597883, 153.10809288 -27.8877602699838, 153.10854 -27.8871631199838, 153.10859976 -27.8869904099838, 153.10899288 -27.8859651299838))\nAYCA-19PWB1\tLot 1032 Redgate Road\tUnder construction\tPOLYGON ((115.09022781127 -34.0292127594157, 115.090007839273 -34.0292091001379, 115.090037318285 -34.0299941550665, 115.089622127213 -34.0299902016492, 115.089785285246 -34.0303597866311, 115.089851668122 -34.0303801671965, 115.089790686836 -34.0309008841065, 115.089780823735 -34.0313828356501, 115.089417261069 -34.0313778037934, 115.089390439485 -34.0327209148713, 115.09115819746 -34.0327183136638, 115.091183496668 -34.0315996825091, 115.091104435839 -34.0314205568758, 115.09121799056 -34.0309930064421, 115.092251067815 -34.0308937264603, 115.094280210092 -34.0308575216578, 115.09429061189 -34.0300155993109, 115.09392187709 -34.0300078537536, 115.092980689211 -34.0300867569474, 115.091515604547 -34.030130136729, 115.091508367169 -34.0296692684293, 115.091624493688 -34.0291719058638, 115.091759506321 -34.0292059095763, 115.091960395795 -34.0292414549366, 115.092374675123 -34.0293094754884, 115.092775225669 -34.02931916173, 115.093371688626 -34.0292768786934, 115.093673297131 -34.0292207665398, 115.093796649975 -34.0292128813814, 115.093927130892 -34.0292291729146, 115.093956591415 -34.0290505263969, 115.093795029314 -34.0290303541371, 115.093687877624 -34.0289881608895, 115.09365116938 -34.0289494387696, 115.093589587891 -34.0289586324338, 115.09358594501 -34.0291214617195, 115.093366390111 -34.0291686776671, 115.092781040028 -34.0292110706391, 115.092377586625 -34.0292014904564, 115.091871150492 -34.0291095009064, 115.091927766955 -34.028888797666, 115.091854996182 -34.0288791738082, 115.091722873545 -34.0289475576447, 115.091718900085 -34.0289482854967, 115.091207396233 -34.0287787296384, 115.091046174714 -34.028688598353, 115.090789395794 -34.0286454110088, 115.090620604026 -34.0287057171753, 115.090249165946 -34.0286820035546, 115.09022781127 -34.0292127594157))\nAYCA-11PKDA\tMount Margaret\tReady for service\tPOLYGON ((146.599826077646 -19.3405234999658, 146.600011202476 -19.3392474292103, 146.600048928235 -19.3392523606346, 146.600217035069 -19.3380935748001, 146.598571237126 -19.3378794789863, 146.598571235636 -19.3378794889764, 146.598398482833 -19.3390372380188, 146.598359679292 -19.339032622879, 146.598267442291 -19.339563643344, 146.598314134299 -19.3395710578548, 146.598160977845 -19.3405786986208, 146.598316439693 -19.3419507396113, 146.598359884405 -19.3419510326834, 146.598320076364 -19.3424977894569, 146.59846602759 -19.3425212972609, 146.598411947893 -19.3427994161251, 146.598285147643 -19.3435797184797, 146.598325677267 -19.3436132007861, 146.598491304683 -19.3436580160682, 146.599470299417 -19.3436800724125, 146.5995826749 -19.3429652462856, 146.599853590575 -19.3430093662822, 146.600005769221 -19.3422034656033, 146.599826077646 -19.3405234999658))\nAYCA-XGZCF\tFrench Street Werrington\tContracted\tPOLYGON ((150.735713999989 -33.7607850000147, 150.735765999989 -33.7608150000148, 150.735996999989 -33.7609200000148, 150.736247999989 -33.7609830000147, 150.739846999989 -33.7614990000148, 150.739949999989 -33.7614790000148, 150.740003999989 -33.7614140000148, 150.740206999989 -33.7603520000148, 150.740041999989 -33.7603290000148, 150.738521999989 -33.7601070000148, 150.738377999989 -33.7601770000148, 150.737927999989 -33.7603070000148, 150.737644999989 -33.7596890000147, 150.737340999989 -33.7589110000148, 150.737453999989 -33.7584100000148, 150.735378999989 -33.7585740000147, 150.735038999989 -33.7586020000147, 150.734813999989 -33.7596810000148, 150.735141999989 -33.7597280000147, 150.735006999989 -33.7604060000148, 150.735183999989 -33.7604310000147, 150.735112999989 -33.7607540000147, 150.735172999989 -33.7607610000148, 150.735188999989 -33.7606830000147, 150.735251999989 -33.7606420000148, 150.735279999989 -33.7606450000148, 150.735360999989 -33.7606570000147, 150.735387999989 -33.7606620000147, 150.735414999989 -33.7606680000148, 150.735441999989 -33.7606750000148, 150.735493999989 -33.7606890000147, 150.735519999989 -33.7606980000147, 150.735569999989 -33.7607160000147, 150.735594999989 -33.7607260000148, 150.735619999989 -33.7607370000147, 150.735643999989 -33.7607480000147, 150.735667999989 -33.7607600000147, 150.735690999989 -33.7607720000148, 150.735713999989 -33.7607850000147))\nAYAA-FG08V\tHighfields North Estate\tReady for service\tPOLYGON ((151.942094713239 -27.4330973824287, 151.941985583149 -27.4340910206424, 151.942577485516 -27.434200135462, 151.944128602024 -27.4344023373556, 151.945933819434 -27.4345492849747, 151.947107552696 -27.4347030627409, 151.947026238329 -27.4352047729362, 151.947313305849 -27.4352425797236, 151.947242151389 -27.4356532027283, 151.947274540484 -27.4358741815765, 151.947186466965 -27.4362985122791, 151.948432099501 -27.4365331313708, 151.948538218727 -27.4361264300459, 151.94882882479 -27.4338627163468, 151.94737811798 -27.4337066590081, 151.946895858645 -27.4337365012545, 151.942094713239 -27.4330973824287))\nAYCA-13WQNT\tThe Fairways\tReady for service\tPOLYGON ((152.481257 -27.5270719999815, 152.48144 -27.5279599999814, 152.4815 -27.5281339999814, 152.48159 -27.5290499999815, 152.482317 -27.5290179999815, 152.481527904139 -27.5331587720508, 152.48257452 -27.5333147099809, 152.48265 -27.5331029999815, 152.48312 -27.5306409999814, 152.483766 -27.5271879999815, 152.48269 -27.5270319999815, 152.482732 -27.5268309999815, 152.481257 -27.5270719999815))\nAYCA-1UJIVI\tEden Park Estate\tUnder construction\tPOLYGON ((146.643857 -19.2357979999108, 146.643817 -19.2362139999108, 146.644241 -19.2362509999108, 146.644226 -19.2364039999108, 146.644464 -19.2364249999108, 146.644459 -19.2364809999108, 146.644505 -19.2364849999108, 146.64451 -19.2364289999108, 146.645142 -19.2364849999108, 146.64503 -19.2376249999108, 146.645064 -19.2376669999108, 146.644285 -19.2382159999109, 146.644663 -19.2382499999108, 146.6445511058 -19.2392085565207, 146.644919279836 -19.2394042188509, 146.64595806 -19.2383790299099, 146.646454 -19.2390039999109, 146.646447 -19.2390849999108, 146.646383 -19.2391429999108, 146.646476 -19.2392389999109, 146.646914 -19.2389219999108, 146.646843 -19.2388109999108, 146.646765 -19.2388559999108, 146.646681 -19.2388409999108, 146.646183 -19.2382199999108, 146.646952 -19.2376689999108, 146.646714 -19.2369589999107, 146.646827 -19.2363449999108, 146.646959 -19.2349949999108, 146.646233 -19.2349309999108, 146.646237 -19.2348799999108, 146.646191 -19.2348759999108, 146.646186 -19.2349279999108, 146.645948 -19.2349069999108, 146.645937 -19.2350199999108, 146.643947 -19.2348439999108, 146.643882 -19.2355279999108, 146.643832 -19.2355239999108, 146.643828 -19.2355669999108, 146.643878 -19.2355719999108, 146.643861 -19.2357549999108, 146.643832 -19.2357519999108, 146.643827 -19.2357959999108, 146.643857 -19.2357979999108))\n216\tMartha Cove\tReady for service\tPOLYGON ((145.00656717872238 -38.305508862891941, 145.00934594726363 -38.3047258825848, 145.01082652663789 -38.304927942828023, 145.01007550811082 -38.305601472906709, 145.01063340759063 -38.306106616361639, 145.01020425414532 -38.306796973394292, 145.00979655837088 -38.307133730538141, 145.00960343932363 -38.307066379234733, 145.00934594726363 -38.307756727131675, 145.00814431762026 -38.307622025619359, 145.00801557158579 -38.3077230517774, 145.00685685729326 -38.307554674768667, 145.00672811125875 -38.307150568354039, 145.00732892608045 -38.307049541398584, 145.00689977263511 -38.30624132068904, 145.00599855041156 -38.30556779655177, 145.00656717872238 -38.305508862891941))\nAYAA-GPFH1\tThe Ponds\tReady for service\tPOLYGON ((150.914964008876 -33.692786388454, 150.915339715868 -33.6941959472157, 150.91565199404 -33.6950567296203, 150.915756014582 -33.6952889934625, 150.915859248647 -33.695403763831, 150.916031100949 -33.695518808475, 150.91626286665 -33.6956524237684, 150.91634590563 -33.6959279722518, 150.916841323935 -33.6960848155545, 150.917750237218 -33.6958810432285, 150.918231688962 -33.6957748930151, 150.918678466616 -33.6956527248958, 150.918526523813 -33.6951990934403, 150.918350050606 -33.6952407393023, 150.917040125681 -33.692010074656, 150.914952202352 -33.692671961697, 150.914964008876 -33.692786388454))\nAYCA-HKY43\tEvans Park Industrial\tReady for service\tPOLYGON ((145.25217316435 -38.0918557555374, 145.252352131635 -38.0937029027822, 145.25502553832 -38.0939173722295, 145.255485956684 -38.0917255184005, 145.254839109685 -38.0916283625943, 145.254802266169 -38.0915114602206, 145.254837453686 -38.0914264441601, 145.255091008631 -38.0913179877408, 145.255280376605 -38.0912677829065, 145.255447770061 -38.0912490393163, 145.255587462111 -38.091242479177, 145.255663976613 -38.0908927906176, 145.254540190618 -38.0909495709887, 145.252183772346 -38.0906767405087, 145.25217316435 -38.0918557555374), (145.254120650953 -38.0926864860118, 145.254414738268 -38.0927260615739, 145.254387830456 -38.0928483988178, 145.254091028572 -38.0928070192977, 145.254120650953 -38.0926864860118))\n17322659\tLockhart River Subdivision\tCheck with carrier\tPOLYGON ((143.341381088 -12.779468007, 143.33979888 -12.782075045500001, 143.341139168 -12.783976013, 143.341275968 -12.784110027, 143.341590976 -12.7841229955, 143.343394912 -12.779987043, 143.341381088 -12.779468007))\nAYCA-1J5EEA\tLot 10,50 \u0026 700 Ocean Reef Gnangara\tUnder construction\tPOLYGON ((115.858690851779 -31.7877473878712, 115.85868092483 -31.7920819118736, 115.859463024732 -31.7920833083693, 115.860955544326 -31.7907506335753, 115.861301985059 -31.7903717628518, 115.861585345495 -31.7901080274157, 115.861836217749 -31.789757302786, 115.86203708454 -31.7893691606227, 115.862182271661 -31.7889036426855, 115.862215701785 -31.788641236896, 115.862024643585 -31.788640301455, 115.860869889682 -31.7886383928703, 115.860869331799 -31.7888839678841, 115.860435371501 -31.7888832479256, 115.860435331362 -31.7889008804606, 115.860413440138 -31.7889007125347, 115.860414079203 -31.7888786790885, 115.860224301459 -31.7888377628841, 115.860224677711 -31.7886726429525, 115.859426803494 -31.7886713140615, 115.859428164918 -31.7880760933729, 115.85908571031 -31.7880755214658, 115.859086727687 -31.7876314314528, 115.858827651508 -31.7876309981766, 115.858690851779 -31.7877473878712))\nAYAA-IGZL9\tTaylors Hill Estate\tReady for service\tPOLYGON ((144.739097452396 -37.7193046518177, 144.738942479989 -37.7201107800215, 144.740588824092 -37.7202872999735, 144.740521889264 -37.7206362018072, 144.740592698212 -37.7207944405057, 144.740530864867 -37.721064959932, 144.74095199999 -37.7211130000215, 144.741426160118 -37.7211850599422, 144.741374474772 -37.721567996865, 144.742449501997 -37.7217113296445, 144.742419644656 -37.7218671907339, 144.743418143053 -37.7219845685882, 144.743569155796 -37.7211105187121, 144.74362399849 -37.7211116881874, 144.743734226492 -37.7206566279265, 144.74462899999 -37.7207570000217, 144.744817136933 -37.7199818224277, 144.743907979584 -37.7198493150557, 144.743958924522 -37.7195164089979, 144.743403482197 -37.719449186258, 144.743405230737 -37.7194805393703, 144.742994558856 -37.7194279507689, 144.74296363837 -37.7194190174253, 144.741600048914 -37.7192619458365, 144.7414074903 -37.7193088940246, 144.741362105012 -37.7194479729564, 144.741208208034 -37.7195557867755, 144.739097452396 -37.7193046518177))\n10788\tWWP LBNCo\tReady for service\tPOLYGON ((151.07364177703857 -33.828184078700204, 151.07434988021851 -33.828576230404437, 151.07316970825195 -33.829966571952788, 151.07610940933228 -33.831624257324457, 151.07450008392334 -33.833299734605355, 151.07308387756348 -33.832533296945705, 151.07306241989136 -33.831677730510926, 151.07196807861328 -33.831053874587312, 151.0719895362854 -33.830394364803375, 151.07237577438354 -33.829663550721776, 151.07364177703857 -33.828184078700204))\n17321918\tOnslow Townsite Development\tCheck with carrier\tPOLYGON ((115.114884832 -21.646846974, 115.114854944 -21.646801982, 115.114663072 -21.6469369765, 115.114385888 -21.647162972500002, 115.114272128 -21.647265037, 115.114157984 -21.647389042500002, 115.113930112 -21.647631966000002, 115.113580928 -21.648221006, 115.114033088 -21.6487220415, 115.115069152 -21.64934403, 115.115622112 -21.6484839835, 115.116054848 -21.648740042, 115.11625392 -21.648803034500002, 115.116332032 -21.648576964500002, 115.116713984 -21.648772972, 115.120304992 -21.650003999, 115.120316864 -21.649947037500002, 115.12044288 -21.649652018, 115.119906848 -21.649452033, 115.11987696 -21.6494180115, 115.119960832 -21.6492020055, 115.119828 -21.649167984, 115.11739008 -21.648371041, 115.117485824 -21.648042, 115.117413824 -21.647724022000002, 115.117335008 -21.6477469805, 115.11726912 -21.647536025, 115.117364864 -21.6475080345, 115.117323104 -21.6473830115, 115.11719712 -21.6474229715, 115.117135904 -21.647150004, 115.117287104 -21.6471169815, 115.117134848 -21.646475013, 115.11684 -21.646524963, 115.116743872 -21.6466270275, 115.116491872 -21.646683008500002, 115.116468128 -21.646598038, 115.11543888 -21.646798023000002, 115.115150144 -21.6468819945, 115.11502992 -21.647000968, 115.114884832 -21.646846974))\nAYCA-DWNVE\tMaranda Heights\tReady for service\tPOLYGON ((148.150065640099 -23.56451394267, 148.150449700985 -23.5645736452843, 148.150634908097 -23.5645381798324, 148.1532585439 -23.564942519237, 148.15341450681 -23.5649457598532, 148.153800884863 -23.5650054338738, 148.153662790088 -23.5657653927021, 148.15375940656 -23.5657802941227, 148.153710906947 -23.5660475179015, 148.153688553079 -23.5660440719657, 148.153685378504 -23.5660619144899, 148.153716544855 -23.5661632913139, 148.15375478207 -23.5661687634497, 148.153732311578 -23.5662150891837, 148.153865373584 -23.5662362025245, 148.153985733082 -23.5662360635964, 148.1541179334 -23.5662937360291, 148.154307765426 -23.5663234027773, 148.15431406638 -23.5662848782465, 148.154406980783 -23.5662994702801, 148.154456276568 -23.5661875127624, 148.154656970472 -23.5650800707997, 148.155976904329 -23.5652838935409, 148.156078739962 -23.5651879497769, 148.156175125603 -23.5650627553474, 148.156442287763 -23.5648110017567, 148.156293895584 -23.5646188716433, 148.156145380358 -23.5646165156674, 148.155863807086 -23.5642608653206, 148.155915141618 -23.5640856420214, 148.156084749941 -23.5638101355491, 148.154789599126 -23.5636028914523, 148.154471103126 -23.5638297939529, 148.150299391121 -23.5631837369502, 148.150065640099 -23.56451394267), (148.150837820423 -23.5637709827387, 148.151165220456 -23.5638277257685, 148.151113683614 -23.5640731217168, 148.150734592095 -23.5640025349348, 148.150781795974 -23.5637912367015, 148.150805285211 -23.5637775076428, 148.150837820423 -23.5637709827387))\nAYCA-TZAP5\tFrizzo Road, Palmview\tReady for service\tPOLYGON ((153.03774225061 -26.7508125378843, 153.037338997745 -26.7509453465355, 153.037498949599 -26.751336792408, 153.037486304023 -26.7513395038987, 153.037341394565 -26.7513759701576, 153.037211444576 -26.7514440117263, 153.037183401406 -26.7514692435167, 153.03714253725 -26.751484863899, 153.037110255786 -26.7514765877426, 153.037016623152 -26.7515940756862, 153.037035928721 -26.7516188135469, 153.037029683998 -26.7516564309655, 153.036989952504 -26.7517866922739, 153.03698863327 -26.7519217438167, 153.037043426207 -26.7521880768183, 153.037090760604 -26.7523164512626, 153.037156365464 -26.7524392541694, 153.037253708791 -26.7525515287847, 153.037372249146 -26.7526381824204, 153.037499926493 -26.7527037601801, 153.037642356669 -26.7527385477593, 153.037791982747 -26.7527526074713, 153.038695126763 -26.7526698344927, 153.038847668988 -26.7526483652244, 153.038993821996 -26.7526159837388, 153.039135695713 -26.7525704950706, 153.039264585357 -26.7525131412792, 153.03940189119 -26.7524444325106, 153.039520390701 -26.7523654000557, 153.039652051631 -26.752303628619, 153.039793496338 -26.7522653150953, 153.03994757737 -26.7522626499617, 153.04009421714 -26.7522924058517, 153.040232410323 -26.7523528460523, 153.04035517107 -26.752419542269, 153.040503967445 -26.75246650305, 153.04064523221 -26.7524865584627, 153.040803005042 -26.752479926157, 153.040949326361 -26.7524484057012, 153.041078804896 -26.7523931585052, 153.041365820374 -26.7522435806698, 153.041597404332 -26.7519183525095, 153.041633825792 -26.7516039698818, 153.041620237167 -26.7514131289237, 153.041572424251 -26.7512694921183, 153.041489952469 -26.7511386995697, 153.041408360589 -26.7510584496003, 153.041342084732 -26.7510058764297, 153.041249704515 -26.7509482819623, 153.041227356208 -26.7509311471788, 153.041087390127 -26.7507452500765, 153.041062074422 -26.7506843114282, 153.041017278588 -26.7506397044588, 153.041003427322 -26.7506326612513, 153.040959442987 -26.7506102957134, 153.040908753975 -26.7505903070137, 153.040870145446 -26.7505432598073, 153.040815943059 -26.7504170308687, 153.040656640114 -26.7504333317386, 153.039872387567 -26.7504912107393, 153.039780101977 -26.7499544545324, 153.039605569603 -26.7498432439417, 153.039274844539 -26.7498883848455, 153.038978872516 -26.7500090196341, 153.03855766404 -26.7502104453077, 153.038786054712 -26.7505298686886, 153.03774225061 -26.7508125378843))\n221\tCanberra Centre\tReady for service\tPOLYGON ((149.13330946921718 -35.281321454784489, 149.13175378799019 -35.278851597086927, 149.13205419540103 -35.278553807736728, 149.13429652213335 -35.277572846839227, 149.13598094939485 -35.280331769078323, 149.13330946921718 -35.281321454784489))\n303\tRochedale\tUnder construction\tPOLYGON ((153.11353598593286 -27.585841634265535, 153.11306928156117 -27.588161844983617, 153.11418508051185 -27.588361532955862, 153.11402951239097 -27.589255369897867, 153.11455522535994 -27.58933619522028, 153.11477516649359 -27.588475640205303, 153.11644350050861 -27.588765662263317, 153.11692093371124 -27.586312336720376, 153.11353598593286 -27.585841634265535))\n1\tDFO Perth\tReady for service\tPOLYGON ((115.94954840593766 -31.940804813395204, 115.94935528688859 -31.940768395635867, 115.94920508318376 -31.940677351174383, 115.94886176042985 -31.940021828389209, 115.94729535036515 -31.937700147588767, 115.94732753687333 -31.9375362620222, 115.94744555406999 -31.9374087952684, 115.94840042047929 -31.936598466771187, 115.94846479349565 -31.936735039490355, 115.94865791254472 -31.937035498758242, 115.94895831995439 -31.937190280422044, 115.94955913477372 -31.937354166605513, 115.94977371149491 -31.937463423898812, 115.94994537287187 -31.937436109587665, 115.95008484774064 -31.937490738201856, 115.95015994959306 -31.937627309595261, 115.95017067842912 -31.937700147588767, 115.95139376573991 -31.939694065243287, 115.95128647737931 -31.939821528827814, 115.9511577313466 -31.939930783188142, 115.95075003557633 -31.940131082511435, 115.95051400118302 -31.940131082511435, 115.95036379747819 -31.940386008291537, 115.95021359377336 -31.940458844098831, 115.94954840593766 -31.940804813395204))\n4\tDFO Perth\tUnder construction\tPOLYGON ((115.94954840593766 -31.940804813395204, 115.94935528688859 -31.940768395635867, 115.94920508318376 -31.940677351174383, 115.94886176042985 -31.940021828389209, 115.94729535036515 -31.937700147588767, 115.94732753687333 -31.9375362620222, 115.94744555406999 -31.9374087952684, 115.94840042047929 -31.936598466771187, 115.94846479349565 -31.936735039490355, 115.94865791254472 -31.937035498758242, 115.94895831995439 -31.937190280422044, 115.94955913477372 -31.937354166605513, 115.94977371149491 -31.937463423898812, 115.94994537287187 -31.937436109587665, 115.95008484774064 -31.937490738201856, 115.95015994959306 -31.937627309595261, 115.95017067842912 -31.937700147588767, 115.95139376573991 -31.939694065243287, 115.95128647737931 -31.939821528827814, 115.9511577313466 -31.939930783188142, 115.95075003557633 -31.940131082511435, 115.95051400118302 -31.940131082511435, 115.95036379747819 -31.940386008291537, 115.95021359377336 -31.940458844098831, 115.94954840593766 -31.940804813395204))\nAYCA-1ESEJE\tJimboomba Woods\tReady for service\tPOLYGON ((153.046517 -27.8674779999843, 153.047292 -27.8676379999843, 153.047385 -27.8674379999843, 153.047662 -27.8669429999842, 153.047894 -27.8667659999843, 153.048394 -27.8674089999842, 153.048984 -27.8671069999842, 153.050357 -27.8664909999842, 153.050611 -27.8647039999842, 153.050562 -27.8644289999842, 153.04997 -27.8640809999842, 153.048955 -27.8637309999842, 153.04889 -27.8636609999842, 153.048754 -27.8636559999842, 153.049152 -27.8647029999842, 153.048096 -27.8647009999842, 153.047718 -27.8656059999842, 153.04732 -27.8658169999842, 153.046455 -27.8660269999842, 153.046649 -27.8666909999842, 153.046896 -27.8667799999843, 153.046517 -27.8674779999843))\nAYAA-EOFUR\tThe Village at Wellard\tReady for service\tPOLYGON ((115.825448154138 -32.267305140479, 115.825318073411 -32.2673799658144, 115.824483391086 -32.2675032922359, 115.824020494884 -32.2675295246805, 115.823297779952 -32.2676586620431, 115.822724782393 -32.2676273250088, 115.822527959937 -32.2679481525969, 115.822576128595 -32.2682929480174, 115.822468926391 -32.2683233851846, 115.822388585704 -32.2682755666419, 115.822237589087 -32.2673971506613, 115.82207462171 -32.267406061104, 115.822397039371 -32.2691206181421, 115.821622058215 -32.2695137421931, 115.821304819626 -32.2696489034671, 115.821131808278 -32.2697437470647, 115.821080879495 -32.2698605837195, 115.821023015246 -32.2700681588596, 115.820868176946 -32.2704297879314, 115.820512166682 -32.2709894994044, 115.820651966954 -32.2710284786131, 115.820747495892 -32.2708447315849, 115.820841806278 -32.2708424125916, 115.820935068912 -32.2708302029538, 115.820990068174 -32.2708144729134, 115.821039716981 -32.2707889639871, 115.821097356526 -32.2707476691503, 115.821150380892 -32.2707019503021, 115.821333485855 -32.2708187426637, 115.821450533689 -32.2707465424367, 115.822160414502 -32.2712350390111, 115.822631821452 -32.2716070965358, 115.822674000257 -32.2715954232431, 115.82284851002 -32.2715314621788, 115.822735311253 -32.2714422480086, 115.822853999999 -32.2711990000124, 115.822909999999 -32.2711400000123, 115.823229999999 -32.2713640000125, 115.823283999999 -32.2713050000125, 115.823317999999 -32.2707740000124, 115.823310999999 -32.2707260000124, 115.823213999999 -32.2703560000119, 115.823120373442 -32.2700625972209, 115.823021111382 -32.2700772102469, 115.822914893564 -32.2697472258825, 115.823049179611 -32.2697203248841, 115.822880376374 -32.2690856399065, 115.822852469075 -32.2688606925828, 115.823216456629 -32.2688258447616, 115.823205760484 -32.268731417847, 115.823351764258 -32.2687185521809, 115.823362313184 -32.2686783982199, 115.824394366192 -32.2685667894419, 115.824428907715 -32.268835839173, 115.824553303904 -32.2688246577551, 115.824589135037 -32.2687849775746, 115.824561549201 -32.2686070464961, 115.824633266058 -32.2685992610553, 115.824667864683 -32.2687541303507, 115.824703710865 -32.2688380910895, 115.824760085121 -32.2688297758899, 115.824757171018 -32.2687251790065, 115.825105974105 -32.2686936630111, 115.825380334941 -32.268956807801, 115.825576999999 -32.2688400000125, 115.826263999999 -32.2685660000123, 115.826127999999 -32.2682960000123, 115.826054999999 -32.2679180000124, 115.826238999999 -32.2673050000123, 115.826233999999 -32.2672280000124, 115.825696255448 -32.2672241102793, 115.825448154138 -32.267305140479))\nAYCA-1MFJ8K\tTindal Avenue, Beeliar\tContracted\tPOLYGON ((115.808275026027 -32.1325105806847, 115.805730142837 -32.1325187418212, 115.805739991575 -32.1360607664772, 115.807427054823 -32.1360754027696, 115.807927530795 -32.1360745564477, 115.807927521795 -32.1361683153306, 115.80816064158 -32.136168331321, 115.808203712187 -32.1343991552137, 115.808203412073 -32.1336958430864, 115.808203305415 -32.1334460152042, 115.808253727292 -32.1334469960506, 115.808270931464 -32.1329093130109, 115.808275026027 -32.1325105806847))\n10105\tBaldivis-Tuart Ridge\tReady for service\tPOLYGON ((115.82120776176453 -32.338481281482558, 115.82126140594482 -32.3388257441078, 115.81986665725708 -32.338789484945835, 115.82015633583069 -32.339496535983677, 115.81992030143738 -32.33950786688483, 115.81865966320038 -32.339503334524537, 115.81861943006516 -32.339217795368782, 115.81827342510223 -32.339220061556105, 115.81828147172928 -32.3393175075573, 115.81803202629089 -32.339856857945314, 115.81777185201645 -32.339770743393125, 115.81771552562714 -32.339893116679612, 115.81755459308624 -32.339836462400896, 115.81731051206589 -32.340378075854225, 115.81725150346756 -32.340502714474624, 115.81727832555771 -32.340516311404649, 115.81715494394302 -32.340783717279869, 115.81674993038177 -32.340645482137951, 115.81648975610733 -32.341207485989138, 115.81696182489395 -32.341352518674462, 115.81690818071365 -32.341468091429157, 115.81726491451263 -32.341610857569371, 115.81778258085251 -32.341871461847674, 115.81782013177872 -32.341826139418416, 115.81808567047119 -32.341996098411109, 115.81841826438904 -32.341687905868945, 115.81876426935196 -32.3413389218701, 115.81900298595428 -32.341110042023139, 115.81928730010986 -32.340874363159926, 115.81975668668747 -32.340650014441024, 115.82011342048645 -32.340538972950142, 115.82008928060532 -32.340484585231415, 115.82055598497391 -32.340348615791605, 115.82077860832214 -32.34031235723981, 115.82104682922363 -32.3408381048188, 115.82196950912476 -32.340684006706923, 115.82152962684631 -32.338435957355323, 115.82120776176453 -32.338481281482558))\nAYAA-F614T\tArise\tReady for service\tPOLYGON ((153.119916821364 -27.5771672189534, 153.120828675565 -27.5773147032521, 153.120848099265 -27.5772121832521, 153.121222908166 -27.5772697464516, 153.121378424166 -27.5771646187514, 153.121337222466 -27.5771128073514, 153.121387141366 -27.5771203548513, 153.121395150666 -27.5770776033515, 153.122486012568 -27.5772421196498, 153.122889968169 -27.5751188978495, 153.122096056668 -27.5749981835506, 153.121917615267 -27.5750289693508, 153.121418389066 -27.5746563062515, 153.121348957066 -27.5745102823516, 153.121126899966 -27.5743155688521, 153.121157171666 -27.574288262452, 153.121204274266 -27.574038094352, 153.120954545765 -27.5740002081523, 153.120805347865 -27.5740075543525, 153.120469296864 -27.5739567935529, 153.120459804764 -27.5740074426529, 153.120120147764 -27.5739561602535, 153.119983928763 -27.5739177748536, 153.119685540463 -27.5738724753541, 153.119644994463 -27.5740853012541, 153.119700978063 -27.5742217213539, 153.119648727163 -27.5744970426541, 153.118762152761 -27.5743630290553, 153.118709752861 -27.5746350422554, 153.118617752599 -27.5751343294705, 153.118681962161 -27.5754236787552, 153.118613752061 -27.5757871404553, 153.118594469961 -27.5759124294554, 153.119519578763 -27.5760502726541, 153.119626613863 -27.5760813415539, 153.120164158364 -27.5763205126533, 153.120123209964 -27.5765334800532, 153.120082432864 -27.5767465293533, 153.119971761964 -27.5768762141533, 153.119916821364 -27.5771672189534), (153.120227674564 -27.5745843559533, 153.120008076064 -27.5745512456535, 153.120024812527 -27.5744624109433, 153.120038958763 -27.5744143188535, 153.120062539864 -27.5743692726535, 153.120094785964 -27.5743287191534, 153.120125365527 -27.574308683143, 153.120169227127 -27.574298237343, 153.120214630928 -27.5742992357429, 153.120279448887 -27.5743090106349, 153.120227674564 -27.5745843559533), (153.12011953397 -27.5739594288849, 153.120459386045 -27.5740096742942, 153.120423147964 -27.574202811753, 153.120292837264 -27.5741831496532, 153.120238820564 -27.5741704687533, 153.120188208764 -27.5741493985534, 153.120142633564 -27.5741206169534, 153.120120080664 -27.5740933552534, 153.120108278964 -27.5740542844535, 153.120109314564 -27.5740138501534, 153.12011953397 -27.5739594288849), (153.121461453466 -27.5753014371514, 153.121518688766 -27.5752999246514, 153.121869432267 -27.5753531217509, 153.121806750567 -27.5756862223509, 153.121676268567 -27.5756968245511, 153.121545719467 -27.5757113755513, 153.121381101 -27.5757289884772, 153.121461453466 -27.5753014371514), (153.118615003226 -27.5757873271808, 153.118684328764 -27.5754240353171, 153.119086118962 -27.5754864797547, 153.119211705862 -27.5755102917546, 153.119339140662 -27.5755427092545, 153.119485052762 -27.5755879789542, 153.119425291662 -27.5759082496542, 153.118615003226 -27.5757873271808), (153.118817920361 -27.5751646966551, 153.118884670161 -27.574808111855, 153.120073551764 -27.5749883339534, 153.119979979963 -27.5754880443535, 153.119861478463 -27.5754353315537, 153.119737538063 -27.5753839970539, 153.119612770663 -27.575336797554, 153.119491832863 -27.5752971828542, 153.119393991762 -27.5752705172543, 153.119210737362 -27.5752283618546, 153.119067619162 -27.5752025008547, 153.118942769761 -27.5751835987549, 153.118817920361 -27.5751646966551))\nAYCA-145346\tL107 Exploration Drive Multi-User Site\tReady for service\tPOLYGON ((116.768744493333 -20.7552641658172, 116.76863538 -20.7552741299222, 116.76864672 -20.7553645799222, 116.76759498 -20.7554407199223, 116.76753054 -20.7547362899222, 116.76469626 -20.7549575999223, 116.76434058 -20.7571769999223, 116.76861504 -20.7568432799222, 116.768884242911 -20.7568161775159, 116.768874993707 -20.7567473028615, 116.768744493333 -20.7552641658172))\n17262882\tEastside Subdivision\tCheck with carrier\tPOLYGON ((142.182113056 -34.1966919555, 142.182006848 -34.196779978500004, 142.181884096 -34.196882043, 142.18176096 -34.196983016000004, 142.18163712 -34.197084988, 142.181512928 -34.19718696, 142.181516896 -34.1971900125, 142.181703008 -34.197345986, 142.18185312 -34.197471009000004, 142.182002176 -34.1975950145, 142.18214112 -34.197712027, 142.182294112 -34.197839991500004, 142.182437056 -34.1979589835, 142.18252704 -34.198032965, 142.18252992 -34.1980360175, 142.182612 -34.198104967, 142.18280208 -34.198263993, 142.182893888 -34.198341027, 142.183023136 -34.198448031, 142.18304688 -34.198468011, 142.183052992 -34.198472969, 142.18306416 -34.1984819785, 142.183076032 -34.1984919685, 142.18313184 -34.198463978, 142.183186912 -34.198434008, 142.183240928 -34.198403039, 142.183294912 -34.1983700165, 142.183347136 -34.1983369755, 142.183361888 -34.1983269855, 142.183767968 -34.1980559975, 142.183769056 -34.1980559975, 142.183770112 -34.198055017, 142.183815136 -34.198025047, 142.183878112 -34.197985975, 142.183941856 -34.197947014, 142.184007008 -34.197910014, 142.184072896 -34.1978730325, 142.18413984 -34.197838012, 142.184207872 -34.1978049895, 142.184216896 -34.1978000315, 142.184276992 -34.197771967, 142.184346112 -34.197740998, 142.184417056 -34.197711028, 142.184487968 -34.1976819645, 142.184559968 -34.1976549545, 142.184631968 -34.197629036, 142.184706112 -34.197604024, 142.184779936 -34.197580973, 142.18485408 -34.197559013500005, 142.18492896 -34.1975379605, 142.185004928 -34.197518961, 142.185080896 -34.197500979000004, 142.18515792 -34.197483959, 142.185234976 -34.197469011, 142.185312 -34.1974559685, 142.185389056 -34.1974430185, 142.185467872 -34.1974320295, 142.185546016 -34.1974230385, 142.185624128 -34.197415028, 142.185702976 -34.197407998, 142.185782176 -34.197402966, 142.185860992 -34.197399007, 142.185888 -34.197399007, 142.18593984 -34.1973970275, 142.18601904 -34.1973960285, 142.186097888 -34.1973970275, 142.186177088 -34.197399007, 142.186255936 -34.197402966, 142.186335136 -34.1974070175, 142.186413952 -34.197414029, 142.186492096 -34.197422039500005, 142.186250176 -34.1971129785, 142.185870016 -34.196627964, 142.185705856 -34.196418988, 142.185535936 -34.1962020015, 142.185153952 -34.195714027, 142.184859136 -34.1953370155, 142.184680928 -34.19518896, 142.18395696 -34.195167981000004, 142.183955168 -34.195169979, 142.18353216 -34.1955189815, 142.183425952 -34.195607004500005, 142.18331904 -34.1956950275, 142.183081088 -34.195892034, 142.182606976 -34.1962839935, 142.18252992 -34.196346986, 142.182368992 -34.196481, 142.182207008 -34.196614015, 142.182113056 -34.1966919555))\n10589\tSecret Harbour\tReady for service\tPOLYGON ((115.76955780386925 -32.409270157117767, 115.7699091732502 -32.409290289326037, 115.76992258429527 -32.40913008069716, 115.77007010579109 -32.409144799522984, 115.77006205916405 -32.409258587287781, 115.77069640159607 -32.409252360100375, 115.77087007462978 -32.409248963452526, 115.77120669186115 -32.409245000696529, 115.77127274125814 -32.4092435854265, 115.77127374708652 -32.409252926208339, 115.77148497104645 -32.409254058424253, 115.77148430049419 -32.409242736264467, 115.77171161770821 -32.409239339616242, 115.77208042144775 -32.409234810751762, 115.77260211110115 -32.409227168292439, 115.77300578355789 -32.409222922481412, 115.77300243079662 -32.409111399107083, 115.77358044683933 -32.409103473582846, 115.77358312904835 -32.409061581514635, 115.77423959970474 -32.409065544278668, 115.77426575124264 -32.409400114158224, 115.77426441013813 -32.4094420060693, 115.77398613095284 -32.410345791010435, 115.77388890087605 -32.410669175687843, 115.7736823707819 -32.411276173382319, 115.77306613326073 -32.411124459722465, 115.77295750379562 -32.411122478385657, 115.77288307249546 -32.41112488429463, 115.77267788350582 -32.411128422395933, 115.77263899147511 -32.411125025818677, 115.77174313366413 -32.411136347742342, 115.77158220112324 -32.411136913838483, 115.77158086001873 -32.411044074023216, 115.77070243656635 -32.411057660343594, 115.77069908380508 -32.410906512413987, 115.7706568390131 -32.410858394106121, 115.77044829726219 -32.410762157413416, 115.76980590820312 -32.410590629406656, 115.76917424798012 -32.410420799375807, 115.76923459768295 -32.410282670715048, 115.76905153691769 -32.410233419870934, 115.76893150806427 -32.410170582548062, 115.76891407370567 -32.410124162155306, 115.76891340315342 -32.410036982328776, 115.76899655163288 -32.40987734112943, 115.76942637562752 -32.409992826280615, 115.7695222645998 -32.409744872685827, 115.7695484161377 -32.409427853398817, 115.7695584744215 -32.409271855441311, 115.76955780386925 -32.409270157117767))\nAYCA-FUHRO\tCaddens Release\tReady for service\tPOLYGON ((150.721273265564 -33.7747377813714, 150.726012694561 -33.7754015391729, 150.726219940141 -33.7743367046131, 150.72601078597 -33.7743077238268, 150.726182455173 -33.7733582071396, 150.726347064077 -33.7730033875498, 150.726771145494 -33.7728206521547, 150.72670087513 -33.772633438814, 150.726200229289 -33.7725944701075, 150.725960837501 -33.7725695057873, 150.725891063354 -33.7729305077645, 150.72401266329 -33.7726778479401, 150.722885999138 -33.7738315816357, 150.721273265564 -33.7747377813714))\nAYCA-RNFCZ\tRIVERSTONE RISE\tReady for service\tPOLYGON ((151.317210217489 -23.9719377242301, 151.317353660321 -23.9730404480024, 151.317480194746 -23.9740131757588, 151.318631494938 -23.9738867215956, 151.318598255374 -23.9736312125935, 151.319822727157 -23.9734967115934, 151.319773958258 -23.9731218562949, 151.319781450218 -23.9730652405727, 151.319822927231 -23.9730246307067, 151.319951328443 -23.9729713157524, 151.31998379509 -23.9728922933657, 151.319908262028 -23.9727565869693, 151.319964132974 -23.9726205993356, 151.320144038867 -23.9724945863786, 151.320381426038 -23.9724828680598, 151.320152769006 -23.9722072337628, 151.320030195564 -23.9720594771823, 151.319729249484 -23.9716966989195, 151.319704977661 -23.9716544280384, 151.319697005063 -23.9716071989588, 151.319706200389 -23.9715601578974, 151.319731561674 -23.9715184305784, 151.319770325472 -23.9714865637219, 151.319795084681 -23.9714721715945, 151.319973689387 -23.9717316075682, 151.321078119522 -23.9710896123204, 151.32114746676 -23.9710160297126, 151.321310999999 -23.9699019999497, 151.321082150945 -23.9698736342337, 151.320980440252 -23.969992478982, 151.32060763668 -23.9701336977333, 151.320203000231 -23.9698419998228, 151.319846012286 -23.969990205523, 151.318666000231 -23.9715019998231, 151.318477960376 -23.9715316610849, 151.318038691375 -23.9715739282206, 151.318073678948 -23.9718428851656, 151.317210217489 -23.9719377242301))\n10329\tDudley Park-Mariner\u0027s Cove\tReady for service\tPOLYGON ((115.7272070646286 -32.549843745908419, 115.72719633579254 -32.550133140331255, 115.72722047567368 -32.550173377104, 115.72726339101791 -32.550175637993256, 115.72724997997284 -32.550510248973175, 115.72723388671875 -32.550826771725077, 115.72723120450974 -32.550919467462542, 115.72708368301392 -32.55091042398017, 115.72703540325165 -32.5512947711773, 115.72703540325165 -32.551572856652612, 115.7270810008049 -32.55195267932443, 115.72725266218185 -32.551961722701783, 115.72724461555481 -32.552431977068807, 115.72723388671875 -32.552705537369967, 115.72722852230072 -32.553062747086514, 115.72720170021057 -32.553496822803289, 115.7271708548069 -32.553478506743893, 115.7254958152771 -32.55338876329759, 115.7254421710968 -32.553422216188871, 115.72538316249847 -32.553428998610933, 115.72490036487579 -32.553361174367311, 115.72484403848648 -32.553338566274725, 115.72483867406845 -32.552685189938252, 115.72484940290451 -32.552196850193276, 115.72486013174057 -32.55158642177571, 115.72487622499466 -32.551120684709566, 115.7248654961586 -32.550453726935743, 115.72485744953156 -32.550047226459355, 115.7244873046875 -32.550038182889104, 115.72450339794159 -32.549735222759324, 115.72507202625275 -32.549766875358024, 115.72547435760498 -32.5497759189556, 115.72584450244904 -32.549798527945576, 115.72626292705536 -32.549807571539958, 115.72661161422729 -32.549821136929843, 115.72681277990341 -32.549822938583034, 115.72700589895248 -32.549831982174958, 115.7272070646286 -32.549843745908419))\nAYCA-JWNIP\tRedbank Motorway Estate\tReady for service\tPOLYGON ((152.876343356434 -27.5859849493714, 152.876350637508 -27.5859439645208, 152.876345044432 -27.5859044755365, 152.876325799075 -27.5858650076588, 152.876293108243 -27.5858414816003, 152.876194282954 -27.5857926552727, 152.875648144462 -27.5855342035497, 152.875487511661 -27.5854867516761, 152.875326780988 -27.5854563714511, 152.874136456738 -27.5852943730488, 152.874072 -27.5852879999806, 152.8739019815 -27.5852654991447, 152.873699196955 -27.5864163661696, 152.873531759234 -27.587366477884, 152.873442834494 -27.5873675249915, 152.873065442113 -27.5895211234799, 152.872957551849 -27.5900643778261, 152.873210201268 -27.5898782776481, 152.8734770227 -27.5883907399914, 152.873628963471 -27.5875288157524, 152.87372497423 -27.5875424464503, 152.873704090787 -27.5885609606531, 152.875042752733 -27.5887775994465, 152.875844979242 -27.5889071342686, 152.876343356434 -27.5859849493714))\n17201178\tPacific Pines\tCheck with carrier\tPOLYGON ((153.301434848 -27.9312569955, 153.303329152 -27.932397021, 153.303653152 -27.9340190085, 153.303927136 -27.933956016, 153.30403584 -27.933906954, 153.30490992 -27.933388029, 153.304777088 -27.9330139775, 153.304674112 -27.932910026000002, 153.304639936 -27.9328439625, 153.304733888 -27.932709967, 153.304956 -27.932707987500002, 153.304967872 -27.932247004500002, 153.304827136 -27.9319899655, 153.304584832 -27.931346998000002, 153.304485856 -27.9309599965, 153.30424896 -27.9303599675, 153.30414816 -27.929914025000002, 153.303869888 -27.9292629545, 153.303307936 -27.928373049, 153.303064928 -27.927929974, 153.302846048 -27.927777959500002, 153.302658112 -27.927776979, 153.302385952 -27.9276560075, 153.302303872 -27.9275900365, 153.302169952 -27.9273369565, 153.302020928 -27.9271929525, 153.301299136 -27.926929975, 153.301170976 -27.9273040265, 153.301336928 -27.927727029, 153.30134016 -27.927734040500003, 153.301956832 -27.928177023, 153.302133952 -27.928304007, 153.302139008 -27.928308965, 153.302140096 -27.928310038, 153.302142976 -27.9283120175, 153.302451136 -27.928611995, 153.302473088 -27.928643038, 153.302906176 -27.929247026000002, 153.303255008 -27.929782971, 153.303449056 -27.930066021000002, 153.303819136 -27.9312769755, 153.30379104 -27.9312769755, 153.301434848 -27.9312569955))\n10047\tAustralind-Galway Green\tReady for service\tPOLYGON ((115.7270622253418 -33.256031656316637, 115.73226571083069 -33.255986797516393, 115.73226571083069 -33.255816333865404, 115.7324481010437 -33.255798390303852, 115.73245882987976 -33.255995769278279, 115.73382675647736 -33.255989040456953, 115.73331445455551 -33.256525101599237, 115.73325008153915 -33.256527344525978, 115.7333117723465 -33.25660360400088, 115.73333591222763 -33.256771823195464, 115.73328763246536 -33.2569691999708, 115.73322862386703 -33.257094803141115, 115.73310792446136 -33.257189005400356, 115.73265463113785 -33.2569691999708, 115.73274582624435 -33.256818924511904, 115.73054105043411 -33.256834624945071, 115.73007166385651 -33.256892940814993, 115.7300877571106 -33.2570118153524, 115.72972297668457 -33.257014058266634, 115.72973906993866 -33.257224891948589, 115.72961837053299 -33.257229377766073, 115.72960764169693 -33.257561327621374, 115.72964787483215 -33.257686929940412, 115.72955667972565 -33.258122050863619, 115.72884321212769 -33.257900004890089, 115.72852402925491 -33.257886547540217, 115.72851866483688 -33.257810289185137, 115.72763353586197 -33.257823746546755, 115.72758257389069 -33.257606185613191, 115.72740823030472 -33.257617400107549, 115.72745114564896 -33.25775645971796, 115.72710782289505 -33.257763188403175, 115.72704881429672 -33.257536655716059, 115.7266840338707 -33.257583756620164, 115.7266303896904 -33.25729666500083, 115.72663843631744 -33.257045459060031, 115.72675108909607 -33.256895183732304, 115.7268825173378 -33.25679873823654, 115.72711586952209 -33.256724721853629, 115.7270622253418 -33.256031656316637))\n10698\tWannanup-Port Bouvard North\tReady for service\tPOLYGON ((115.64583957195282 -32.592031217603768, 115.64582347869873 -32.592428947571733, 115.64568400382996 -32.592885430927581, 115.64547479152679 -32.59327863749872, 115.64514756202698 -32.593563372214589, 115.64571619033813 -32.594114760679325, 115.64506709575653 -32.594526040029962, 115.64524412155151 -32.594878563685249, 115.64530313014984 -32.595118098198149, 115.64517438411713 -32.595461580533225, 115.6461238861084 -32.596021996253327, 115.64835548400879 -32.59334191195822, 115.64782440662384 -32.592944186042104, 115.64795851707458 -32.592266240070913, 115.64726114273071 -32.591918225813629, 115.64670324325562 -32.591800714200772, 115.6446647644043 -32.591818792920471, 115.64454138278961 -32.591913706139053, 115.64454674720764 -32.59206285527948, 115.64583957195282 -32.592031217603768))\n10327\tDudley Park-Mariner\u0027s Cove\tReady for service\tPOLYGON ((115.73215842247009 -32.550530596897936, 115.73214501142502 -32.550320334786285, 115.73201358318329 -32.55025929085518, 115.73141276836395 -32.550297725927749, 115.73134034872055 -32.550275117063528, 115.73103994131088 -32.550220855766135, 115.7307904958725 -32.55010781129122, 115.73046326637268 -32.549951809682057, 115.73031842708588 -32.549872678327382, 115.73004215955734 -32.549827460379106, 115.73000192642212 -32.550157550877721, 115.73012799024582 -32.550180159771578, 115.73014408349991 -32.550758945515049, 115.73018699884415 -32.550788336879016, 115.73019504547119 -32.550894597883833, 115.73014944791794 -32.550919467462542, 115.73014944791794 -32.551068684790074, 115.73011994361877 -32.551095815186613, 115.7300877571106 -32.55108903258823, 115.73009043931961 -32.551267640840912, 115.73003947734833 -32.551274423425781, 115.72996437549591 -32.551672334174384, 115.72997510433197 -32.55201146126096, 115.7299268245697 -32.552027287160371, 115.72992950677872 -32.552183285162428, 115.72988659143448 -32.552235284436193, 115.72988927364349 -32.552407107909183, 115.7299080491066 -32.552780144580112, 115.72994828224182 -32.552811796105082, 115.72998583316803 -32.553569168551981, 115.73045790195465 -32.553551541346124, 115.73070466518402 -32.553560584562376, 115.730881690979 -32.553551541346124, 115.73092997074127 -32.553510846861663, 115.73211014270782 -32.553438501065976, 115.73217451572418 -32.553402328146248, 115.73268413543701 -32.553370676829537, 115.73274314403534 -32.553313697366292, 115.73278874158859 -32.553241351411678, 115.73276460170746 -32.553139614814334, 115.73262512683868 -32.55147157740052, 115.73267340660095 -32.551421838542169, 115.73257148265839 -32.551277143524779, 115.73257684707642 -32.551213839381312, 115.73246955871582 -32.551100336918559, 115.73246687650681 -32.55103251091527, 115.7324293255806 -32.551016684840448, 115.73238641023636 -32.551016684840448, 115.73235690593719 -32.551034771782867, 115.73219060897827 -32.550957902252442, 115.73215842247009 -32.550530596897936))\nAYCA-ROJ8T\tThe Meadows\tUnder construction\tPOLYGON ((153.312236 -27.8279519999839, 153.312224 -27.8280079999839, 153.312305 -27.8292099999839, 153.312352 -27.829217999984, 153.312346 -27.8292529999839, 153.312342 -27.8294249999839, 153.312418 -27.8299219999839, 153.312427 -27.8299559999839, 153.312439 -27.8299789999839, 153.312421 -27.8299849999839, 153.312476 -27.830144999984, 153.312536 -27.830276999984, 153.31261 -27.830402999984, 153.312703 -27.8305909999839, 153.312621 -27.830589999984, 153.312594 -27.8308329999839, 153.312689 -27.830835999984, 153.312871 -27.8308659999839, 153.312824 -27.8310969999839, 153.315065 -27.831459999984, 153.315109 -27.831243999984, 153.315106 -27.831208999984, 153.315081 -27.831177999984, 153.315046 -27.831162999984, 153.314922 -27.8311429999839, 153.314953 -27.8309919999839, 153.315077 -27.831011999984, 153.315116 -27.8310089999839, 153.315151 -27.8309879999839, 153.315168 -27.8309559999839, 153.315325 -27.8303249999839, 153.315401 -27.829985999984, 153.31546 -27.8297989999839, 153.315536 -27.8295939999839, 153.315875 -27.8288379999839, 153.313215 -27.8283859999839, 153.313269 -27.8281189999839, 153.312236 -27.8279519999839))\nAYCA-EOU5T\tHidden Valley Northern Paddock\tUnder construction\tPOLYGON ((144.994662359996 -37.3869390600181, 144.994504276507 -37.3864532528365, 144.994799548924 -37.3864001516098, 144.995406685822 -37.3862873316946, 144.995801382836 -37.3855815057325, 144.996094365367 -37.385704153098, 144.99637045373 -37.3854372162676, 144.996505946911 -37.3855311672281, 144.996613959466 -37.3860543779565, 144.997507743031 -37.3858755861791, 144.998174821367 -37.3848801715939, 144.996205788907 -37.3840073047145, 144.996295709755 -37.3839049332708, 144.996103506117 -37.3837775540177, 144.996012346604 -37.3838680796234, 144.994781645189 -37.3833717732658, 144.993943800187 -37.384202969967, 144.994167706654 -37.3841478866612, 144.994405832137 -37.3843359541822, 144.993585673334 -37.3850458868369, 144.993454895472 -37.38574886135, 144.994662359996 -37.3869390600181))\nAYCA-1RO4RX\tWindradyne\tContracted\tPOLYGON ((149.54138000004 -33.4027119999957, 149.54085600004 -33.4027099999957, 149.54084300004 -33.4025979999957, 149.54057000004 -33.4025789999958, 149.54006300004 -33.4024759999958, 149.53962300004 -33.4022729999958, 149.53919500004 -33.4020939999958, 149.53876700004 -33.4019859999958, 149.53833500004 -33.4019349999958, 149.53833500004 -33.4023369999958, 149.537609754388 -33.4023449917098, 149.53761900002 -33.4024240000077, 149.53765500002 -33.4025520000077, 149.53770000002 -33.4026580000078, 149.53773600002 -33.4027260000077, 149.53780400002 -33.4028290000078, 149.53829200002 -33.4035540000078, 149.53832200002 -33.4036200000078, 149.53835700002 -33.4037320000077, 149.53837200002 -33.4038530000077, 149.53838500002 -33.4041730000078, 149.53884100002 -33.4042380000077, 149.53942600002 -33.4043090000077, 149.53988700002 -33.4043630000077, 149.54021700002 -33.4044260000077, 149.54049800002 -33.4045000000077, 149.54079800002 -33.4046080000077, 149.54109400002 -33.4047310000077, 149.54133400002 -33.4048140000077, 149.54159700002 -33.4048820000077, 149.54184500002 -33.4049220000077, 149.54210000002 -33.4049500000077, 149.54229500002 -33.4049580000077, 149.54233600002 -33.4041020000077, 149.54209600002 -33.4035900000076, 149.54205900002 -33.4034900000076, 149.541929000061 -33.4028599999836, 149.54139700004 -33.4029049999956, 149.54138000004 -33.4027119999957))\nAYCA-LQAF8\tRIVERSTONE RISE\tReady for service\tPOLYGON ((151.318411370725 -23.9673324937224, 151.318283842933 -23.9672674726983, 151.317901938866 -23.9671207911469, 151.316495642162 -23.9677205718899, 151.316464543652 -23.9701138190548, 151.31807951702 -23.9712809233917, 151.318089548389 -23.97135801994, 151.317899314257 -23.9713789150491, 151.31792613781 -23.9715851153892, 151.317966999999 -23.9715829999485, 151.318036989005 -23.9715726122816, 151.318477960144 -23.9715316612104, 151.318665999999 -23.9715019999486, 151.31984601228 -23.9699902053581, 151.319473737633 -23.9697211781954, 151.319540552984 -23.9696431087797, 151.31935470561 -23.9695036350177, 151.318918067982 -23.969342688696, 151.318535725693 -23.9689223733835, 151.318570815272 -23.9688346919481, 151.318298699774 -23.9687410792836, 151.318086198453 -23.9686827701138, 151.318053432857 -23.968666155426, 151.317808402742 -23.9685429818318, 151.31824862408 -23.9676453860492, 151.318321150017 -23.9676732415899, 151.318427343287 -23.9673690787241, 151.318411370725 -23.9673324937224))\nAYCA-SG61Y\tAlkira Estate\tContracted\tPOLYGON ((150.764230999955 -34.4891840000067, 150.765049079979 -34.4892979800156, 150.76532087998 -34.487879490011, 150.76534899999 -34.4877680000175, 150.76697852026 -34.4879941009709, 150.76709675999 -34.4873602800171, 150.76718855999 -34.4868673500171, 150.76723139999 -34.4866131000171, 150.76726703999 -34.4864007900171, 150.76731059999 -34.4861428500171, 150.76734551999 -34.4858642100172, 150.76746827999 -34.4848906800171, 150.76747907999 -34.4847365100172, 150.767497474193 -34.4844698522354, 150.76543535999 -34.4843172000172, 150.764898704374 -34.4877061505123, 150.764510250565 -34.4876574777893, 150.764230999955 -34.4891840000067))\nAYCA-JKJE1\tForest Springs\tReady for service\tPOLYGON ((151.247395773332 -23.8968782658962, 151.246791573401 -23.8979437301582, 151.246769988217 -23.8981297406771, 151.246733868681 -23.8994233541929, 151.24630044574 -23.9005438962045, 151.246904949619 -23.9016036527917, 151.247321465725 -23.9014027719047, 151.247161803028 -23.9011182146193, 151.24730666928 -23.9010543629944, 151.247218309681 -23.9009341017955, 151.24717754287 -23.9008328964392, 151.247307922435 -23.9007717096997, 151.247452684819 -23.9010260552318, 151.24781914609 -23.9008507133603, 151.247987752754 -23.9007286868573, 151.248165939093 -23.9005374118895, 151.248270201888 -23.9003631756754, 151.248741087692 -23.9005523286766, 151.248837034024 -23.9002924006773, 151.248886845062 -23.9000169958542, 151.248899565295 -23.8996801678766, 151.248941396072 -23.8994253247417, 151.248999529314 -23.8992244913267, 151.249102372722 -23.8989517823824, 151.249529770843 -23.8981992470775, 151.249599850798 -23.8979115236378, 151.249754010568 -23.897829996806, 151.249354157862 -23.8977692841233, 151.249243597042 -23.8977443329372, 151.249045517181 -23.8976826525918, 151.247395773332 -23.8968782658962), (151.247298624639 -23.8984820678198, 151.24756356551 -23.8985082334613, 151.247562081651 -23.8986793307654, 151.247295726221 -23.8986536299542, 151.247298624639 -23.8984820678198))\nAYCA-DD3C8\tVermont Riverlands\tReady for service\tPOLYGON ((150.862954209724 -33.5689465929785, 150.862548407695 -33.570832242775, 150.862400772797 -33.5709002194451, 150.862412591781 -33.571231093825, 150.86258452803 -33.5712531157774, 150.867553870377 -33.5701883443034, 150.867324057364 -33.5694944192937, 150.867116342249 -33.5695225155869, 150.86720782051 -33.5690188440476, 150.8664718057 -33.5689171152289, 150.866509671648 -33.5687251341125, 150.86634868241 -33.5687112523179, 150.866334785996 -33.5687650747201, 150.865731271018 -33.5686816552709, 150.865713736516 -33.5687705514105, 150.864744273785 -33.5686365450399, 150.864702319349 -33.5688492369728, 150.864056509192 -33.5687599625312, 150.863987867677 -33.5691079238485, 150.862954209724 -33.5689465929785))\nAYCA-GPU42\tNewman Light Industrial Area\tReady for service\tPOLYGON ((119.726139621077 -23.3708990605763, 119.728516461367 -23.3708979086146, 119.728528193693 -23.3703923554012, 119.728814345164 -23.3703772538136, 119.728819999893 -23.3699411274779, 119.729226231654 -23.3699478503196, 119.729211035418 -23.3695416736215, 119.730666229356 -23.3695598167656, 119.730666240012 -23.3692920899367, 119.730427205923 -23.3689463371757, 119.730460772609 -23.3689276558958, 119.730857018611 -23.368707127349, 119.73118051992 -23.3684918277889, 119.731676119042 -23.3681142655845, 119.731478713236 -23.3678869442231, 119.730543007234 -23.3685361169301, 119.730259686018 -23.3686746089147, 119.730048905153 -23.3687463491369, 119.729930264932 -23.368783824721, 119.729574917391 -23.3687949150161, 119.729120970715 -23.3688010695269, 119.728297732601 -23.3687727771019, 119.728238359873 -23.3686818527478, 119.728310574178 -23.3680608889402, 119.728053612021 -23.3680448263344, 119.727983520023 -23.3686998899289, 119.727876240023 -23.3687843099289, 119.727180360023 -23.3687458799289, 119.726867880023 -23.368744799929, 119.726547120023 -23.3687865599289, 119.726238240023 -23.3688770999289, 119.725985583275 -23.3689902691443, 119.725989947439 -23.3691520418104, 119.725755803297 -23.3693040261892, 119.725768212854 -23.3704696777153, 119.725503551913 -23.3704738514774, 119.725512851423 -23.3708571810151, 119.725703160667 -23.3716475283967, 119.726319201256 -23.3716368021084, 119.726147016586 -23.3711177993962, 119.726139621077 -23.3708990605763), (119.727884729292 -23.370211790284, 119.727881857495 -23.3698418020621, 119.728468361518 -23.3698379688052, 119.728470507491 -23.3701177165071, 119.728379254024 -23.3702031609445, 119.727884729292 -23.370211790284))\n10371\tFalcon-Pleasant Grove\tReady for service\tPOLYGON ((115.65103232860565 -32.595619762744732, 115.65061390399933 -32.595371190572692, 115.65246999263763 -32.593310274734066, 115.65285086631775 -32.593369029570034, 115.65326929092407 -32.594322660367219, 115.65284550189972 -32.594471805498365, 115.65295279026031 -32.594684223892962, 115.65290987491608 -32.594752016891633, 115.65432071685791 -32.595800542073121, 115.65452992916107 -32.595737269349669, 115.65509855747223 -32.59508646160107, 115.65509855747223 -32.595014149337231, 115.65550625324249 -32.59526724200537, 115.65593004226685 -32.595411866066215, 115.65564572811127 -32.596270566619985, 115.65559208393097 -32.596546252947412, 115.65532922744751 -32.596541733506257, 115.65302789211273 -32.596537214064895, 115.65275430679321 -32.596523655739375, 115.65112888813019 -32.5965191362971, 115.65089285373688 -32.596428747403387, 115.65089285373688 -32.596329319514979, 115.65099477767944 -32.596148541253434, 115.65106451511383 -32.596040074121412, 115.65116107463837 -32.595872853702346, 115.65094113349915 -32.595777944677, 115.65103232860565 -32.595619762744732))\nAYCA-GR59S\tJohnston Stage 2\tReady for service\tPOLYGON ((131.005686478493 -12.492012572164, 131.006720705522 -12.4921309131598, 131.006757248632 -12.4921762441501, 131.00677018645 -12.4922076358763, 131.006769755779 -12.4922610889438, 131.006878533328 -12.4922747760984, 131.006870588776 -12.4922377596824, 131.006821261403 -12.4921905167877, 131.006762267741 -12.4920806149897, 131.00677834381 -12.4919813166083, 131.006817032536 -12.49180356857, 131.006861912616 -12.4917056929447, 131.006911990841 -12.4916527204456, 131.006973322622 -12.4916416109231, 131.007278281574 -12.4916764299245, 131.00772857482 -12.4916205658387, 131.008138626781 -12.4912755514497, 131.008304047141 -12.491196480072, 131.008469467388 -12.4911174086075, 131.008751711033 -12.4909812880531, 131.008807265486 -12.4909113398608, 131.008942481202 -12.4907505999514, 131.009297346385 -12.4905809717412, 131.00954419145 -12.4904531207166, 131.009094875778 -12.490082321408, 131.008669847155 -12.4894760799413, 131.008276705625 -12.4885485558722, 131.008237849767 -12.4885793334444, 131.008119748525 -12.4886298096172, 131.007737059183 -12.4888127376865, 131.007726565692 -12.4888530581209, 131.007232056532 -12.4890894356513, 131.007224286904 -12.4891385410132, 131.00683458754 -12.4893204479768, 131.006749508947 -12.4891050782778, 131.006742331518 -12.4890607285365, 131.006771835794 -12.4889648685765, 131.006792239671 -12.4889422542214, 131.006738002953 -12.4888528687439, 131.006692044292 -12.4888665755937, 131.006656061678 -12.4888463626637, 131.006608388695 -12.4888261586108, 131.006581880575 -12.4888365548522, 131.00653965168 -12.4888584569679, 131.006509462446 -12.4888812995463, 131.006470877781 -12.4889689678438, 131.006423026186 -12.4889371717866, 131.006420595453 -12.48891356054, 131.006105271307 -12.4890393928731, 131.005893243088 -12.4891211672866, 131.005557622362 -12.4892352487859, 131.005448923688 -12.4892205589232, 131.005370313902 -12.4892600987485, 131.005399424929 -12.4893007542982, 131.005654801351 -12.489928421942, 131.005761504373 -12.4906719896868, 131.005619572574 -12.4917340609211, 131.005714036659 -12.4918334765865, 131.005686478493 -12.492012572164), (131.00747135911 -12.4910377171343, 131.007302075116 -12.491109390835, 131.006964199532 -12.4911273106693, 131.006999959349 -12.4907944706875, 131.007352043341 -12.4907051757157, 131.00747135911 -12.4910377171343))\n17366497\t250-252 Blind Creek Road\tCheck with carrier\tPOLYGON ((143.77838 -37.523448998, 143.778975008 -37.523717007500004, 143.778874016 -37.523858995000005, 143.779539008 -37.524157992, 143.779216992 -37.525924002, 143.779111008 -37.526070004000005, 143.779388 -37.526108003000004, 143.779331008 -37.526415991, 143.779064 -37.5263850035, 143.778975008 -37.5268729965, 143.77864 -37.5268339985, 143.780627008 -37.528552001, 143.781432 -37.5241329985, 143.778754016 -37.522924005, 143.77838 -37.523448998))\n17363349\tBullocks Run\tCheck with carrier\tPOLYGON ((152.449822016 -32.092228007500005, 152.453208992 -32.0923090005, 152.454596992 -32.091923997, 152.454784 -32.090928993, 152.453990016 -32.0908270025, 152.454008992 -32.0905739965, 152.453523008 -32.090544008, 152.452572 -32.090534998500004, 152.450872992 -32.0903159955, 152.449819008 -32.090324006, 152.449588992 -32.0903909945, 152.449524992 -32.0914510075, 152.449835008 -32.0914259955, 152.449822016 -32.092228007500005))\n10217\tClarkson-Somerly\tReady for service\tPOLYGON ((115.73390185832977 -31.68231965347913, 115.73439538478851 -31.682228353912652, 115.73462069034576 -31.682155314194823, 115.73492646217346 -31.682091404394576, 115.7355272769928 -31.684611243186133, 115.73533952236176 -31.684702540409031, 115.7352215051651 -31.684871440034662, 115.73508739471436 -31.684930783073419, 115.73482990264893 -31.684761883555758, 115.73471188545227 -31.684652326947532, 115.73366045951843 -31.685382701893239, 115.73346734046936 -31.685172719684967, 115.73333323001862 -31.685264016355625, 115.73307573795319 -31.684930783073419, 115.73300063610077 -31.684652326947532, 115.73296308517456 -31.684547335076658, 115.73260903358459 -31.684624937775279, 115.73246419429779 -31.684049763291046, 115.73242127895355 -31.683889991968488, 115.73226034641266 -31.683351332340351, 115.73221743106842 -31.683232644205454, 115.73061883449554 -31.683565883583739, 115.73052227497101 -31.683520234424552, 115.73043644428253 -31.683237209136525, 115.7307368516922 -31.683182429948857, 115.73063492774963 -31.682858319093693, 115.73094606399536 -31.682762455102779, 115.73133230209351 -31.682579856750998, 115.73142886161804 -31.682675720930472, 115.73175609111786 -31.682666591012882, 115.73198676109314 -31.682616376450085, 115.73208868503571 -31.68260268156461, 115.73215842247009 -31.682639201254716, 115.73359608650208 -31.682337913381662, 115.73390185832977 -31.68231965347913))\nAYAA-GS1IC\tLot 1002 Penson Street, Singleton\tReady for service\tPOLYGON ((115.758240281793 -32.4526525091403, 115.75865196 -32.4525941100142, 115.75847844 -32.4517144500143, 115.75847664 -32.4510828300143, 115.7593248 -32.4511436700143, 115.75959948 -32.4497196900143, 115.76000736 -32.4476051400143, 115.76015172 -32.4468576900143, 115.760042940252 -32.446075845184, 115.760433521957 -32.4460958594771, 115.760435501768 -32.4459402137948, 115.759860875451 -32.4459251193394, 115.759484605601 -32.4459934228324, 115.759431909562 -32.4460030398544, 115.759171332849 -32.4460511526924, 115.758861192815 -32.4460749296229, 115.7585172607 -32.4461004298205, 115.758513997409 -32.4462450932636, 115.758581063234 -32.4462970490913, 115.758623793893 -32.4469199361142, 115.758107007153 -32.4493100939991, 115.757833915362 -32.4502458931392, 115.757997996059 -32.4502628368725, 115.758001677875 -32.4508091676604, 115.757998796179 -32.4513068989043, 115.757994241185 -32.4517448444511, 115.75807378739 -32.4522852675452, 115.758090641669 -32.4523886883604, 115.758140224126 -32.4526680269002, 115.758240281793 -32.4526525091403))\n10046\tAustralind-Galway Green\tReady for service\tPOLYGON ((115.72949230670929 -33.25845042274144, 115.72953522205353 -33.258262020841656, 115.72993218898773 -33.258284449660557, 115.73011457920074 -33.258302392711528, 115.73011457920074 -33.258257535077192, 115.73049008846283 -33.258284449660557, 115.7304847240448 -33.258445936986661, 115.73089778423309 -33.25845042274144, 115.73106408119202 -33.25845042274144, 115.73106944561005 -33.25853565203883, 115.73147714138031 -33.258553595038208, 115.73147177696228 -33.258593966773347, 115.73186337947845 -33.258607424014237, 115.73189556598663 -33.258427993965164, 115.73195457458496 -33.258208191652805, 115.73209941387177 -33.257956988332957, 115.73231399059296 -33.25773718483557, 115.73255002498627 -33.257494951769353, 115.73276996612549 -33.257275147109517, 115.73283970355988 -33.257207859858205, 115.73302209377289 -33.257113657619286, 115.73266267776489 -33.256974596985735, 115.73276460170746 -33.256817592778596, 115.73054373264313 -33.256822078617006, 115.73026478290558 -33.256884880330496, 115.73007702827454 -33.256934224502274, 115.73010385036469 -33.257019455278808, 115.72973906993866 -33.257014969450537, 115.72973370552063 -33.257216831494709, 115.72961568832397 -33.257221317312613, 115.729621052742 -33.257548781397659, 115.729621052742 -33.257696812704516, 115.72966396808624 -33.257674383734745, 115.72955131530762 -33.258109504720437, 115.72906851768494 -33.257961474112861, 115.72883784770966 -33.257898673173258, 115.72852671146393 -33.257889701606764, 115.72852671146393 -33.257813443254449, 115.72836577892303 -33.257813443254449, 115.72798490524292 -33.257822414828773, 115.72763621807098 -33.257835872188522, 115.72761476039886 -33.257741670626757, 115.72745382785797 -33.257741670626757, 115.72711586952209 -33.257764099579255, 115.7270622253418 -33.257535323993693, 115.72668671607971 -33.257589153597131, 115.72675108909607 -33.257916616303469, 115.7267564535141 -33.258167819739406, 115.72670817375183 -33.258589481025915, 115.72665989398956 -33.258840682527094, 115.72663307189941 -33.258997683098542, 115.72701930999756 -33.25900665455125, 115.72701394557953 -33.259145711950339, 115.72736263275146 -33.259212997709135, 115.72762548923492 -33.259257854852869, 115.72789371013641 -33.259284769128065, 115.72799563407898 -33.2592892548398, 115.72808146476746 -33.259316169105304, 115.72816729545593 -33.259347569071267, 115.7291167974472 -33.259666053802455, 115.72928309440613 -33.259387940439474, 115.72935283184052 -33.259262340565975, 115.72941720485687 -33.259280283416111, 115.7295298576355 -33.258943854362975, 115.72964787483215 -33.258589481025915, 115.72944939136505 -33.258553595038208, 115.72949230670929 -33.25845042274144))\n17290310\tLinton Hill - Stage 2\tCheck with carrier\tPOLYGON ((151.82728704 -27.466329962, 151.82464896 -27.4658930105, 151.82411616 -27.468744027, 151.823927168 -27.468804966, 151.823909152 -27.4690950275, 151.82386992 -27.469619003000002, 151.82378208 -27.4700829645, 151.825462912 -27.469223010500002, 151.82580096 -27.469269001500003, 151.82588016 -27.4688129765, 151.826681152 -27.46892196, 151.826756032 -27.468494018, 151.826752096 -27.4684660275, 151.82673408 -27.4684439755, 151.826704928 -27.4684329865, 151.826466976 -27.468404996, 151.826166016 -27.4683979845, 151.82598096 -27.4684100465, 151.825975936 -27.468440997000002, 151.825946048 -27.468437038, 151.825950016 -27.468412026, 151.825929856 -27.468160019000003, 151.826159872 -27.468144997, 151.826488928 -27.4681530075, 151.82679888 -27.4681890085, 151.826829856 -27.468185031, 151.826856128 -27.4681680295, 151.826868 -27.4681430175, 151.826968096 -27.4681559675, 151.82728704 -27.466329962))\n10611\tSecret Harbour-Anstey Park\tReady for service\tPOLYGON ((115.76890334486961 -32.398474967071245, 115.76900728046894 -32.39847440089568, 115.76900660991669 -32.398540077236767, 115.76929360628128 -32.398560459539794, 115.76939955353737 -32.398569518339663, 115.76973415911198 -32.398619341722735, 115.770302452147 -32.398618209373424, 115.77079363167286 -32.39861990789737, 115.77079631388187 -32.398514033176184, 115.77117249369621 -32.398511768474904, 115.77112086117268 -32.399065486245604, 115.77110074460506 -32.399349456369336, 115.77111683785915 -32.400001681937354, 115.77112220227718 -32.400151149633096, 115.77127257362008 -32.400651700070007, 115.77136192470789 -32.400940504104341, 115.77159645035863 -32.401478982672913, 115.77172041870654 -32.401764639247141, 115.77184304594994 -32.402044067232815, 115.77125295996666 -32.402233728347106, 115.77129922807217 -32.402345260219313, 115.77114634215832 -32.402383192347479, 115.77104710042477 -32.402160694711462, 115.77100355643779 -32.40216094240315, 115.77100292779505 -32.402164587009437, 115.77090708073229 -32.402165967005928, 115.77090676641092 -32.402161561632383, 115.77081549272407 -32.402160743365194, 115.77081675524823 -32.40216502046988, 115.77072481100913 -32.402168448345762, 115.77072510699509 -32.402163934607223, 115.77022785320878 -32.402170743916777, 115.77002320904285 -32.40217254852746, 115.77002241276205 -32.402176617747536, 115.76997668948025 -32.402177856205768, 115.76997863827273 -32.402173380063751, 115.76976601034403 -32.402177962359289, 115.76897107064724 -32.402190134633713, 115.76894491910934 -32.400670003021027, 115.76891273260117 -32.399157206039305, 115.76890133321285 -32.39847440089568, 115.76890334486961 -32.398474967071245))\nAYCA-ER2HH\tVicars Avenue\tReady for service\tPOLYGON ((145.592578108999 -38.5897578015856, 145.59477948 -38.5899683400299, 145.59531768 -38.5865467200299, 145.593106338212 -38.5856872874448, 145.592578108999 -38.5897578015856))\nAYCA-G7VCW\tGap Ridge Industrial Area\tReady for service\tPOLYGON ((116.76592759951 -20.7376182188109, 116.764995134441 -20.7379512648429, 116.764859969741 -20.7380710004181, 116.764810573237 -20.7381742443224, 116.764790043288 -20.7383038330363, 116.764824565547 -20.7383881538306, 116.764931145098 -20.738472918052, 116.765260132705 -20.738612211303, 116.765415518233 -20.7386458937752, 116.765491298886 -20.7386339196263, 116.765599118153 -20.7389481505382, 116.765403553782 -20.7390197464121, 116.765084733079 -20.7396861142634, 116.767075694943 -20.744127273314, 116.768046504018 -20.7438276207051, 116.768140139789 -20.7438115474754, 116.768204599353 -20.7438103510609, 116.768241190894 -20.7437121060273, 116.767692675579 -20.7423630872268, 116.766818008963 -20.7401574127017, 116.766430499211 -20.7392476870325, 116.766230727829 -20.7387877289131, 116.765964323177 -20.7387276088415, 116.765664732864 -20.7388961163974, 116.765572668342 -20.7386210623451, 116.766236635803 -20.7383839140919, 116.76592759951 -20.7376182188109))\nAYCA-159BSA\tMoncrieff Residential Estate\tContracted\tPOLYGON ((149.110044000007 -35.159419000021, 149.112582000007 -35.1599000000209, 149.11284128492 -35.1597778035913, 149.11289846306 -35.1595052043784, 149.112950770904 -35.1593320080941, 149.113046643739 -35.1591235930496, 149.113291649506 -35.1586688840908, 149.11369667278 -35.1578966649976, 149.114048304345 -35.157164210195, 149.114266885736 -35.156553083509, 149.114365764604 -35.156388772503, 149.114461426837 -35.1562298060345, 149.114124000007 -35.156164000021, 149.113874000007 -35.156179000021, 149.113633010518 -35.1561522069873, 149.113362000007 -35.1560890000209, 149.113449000007 -35.1558160000209, 149.112940000007 -35.155705000021, 149.112855000007 -35.1559700000209, 149.112705000007 -35.1564490000209, 149.112810000007 -35.1564760000209, 149.112646000007 -35.156875000021, 149.112537000015 -35.1571400000162, 149.112329000015 -35.1575840000162, 149.111926000007 -35.158382000021, 149.111625000007 -35.158273000021, 149.111747000007 -35.1580460000209, 149.110891000007 -35.157741000021, 149.110752000186 -35.1580079996983, 149.110502000021 -35.1579120000185, 149.110397000015 -35.1581190000162, 149.110421000009 -35.1581320000045, 149.110448000022 -35.1581880000116, 149.110236000039 -35.1586919999721, 149.110141497112 -35.1590480525734, 149.110044000007 -35.159419000021))\nAYCA-1S9DR7\tVasse Newtown\tContracted\tPOLYGON ((115.237501509781 -33.6735871946194, 115.23737700847 -33.6735592843897, 115.237280962412 -33.6737772276456, 115.23744250281 -33.6738166740937, 115.237493883589 -33.6738801418538, 115.237457565119 -33.6741345906657, 115.237584730767 -33.6741567387278, 115.237600869325 -33.6740436703511, 115.237636124275 -33.6739346183223, 115.237715179629 -33.673896471037, 115.238022589152 -33.6739653835412, 115.237935975095 -33.6742354778762, 115.237929728693 -33.67431043118, 115.238615873871 -33.6743898624128, 115.238613988792 -33.6743957409007, 115.238759537208 -33.6744292988184, 115.239092856565 -33.6745040161164, 115.239078093237 -33.6745500552828, 115.23907795604 -33.6747842911446, 115.239401480763 -33.6747836697471, 115.239401468281 -33.674805113527, 115.239530877209 -33.6748065924948, 115.23953088651 -33.6747905719047, 115.239566004132 -33.6745604954408, 115.239624484905 -33.6745604060934, 115.239691648481 -33.6743443271268, 115.239699772062 -33.6743237058329, 115.240113431363 -33.6743243590348, 115.240178171451 -33.6743786155609, 115.240177955686 -33.6747552161022, 115.240458340862 -33.6747598149255, 115.240458358091 -33.6747295767542, 115.240781882124 -33.6747300860268, 115.240781945914 -33.6746173804366, 115.240857674446 -33.6746174994664, 115.240857813618 -33.674371185862, 115.240825824665 -33.674343513622, 115.240805416753 -33.6743434815462, 115.240807982041 -33.6742159001552, 115.240833252449 -33.6742162599606, 115.240836169619 -33.6740730362074, 115.24091704994 -33.6740731632772, 115.240917718515 -33.6737756212637, 115.240388763091 -33.6737747892948, 115.240389433659 -33.6734771490754, 115.240282734561 -33.673477181751, 115.240284000067 -33.6734760000671, 115.240074388176 -33.6733329822655, 115.240072633568 -33.6716604330772, 115.239964795988 -33.6716604658915, 115.239964377521 -33.6712612966647, 115.239539781458 -33.6712427324848, 115.239102571544 -33.6712609696738, 115.238702779967 -33.6712961557942, 115.238004197561 -33.6714330056194, 115.237791375962 -33.6714622389466, 115.237656005037 -33.6714730834887, 115.237667774581 -33.6715808333182, 115.237849609878 -33.6715662664964, 115.237883460822 -33.6715919654191, 115.237884022017 -33.6721400035533, 115.237884298947 -33.6724104964409, 115.237884418184 -33.6725269736906, 115.237832218077 -33.6728660720759, 115.237794234974 -33.6728873548179, 115.237728721263 -33.6728726682855, 115.237692389439 -33.6730138819142, 115.237747391185 -33.6730262119298, 115.237770246804 -33.6730593228313, 115.23774693383 -33.6731320215858, 115.237698642757 -33.673244881011, 115.237682722523 -33.6732747842281, 115.237642368403 -33.6733572068545, 115.237580900415 -33.673548885494, 115.237501509781 -33.6735871946194))\n24\tChesalon Living\tReady for service\tPOLYGON ((150.74401125716309 -34.0064770830842, 150.74288472938147 -34.005151877185476, 150.74265405940787 -34.00499178379782, 150.74281499194427 -34.004760537260907, 150.74289545821244 -34.004515948892056, 150.74338362025503 -34.004431454564504, 150.74397370623677 -34.004262465657206, 150.74486419962935 -34.003582059550524, 150.7449768524084 -34.003502011414852, 150.74506268310103 -34.003524247015541, 150.74515387820921 -34.003524247015541, 150.74522898006188 -34.003466434441208, 150.74523434447738 -34.003368597687768, 150.74523434447738 -34.003333020658239, 150.74606046485718 -34.002879412228566, 150.74624821947995 -34.00281270490261, 150.74680611895982 -34.00376883824034, 150.7470153312625 -34.004226889002844, 150.74697778033612 -34.004573760751995, 150.74679539011984 -34.004853925360948, 150.74598536300448 -34.005316417297323, 150.7440166215876 -34.00649042397766, 150.74401125716309 -34.0064770830842))\nAYCA-S72QY\tKialla Lakes Estate\tUnder construction\tPOLYGON ((145.392727999998 -36.4346950000272, 145.392695999998 -36.4349910000272, 145.392774999998 -36.4353920000272, 145.392774999998 -36.4357640000272, 145.396410999998 -36.4357640000272, 145.396457999998 -36.4353490000272, 145.396578999998 -36.4351410000273, 145.396439999998 -36.4351410000273, 145.396439999998 -36.4348260000273, 145.396516999998 -36.4347820000272, 145.397000999998 -36.4342080000272, 145.396941999998 -36.4341400000272, 145.397996999998 -36.4338420000273, 145.398268999998 -36.4336830000272, 145.398056999998 -36.4333620000273, 145.398224339998 -36.4332959000551, 145.398310309998 -36.4332664000551, 145.398441619998 -36.4332269300551, 145.398575399998 -36.4331933200551, 145.398711239998 -36.433165650055, 145.398809494287 -36.4331490960761, 145.398894889998 -36.433138170055, 145.398941149998 -36.4331329900551, 145.398998262998 -36.4331271013785, 145.399080529998 -36.433121550055, 145.399173789998 -36.433117350055, 145.399467944225 -36.4331162272658, 145.399512609998 -36.4331522900551, 145.399691069998 -36.433152220055, 145.399735689998 -36.4331161300551, 145.400534627257 -36.4331160641629, 145.400578969998 -36.433151850055, 145.400757429998 -36.4331517800551, 145.40080205285 -36.4331156929635, 145.401395581097 -36.4331154407395, 145.401470447539 -36.4331167685999, 145.401502093125 -36.4331222102779, 145.401533644591 -36.4331322414585, 145.401556555736 -36.4331429737684, 145.401576555772 -36.4331553655431, 145.401611765012 -36.4331877651663, 145.401634572862 -36.4332250820084, 145.401643703886 -36.4332565337432, 145.4016454364 -36.4333077145548, 145.401913271944 -36.4333113008194, 145.401913669998 -36.433266950055, 145.401917028831 -36.4332461518091, 145.401923859998 -36.433225400055, 145.401933899998 -36.4332057800551, 145.401947019998 -36.4331873900551, 145.401962999998 -36.4331705500551, 145.401991719998 -36.433148790055, 145.402013549998 -36.433136990055, 145.402037099998 -36.4331275900551, 145.402061969998 -36.433120760055, 145.402087729998 -36.433116610055, 145.402113939998 -36.4331152200551, 145.402113488411 -36.432889381135, 145.402080339998 -36.4328899000551, 145.402056802083 -36.4328885634355, 145.402033209998 -36.432884440055, 145.402010839998 -36.4328777100551, 145.401989889998 -36.432868480055, 145.401970769998 -36.432856930055, 145.401953889998 -36.432843300055, 145.401939579998 -36.4328278700551, 145.401933479998 -36.4328195700551, 145.401928129998 -36.4328109400551, 145.401919769998 -36.4327928800551, 145.401914697557 -36.4327741182844, 145.401912969998 -36.432754800055, 145.401912693314 -36.4323350436594, 145.40163886236 -36.4323205842107, 145.401639089998 -36.4327548600551, 145.401636806813 -36.4327767230063, 145.401631544163 -36.4327948494068, 145.401627748239 -36.4328036879702, 145.401623083147 -36.4328125017836, 145.401611729289 -36.4328289292348, 145.401598279998 -36.4328433900552, 145.401580975771 -36.4328573133078, 145.401561055266 -36.4328692329583, 145.40154120133 -36.4328779066346, 145.401518962207 -36.4328846099772, 145.401495327292 -36.4328887523962, 145.401471888131 -36.4328900967682, 145.400039179537 -36.4328906961605, 145.399994131711 -36.4328543332386, 145.399815775544 -36.4328547222281, 145.399771439998 -36.4328908100551, 145.399326198245 -36.4328909876818, 145.399216393965 -36.4328914017682, 145.399116279998 -36.432894320055, 145.399065790837 -36.4328968749369, 145.398965699998 -36.432904090055, 145.398915015546 -36.4329088609946, 145.398767308847 -36.4329270153748, 145.398667529998 -36.432942950055, 145.398569720719 -36.4329615025704, 145.398513289998 -36.432936190055, 145.398342559998 -36.432978180055, 145.398298037871 -36.4330306917265, 145.397989541115 -36.4331357517172, 145.397868999998 -36.4328360000272, 145.397379999998 -36.4329470000272, 145.397205999998 -36.4329500000272, 145.397228999998 -36.4330980000272, 145.396983999998 -36.4332380000272, 145.396757999998 -36.4333670000272, 145.396582999998 -36.4334660000272, 145.396388999998 -36.4335770000272, 145.396221999998 -36.4336290000273, 145.396238999998 -36.4336620000273, 145.396029999998 -36.4337810000272, 145.395845999998 -36.4338860000272, 145.395534999998 -36.4340590000273, 145.395319999998 -36.4341860000273, 145.395166999998 -36.4342730000272, 145.394953999998 -36.4343950000271, 145.394618999998 -36.4345850000272, 145.394588999998 -36.4345980000272, 145.394330999998 -36.4347060000272, 145.392934999998 -36.4347060000272, 145.392727999998 -36.4346950000272))\n17349198\tThe Palisades\tCheck with carrier\tPOLYGON ((152.923364992 -27.4275060285, 152.923361056 -27.427301992, 152.92312704 -27.426885039000002, 152.922961088 -27.426588021500002, 152.922899168 -27.426479038, 152.922830048 -27.4263080425, 152.922785056 -27.426180966, 152.922687136 -27.4259079985, 152.922624832 -27.4255340395, 152.922562912 -27.4251629665, 152.92214784 -27.425114996, 152.921949856 -27.424692992500002, 152.921919968 -27.424673993000003, 152.921125088 -27.4241649655, 152.920995136 -27.4241909765, 152.92082592 -27.424224998, 152.92063008 -27.424263959, 152.920419136 -27.4243239915, 152.920163168 -27.4245039965, 152.91992016 -27.424491028000002, 152.919534976 -27.4270069725, 152.919698048 -27.427028044, 152.919884896 -27.427051983000002, 152.92005984 -27.4270750155, 152.920257856 -27.4271010265, 152.92045584 -27.4271270375, 152.920654912 -27.427152956, 152.920854016 -27.427178967, 152.921053088 -27.4272039975, 152.921282048 -27.4272339675, 152.921420992 -27.427252042, 152.921639872 -27.4272810315, 152.921847968 -27.427308023000002, 152.922066848 -27.4273370125, 152.922327136 -27.427370035, 152.922624128 -27.4274090145, 152.923364992 -27.4275060285))\nAYCA-1L7JOH\tLots 73 and 74 Queensway Rd, Landsdale\tUnder construction\tPOLYGON ((115.869656132796 -31.8046482472394, 115.869664 -31.8076540000109, 115.869833999999 -31.8077280000108, 115.869747999999 -31.807871000011, 115.869664140348 -31.8078350601603, 115.869666959313 -31.8089121375308, 115.869651092692 -31.8089126295831, 115.87166388 -31.8089146500103, 115.871614603011 -31.8061024018813, 115.871628123745 -31.8046707096978, 115.869656132796 -31.8046482472394))\n17355906\tDeepwater Estate\tCheck with carrier\tPOLYGON ((153.015337088 -27.3051000015, 153.016374976 -27.305244986, 153.019631168 -27.3043669575, 153.02007504 -27.3043359885, 153.02100816 -27.303984007500002, 153.01913904 -27.30334104, 153.017885888 -27.303056991000002, 153.016935136 -27.30241197, 153.01653408 -27.302012999000002, 153.01602288 -27.303364979, 153.015697088 -27.3039530385, 153.01545408 -27.304432022, 153.015337088 -27.3051000015))\n17347407\tAspire at Weston\tCheck with carrier\tPOLYGON ((151.447782976 -32.808095997, 151.446575872 -32.80791096, 151.446570112 -32.807871999, 151.445832832 -32.807769028, 151.445724832 -32.807457007000004, 151.445210048 -32.8070600155, 151.445309056 -32.80657896, 151.44483888 -32.806507957, 151.444412992 -32.8085749805, 151.44458112 -32.8087600175, 151.44464016 -32.808828967000004, 151.444684096 -32.8088819695, 151.444743136 -32.808951992000004, 151.44481584 -32.809032985, 151.444926016 -32.8091660185, 151.445044096 -32.809294982000004, 151.44511392 -32.8093849845, 151.445224096 -32.809510988, 151.445324896 -32.809624023, 151.445403008 -32.809718965, 151.44546384 -32.8097860275, 151.445550976 -32.8099190425, 151.445620096 -32.8100560165, 151.44571008 -32.810193009, 151.445826016 -32.810338974000004, 151.446003136 -32.8105680225, 151.446098176 -32.810681964000004, 151.446197888 -32.8108189565, 151.446264832 -32.8109270335, 151.446323872 -32.811037016, 151.446413888 -32.811104966500004, 151.446525856 -32.811145019, 151.446607936 -32.811185978000005, 151.446755872 -32.8112080115, 151.446884032 -32.811255982, 151.44687504 -32.811229971, 151.446954976 -32.81124096, 151.447050016 -32.8112710225, 151.447115872 -32.8112550015, 151.44715584 -32.811255982, 151.447782976 -32.808095997))\n17325519\tBraeburn Estate\tCheck with carrier\tPOLYGON ((151.173253088 -32.5464440405, 151.172947072 -32.549041977, 151.173132832 -32.548931014000004, 151.173272896 -32.54883696, 151.17334416 -32.5487079965, 151.17350688 -32.5485999935, 151.173600832 -32.5485440125, 151.173747008 -32.5485700235, 151.173821888 -32.548647964000004, 151.17380784 -32.548725997, 151.173738016 -32.5488549605, 151.173677152 -32.548960984000004, 151.173717856 -32.549065028, 151.173888128 -32.549086987500004, 151.173978112 -32.549086987500004, 151.174114912 -32.548970974, 151.174217888 -32.548805991, 151.174257856 -32.5487240175, 151.17438816 -32.548479022, 151.17449616 -32.548431958, 151.17459696 -32.548419008, 151.174762912 -32.5484970225, 151.174887136 -32.548470031, 151.175152096 -32.5484370085, 151.175549152 -32.5483440275, 151.176029056 -32.548206961, 151.176366016 -32.548056038, 151.176920032 -32.5479860155, 151.177015072 -32.548017965, 151.17759216 -32.548094999, 151.17763392 -32.5479760255, 151.17763392 -32.547914994, 151.177772896 -32.547797001, 151.177835872 -32.547674975, 151.17802992 -32.5475080125, 151.17834384 -32.547292025000004, 151.17844896 -32.547225961500004, 151.178754976 -32.54712201, 151.17898608 -32.547056039000005, 151.173253088 -32.5464440405))\nAYCA-IK50L\tSt George Springs\tContracted\tPOLYGON ((152.051781890475 -28.2061125129523, 152.050144884554 -28.207023317801, 152.04888450256001 -28.2077973304835, 152.048881758888 -28.2081070580618, 152.049617 -28.2085469999864, 152.051914040457 -28.2089276030766, 152.052124184597 -28.2085221535795, 152.052229 -28.2074959999863, 152.052678169737 -28.2075451434515, 152.053560818837 -28.207647465696, 152.053798161383 -28.2060838992336, 152.052097711999 -28.2060074708023, 152.051781890475 -28.2061125129523))\nAYCA-1DAJU0\tHarrington Grove\tUnder construction\tPOLYGON ((150.719234999989 -34.0141670000154, 150.718749999989 -34.0141130000153, 150.718313999989 -34.0140490000153, 150.718294999989 -34.0139980000153, 150.718286999989 -34.0139850000153, 150.718252999989 -34.0139450000153, 150.718209999989 -34.0139140000153, 150.718154999989 -34.0138900000153, 150.718070999989 -34.0138770000152, 150.717720999989 -34.0138600000152, 150.717642999989 -34.0138580000153, 150.717606999989 -34.0138590000153, 150.717519999989 -34.0138640000153, 150.717439999989 -34.0138730000153, 150.717367999989 -34.0138860000153, 150.717294999989 -34.0138990000152, 150.717201999989 -34.0139090000153, 150.717107999989 -34.0139100000153, 150.717018999989 -34.0139010000152, 150.716957999989 -34.0138920000153, 150.716820999989 -34.0138720000153, 150.716639999989 -34.0138450000152, 150.716499999989 -34.0138250000152, 150.716444999989 -34.0138200000153, 150.716374999989 -34.0138160000152, 150.716280999989 -34.0138170000153, 150.716229999989 -34.0138200000152, 150.716173999989 -34.0138250000152, 150.716110999989 -34.0138340000153, 150.715761999989 -34.0138900000153, 150.715973999989 -34.0147820000153, 150.715959999989 -34.0148390000153, 150.716000999989 -34.0150120000152, 150.716039999989 -34.0150600000153, 150.716060999989 -34.0151490000153, 150.716072999989 -34.0152010000153, 150.716108999989 -34.0153050000153, 150.716152999989 -34.0153870000153, 150.716195999989 -34.0154510000152, 150.716286999989 -34.0155510000154, 150.717138999989 -34.0163450000153, 150.717191999989 -34.0163940000153, 150.717257999989 -34.0164450000153, 150.717357999989 -34.0165020000153, 150.717436999989 -34.0165340000153, 150.717533999989 -34.0165610000154, 150.717636999989 -34.0165760000153, 150.717716999989 -34.0165790000154, 150.717808999989 -34.0165740000153, 150.717958999989 -34.0165610000153, 150.718057999989 -34.0165520000154, 150.718150999989 -34.0165980000153, 150.718192999989 -34.0166690000153, 150.718237999989 -34.0167290000153, 150.718282999989 -34.0167810000153, 150.718343999989 -34.0168410000153, 150.718415999989 -34.0169000000153, 150.718470999989 -34.0169420000154, 150.718569999989 -34.0170160000154, 150.718651999989 -34.0170630000153, 150.718738999989 -34.0170990000153, 150.718862999989 -34.0171290000153, 150.718940999989 -34.0171370000153, 150.719012999989 -34.0171380000153, 150.719056999989 -34.0171350000153, 150.719098999989 -34.0171300000153, 150.719160999989 -34.0171180000153, 150.719210999989 -34.0171070000153, 150.719261999989 -34.0170990000153, 150.719299999989 -34.0170970000153, 150.719346999989 -34.0170970000153, 150.719404999989 -34.0171030000153, 150.719455999989 -34.0171130000154, 150.719506999989 -34.0171280000153, 150.719536999989 -34.0171400000154, 150.719558999989 -34.0171570000153, 150.719578999989 -34.0171820000153, 150.719603999989 -34.0172330000154, 150.719541999989 -34.0170480000153, 150.719467999989 -34.0168280000153, 150.719272999989 -34.0162030000153, 150.719229999989 -34.0160140000154, 150.719194999989 -34.0157860000153, 150.719181999989 -34.0156790000153, 150.719163999989 -34.0155380000153, 150.719160999989 -34.0153960000154, 150.719158999989 -34.0152580000154, 150.719160999989 -34.0151630000153, 150.719164999989 -34.0150460000153, 150.719167999989 -34.0149330000154, 150.719171999989 -34.0148290000153, 150.719176999989 -34.0147530000153, 150.719187999989 -34.0145810000154, 150.719197999989 -34.0144370000153, 150.719234999989 -34.0141670000154))\n10576\tSecret Harbour\tReady for service\tPOLYGON ((115.7580041885376 -32.41016651368836, 115.7574999332428 -32.410601279154193, 115.75675964355469 -32.409342265076745, 115.75608909130096 -32.40840839532423, 115.7559335231781 -32.408281585865247, 115.75626611709595 -32.408059668883311, 115.75641632080078 -32.408168362983453, 115.757355093956 -32.407407501533548, 115.75716733932495 -32.407167466530929, 115.75637876987457 -32.40658775672231, 115.75599253177643 -32.406370364584163, 115.7551771402359 -32.406220907185457, 115.75408816337585 -32.406288842397373, 115.75406670570374 -32.405985398055016, 115.75501084327698 -32.405940107767165, 115.75613737106323 -32.406171087997585, 115.75726389884949 -32.406510763733259, 115.75787544250488 -32.406610401706587, 115.75787544250488 -32.406787032388976, 115.7587069272995 -32.406805148336865, 115.75862109661102 -32.40730333547873, 115.75819730758667 -32.407280690668287, 115.75823485851288 -32.407647535897794, 115.75789153575897 -32.407643006953428, 115.75840651988983 -32.408381221883729, 115.75856745243073 -32.408313288246688, 115.75905561447144 -32.409092257549595, 115.75886785984039 -32.409178306071865, 115.75949013233185 -32.410142949679937, 115.75977981090546 -32.41002972913325, 115.75995683670044 -32.410319573449158, 115.75969934463501 -32.410459966455029, 115.75976371765137 -32.410582244056386, 115.75955986976624 -32.410623003220024, 115.75936675071716 -32.410342217497131, 115.75917363166809 -32.410419207217764, 115.75910925865173 -32.410301458206689, 115.75873911380768 -32.4103693903472, 115.75837433338165 -32.410265227710831, 115.7580041885376 -32.41016651368836))\n10445\tJindalee-Jindalee Beach\tReady for service\tPOLYGON ((115.69432854652405 -31.64808608166744, 115.69447875022888 -31.648670612137224, 115.69401741027832 -31.648743678187508, 115.69398522377014 -31.648551879683026, 115.69357752799988 -31.648634079090556, 115.6934916973114 -31.648579279493617, 115.69337368011475 -31.648606679296126, 115.6934380531311 -31.648853277155247, 115.6924295425415 -31.649081607922998, 115.69261193275452 -31.649867061480808, 115.69233298301697 -31.649912727181185, 115.69240808486938 -31.650195854022719, 115.6910240650177 -31.650433314579679, 115.69105625152588 -31.65074383900804, 115.69088459014893 -31.650835169524832, 115.69100260734558 -31.651319219765618, 115.69162487983704 -31.651191357682855, 115.69159269332886 -31.65104522937289, 115.69222569465637 -31.650963032097582, 115.69380283355713 -31.650807770379224, 115.69579839706421 -31.650460713835681, 115.69574475288391 -31.65010452287774, 115.69682836532593 -31.649930993455051, 115.69433927536011 -31.648095214984291, 115.69432854652405 -31.64808608166744))\n10291\tDawesville-Port Bouvard South\tReady for service\tPOLYGON ((115.63354969024658 -32.6050378802273, 115.63336193561554 -32.6053632485495, 115.63344240188599 -32.605399400512347, 115.63335120677948 -32.605544008217827, 115.63310980796814 -32.605797071140643, 115.63318490982056 -32.605846779845031, 115.63478350639343 -32.606380016938793, 115.63577592372894 -32.606529141998664, 115.63594222068787 -32.606556255619246, 115.63626408576965 -32.606737012879989, 115.63642501831055 -32.607378698209544, 115.63619166612625 -32.6077352312218, 115.63621044158936 -32.60779397659828, 115.63652694225311 -32.6079408398709, 115.636505484581 -32.60801134121693, 115.63663959503174 -32.608070086412312, 115.6369560956955 -32.608210170953484, 115.63698828220367 -32.608151425849982, 115.63733696937561 -32.608323142198053, 115.6374603509903 -32.608388206509545, 115.63778221607208 -32.608532809389622, 115.63822478055954 -32.6078617596771, 115.6390106678009 -32.606692741506492, 115.63713312149048 -32.605259311575054, 115.63683807849884 -32.605101146382509, 115.63652694225311 -32.605530451255355, 115.63627481460571 -32.605833222928389, 115.63618898391724 -32.605950257180261, 115.63614875078201 -32.606054193352961, 115.63601195812225 -32.606090345036932, 115.63557475805283 -32.606020301135985, 115.63569277524948 -32.605740124984429, 115.63354969024658 -32.6050378802273))\nAYCA-F6G23\tHeron Park\tReady for service\tPOLYGON ((115.933853735721 -32.1206153334715, 115.93354464 -32.1208844400133, 115.93018404 -32.1238092600132, 115.930986074919 -32.1244668212669, 115.931214760091 -32.1244117382082, 115.931816713185 -32.1239256591206, 115.931918865948 -32.1240106376915, 115.933016599928 -32.1240122202109, 115.933025203867 -32.1240480981135, 115.93388396329 -32.1240595417658, 115.933867225796 -32.1239888515618, 115.933912376497 -32.1239000068933, 115.933919986424 -32.1236597936273, 115.934208216464 -32.1236571550213, 115.934286997635 -32.1221110341096, 115.934462561939 -32.1216027728868, 115.934292374353 -32.1215570820482, 115.93446074444 -32.1210653592396, 115.933853735721 -32.1206153334715))\n272\tCastle Towers Shopping Centre\tContracted\tPOLYGON ((151.00477934287912 -33.73115719422902, 151.00649595665146 -33.728980037341415, 151.00759029792223 -33.729140649162808, 151.008942131271 -33.730943050099263, 151.00653887199331 -33.73251342797365, 151.00477934287912 -33.73115719422902))\nAYCA-1BNMMK\tRedgum Brook Estate\tReady for service\tPOLYGON ((115.973701271346 -32.2091690608967, 115.974624988972 -32.2091728199596, 115.974624553646 -32.2092502119495, 115.977835 -32.2092740000136, 115.977942 -32.2091880000136, 115.977945868039 -32.2072875821387, 115.977845290272 -32.2072012536066, 115.976172146342 -32.207239699335, 115.975105700689 -32.2073263633344, 115.975105 -32.2073740000136, 115.973611413994 -32.2077630073117, 115.973431180645 -32.2080117045606, 115.973701271346 -32.2091690608967))\nAYCA-1BCCVE\tFrizzo Road, Palmview\tReady for service\tPOLYGON ((153.039079776235 -26.7461322570971, 153.039040527474 -26.7461523898806, 153.038922889225 -26.7462370324011, 153.038886378159 -26.7462547297012, 153.038818378936 -26.7462555127694, 153.038767441972 -26.7462616745668, 153.038744037627 -26.7462690192714, 153.038707404361 -26.7462760251834, 153.038670517876 -26.7462701876436, 153.038604672951 -26.7462521122152, 153.038454820367 -26.7462421716645, 153.038481242491 -26.7464035308685, 153.03856320825 -26.746410314028, 153.038635225272 -26.7464636462926, 153.038623816093 -26.7465478773821, 153.038456309712 -26.7467631770319, 153.038384686466 -26.7468821345586, 153.03833970713 -26.7470111891745, 153.038336518776 -26.7470368828969, 153.038175637922 -26.746991788015, 153.037696907708 -26.7471068537933, 153.037578823014 -26.74725607489, 153.03679200591 -26.7474622132035, 153.037402550041 -26.7492774114998, 153.037612443409 -26.7495516144182, 153.038201312946 -26.7493973360508, 153.038234528074 -26.7495935283615, 153.038329516807 -26.7497368745441, 153.038333224259 -26.7497576160021, 153.038343468235 -26.7497943170245, 153.038522511509 -26.7501612813719, 153.038557664038 -26.7502104453081, 153.038979 -26.7500089999748, 153.039275 -26.7498879999749, 153.039606 -26.7498429999749, 153.03978 -26.7499539999749, 153.039872 -26.7504909999749, 153.040657 -26.7504329999748, 153.040815943059 -26.7504170308674, 153.040792 -26.7503209999748, 153.040785 -26.7502849999749, 153.040759 -26.7501509999749, 153.04072 -26.7500199999749, 153.040666 -26.7498939999749, 153.040597 -26.7497739999748, 153.040552 -26.7497119999749, 153.040514 -26.7496599999749, 153.040419 -26.7495559999749, 153.040312 -26.7494599999749, 153.040195 -26.7493749999749, 153.040068 -26.7493019999749, 153.039933 -26.7492409999749, 153.039903 -26.7492309999748, 153.039934 -26.7489329999749, 153.039801 -26.7487289999749, 153.039635 -26.7485269999749, 153.039604 -26.7483479999748, 153.039571 -26.7482089999749, 153.039616 -26.7480869999749, 153.040161 -26.7479339999748, 153.040121 -26.7475959999749, 153.039389 -26.7476789999749, 153.039069 -26.7471129999749, 153.039071 -26.7468199999749, 153.039192 -26.7467199999749, 153.039113 -26.7466419999748, 153.039019 -26.7465359999749, 153.039 -26.7464999999748, 153.039 -26.7464609999748, 153.039004 -26.7464179999748, 153.039041 -26.7463599999748, 153.039159 -26.7462769999748, 153.039189620222 -26.7462627345697, 153.039079776235 -26.7461322570971))\n10378\tHalls Head-Port Mandurah\tReady for service\tPOLYGON ((115.7064950466156 -32.533376613425339, 115.70749819278717 -32.53353716645087, 115.70790722966194 -32.533993384221105, 115.70812918245792 -32.534216969655212, 115.70835113525391 -32.534428117461871, 115.7085844874382 -32.534645765953208, 115.70882856845856 -32.534846454354486, 115.70900559425354 -32.534995698395974, 115.70901766419411 -32.535046576989785, 115.70900559425354 -32.5350657977844, 115.70898983627558 -32.535142680921709, 115.70900140330195 -32.535182253099073, 115.70900584571064 -32.535206561713665, 115.70900224149227 -32.535229739688909, 115.70876151323318 -32.535582496427331, 115.70866193622351 -32.535760004903111, 115.70857979357243 -32.53594090489964, 115.70840209722519 -32.536517521206825, 115.70831760764122 -32.5368889279856, 115.70829279720783 -32.537090741983896, 115.7082961499691 -32.537141054086518, 115.70766180753708 -32.537120137822562, 115.70765376091003 -32.537184582512111, 115.70762157440186 -32.537217370143438, 115.70758402347565 -32.537220761966694, 115.70752501487732 -32.537225284397472, 115.70746600627899 -32.537223023182108, 115.7073587179184 -32.537223588485944, 115.70726752281189 -32.537213978320068, 115.70727489888668 -32.537081697108526, 115.70727691054344 -32.537026297227015, 115.70727825164795 -32.536931891227724, 115.7072339951992 -32.536917758584551, 115.70719543844461 -32.53690588716259, 115.70724740624428 -32.5369075830801, 115.70724925026298 -32.53687917645739, 115.70725042372942 -32.536882992272908, 115.70727288722992 -32.536814307568868, 115.70727657526731 -32.536784628976804, 115.70729753002524 -32.536733892694308, 115.70727615617216 -32.536699479628446, 115.70726551115513 -32.53669672375608, 115.70714078843594 -32.536667893086175, 115.70706199854612 -32.536675807388633, 115.70699661970139 -32.536667893086175, 115.70692654699087 -32.536649661922482, 115.70681624114513 -32.536630300139947, 115.70670425891876 -32.536602882718107, 115.70657333359122 -32.536581401020918, 115.70636730641127 -32.536571225478355, 115.70615641772747 -32.536561615242647, 115.70607611909509 -32.536568964246513, 115.70600789040327 -32.536579705097239, 115.70595676079392 -32.536592141870152, 115.7058922201395 -32.536595533717005, 115.70577889680862 -32.536635670561793, 115.70582985877991 -32.536388630824135, 115.70589959621429 -32.535730043306025, 115.70590294897556 -32.535450212812783, 115.70591568946838 -32.535060144609929, 115.70600621402264 -32.53459884437499, 115.70628985762596 -32.533892191136239, 115.70641994476318 -32.533575608682, 115.70645079016685 -32.533478372418486, 115.7064950466156 -32.533376613425339))\nAYCA-1JG1CU\tSpring Mountain\tContracted\tPOLYGON ((152.906138 -27.7313099999831, 152.906563 -27.7314229999825, 152.906585 -27.7314359999824, 152.906607 -27.7314679999825, 152.906609 -27.7315059999825, 152.906354 -27.7321329999832, 152.905699 -27.7321529999832, 152.905742 -27.7329029999832, 152.905515 -27.7329589999832, 152.905538 -27.7331419999832, 152.905599 -27.7331209999832, 152.905941 -27.7339989999832, 152.906329 -27.7338219999831, 152.906428 -27.7339709999831, 152.906597 -27.7341389999831, 152.906787 -27.7339959999832, 152.906644 -27.7338509999831, 152.906546 -27.7337079999832, 152.907095 -27.7334209999831, 152.907292 -27.7329799999831, 152.907275 -27.7321559999831, 152.907406 -27.7320259999831, 152.907418 -27.7319929999831, 152.907331 -27.7319509999831, 152.90731 -27.7319199999831, 152.907675 -27.7315599999831, 152.90799 -27.7311019999831, 152.908521 -27.7308839999831, 152.908828 -27.7309229999831, 152.909423 -27.7306039999832, 152.909523 -27.7305049999831, 152.909669 -27.7298269999831, 152.908631 -27.7292579999831, 152.907824 -27.7293769999831, 152.907082 -27.7296069999831, 152.907171 -27.7298419999831, 152.907144 -27.7298879999831, 152.906634 -27.7301359999831, 152.906484 -27.7301609999832, 152.906283 -27.7311679999831, 152.906138 -27.7313099999831))\nAYAA-GO2KN\tCardinia Lakes\tReady for service\tPOLYGON ((145.507605858647 -38.0624103221007, 145.506987534338 -38.0653093128579, 145.511240738021 -38.0652075349475, 145.511447420508 -38.0640574518982, 145.511417421367 -38.0640518172595, 145.511381159999 -38.064009330029, 145.511418236175 -38.0640509278095, 145.511473679999 -38.063793780029, 145.511420220121 -38.0638236822351, 145.508556913788 -38.0634389013759, 145.508413431692 -38.0632911104178, 145.508512747882 -38.0628291911243, 145.508859362315 -38.0628757747588, 145.508899856918 -38.0624992126876, 145.508899950166 -38.0624983455678, 145.508900330399 -38.0624812446483, 145.508790262406 -38.0624721806736, 145.508589091394 -38.0624550106435, 145.508239577862 -38.0624391259828, 145.507605858647 -38.0624103221007))\n17325948\tEwer St Carindale\tCheck with carrier\tPOLYGON ((153.116602912 -27.516684964, 153.119406976 -27.5171390095, 153.11942496 -27.517141988000002, 153.11943216 -27.5171030085, 153.119959936 -27.514310045000002, 153.117483136 -27.5139160135, 153.117464032 -27.514017005, 153.117119168 -27.513964983, 153.116602912 -27.516684964))\n17348390\tNorth Byron Beach Resort\tCheck with carrier\tPOLYGON ((153.588858848 -28.626032968500002, 153.590120992 -28.626216026, 153.589932 -28.6255790155, 153.586801088 -28.625325029000003, 153.58678704 -28.625535004, 153.586775168 -28.625606007000002, 153.586743136 -28.625744979, 153.586711072 -28.625848024, 153.58667184 -28.625948997000002, 153.586640896 -28.626014968, 153.586640896 -28.626014968, 153.586563136 -28.626125043000002, 153.58651488 -28.6262610365, 153.585879136 -28.627496004, 153.585564128 -28.627878954, 153.58646592 -28.628380988500002, 153.588366016 -28.628648998, 153.588858848 -28.626032968500002))\n10571\tSecret Harbour\tReady for service\tPOLYGON ((115.75819730758667 -32.400818549598917, 115.75812220573425 -32.401814987213847, 115.75707077980042 -32.40304693124223, 115.75712442398071 -32.403490789309124, 115.75721025466919 -32.403726304948194, 115.75701713562012 -32.404559663044871, 115.75579404830933 -32.405619466032505, 115.75608372688293 -32.406126717760223, 115.75751066207886 -32.406425632622039, 115.75785398483276 -32.405438304010339, 115.75774669647217 -32.404668361359846, 115.75761795043945 -32.403735363229728, 115.75810074806213 -32.403409264521684, 115.75959205627441 -32.40332773966059, 115.75957059860229 -32.400564909177263, 115.75819730758667 -32.400818549598917))\n17315061\tYandina Caravan Park Stage 1\tCheck with carrier\tPOLYGON ((152.95569984 -26.5687499775, 152.95566384 -26.567922953500002, 152.955654112 -26.5676779765, 152.955659168 -26.5673809775, 152.955558016 -26.5668589815, 152.955468 -26.5663929665, 152.955437056 -26.566389988, 152.955375136 -26.5663919675, 152.955352096 -26.566396019000003, 152.955362176 -26.5664690015, 152.955276832 -26.5664850225, 152.955199072 -26.566513013, 152.955127072 -26.5665459615, 152.955060832 -26.5665740445, 152.954993888 -26.5666040145, 152.954790112 -26.5666920375, 152.954492032 -26.5667979685, 152.954421856 -26.56681497, 152.954345152 -26.566838002500003, 152.954268832 -26.566873023, 152.954166976 -26.566901994000002, 152.95408416 -26.5669299845, 152.954000992 -26.566925045, 152.953867072 -26.566901994000002, 152.953709056 -26.566889044, 152.95358016 -26.566867972500003, 152.95350384 -26.566857002000003, 152.953401952 -26.566839982, 152.953296832 -26.566791031, 152.953211168 -26.566769978, 152.95311504 -26.566722988000002, 152.95300416 -26.566613005500002, 152.952927136 -26.566527961000002, 152.952815872 -26.56648197, 152.95270608 -26.566422030000002, 152.952642016 -26.566364976, 152.952527168 -26.566272994000002, 152.952450848 -26.566216014000002, 152.952368032 -26.56615896, 152.952303968 -26.566101998500002, 152.952258976 -26.566066978000002, 152.95220208 -26.566021986, 152.952150976 -26.565986965500002, 152.952089056 -26.5659309845, 152.952036128 -26.5658820335, 152.951982112 -26.5658339705, 152.951906176 -26.56576602, 152.951816896 -26.5656870065, 152.951722912 -26.565606994, 152.951706016 -26.565599964, 152.951695936 -26.5656609955, 152.951270048 -26.568136980000002, 152.954480896 -26.5685810355, 152.95569984 -26.5687499775))\nAYAA-IGN9M\tGreenhills Beach Residential\tReady for service\tPOLYGON ((151.164224730179 -34.0345879914221, 151.163112285158 -34.0362497546519, 151.16268587656 -34.0360833003118, 151.16255546668 -34.0362730112496, 151.161826201279 -34.0359777098236, 151.161666301299 -34.0362427127229, 151.161890857066 -34.0363388083237, 151.161842565451 -34.036424644115, 151.16163438316 -34.0363442464351, 151.161587825217 -34.0363497325831, 151.161398091915 -34.0367292850418, 151.164686395009 -34.0371389663199, 151.165414344594 -34.0367087154287, 151.166198890179 -34.0360785562508, 151.166397927303 -34.0357970221792, 151.166583478477 -34.0355906361669, 151.16674644362 -34.0353029793296, 151.166368972217 -34.0351140289499, 151.16563977966 -34.0343807302554, 151.165627154043 -34.0342740875526, 151.165550013898 -34.0340023978394, 151.165033156054 -34.0340974230373, 151.164530757028 -34.0341389201173, 151.1642136507 -34.0341326033248, 151.164040393037 -34.0341505660729, 151.164130175836 -34.034303644831, 151.16398072354 -34.0343630577078, 151.163946195106 -34.0344668630306, 151.164224730179 -34.0345879914221))\nAYAA-IWBVJ\tGalway Gold Estate\tReady for service\tPOLYGON ((145.481057988543 -38.0572001902837, 145.480105968848 -38.0570660824079, 145.480124838264 -38.0570063103282, 145.47994669679 -38.0569757450888, 145.479490481167 -38.0569546380902, 145.479482061819 -38.0569794790168, 145.479087575592 -38.0569138349859, 145.479125138718 -38.0568121741888, 145.478948286129 -38.0567770736244, 145.477915506234 -38.0566168758139, 145.477070362828 -38.0561232153417, 145.475336361191 -38.0579394292993, 145.480728525819 -38.0586995986591, 145.481057988543 -38.0572001902837))\n17394457\tBoundary warehouses\tCheck with carrier\tPOLYGON ((145.184269728 -38.0843087805, 145.178448096 -38.0835764765, 145.178152512 -38.085072886, 145.18301552 -38.0856489945, 145.183170496 -38.0855959735, 145.184269728 -38.0843087805))\n17324948\tPerricoota Run Stage 3\tCheck with carrier\tPOLYGON ((144.73565712 -36.0924779755, 144.737694016 -36.091195019000004, 144.734817952 -36.0881949665, 144.733408928 -36.0890820045, 144.73378512 -36.0894670265, 144.73380384 -36.0895490185, 144.733770016 -36.089666993, 144.733776832 -36.0897990275, 144.734009056 -36.0897480045, 144.734100128 -36.090555030000004, 144.73431792 -36.090542968, 144.734689088 -36.090650971, 144.735121088 -36.091091974, 144.735117856 -36.091198978, 144.734802112 -36.091469966, 144.735426016 -36.091961011500004, 144.735281984 -36.092086016, 144.73565712 -36.0924779755))\nAYCA-12K0N9\tGreenway - 799 Richmond Rd\tUnder construction\tPOLYGON ((150.847701999976 -33.7233900000067, 150.847806999992 -33.7236200000161, 150.848460999992 -33.7235390000162, 150.848601999992 -33.7235060000162, 150.848689999992 -33.7235390000163, 150.848707999992 -33.7236040000162, 150.848759999992 -33.7241060000162, 150.848669999992 -33.7245650000162, 150.848613999992 -33.7248530000161, 150.848652109267 -33.7251710320827, 150.848669525823 -33.7253034178598, 150.848726737121 -33.7254254915201, 150.848763131037 -33.725476441414, 150.848830999984 -33.7255170000115, 150.848885722692 -33.7255446203463, 150.848954999984 -33.7255740000115, 150.848981999984 -33.7256400000114, 150.849022999984 -33.7256890000115, 150.849032349809 -33.7257059902078, 150.851926277199 -33.7250642024606, 150.85165280261 -33.7239154356834, 150.852129463245 -33.723845397254, 150.851904988586 -33.7229643950684, 150.851912232998 -33.7229106709171, 150.851953714223 -33.7228635454808, 150.852228831705 -33.7228235454511, 150.852197779215 -33.7226339261926, 150.847701999976 -33.7233900000067))\nAYAA-GUYWC\tBrookhaven Rise Estate\tReady for service\tPOLYGON ((144.696452590099 -37.563387875537, 144.696548855238 -37.5634836092478, 144.696568523798 -37.5635170204619, 144.696786268208 -37.5638310292366, 144.696895111016 -37.563989009563, 144.697023425843 -37.5640871144712, 144.697217166708 -37.5643775599408, 144.697422768156 -37.564324824098, 144.697626666077 -37.564272524484, 144.697664142077 -37.5642630057226, 144.699108241124 -37.5627863074173, 144.699510242355 -37.5630355814852, 144.699650290378 -37.5631223712831, 144.699863375303 -37.5630313338136, 144.699872756021 -37.5630001223187, 144.699839256342 -37.5629173262728, 144.699984594351 -37.5628274807955, 144.700200650951 -37.5629423128038, 144.700691300914 -37.5628120973608, 144.698800679999 -37.5615497700251, 144.698209199988 -37.5606240300206, 144.696987814674 -37.5593898295936, 144.696812570043 -37.5597259368854, 144.696838708497 -37.5600198425568, 144.696796080242 -37.5600866597155, 144.696361309929 -37.5602882853857, 144.696505649818 -37.5604274562127, 144.69674268558 -37.5606595906768, 144.696849930989 -37.560764617909, 144.696958950546 -37.5608683585388, 144.697072551379 -37.5609679579763, 144.69720838311 -37.5611006019455, 144.697290336555 -37.5611764427038, 144.697480837033 -37.5613809443107, 144.697324091698 -37.561507596016, 144.697309377696 -37.5615271478439, 144.697034675666 -37.5618601034818, 144.696925918443 -37.5619925689678, 144.696818760935 -37.5621269751963, 144.696728708402 -37.5622370787795, 144.696720766389 -37.5622424403742, 144.69647765581 -37.5624065618872, 144.696167166077 -37.562533089509, 144.69597960836 -37.5626093000965, 144.69610405142 -37.5628713366152, 144.696164080861 -37.5629977367791, 144.696263610228 -37.5629677836263, 144.696366016109 -37.5631834502236, 144.696383871856 -37.5632001254119, 144.696452590099 -37.563387875537), (144.696586941518 -37.5627940974843, 144.696746999988 -37.5627210000205, 144.696881384967 -37.562640614711, 144.697423515245 -37.563389155279, 144.698181165002 -37.5626301716185, 144.698501 -37.5628280000295, 144.697845533873 -37.5634986218135, 144.69777826698 -37.5635638109434, 144.697711 -37.5636290000296, 144.697544 -37.5637550000295, 144.697403193948 -37.5638382859478, 144.697174 -37.5636230000295, 144.696923 -37.5632850000296, 144.696586941518 -37.5627940974843))\nRAWM\tWellington Manor\tReady for service\tPOLYGON ((153.22544932365417 -27.490458180626142, 153.2263720035553 -27.492808957951141, 153.22774529457092 -27.492999302096674, 153.22919368743896 -27.492599579010953, 153.22815299034119 -27.489696784497312, 153.22544932365417 -27.490458180626142))\nAYCA-H7WBI\tSovereign Hills\tUnder construction\tPOLYGON ((152.827631 -31.4549160000096, 152.827522 -31.4547430000095, 152.827027 -31.4539740000096, 152.827028 -31.4539310000095, 152.828154 -31.4528970000095, 152.828523 -31.4525510000096, 152.828662 -31.4524230000095, 152.828504 -31.4522980000096, 152.828398 -31.4523970000095, 152.828356 -31.4523960000095, 152.828217 -31.4522710000095, 152.828443 -31.4520900000095, 152.828155 -31.4518300000095, 152.82825 -31.4513750000095, 152.829027 -31.4514990000095, 152.829141 -31.4515890000096, 152.829337 -31.4513820000095, 152.82944 -31.4514690000095, 152.8295 -31.4515480000095, 152.829523 -31.4515900000095, 152.829771 -31.4515030000095, 152.829934 -31.4514550000095, 152.830067 -31.4513880000095, 152.830163 -31.4512960000095, 152.830221 -31.4511950000095, 152.83025 -31.4510830000096, 152.830271 -31.4509360000095, 152.829897 -31.4508770000094, 152.829951 -31.4505900000095, 152.82846 -31.4503610000095, 152.828442 -31.4504400000094, 152.827099 -31.4502330000095, 152.827061 -31.4504150000095, 152.827024 -31.4504370000095, 152.826674 -31.4503820000095, 152.826647 -31.4505030000095, 152.827 -31.4505570000095, 152.827024 -31.4505870000095, 152.826818 -31.4515800000095, 152.826781 -31.4516030000095, 152.826426 -31.4515460000095, 152.826289 -31.4522220000095, 152.82652 -31.4524130000095, 152.826266 -31.4526550000095, 152.826263 -31.4527250000095, 152.826043 -31.4529240000095, 152.825876206132 -31.4530239070351, 152.825879 -31.4530960000095, 152.825907 -31.4531220000095, 152.825959 -31.4532020000095, 152.825993 -31.4533320000095, 152.826027 -31.4533960000095, 152.826092 -31.4534520000095, 152.826245 -31.4534980000095, 152.826303 -31.4535420000095, 152.826434 -31.4536720000095, 152.826657 -31.4539310000095, 152.826789 -31.4541220000095, 152.826943 -31.4543660000095, 152.82737 -31.4550390000096, 152.827519 -31.4552990000096, 152.827648 -31.4555710000095, 152.82764 -31.4556090000096, 152.827975 -31.4554890000096, 152.827933 -31.4554790000095, 152.827827 -31.4552610000095, 152.827743 -31.4550970000096, 152.827631 -31.4549160000096))\nAYCA-KACMM\tBeverly Hills Estate\tReady for service\tPOLYGON ((149.091830082507 -33.2436355021387, 149.091796153137 -33.243659156622, 149.091797762187 -33.2437085648098, 149.091691804224 -33.2442578949057, 149.092165090775 -33.2442717440585, 149.092240947185 -33.2447153338229, 149.092179071159 -33.24506832387, 149.091766192766 -33.2450090350277, 149.091690290413 -33.2449960665471, 149.091661822577 -33.2449883863948, 149.091613804965 -33.2449710139832, 149.091566665267 -33.2449477298478, 149.091518407561 -33.2449158045031, 149.091499229428 -33.2449001838863, 149.091470383238 -33.2448724741938, 149.091344313384 -33.2447340112349, 149.091319958522 -33.2447059625911, 149.091308544697 -33.2446907313845, 149.091288442984 -33.2446588203337, 149.091270382448 -33.2446208058783, 149.091261723192 -33.2445961826537, 149.091255492118 -33.2445725545832, 149.091249960027 -33.2445389117588, 149.09124830729 -33.2444992173004, 149.091251708408 -33.2444606318336, 149.091298399602 -33.2442405378867, 149.091359003761 -33.2442492804776, 149.091497693189 -33.2435390960525, 149.090919925562 -33.2434509155422, 149.090503287316 -33.2453319772113, 149.094767871004 -33.2458992825417, 149.094795274016 -33.2457622578097, 149.095105248057 -33.2458065883225, 149.095496985053 -33.2439428653151, 149.094882428055 -33.2438530836119, 149.094840634922 -33.2439488902959, 149.092802580004 -33.243619274262, 149.092294598007 -33.243548664759, 149.092271011054 -33.2435439218099, 149.091830082507 -33.2436355021387))\nAYCA-18CNWR\tMacquarie View Estate\tReady for service\tPOLYGON ((148.616670217466 -32.2786208316522, 148.616294894289 -32.2799792978243, 148.617230936442 -32.2801258064525, 148.617228237249 -32.2801415427677, 148.618398226376 -32.2803246506726, 148.618559000002 -32.2795880000133, 148.617945000002 -32.2794890000133, 148.618041000002 -32.2790530000134, 148.618154000002 -32.2790710000133, 148.618185000002 -32.2789290000133, 148.618446000002 -32.2775580000133, 148.618268000002 -32.2775300000133, 148.618371000002 -32.2769860000133, 148.618388000002 -32.2768920000133, 148.618291000002 -32.2768790000133, 148.618211000002 -32.2768610000133, 148.618145000002 -32.2768420000133, 148.618095000002 -32.2768250000133, 148.618047000002 -32.2768050000133, 148.618013000002 -32.2767780000133, 148.618080000002 -32.2764340000133, 148.618434000002 -32.2764810000133, 148.618464000002 -32.2763160000133, 148.618479000002 -32.2762350000133, 148.618507000002 -32.2761380000132, 148.618523000002 -32.2760810000133, 148.618608000002 -32.2759350000133, 148.618723000002 -32.2758120000132, 148.618875000002 -32.2757100000134, 148.619059000002 -32.2756360000133, 148.618942000002 -32.2753390000133, 148.618981000002 -32.2753270000133, 148.618905000002 -32.2751490000133, 148.618725000002 -32.2749340000133, 148.618431000002 -32.2751120000133, 148.618266000002 -32.2752110000134, 148.617998000002 -32.2753730000133, 148.617970000002 -32.2753390000133, 148.617799000002 -32.2755580000134, 148.617682000002 -32.2757790000133, 148.617616000002 -32.2759620000133, 148.616809000002 -32.2758560000133, 148.616753000002 -32.2761640000133, 148.616735000002 -32.2762570000133, 148.616883000002 -32.2762770000133, 148.616787000002 -32.2767770000133, 148.616674000002 -32.2773720000133, 148.616558000002 -32.2779850000134, 148.616540000002 -32.2779840000133, 148.616429000002 -32.2781120000133, 148.616329885894 -32.2785660080436, 148.616585143994 -32.2786053848635, 148.616670217466 -32.2786208316522))\nAYAA-GIMD0\tYellowgum\tReady for service\tPOLYGON ((144.323835048935 -36.6907045065123, 144.324776582068 -36.6908522140407, 144.324904528299 -36.6909908019319, 144.325130945951 -36.6910174637622, 144.325288842905 -36.6902250177841, 144.325375357034 -36.6902369712113, 144.325440498432 -36.6899186124385, 144.325379873444 -36.6897633887454, 144.325424505635 -36.6894431403694, 144.32622604795 -36.6895483415648, 144.326395094655 -36.6895105378134, 144.326526968567 -36.690046752849, 144.326955592628 -36.6901695288294, 144.327349513199 -36.6892779049017, 144.327286735162 -36.6891996127491, 144.327228524622 -36.6890763645058, 144.327197888304 -36.6888597887912, 144.327247952072 -36.6886595337083, 144.327338377295 -36.6885571298452, 144.327401229094 -36.6884760356974, 144.32746752 -36.6884033400286, 144.327597074994 -36.6883484499221, 144.327743422947 -36.6883162636744, 144.327842668252 -36.688284068888, 144.327915382672 -36.688176686553, 144.32786530002 -36.6880659758278, 144.327654632104 -36.6879957002372, 144.327507228924 -36.6879630841304, 144.327390386662 -36.6878975406664, 144.327341801225 -36.6878509763955, 144.327309575959 -36.6878002612456, 144.324471779027 -36.6874688844295, 144.32411652573 -36.6892709454108, 144.323835048935 -36.6907045065123))\n10209\tClarkson-Somerly\tReady for service\tPOLYGON ((115.7239830493927 -31.690390180334045, 115.72402596473694 -31.690303453289157, 115.72451949119568 -31.690120869771839, 115.72480380535126 -31.690011319489024, 115.72547435760498 -31.689938285895323, 115.72578549385071 -31.689965673499692, 115.7261073589325 -31.690011319489024, 115.72634339332581 -31.690088917619384, 115.72660624980927 -31.690189338632926, 115.72686910629272 -31.690371922015533, 115.72721779346466 -31.690613844444197, 115.72708368301392 -31.690910540901378, 115.72741091251373 -31.691143332842124, 115.72757720947266 -31.691357866074398, 115.72766840457916 -31.691663689186402, 115.72763621807098 -31.692051672281128, 115.72753429412842 -31.692298154816353, 115.72757184505463 -31.692375751034533, 115.7277649641037 -31.692462476142779, 115.72770059108734 -31.692617668239457, 115.72775423526764 -31.692681570792068, 115.72774887084961 -31.692731779909678, 115.72548508644104 -31.692832198063385, 115.72549045085907 -31.692617668239457, 115.72552800178528 -31.692549201169971, 115.72525441646576 -31.692549201169971, 115.72529733181 -31.692339235175236, 115.72507202625275 -31.692266203413535, 115.72407424449921 -31.691983204794052, 115.724036693573 -31.691901043742863, 115.72420299053192 -31.691462850241379, 115.72426736354828 -31.69142633402285, 115.72429418563843 -31.691293962610271, 115.72422981262207 -31.691234623639886, 115.72420299053192 -31.690974444629532, 115.72411179542542 -31.690622973580108, 115.72407424449921 -31.690554505038946, 115.7239830493927 -31.690390180334045))\nAYCA-142BGQ\tLLOYD ESTATE\tUnder construction\tPOLYGON ((147.337553998696 -35.1520639984098, 147.337346998696 -35.1530859984094, 147.336381998695 -35.1529599984077, 147.336325998695 -35.1532469984076, 147.336753998695 -35.1534329984083, 147.337541998696 -35.1535369984097, 147.337373998696 -35.1544859984093, 147.337667042758 -35.1545303349954, 147.337654998696 -35.1545889984097, 147.338248998697 -35.1546679984107, 147.338282998697 -35.1544889984108, 147.340880998699 -35.1548399984152, 147.340740998699 -35.154326998415, 147.339993998698 -35.1526539984138, 147.340181998698 -35.1525949984143, 147.339780998698 -35.1517279984137, 147.338900998697 -35.1520119984122, 147.338249998696 -35.152127998411, 147.337549998696 -35.1520439984098, 147.337553998696 -35.1520639984098))\n10649\tTapping-Ashton Heights\tReady for service\tPOLYGON ((115.79671382904053 -31.716962281699793, 115.7993745803833 -31.71641468747362, 115.80005049705505 -31.718887962374538, 115.7999324798584 -31.718951846829881, 115.80002903938293 -31.719253015812036, 115.79918146133423 -31.719481173480464, 115.79899907112122 -31.719955739631974, 115.79856991767883 -31.719809719536421, 115.79856991767883 -31.719736709402387, 115.79748630523682 -31.71919825788806, 115.79712152481079 -31.719271268446171, 115.79671382904053 -31.716962281699793))\n17329917\tCastle Hill Subdivision\tCheck with carrier\tPOLYGON ((151.01356512 -33.720329258, 151.013778112 -33.7208349555, 151.01377952 -33.7208393955, 151.013781408 -33.720843854, 151.0137824 -33.720846055500004, 151.013783872 -33.7208489785, 151.013783936 -33.720849071, 151.013786048 -33.720851975500004, 151.013786528 -33.7208533445, 151.013787392 -33.720854621, 151.013789408 -33.720857322, 151.013789856 -33.72085784, 151.01379216 -33.720859986, 151.013793952 -33.7208619655, 151.013795104 -33.7208635935, 151.013796416 -33.720864833, 151.013798464 -33.7208666275, 151.013799008 -33.7208669975, 151.013801888 -33.720868977, 151.01380512 -33.7208709565, 151.013808 -33.7208730285, 151.01381088 -33.720875008, 151.013810912 -33.7208750265, 151.013814176 -33.720876673, 151.013815904 -33.7208774315, 151.01381808 -33.7208779865, 151.013819392 -33.7208788745, 151.013820992 -33.7208795035, 151.013824512 -33.7208806875, 151.013905184 -33.720905755000004, 151.01395248 -33.720921147, 151.013985824 -33.720933727, 151.013999552 -33.7209087335, 151.014191968 -33.7209147645, 151.014499936 -33.7209239775, 151.01464896 -33.720929009500004, 151.014816 -33.7209339675, 151.014965056 -33.7209389995, 151.015131008 -33.720944031500004, 151.015184672 -33.720945900000004, 151.015272608 -33.7209486565, 151.015315712 -33.72094664, 151.015567904 -33.720934837, 151.015802816 -33.720906828000004, 151.015802848 -33.7209069945, 151.015803136 -33.7209069575, 151.0158232 -33.720984195, 151.015833088 -33.7210218055, 151.015844064 -33.721063597000004, 151.015871872 -33.7211679555, 151.015902848 -33.721286041, 151.01592784 -33.721381834, 151.015933056 -33.721401666, 151.015946176 -33.721424865, 151.01601248 -33.7215419145, 151.016089312 -33.721677593500004, 151.016166176 -33.7218132725, 151.01629328 -33.7220376405, 151.016641888 -33.7224505605, 151.016753888 -33.722583039, 151.0167936 -33.722675095, 151.01692608 -33.7229815475, 151.01713248 -33.723180626, 151.017025216 -33.723258178, 151.017156384 -33.723339097, 151.017285824 -33.7234186285, 151.017285696 -33.723418869, 151.017285952 -33.7234190355, 151.017078976 -33.723813955000004, 151.017034688 -33.7238984075, 151.016879424 -33.724195166, 151.01705808 -33.7242950105, 151.017374368 -33.724404882, 151.017988256 -33.7246175025, 151.018316672 -33.724202344, 151.018426912 -33.7240726035, 151.01842688 -33.7240726035, 151.018384128 -33.7229273055, 151.018372096 -33.7226071815, 151.017951744 -33.721075807, 151.018097504 -33.7205920135, 151.018053728 -33.7205894235, 151.017341408 -33.7205480945, 151.017111168 -33.7205347375, 151.01535312 -33.720433024500004, 151.014928864 -33.7204080865, 151.014381952 -33.720376303500004, 151.01356512 -33.720329258))\n33\tHamilton Reach\tReady for service\tPOLYGON ((153.085595175 -27.443015132, 153.084896026 -27.443598397, 153.084071743 -27.444423624, 153.08378671 -27.444651786, 153.08359719 -27.445013058, 153.08432775 -27.44516129, 153.084556756 -27.445035868, 153.084821872 -27.444929156, 153.084938333 -27.445023333, 153.085435477 -27.445028177, 153.085569107 -27.445230928, 153.085743323 -27.445311691, 153.087552522 -27.445501312, 153.088782775 -27.445552258, 153.089130523 -27.445572421, 153.089061076 -27.445457353, 153.088893134 -27.445408508, 153.088853988 -27.445325405, 153.088770571 -27.445211006, 153.08853328 -27.444965006, 153.088392758 -27.444826518, 153.087738943 -27.444197912, 153.087628722 -27.444097483, 153.087518664 -27.444003461, 153.087327947 -27.443820901, 153.086732041 -27.443216186, 153.08613411 -27.442563713, 153.085595175 -27.443015132))\n10473\tLakelands\tReady for service\tPOLYGON ((115.76794981956482 -32.466192308164004, 115.76932311058044 -32.466174204145354, 115.7691353559494 -32.466889310114546, 115.76955914497375 -32.466961725592263, 115.76936602592468 -32.468161098472194, 115.76930165290833 -32.468446230051839, 115.76891541481018 -32.469411158970054, 115.76850235462189 -32.469903555136163, 115.76814293861389 -32.46985377112798, 115.76813757419586 -32.469948813301535, 115.76632440090179 -32.469980494003757, 115.76637804508209 -32.469514333974949, 115.76676428318024 -32.469582221507927, 115.76674818992615 -32.469229205777523, 115.76725780963898 -32.4680388989474, 115.76745629310608 -32.466495549935331, 115.76791226863861 -32.466518179877326, 115.76794981956482 -32.466192308164004))\n10570\tSecret Harbour\tReady for service\tPOLYGON ((115.75763940811157 -32.400048567545653, 115.75816512107849 -32.400800432449593, 115.75812220573425 -32.401814987213847, 115.7570493221283 -32.403019756187646, 115.75637340545654 -32.402729888429718, 115.75615882873535 -32.402956347695138, 115.756276845932 -32.403173748055465, 115.75516104698181 -32.403508905918571, 115.75446367263794 -32.402122974797052, 115.75468897819519 -32.40196898113679, 115.75465679168701 -32.4016972269779, 115.75591206550598 -32.400764198139996, 115.75613737106323 -32.400456205921287, 115.75700640678406 -32.400320326667241, 115.75763940811157 -32.400048567545653))\nAYCA-NC7MJ\tGlenwood Development\tReady for service\tPOLYGON ((146.936057138263 -36.185263368505, 146.936851201704 -36.1860775201786, 146.937975119998 -36.1861772400272, 146.939004008117 -36.1860987746651, 146.93901516 -36.1858687200275, 146.938984920713 -36.1858527092151, 146.939168363723 -36.1856207719767, 146.938039922271 -36.1849652968097, 146.938275 -36.1846323000274, 146.9388348 -36.1840562100274, 146.93920704 -36.1836733500272, 146.94109416 -36.1839622500274, 146.94126516 -36.1840102200274, 146.94181236 -36.1832658300268, 146.94183576 -36.1831776300275, 146.941650100143 -36.1830075256679, 146.941458027426 -36.1831229832351, 146.941603737708 -36.183252840706, 146.941608729917 -36.183296338594, 146.941476851499 -36.183475516324, 146.941426971163 -36.1834937278418, 146.941225468187 -36.1834629039021, 146.94130976061 -36.1831010793038, 146.940089823816 -36.1829208467016, 146.939914414723 -36.1828940120831, 146.938806016505 -36.1827244395747, 146.93861103469 -36.1826849276965, 146.938222850002 -36.1825815475999, 146.938085657433 -36.1829201029578, 146.93806116537 -36.1830702644335, 146.937952963787 -36.1832918402857, 146.937859059451 -36.1834692181776, 146.937760873212 -36.1836356800108, 146.93765461136 -36.183798850227, 146.937363131713 -36.1841960319083, 146.936839821978 -36.1847273731702, 146.936862440484 -36.1847507225698, 146.936057138263 -36.185263368505))\n17325403\tPatterson Gardens Estate Stage 2\tCheck with carrier\tPOLYGON ((149.12302608 -33.289404022, 149.12327088 -33.288281997, 149.123190976 -33.2881669825, 149.123528992 -33.2879149755, 149.12335584 -33.287717969, 149.123433952 -33.2873579775, 149.123057056 -33.287202004, 149.122963072 -33.287086971, 149.122640896 -33.2870249775, 149.122896128 -33.2861939945, 149.121954016 -33.286017967, 149.122112032 -33.285364029, 149.121738016 -33.2852940065, 149.12157888 -33.285914996, 149.12136 -33.2859030265, 149.121518048 -33.2852280355, 149.120421856 -33.285035968500004, 149.120344096 -33.2854170315, 149.118774112 -33.285246036000004, 149.11866 -33.285671018, 149.120335072 -33.2859699965, 149.12034192 -33.286271047, 149.120390176 -33.2862699555, 149.120420032 -33.285983039, 149.121255968 -33.2862309945, 149.121186848 -33.2864710135, 149.12147088 -33.286535005000005, 149.121361088 -33.286966018, 149.12174016 -33.2870399995, 149.12122608 -33.289161024500004, 149.12133408 -33.2893089875, 149.12302608 -33.289404022))\n10170\tBurns Beach\tReady for service\tPOLYGON ((115.72501301765442 -31.728966545401306, 115.72494328022003 -31.728601530220779, 115.72486817836761 -31.72835058145014, 115.72481989860535 -31.728209137298126, 115.72472870349884 -31.72823195088564, 115.72448194026947 -31.727643358531122, 115.72445511817932 -31.727584042815177, 115.72440147399902 -31.72728290090237, 115.72401523590088 -31.727374156130804, 115.72384893894196 -31.727000009123163, 115.72363436222076 -31.726502665030598, 115.72356462478638 -31.726146765784694, 115.72354853153229 -31.726082886288204, 115.72389185428619 -31.726023569573449, 115.72376847267151 -31.72560835150718, 115.72424590587616 -31.725507968838293, 115.72505593299866 -31.725348268913709, 115.72498083114624 -31.725120125686939, 115.72543144226074 -31.725047119735752, 115.7254958152771 -31.725334580335936, 115.72561383247375 -31.725758925306643, 115.72597861289978 -31.725663105644376, 115.72604835033417 -31.725973378477477, 115.72608590126038 -31.726069197818923, 115.72653114795685 -31.727574917317046, 115.72664380073547 -31.727547540817262, 115.72671890258789 -31.727834993661652, 115.72667062282562 -31.727857807341262, 115.72689592838287 -31.728619781013951, 115.72510957717896 -31.728998484161178, 115.72501301765442 -31.728966545401306))\n17361986\tBalmattum Hill Estate\tCheck with carrier\tPOLYGON ((145.583227008 -36.751287007, 145.581176992 -36.753733003, 145.582910016 -36.754331996000005, 145.5835 -36.7550929935, 145.585232992 -36.752999996, 145.584168 -36.751809003, 145.583948 -36.751702998, 145.583227008 -36.751287007))\n17333322\tMacquarie Heights Estate\tCheck with carrier\tPOLYGON ((151.639039072 -32.944256996, 151.636277888 -32.943192025, 151.635740032 -32.945837044, 151.636151872 -32.946675038500004, 151.636501088 -32.946806962000004, 151.63686 -32.9466989775, 151.637156992 -32.9469389965, 151.637334112 -32.9469710385, 151.637524928 -32.9468380235, 151.63769088 -32.946183993, 151.637837056 -32.945860983, 151.63791408 -32.9457149995, 151.638275168 -32.945856025, 151.638378848 -32.9456590185, 151.638464896 -32.945497014000004, 151.638540128 -32.945354009, 151.638626176 -32.9451920045, 151.638711136 -32.9450290195, 151.638787072 -32.944886995000005, 151.638882848 -32.944704030000004, 151.63881696 -32.944679018, 151.639039072 -32.944256996))\n10079\tBaldivis-Rivergums\tReady for service\tPOLYGON ((115.82303166389465 -32.341835203906079, 115.82502722740173 -32.341855599000013, 115.82511842250824 -32.34184880063588, 115.82510769367218 -32.341540607592016, 115.82534104585648 -32.341540607592016, 115.82534104585648 -32.341418236533471, 115.82541346549988 -32.341345720272535, 115.82541078329086 -32.341250542591858, 115.82559317350388 -32.341248276455389, 115.82559049129486 -32.341089646761169, 115.82506209611893 -32.341091912901611, 115.82507282495499 -32.339505600704719, 115.82555025815964 -32.339503334524537, 115.82555562257767 -32.339077291643925, 115.82219213247299 -32.339070493071056, 115.8224093914032 -32.340756523498143, 115.82303166389465 -32.341835203906079))\n17328997\tCar Mega Mart Stage 2\tCheck with carrier\tPOLYGON ((145.485427008 -38.095363992, 145.485100992 -38.0954519965, 145.484838016 -38.097317000000004, 145.485020992 -38.097503998, 145.486262016 -38.0976729955, 145.486356992 -38.0976230085, 145.486667008 -38.097642008, 145.486731008 -38.0977360065, 145.488162016 -38.0978919985, 145.488624 -38.0956709995, 145.485427008 -38.095363992))\n10532\tMadora Bay\tReady for service\tPOLYGON ((115.75556874275208 -32.476054850522161, 115.75516104698181 -32.476027697467316, 115.75509667396545 -32.475873830001809, 115.75462460517883 -32.475756166468379, 115.75370192527771 -32.475086386502561, 115.75371265411377 -32.474742443502485, 115.75446367263794 -32.474362294447275, 115.75438857078552 -32.474090758425028, 115.75377702713013 -32.473601991521086, 115.75347661972046 -32.472787374117722, 115.75231790542603 -32.473104170650451, 115.75229644775391 -32.472606347027082, 115.75380921363831 -32.472180931931348, 115.75560092926025 -32.472081366405881, 115.75576186180115 -32.473276145444252, 115.75556874275208 -32.473936887648861, 115.75592279434204 -32.474054553560187, 115.75581550598145 -32.474479959802565, 115.75568675994873 -32.474814852664338, 115.75597643852234 -32.474977773065561, 115.75586915016174 -32.475584196412107, 115.75556874275208 -32.476054850522161))\nAYCA-MT9YM\tPotts Hill\tReady for service\tPOLYGON ((151.027218832747 -33.8923523802824, 151.027574480856 -33.8923828274415, 151.027584506638 -33.8923158077289, 151.028466569269 -33.8924218621422, 151.029499548009 -33.892548164935, 151.029488418066 -33.8928542000426, 151.030565591969 -33.8915106905308, 151.029930637159 -33.891421740438, 151.029870943149 -33.8913651462345, 151.030172413075 -33.8898144204061, 151.030022916613 -33.8894510059886, 151.029872102382 -33.8894955454386, 151.028205594239 -33.8892455183281, 151.028178332829 -33.8893742476202, 151.027849639053 -33.8893258348725, 151.02781955999 -33.8894662500153, 151.027709447932 -33.8894503581563, 151.027678910352 -33.8896022385367, 151.027244206447 -33.8895414483589, 151.027256710668 -33.8895691472745, 151.02778542367 -33.8896469149173, 151.027507420014 -33.8909461449472, 151.027464354253 -33.8911656568776, 151.027218832747 -33.8923523802824), (151.029227017519 -33.8898500026136, 151.029631675685 -33.8899097199326, 151.029600419164 -33.8900984311975, 151.029168225558 -33.890048250957, 151.029227017519 -33.8898500026136), (151.028901244511 -33.891202420849, 151.028955871524 -33.89094331611, 151.029259363349 -33.8909819587452, 151.029199303354 -33.8912637602194, 151.028901244511 -33.891202420849))\nAYAA-GR0XZ\tElizabeth Hills\tReady for service\tPOLYGON ((150.844692256359 -33.9012756454489, 150.844996390689 -33.9015700886265, 150.846526362321 -33.9038615526967, 150.848403841974 -33.9034980670476, 150.84751718605 -33.9003555193973, 150.847089425151 -33.9004295473234, 150.847109959182 -33.9005023855688, 150.845827661264 -33.9006810037604, 150.845469838074 -33.9009175591985, 150.845406670703 -33.9008571323732, 150.845155530495 -33.9010395925561, 150.845009821579 -33.9011454870818, 150.844950145221 -33.9010883726524, 150.844692256359 -33.9012756454489))\n10029\tAveley-Vale\tReady for service\tPOLYGON ((115.9892749786377 -31.790171998121004, 115.99238634109497 -31.790162878791559, 115.99349141120911 -31.790190236777228, 115.99338412284851 -31.791913773552412, 115.99090576171875 -31.791822581935605, 115.98971486091614 -31.791995845930632, 115.98867416381836 -31.791658436798642, 115.98913550376892 -31.790162878791559, 115.9892749786377 -31.790171998121004))\nAYAA-FN97T\tAspiri\tReady for service\tPOLYGON ((115.909525216 -32.1417876390121, 115.909524621243 -32.1417877543461, 115.913719568577 -32.14369646538, 115.913869553483 -32.1434307861629, 115.91387466008 -32.1431808591233, 115.913885641721 -32.1419984178104, 115.913458468912 -32.1419895193392, 115.913460897512 -32.1418852714357, 115.913069526107 -32.1418771349138, 115.913069816982 -32.1421482420242, 115.91275362482 -32.1421468579222, 115.91269072414 -32.1420920654767, 115.912685933879 -32.1420307657905, 115.912698493106 -32.1410660566425, 115.912715994723 -32.1405600317033, 115.912555207222 -32.1405586503207, 115.912561883668 -32.140463655413, 115.912547834118 -32.1403097110785, 115.912426963695 -32.1402602972906, 115.911698087175 -32.1399112979385, 115.911065556035 -32.1403593281017, 115.910895798678 -32.1405021823166, 115.910895171101 -32.1407621445078, 115.910577084202 -32.1407623971453, 115.910575069506 -32.1410403678771, 115.910259266079 -32.1410358603981, 115.909525216 -32.1417876390121))\nRAFB\tForresters Beach\tReady for service\tPOLYGON ((151.46664977073669 -33.4038792802728, 151.4634096622467 -33.403198580112885, 151.46440744400024 -33.401353497597654, 151.46822690963745 -33.401720725881539, 151.46664977073669 -33.4038792802728))\n17316951\tKookaburra Rise - Stg 3\u00264\tCheck with carrier\tPOLYGON ((148.659717952 -20.3102260255, 148.661877952 -20.310482972, 148.661908928 -20.310236996, 148.66208208 -20.3101640135, 148.66223904 -20.309982029, 148.662245152 -20.3096870095, 148.662102976 -20.309506024, 148.66191504 -20.3093679585, 148.661852032 -20.3092399755, 148.66233408 -20.309054032, 148.661852032 -20.308419981500002, 148.66194096 -20.308199036, 148.66294608 -20.308317029, 148.66316208 -20.3067060305, 148.662891008 -20.3064390015, 148.662750976 -20.306565005, 148.662495008 -20.3063120175, 148.659948 -20.308596027500002, 148.659717952 -20.3102260255))\n10787\tWWP LBNCo\tReady for service\tPOLYGON ((151.0745644569397 -33.827096739566919, 151.07379198074341 -33.827970177012475, 151.07469320297241 -33.828522755277959, 151.07351303100586 -33.829895272936241, 151.07619524002075 -33.831535135272631, 151.07728958129883 -33.830180468645665, 151.07540130615234 -33.829217929313288, 151.07638835906982 -33.828130603328432, 151.0745644569397 -33.827096739566919))\nAYCA-1D9FGG\tFairway Gardens\tUnder construction\tPOLYGON ((147.013232 -36.0520650000274, 147.01188 -36.0518990000275, 147.01173 -36.0518710000274, 147.011557 -36.0518080000275, 147.011274 -36.0516980000274, 147.010997 -36.0516260000275, 147.010749 -36.0516020000275, 147.010492 -36.0515960000275, 147.010121 -36.0516320000274, 147.009837 -36.0516230000275, 147.00956 -36.0515560000275, 147.009221 -36.0514180000274, 147.008964 -36.0513310000274, 147.008635 -36.0512630000275, 147.008352 -36.0512340000274, 147.008406 -36.0515240000274, 147.008465 -36.0515370000274, 147.008631 -36.0515580000274, 147.008655 -36.0515400000275, 147.008884 -36.0515970000275, 147.009167 -36.0517130000275, 147.00949 -36.0518280000275, 147.009765 -36.0518900000275, 147.010026 -36.0519120000274, 147.010202 -36.0519090000275, 147.010362 -36.0518930000275, 147.01059 -36.0518770000275, 147.010772 -36.0518810000275, 147.010949 -36.0519150000275, 147.011124 -36.0519580000275, 147.011288 -36.0520160000275, 147.01153 -36.0521060000275, 147.011641 -36.0521340000274, 147.011776 -36.0521560000275, 147.01279 -36.0522830000275, 147.012616 -36.0532090000275, 147.012528 -36.0536260000275, 147.01045 -36.0530460000275, 147.010254 -36.0531020000275, 147.010334 -36.0535550000275, 147.010308 -36.0535580000275, 147.010357 -36.0537700000275, 147.010474 -36.0537530000274, 147.010459 -36.0539110000275, 147.01045 -36.0539610000275, 147.010341 -36.0545170000275, 147.010292 -36.0547650000274, 147.010211 -36.0551920000275, 147.010201 -36.0552460000275, 147.010134 -36.0552410000275, 147.010119 -36.0554050000275, 147.010244 -36.0554140000274, 147.010298 -36.0554160000274, 147.010234 -36.0557460000274, 147.012102 -36.0559810000275, 147.012321 -36.0548780000275, 147.012755 -36.0549250000274, 147.013232 -36.0520650000274))\nAYCA-G7OO0\tGap Ridge Industrial Area\tReady for service\tPOLYGON ((116.762107212586 -20.7357517321217, 116.762349996718 -20.7377255428184, 116.764268814311 -20.7375156828747, 116.764617111577 -20.7377400098168, 116.764740791124 -20.7376409343508, 116.765899925619 -20.7371945583086, 116.764904855524 -20.734814350539, 116.762107212586 -20.7357517321217))\n10007\tAveley-Vale\tReady for service\tPOLYGON ((115.98103523254395 -31.78787482485216, 115.97958147525787 -31.78787938462985, 115.97960293292999 -31.787719792276803, 115.97910940647125 -31.787747150985467, 115.97921133041382 -31.79037354932133, 115.98101913928986 -31.790346191389904, 115.98115861415863 -31.791043816112161, 115.98207592964172 -31.791212521953806, 115.98299324512482 -31.790186603295226, 115.98293960094452 -31.789949500474396, 115.98218858242035 -31.789124195528839, 115.98123371601105 -31.789224509230483, 115.98093330860138 -31.789229068941598, 115.98090648651123 -31.788586147453316, 115.98104596138 -31.78856790848063, 115.98103523254395 -31.78787482485216))\nAYCA-10WO6Q\tLot 6 Nicholson Road\tContracted\tPOLYGON ((115.91943745081 -32.1440537855947, 115.919747772736 -32.1441154533725, 115.919804159651 -32.1441070162788, 115.919908768415 -32.1440913637476, 115.919905790179 -32.1443680841823, 115.920045271485 -32.144498448422, 115.92042205201 -32.1444444829489, 115.920563615296 -32.1444427885484, 115.920791536794 -32.144446829885, 115.92095053702 -32.1444496489155, 115.921442468544 -32.1444584333109, 115.921515980904 -32.1448760791918, 115.922695184564 -32.1453275005026, 115.922747440001 -32.1453332300189, 115.92329898032 -32.1433249557376, 115.923037371002 -32.1431655349233, 115.922503427352 -32.1428634143346, 115.922077543503 -32.1426228913454, 115.920938857586 -32.1426124978579, 115.920821674881 -32.141877872436, 115.920035433102 -32.1418718029562, 115.919912158169 -32.1423218843997, 115.919718613945 -32.1430285119225, 115.91943745081 -32.1440537855947))\n10288\tDawesville-Port Bouvard South\tReady for service\tPOLYGON ((115.63154071569443 -32.611006838121021, 115.63178211450577 -32.610821570756954, 115.63171774148941 -32.610536890889627, 115.63168823719025 -32.610405847471931, 115.63165336847305 -32.610073719330281, 115.63163459300995 -32.609911043872735, 115.63160240650177 -32.609581173287815, 115.63159167766571 -32.609454647261614, 115.63162922859192 -32.609352974432454, 115.63170969486237 -32.609226448083859, 115.6318062543869 -32.609070549301393, 115.63188940286636 -32.6089191690645, 115.63196986913681 -32.60877456680825, 115.63208520412445 -32.608455989138648, 115.63225150108337 -32.607976990793375, 115.63231855630875 -32.607796236035078, 115.63242316246033 -32.6074866926642, 115.63251167535782 -32.60715455369693, 115.63244998455048 -32.60681563511374, 115.63234001398087 -32.606612283348248, 115.63224345445633 -32.60644282319101, 115.63214153051376 -32.606300476411135, 115.63193768262863 -32.606020301135985, 115.63178479671478 -32.605819207051468, 115.63166409730911 -32.605674599790291, 115.63146829605103 -32.605498359375076, 115.63126713037491 -32.605484802405705, 115.63104182481766 -32.605552587232083, 115.63095599412918 -32.605595517595589, 115.63091844320297 -32.605821466538082, 115.63085675239563 -32.605995446835387, 115.63077628612518 -32.606239470579091, 115.63075214624405 -32.606379557983438, 115.63078969717026 -32.606634878011668, 115.63085675239563 -32.606797559419952, 115.63093185424805 -32.606942164868151, 115.63092112541199 -32.6071093646266, 115.63087284564972 -32.60726074792246, 115.63075482845306 -32.607470876550835, 115.63058584928513 -32.60779171716144, 115.63039273023605 -32.60816904232437, 115.63008964061737 -32.608580257158749, 115.62996625900269 -32.60875423209724, 115.62988579273224 -32.608898834386338, 115.62989383935928 -32.608941763145964, 115.62982141971588 -32.609102180960363, 115.62984824180603 -32.60913381260815, 115.62981069087982 -32.609626361111, 115.62985092401505 -32.609651214404032, 115.62988042831421 -32.609978825349295, 115.63025325536728 -32.609951712764826, 115.63025325536728 -32.609972047203946, 115.63103377819061 -32.609931378321086, 115.63111156225204 -32.60996978782206, 115.63111960887909 -32.610274803862488, 115.63115447759628 -32.610559484562955, 115.63118934631348 -32.610756049280369, 115.63138782978058 -32.61088257346794, 115.63146024942398 -32.6109616509944, 115.63154071569443 -32.611006838121021))\n17326041\tKinross Road\tCheck with carrier\tPOLYGON ((153.249588 -27.556326986000002, 153.247852096 -27.55609803, 153.247575968 -27.5576869765, 153.247359968 -27.557659985, 153.24695712 -27.5600760295, 153.248909056 -27.560338026500002, 153.249588 -27.556326986000002))\n17337045\talanvale gardens\tCheck with carrier\tPOLYGON ((147.128419072 -41.398637042, 147.12716016 -41.398873028, 147.12657696 -41.397360023999994, 147.124559168 -41.3976490125, 147.12293808 -41.399301969, 147.12534 -41.400001972, 147.128559136 -41.398847016999994, 147.128419072 -41.398637042))\n10002\tAveley-Vale\tReady for service\tPOLYGON ((115.98442554473877 -31.79322877516195, 115.98440408706665 -31.792845775215419, 115.98406076431274 -31.792854894280207, 115.98409295082092 -31.791842672596403, 115.98420023918152 -31.791705885032247, 115.98384618759155 -31.791514382102349, 115.98369598388672 -31.79146878610818, 115.98332047462463 -31.791623812396576, 115.98307371139526 -31.791432309296663, 115.98223686218262 -31.791423190091521, 115.98225831985474 -31.79115873275142, 115.98227977752686 -31.790948990185083, 115.98298788070679 -31.790137373162192, 115.98253726959229 -31.78965404728023, 115.98294496536255 -31.789407823689558, 115.98289132118225 -31.7892983907721, 115.98320245742798 -31.789152480013982, 115.9836208820343 -31.788970091242472, 115.98384618759155 -31.789225435421827, 115.98490834236145 -31.789891150858832, 115.98526239395142 -31.789882031501676, 115.98528385162354 -31.789982344380984, 115.98560571670532 -31.789973225032821, 115.98562717437744 -31.789872912143615, 115.98610997200012 -31.789872912143615, 115.9861421585083 -31.791259044245344, 115.98576664924622 -31.791240805800005, 115.98555207252502 -31.791569097265651, 115.98541259765625 -31.791678527495122, 115.98503708839417 -31.79138671326201, 115.9845757484436 -31.791961221654955, 115.98461866378784 -31.79322877516195, 115.98442554473877 -31.79322877516195))\nAYAA-GYFSE\tKalynda Chase Estate\tReady for service\tPOLYGON ((146.690298682805 -19.3044992828765, 146.690623264659 -19.3044936812896, 146.690681697382 -19.3043562868516, 146.690724774086 -19.3042625277682, 146.690752003142 -19.3042057311392, 146.690784898022 -19.3041417774936, 146.690830396768 -19.3040588199636, 146.690850656228 -19.3040236957775, 146.690898792469 -19.3039441829519, 146.690957510702 -19.3038537981624, 146.690972114135 -19.3038323243375, 146.691050847943 -19.3037226198997, 146.691070506213 -19.3036966929078, 146.691150922641 -19.3035959982054, 146.691176137678 -19.3035660619842, 146.691299374685 -19.3034295861666, 146.691317880127 -19.3034090927391, 146.691432523272 -19.3033017022441, 146.691370142294 -19.3032459559439, 146.691581017612 -19.3030332376368, 146.691415569772 -19.3028853864514, 146.691623200212 -19.3026759405355, 146.691623247213 -19.3026794803149, 146.691855442993 -19.302882753958, 146.692201553663 -19.3025327804622, 146.692399 -19.3025459999103, 146.692421 -19.3022539999104, 146.692510253518 -19.3021058170233, 146.692531750048 -19.3018324321364, 146.692711290637 -19.2996880023286, 146.692444292726 -19.2996645532291, 146.691887031316 -19.2996210448729, 146.691676796477 -19.3016002151222, 146.691358230598 -19.3019331984461, 146.691475299227 -19.3020476826804, 146.691216032752 -19.3023058631389, 146.691009827997 -19.302511203288, 146.690211340145 -19.3018116895538, 146.689873041504 -19.3015180119776, 146.689260316716 -19.3014791673726, 146.689239490294 -19.3017206973608, 146.689256786242 -19.3017584103578, 146.689059917669 -19.3017445408189, 146.688772041615 -19.3017242593501, 146.688657248622 -19.3032345348143, 146.689421431821 -19.3032860192746, 146.689704325722 -19.303434238884, 146.689814628656 -19.3035274658803, 146.690085077284 -19.3036667522814, 146.689873464358 -19.3040998600791, 146.689710841509 -19.3045649072253, 146.689711555489 -19.3045650839105, 146.690008858663 -19.3046386557626, 146.690258719091 -19.3046165853167, 146.690298682805 -19.3044992828765))\n10582\tSecret Harbour\tReady for service\tPOLYGON ((115.75394868850708 -32.415387169732384, 115.75353026390076 -32.41540981250877, 115.75351417064667 -32.415523026305429, 115.75307428836823 -32.415509440657324, 115.75305819511414 -32.415210555881636, 115.7525646686554 -32.4152060273168, 115.7525646686554 -32.415269427203619, 115.75218915939331 -32.415264898641752, 115.75218379497528 -32.4151788559231, 115.75178146362305 -32.415160741656095, 115.75169563293457 -32.415251312954794, 115.75128257274628 -32.415296598570052, 115.75128793716431 -32.416093621678456, 115.75085878372192 -32.416098150198728, 115.75075685977936 -32.416034750894212, 115.7503867149353 -32.41604380794044, 115.75037598609924 -32.415427926725776, 115.74901342391968 -32.415450569491931, 115.74901878833771 -32.415319241369161, 115.74855208396912 -32.415341884162579, 115.74848771095276 -32.416913280145522, 115.75257539749146 -32.416949507972248, 115.75387895107269 -32.416935922538926, 115.75388967990875 -32.416474016589135, 115.75405061244965 -32.416496659092779, 115.75408279895782 -32.416202306102292, 115.75393795967102 -32.4161706064922, 115.75394868850708 -32.415387169732384))\n10693\tWannanup-Port Bouvard North\tReady for service\tPOLYGON ((115.64508318901062 -32.5945576768249, 115.64574301242828 -32.59407860416264, 115.64513683319092 -32.593551614214107, 115.64507514238358 -32.593601329713167, 115.64453065395355 -32.593104173481414, 115.64455211162567 -32.593072536173324, 115.64421951770782 -32.592866893398494, 115.64408808946609 -32.593009261523626, 115.64484983682632 -32.593836348062624, 115.64363479614258 -32.594593833148295, 115.64342021942139 -32.594923758925368, 115.64333438873291 -32.595140695760662, 115.6434041261673 -32.59541638556437, 115.64373135566711 -32.595852057053236, 115.64351409673691 -32.596071251373658, 115.64360529184341 -32.596145822515076, 115.64337193965912 -32.596383093915769, 115.64376354217529 -32.596577889029113, 115.64386546611786 -32.59649653908221, 115.64516365528107 -32.59726484119102, 115.64566254615784 -32.596708952677083, 115.64769566059113 -32.597883997508418, 115.64822137355804 -32.597224166538645, 115.64513683319092 -32.595448022044955, 115.64529240131378 -32.595167812828137, 115.64527630805969 -32.594928278448123, 115.64521729946136 -32.594706821564884, 115.64508318901062 -32.5945576768249))\n17340599\tLeisure Life Village - 3 Parkside Pde Toronto\tCheck with carrier\tPOLYGON ((151.566399008 -33.027171036, 151.566080032 -33.0288010155, 151.566956992 -33.028797963, 151.56933696 -33.0280440325, 151.569479872 -33.0278030145, 151.569416896 -33.027729033, 151.569492128 -33.02734797, 151.569702016 -33.0272679575, 151.569716032 -33.0271990265, 151.569735136 -33.027103973500004, 151.569803872 -33.026949998, 151.569893888 -33.026822015, 151.570077856 -33.026776024, 151.570212832 -33.026778984, 151.570302848 -33.026688001000004, 151.57030896 -33.0264600255, 151.570248832 -33.0262399865, 151.569952928 -33.026132964, 151.569713888 -33.0261979545, 151.569434176 -33.0262029865, 151.569282976 -33.025887987000004, 151.568435872 -33.025787014, 151.568442016 -33.025754972, 151.567770976 -33.0257490335, 151.567656128 -33.0257060025, 151.56750096 -33.0257060025, 151.56739584 -33.0258760175, 151.567309088 -33.026511955000004, 151.567072928 -33.026985, 151.56693216 -33.027074003500005, 151.566710048 -33.027086972, 151.566399008 -33.027171036))\n10702\tWannanup-Port Bouvard East\tReady for service\tPOLYGON ((115.64143002033234 -32.605146336466021, 115.64374208450317 -32.606954839016176, 115.64403176307678 -32.60618662000698, 115.64484179019928 -32.60263373321785, 115.64393520355225 -32.6022812400748, 115.64143002033234 -32.605146336466021))\n10075\tBaldivis-Rivergums\tReady for service\tPOLYGON ((115.82380414009094 -32.336491530921627, 115.82383096218109 -32.336867728572592, 115.82216799259186 -32.336908520994982, 115.82111120223999 -32.336926650954609, 115.82114338874817 -32.337139677707945, 115.82191050052643 -32.337121547791, 115.82198560237885 -32.337302846796909, 115.82218408584595 -32.3386127213232, 115.822194814682 -32.339070493071056, 115.82494139671326 -32.339065960688878, 115.82494139671326 -32.338363438704519, 115.82506477832794 -32.338363438704519, 115.82506477832794 -32.337311911737679, 115.82541346549988 -32.337311911737679, 115.82540810108185 -32.337262054552248, 115.82561194896698 -32.3372711194971, 115.82559585571289 -32.337117015311215, 115.82566022872925 -32.337030898151859, 115.82572460174561 -32.336786143672654, 115.82565486431122 -32.336758948689642, 115.82559585571289 -32.336650168675952, 115.82559585571289 -32.336364620517948, 115.82559049129486 -32.336201449737459, 115.82566559314728 -32.336133461825419, 115.82597136497498 -32.336128929296137, 115.82595527172089 -32.335992953312058, 115.8256334066391 -32.335997485848146, 115.82559049129486 -32.33593856286123, 115.82540273666382 -32.33594762793863, 115.82539737224579 -32.3358841723777, 115.82505941390991 -32.335920432703688, 115.825075507164 -32.3364598033374, 115.82380414009094 -32.336491530921627))\n17319550\t32-40 Cawarra Road\tCheck with carrier\tPOLYGON ((151.129942912 -34.0320390325, 151.129821952 -34.031842026, 151.129224 -34.0308749755, 151.129346048 -34.030203037, 151.129441088 -34.029684001, 151.129343872 -34.0296720315, 151.126206848 -34.0292719875, 151.126158976 -34.029536038, 151.126134848 -34.029673012, 151.125990848 -34.030466995000005, 151.12593504 -34.030782993500004, 151.125904096 -34.0309569675, 151.12587888 -34.031094034, 151.125802912 -34.0315149645, 151.126158976 -34.031561048, 151.129801088 -34.0320220125, 151.129942912 -34.0320390325))\n17329919\t800 MONTPELIER DRIVE\tCheck with carrier\tPOLYGON ((150.570492128 -34.084847967, 150.568026112 -34.084492027, 150.566739136 -34.086988972, 150.570078848 -34.087456985, 150.570302048 -34.086276981000005, 150.570348128 -34.0862399995, 150.570414016 -34.086170976, 150.57043488 -34.0861120165, 150.57045504 -34.086059014, 150.570443872 -34.085993043, 150.57039312 -34.085922021500004, 150.570473056 -34.085464017, 150.570545056 -34.085428016, 150.570560896 -34.0852930215, 150.57048384 -34.085259, 150.570438848 -34.085220039, 150.570492128 -34.084847967))\nAYCA-1F7L92\tZuccoli\tReady for service\tPOLYGON ((131.008578999993 -12.5056259998882, 131.009052999993 -12.5055189998882, 131.009117999993 -12.5055589998882, 131.009118999993 -12.5055599998882, 131.009340999993 -12.5065109998882, 131.009097999993 -12.5065279998882, 131.009025999993 -12.5068569998882, 131.010565999993 -12.5068379998882, 131.010768999993 -12.5068349998882, 131.010815999993 -12.5066929998882, 131.010859999993 -12.5065179998882, 131.011222999993 -12.5065129998882, 131.011226999993 -12.5067929998882, 131.011391999993 -12.5067909998882, 131.011646999993 -12.5067879998882, 131.011830999993 -12.5067769998882, 131.012771999993 -12.5067649998882, 131.012769999993 -12.5066469998882, 131.013137999993 -12.5066429998882, 131.013120999993 -12.5052869998882, 131.012752999993 -12.5052919998882, 131.012623999993 -12.5051149998882, 131.012483999993 -12.5050259998882, 131.011771999993 -12.5048899998882, 131.011397999993 -12.5048679998882, 131.011172999993 -12.5048829998882, 131.011042999993 -12.5048919998882, 131.010868999993 -12.5048969998882, 131.010628999993 -12.5048529998882, 131.010538999993 -12.5048729998882, 131.010433999993 -12.5049759998882, 131.010405999993 -12.5049819998882, 131.010360999993 -12.5047889998882, 131.009127999993 -12.5046949998882, 131.008401999993 -12.5048589998882, 131.008578999993 -12.5056259998882))\n10186\tCanningvale-Avenues\tReady for service\tPOLYGON ((115.92247188091278 -32.091732005038793, 115.92253156006336 -32.091565554245413, 115.92255301773548 -32.091491702260463, 115.9227179735899 -32.091375811332959, 115.92263750731945 -32.091303663475415, 115.92288091778755 -32.0911076709764, 115.92301838099957 -32.09102756957315, 115.92324368655682 -32.090839529832905, 115.92325005680323 -32.090844926749277, 115.92353604733944 -32.090615699547, 115.92376202344894 -32.090590135139344, 115.92403627932072 -32.090371985236487, 115.9243132174015 -32.0901538348128, 115.92474371194839 -32.089810701321646, 115.92501796782017 -32.089590845245191, 115.92521511018276 -32.089531762385107, 115.92525903135538 -32.089499664469152, 115.92548131942749 -32.089319291014867, 115.92589370906353 -32.0896939561066, 115.92630140483379 -32.090066347256993, 115.92638522386551 -32.09090372471222, 115.92619344592094 -32.091179250894335, 115.92656023800373 -32.091513573816073, 115.92678520828485 -32.091717092650725, 115.92696659266949 -32.091883117100537, 115.92651966959238 -32.092239308828624, 115.9261647798121 -32.092524204402693, 115.92600342817605 -32.092642792278589, 115.92584744095802 -32.092760243831513, 115.92426761984825 -32.092034797001396, 115.92366680502892 -32.091927144063987, 115.92306800186634 -32.091839232138426, 115.92285443097353 -32.091810046496612, 115.92265510931611 -32.091779547135907, 115.92247188091278 -32.091733141220629, 115.92247188091278 -32.091732005038793))\nAYAA-EW1BR\tShoal Point Waters\tReady for service\tPOLYGON ((149.151202655373 -21.011116523858, 149.151146545911 -21.0111254381239, 149.15109987584 -21.011249289184, 149.151018742964 -21.0113293121475, 149.15097692047 -21.0113480805903, 149.150435033729 -21.0114924529054, 149.150281147832 -21.0114612034392, 149.150143168241 -21.0114741477725, 149.150021031735 -21.0115338023197, 149.149653570342 -21.0114901265638, 149.14961035435 -21.011438216034, 149.149718656918 -21.0105028582641, 149.148820497636 -21.0102076371667, 149.14878839037 -21.0102937617401, 149.148447073679 -21.0102194743175, 149.148461945786 -21.0101015807267, 149.148294822098 -21.0100829918468, 149.148290684083 -21.010115794518, 149.147944666663 -21.0100773073436, 149.147859954336 -21.0107444402755, 149.14801074326 -21.0107612125332, 149.14796775571 -21.0111019728608, 149.147920401499 -21.0110967056746, 149.147898341995 -21.011271569523, 149.148007623874 -21.011284909556, 149.148081393921 -21.0112977351057, 149.148162671487 -21.0113224710608, 149.148341456037 -21.0113886709315, 149.148300478278 -21.0117135052124, 149.148786179552 -21.0118949251009, 149.149134843538 -21.0119363682649, 149.149069197536 -21.0122230728982, 149.149549704569 -21.0125982397172, 149.149352664731 -21.0128147444456, 149.149211123978 -21.0128714120272, 149.149343139755 -21.0131621401398, 149.1492353294 -21.0132053032723, 149.149118743681 -21.0132413537906, 149.148994447475 -21.0132585519373, 149.149006407528 -21.0134474322513, 149.149037202629 -21.0134507629221, 149.149120486306 -21.0137421135354, 149.149041149745 -21.0137738766446, 149.148353442022 -21.0136994959513, 149.148249847077 -21.0152566281275, 149.149206163314 -21.0153621477217, 149.149307789779 -21.0153359530435, 149.150018628947 -21.0150513613696, 149.150075257212 -21.0151759812253, 149.150230053146 -21.0151139646355, 149.150173440904 -21.0149893803089, 149.150483064398 -21.0148654177963, 149.149850899169 -21.013474225464, 149.149995500173 -21.0133802543066, 149.150229716948 -21.0130937018502, 149.150262994244 -21.0131172083186, 149.150355493157 -21.0130017483927, 149.150100524573 -21.0128216429648, 149.150078198233 -21.0127719228752, 149.15008954515 -21.0127460905447, 149.150268550468 -21.0125419171942, 149.150333772794 -21.0120087841239, 149.150384267386 -21.0118814670013, 149.150473954172 -21.0117779885648, 149.150604021916 -21.0117196391115, 149.151098112564 -21.0115973870773, 149.151178821188 -21.011598062323, 149.151236339947 -21.0116270102975, 149.151239539578 -21.0116881486497, 149.151298836465 -21.0116875059642, 149.151297354966 -21.0115811185569, 149.151202655373 -21.011116523858))\nAYCA-14TLE6\tGeraldton Heights\tReady for service\tPOLYGON ((114.664126999979 -28.7357469207182, 114.663819445762 -28.7357471533768, 114.663562988785 -28.7357492049094, 114.661395694296 -28.7357495703547, 114.661406685336 -28.7351489492321, 114.661167038253 -28.735149875247, 114.661125158086 -28.7352004121983, 114.66112589054 -28.7358492749831, 114.66103979347 -28.735848067826, 114.661046559622 -28.7350401422437, 114.661011996858 -28.7350396187498, 114.661012675849 -28.735006604907, 114.660398999989 -28.7350059999864, 114.660401999989 -28.7351449999864, 114.660613999989 -28.7351449999864, 114.660613074661 -28.7363489019472, 114.660482605848 -28.7363516329955, 114.660479999049 -28.7364896706755, 114.660822999989 -28.7364869999865, 114.660821999989 -28.7376899999865, 114.660821321007 -28.7378521799023, 114.660888999989 -28.7378519999865, 114.663388469955 -28.7378920482905, 114.663468221272 -28.7379066066062, 114.663502290106 -28.7379360828215, 114.663516036658 -28.7380122816695, 114.663570317458 -28.7380150494931, 114.664198164526 -28.7380083567224, 114.664201923985 -28.7378552832926, 114.66421299999 -28.7376919999865, 114.66414199999 -28.7376919999865, 114.66414199999 -28.7364889999865, 114.664213999989 -28.7364899999865, 114.66419399999 -28.7363499999865, 114.664126999989 -28.7363499999865, 114.664126999979 -28.7357469207182))\n10187\tCanningvale-Avenues\tReady for service\tPOLYGON ((115.92517420649529 -32.089038646255204, 115.92604123055935 -32.088347256601061, 115.92611867934465 -32.088335894360924, 115.92614583671093 -32.088317146661609, 115.9261610917747 -32.088329503100226, 115.92619244009256 -32.088327088623842, 115.9263738244772 -32.088488148261483, 115.92650391161442 -32.088420543016049, 115.9270504117012 -32.08798366421572, 115.92929609119892 -32.090028852564551, 115.92882804572582 -32.09040379879643, 115.92836268246174 -32.090771358230285, 115.92775046825409 -32.091258784070725, 115.926967933774 -32.091881980920554, 115.92619545757771 -32.091178682799971, 115.92638522386551 -32.090903156616129, 115.92630140483379 -32.090064074851824, 115.9259419888258 -32.089738552228241, 115.92517420649529 -32.089038646255204))\n165\tCanterbury Lakes\tUnder construction\tPOLYGON ((144.3880579328667 -38.029560633247478, 144.39036999703626 -38.0298437421778, 144.38970480920185 -38.033350821776786, 144.38803111078033 -38.033131106057738, 144.38819204331671 -38.0324128000682, 144.38748930455591 -38.032290264813895, 144.38761268617492 -38.03178322020284, 144.3880579328667 -38.029560633247478))\nAYCA-17SASX\tPaech Road Residential Subdivision\tUnder construction\tPOLYGON ((138.887281999993 -35.0898210000208, 138.887594999993 -35.0899160000208, 138.887837999993 -35.0893780000208, 138.887539999993 -35.0892870000208, 138.887593999993 -35.0891830000208, 138.887566999993 -35.0891470000208, 138.887640999993 -35.0886220000208, 138.887676999992 -35.0885960000208, 138.887684999993 -35.0884610000208, 138.887653999993 -35.0884330000208, 138.887682999993 -35.0877180000208, 138.890403766609 -35.0877673064688, 138.890509755195 -35.0878604685577, 138.890653537896 -35.0878645075845, 138.890732562761 -35.0879370710756, 138.890886809435 -35.0878368817367, 138.890896697152 -35.0875990720211, 138.890790852467 -35.0875059140023, 138.890899996432 -35.0848808146565, 138.890962328756 -35.0848329638259, 138.890625203763 -35.0848218224287, 138.890557321038 -35.0864632702243, 138.888789388432 -35.0864135987949, 138.888743641564 -35.0875029716121, 138.887582999993 -35.0874710000207, 138.886210112065 -35.0874343619867, 138.885600040202 -35.0874180768548, 138.885587242127 -35.0875842118844, 138.886200345021 -35.0876062054296, 138.886171915124 -35.0884032112362, 138.885431844775 -35.0883820551655, 138.885385999992 -35.0895710000207, 138.886844999992 -35.0896160000208, 138.887139999992 -35.0897060000208, 138.887107999993 -35.0897770000208, 138.887220999993 -35.0898110000208, 138.887281999993 -35.0898210000208))\nAYCA-NLVNW\tOsprey Subdivision\tContracted\tPOLYGON ((118.616142056594 -20.4185619453499, 118.616147542222 -20.418652021323, 118.615479646884 -20.4186780400265, 118.614823664093 -20.4186496006532, 118.614739306898 -20.4186459432641, 118.614659584341 -20.4202709830569, 118.614521834102 -20.4224309879442, 118.616714674117 -20.4223316674584, 118.616630649863 -20.4211993886601, 118.616598858007 -20.4205310415129, 118.61645174293 -20.4192023776102, 118.616567543603 -20.4191931275919, 118.616549108539 -20.4187570007443, 118.616576063097 -20.4187249030171, 118.616539898116 -20.4185467182658, 118.616142056594 -20.4185619453499))\nAYCA-189LZC\tOakwood Rise\tReady for service\tPOLYGON ((153.286215 -27.8279889999839, 153.290493 -27.828994999984, 153.290696 -27.829033999984, 153.290681 -27.8280009999839, 153.290912 -27.8272179999839, 153.290608 -27.8275289999839, 153.28653 -27.8262029999839, 153.286215 -27.8279889999839))\n17328227\tRidgeview Estate\tCheck with carrier\tPOLYGON ((150.69247488 -34.0858359965, 150.692421952 -34.0856610235, 150.692364 -34.085617012, 150.692259968 -34.0852770005, 150.692192992 -34.0850580345, 150.692118112 -34.0848109855, 150.692144032 -34.084749954, 150.692133952 -34.084718004500004, 150.691780096 -34.084661043000004, 150.691722112 -34.084472047, 150.691520896 -34.0844380255, 150.691496032 -34.084433974, 150.691429088 -34.084422985, 150.691268896 -34.084396974, 150.691106176 -34.084370963, 150.690943072 -34.084343971500004, 150.690778912 -34.0843169615, 150.690615136 -34.08428997, 150.690450976 -34.0842629785, 150.69037104 -34.084249011000004, 150.690205088 -34.084222019500004, 150.690195008 -34.08422004, 150.690038048 -34.084195028, 150.689945888 -34.084179007, 150.689683072 -34.084135976, 150.689508832 -34.084107005, 150.68862288 -34.0839610215, 150.686804896 -34.083662043000004, 150.68654496 -34.084941022, 150.687606976 -34.0851169755, 150.688649152 -34.085287971, 150.689046976 -34.0853540345, 150.689252896 -34.085387963500004, 150.689444032 -34.085419025, 150.689449088 -34.0854200055, 150.68947104 -34.0854239645, 150.689645984 -34.0854530465, 150.689847968 -34.0854859765, 150.69004992 -34.085519017500005, 150.690185984 -34.085540977, 150.69026304 -34.0855540195, 150.690485888 -34.085591001000004, 150.690524032 -34.085597032, 150.690709088 -34.085628001, 150.690932992 -34.0856649825, 150.69115584 -34.085700983500004, 150.69137904 -34.0857379835, 150.691626016 -34.0857790165, 150.692076 -34.085852998, 150.69247488 -34.0858359965))\nAYAA-GS0IM\tHarvest Lakes\tReady for service\tPOLYGON ((115.865516044205 -32.1607065295207, 115.867602274265 -32.1607655259466, 115.867605529793 -32.1605991488483, 115.867669607945 -32.1606023453702, 115.867698539909 -32.1605916651357, 115.867699409084 -32.1602372553059, 115.867810676989 -32.1601961804821, 115.867756618653 -32.1600902159164, 115.867759547321 -32.1584885032953, 115.868030870247 -32.1584886622716, 115.868031244175 -32.158294859466, 115.867950325359 -32.1582385737932, 115.867952118128 -32.1577486385705, 115.86863104036 -32.15774802476, 115.868635032689 -32.1575464431002, 115.868935852442 -32.1575491325622, 115.868936291837 -32.1573395266199, 115.866761243737 -32.1573288259432, 115.865520681628 -32.1587472226939, 115.865516044205 -32.1607065295207))\nAYCA-1FTKWE\tMolonglo Valley - Coombs Stage 1\tReady for service\tPOLYGON ((149.048650961069 -35.3198709016713, 149.048699438006 -35.3200053240475, 149.048789711006 -35.3202747370475, 149.048901031006 -35.3202496810474, 149.049020089006 -35.3206049940474, 149.048995104006 -35.3208401340475, 149.048986935007 -35.3209170150476, 149.048903094006 -35.3210500880474, 149.048655844006 -35.3214013970474, 149.048331979006 -35.3212482900475, 149.048260551006 -35.3213497780475, 149.048086100006 -35.3215976450473, 149.047745437006 -35.3220816680476, 149.047753499006 -35.3221062880474, 149.047602397006 -35.3223209760474, 149.047572357006 -35.3223275830475, 149.047418757107 -35.3225458172653, 149.047448655006 -35.3225604260475, 149.047512095006 -35.3225904180474, 149.047473186006 -35.3226552590475, 149.047319335019 -35.3228738490396, 149.047182688329 -35.3230667583739, 149.047905096019 -35.3234082780393, 149.048677867006 -35.3237735980474, 149.048698023006 -35.3238351480474, 149.048677298532 -35.3238645936912, 149.048888331163 -35.3239615805794, 149.049406221006 -35.3232257440475, 149.049481322006 -35.3232092250474, 149.049787383668 -35.3233537338782, 149.049958783022 -35.3230713764947, 149.04951778028 -35.3228688195761, 149.049883396006 -35.3223493270475, 149.049897016013 -35.3223293940435, 149.049916280013 -35.3222989810435, 149.049937083006 -35.3222625280475, 149.049955880013 -35.3222253490435, 149.049982650006 -35.3221619770475, 149.049999879006 -35.3221102130475, 149.050013318006 -35.3220577010473, 149.050020882006 -35.3220179370474, 149.050026273006 -35.3219779370474, 149.050032765013 -35.3218968810434, 149.050046122013 -35.3218156630434, 149.050077819013 -35.3217095560433, 149.050111752013 -35.3216324670434, 149.050185185013 -35.3215075620435, 149.050241155013 -35.3214038500434, 149.050288626006 -35.3212973280475, 149.050321542006 -35.3212067520474, 149.050343453013 -35.3211333050433, 149.050372205013 -35.3210031240434, 149.050389938013 -35.3208526400432, 149.050392113006 -35.3207203560476, 149.050376599006 -35.3205507650474, 149.050350379013 -35.3204202250434, 149.050318173006 -35.3203099360473, 149.050064446006 -35.3195527470474, 149.049194945006 -35.3197484610475, 149.048650961069 -35.3198709016713))\n17325807\tCoomera Rivers\tCheck with carrier\tPOLYGON ((153.366432832 -27.847922043500002, 153.366837856 -27.8459530145, 153.363896992 -27.84547503, 153.363414976 -27.847904043, 153.363675968 -27.8479559725, 153.363926176 -27.8480069955, 153.364100032 -27.848032026000002, 153.36437904 -27.8481519985, 153.364457152 -27.8481519985, 153.365006176 -27.848160009, 153.365236928 -27.848177010500002, 153.365585056 -27.848244961000002, 153.365729056 -27.848279963, 153.366123968 -27.848339015, 153.366211072 -27.847887023000002, 153.366432832 -27.847922043500002))\nAYCA-EW20T\tNorthview Estate\tReady for service\tPOLYGON ((150.903164719861 -32.2437856266902, 150.900773573071 -32.2458014509632, 150.901786726436 -32.2461901502377, 150.901087232943 -32.246621636206, 150.900714262177 -32.2467892119897, 150.900739581757 -32.2468071821599, 150.901118995755 -32.2466419687028, 150.901839708956 -32.2462104768285, 150.902471680297 -32.2464529284333, 150.902546955 -32.2463941674277, 150.903432337 -32.2468355448277, 150.904057147977 -32.2470180367545, 150.904216130361 -32.2466045332233, 150.904308965754 -32.2464406984685, 150.904555719536 -32.2461686975425, 150.904770974535 -32.2462872747976, 150.904954274565 -32.2463389482613, 150.905311609547 -32.2464396823767, 150.905693700743 -32.2460184876195, 150.905480075296 -32.245760333848, 150.903941630734 -32.2444482478781, 150.904041954447 -32.2443487295366, 150.903972105224 -32.2443023996373, 150.903878230516 -32.2443941748543, 150.903164719861 -32.2437856266902), (150.903904421329 -32.2459599724073, 150.903991148565 -32.2458869626972, 150.904159147397 -32.2460289384691, 150.904069346404 -32.2461040765562, 150.903904421329 -32.2459599724073), (150.903273178146 -32.2466830087602, 150.903076551258 -32.2465869795818, 150.903240362856 -32.2463182369541, 150.903431109701 -32.2463960100873, 150.903273178146 -32.2466830087602), (150.90397766 -32.2465804568276, 150.904178992604 -32.2466368450906, 150.904036327499 -32.2470047011864, 150.903835007 -32.2469483117277, 150.90397766 -32.2465804568276))\nAYAA-FOSEA\tCitiswich\tReady for service\tPOLYGON ((152.812868512 -27.5980758249814, 152.812268896 -27.6016689134814, 152.814379296 -27.6019571804814, 152.81444 -27.6015980954814, 152.814369216 -27.6014053624814, 152.814559758773 -27.6002841252754, 152.81499179455 -27.6003554657317, 152.815047540372 -27.5999921045015, 152.815075276114 -27.5996648110014, 152.815062 -27.5996909999807, 152.815034 -27.5997109999807, 152.81500105914 -27.5997153833287, 152.814963747165 -27.5997079277421, 152.81493834986 -27.5996854278577, 152.814732416 -27.5993882149814, 152.814877792 -27.5993084244814, 152.814823488 -27.5987128354814, 152.814884096 -27.5983538059814, 152.812868512 -27.5980758249814), (152.812487446886 -27.6003605714794, 152.812795955634 -27.6003954736526, 152.812775682426 -27.6005015792108, 152.812468954701 -27.6004713351024, 152.812487446886 -27.6003605714794), (152.813677351097 -27.599751343555, 152.81382713901 -27.5997660455197, 152.813788286483 -27.6000544192629, 152.813632228893 -27.600036089951, 152.813677351097 -27.599751343555), (152.813997060998 -27.6017176454382, 152.814025551597 -27.6015401909611, 152.814439735763 -27.601598161227, 152.814409565196 -27.6017779341939, 152.813997060998 -27.6017176454382), (152.813996660607 -27.6017188985184, 152.814409558492 -27.6017779687095, 152.81437929964 -27.6019570230558, 152.813966191546 -27.601899030123, 152.813996660607 -27.6017188985184))\nAYAA-FYWH5\tMcKeachies Run\tReady for service\tPOLYGON ((151.544117731639 -32.6957247909062, 151.545811841389 -32.6958078522433, 151.545845363453 -32.6954621293364, 151.54575307293 -32.6954536645451, 151.545985330568 -32.6936668313343, 151.54618679199 -32.6936853160028, 151.546232926289 -32.6933941916364, 151.546281386726 -32.6934016886043, 151.546301926398 -32.6932039230736, 151.546332396343 -32.6929332724656, 151.546106924385 -32.6929132410267, 151.546154026675 -32.692630685523, 151.546391295171 -32.6926611710234, 151.546539966589 -32.6919780695886, 151.546366797463 -32.6919540298653, 151.546203531019 -32.6914338017529, 151.545998257182 -32.6914786116893, 151.545878744557 -32.6912079454852, 151.544864017711 -32.691455398443, 151.544908709987 -32.6917522903519, 151.544692978915 -32.6918068676931, 151.544669169511 -32.6921180781135, 151.544348722207 -32.6921319381908, 151.54435004291 -32.6922808464477, 151.544242384565 -32.6922863449566, 151.544310839029 -32.6928114646056, 151.544314400512 -32.6935892305703, 151.544227908539 -32.6935887377504, 151.54408117758 -32.6951626425227, 151.544166722917 -32.69525401232, 151.544117731639 -32.6957247909062), (151.545943634341 -32.6920140778958, 151.54611559275 -32.6920355560926, 151.546090801747 -32.6921993887549, 151.545892878753 -32.692178645958, 151.545943634341 -32.6920140778958), (151.545221440228 -32.6925667802594, 151.545528209526 -32.6925934171728, 151.545509994477 -32.692726091773, 151.545202393652 -32.6927032645601, 151.545221440228 -32.6925667802594), (151.544744964247 -32.6956476233495, 151.544756467434 -32.6955129320915, 151.545215686995 -32.6955364024545, 151.545204837489 -32.6956738589315, 151.544744964247 -32.6956476233495), (151.545543112298 -32.6945357355568, 151.545858454849 -32.6945577300815, 151.545786641243 -32.6951281631, 151.545483173525 -32.6950999014874, 151.545543112298 -32.6945357355568))\n17275187\tSovereign Downs - stage 1\tCheck with carrier\tPOLYGON ((152.02181808 -28.238709957, 152.020657088 -28.240628037, 152.020664992 -28.2406310155, 152.022269888 -28.241242015, 152.02237104 -28.240995965, 152.02348704 -28.241324007, 152.023641856 -28.241057977, 152.023974848 -28.2411469805, 152.025159968 -28.239183002, 152.02181808 -28.238709957))\n17349266\tHenry St Brassall\tCheck with carrier\tPOLYGON ((152.729560096 -27.590119012000002, 152.727028928 -27.589742019, 152.72696304 -27.590087969000002, 152.726670016 -27.591622026, 152.726474176 -27.592647037000003, 152.72900496 -27.5930280075, 152.729560096 -27.590119012000002))\nAYAA-F2BSM\tGlenfield West\tReady for service\tPOLYGON ((147.319628488454 -35.1379948217273, 147.319627823545 -35.1380022466932, 147.319660296405 -35.1380494150408, 147.31930804871 -35.1381623526539, 147.319207122604 -35.1382262631636, 147.318710234538 -35.1383850326961, 147.318426164442 -35.1379613974381, 147.31813465973 -35.1379775330377, 147.317602019619 -35.1380089186856, 147.317731080687 -35.1386698694337, 147.317738546926 -35.1386671087403, 147.317827519073 -35.1386562676184, 147.317933205636 -35.1389680897301, 147.31794200901 -35.1391535227436, 147.317954111731 -35.139496139627, 147.31730593669 -35.1395836678008, 147.317150013898 -35.1396051278363, 147.317013964612 -35.1396078234094, 147.317022602307 -35.1403092105112, 147.31872237117 -35.1401925298384, 147.318692016839 -35.1398381688933, 147.319120508851 -35.139712973205, 147.319234765275 -35.1394606263328, 147.319244196229 -35.1394623488946, 147.319553006569 -35.1395645758587, 147.319779919196 -35.1395573757337, 147.319767255812 -35.1396972061168, 147.32001605081 -35.139690524293, 147.320281435609 -35.1397127458338, 147.320820038781 -35.1396763730218, 147.321303558843 -35.1395098443677, 147.321483453216 -35.1394507607524, 147.322033322315 -35.1391885739048, 147.321948843284 -35.1390588846738, 147.321888413104 -35.1389671302971, 147.321782349217 -35.1387997552001, 147.321649886273 -35.1385893795409, 147.321555698954 -35.1384388097199, 147.321364983099 -35.1381463435469, 147.321268762108 -35.1379849871334, 147.321202947578 -35.1378849919113, 147.320949739128 -35.1374886179177, 147.31999893119 -35.1378568382409, 147.319628488454 -35.1379948217273))\nAYCA-E2RCZ\tRees Road, Brookfield\tReady for service\tPOLYGON ((144.548775775167 -37.7152222374757, 144.549722449045 -37.7148586679592, 144.550666208724 -37.7144244392927, 144.551575816969 -37.7139493409519, 144.55694731408 -37.7099166376815, 144.55678385762 -37.7097952089786, 144.556093620416 -37.7103108494559, 144.555990102794 -37.7103504368313, 144.555919593989 -37.7103628837402, 144.555855309604 -37.7103638664778, 144.555800009921 -37.7103580871987, 144.555769271001 -37.7103530641563, 144.555720177909 -37.7103358140176, 144.555623817868 -37.7102909227111, 144.555541867934 -37.7102521205524, 144.555481333913 -37.7102276846274, 144.55528743422 -37.710173808516, 144.554879305837 -37.7104905837839, 144.554802554448 -37.7104748349831, 144.553820645031 -37.7112152863071, 144.551915290346 -37.7126425759506, 144.550672624562 -37.7135519107789, 144.550371400356 -37.7137171171852, 144.550271986851 -37.7136324360567, 144.549873195567 -37.713931643152, 144.549188710729 -37.7142316527325, 144.548826452591 -37.7141149437213, 144.548570098696 -37.7146175414881, 144.548073486248 -37.7150782903322, 144.547873956139 -37.7154370651114, 144.547910613133 -37.7155086402153, 144.548775775167 -37.7152222374757))\nAYCA-OKUJA\tSt Leonards Estate\tReady for service\tPOLYGON ((115.975319584732 -31.851351726601, 115.97531488381 -31.8515663874156, 115.975512026493 -31.8515625529922, 115.975525263405 -31.8523427890277, 115.975670421409 -31.8528991916834, 115.975741244457 -31.8530708403236, 115.975923524356 -31.853411349151, 115.976735847858 -31.8531800754644, 115.977566401496 -31.8529632817354, 115.977718 -31.8533810000113, 115.977813869116 -31.8535471062771, 115.977693878378 -31.85358689201, 115.977809494976 -31.8537733696123, 115.977653293552 -31.8538641994907, 115.97786000147 -31.8542121240716, 115.977758391641 -31.8555085881331, 115.978307498939 -31.8555083104552, 115.978478565605 -31.8541797604413, 115.978523514741 -31.8540940815165, 115.977938008661 -31.8536877148348, 115.977832633943 -31.853532144458, 115.977733581268 -31.8533714607726, 115.977589519129 -31.8529748987985, 115.977689648661 -31.8530633378296, 115.979701135194 -31.8525567765532, 115.979570640092 -31.8515091307463, 115.978165559995 -31.8515122800119, 115.97732352 -31.8513321000118, 115.975319584732 -31.851351726601))\nAYCA-EMGSR\tMistful Park\tReady for service\tPOLYGON ((149.707134940517 -34.7307356697632, 149.707156143199 -34.7306955974475, 149.709823912376 -34.727997967858, 149.71001358529 -34.7278061013554, 149.709412129284 -34.7276531560394, 149.708968930216 -34.7277347557568, 149.708671826543 -34.7277347662144, 149.708563961226 -34.7280898997355, 149.708417254413 -34.7280748000039, 149.705593110335 -34.7282461457698, 149.705153741125 -34.7284029396774, 149.704878785622 -34.7286087059692, 149.704992525801 -34.7286865818058, 149.704767986032 -34.7288501964966, 149.704578414969 -34.7287535019587, 149.704482559363 -34.7287776384029, 149.706511876036 -34.7302299065978, 149.706608619704 -34.7302980845656, 149.706917324137 -34.7305555490333, 149.707134940517 -34.7307356697632))\nAYCA-F54UX\tBelmore Estate\tReady for service\tPOLYGON ((149.706596567539 -34.7331738928449, 149.707003840315 -34.7340597436064, 149.707261193096 -34.7340125368034, 149.707821388262 -34.7340581594406, 149.708632529057 -34.7343695850671, 149.709891167541 -34.7351503732513, 149.710861728771 -34.7354698722351, 149.711840366856 -34.7354059488434, 149.711283261924 -34.7333784436266, 149.71036929318 -34.7330256976559, 149.709981899458 -34.7327505364205, 149.709677178024 -34.7326437259472, 149.709474212495 -34.7334319051015, 149.709092712379 -34.7333282679958, 149.708916755712 -34.7333300516974, 149.707206408485 -34.7330175352905, 149.706596567539 -34.7331738928449))\n10661\tTapping The Kestrels\tReady for service\tPOLYGON ((115.79074859619141 -31.71812134547654, 115.79104900360107 -31.719180005239544, 115.79064130783081 -31.7192803947619, 115.79067349433899 -31.719399036784516, 115.79049110412598 -31.719444668291246, 115.79050183296204 -31.7197275831316, 115.79052329063416 -31.720092633262642, 115.79038381576538 -31.720129138196693, 115.7904589176178 -31.720439429555583, 115.79015851020813 -31.720530691522274, 115.79015851020813 -31.721050883016815, 115.7904052734375 -31.72151631503743, 115.78980445861816 -31.721771845349085, 115.78996539115906 -31.72206387912842, 115.79210042953491 -31.721169522773415, 115.79159617424011 -31.720129138196693, 115.79310894012451 -31.719535931237306, 115.79325914382935 -31.719526804946746, 115.79359173774719 -31.719408163087646, 115.79320549964905 -31.718796698790555, 115.79293727874756 -31.717674149358366, 115.79074859619141 -31.71812134547654))\n17359981\tYamba Waters\tCheck with carrier\tPOLYGON ((153.343916 -29.4395681005, 153.343738592 -29.439474361000002, 153.342510912 -29.43930035, 153.341289856 -29.439134590000002, 153.340685664 -29.4425448985, 153.342714816 -29.4428192905, 153.342824768 -29.4421998735, 153.342944608 -29.441524901, 153.3430104 -29.4411541795, 153.343075584 -29.4407868065, 153.343221088 -29.440575832500002, 153.343916 -29.4395681005))\nAYAA-F26L4\tShannon Waters Estate\tReady for service\tPOLYGON ((147.572827852958 -37.8385911993154, 147.575231910579 -37.8395332831698, 147.57548876871 -37.8391192883033, 147.575824803155 -37.8392504130456, 147.57604995307 -37.8391775521327, 147.577425546485 -37.838733169749, 147.577713143075 -37.8382695989463, 147.574144195253 -37.8368769307096, 147.573981046535 -37.8368132632568, 147.573820488412 -37.8370720431797, 147.562308171738 -37.8386299687029, 147.573740935495 -37.8371595280056, 147.573521073642 -37.8375137926805, 147.573278273022 -37.8379051178393, 147.573077569213 -37.8382285914997, 147.573057175346 -37.8382206328998, 147.572827852958 -37.8385911993154))\n17278226\tSpring Park Estate stage 5 \u0026 6\tCheck with carrier\tPOLYGON ((147.01261392 -36.0182999685, 147.012833888 -36.018522986, 147.014052128 -36.018722971, 147.013962848 -36.0189209765, 147.014335072 -36.019008981, 147.014533088 -36.019081982, 147.014465056 -36.019188986, 147.014970112 -36.019221028000004, 147.014813152 -36.019509036, 147.015375136 -36.019652041, 147.015376928 -36.019652041, 147.015627136 -36.0195270365, 147.015803872 -36.0193509905, 147.015591136 -36.019278008, 147.017275936 -36.017660978500004, 147.016628992 -36.01663902, 147.016347136 -36.0167589925, 147.015986048 -36.016336989, 147.014115136 -36.0173879925, 147.014114048 -36.0173879925, 147.01261392 -36.0182999685))\nAYAA-EOIUG\tBungarribee (Bunya)\tReady for service\tPOLYGON ((150.871722313876 -33.7785498963346, 150.87314016021 -33.7789617298701, 150.873199491321 -33.778201585343, 150.871993299188 -33.7780214785229, 150.871825916812 -33.7784104280002, 150.871493985569 -33.7783212170729, 150.87159544386 -33.7780579841086, 150.870392807598 -33.7776739327808, 150.870261267145 -33.777836763078, 150.870203770357 -33.7779016208475, 150.870065138657 -33.7779857588376, 150.869525205755 -33.778268320117, 150.869721033727 -33.7785096133803, 150.869704862006 -33.7787488713236, 150.870330362757 -33.7792638184638, 150.870255826493 -33.7792722959138, 150.869441140745 -33.7801644317452, 150.870211176652 -33.780476625007, 150.870301170174 -33.7805442954388, 150.870054161515 -33.780856187578, 150.870131139663 -33.7808934702092, 150.870147221927 -33.7809177263005, 150.870278257952 -33.7810802557049, 150.870817170258 -33.7812488770392, 150.871081146556 -33.781416740645, 150.871093405292 -33.7816847667759, 150.871649141601 -33.7820374763304, 150.872018972742 -33.7822740177745, 150.871996627113 -33.7824063460812, 150.872042437382 -33.7824303327215, 150.872431310516 -33.782479849197, 150.872741484528 -33.7802131780953, 150.872389461997 -33.7801713523787, 150.872343032959 -33.7798657975473, 150.871348693831 -33.7796570652474, 150.870174903693 -33.7790071702416, 150.86980240159 -33.7785776296995, 150.870370251577 -33.7780920502348, 150.871722313876 -33.7785498963346))\n249\tBentley Park\tReady for service\tPOLYGON ((145.18076334954131 -38.000899702137872, 145.18035565377588 -38.002793448605651, 145.18418584824605 -38.003283785702322, 145.18465791703321 -38.001398506174631, 145.18076334954131 -38.000899702137872))\nAYAA-H9B8H\t95 Flynn Ave, Middleton Grange\tReady for service\tPOLYGON ((150.84380031936 -33.9169220163184, 150.841137595669 -33.9165574783965, 150.840636466517 -33.9193343003772, 150.843248555336 -33.9196916350842, 150.84380031936 -33.9169220163184))\n17316398\tCurrey Street Roma\tCheck with carrier\tPOLYGON ((148.773735008 -26.5661309695, 148.773723136 -26.566155001000002, 148.77369792 -26.5661720025, 148.773666976 -26.566174981, 148.773449152 -26.5661459915, 148.773494176 -26.5658750035, 148.771775872 -26.565639036, 148.769723168 -26.565387029, 148.769422912 -26.5672700145, 148.769409952 -26.567349028000002, 148.770020896 -26.5674240085, 148.770243008 -26.567451000000002, 148.77044496 -26.567476012, 148.770645856 -26.567499951000002, 148.77084816 -26.5675249815, 148.771049056 -26.567549993500002, 148.771251008 -26.567574025000003, 148.771451872 -26.567598963000002, 148.771653856 -26.567623975, 148.771852928 -26.5676480065, 148.772052 -26.567672038, 148.772251072 -26.567696976, 148.772450176 -26.5677210075, 148.77264816 -26.567745039000002, 148.77284688 -26.5677699585, 148.773045952 -26.567793990000002, 148.773125152 -26.56780398, 148.773166912 -26.5675539525, 148.773207968 -26.5673089755, 148.773248992 -26.567063018000002, 148.773290048 -26.5668180225, 148.773331072 -26.5665719725, 148.77337392 -26.566317986, 148.773637088 -26.566353987, 148.773665888 -26.566364976, 148.773683872 -26.566388008500002, 148.773687136 -26.56641204, 148.773735008 -26.5661309695))\nAYCA-10XNGP\tWarner Springs\tReady for service\tPOLYGON ((152.955923963122 -27.3090973931164, 152.955923961974 -27.3090973929541, 152.955876518067 -27.3093641603069, 152.955811135239 -27.3094753716649, 152.955778422649 -27.3094707294271, 152.955775824044 -27.3094853399804, 152.955808604488 -27.3094896010412, 152.955807001123 -27.3094921584648, 152.955715816559 -27.3100048497239, 152.95571499951 -27.3100059703017, 152.95568228677 -27.3100013280415, 152.955679688196 -27.3100159385994, 152.955712400939 -27.3100205808745, 152.955652513205 -27.3103607806252, 152.955720162937 -27.3103703811129, 152.955672587898 -27.3106378721695, 152.955671854253 -27.3106394059018, 152.955639141328 -27.310634763631, 152.955636542734 -27.3106493741872, 152.955669255662 -27.310654016458, 152.955621115123 -27.3107970056864, 152.955588402154 -27.3107923634044, 152.955585803549 -27.3108069739588, 152.955618516522 -27.3108116162413, 152.955617718043 -27.3108129137756, 152.955570142569 -27.3110804047805, 152.955819559508 -27.3111165427335, 152.956242355716 -27.3112908098923, 152.957325393066 -27.3114444986463, 152.957277821415 -27.3117119902127, 152.957269294461 -27.3118310565265, 152.957264017463 -27.3118471524381, 152.95705723629 -27.3130098487597, 152.95735924805 -27.3130529187609, 152.957375604888 -27.3130552397778, 152.957654853417 -27.3128982278317, 152.957700570694 -27.3129800658289, 152.95775807419 -27.3130604246579, 152.957797018728 -27.3131047590298, 152.957935348017 -27.3132213160922, 152.957992417906 -27.3132848404522, 152.958125489742 -27.3134813196051, 152.958177060219 -27.313682582344, 152.958183772654 -27.3137593704322, 152.958184734276 -27.3138365266513, 152.958176257404 -27.3139157082674, 152.958184447379 -27.3139412424463, 152.958206724077 -27.3139697157927, 152.958231809065 -27.3139935966495, 152.957932666023 -27.3139853821305, 152.957837047039 -27.3139698136684, 152.957804357898 -27.3139650342562, 152.957801682458 -27.3139796337459, 152.957834371603 -27.3139844131587, 152.957935331841 -27.3139937702248, 152.958297089996 -27.3140074317578, 152.958330207309 -27.3140080337073, 152.958522057351 -27.3140216128753, 152.958840264631 -27.3142598438447, 152.959447686503 -27.3142315395534, 152.959450361734 -27.3142169400325, 152.959417672452 -27.3142121609976, 152.95920063531 -27.3141832232077, 152.958777668441 -27.3140376875741, 152.958522753055 -27.3140005792324, 152.958370897163 -27.3139980167114, 152.958330544351 -27.3139932429817, 152.958289267721 -27.3139755507047, 152.958251825672 -27.3139588723197, 152.95823081242 -27.3139364005073, 152.958221163773 -27.3139118084214, 152.958230080776 -27.313832841687, 152.958228347593 -27.3137586321241, 152.958218857549 -27.3136779537948, 152.958196331041 -27.3135820121816, 152.958163274888 -27.3134630888551, 152.958141547687 -27.313437061461, 152.958241145757 -27.3128671609587, 152.958242224846 -27.3128511263984, 152.958240443625 -27.3128317503832, 152.958233517178 -27.3128121700085, 152.958225488481 -27.312797003669, 152.958203429454 -27.3127756768852, 152.958173360361 -27.3127629258865, 152.958155818758 -27.3127597139091, 152.957858030831 -27.3127109683588, 152.957819556173 -27.3125788815909, 152.957723238207 -27.3125573674063, 152.957693473037 -27.3125415979247, 152.957675128236 -27.3125214294605, 152.957669610054 -27.3124889762399, 152.957709669998 -27.3122760461535, 152.958009130239 -27.3123185384338, 152.958191481272 -27.3112931530797, 152.958189829975 -27.3112912669351, 152.95819242825 -27.3112766563329, 152.958427990661 -27.3110981776666, 152.958459210985 -27.311095259344, 152.958484615041 -27.3110787881265, 152.95849739583 -27.3110531774681, 152.95877193559 -27.3094998178294, 152.955923963122 -27.3090973931164))\n17358015\tWoodside Park Estate\tCheck with carrier\tPOLYGON ((142.219964768 -34.17311772, 142.217923424 -34.173014416, 142.21726384 -34.1758682075, 142.21762368 -34.1759256315, 142.217441984 -34.1767122885, 142.21907136 -34.1769738045, 142.219178656 -34.176510842, 142.219964768 -34.17311772))\n10434\tJindalee-Jindalee Beach\tReady for service\tPOLYGON ((115.69381356239319 -31.650771238172503, 115.69583058357239 -31.650424181492554, 115.69603443145752 -31.651209623705451, 115.6965172290802 -31.65114569261068, 115.69656014442444 -31.651383150741029, 115.69647431373596 -31.651465347644823, 115.69659233093262 -31.65175760271401, 115.69624900817871 -31.651848932234667, 115.69724678993225 -31.652716558205025, 115.69656014442444 -31.653237129899534, 115.69648504257202 -31.653136668922379, 115.69605588912964 -31.65334672356893, 115.69475769996643 -31.653529379397426, 115.69470405578613 -31.6531184032785, 115.69453239440918 -31.6531184032785, 115.69448947906494 -31.652807886783375, 115.69368481636047 -31.652899215271994, 115.69348096847534 -31.651648007170756, 115.69391012191772 -31.651574943403453, 115.69381356239319 -31.650771238172503))\n10633\tStirling-Roselea\tReady for service\tPOLYGON ((115.81453442573547 -31.886405556850722, 115.81644415855408 -31.886414666673275, 115.81662118434906 -31.886550388688388, 115.81685721874237 -31.886322643190052, 115.81738293170929 -31.886655151428503, 115.81692159175873 -31.887106085340765, 115.81688404083252 -31.887957843373144, 115.81852555274963 -31.889132983234312, 115.81854164600372 -31.890221568407977, 115.81757605075836 -31.890125919180367, 115.8175653219223 -31.889506474158281, 115.81546783447266 -31.888054420052516, 115.81449151039124 -31.888027091068768, 115.81449151039124 -31.8873894124791, 115.81328988075256 -31.887362083298004, 115.8132791519165 -31.887034132492396, 115.81421256065369 -31.887006803205875, 115.81420183181763 -31.886687960930622, 115.81453442573547 -31.886405556850722))\nAYCA-IIZZF\tGlenhaven Park\tContracted\tPOLYGON ((147.067778 -38.0777960000299, 147.06772 -38.0780540000298, 147.06768 -38.0780750000298, 147.067447 -38.0780230000299, 147.067305 -38.0781450000299, 147.067288 -38.0786030000299, 147.067335 -38.0790770000298, 147.067284 -38.0790870000299, 147.067187 -38.0791030000298, 147.06712 -38.0791110000298, 147.067054 -38.0791160000298, 147.066974 -38.0791200000298, 147.066906 -38.0791200000298, 147.06684 -38.0791180000299, 147.066815 -38.0791160000298, 147.066767 -38.0791320000299, 147.066697 -38.0799280000299, 147.066751 -38.0800770000299, 147.066891 -38.0800750000299, 147.066983 -38.0800690000298, 147.067279 -38.0800220000299, 147.067557 -38.0799410000299, 147.067924 -38.0798270000299, 147.067796 -38.0796300000298, 147.068152 -38.0795080000298, 147.068719 -38.0795160000298, 147.069106 -38.0795680000298, 147.069781 -38.0796590000298, 147.070462 -38.0795450000299, 147.071172 -38.0796090000299, 147.07149 -38.0779420000298, 147.070903 -38.0779220000299, 147.070322 -38.0779480000299, 147.067957 -38.0778260000299, 147.067778 -38.0777960000299))\nAYAA-ETJLH\tKurra at Newman\tReady for service\tPOLYGON ((119.732205600023 -23.3492192099286, 119.734853760028 -23.350100849942, 119.735950303442 -23.3472925185682, 119.735895240023 -23.3471513699284, 119.734735196612 -23.3467869442537, 119.734429680016 -23.347568429926, 119.733279839995 -23.3471855699312, 119.732964812867 -23.3472753870439, 119.732203806669 -23.3492186125156, 119.732205600023 -23.3492192099286))\n17399437\tKokoda DHA Redevelopment\tCheck with carrier\tPOLYGON ((153.181528992 -28.034862009, 153.181696 -28.0353759945, 153.181812992 -28.0355900025, 153.181910016 -28.0356580085, 153.183324 -28.036856993500002, 153.185154016 -28.036684999000002, 153.185459008 -28.036427997, 153.185487008 -28.036049006000002, 153.185563008 -28.036097994000002, 153.185680992 -28.036170995000003, 153.185730016 -28.036178006500002, 153.185860992 -28.036159007000002, 153.185924 -28.036092, 153.185986016 -28.0360059935, 153.185992992 -28.035866004000003, 153.186055008 -28.035792004, 153.186686016 -28.035719003, 153.185860992 -28.035529008, 153.185832992 -28.035449994500002, 153.185931008 -28.0352659935, 153.186034016 -28.0352170055, 153.185896 -28.035199005000003, 153.185806016 -28.0350819925, 153.18566 -28.0350340035, 153.185355008 -28.0349719915, 153.185182016 -28.0349719915, 153.184974016 -28.034905003000002, 153.184924992 -28.034782995500002, 153.184683008 -28.0347089955, 153.184156 -28.034752008, 153.183006016 -28.0345500065, 153.182804992 -28.0346600075, 153.182728 -28.034519999500002, 153.181987008 -28.0344829995, 153.18198 -28.034873997000002, 153.181528992 -28.034862009))\n10451\tJindalee-Eden Beach\tReady for service\tPOLYGON ((115.69370090961456 -31.650792215652338, 115.69573402404785 -31.650440592507849, 115.6958144903183 -31.650678052439559, 115.69573938846588 -31.650751116911895, 115.69575011730194 -31.650851580467563, 115.69585204124451 -31.65092007828418, 115.69592982530594 -31.651244300597835, 115.696482360363 -31.651141554212391, 115.69654405117035 -31.65136987935913, 115.69647699594498 -31.6513835788501, 115.6965708732605 -31.651755747582186, 115.69621413946152 -31.651808262068585, 115.69625169038773 -31.651954389178911, 115.69659769535065 -31.651888175360504, 115.69663792848587 -31.652063984360904, 115.69674521684647 -31.6522329433466, 115.6972199678421 -31.652671321985316, 115.69658428430557 -31.653212442766051, 115.6964984536171 -31.65316221227771, 115.69604784250259 -31.653365417267874, 115.69477647542953 -31.653504692341595, 115.69472551345825 -31.653171345095789, 115.69458872079849 -31.653178194708758, 115.6945726275444 -31.653105132144365, 115.69451898336411 -31.653111981762219, 115.6944814324379 -31.652796898818536, 115.69428026676178 -31.65282429737778, 115.69367945194244 -31.652885944106551, 115.69348096847534 -31.651680400658588, 115.6938698887825 -31.651641585552881, 115.69370090961456 -31.650792215652338))\n10652\tTapping-Ashton Heights\tReady for service\tPOLYGON ((115.80303311347961 -31.718741940597035, 115.80515742301941 -31.718778446062974, 115.80520033836365 -31.721644080281308, 115.80469608306885 -31.721726214987971, 115.80465316772461 -31.722146013463071, 115.80297946929932 -31.722100383286136, 115.8030116558075 -31.721279036260107, 115.80278635025024 -31.721306414611572, 115.80281853675842 -31.720795350717626, 115.80271124839783 -31.720558070094775, 115.80279171466827 -31.720534327739404, 115.80264151096344 -31.720173842461556, 115.80296874046326 -31.720092633262642, 115.8029580116272 -31.719800593272819, 115.80311894416809 -31.719791467008314, 115.80311894416809 -31.719481173480464, 115.80283999443054 -31.719408163087646, 115.80282926559448 -31.71910699460955, 115.80300092697144 -31.71910699460955, 115.80303311347961 -31.718741940597035))\nAYCA-114M8I\tBaldivis East\tReady for service\tPOLYGON ((115.824591508574 -32.3126555913481, 115.823813120731 -32.3128965386895, 115.823754012718 -32.3129352994079, 115.823695786861 -32.3129734815815, 115.823636678749 -32.3130122422421, 115.823528323852 -32.3130709368525, 115.82341382181 -32.3131442382306, 115.823338274227 -32.3132050487702, 115.823323627239 -32.3132168385604, 115.823234031768 -32.313303678404, 115.823229132012 -32.3133084274517, 115.823062225312 -32.3135065344948, 115.822948514474 -32.3138038649007, 115.823266 -32.3138620000141, 115.823197 -32.3141090000141, 115.823121 -32.3141490000141, 115.82164007684 -32.3138760141784, 115.82159944785 -32.3140350827302, 115.821526896183 -32.3143191318023, 115.822954 -32.3145710000141, 115.823078 -32.3145940000141, 115.823202 -32.3146210000141, 115.823297 -32.3146610000141, 115.823386 -32.3147150000141, 115.823478 -32.3147900000141, 115.82355 -32.3148680000141, 115.823615 -32.3149610000141, 115.823674 -32.3150570000141, 115.823785 -32.3152380000141, 115.823694876639 -32.3153285352412, 115.823669116181 -32.3153607123315, 115.8236148703 -32.3154359661204, 115.82353209769 -32.3154525214511, 115.823470625017 -32.3154287264575, 115.823415534326 -32.3155401024103, 115.823692190164 -32.3156468171975, 115.823649052938 -32.3157243615368, 115.823672930186 -32.315731965846, 115.82374890679 -32.3155939580888, 115.823775143609 -32.3155560761066, 115.823852162022 -32.3154448729908, 115.823917995057 -32.3153819946628, 115.82398709571 -32.3153159952403, 115.824149579627 -32.3152117054701, 115.824341554094 -32.3151335843291, 115.825169539317 -32.314877287075, 115.825186450284 -32.3148745727673, 115.825262429171 -32.3148779552012, 115.825288714714 -32.3148847222664, 115.82531268898 -32.3148972658993, 115.825332806205 -32.3149133814613, 115.825344919825 -32.3149296296912, 115.825468215772 -32.3152168588809, 115.825664813012 -32.3151560022307, 115.825624797247 -32.3150627825191, 115.826203609464 -32.3148836090158, 115.82633314356 -32.3151853631273, 115.826482836461 -32.3151390245648, 115.826353301919 -32.314837270592, 115.826972029164 -32.3146457365326, 115.826984242201 -32.3146741867438, 115.827133933937 -32.3146278473792, 115.827023535211 -32.3143706743958, 115.8270616503 -32.3143011714116, 115.826988892427 -32.3141316817781, 115.826907047048 -32.3140993145216, 115.82673978107 -32.3137096645014, 115.82677789609 -32.3136401615943, 115.82692199713 -32.3135955526276, 115.826868009443 -32.3134683101338, 115.826723328425 -32.3135130442492, 115.826641483696 -32.3134806768322, 115.826561489449 -32.3132943261691, 115.826421370668 -32.3132978973931, 115.826393610649 -32.3132982924174, 115.826382608131 -32.3133015721659, 115.826114189419 -32.3133847908732, 115.825866611156 -32.3134615070185, 115.825835 -32.3134710000141, 115.825693 -32.313537000014, 115.825404 -32.3136260000141, 115.825371 -32.3137080000141, 115.825082 -32.3137980000141, 115.824694955616 -32.3128972543706, 115.824591508574 -32.3126555913481))\nAYCA-13WZ1H\tRiemore Downs Estate\tReady for service\tPOLYGON ((153.11493288 -27.8912129399838, 153.11432988 -27.8908268399838, 153.1133226 -27.8900781299838, 153.11327076 -27.8900102699838, 153.1123938 -27.8890442099838, 153.1120482 -27.8885618099837, 153.11170584 -27.8881748999838, 153.111054854636 -27.8880325616494, 153.110751442809 -27.8886543830547, 153.110557050238 -27.8888150413573, 153.110493 -27.8894414699838, 153.11109744 -27.8896805999838, 153.112831157895 -27.8913450024175, 153.11404044 -27.8926872299838, 153.11449188 -27.8927598599838, 153.1145952 -27.8922564899838, 153.114480754539 -27.8920456463712, 153.11493288 -27.8912129399838))\n10566\tSecret Harbour\tReady for service\tPOLYGON ((115.74823021888733 -32.398073760026065, 115.74863791465759 -32.397611757537007, 115.75041890144348 -32.39726206933863, 115.75027406215668 -32.396877063967558, 115.75005948543549 -32.396877063967558, 115.74997365474701 -32.396605294481937, 115.74971616268158 -32.396664177939904, 115.74945330619812 -32.396378819285758, 115.7491260766983 -32.396075341632319, 115.74869692325592 -32.395948514848079, 115.74824631214142 -32.395921337656873, 115.7482248544693 -32.395563503876225, 115.74716806411743 -32.395608799369889, 115.74641168117523 -32.396097989253605, 115.74664235115051 -32.396338053690123, 115.74635803699493 -32.3967864742299, 115.74621319770813 -32.3972167746743, 115.74632048606873 -32.397760309146662, 115.74657797813416 -32.398240428542309, 115.74683547019958 -32.398580134119619, 115.74823021888733 -32.398073760026065))\n17314100\tHilltop Estate\tCheck with carrier\tPOLYGON ((147.343695136 -35.162060047000004, 147.343493888 -35.162043027, 147.343032 -35.161988045, 147.342997088 -35.162360006, 147.342840832 -35.162321045, 147.342375008 -35.162206012, 147.342348 -35.162199981, 147.34168704 -35.162036996000005, 147.341466016 -35.1619790355, 147.341427136 -35.1621839785, 147.341387168 -35.162389976, 147.34145808 -35.162544969, 147.34130112 -35.1631919695, 147.341594176 -35.163245971, 147.34238112 -35.1633099625, 147.343314976 -35.1635920135, 147.343502176 -35.1636519535, 147.343628896 -35.163685975, 147.344834176 -35.1632639715, 147.345534016 -35.1634030175, 147.34628208 -35.1632850245, 147.347780032 -35.1627159645, 147.347571968 -35.1623459645, 147.347478016 -35.162223032, 147.347381888 -35.162105039000004, 147.34722816 -35.161918022500004, 147.346877888 -35.162055995500005, 147.346607872 -35.1621829795, 147.346228096 -35.1621980015, 147.34595808 -35.162207991500004, 147.345746048 -35.162216002, 147.34553616 -35.162224012500005, 147.34531008 -35.162232023, 147.345075008 -35.162243012000005, 147.344823008 -35.162255962, 147.344362912 -35.162281973, 147.344333056 -35.1620949565, 147.344298848 -35.1618910125, 147.343700896 -35.162020975000004, 147.343695136 -35.162060047000004))\n17256993\tVolker Street Dalby\tCheck with carrier\tPOLYGON ((151.24532688 -27.172153988, 151.245002176 -27.1741950005, 151.246947968 -27.174798008, 151.24966416 -27.1727060465, 151.24532688 -27.172153988))\n10076\tBaldivis-Rivergums\tReady for service\tPOLYGON ((115.8249306678772 -32.339061428306444, 115.82559049129486 -32.339056895923811, 115.82766115665436 -32.339070493071056, 115.82766652107239 -32.337629184092307, 115.82761824131012 -32.337502275283939, 115.82761287689209 -32.3369538458872, 115.82828342914581 -32.336935715933045, 115.82827270030975 -32.336718156199836, 115.82813858985901 -32.336477933386888, 115.82741975784302 -32.336033746128734, 115.82738220691681 -32.3361515919403, 115.82728028297424 -32.336101734115672, 115.82571387290955 -32.336124396766628, 115.82561194896698 -32.336196917211574, 115.82561731338501 -32.336686428695046, 115.82571387290955 -32.336804273656767, 115.82570850849152 -32.337012768213143, 115.82562267780304 -32.337085287946252, 115.82561194896698 -32.33728471691267, 115.82541882991791 -32.337316444207715, 115.82507014274597 -32.337325509147121, 115.82507014274597 -32.338354373869095, 115.82495212554932 -32.338354373869095, 115.8249306678772 -32.339061428306444))\nAYCA-1KG5DU\tCaddens Release\tUnder construction\tPOLYGON ((150.717314999989 -33.7729190000145, 150.717205999989 -33.7729590000145, 150.717169999989 -33.7729740000145, 150.717052999989 -33.7730980000145, 150.716921999989 -33.7732840000145, 150.716854999989 -33.7735580000144, 150.716771999989 -33.7739670000144, 150.716856751433 -33.7739648862616, 150.71696950037 -33.7734322196906, 150.717004280612 -33.7733269198199, 150.717048284789 -33.7732382302038, 150.717216968961 -33.7730340486722, 150.71739542387 -33.7729094314253, 150.717619999989 -33.7731860000145, 150.717241999989 -33.7740370000146, 150.719843999989 -33.7744200000146, 150.719985999989 -33.7744410000145, 150.720076999989 -33.7744560000145, 150.720097999989 -33.7744610000145, 150.720157999989 -33.7744730000145, 150.720219999989 -33.7744880000146, 150.720283999989 -33.7745040000146, 150.720357999989 -33.7745250000145, 150.720456999989 -33.7745550000145, 150.720558999989 -33.7745850000146, 150.720633999989 -33.7746070000146, 150.720664999989 -33.7746160000146, 150.720715999989 -33.7746290000145, 150.720764999989 -33.7746410000146, 150.720859999989 -33.7746610000146, 150.720871999989 -33.7746630000146, 150.720926999989 -33.7746720000146, 150.721064999989 -33.7746920000145, 150.721268999989 -33.7747200000146, 150.721291999989 -33.7746130000145, 150.720898999989 -33.7744020000146, 150.720720999989 -33.7738440000146, 150.721213999989 -33.7731970000145, 150.721387999989 -33.7727770000145, 150.720950999989 -33.7727710000146, 150.721014999989 -33.7724330000145, 150.721021999989 -33.7724020000146, 150.721004999989 -33.7723990000145, 150.720947999989 -33.7723860000146, 150.720863999989 -33.7723630000146, 150.720830999989 -33.7723520000145, 150.720769999989 -33.7723310000145, 150.720691999989 -33.7723010000146, 150.720468999989 -33.7721820000145, 150.720441999989 -33.7721660000145, 150.720361999989 -33.7721170000145, 150.720300999989 -33.7720820000146, 150.720229999989 -33.7720500000145, 150.720143999989 -33.7720170000145, 150.720099999989 -33.7720030000146, 150.720024999989 -33.7719820000146, 150.719931999989 -33.7719630000145, 150.719279999989 -33.7718380000146, 150.719242999989 -33.7718410000145, 150.719223999989 -33.7718500000145, 150.719194999989 -33.7718830000146, 150.719184999989 -33.7719180000145, 150.719169999989 -33.7719650000145, 150.719136999989 -33.7720450000145, 150.719110999989 -33.7720960000145, 150.719069999989 -33.7721630000145, 150.719042999989 -33.7722030000145, 150.718991999989 -33.7722670000146, 150.718814999989 -33.7724240000145, 150.718791999989 -33.7724400000145, 150.718754999989 -33.7724640000146, 150.718693999989 -33.7725000000145, 150.718624999989 -33.7725340000145, 150.718556999989 -33.7725630000145, 150.718497999989 -33.7725840000145, 150.718419999989 -33.7726070000146, 150.717745999989 -33.7727590000145, 150.717664999989 -33.7727770000145, 150.717587999989 -33.7727960000144, 150.717512999989 -33.7728210000145, 150.717451999989 -33.7728460000145, 150.717373999989 -33.7728850000145, 150.717358999989 -33.7728940000145, 150.717349999989 -33.7728990000144, 150.717314999989 -33.7729190000145))\n17321970\t52 Lot Subdivision at 278-298 Kopps Road Oxenford\tCheck with carrier\tPOLYGON ((153.298582912 -27.9186920175, 153.29842704 -27.9161180015, 153.297705952 -27.9162070235, 153.296979136 -27.916289996, 153.29625408 -27.9163670485, 153.295530112 -27.91644399, 153.295683136 -27.9189929755, 153.296406016 -27.918891984000002, 153.296668096 -27.918855002500003, 153.297129952 -27.918798022500003, 153.297857888 -27.9187080385, 153.29805408 -27.918684007, 153.298582912 -27.9186920175))\nAYCA-Z2NWV\tRiverside Estate\tReady for service\tPOLYGON ((146.94733 -36.1396140000277, 146.945121 -36.1396130000276, 146.944924196278 -36.1403317984061, 146.94541999483 -36.1403320507748, 146.945418 -36.1422110000277, 146.945415649551 -36.1422886915545, 146.94554960856 -36.1424469061513, 146.945463810248 -36.142513283203, 146.945699413092 -36.1427680021905, 146.946150721288 -36.1426428182766, 146.946322055321 -36.1425343783124, 146.946397034921 -36.1425234357071, 146.947559 -36.1418050000276, 146.947796 -36.1420490000277, 146.951098 -36.1399580000276, 146.950814 -36.1396690000277, 146.947832061851 -36.1416024247137, 146.947456326459 -36.1412191892125, 146.947563274608 -36.1411639972893, 146.947261150577 -36.1408511194772, 146.94733 -36.1396140000277))\n135\tVicinity\tReady for service\tPOLYGON ((152.8932789745534 -27.668484209033387, 152.89044656183933 -27.671144732405857, 152.89248504068445 -27.672132910303048, 152.89478101160759 -27.669985512328736, 152.89387978937503 -27.669244365178756, 152.8932789745534 -27.668484209033387))\nAYAA-FIVKB\tSilkwood\tReady for service\tPOLYGON ((153.257320500246 -27.62766731302, 153.25653738401 -27.6318305917134, 153.257617214426 -27.6319956795119, 153.257639848712 -27.6317004775048, 153.257715970085 -27.6310344139778, 153.257790751193 -27.6309458285398, 153.258265698293 -27.6311909357055, 153.258536509752 -27.6307662776233, 153.259372828563 -27.6300595308069, 153.259518365405 -27.6292251516377, 153.258673728566 -27.6290965685096, 153.258565513371 -27.6290493093161, 153.258708351117 -27.628292573244, 153.25876716609 -27.6279809759745, 153.258802068233 -27.6278290135718, 153.257320500246 -27.62766731302))\nAYCA-13KY8A\tStonecutters Ridge\tUnder construction\tPOLYGON ((150.85353745036 -33.7177115360161, 150.853537761097 -33.7177120161479, 150.853322232905 -33.7181706216223, 150.85331218433 -33.7182456933134, 150.853315475717 -33.718328899852, 150.852994712706 -33.7183819654523, 150.853313541253 -33.7197234554903, 150.853630923481 -33.7196702220993, 150.853688232058 -33.7198723954285, 150.853756220287 -33.7200828255172, 150.854190642096 -33.7200139375584, 150.854491405588 -33.7199622314266, 150.854752676484 -33.7199190033503, 150.854904155846 -33.7198855034348, 150.855161019897 -33.7198380722188, 150.855313702816 -33.7197970985369, 150.855377019303 -33.7197719369346, 150.855410422687 -33.7197558602972, 150.855310342817 -33.719618992985, 150.85533352815 -33.7196057989431, 150.855359658917 -33.7195892224481, 150.855392939055 -33.719561117961, 150.855424205888 -33.7195218089937, 150.855443081571 -33.7194800194065, 150.855497775294 -33.7193644385979, 150.855509576027 -33.7193498489395, 150.855518957603 -33.7193405589796, 150.855591119543 -33.7192801570225, 150.855631472291 -33.7192774409297, 150.855664224952 -33.7192684781349, 150.855704849756 -33.719246163834, 150.855747177203 -33.7192140084016, 150.855792516721 -33.7191693570744, 150.855832800078 -33.7191123503021, 150.855856081103 -33.719058571902, 150.85587873991 -33.7190013995067, 150.855897306486 -33.7189248191204, 150.855899117845 -33.7188933571186, 150.855901064393 -33.7188564576851, 150.855889046912 -33.7186634270586, 150.855884396084 -33.7186553907602, 150.855883438343 -33.7186236513814, 150.855888260195 -33.7186043710741, 150.855893534886 -33.7185790914274, 150.855905802157 -33.7185454526554, 150.855903170845 -33.7185343291466, 150.855819327933 -33.7184276077774, 150.85604283466 -33.7181080760127, 150.855837323951 -33.7180416403268, 150.855683113595 -33.7179325745074, 150.855555178105 -33.7177684423201, 150.855481205358 -33.7176202494895, 150.855002931057 -33.7176970745714, 150.85442051992 -33.7177737900202, 150.854391707051 -33.7177755017887, 150.854061211197 -33.7177915232712, 150.853769730448 -33.7177675072074, 150.85353745036 -33.7177115360161))\nAYCA-N65WN\tWilliams Landing\tReady for service\tPOLYGON ((144.752599787152 -37.8572225911177, 144.752752923733 -37.8576167587095, 144.752698976077 -37.8576299341632, 144.75294599999 -37.858289000022, 144.75293599999 -37.858291000022, 144.75291699999 -37.8583190000221, 144.75276199999 -37.858357000022, 144.75272699999 -37.858342000022, 144.75240599999 -37.858420000022, 144.75267399999 -37.859109000022, 144.75260499999 -37.859126000022, 144.75271199999 -37.859401000022, 144.75422699999 -37.8590310000221, 144.754748426257 -37.8589001867106, 144.755097946836 -37.8588183681052, 144.755271345692 -37.8587735763209, 144.75557854248 -37.8587058643731, 144.75544487999 -37.8582736500219, 144.75481559999 -37.8570869100219, 144.754489184736 -37.85671718929, 144.75434699999 -37.856796000022, 144.75398199999 -37.856885000022, 144.75399599999 -37.8569010000221, 144.75336399999 -37.857055000022, 144.75335799999 -37.857038000022, 144.752599787152 -37.8572225911177))\n10501\tLakelands\tReady for service\tPOLYGON ((115.77149033546448 -32.4656455793399, 115.76408743858337 -32.46569083964539, 115.76404452323914 -32.466414082097089, 115.76448976993561 -32.466420411415292, 115.76527297496796 -32.466454356354447, 115.76613128185272 -32.466488301280833, 115.76701909303665 -32.466519983200584, 115.76787739992142 -32.466506405236331, 115.76793104410172 -32.466180533480419, 115.76930165290833 -32.466182796482791, 115.76928019523621 -32.466393255454726, 115.76967984437943 -32.466438515384432, 115.77051669359207 -32.466529035175604, 115.77067226171494 -32.466151114444422, 115.77103704214096 -32.466182796482791, 115.7709726691246 -32.46638420346607, 115.77140718698502 -32.466454356354447, 115.77149033546448 -32.4656455793399))\nAYCA-1G91V7\tWellard Glen\tUnder construction\tPOLYGON ((115.847753342353 -32.2718152106875, 115.848718327085 -32.2719019988562, 115.848717581532 -32.2719373352267, 115.849227926916 -32.271985865174, 115.849227639259 -32.27195785826, 115.849428474515 -32.2719659386385, 115.849417645034 -32.270905722198, 115.84943 -32.2707870000139, 115.849581 -32.2708060000139, 115.849999 -32.2698540000139, 115.849664875758 -32.2696760595176, 115.84986 -32.2694330000138, 115.849182196368 -32.269024254489, 115.849331188993 -32.2688510357179, 115.84941444892 -32.2688297079347, 115.849503603061 -32.2688789658788, 115.849604088716 -32.2687927039596, 115.849036 -32.2684260000139, 115.847778 -32.2697650000139, 115.847753342353 -32.2718152106875))\nAYAA-FPPZ3\tThe Village\tReady for service\tPOLYGON ((146.8091124 -19.2934257299094, 146.81109100103 -19.2936202508172, 146.81108851778 -19.2931851379037, 146.810916093946 -19.2932620435647, 146.810882641647 -19.2932751786064, 146.81058844717 -19.2932353292884, 146.810607330996 -19.2930846941419, 146.810927731121 -19.2931146507623, 146.810914533566 -19.2932544804882, 146.811087759896 -19.2931743675887, 146.81226320625 -19.2932895499462, 146.812282381075 -19.2930432443042, 146.812329749679 -19.2930140625097, 146.81243298487 -19.2929856989568, 146.812507372026 -19.2929922254858, 146.812473055873 -19.293310780835, 146.814384380346 -19.2934972342422, 146.814405665831 -19.2931965034485, 146.814665357848 -19.2932230112493, 146.814772691722 -19.2932322080226, 146.81476709871 -19.2928250433742, 146.814264736564 -19.2920304574106, 146.814110668316 -19.2916240561208, 146.813990896139 -19.2913971320739, 146.813991132942 -19.2911874914118, 146.813383976247 -19.291369095481, 146.813843656105 -19.2927126409055, 146.813814537079 -19.292750302206, 146.813770031301 -19.2927858555289, 146.81243540653 -19.2926276411791, 146.81237306538 -19.2925757325403, 146.812048671046 -19.2925298989394, 146.812002229117 -19.29258388388, 146.8118322 -19.2925731599104, 146.810964087712 -19.2928554392632, 146.810955726037 -19.292955919923, 146.810626514146 -19.2929185630317, 146.810649958588 -19.2927715495569, 146.810907180624 -19.2928020330897, 146.810962622548 -19.2928503819713, 146.811825432606 -19.2925727620282, 146.810802384218 -19.2924845922012, 146.810786720859 -19.2925957310121, 146.80925388 -19.2924078299094, 146.8091124 -19.2934257299094), (146.810196470324 -19.29275281654, 146.810314371007 -19.2927679245794, 146.810282551453 -19.2929918292034, 146.810164650875 -19.2929766874422, 146.810196470324 -19.29275281654), (146.810441930118 -19.2927565339747, 146.810640522325 -19.2927780122363, 146.810613588937 -19.2930024940865, 146.810415004907 -19.2929809830604, 146.810441930118 -19.2927565339747), (146.813468464972 -19.2930919827071, 146.813632649104 -19.2931097409655, 146.813600495335 -19.2934193460763, 146.813425197445 -19.2934020577767, 146.813468464972 -19.2930919827071))\nAYCA-RIMV7\tShoesmith Road / Gwenda Drive\tReady for service\tPOLYGON ((151.868618675165 -27.5980661022218, 151.869018938932 -27.5981223489905, 151.868941898621 -27.5985677097313, 151.869134142137 -27.5986196036671, 151.869589370044 -27.5986842891736, 151.870743345566 -27.5986793468898, 151.871037479967 -27.5970197701636, 151.871045460886 -27.5969746792517, 151.870822035449 -27.5967285936115, 151.870518992185 -27.5965700743, 151.870556596873 -27.5963459634413, 151.870240144995 -27.5962838223315, 151.870268252285 -27.5961251151266, 151.868994313013 -27.5959463646818, 151.868618675165 -27.5980661022218))\nAYCA-SGJJ1\tEast Newman\tContracted\tPOLYGON ((119.745250920015 -23.3533529999134, 119.745210965805 -23.3536787527941, 119.745376000012 -23.3536649999372, 119.7454064996 -23.3539553631851, 119.745571371388 -23.3539444788394, 119.745946560728 -23.3539526133095, 119.746122815463 -23.3539688575586, 119.746271707548 -23.3540030945351, 119.746872063457 -23.3541480306198, 119.746902822264 -23.3541438535264, 119.74694244149 -23.35414785479, 119.747151101901 -23.3541761911758, 119.747381775696 -23.3542912609577, 119.747580717434 -23.3544078740296, 119.747629172566 -23.3544327137612, 119.747695452785 -23.3544165844068, 119.747842000012 -23.3541979999371, 119.747999522708 -23.3539062546386, 119.747759000012 -23.3537179999372, 119.749081365676 -23.3531279913507, 119.748097000012 -23.3517819999371, 119.745250920015 -23.3533529999134))\nAYCA-HZPMS\tRiverbank\tContracted\tPOLYGON ((152.957653706985 -27.0924267420636, 152.958101135515 -27.0924918760334, 152.958116262564 -27.0924028147903, 152.959115993508 -27.0925456550866, 152.959059409493 -27.0928278540611, 152.959727094433 -27.0929232479149, 152.959739242865 -27.0929528837543, 152.959809421845 -27.0929482830191, 152.959971428926 -27.092878426394, 152.960738418947 -27.0921597833356, 152.96115649964 -27.0924081518495, 152.961206990561 -27.0923388488879, 152.960871750772 -27.0920896999541, 152.960913916964 -27.0920182686662, 152.96093348229 -27.0919851241524, 152.960738910934 -27.0919608347369, 152.959936282386 -27.091015168138, 152.959966648414 -27.0908133615778, 152.959942233891 -27.0907555775593, 152.960210051018 -27.0906112101302, 152.960143201642 -27.0905080581685, 152.960101239084 -27.0904626551432, 152.959961132803 -27.0903178049607, 152.959817389772 -27.0901782805371, 152.959685907383 -27.0900584954998, 152.959280263362 -27.0898660816231, 152.959203982247 -27.089936883411, 152.959426771376 -27.0902202395195, 152.959009539728 -27.0905888333179, 152.958208576386 -27.0913597825658, 152.957974032474 -27.0911446177102, 152.957900680981 -27.0912049266335, 152.958111759204 -27.0914620527066, 152.957839739266 -27.0917349174347, 152.957775522024 -27.0918447718592, 152.957653706985 -27.0924267420636))\nAYAA-F68FV\tAmbrosia Estate\tReady for service\tPOLYGON ((145.232253663761 -38.1152450696986, 145.232544518219 -38.1152826386749, 145.232553742879 -38.115256621582, 145.233271844084 -38.1153488652901, 145.233265045106 -38.1153746605113, 145.233784771795 -38.1154416539539, 145.234037227984 -38.1142360313612, 145.234699369547 -38.1143198747137, 145.234784075105 -38.113895141425, 145.234747891049 -38.1138896089228, 145.234809200571 -38.1136049204898, 145.234019138747 -38.1135034428909, 145.234216154833 -38.1125380937915, 145.233365818861 -38.1124267128669, 145.233316675734 -38.1123145337441, 145.233003354129 -38.1122759070017, 145.232718818211 -38.1130272201633, 145.232253663761 -38.1152450696986))\n17355795\t2070 Romsey Rd\tCheck with carrier\tPOLYGON ((144.756296992 -37.3508019845, 144.75631104 -37.3551769755, 144.757433152 -37.3551540355, 144.757388896 -37.350837005, 144.756296992 -37.3508019845))\n10560\tQuinns Rock-Brighton Beachside\tReady for service\tMULTIPOLYGON (((115.69262735545635 -31.6537321198117, 115.69262875750597 -31.653731993443863, 115.69262869656086 -31.65373154901404, 115.69262735545635 -31.6537321198117)), ((115.69308316335082 -31.654480539552317, 115.69323462434113 -31.654467339961851, 115.69323444622569 -31.654454702244063, 115.69325036136433 -31.654453480389815, 115.69325134623796 -31.654467018890696, 115.69341961294413 -31.654449574023584, 115.69341743888799 -31.654436236189696, 115.69344611023553 -31.65443317263481, 115.69344578543678 -31.654443027738253, 115.6936100916937 -31.654428490345474, 115.69361145375296 -31.654416236124263, 115.6936436612159 -31.654411973010532, 115.69364508613944 -31.654429168162615, 115.6938075274229 -31.654415611818919, 115.69380494998768 -31.654399790136353, 115.69382517132908 -31.654396525910638, 115.69382538087666 -31.654405979678781, 115.69398270919919 -31.654392922776115, 115.69398281397298 -31.6543791702168, 115.69401242304593 -31.65437512114902, 115.69401397369802 -31.654383005236792, 115.69418471306562 -31.654369092140275, 115.69418475497514 -31.654361707495898, 115.69439535029233 -31.6543440485613, 115.69439677521586 -31.654352111024792, 115.69455519318581 -31.654338554669863, 115.6945364177227 -31.654196997666574, 115.69466952234507 -31.654184511529419, 115.69467253983021 -31.65419714036528, 115.69489449262619 -31.654175592859, 115.69489449262619 -31.654159182503204, 115.6949146091938 -31.654156471226745, 115.69511527195573 -31.654158183611891, 115.69520596414804 -31.654149621685871, 115.69521032273769 -31.654160466792014, 115.69545641541481 -31.65413738526523, 115.69547183811665 -31.654265243295125, 115.69585237652063 -31.654223004501141, 115.69591612089425 -31.654216440362511, 115.69591817446053 -31.654220150527877, 115.69609796628356 -31.654204739070757, 115.69609805010259 -31.654195606354225, 115.69623492658138 -31.654179624098138, 115.69658696651459 -31.654006102283667, 115.69696851074696 -31.653817168623821, 115.69713816046715 -31.653716137475904, 115.69704562425613 -31.653609398234209, 115.69707747548819 -31.653590133785823, 115.69709591567516 -31.653610825230231, 115.69723840802908 -31.653499662174791, 115.69730713963509 -31.653455853334631, 115.69744259119034 -31.653369662592109, 115.69750562310219 -31.653444437346835, 115.69754334166646 -31.653410332074948, 115.6975569203496 -31.653425315564135, 115.69773964583874 -31.653296600178219, 115.69771081209183 -31.653266347755672, 115.69773226976395 -31.653247511336634, 115.69772154092789 -31.653235524522543, 115.69792618509382 -31.653060645291141, 115.69793368689716 -31.6530638560511, 115.69802781566978 -31.652984657272853, 115.69802069105208 -31.6529768087416, 115.69831799715757 -31.652732647738429, 115.698316488415 -31.652729508317492, 115.69849468767643 -31.652579101390355, 115.69824993610382 -31.65236790339684, 115.69853827357292 -31.652122456477073, 115.69837130606174 -31.651964342652931, 115.698371976614 -31.651914967703277, 115.69840148091316 -31.651892420752208, 115.698371976614 -31.651861597063455, 115.69837398827076 -31.651853034925875, 115.69812789559364 -31.651642406092975, 115.69807567633688 -31.651687286057061, 115.69810526445508 -31.651716754129815, 115.69795522838831 -31.651819071772355, 115.69793812930584 -31.651803374512333, 115.69782480597496 -31.65189869965053, 115.69788314402103 -31.65194778920452, 115.69787945598364 -31.651950643247559, 115.69788850843906 -31.651958063759064, 115.69778356701136 -31.652045254724705, 115.6977762747556 -31.652037941246675, 115.6977622769773 -31.65205117685769, 115.69777987897396 -31.652069656764255, 115.69767460227013 -31.652154992501373, 115.69765674881637 -31.652138760166103, 115.69762032944709 -31.652168602687979, 115.69762146100402 -31.65217218807101, 115.69752138108015 -31.652252743207633, 115.69752775132656 -31.652256310749713, 115.69741576910019 -31.652344500346388, 115.69743219763041 -31.652353633244832, 115.69720722734928 -31.652551131953924, 115.69718811661005 -31.652536291025047, 115.69711938500404 -31.652593371507759, 115.69721728563309 -31.6526795629702, 115.69720521569252 -31.652693833072156, 115.69722801446915 -31.652714952819053, 115.6970389187336 -31.652878202592515, 115.69700656458735 -31.652854942371331, 115.69696616381407 -31.652888762445606, 115.69705165922642 -31.652970101814379, 115.69711267948151 -31.652997214921477, 115.69717235863209 -31.65299921272905, 115.69726724177599 -31.653073702380979, 115.69727160036564 -31.653104811068516, 115.69724410772324 -31.653108521278273, 115.69723203778267 -31.653087687021625, 115.69721929728985 -31.653083406009412, 115.69717034697533 -31.653054009720186, 115.69713581353426 -31.653023757218655, 115.69710396230221 -31.653020903208571, 115.69707982242107 -31.653019190802478, 115.69703824818134 -31.653000354333365, 115.69690480828285 -31.653081408203633, 115.69689072668552 -31.653059717738245, 115.69682970643044 -31.65299921272905, 115.69655478000641 -31.653209267686275, 115.69649443030357 -31.653156753991478, 115.69629393517971 -31.653256786846484, 115.69627046585083 -31.653280332367324, 115.69625906646252 -31.653273625461985, 115.6962114572525 -31.653297741778886, 115.69618798792362 -31.653320002988934, 115.69617390632629 -31.653313724186638, 115.6960491836071 -31.653375941390614, 115.69587349891663 -31.653393636184148, 115.69516304880381 -31.653467554720667, 115.69516472518444 -31.6534781145068, 115.69499909877777 -31.65349295528528, 115.69499842822552 -31.653486961894259, 115.69496423006058 -31.653488959691312, 115.69359228014946 -31.653634513360938, 115.69297570735216 -31.653696159552297, 115.6929787248373 -31.653719562262378, 115.69274503737688 -31.653741252573777, 115.69274134933949 -31.653721845453287, 115.69262875750597 -31.653731993443863, 115.69266825914383 -31.65402005110926, 115.69276414811611 -31.654247227595647, 115.69299884140491 -31.654222112634503, 115.69301040843129 -31.654287539948072, 115.69303270429373 -31.654285613517473, 115.69303840398788 -31.654337698478955, 115.69301661103964 -31.654340124353165, 115.69303639233112 -31.654476115905993, 115.69308056496084 -31.654472619798266, 115.69308316335082 -31.654480539552317)))\nAYCA-1IDZGW\tDeepdale North\tContracted\tPOLYGON ((114.68948799999 -28.7846939999871, 114.68947931999 -28.7872579799866, 114.69143099999 -28.7872629999872, 114.691486582758 -28.7872663128828, 114.691493946338 -28.7850809372732, 114.689473935784 -28.7846482240864, 114.68947299999 -28.7846769999872, 114.68948799999 -28.7846939999871))\nAYCA-E1F2P\tBig Sky\tReady for service\tPOLYGON ((153.329235325445 -27.8371893741321, 153.329459700301 -27.8372249308295, 153.329493532178 -27.8372849055515, 153.329551218924 -27.8373492983351, 153.32961497716 -27.8373936499677, 153.330078151799 -27.8374695092813, 153.330256771143 -27.8374757086377, 153.3303555324 -27.837475472296, 153.330404993557 -27.8375607174079, 153.331064721658 -27.8382299551952, 153.332816105567 -27.8369857899554, 153.331957021755 -27.8364658691454, 153.331322388153 -27.8360817797855, 153.33111055374 -27.8359689494654, 153.330762162233 -27.8357580959987, 153.330579329964 -27.8356590956984, 153.330415849707 -27.8354729796143, 153.329355323416 -27.8367920510833, 153.32931530525 -27.8368306943008, 153.329297503081 -27.8368837769095, 153.329235325445 -27.8371893741321))\n10354\tMillbridge\tReady for service\tPOLYGON ((115.73272973299026 -33.314029170846915, 115.73287524282932 -33.313903089227004, 115.73332518339157 -33.313511394497944, 115.73394745588303 -33.312966717357341, 115.73408156633377 -33.312845677530639, 115.73420092463493 -33.312742009026934, 115.73425658047199 -33.31269269639813, 115.73434844613075 -33.3126114425739, 115.73420092463493 -33.312526826441974, 115.73435582220554 -33.31232705359276, 115.73442924767733 -33.312228287744354, 115.7345013320446 -33.312137927402063, 115.73432765901089 -33.312084131432876, 115.73466226458549 -33.311720447395409, 115.73510482907295 -33.3119513224918, 115.73527716100216 -33.312054431560647, 115.7354548573494 -33.312158661256326, 115.73589071631432 -33.312413070850432, 115.73633059859276 -33.312670281557622, 115.73609925806522 -33.312861648072946, 115.73588199913502 -33.3130401256889, 115.73552493005991 -33.313262311598208, 115.73517322540283 -33.313538292046346, 115.73445975780487 -33.314130036011555, 115.73393136262894 -33.314599863009732, 115.73343515396118 -33.315051756092814, 115.73317900300026 -33.315252783495993, 115.73310993611813 -33.3153149828216, 115.73302209377289 -33.315363733613346, 115.73285780847073 -33.315330217446913, 115.73279812932014 -33.315315753308468, 115.73283366858959 -33.315186766708266, 115.73289066553116 -33.314946269053991, 115.7330958545208 -33.31476527373114, 115.73320046067238 -33.314677577719749, 115.73329567909241 -33.314587640185131, 115.73309317231178 -33.314336599099093, 115.73302209377289 -33.31422732875771, 115.73295973241329 -33.314245540490788, 115.73288932442665 -33.314255907167919, 115.73280550539494 -33.314218362980029, 115.73272973299026 -33.314029170846915))\nAYCA-1B7QW3\tHeights Durack\tReady for service\tPOLYGON ((130.97684745566 -12.4689548107749, 130.976105384394 -12.4695425985119, 130.976261406047 -12.4697371784944, 130.976274043273 -12.4697402842075, 130.97637546723 -12.4698737816428, 130.976313058342 -12.4699269499154, 130.976873353128 -12.4706340346146, 130.976938315889 -12.4705841733351, 130.977078908394 -12.4707586887538, 130.977191626502 -12.470675055592, 130.97729284728 -12.4707743692407, 130.977453003671 -12.4709769732229, 130.977500192115 -12.4709407062572, 130.977655966566 -12.4711369068785, 130.977667099911 -12.4711511743673, 130.977605792896 -12.4714040429747, 130.97776702486 -12.471606350308, 130.979065865071 -12.4706457911069, 130.978989978907 -12.4705606664793, 130.979105950268 -12.4704631359771, 130.97895499392 -12.4702977284652, 130.979200849502 -12.4700954167258, 130.978733543903 -12.469573518111, 130.978637934766 -12.469498845483, 130.978156895565 -12.4691250820249, 130.977501109513 -12.4686124799616, 130.977221997731 -12.4689553490314, 130.977231906806 -12.4690422692875, 130.977127456229 -12.4691211741824, 130.976948854186 -12.4690771606935, 130.97684745566 -12.4689548107749))\nAYCA-EV5A6\tBotanic Ridge Estate\tReady for service\tPOLYGON ((145.257629874059 -38.1394484973512, 145.257629805173 -38.1394484893738, 145.25732372172 -38.1397348964954, 145.25638022246 -38.1401409503577, 145.256178599992 -38.1401168400273, 145.255898479808 -38.140258755972, 145.255938839997 -38.1403217700279, 145.25650996672 -38.1405373261856, 145.257499359088 -38.1408362304922, 145.258130519997 -38.1410397900279, 145.258218359997 -38.141109990028, 145.258205039997 -38.1411490500279, 145.258172639997 -38.1411683100279, 145.258127639997 -38.1412008000281, 145.25798955791 -38.1413206182708, 145.257380297591 -38.1410694612817, 145.257271098187 -38.141241040582, 145.257871783323 -38.1415744621414, 145.258366685276 -38.1413410993927, 145.258525699988 -38.1412835740912, 145.258604420143 -38.1412312475797, 145.259459006758 -38.1415646515866, 145.259798383824 -38.1396995988949, 145.257629874059 -38.1394484973512))\nAYCA-1E33L6\tHeartland\tUnder construction\tPOLYGON ((150.770672515165 -34.0243758693653, 150.772295617241 -34.0250411723426, 150.77252499999 -34.0247810000162, 150.77262099999 -34.0248460000162, 150.77409999999 -34.0233000000162, 150.772509694361 -34.0222448403297, 150.771570699449 -34.0232969878044, 150.770672515165 -34.0243758693653))\n10595\tSecret Harbour\tReady for service\tPOLYGON ((115.76824150979519 -32.415166296226637, 115.7685412466526 -32.415169692651773, 115.7686036080122 -32.415223469366005, 115.76860830187798 -32.415340079815195, 115.76873235404491 -32.415342910164, 115.7687296718359 -32.415136294465739, 115.76885137706995 -32.415051383767619, 115.7689006626606 -32.415028174829573, 115.76902337372303 -32.41500666410117, 115.76908506453037 -32.415017985537816, 115.76908975839615 -32.414915526484442, 115.76908774673939 -32.414570221635707, 115.7693187519908 -32.414575316307022, 115.76932026073337 -32.414565976076069, 115.76942503452301 -32.414565126964121, 115.76942771673203 -32.414737779563417, 115.76994806528091 -32.4147389117105, 115.76994672417641 -32.4146613596012, 115.7702873647213 -32.414656264934742, 115.77029339969158 -32.415027608757832, 115.77059045433998 -32.415026476614358, 115.77059581875801 -32.415164598014016, 115.77065885066986 -32.415214978307986, 115.77066756784916 -32.415731233182512, 115.77060453593731 -32.415785009562065, 115.77048450708389 -32.415783311361096, 115.77048785984516 -32.415916903073082, 115.77041745185852 -32.415919733403825, 115.77041409909725 -32.416206728480049, 115.77104810625315 -32.416209558801711, 115.77105447649956 -32.416213521251869, 115.77104978263378 -32.416504477831, 115.77115640044212 -32.416506176018387, 115.77115975320339 -32.416642030906559, 115.77110879123211 -32.416642596968153, 115.77110812067986 -32.416948269716684, 115.7700939103961 -32.416946288507752, 115.76932730153203 -32.416944448813716, 115.76932780444622 -32.416951666074738, 115.76925102621317 -32.416951949104579, 115.76924817636609 -32.416946430022691, 115.76864719390869 -32.416945439418207, 115.76864585280418 -32.416960723028929, 115.76836556196213 -32.416955062432677, 115.76836723834276 -32.416946146992835, 115.76835282146931 -32.416947420627146, 115.76835282146931 -32.416647125460891, 115.76831392943859 -32.416646559399304, 115.76830605044961 -32.416513393314474, 115.76830353587866 -32.416358716627016, 115.76830387115479 -32.416224842537076, 115.76830118894577 -32.41609153431358, 115.76829917728901 -32.415917469139238, 115.76825559139252 -32.415916903073082, 115.76825559139252 -32.415781613160092, 115.76824218034744 -32.415167994439216, 115.76824150979519 -32.415166296226637))\n17317230\tTarneit Gardens\tCheck with carrier\tPOLYGON ((144.675806048 -37.8385389815, 144.673161856 -37.8390519865, 144.673155008 -37.8391050075, 144.67314816 -37.83915801, 144.673139168 -37.8392110125, 144.67313808 -37.839216951000004, 144.673221952 -37.839301015000004, 144.673423936 -37.8393190155, 144.673399072 -37.8394980215, 144.673161856 -37.8394769685, 144.673070048 -37.8395229595, 144.673070048 -37.8395250315, 144.673054912 -37.839576961, 144.673039072 -37.839627984, 144.67302288 -37.839680006, 144.673005952 -37.8397310475, 144.672987968 -37.839782977, 144.67296816 -37.839834, 144.672949088 -37.8398840425, 144.67292784 -37.839934973, 144.672905888 -37.8399850155, 144.672883936 -37.8400349655, 144.67286016 -37.840085008, 144.672836032 -37.840134958, 144.672810848 -37.8401840015, 144.672784928 -37.840232971, 144.672759008 -37.8402820145, 144.672730912 -37.840329985000004, 144.672702848 -37.840379047, 144.67267296 -37.840426018500004, 144.672689152 -37.8404630185, 144.672954112 -37.8405729825, 144.672959872 -37.840575961, 144.673008128 -37.8405950345, 144.673057088 -37.840614034, 144.673106048 -37.840633015, 144.673156096 -37.8406510155, 144.673206112 -37.8406680355, 144.673256896 -37.840685037, 144.673306912 -37.8407009655, 144.673358048 -37.840716006, 144.673409888 -37.8407300475, 144.673460992 -37.8407439965, 144.673512832 -37.840758038000004, 144.673565056 -37.8407700075, 144.673617952 -37.840781977, 144.67367088 -37.840794039, 144.673723072 -37.8408050095, 144.673777088 -37.840814999500004, 144.673830016 -37.840824009, 144.673882912 -37.840833, 144.673936928 -37.8408400115, 144.673990912 -37.840848022, 144.674044928 -37.840853979, 144.675267136 -37.840995985, 144.67536288 -37.8409390235, 144.67557312 -37.839696027, 144.675163072 -37.839639953500004, 144.675172096 -37.839413976, 144.675528128 -37.839426038, 144.675583936 -37.8394319765, 144.675648 -37.839393996, 144.675806048 -37.8385389815))\nAYCA-MQ1IF\tHeron Park\tReady for service\tPOLYGON ((115.933853735722 -32.1206153334704, 115.93446074444 -32.1210653592391, 115.934507990748 -32.1209256755028, 115.93456801891 -32.1209751770468, 115.934646724806 -32.1209002861082, 115.934693902344 -32.1209331711552, 115.934999561012 -32.1211356723619, 115.934985538374 -32.1211771882867, 115.93612397908 -32.121455674136, 115.936187609585 -32.1214797731429, 115.937001991132 -32.1209925504401, 115.937135955423 -32.1210542933006, 115.937691932015 -32.1205707278842, 115.936900291691 -32.1199006274731, 115.935772678845 -32.1189451165298, 115.935622284737 -32.1190759139232, 115.933853735722 -32.1206153334704))\n319\tSamford Retirement Village\tUnder construction\tPOLYGON ((152.88582620064778 -27.377593669964934, 152.88586032599048 -27.377409804534931, 152.8858585983927 -27.377409549002863, 152.88644041567321 -27.374284129586211, 152.88644044343965 -27.374284068484386, 152.88800682144264 -27.375321596946634, 152.88837677349989 -27.375646620940682, 152.88787498342626 -27.376044388525216, 152.88800991659937 -27.376180389661247, 152.88770677260229 -27.376420085585476, 152.88809127990785 -27.376810108121269, 152.88804874815619 -27.376842762843296, 152.88767008542135 -27.377143051113375, 152.88766850272398 -27.377143575343837, 152.88755930655518 -27.377230083582234, 152.88755976082524 -27.377230540557356, 152.88731345832 -27.377425877149516, 152.88709639098482 -27.377546762451345, 152.88663163645981 -27.377641381097838, 152.88582620064778 -27.377593669964934))\n17364564\t42-44 WANAKA DRIVE\tCheck with carrier\tPOLYGON ((144.814979168 -37.714644981, 144.814484896 -37.713813036000005, 144.81397296 -37.7138660385, 144.813224896 -37.713671011500004, 144.812840032 -37.712985031500004, 144.81219888 -37.712628999, 144.811530016 -37.712408035, 144.810564128 -37.7124570045, 144.81056304 -37.7124570045, 144.810761056 -37.713384983000005, 144.810803872 -37.7135900185, 144.81084816 -37.713797015000004, 144.810894976 -37.714022012, 144.810929152 -37.7141840165, 144.814979168 -37.714644981))\nAYCA-M7UKE\tAlex Ave Schofields\tReady for service\tPOLYGON ((150.882861701004 -33.7065022882839, 150.882498386823 -33.7083574561131, 150.882471580724 -33.7084760516722, 150.883271075988 -33.7085883831789, 150.883355838094 -33.7081673661807, 150.882995056691 -33.7081167271517, 150.883012019741 -33.7080276948818, 150.882990743806 -33.7080247077957, 150.883008772231 -33.7079350612113, 150.883428800299 -33.7079947797337, 150.883328396002 -33.7085026730786, 150.883460284007 -33.708518502092, 150.883463514537 -33.7085024254444, 150.88380392474 -33.708550203727, 150.883781819427 -33.7086602122415, 150.885927239547 -33.7089620612411, 150.886216514691 -33.7075424792026, 150.886387592924 -33.7067405036733, 150.885962782626 -33.7066803792117, 150.885940681817 -33.7067919494465, 150.885568828804 -33.7067400196146, 150.885524752402 -33.7069634038322, 150.884674391865 -33.7068438673198, 150.884656564058 -33.7069332979936, 150.883804931906 -33.7068123575726, 150.883785298581 -33.7069050429177, 150.883612506959 -33.7068809399852, 150.883666693886 -33.706614285301, 150.882861701004 -33.7065022882839), (150.885009389665 -33.7076098419873, 150.885237219372 -33.7076265317648, 150.885203709629 -33.7077904129663, 150.884993697642 -33.7077599534618, 150.885009389665 -33.7076098419873), (150.884970778534 -33.7074406779433, 150.885192959982 -33.707382030013, 150.885272547866 -33.7074315643598, 150.885237358931 -33.7076259404304, 150.885009463572 -33.7076093777429, 150.884970778534 -33.7074406779433), (150.884427140979 -33.7080609028192, 150.885107959698 -33.7081564530615, 150.885064194207 -33.7083742727026, 150.885002073263 -33.708411260928, 150.884431317076 -33.7083349644957, 150.884383373851 -33.7082787221443, 150.884427140979 -33.7080609028192), (150.882651232411 -33.7079761854605, 150.882706675887 -33.7078225516163, 150.882802937275 -33.7077161374946, 150.882891477369 -33.7076825383959, 150.882967046252 -33.7076768289268, 150.883027664551 -33.7076790067974, 150.883136533009 -33.7076815394868, 150.883245756641 -33.7076823046355, 150.883344364313 -33.7076814684012, 150.883399984252 -33.7076803566748, 150.88344495457 -33.7077232923423, 150.883391623488 -33.7079886943609, 150.883008664937 -33.7079349424185, 150.882990799368 -33.7080238479937, 150.882651232411 -33.7079761854605), (150.885495251562 -33.7070998750495, 150.885526059973 -33.7069706219155, 150.885525648996 -33.70696367697, 150.88556985013 -33.7067411146871, 150.885941520595 -33.7067930244481, 150.885963266393 -33.706680805967, 150.886337060313 -33.7067338732726, 150.886300574902 -33.7069023251777, 150.886262947645 -33.7069918810265, 150.886172894232 -33.7071055036109, 150.886025438303 -33.7071260805498, 150.885916437202 -33.707124214365, 150.885806830556 -33.7071253596278, 150.885696392054 -33.7071306456783, 150.885596328994 -33.7071387291432, 150.885538240775 -33.7071448716546, 150.885495251562 -33.7070998750495), (150.882832898524 -33.7070223745366, 150.883565146178 -33.7071251531158, 150.883499344163 -33.7074526206917, 150.883436525511 -33.7074989567362, 150.883380742725 -33.7075004312276, 150.883282036063 -33.7075017611435, 150.883172676294 -33.7075016746433, 150.883064258967 -33.7074968980886, 150.88296885767 -33.7074845746276, 150.882855489028 -33.7074439134487, 150.882826351484 -33.707420375032, 150.88278925471 -33.7073437962801, 150.882789859418 -33.707246709307, 150.882832898524 -33.7070223745366), (150.885738909094 -33.7077925068541, 150.88536658722 -33.7077402552207, 150.885438095328 -33.7073843508441, 150.88550013528 -33.7073320452511, 150.885559005532 -33.7073244968877, 150.885659426531 -33.7073146293991, 150.885743272689 -33.707308596295, 150.88586375373 -33.7073044412597, 150.885999795431 -33.7073184005822, 150.886124875984 -33.7073629873162, 150.886160421092 -33.7073977570444, 150.886178862823 -33.7074589541957, 150.886180293632 -33.7075081526332, 150.886133503827 -33.7077344844692, 150.885761237417 -33.70768137422, 150.885738909094 -33.7077925068541))\nAYCA-ES879\tVista Park\tContracted\tPOLYGON ((150.760773157261 -34.4717682164447, 150.76062999999 -34.4724530000173, 150.76061599999 -34.4727460000174, 150.76065899999 -34.4730010000173, 150.76102199999 -34.4733980000174, 150.76117599999 -34.4732990000174, 150.76141899999 -34.4735210000174, 150.76164799999 -34.4737990000174, 150.76141099999 -34.4740850000174, 150.76153599999 -34.4742170000174, 150.76175499999 -34.4741920000174, 150.76180099999 -34.4741730000174, 150.76185099999 -34.4741300000174, 150.76190899999 -34.4740940000175, 150.76201699999 -34.4740650000174, 150.76208399999 -34.4740650000175, 150.76224699999 -34.4740920000174, 150.76235899999 -34.4740940000174, 150.76254599999 -34.4741070000175, 150.76271899999 -34.4740820000174, 150.762769566914 -34.4737540062563, 150.76405440821 -34.4738939646296, 150.764203817716 -34.4729565861936, 150.76292708108 -34.4728176519204, 150.762859048108 -34.472802568788, 150.76295799999 -34.4721240000174, 150.76287999999 -34.4720550000173, 150.760773157261 -34.4717682164447))\nAYCA-DR2XE\tLyndarum\tReady for service\tPOLYGON ((145.022186165777 -37.6175821626794, 145.021973395891 -37.6177006273034, 145.021947476226 -37.6180279167561, 145.022019140108 -37.6181032120518, 145.022385715563 -37.6184570814713, 145.022089549297 -37.6186306144433, 145.022401773375 -37.6189451972598, 145.022379271524 -37.6189929430298, 145.022740253574 -37.6193332671785, 145.023782921291 -37.6187049929176, 145.023902101225 -37.618826252538, 145.025537300204 -37.6178411973553, 145.024431592192 -37.6167395915446, 145.024312899105 -37.6167275767154, 145.024293955158 -37.6167439521016, 145.02407408216 -37.616500937576, 145.0222254868 -37.6176216859547, 145.022186165777 -37.6175821626794))\nAYCA-1T833W\tMunno Para West\tContracted\tPOLYGON ((138.679963581282 -34.6537236956186, 138.679535279988 -34.6545048500399, 138.678652949988 -34.65605404004, 138.680716999988 -34.6568500000165, 138.680781999988 -34.6568300000164, 138.681142999988 -34.6561940000165, 138.680845999988 -34.6560790000164, 138.681783999988 -34.6544270000165, 138.679963581282 -34.6537236956186))\nAYCA-1JCYUF\tThe Village at Wellard\tUnder construction\tPOLYGON ((115.815194636229 -32.2674723303443, 115.815626680519 -32.2677013384043, 115.815921 -32.2677120000139, 115.816913 -32.2672790000139, 115.816866 -32.2671970000139, 115.817007 -32.2671390000138, 115.817649 -32.2668780000139, 115.817689 -32.2668570000139, 115.817399 -32.2664500000138, 115.816899 -32.2659170000139, 115.81664 -32.2656530000139, 115.81652 -32.2655350000139, 115.816482 -32.2655090000138, 115.816447 -32.2655310000139, 115.816361 -32.2655230000139, 115.816252 -32.2654110000139, 115.816234 -32.2653840000139, 115.816233 -32.2653330000139, 115.816213 -32.2653050000138, 115.816265 -32.2652680000138, 115.816164 -32.2651660000139, 115.816121 -32.2651970000139, 115.816052 -32.2651290000138, 115.815309 -32.2657450000139, 115.815214 -32.2658230000138, 115.814941 -32.2660470000139, 115.814268 -32.2665140000139, 115.813935117242 -32.2667203323842, 115.814054987694 -32.2668036195603, 115.815194636229 -32.2674723303443))\nAYCA-GC69I\tRedbank Estate\tReady for service\tPOLYGON ((150.95450405738 -31.1321730296903, 150.955026999988 -31.1323520000019, 150.955129999989 -31.132327000002, 150.955299999988 -31.1323990000019, 150.955729999988 -31.131643000002, 150.956012999989 -31.131762000002, 150.955987999988 -31.1318570000019, 150.956126192465 -31.1319582332049, 150.956143999989 -31.131942000002, 150.956444999989 -31.132069000002, 150.956140999989 -31.1326030000021, 150.956175999989 -31.1326680000019, 150.956855595472 -31.1331283222035, 150.957565983262 -31.1317693158453, 150.957795098663 -31.1318465022861, 150.958114867117 -31.1311028392757, 150.955610350508 -31.1302207636765, 150.954879563982 -31.1315147983169, 150.95450405738 -31.1321730296903))\nAYAA-FPPJL\tTreendale Grand Entrance\tReady for service\tPOLYGON ((115.741617559306 -33.2834902562883, 115.74149637655 -33.2834853356796, 115.740250302214 -33.2840039478902, 115.740561758788 -33.2845246464364, 115.741052053739 -33.2843149868236, 115.741138609202 -33.2843236899584, 115.741283039999 -33.2842637700176, 115.741312199999 -33.2841913200177, 115.741736011209 -33.2840127628576, 115.741827136415 -33.2839796802845, 115.741819706454 -33.2839642402395, 115.742353785541 -33.2837655966738, 115.74252004031 -33.2840385339996, 115.7441033374 -33.2834082426082, 115.743926232277 -33.2832905786809, 115.743876986883 -33.2832342382494, 115.743873852533 -33.2832091895594, 115.743884437695 -33.2831556100139, 115.743899497181 -33.2830897841342, 115.744143201016 -33.2829535502674, 115.744268006384 -33.282816104019, 115.744436612664 -33.282732668938, 115.744575623051 -33.2828217144404, 115.74474765417 -33.2826134033643, 115.744363734219 -33.2823610212831, 115.744569912359 -33.2820144061594, 115.743978070939 -33.2816736082834, 115.743991679636 -33.2816569358901, 115.743790661533 -33.2813848497932, 115.743720629472 -33.2814652431922, 115.74350311504 -33.2815557806319, 115.743357786629 -33.2812941881886, 115.743204894939 -33.2812508742509, 115.74234696965 -33.2797962041816, 115.742016179704 -33.2799254579295, 115.742103188577 -33.280063706342, 115.742076665403 -33.2801492143138, 115.742193035004 -33.2803459692739, 115.741950164392 -33.2804470585287, 115.742093188753 -33.2806894791332, 115.742144525324 -33.2806681115283, 115.742443600539 -33.2811750268738, 115.742379982915 -33.2812015061473, 115.742484955934 -33.2813794280983, 115.741920404584 -33.2816144070254, 115.742049128016 -33.2818325856059, 115.742783647851 -33.2815268610981, 115.742941291594 -33.2817939877197, 115.743002726136 -33.2817681124982, 115.743108218131 -33.2817973172295, 115.743239362584 -33.2820811187843, 115.743322740502 -33.2821407516452, 115.743557695548 -33.282256091723, 115.743238671891 -33.2823940529083, 115.743412095027 -33.2826879828248, 115.743138718326 -33.282804230556, 115.743317136515 -33.2831073162811, 115.742218506492 -33.2835635293025, 115.742040137525 -33.2832604173379, 115.741817430656 -33.28335171091, 115.741790737101 -33.2834181785336, 115.741617559306 -33.2834902562883), (115.743499048217 -33.2832867559444, 115.743645879881 -33.2832289736113, 115.743747954644 -33.2832600001634, 115.743792419321 -33.2833397073968, 115.743964219443 -33.283438066182, 115.743661241582 -33.2835638785491, 115.743499048217 -33.2832867559444))\nAYCA-HAFZC\tSanctuary\tReady for service\tPOLYGON ((151.640409860095 -32.8625539345981, 151.63991024405 -32.8632979837565, 151.63941271026 -32.8635227936407, 151.639220747182 -32.8636892481015, 151.638976040302 -32.8638725962599, 151.638953084531 -32.8639051836965, 151.638787038564 -32.8641125537856, 151.638741790105 -32.8641872548263, 151.638705880031 -32.8642452589024, 151.638687622698 -32.8642744562389, 151.638668131424 -32.8643092974398, 151.638647299981 -32.8643625894257, 151.63846719283 -32.8648545824783, 151.639064886071 -32.8652051162006, 151.639199565445 -32.8654963828878, 151.639268542591 -32.8656862415559, 151.639366562891 -32.8657132075127, 151.639460107776 -32.8657447066811, 151.639733747347 -32.8656580367945, 151.640005607135 -32.8655647388344, 151.64031285083 -32.8654571321017, 151.640623837741 -32.8653470744112, 151.640689507376 -32.8652777666912, 151.640810512277 -32.8651298703304, 151.640806654082 -32.8649290698675, 151.640768222615 -32.8648684706084, 151.64073561894 -32.8648160604543, 151.64061924478 -32.8645883178059, 151.640850944641 -32.8638796522853, 151.641050785827 -32.8634408022078, 151.641281877289 -32.8627158994455, 151.640717617476 -32.8623412984136, 151.640409860095 -32.8625539345981))\nAYCA-EOUA4\tHidden Valley Northern Paddock\tContracted\tPOLYGON ((144.997435999994 -37.3829400000256, 144.997535999994 -37.3829520000257, 144.997633999994 -37.3829710000257, 144.997729999994 -37.3829970000256, 144.997822999995 -37.3830280000256, 144.998408999995 -37.3821970000257, 144.997607999994 -37.3819240000256, 144.997716999994 -37.3818260000256, 144.997025999994 -37.3814240000256, 144.995753999994 -37.3817380000256, 144.995655999994 -37.3828540000256, 144.995224030408 -37.3835417936804, 144.996012346599 -37.3838680796194, 144.996103506111 -37.3837775540137, 144.99629570975 -37.3839049332668, 144.996205788902 -37.3840073047105, 144.996831016158 -37.384279740443, 144.997607999994 -37.3831140000257, 144.997545999994 -37.3831010000257, 144.997483999994 -37.3830910000256, 144.997419999994 -37.3830840000256, 144.997338999994 -37.3830740000256, 144.997259999994 -37.3830590000256, 144.997181999994 -37.3830380000256, 144.997106999994 -37.3830120000256, 144.997033999994 -37.3829820000257, 144.997122999994 -37.3828570000256, 144.997181999994 -37.3828810000256, 144.997242999994 -37.3829030000257, 144.997305999994 -37.3829200000256, 144.997370999994 -37.3829320000257, 144.997435999994 -37.3829400000256))\nAYCA-RX20O\tForest Park Estate\tReady for service\tPOLYGON ((150.526877499554 -23.324944363326, 150.526452239994 -23.3234121599396, 150.524893999994 -23.3241489999404, 150.525047999994 -23.3244289999404, 150.525064999994 -23.3245829999404, 150.525220999994 -23.3248639999404, 150.525731999994 -23.3246219999404, 150.525958999994 -23.3254409999404, 150.526389999994 -23.3257239999404, 150.526639999994 -23.3255609999405, 150.527090999994 -23.3254309999404, 150.528390999994 -23.3253679999404, 150.529437999994 -23.3248939999405, 150.529502999994 -23.3247229999404, 150.529094280038 -23.3239066200319, 150.526877499554 -23.324944363326))\nAYAA-I2S0G\tRiverbank\tReady for service\tPOLYGON ((152.957423135435 -27.0937721425907, 152.957358998358 -27.0941621857611, 152.956823997005 -27.094084184833, 152.9567968203 -27.0940674722832, 152.956773633958 -27.0941448894325, 152.956805200096 -27.0941542274441, 152.956758662626 -27.0944160238057, 152.956962224851 -27.0944654836944, 152.959051205551 -27.094759928873, 152.959464080465 -27.0947113167207, 152.95945836419 -27.0945875997647, 152.959646904499 -27.0935273208838, 152.959682766922 -27.0934205535699, 152.959776660731 -27.093267200569, 152.959826098107 -27.0932133608528, 152.95972914961 -27.0929226142075, 152.959061733096 -27.0928304949431, 152.959115993508 -27.0925456550873, 152.958116262564 -27.092402814791, 152.958101135515 -27.092491876034, 152.957653706985 -27.0924267420636, 152.957597965656 -27.0927137369331, 152.957462408667 -27.0934390276089, 152.957223453051 -27.0934045916199, 152.957168955511 -27.0937395819678, 152.957423135435 -27.0937721425907))\nAYAA-HDH0A\t22-26 Fairway Drive, Kellyville\tReady for service\tPOLYGON ((150.95973745889 -33.7268669549468, 150.956904567708 -33.7281258607769, 150.957258050927 -33.7285776942357, 150.958267124685 -33.7281930089368, 150.959099881597 -33.7290416548193, 150.96112892025 -33.7282741124339, 150.961367159994 -33.7279296600171, 150.95973745889 -33.7268669549468))\n10607\tSecret Harbour\tReady for service\tPOLYGON ((115.76587110757828 -32.407727500034227, 115.76626539230347 -32.407725801681636, 115.76675958931446 -32.407129677943466, 115.76680485159159 -32.407018718104581, 115.76680652797222 -32.406873790762631, 115.76730340719223 -32.406871526271068, 115.76729066669941 -32.407225918509575, 115.76747976243496 -32.407226484630243, 115.76753944158554 -32.407282530559357, 115.76753944158554 -32.408017917859524, 115.76759777963161 -32.408181525150752, 115.76758369803429 -32.408933888426589, 115.76766148209572 -32.409050507003471, 115.76733894646168 -32.409224868478155, 115.76731782406569 -32.409191751146054, 115.76714867725968 -32.409194440160654, 115.76714758761227 -32.409190972747076, 115.76712369918823 -32.409191468091876, 115.76697483658791 -32.409164294887148, 115.76665297150612 -32.409182410357879, 115.76633982360363 -32.409187505333371, 115.76618559658527 -32.40916712542969, 115.76585467904806 -32.409187222279179, 115.76550431549549 -32.409175050948342, 115.76534673571587 -32.409188071441733, 115.76532930135727 -32.409188354495925, 115.76532930135727 -32.409195430850218, 115.76510600745678 -32.409204771637043, 115.76507281512022 -32.409204347055848, 115.7650738209486 -32.409207885232441, 115.76507013291121 -32.409215527693419, 115.76472245156765 -32.409081076896783, 115.76474357396364 -32.409004369089359, 115.76475664973259 -32.408911810135344, 115.7646594196558 -32.408855199107514, 115.76437510550022 -32.408842744676619, 115.76406497508287 -32.408779340274542, 115.76373003423214 -32.4086468702193, 115.76356390491128 -32.408520344151661, 115.76341789215803 -32.408364380007647, 115.76315335929394 -32.408066603797245, 115.76352752745152 -32.40783166559951, 115.76390169560909 -32.40826191339972, 115.76432749629021 -32.408446466432828, 115.764921605587 -32.408446466432828, 115.76492562890053 -32.408356454417813, 115.76526174321771 -32.408357728173364, 115.76553616672754 -32.408362398610251, 115.76587177813053 -32.408359284985693, 115.76587244868279 -32.407728066151748, 115.76587110757828 -32.407727500034227))\nAYCA-1OUD2V\tCoomera 2 Estate\tContracted\tPOLYGON ((153.344296 -27.841463999984, 153.344494 -27.841478999984, 153.344638 -27.841412999984, 153.344765 -27.841355999984, 153.344891 -27.841297999984, 153.344775 -27.8410969999841, 153.344866 -27.841055999984, 153.344996 -27.840835999984, 153.345267 -27.840711999984, 153.345151 -27.840511999984, 153.345104 -27.840430999984, 153.345222 -27.840377999984, 153.345106 -27.840186999984, 153.345106 -27.840176999984, 153.345093 -27.840035999984, 153.346159 -27.839549999984, 153.342425 -27.838953999984, 153.342764 -27.840417999984, 153.342988 -27.840376999984, 153.343112 -27.840354999984, 153.343236 -27.8403319999841, 153.343361 -27.840308999984, 153.343485 -27.840285999984, 153.343551 -27.8405689999841, 153.343585 -27.840714999984, 153.343629 -27.840903999984, 153.343717 -27.8411179999841, 153.343752 -27.841203999984, 153.343796 -27.8413109999841, 153.34384 -27.841418999984, 153.343889 -27.841538999984, 153.344284 -27.841465999984, 153.344296 -27.841463999984))\nAYCA-181ZYP\tPlateau Drive Estate\tReady for service\tPOLYGON ((153.417476227406 -28.8150662776219, 153.416976110457 -28.8169382003528, 153.416933235934 -28.8170998309263, 153.417032 -28.8171339999917, 153.417116 -28.8171599999917, 153.418521 -28.8175129999918, 153.41857 -28.8175299999917, 153.418612 -28.8175489999917, 153.418781243531 -28.8177142802684, 153.418907558795 -28.8179225019788, 153.419196006514 -28.8178191673984, 153.418703 -28.8174059999917, 153.418747 -28.8173969999918, 153.419059 -28.8171839999917, 153.4191 -28.8171559999918, 153.419121 -28.8171409999917, 153.419137 -28.8171279999917, 153.419151 -28.8171139999917, 153.41916 -28.8171019999917, 153.419171 -28.8170819999917, 153.41918 -28.8170579999918, 153.419184 -28.8170409999918, 153.419245 -28.8166959999917, 153.419286 -28.8167019999918, 153.419520134234 -28.8152982677602, 153.417476227406 -28.8150662776219))\nAYCA-NLQYO\tWest Macgregor\tReady for service\tPOLYGON ((149.008430046802 -35.2062806440738, 149.005734412245 -35.2040097176796, 149.005292437707 -35.2039879997436, 149.005252912445 -35.2045842847598, 149.005700041093 -35.2046299749691, 149.006552023506 -35.2047062599619, 149.008187561816 -35.2060984450984, 149.008231757402 -35.2063033538828, 149.008239578237 -35.2063532484643, 149.008236363717 -35.2064236085975, 149.008230303137 -35.2064784644437, 149.007992589753 -35.2074666986246, 149.008497236998 -35.2075489120697, 149.010470763952 -35.2063917487299, 149.01178279311 -35.2056559279474, 149.011512983331 -35.2052422249766, 149.011446685064 -35.2051387817808, 149.011070206491 -35.204740796362, 149.010989010943 -35.2046805674285, 149.010886911144 -35.2046528957274, 149.010792882507 -35.2046566351661, 149.0107264307 -35.2046767728408, 149.010661676839 -35.2047121112139, 149.008670190977 -35.2062656594032, 149.008430046802 -35.2062806440738))\nAYCA-K45EX\tBrook View Estate- Glen Eden\tReady for service\tPOLYGON ((151.275568311569 -23.908229708765, 151.275562483989 -23.9080890417174, 151.275464218792 -23.9073191426936, 151.275618712196 -23.9071208173094, 151.275677920411 -23.9069978531943, 151.275752573024 -23.9068907890713, 151.2760339701 -23.9066836479073, 151.276221718035 -23.9065647803916, 151.276582650975 -23.906442064957, 151.276782726326 -23.9055339938434, 151.276362883187 -23.9055945630698, 151.276238059704 -23.9054963077065, 151.276082382772 -23.9054077334541, 151.27568168087 -23.9052073970294, 151.275439198508 -23.9049033867134, 151.275226130526 -23.9050095308038, 151.275174295294 -23.9052368388792, 151.275079801253 -23.9052175976888, 151.274856301957 -23.9052084131217, 151.274763376325 -23.9052214231117, 151.274628194579 -23.905272563642, 151.27449050385 -23.9049281091592, 151.274120015767 -23.9051122574813, 151.274270911569 -23.9054014748632, 151.274052435154 -23.9054851835786, 151.274169730238 -23.9056971522451, 151.274251721554 -23.9059338479737, 151.274393812496 -23.9063440393394, 151.274241274146 -23.9063492377399, 151.274041638843 -23.9063509624448, 151.274029862712 -23.9066453231167, 151.274021623981 -23.9068512607489, 151.274409512693 -23.9068549118435, 151.274434052258 -23.906890259249, 151.274432346496 -23.9069491873838, 151.274670860361 -23.9069726992344, 151.27455732925 -23.9081065517108, 151.275568311569 -23.908229708765))\nAYCA-PY6D9\tLandcom - North Penrith\tUnder construction\tPOLYGON ((150.696213999988 -33.7450150000141, 150.696034147404 -33.7453328955412, 150.696592397499 -33.7453713953065, 150.696671508624 -33.7454666407672, 150.69651760484 -33.7458692411935, 150.699547365667 -33.746678578094, 150.699869907267 -33.7467364864352, 150.700242425705 -33.7461324614568, 150.700423824969 -33.7460898381278, 150.700450971654 -33.7460491072036, 150.700826258104 -33.7454766246406, 150.700760126814 -33.7454461362884, 150.700873036993 -33.7452849614826, 150.700791599988 -33.7452310800137, 150.700721759988 -33.7451940900138, 150.699943999988 -33.7451450000141, 150.699943999988 -33.7451490000141, 150.696213999988 -33.7450150000141))\nAYCA-DWNT0\t165 Rowes Lane\tReady for service\tPOLYGON ((144.968656883999 -37.4199886208213, 144.966735926867 -37.4197733182394, 144.965936354282 -37.4196941109415, 144.965862547145 -37.4201099657062, 144.965896103448 -37.4201137543069, 144.965642678528 -37.4215416005404, 144.968325647288 -37.4218440293165, 144.968656883999 -37.4199886208213))\nAYCA-DSIWC\tCapestone Estate\tReady for service\tPOLYGON ((153.036578134434 -27.2294086990467, 153.036247286567 -27.2292328889193, 153.036202552761 -27.2292961414406, 153.035891885653 -27.2291167594952, 153.036010064244 -27.2289393927094, 153.03525885093 -27.2285824367473, 153.035039693887 -27.2288854865778, 153.034770290218 -27.2287623712117, 153.034700218834 -27.228583414576, 153.034509368344 -27.2284919081222, 153.033581996631 -27.2299405235361, 153.035296378253 -27.2308170937324, 153.036013434259 -27.2311845041512, 153.036211 -27.2309079999783, 153.036881103972 -27.2300255120751, 153.036864014297 -27.2298426433621, 153.037050258019 -27.2295699348397, 153.036578134434 -27.2294086990467))\n17320784\tThe Poplars Estate\tCheck with carrier\tPOLYGON ((149.068000096 -33.277665957, 149.06763504 -33.2776140275, 149.06763504 -33.277643017, 149.067429856 -33.277599986, 149.067411136 -33.2776289755, 149.06703888 -33.2775919755, 149.066919008 -33.2779519855, 149.066631008 -33.277894025, 149.066489888 -33.2778500135, 149.06640096 -33.2780040075, 149.06631888 -33.278348977, 149.066250112 -33.2785310355, 149.065841888 -33.279065001, 149.06536416 -33.2795899755, 149.065198912 -33.279901016000004, 149.065455968 -33.2799789565, 149.065315936 -33.280250037, 149.06691792 -33.280440032, 149.067424096 -33.280525983000004, 149.06806416 -33.277685049, 149.068000096 -33.277665957))\nAYCA-L7A0N\tSherwins Way Estate\tReady for service\tPOLYGON ((145.031257513902 -37.6190774358342, 145.031552642452 -37.6172839831229, 145.031418327811 -37.6172699979987, 145.031399014619 -37.617249813846, 145.031599402536 -37.6161142824399, 145.03170232661 -37.6160937261781, 145.031647677302 -37.6159281729289, 145.031259603803 -37.615890689152, 145.030097392487 -37.6157766510066, 145.029620539122 -37.6189097098531, 145.031257513902 -37.6190774358342))\n10656\tTapping-Ashton Heights\tReady for service\tPOLYGON ((115.79861283302307 -31.719818845799136, 115.79844117164612 -31.720065254552694, 115.798419713974 -31.721324666841383, 115.79808712005615 -31.72133379295494, 115.79810857772827 -31.7216988367605, 115.79846262931824 -31.721717088913035, 115.79845190048218 -31.722109509323303, 115.79722881317139 -31.72206387912842, 115.79726099967957 -31.722392416030349, 115.79771161079407 -31.72245629807049, 115.79777598381042 -31.722821337455283, 115.79717516899109 -31.722839589386783, 115.79667091369629 -31.721634954198308, 115.79669237136841 -31.719599815246092, 115.79666018486023 -31.7194355419917, 115.79653143882751 -31.719262142129555, 115.79706788063049 -31.719024857582063, 115.79718589782715 -31.719289521076725, 115.79747557640076 -31.719225636854095, 115.79861283302307 -31.719818845799136))\nAYCA-X7HVB\tHeron Park\tReady for service\tPOLYGON ((115.93642891207 -32.1216367216858, 115.936557627029 -32.1221665542486, 115.936593400016 -32.1220579851794, 115.936894480623 -32.1221298306888, 115.936942846793 -32.1220234143631, 115.93699919045 -32.1219263673116, 115.937072808376 -32.1218272386156, 115.937554174015 -32.1214028043219, 115.93744036457 -32.1213080369065, 115.93800003814 -32.1208230643826, 115.93811047881 -32.1209171143561, 115.938631167011 -32.1204735063215, 115.938681411615 -32.1205162183373, 115.938906137541 -32.1203247576136, 115.938955320403 -32.120175319313, 115.939179987209 -32.1199838294765, 115.939404580199 -32.1197924790512, 115.939498438817 -32.1198720641333, 115.939601077723 -32.119768068184, 115.939560406031 -32.1197334942479, 115.939784661523 -32.1195425047732, 115.939739619944 -32.1195010287144, 115.94030666254 -32.1190147143592, 115.940476652616 -32.1191655921974, 115.940660380729 -32.1190857714465, 115.940840077485 -32.1189326663434, 115.940162164488 -32.1183561634321, 115.939755841879 -32.1187114947443, 115.939498191629 -32.1184969313614, 115.939190782414 -32.1187639821528, 115.939260403106 -32.1188199882183, 115.939082436328 -32.1189760537825, 115.938853365876 -32.1187866364431, 115.938752577268 -32.1186805770761, 115.938527214049 -32.118491060958, 115.938178864747 -32.1187928925519, 115.938069399755 -32.1188898090787, 115.938250892976 -32.1190387711188, 115.938251667626 -32.1191164113304, 115.938073493135 -32.1192708119742, 115.937846491634 -32.1190818447082, 115.936901779547 -32.1199004874415, 115.937691932015 -32.1205707278842, 115.937135856518 -32.1210549271502, 115.937002120636 -32.1209935117697, 115.936353377621 -32.1213830819412, 115.93642891207 -32.1216367216858))\nAYCA-XMF0H\tMarsden Heights\tReady for service\tPOLYGON ((149.604477678932 -33.3946425629997, 149.602279138746 -33.3952518387361, 149.602407307773 -33.3955762835606, 149.602530565106 -33.3955491854388, 149.602815666841 -33.3963809754223, 149.603161832394 -33.3962985307869, 149.603310701935 -33.3968006221713, 149.601989188616 -33.397092628483, 149.601328489756 -33.3972369200935, 149.601393934856 -33.3975551069535, 149.601453000023 -33.3977010000059, 149.601495901356 -33.3980289616305, 149.603838756116 -33.3975777827209, 149.60375658441 -33.3972334323144, 149.603966734582 -33.3971880650895, 149.603827138176 -33.3966820267836, 149.604533594402 -33.3965238272665, 149.604450328635 -33.3961524808141, 149.604543503331 -33.3961265667313, 149.604514371335 -33.395977538368, 149.604461841552 -33.3959901938137, 149.604332541412 -33.3956338192881, 149.6047781945 -33.3955245889907, 149.604647706115 -33.3951494008139, 149.604596825032 -33.395001763177, 149.604477678932 -33.3946425629997))\n17371587\tEatons Hill Village\tCheck with carrier\tPOLYGON ((152.96384304 -27.338218017, 152.963493856 -27.337428992, 152.961264 -27.337118044, 152.961216128 -27.33738696, 152.960815072 -27.3373299985, 152.96069088 -27.3380200115, 152.960622848 -27.338400001500002, 152.960617088 -27.3385169955, 152.960637952 -27.3386320285, 152.960686912 -27.338740013000002, 152.960920928 -27.3391280135, 152.96112 -27.339458035, 152.961216832 -27.339841984, 152.961360128 -27.3397969735, 152.962224128 -27.339146014, 152.96289408 -27.3388300155, 152.963276032 -27.338595028500002, 152.96384304 -27.338218017))\nAYAA-F26S6\tSienna Wood\tReady for service\tPOLYGON ((115.988251904 -32.1637390545126, 115.988574697798 -32.1642256796065, 115.988593051966 -32.1642555911004, 115.988700344228 -32.1645578327195, 115.988847482284 -32.164972336828, 115.989096669526 -32.1656742991903, 115.988905479731 -32.1657617357568, 115.989022202586 -32.1660297553605, 115.98926472 -32.1662510100126, 115.993263631814 -32.1644035180478, 115.993291681681 -32.1642428568238, 115.992715885036 -32.1637513559104, 115.992680615375 -32.1639412838172, 115.992705006919 -32.1639649955412, 115.992750430589 -32.1640106048943, 115.992949646781 -32.1641447325013, 115.99295197892 -32.1641830185901, 115.992915786819 -32.1642350517955, 115.992817216335 -32.1643057940681, 115.990414385862 -32.1653244408015, 115.99026872786 -32.1650985227096, 115.990095650002 -32.1651481499282, 115.989818743934 -32.1652743094535, 115.989599985454 -32.1646580642298, 115.990071030053 -32.1645495219864, 115.990395896394 -32.1644660801073, 115.990001086717 -32.1633539029355, 115.989715325695 -32.1635474954791, 115.989600345883 -32.1632998625375, 115.989609778077 -32.1632623740637, 115.990121135854 -32.1628380784935, 115.990107893539 -32.1627844622362, 115.989755172849 -32.1624844003225, 115.988251904 -32.1637390545126))\n17320603\tAmaroo Park - Stage 5\tCheck with carrier\tPOLYGON ((145.438629856 -16.9941300335, 145.438998848 -16.9944509715, 145.43910288 -16.9947279905, 145.43925696 -16.9948610055, 145.439276032 -16.994977019, 145.439327872 -16.995094013, 145.439382976 -16.9952139855, 145.439494912 -16.9953990225, 145.439228896 -16.9936839985, 145.43943408 -16.993719981, 145.439646848 -16.992986049, 145.439350912 -16.991333999000002, 145.438851968 -16.9912610165, 145.436884928 -16.990967976500002, 145.437049088 -16.9910550005, 145.437262912 -16.991170015, 145.437272992 -16.991269027, 145.43730288 -16.991577995500002, 145.43731584 -16.99171299, 145.437319072 -16.9918019935, 145.437324832 -16.991984977, 145.437432832 -16.9921050235, 145.43761392 -16.992179005, 145.43768592 -16.992248047, 145.437908032 -16.9924629615, 145.437989056 -16.992718021, 145.438052032 -16.992917007, 145.43808192 -16.993008989, 145.438084096 -16.993184036, 145.438085152 -16.993351979, 145.438036928 -16.9935550165, 145.43796096 -16.993870016, 145.43799408 -16.9938980065, 145.438278112 -16.9941429835, 145.43834112 -16.994075033, 145.438368128 -16.994097991500002, 145.43839296 -16.994070981500002, 145.438554976 -16.9942110265, 145.438629856 -16.9941300335))\n17323048\tCotton Beach Subdivision\tCheck with carrier\tPOLYGON ((153.571853888 -28.308743002, 153.570812032 -28.3085720065, 153.570450976 -28.308512973, 153.570359872 -28.308498025000002, 153.57032784 -28.308697011, 153.570287872 -28.308940027000002, 153.570189952 -28.308927965000002, 153.570048832 -28.309026958500002, 153.570032992 -28.309024979, 153.56986992 -28.3090040185, 153.569706848 -28.3089830395, 153.569544128 -28.3089619865, 153.569348992 -28.308936956, 153.569035072 -28.308896996, 153.569037952 -28.3089149965, 153.56904192 -28.308932997, 153.569045152 -28.3089519965, 153.56904912 -28.308969997000002, 153.569052 -28.3089879975, 153.569055968 -28.3090069785, 153.569059936 -28.309024979, 153.569063872 -28.3090429795, 153.56906784 -28.3090640325, 153.56907216 -28.3090840125, 153.569076832 -28.309103992500003, 153.569081152 -28.3091239725, 153.569085856 -28.3091439525, 153.56909088 -28.309165024000002, 153.569094848 -28.309185004, 153.569099872 -28.309204984, 153.569104928 -28.309224964000002, 153.569109952 -28.309245036500002, 153.569115008 -28.3092650165, 153.569120032 -28.3092849965, 153.569126176 -28.309305957, 153.569130848 -28.3093260295, 153.569135872 -28.3093460095, 153.569142016 -28.3093659895, 153.56914704 -28.3093859695, 153.569153152 -28.309406042000003, 153.569158912 -28.309426022, 153.569163968 -28.309446002, 153.56917008 -28.309465982000003, 153.56917584 -28.309485962, 153.569181952 -28.3095060345, 153.569189152 -28.309526995000002, 153.569194912 -28.309547974, 153.569201056 -28.309569027000002, 153.569207168 -28.309590006, 153.569212928 -28.3096109665, 153.56921904 -28.309632038, 153.569225152 -28.309652998500002, 153.569230912 -28.3096739775, 153.569235968 -28.309695030500002, 153.56924208 -28.309715991, 153.56924784 -28.30973697, 153.569252896 -28.309758023, 153.56925792 -28.3097799825, 153.569264032 -28.309800961500002, 153.569269088 -28.3098220145, 153.569274112 -28.309842993500002, 153.569279168 -28.309863954, 153.56928384 -28.309886006, 153.569288896 -28.309906985, 153.56929392 -28.309928038000002, 153.569298976 -28.309949017, 153.569302912 -28.3099709765, 153.569307968 -28.309992029500002, 153.569311936 -28.3100130085, 153.56931696 -28.310033969, 153.569320928 -28.310055022, 153.569324896 -28.310076001000002, 153.569328832 -28.310095981, 153.569333152 -28.310117034, 153.56933712 -28.3101389935, 153.569341088 -28.3101599725, 153.569345056 -28.3101820245, 153.569348992 -28.310202985, 153.56935296 -28.310225037000002, 153.56935584 -28.310246016, 153.56936016 -28.3102669765, 153.56936304 -28.3102869565, 153.569367008 -28.3103139665, 153.569369888 -28.310331967, 153.56937312 -28.310354019000002, 153.569377088 -28.3103759785, 153.56937888 -28.310393979, 153.569382848 -28.3104209705, 153.569384992 -28.310437972000003, 153.569788928 -28.310414033, 153.569813056 -28.310428981, 153.569816992 -28.310424023, 153.56982096 -28.310418991000002, 153.569826016 -28.310415032, 153.56983104 -28.310410980500002, 153.569836096 -28.3104070215, 153.569841856 -28.310402970000002, 153.569847968 -28.310399991500002, 153.56985408 -28.3103960325, 153.56985984 -28.310393979, 153.569865952 -28.3103910005, 153.569873152 -28.310389021000002, 153.569878912 -28.3103870415, 153.569886112 -28.3103849695, 153.56989296 -28.31038299, 153.569899072 -28.310381991, 153.56990592 -28.310381991, 153.56991312 -28.310381010500002, 153.569919968 -28.310381010500002, 153.569927168 -28.310381010500002, 153.569934016 -28.310381991, 153.569940832 -28.31038299, 153.569948032 -28.310383989, 153.569954176 -28.3103849695, 153.569960992 -28.3103870415, 153.56996784 -28.310389021000002, 153.569973952 -28.3103910005, 153.569980096 -28.310393979, 153.569985856 -28.310397031500003, 153.569991968 -28.310399991500002, 153.56999808 -28.310403969, 153.570003136 -28.310408002000003, 153.570008896 -28.310411961, 153.57001392 -28.3104160125, 153.570017888 -28.3104199715, 153.570022912 -28.310425022, 153.57002688 -28.310429961500002, 153.570030848 -28.310435012, 153.570035168 -28.3104399515, 153.570038048 -28.3104459825, 153.57003984 -28.310448961000002, 153.570042016 -28.310454992, 153.570044896 -28.310461023000002, 153.57004704 -28.3104659625, 153.570048832 -28.310471993500002, 153.57004992 -28.3104780245, 153.570051008 -28.310483963, 153.570052096 -28.310489994, 153.570052096 -28.310497024, 153.570052096 -28.3105029625, 153.570051008 -28.3105089935, 153.570051008 -28.310515024500003, 153.570048832 -28.310520963000002, 153.570048128 -28.310526994, 153.570045952 -28.310533025, 153.57004416 -28.3105389635, 153.570040928 -28.310544994500003, 153.570038048 -28.3105510255, 153.57003696 -28.310556964, 153.570035168 -28.310562995, 153.57003408 -28.310569026, 153.570032992 -28.310574964500002, 153.570031936 -28.310581976, 153.570031936 -28.310588007, 153.570035168 -28.310866025, 153.570035168 -28.310871963500002, 153.570035168 -28.310878975, 153.57003696 -28.310886005, 153.570038048 -28.3108930165, 153.57003984 -28.310900046500002, 153.570042016 -28.310905985, 153.570044896 -28.3109129965, 153.570048128 -28.3109200265, 153.570051008 -28.310925965, 153.570054976 -28.310931996, 153.570058912 -28.310938027000002, 153.570063968 -28.3109439655, 153.570068992 -28.3109499965, 153.570074048 -28.3109550285, 153.570143872 -28.3109699765, 153.57016512 -28.310966998, 153.570187072 -28.3109650185, 153.570207968 -28.310964038, 153.570228832 -28.310964038, 153.570251168 -28.310964038, 153.570272032 -28.3109660175, 153.570279968 -28.310966998, 153.57145392 -28.3111180135, 153.571853888 -28.308743002))\n17320331\tBeachside Residential - Stage A\tCheck with carrier\tPOLYGON ((150.790339072 -23.187879991, 150.79015584 -23.1875379815, 150.790007872 -23.187608004, 150.789893056 -23.187399028, 150.78980592 -23.187439987, 150.789709088 -23.1872630345, 150.78979584 -23.1872220015, 150.789663008 -23.186979984500002, 150.78908592 -23.1872259605, 150.789281056 -23.187612962, 150.789133088 -23.187662005500002, 150.78924 -23.18787396, 150.789376096 -23.1878310215, 150.789594976 -23.1882010215, 150.789755168 -23.189610962, 150.790015072 -23.189649035000002, 150.789956032 -23.190002995500002, 150.789699008 -23.1914369675, 150.789786112 -23.191452008000002, 150.790020128 -23.1914899885, 150.790213088 -23.191522012, 150.790511872 -23.191571962, 150.790533856 -23.1914500285, 150.79055616 -23.191326985, 150.790578112 -23.191205033, 150.790600096 -23.191083007, 150.790622048 -23.1909609625, 150.790644 -23.1908390105, 150.790664896 -23.1907159855, 150.790686848 -23.190594033500002, 150.790649056 -23.1905880025, 150.790681088 -23.1904089965, 150.79070592 -23.1902649925, 150.79073184 -23.1901219875, 150.790758112 -23.189978964, 150.790782976 -23.189834978500002, 150.790808896 -23.189691955, 150.790835168 -23.189547951, 150.790861088 -23.189405038500002, 150.790881952 -23.189285972500002, 150.790902848 -23.189166, 150.790925152 -23.1890470265, 150.790946048 -23.1889269615, 150.79133088 -23.188985995, 150.791334112 -23.188986994, 150.791356096 -23.188865042, 150.791379136 -23.188669016000002, 150.79137984 -23.188420986500002, 150.791352832 -23.1881740115, 150.791298112 -23.187931014, 150.791216032 -23.187693955, 150.791104096 -23.1874679775, 150.790758848 -23.187618993, 150.790802048 -23.1876950465, 150.790835872 -23.1877749665, 150.790687936 -23.187825989500002, 150.790659136 -23.1877549865, 150.790339072 -23.187879991))\nAYCA-QKD53\tAppletree Grove Estate\tReady for service\tPOLYGON ((151.585942961201 -32.9133083422074, 151.585873146804 -32.9133731070757, 151.585571243657 -32.9138350030256, 151.585803402147 -32.9138232434103, 151.585648422114 -32.9141008392261, 151.58546109915 -32.9140850231698, 151.585397037233 -32.9143874613341, 151.585425634436 -32.9143918782878, 151.585387116315 -32.9145692992861, 151.58534981601 -32.9145635380991, 151.585280013132 -32.9148663919446, 151.589907871888 -32.9155908439873, 151.590096075665 -32.9148364109293, 151.58887663395 -32.914620050709, 151.588179080189 -32.9144002100156, 151.585942961201 -32.9133083422074))\n17354070\tIluka Views\tCheck with carrier\tPOLYGON ((147.01605408 -36.049058993500005, 147.015905056 -36.049842006, 147.016189088 -36.0498629665, 147.016049056 -36.050442035, 147.01953312 -36.0508989665, 147.019786912 -36.049545007, 147.01605408 -36.049058993500005))\nAYCA-1FM3ZL\tSouth East Thornlands\tUnder construction\tPOLYGON ((153.276578592126 -27.5720465858005, 153.273898 -27.5740229999819, 153.274677 -27.5748619999818, 153.274745 -27.5748109999818, 153.274888 -27.5744789999818, 153.27508 -27.5741039999818, 153.275218 -27.5739099999819, 153.275444 -27.5740049999819, 153.275579 -27.5737869999819, 153.276197 -27.5744519999818, 153.276431558054 -27.5742946292241, 153.276447 -27.5742679999818, 153.276531 -27.5743589999819, 153.276521584423 -27.5744448037272, 153.276589181919 -27.5745141087945, 153.276679 -27.5744489999818, 153.276872 -27.5746569999819, 153.277820600001 -27.5739575799916, 153.276578592126 -27.5720465858005))\nAYCA-HVMVD\tBraemar Homesteads\tUnder construction\tPOLYGON ((150.08859337385 -35.915706397652, 150.08847603923 -35.9163044112787, 150.088642463757 -35.9167997227479, 150.089347406553 -35.9171058538569, 150.089466474957 -35.9172051076155, 150.089644035411 -35.9172270251298, 150.089653693587 -35.9174862218427, 150.090443651455 -35.9181226744625, 150.0907028965 -35.9179122975009, 150.091088825953 -35.9179590386077, 150.091125254393 -35.9177900188069, 150.091466165358 -35.915915167563, 150.088631880653 -35.9155101395512, 150.08859337385 -35.915706397652))\nAYCA-ZURHM\tFrizzo Road, Palmview\tReady for service\tPOLYGON ((153.034471680316 -26.7503297059672, 153.034404932091 -26.750566678557, 153.034442 -26.7508039999749, 153.03452 -26.7511239999749, 153.034553 -26.7511939999749, 153.034609 -26.7512499999749, 153.034665 -26.7512889999749, 153.034658 -26.7513079999749, 153.034659 -26.7513529999749, 153.034678 -26.7513949999748, 153.034711 -26.7514279999748, 153.034751 -26.7514459999749, 153.034714 -26.7517149999749, 153.034721 -26.7518499999749, 153.034733 -26.7519849999749, 153.034733 -26.7520529999749, 153.034711 -26.7521169999749, 153.034621 -26.7522259999749, 153.03452088238 -26.7523593553481, 153.034483243108 -26.7526267544695, 153.035553 -26.7528499999749, 153.035603 -26.7528569999749, 153.035653 -26.7528559999749, 153.035701 -26.7528479999749, 153.03575 -26.7528319999749, 153.035793 -26.7528099999749, 153.035832 -26.7527809999749, 153.035865 -26.7527469999749, 153.036117 -26.7523829999749, 153.036222 -26.752228999975, 153.036288 -26.7521069999749, 153.036332 -26.7519779999749, 153.036355 -26.751843999975, 153.03637 -26.7514379999749, 153.036471 -26.7514239999749, 153.036621 -26.7514109999749, 153.036766 -26.7514429999749, 153.036894 -26.7515159999749, 153.037016623152 -26.7515940756849, 153.037110255786 -26.7514765877418, 153.037142537251 -26.7514848638979, 153.037183401406 -26.7514692435161, 153.037211444578 -26.751444011724, 153.037341394565 -26.7513759701569, 153.037486304003 -26.7513395039024, 153.037498949599 -26.7513367924073, 153.037338997745 -26.7509453465354, 153.03685886359 -26.7511011547723, 153.036942841386 -26.7507386161067, 153.036959030976 -26.7503966800557, 153.036372873667 -26.7502814647184, 153.035755411358 -26.7501151531791, 153.035808 -26.7503209999749, 153.035796 -26.7504109999749, 153.035799159738 -26.7504362377365, 153.034471680316 -26.7503297059672))\nAYCA-HB8MK\tRenwick\tReady for service\tPOLYGON ((150.472202450163 -34.4461002983266, 150.472177394122 -34.4461145435001, 150.472952788542 -34.4486525241459, 150.473527006779 -34.4485344692657, 150.473762706182 -34.4484275091981, 150.473908960943 -34.4483300266347, 150.47404216587 -34.4482182708854, 150.474124155825 -34.4481131389177, 150.474203600689 -34.4480486958381, 150.474461356313 -34.4475844903408, 150.474639159897 -34.4472685308402, 150.474799540745 -34.4469210682033, 150.475010288433 -34.4465075175135, 150.474535779231 -34.4464375517491, 150.474569342177 -34.4462777789551, 150.473761722647 -34.4461609363397, 150.473579322824 -34.4461581272083, 150.47342225674 -34.4461984483126, 150.473296042491 -34.4458590062984, 150.473328328061 -34.4458462993699, 150.473312084306 -34.4458122279256, 150.472781917257 -34.4459478901695, 150.472250685808 -34.4460851941248, 150.472202450163 -34.4461002983266))\n17351484\tBelle Eden Estate\tCheck with carrier\tPOLYGON ((152.393478112 -24.870535022000002, 152.394064928 -24.871746957, 152.394517088 -24.871550043, 152.39452896 -24.871976005500002, 152.394661088 -24.872271025, 152.394409088 -24.872354016, 152.394401152 -24.8725710025, 152.39459808 -24.8728740325, 152.396310976 -24.872166000500002, 152.395093088 -24.869705038, 152.393631136 -24.8702799625, 152.39348208 -24.8704260385, 152.393478112 -24.870535022000002))\nAYCA-EXVZY\tViewpoint, Huntly\tReady for service\tPOLYGON ((144.343671970779 -36.6615597123722, 144.343563011754 -36.6622864788912, 144.345689250427 -36.6624672823708, 144.345706854253 -36.6623328982817, 144.346062700129 -36.662363153629, 144.346078125333 -36.6622453960997, 144.346271376954 -36.6622788791744, 144.34626182103 -36.6623190228634, 144.346615572559 -36.6623485356683, 144.346461843622 -36.6635221581782, 144.347218029035 -36.6635864452156, 144.347253232069 -36.6633176764281, 144.34737555591 -36.663328075302, 144.347395503925 -36.6631757729454, 144.347284300647 -36.663166319456, 144.347322913053 -36.6628715162573, 144.347434115916 -36.662880969694, 144.347514856623 -36.6622645038324, 144.347848462807 -36.6622928631954, 144.347836729413 -36.6623824529013, 144.348025773266 -36.6623985228232, 144.34809377313 -36.6618793002211, 144.348130473439 -36.6618497369364, 144.348222483424 -36.661842261851, 144.348284011813 -36.6618474824625, 144.348263672075 -36.6616849815898, 144.348203786724 -36.6616898468462, 144.348173930283 -36.6616656814885, 144.348213939017 -36.6613601813393, 144.348024897635 -36.6613441118149, 144.348013164628 -36.6614337015674, 144.347331275957 -36.661489097117, 144.347343009734 -36.6613995074718, 144.347153968494 -36.6613834365815, 144.347138860927 -36.6614987837801, 144.346471656429 -36.6614420604362, 144.346484837751 -36.6613401556933, 144.346296088856 -36.6613231262202, 144.346258874501 -36.6613479543081, 144.345691533836 -36.6612995069571, 144.345666469692 -36.661451495408, 144.345757724491 -36.6614592257652, 144.345722593638 -36.6617363607341, 144.343888214332 -36.6615806842118, 144.343671970779 -36.6615597123722))\nAYCA-194B8B\tByford On The Scarp\tContracted\tPOLYGON ((116.011438 -32.2331850000137, 116.010863 -32.2329280000138, 116.010902 -32.2328380000138, 116.010803 -32.2328610000137, 116.010597 -32.2329290000137, 116.010553 -32.2330300000138, 116.009732 -32.2343620000138, 116.010047 -32.2345030000137, 116.009902 -32.2347310000137, 116.009894 -32.2348950000138, 116.009568 -32.2354010000138, 116.009449 -32.2355110000138, 116.009127 -32.2360180000137, 116.009022 -32.2362050000137, 116.009283 -32.2363670000138, 116.009491 -32.2365300000138, 116.009797 -32.2368830000137, 116.010025 -32.2368300000137, 116.010188 -32.2367800000138, 116.01058 -32.2366030000138, 116.010293 -32.2362020000138, 116.010595 -32.2359830000137, 116.010757 -32.2357360000137, 116.010846 -32.2355390000138, 116.010764 -32.2355120000138, 116.01102 -32.2349620000138, 116.011066 -32.2349650000137, 116.011175 -32.2349600000138, 116.011264 -32.2349370000138, 116.011352 -32.2348540000138, 116.011509 -32.2340980000138, 116.011423 -32.2339920000138, 116.011262 -32.2339670000137, 116.011218 -32.2339690000138, 116.011261 -32.2336130000137, 116.011343 -32.2333300000137, 116.011438 -32.2331850000137))\nAYAA-GYS6F\tKalynda Chase Estate\tReady for service\tPOLYGON ((146.694942977699 -19.3026909769079, 146.692201553517 -19.302532780453, 146.691770116139 -19.3029690327826, 146.691581017611 -19.3030332376373, 146.693361461385 -19.3046160836343, 146.693551118837 -19.304733404104, 146.694378872321 -19.30422453973, 146.69481075317 -19.3042552723139, 146.694942977699 -19.3026909769079))\nAYCA-EY6AL\tLucas\tReady for service\tPOLYGON ((143.781704521402 -37.5486971466072, 143.780765511784 -37.5485766956348, 143.780731367887 -37.5495363344806, 143.78087344897 -37.5495453818286, 143.780859839453 -37.5498376583004, 143.780757910502 -37.5498336384772, 143.780717960377 -37.5499974494959, 143.780759792608 -37.550047647302, 143.7809718206 -37.5500804923877, 143.78102492378 -37.5501395366868, 143.780993702995 -37.5503141501684, 143.781844504878 -37.5503998951128, 143.781879376031 -37.5504015396234, 143.781917498748 -37.5503569889043, 143.782180481277 -37.5501908987264, 143.783434794413 -37.5506057472857, 143.78329245583 -37.5509281416961, 143.783458567899 -37.5510284755773, 143.783658125543 -37.550961464877, 143.783841819902 -37.5505573968353, 143.783646878584 -37.5502408830395, 143.783446952953 -37.5501490791238, 143.783535762742 -37.5499821693898, 143.783509955475 -37.5486430293991, 143.783236258237 -37.548429322964, 143.782669194287 -37.5486797165119, 143.782253569705 -37.548726119944, 143.781704521402 -37.5486971466072), (143.781291126 -37.5495318428072, 143.781969175138 -37.5495599993264, 143.781960322761 -37.5496858136451, 143.781934475896 -37.5498025352325, 143.78188597062 -37.5498273224904, 143.781748613907 -37.5498181098036, 143.781607618191 -37.549809322746, 143.781354932337 -37.5497979644307, 143.781292257528 -37.5497438394427, 143.781285753405 -37.5496999882778, 143.781291126 -37.5495318428072))\nAYCA-1PWOJN\tERA Estate Capalaba\tContracted\tPOLYGON ((153.224509592182 -27.5506336349747, 153.225088 -27.5516729999816, 153.225213 -27.5516309999817, 153.225242 -27.5516839999816, 153.225311 -27.5516539999816, 153.225486 -27.5519699999817, 153.22532 -27.5520429999817, 153.225464 -27.5522759999817, 153.225431 -27.5523159999816, 153.225373 -27.5523819999816, 153.225168 -27.5526199999817, 153.225291 -27.5527079999816, 153.225746 -27.5527749999817, 153.225769 -27.5526349999817, 153.226084 -27.5526769999816, 153.226239 -27.5526359999817, 153.22674413839 -27.5527037974284, 153.227180483168 -27.5501192239127, 153.226533 -27.5497729999812, 153.224509592182 -27.5506336349747))\n10630\tStirling-Princeton\tReady for service\tPOLYGON ((115.818230509758 -31.898519899315282, 115.81975400447845 -31.897472401536778, 115.82000613212585 -31.897695565106154, 115.82103073596954 -31.896925876225058, 115.82132577896118 -31.89720824804122, 115.82083225250244 -31.897513390804374, 115.82200169563293 -31.898610985515337, 115.82045674324036 -31.899763218164633, 115.818230509758 -31.898519899315282))\nAYCA-DD3G0\tScenic Rise\tReady for service\tPOLYGON ((152.992137969487 -27.9578954762405, 152.992284784556 -27.9580333802633, 152.991878466377 -27.9584068631523, 152.9920817186 -27.9585708575124, 152.992142642454 -27.958514856376, 152.992299853257 -27.9586497020464, 152.992636382771 -27.958340366916, 152.993826744679 -27.9593641031223, 152.994422517592 -27.9588215661951, 152.994267489963 -27.9586775495793, 152.994401633051 -27.9585704392852, 152.994677139155 -27.9585988322277, 152.994785690426 -27.9580339390526, 152.994816278609 -27.9578699818397, 152.994919139758 -27.9573394700036, 152.994880235583 -27.9573371695169, 152.994571639957 -27.9574107847819, 152.994514598105 -27.9572727279122, 152.994524971288 -27.9572267135127, 152.994566464888 -27.9572037043597, 152.994888030274 -27.9570817723367, 152.995166721862 -27.9569813331173, 152.995236269902 -27.9569739297678, 152.995283559722 -27.9570010825103, 152.995308592791 -27.9570294687755, 152.995273809619 -27.9572429736062, 152.99529804104 -27.9573079500462, 152.995476873892 -27.9573314159839, 152.995657332652 -27.9562614507443, 152.995291913516 -27.9562188164457, 152.993642456837 -27.9568154683257, 152.993529610914 -27.9568891269211, 152.992877933885 -27.9574881575717, 152.992724378469 -27.9573564470867, 152.992137969487 -27.9578954762405), (152.993195746086 -27.957523827179, 152.993493468589 -27.9577681809126, 152.99335947281 -27.9579002492814, 152.993067814365 -27.9576558046957, 152.993195746086 -27.957523827179), (152.993115849581 -27.9583410226186, 152.993291069116 -27.9585029367849, 152.99305443852 -27.9586996754228, 152.992866016049 -27.9585370520752, 152.993115849581 -27.9583410226186), (152.993526956843 -27.9577945994649, 152.993934569677 -27.9581012319463, 152.993938536371 -27.958220971783, 152.993861126741 -27.958296685336, 152.993386764498 -27.9579266675682, 152.993526956843 -27.9577945994649))\n10382\tHalls Head-Port Mandurah\tReady for service\tMULTIPOLYGON (((115.71213145094555 -32.541260650738252, 115.7121317088604 -32.541260403180281, 115.71213103830814 -32.541260403180281, 115.71213145094555 -32.541260650738252)), ((115.71431837975979 -32.542160321938219, 115.71431837975979 -32.542158802767638, 115.71431569755077 -32.542159544688147, 115.71431632660163 -32.54215974009346, 115.71431837975979 -32.542160321938219)), ((115.71380406618118 -32.543816485218208, 115.71397304534912 -32.543452455531686, 115.71407496929169 -32.543237654713707, 115.71419835090637 -32.543027375520438, 115.71472138166428 -32.542264261408462, 115.71438476443291 -32.542181166369147, 115.71438007056713 -32.5421795412103, 115.71431632660163 -32.54215974009346, 115.71423958986998 -32.542137993661015, 115.71423925459385 -32.5421377110246, 115.71419298648834 -32.542117926470524, 115.71406038478017 -32.542060975194062, 115.71391571313143 -32.542002893334022, 115.71362771093845 -32.541890121148072, 115.713050365448 -32.541660054144, 115.71301281452179 -32.5416521402808, 115.71282237768173 -32.54167475131667, 115.71275264024734 -32.541649879176894, 115.71272917091846 -32.541482557330184, 115.71242406964302 -32.541436204601283, 115.71213145094555 -32.541260650738252, 115.71164488792419 -32.541727675250293, 115.71090795099735 -32.54250831731229, 115.71105949580669 -32.542619110277272, 115.71108028292656 -32.5426377641814, 115.71116711944342 -32.542636633641877, 115.71126736700535 -32.542718032451866, 115.71132838726044 -32.54276155817422, 115.71138001978397 -32.542788125812535, 115.71137666702271 -32.542796039575613, 115.71201503276825 -32.543048149091696, 115.71278817951679 -32.543361871828338, 115.71276605129242 -32.543406527768404, 115.71295112371445 -32.543476055327062, 115.71289949119091 -32.543571019710441, 115.71302354335785 -32.543621328182375, 115.71303427219391 -32.543611153437517, 115.7131589949131 -32.543679550311317, 115.71321196854115 -32.543696790837409, 115.7132850587368 -32.543727032407958, 115.71380406618118 -32.543816485218208)))\nAYCA-1FDUG2\tMarsden Heights\tReady for service\tPOLYGON ((149.601534226053 -33.3983704758768, 149.601578837431 -33.3983624916195, 149.601611448918 -33.3985267597699, 149.601580789083 -33.3985796881469, 149.601635104516 -33.3990448033766, 149.601654576952 -33.399048886744, 149.601923679572 -33.3990834785507, 149.601873235482 -33.3988125820514, 149.603908555545 -33.3984688937879, 149.604345790543 -33.3983941414683, 149.604631228125 -33.3983504894174, 149.604642709033 -33.398364761033, 149.604856090048 -33.3983299450593, 149.604852531011 -33.3983144469746, 149.605130869596 -33.3982665637091, 149.606298378676 -33.3980633148141, 149.607231337998 -33.3981910027694, 149.607384530096 -33.3973338848167, 149.606820323206 -33.3972972655724, 149.606798427332 -33.3972540353888, 149.606706419051 -33.3972473325756, 149.606690994373 -33.3972900748988, 149.60640718245 -33.3972811924882, 149.605713864087 -33.3973079950206, 149.605030384661 -33.3973650330841, 149.604358694133 -33.3974783968921, 149.603833563089 -33.3975839441711, 149.60149570452 -33.3980295465414, 149.601485536181 -33.3980308687185, 149.601534226053 -33.3983704758768))\nAYCA-1OAYNC\tNelson Street Subdivision\tContracted\tPOLYGON ((151.940039 -27.6162069999815, 151.940594015589 -27.6172865677546, 151.940723890587 -27.6165809857438, 151.9425430968 -27.6168272494636, 151.94266561055 -27.6161158063511, 151.942936313052 -27.6145443425334, 151.942736681756 -27.6145295636329, 151.942708430348 -27.6147620998244, 151.942099746238 -27.6147574602457, 151.941990767477 -27.6155696187859, 151.941809233622 -27.6158124079981, 151.941015330353 -27.6159911835405, 151.94097181933 -27.6158324243191, 151.941181599604 -27.6153923727152, 151.941224363604 -27.6146607291871, 151.941248212653 -27.6145936999511, 151.941302261562 -27.614536884403, 151.940195473573 -27.6140385197085, 151.9397043958 -27.6140035911637, 151.9396365136 -27.6144022643637, 151.939651414863 -27.614402105765, 151.939608667344 -27.6146590501648, 151.939955629092 -27.6147047202091, 151.939911 -27.6153599999815, 151.939888 -27.6155009999815, 151.940036 -27.6160259999815, 151.940039 -27.6162069999815))\nAYCA-1014V5\tMoree Gateway\tUnder construction\tPOLYGON ((149.850760017586 -29.492475671184, 149.850853374915 -29.4927673181878, 149.850996856719 -29.4930844262964, 149.851095149216 -29.4934268730583, 149.851127318857 -29.4936702556937, 149.851069456734 -29.4942226099477, 149.850562517216 -29.495667002155, 149.849969742007 -29.4973616984281, 149.851144533182 -29.4976421677979, 149.851062470661 -29.4969025388391, 149.852006755068 -29.4968223541935, 149.851633150226 -29.4923777184285, 149.850760017586 -29.492475671184))\nAYAA-FPT58\tBluestone Green\tReady for service\tPOLYGON ((144.607045054923 -37.88934150819, 144.606418641229 -37.8892730627151, 144.606261496572 -37.8903826518705, 144.606253448382 -37.8904394785835, 144.607214979414 -37.8905530097891, 144.607044143054 -37.8912573405194, 144.606965099986 -37.8913393600183, 144.606138347934 -37.8912521748445, 144.605993759986 -37.8922730400183, 144.60692410345 -37.8923819485417, 144.607468059187 -37.8924222068333, 144.608548367699 -37.8925371530915, 144.6086248422 -37.8921565375411, 144.608530563984 -37.8920640606308, 144.608585733567 -37.8917645630624, 144.608664467617 -37.8917736705018, 144.608841794302 -37.8908109939512, 144.608851151221 -37.890666416081, 144.608903691956 -37.8903811780207, 144.607278695081 -37.8901931755088, 144.607181299986 -37.8902264900183, 144.606812264023 -37.8901847274867, 144.606919001367 -37.8896053408462, 144.606990445993 -37.8896103206191, 144.607045054923 -37.88934150819))\n17332661\tColes Banksia Grove Shopping Centre\tCheck with carrier\tPOLYGON ((115.803839168 -31.7052610285, 115.801637024 -31.7052610285, 115.799762144 -31.7052600295, 115.799794912 -31.7053150115, 115.799745952 -31.705336971, 115.799828032 -31.7054729645, 115.799896064 -31.705575029000002, 115.800173984 -31.70595402, 115.80046704 -31.706301968, 115.800796064 -31.706648991, 115.80119603199999 -31.707017992, 115.801342912 -31.7071439955, 115.80145488 -31.7072390485, 115.801647104 -31.7073989625, 115.801773824 -31.707443973, 115.801957088 -31.707440014, 115.802120864 -31.707416963, 115.802223104 -31.707344961, 115.802313824 -31.707260009000002, 115.802712 -31.706783005000002, 115.80330816 -31.7060409515, 115.803587872 -31.705641999, 115.803790912 -31.7053520115, 115.803839168 -31.7052610285))\nAYCA-1AAFH9\tAvonlee Estate\tContracted\tPOLYGON ((115.975602 -31.8176660000115, 115.975146 -31.8176550000115, 115.97467 -31.8176450000115, 115.974676 -31.8178870000115, 115.974396 -31.8178850000116, 115.974393 -31.8181250000115, 115.975565 -31.8181340000116, 115.975663 -31.8182000000115, 115.975626 -31.8203390000116, 115.976834 -31.8203380000116, 115.976838 -31.8199730000115, 115.977564 -31.8199640000115, 115.977572325584 -31.8176686196908, 115.977245140726 -31.8176663573593, 115.977085995107 -31.8177031462185, 115.975852181223 -31.8176937983286, 115.975602 -31.8176660000115))\n10353\tMillbridge\tReady for service\tPOLYGON ((115.72965525090694 -33.302394501737766, 115.73090851306915 -33.302405150042468, 115.73113851249218 -33.302408722828623, 115.73117941617966 -33.302498953144159, 115.7312598824501 -33.302664281740945, 115.73137857019901 -33.302807753082817, 115.73143657296896 -33.30288565343912, 115.73149122297764 -33.3029529054893, 115.73162734508514 -33.303063310825912, 115.73176145553589 -33.303152980031975, 115.73181845247746 -33.303191649848642, 115.73190897703171 -33.303231440511667, 115.73203772306442 -33.303294208844591, 115.73206923902035 -33.303308780058273, 115.73213160037994 -33.303314384370573, 115.73234617710114 -33.303341285064647, 115.73247224092484 -33.303361460579737, 115.73253057897091 -33.303366504457792, 115.7327987998724 -33.303387800828538, 115.73287189006805 -33.303396207289239, 115.73294162750244 -33.303401811595933, 115.73294028639793 -33.303452250339923, 115.73263116180897 -33.303627664855775, 115.73252856731415 -33.303735827624209, 115.73221743106842 -33.304179685870238, 115.73198676109314 -33.304598883250584, 115.73194921016693 -33.304780460100069, 115.73177821934223 -33.304741790987883, 115.731241106987 -33.304695275946152, 115.73108486831188 -33.304683507076241, 115.73066476732492 -33.304683226865038, 115.73065370321274 -33.304693034256765, 115.73050081729889 -33.304728901280008, 115.73014944791794 -33.304731703390573, 115.73014877736568 -33.304692473834415, 115.72994459420443 -33.304692193623239, 115.729790199548 -33.304691493095284, 115.72973303496838 -33.304693594679115, 115.72971493005753 -33.303962240446111, 115.72967201471329 -33.303554248599738, 115.72965525090694 -33.302396743486241, 115.72965525090694 -33.302394501737766))\n10103\tBaldivis-The Ridge\tReady for service\tPOLYGON ((115.80986805260181 -32.351800987899573, 115.81033140420914 -32.351799288495407, 115.81075116991997 -32.351802439473929, 115.81134729087353 -32.351799607133692, 115.81296466290951 -32.351797341261452, 115.81317588686943 -32.351796774793378, 115.81319130957127 -32.351992772534523, 115.81319533288479 -32.352091904178288, 115.81318225711584 -32.352305744925552, 115.81319063901901 -32.352909311248013, 115.81332877278328 -32.352910444170213, 115.81332877278328 -32.353001077900657, 115.81318661570549 -32.352998812058509, 115.81318393349648 -32.353578865797225, 115.81318661570549 -32.354129460240564, 115.81318125128746 -32.354388329103365, 115.81318527460098 -32.3545695935115, 115.81296868622303 -32.354568743835429, 115.81294236704707 -32.354568814641773, 115.81294152885675 -32.354574549955061, 115.81260323524475 -32.3545695935115, 115.81260792911053 -32.3544138194327, 115.81260524690151 -32.354289199976485, 115.81272527575493 -32.3542903328814, 115.8127386868 -32.35415891581593, 115.81260457634926 -32.354147586749626, 115.81265553832054 -32.353950460768679, 115.81265285611153 -32.353558473346077, 115.81263944506645 -32.352860595579763, 115.81153772771358 -32.35285153219673, 115.8115367218852 -32.353114936395812, 115.8115404099226 -32.353230494124929, 115.81122860312462 -32.3532321935022, 115.81122927367687 -32.353189142601579, 115.81117630004883 -32.353189709060928, 115.81117529422045 -32.353211234513665, 115.81115299835801 -32.353210384824848, 115.81115283071995 -32.353229927665836, 115.81083834171295 -32.3532321935022, 115.8108376711607 -32.353186876764134, 115.8106767386198 -32.35318744322349, 115.81048596650362 -32.353187159993816, 115.81048563122749 -32.35317668049494, 115.81034380942583 -32.353176963724657, 115.81034414470196 -32.353189709060928, 115.80987207591534 -32.353188576142223, 115.80986738204956 -32.353026002160604, 115.80986704677343 -32.352983517622476, 115.80988951027393 -32.352984084083118, 115.80988632515073 -32.35284700050488, 115.80986972898245 -32.35284586758187, 115.80986713059247 -32.35271841365379, 115.80988196656108 -32.352718980116087, 115.80988272093236 -32.352553856205439, 115.80986872315407 -32.352555272363759, 115.8098672144115 -32.352442705410162, 115.80987643450499 -32.352444564120233, 115.80987609922886 -32.352363311901328, 115.80986570566893 -32.352364197002117, 115.80986604094505 -32.352337891802165, 115.80987945199013 -32.352338529074949, 115.8098828047514 -32.352257028932264, 115.80986738204956 -32.352256250042629, 115.80986738204956 -32.352236777799412, 115.8098965510726 -32.352236388354505, 115.80989755690098 -32.352105711791474, 115.80986570566893 -32.3521058888121, 115.80986872315407 -32.351949721043965, 115.80989219248295 -32.351948588109728, 115.80989353358746 -32.351826797596289, 115.80986738204956 -32.351826071809306, 115.80986805260181 -32.351800421431527, 115.80986805260181 -32.351800987899573))\nAYAA-J8QYX\tBrentwood Rise\tReady for service\tPOLYGON ((152.881989981245 -27.6510030333771, 152.881926820896 -27.6513104291188, 152.882563021291 -27.6514340861857, 152.883112967343 -27.6509069069894, 152.883575078212 -27.6512062949992, 152.883875987639 -27.6507000103854, 152.884425705542 -27.6503803669863, 152.884619608794 -27.6501518836597, 152.884674982321 -27.6501167525447, 152.884904190016 -27.6501380500174, 152.885399971896 -27.6496294335825, 152.885476566051 -27.6489429053522, 152.885266305835 -27.6484086408735, 152.884955378699 -27.6483764578423, 152.884756180803 -27.6485033398202, 152.88466141784 -27.648418843316, 152.884364262862 -27.6483848287146, 152.882871305511 -27.6490251431198, 152.882779967191 -27.6490802331356, 152.883019288663 -27.6494933915858, 152.882551812484 -27.6497323787105, 152.882576603321 -27.6498538139722, 152.882653145485 -27.6499568824534, 152.882783843982 -27.6500185290182, 152.882917601839 -27.6500320174894, 152.882855763935 -27.650140331052, 152.882768848602 -27.6502959809011, 152.8830554336 -27.6504033067846, 152.882902325368 -27.6506711473518, 152.882870608939 -27.6507924281884, 152.882719083167 -27.6510467499766, 152.88265417483 -27.6511221430205, 152.882330323606 -27.6510530240176, 152.881989981245 -27.6510030333771), (152.884382325593 -27.6495092411491, 152.884512208073 -27.6493732904579, 152.884732481267 -27.6495264042658, 152.884683950359 -27.649580267659, 152.884608011423 -27.6496458757503, 152.884538351395 -27.6496900585338, 152.884382325593 -27.6495092411491), (152.885265094454 -27.6484169962467, 152.885353774576 -27.6486393608713, 152.885029482524 -27.6487056899871, 152.885022914223 -27.6486852818329, 152.885020512695 -27.6486786989154, 152.885008155188 -27.6486448252878, 152.884988085529 -27.6485960935173, 152.884966764549 -27.648545032435, 152.885265094454 -27.6484169962467), (152.885029532725 -27.6487058609682, 152.885353875006 -27.6486394901099, 152.885439884936 -27.6488527173072, 152.885068941383 -27.6488782429382, 152.885064824096 -27.6488406840998, 152.885050309146 -27.6487772047181, 152.885029532725 -27.6487058609682), (152.885460967255 -27.6490802207415, 152.885068001668 -27.6490479351867, 152.885076997237 -27.6490251006174, 152.885079218133 -27.6489853719641, 152.885068960323 -27.648878440375, 152.885439979591 -27.6488529039307, 152.885476293354 -27.648942921539, 152.885460967255 -27.6490802207415))\nAYCA-MLELV\tLot 502 Jane Brook Drive\tReady for service\tPOLYGON ((116.056652970219 -31.8595792828707, 116.056626689051 -31.8596108001349, 116.056622429193 -31.8597506591864, 116.056585582187 -31.8597491762219, 116.056588473709 -31.8599969768433, 116.056627209565 -31.8599991315036, 116.056615906233 -31.8603460390647, 116.056578613527 -31.860385218282, 116.056616876422 -31.8604245995005, 116.056594313012 -31.8614735990257, 116.05663222687 -31.8615955176657, 116.056710153279 -31.8617056552049, 116.056910078661 -31.8618603476179, 116.056869879881 -31.8619598572394, 116.057355667062 -31.8620516202052, 116.058020133327 -31.862117870501, 116.058624546915 -31.8621083324369, 116.058612526473 -31.8620273343564, 116.05866696 -31.8595400100118, 116.056652970219 -31.8595792828707))\n10790\tBurns Beach\tReady for service\tPOLYGON ((115.7285964739358 -31.719263385089498, 115.72913291573877 -31.719774457429686, 115.72849991441126 -31.720221643415979, 115.72792055726404 -31.720376789070425, 115.72765770078058 -31.720627759432272, 115.72779181123133 -31.720728147386755, 115.72747531056757 -31.721006495237347, 115.72728755593653 -31.720823972150963, 115.72698714852686 -31.720769215154967, 115.72656335950251 -31.720846787556415, 115.72660091042871 -31.7209836798712, 115.72626295209284 -31.721029310597864, 115.72543683171625 -31.7212118332799, 115.72458388924952 -31.721380666440805, 115.72335007310267 -31.721759399169571, 115.72300425871299 -31.721795903447219, 115.72148076399253 -31.721476490530456, 115.72071365221427 -31.721220959404572, 115.72033494045024 -31.721054621144091, 115.72002380420452 -31.72122345459135, 115.71975558330303 -31.720862971993476, 115.72016327907329 -31.7207306425868, 115.72300125632069 -31.721383238046894, 115.72456802067757 -31.72092449928952, 115.72609133433275 -31.720647565757194, 115.72667069147997 -31.720392032346176, 115.7285964739358 -31.719263385089498))\nAYAA-HV1XO\tHighlands\tReady for service\tPOLYGON ((144.903520432181 -37.5688227233428, 144.904301949602 -37.5689134703629, 144.904250347869 -37.5692170686158, 144.904569328098 -37.5692539685178, 144.904706325977 -37.5692644731751, 144.905020131732 -37.5692953136948, 144.904995873316 -37.569409997303, 144.905777748415 -37.5694979279998, 144.90563586653 -37.5702060195261, 144.906131294868 -37.5702522712454, 144.906244906889 -37.5695254079931, 144.906257721355 -37.5695177716908, 144.906302006616 -37.5692725234553, 144.906340449864 -37.5692496145251, 144.906631755245 -37.5692829410936, 144.906841430756 -37.5681361759084, 144.906525035555 -37.5680997073344, 144.906528198555 -37.5680821901793, 144.906035275148 -37.5680257297276, 144.906044095829 -37.5679766831753, 144.904160641595 -37.5677697617354, 144.90417271509 -37.5676929562586, 144.904043434207 -37.5676752682071, 144.904049113908 -37.5676372244527, 144.904015148972 -37.567597664824, 144.90376357705 -37.567566694457, 144.903520432181 -37.5688227233428))\nAYCA-HDLQ8\tRenwick\tReady for service\tPOLYGON ((150.472312610919 -34.4501084045719, 150.472555285211 -34.4488139983439, 150.472299118099 -34.4480105150124, 150.471691288177 -34.4481646103244, 150.471720189096 -34.4482041074822, 150.471634311581 -34.4483617556402, 150.4714997747 -34.4483234294078, 150.471391382553 -34.4488403061759, 150.469189208961 -34.4485255185531, 150.468940399886 -34.4496521407329, 150.471929187658 -34.4500830652855, 150.472087006476 -34.4500895698788, 150.472312610919 -34.4501084045719))\nAYAA-F68I5\tAmbrosia Estate\tReady for service\tPOLYGON ((145.232253663761 -38.1152450696986, 145.231837615202 -38.1172745031783, 145.234046399718 -38.1175453155703, 145.234383716177 -38.1158936700983, 145.234481119097 -38.1154167707232, 145.23380769412 -38.115330266946, 145.233782834859 -38.1154411780718, 145.233265044534 -38.1153746632937, 145.233270399225 -38.1153486425424, 145.23255070438 -38.1152562314193, 145.232544518212 -38.1152826386739, 145.232253663761 -38.1152450696986))\nAYAA-FU6UI\tWindradyne Estate\tReady for service\tPOLYGON ((149.54050912388 -33.4000271122747, 149.540570625572 -33.4000478889312, 149.540761830118 -33.4000839564275, 149.541247122601 -33.4001586012688, 149.543083484597 -33.4010081296225, 149.543925228748 -33.4010792458498, 149.544066223879 -33.4004225097847, 149.544058319152 -33.4001884980377, 149.543630298876 -33.4002071923551, 149.543618063308 -33.4000261582765, 149.544043801997 -33.3999798921926, 149.544036453179 -33.3995908987022, 149.543780621414 -33.3993384576152, 149.54352116316 -33.3990849457997, 149.541095727878 -33.3992203572442, 149.5411156071 -33.3995190614441, 149.540638663721 -33.3995591379191, 149.54050912388 -33.4000271122747))\n17336882\tSage Apartments\tCheck with carrier\tPOLYGON ((153.367508896 -28.056345023000002, 153.36326304 -28.0530839725, 153.36291888 -28.053045992, 153.363004928 -28.053153995000002, 153.363015008 -28.053212048000002, 153.363020032 -28.053297, 153.362979008 -28.05333696, 153.366180128 -28.057068003, 153.367508896 -28.056345023000002))\nAYCA-IKR2K\tCalifornia Creek Estate\tReady for service\tPOLYGON ((153.204977135269 -27.6595933676148, 153.20259 -27.6566738399819, 153.20218248 -27.6589854899819, 153.203309954213 -27.6602433349745, 153.204286597482 -27.6596351957407, 153.204527158965 -27.6598842052207, 153.204977135269 -27.6595933676148))\nAYCA-1FZO3Y\tKingston Downs Estate\tContracted\tPOLYGON ((144.544847507348 -38.2495510895261, 144.544992358852 -38.2488578762233, 144.54460308117 -38.2488109305487, 144.544473947427 -38.24879049423, 144.544464659503 -38.2488349316184, 144.544126548438 -38.2487909833738, 144.543777178145 -38.2487455705626, 144.543630668168 -38.248726526175, 144.54320154143 -38.2486707441881, 144.542984001636 -38.2497196811172, 144.54263162147 -38.2514187195799, 144.542913449325 -38.2514550187027, 144.543595049442 -38.2512597405903, 144.544068474958 -38.2513306056304, 144.544126704536 -38.2512194982296, 144.544312270738 -38.2512436179643, 144.544375431624 -38.2509414439823, 144.544578384776 -38.2509678232747, 144.544665655875 -38.2505498888645, 144.544675064905 -38.2505511345476, 144.544738224291 -38.2502489566848, 144.544815986803 -38.25025906391, 144.544871374035 -38.2499923952242, 144.544757909668 -38.2499776476276, 144.544847507348 -38.2495510895261))\nAYAA-GE42C\tThe Ponds\tReady for service\tPOLYGON ((150.902785947618 -33.7034999554244, 150.901719220919 -33.7065266950723, 150.903452467923 -33.7068813296491, 150.904082395599 -33.7050828834006, 150.903295599076 -33.7050193843887, 150.903802087784 -33.7034999965666, 150.902785947618 -33.7034999554244))\nAYCA-IJB9S\tSmirk Road\tReady for service\tPOLYGON ((115.813480632542 -32.348562702253, 115.813352474106 -32.3486078213285, 115.813347518546 -32.3487418202866, 115.813158182188 -32.3486821460918, 115.810278580127 -32.3490393773429, 115.810224999999 -32.3497640000137, 115.810822999999 -32.3496910000138, 115.811002999999 -32.3496740000138, 115.811177999999 -32.3496700000138, 115.811155999999 -32.3499620000137, 115.81138827785 -32.3499874577853, 115.81138196365 -32.3500860928693, 115.811426279549 -32.3501083100017, 115.811426071107 -32.3503732039357, 115.811798389046 -32.3503794628857, 115.812231953495 -32.350394648261, 115.812172799828 -32.3506429928229, 115.812121374034 -32.350673628963, 115.811946114192 -32.3506595309375, 115.811933872097 -32.3507899773949, 115.812142023832 -32.3508022375301, 115.812192234158 -32.3508479216047, 115.812192682883 -32.3509940589381, 115.812362939535 -32.3509984414366, 115.812362542234 -32.3508666339038, 115.812413619308 -32.3508228853985, 115.812921851233 -32.350821867793, 115.812942854913 -32.3508270851449, 115.812937947828 -32.3509737110694, 115.8131797613 -32.3509640371284, 115.813180717846 -32.350767913569, 115.813531473895 -32.3507689244377, 115.813683999999 -32.3499660000136, 115.813574999999 -32.3497850000136, 115.813375913188 -32.3497843235934, 115.813379378353 -32.3495131691073, 115.81369654275 -32.3495142844513, 115.813696146386 -32.3493524115554, 115.813589994378 -32.3493521147169, 115.813589238137 -32.349005099644, 115.813637415824 -32.3487885054218, 115.813480632542 -32.348562702253), (115.812371738849 -32.3504673154424, 115.812684251842 -32.3505203709789, 115.812647068107 -32.3506781896818, 115.812393243233 -32.3506784466753, 115.812335953108 -32.3506191984904, 115.812371738849 -32.3504673154424))\nAYCA-N65SV\tWilliams Landing\tReady for service\tPOLYGON ((144.748331797565 -37.8621307656859, 144.748334330111 -37.8624379114175, 144.751686997453 -37.862414041691, 144.752358072797 -37.8622501656277, 144.75242925097 -37.8622800184108, 144.752462775157 -37.8623662998297, 144.75269349797 -37.8623099571703, 144.752659973007 -37.8622236741422, 144.75269762737 -37.8621672445425, 144.756480086837 -37.8612667500613, 144.75557854248 -37.8587058643731, 144.754748426257 -37.8589001867106, 144.755437127331 -37.8608672638951, 144.754581114978 -37.8610574940324, 144.754633993996 -37.8611943054339, 144.752979519025 -37.8615986656981, 144.752872455155 -37.8613230969996, 144.752715181363 -37.8613614403353, 144.752953553177 -37.861906584758, 144.752590631059 -37.8619952144316, 144.752546816841 -37.8619847167158, 144.752535166051 -37.8619730985131, 144.752479794772 -37.8619882660371, 144.752349298283 -37.8620232371309, 144.752328391549 -37.8620598515478, 144.751917628176 -37.8621600353593, 144.748331797565 -37.8621307656859))\nAYCA-DUTWB\tLittle Creek\tReady for service\tPOLYGON ((151.215576601543 -23.8967502294119, 151.216828773517 -23.8957601730308, 151.217403444738 -23.8955839232051, 151.218477397009 -23.8955225744606, 151.218479552185 -23.895365307229, 151.218509059066 -23.895241755177, 151.218371885012 -23.8948921232531, 151.217393587061 -23.8938467779883, 151.217352817955 -23.8938667157554, 151.217089516311 -23.893716435604, 151.217097873051 -23.8937030225882, 151.216981034028 -23.8935891224916, 151.216632697367 -23.8933360257276, 151.216572539183 -23.8933942404988, 151.216020335499 -23.893612506564, 151.215576601543 -23.8967502294119))\nAYAA-F5EGE\tNewhaven\tReady for service\tPOLYGON ((115.929958985321 -32.1272630354977, 115.928596149403 -32.1283668502093, 115.928247832573 -32.1283393997641, 115.928173552435 -32.1296096162448, 115.928237341385 -32.12969356534, 115.928378080707 -32.1297033137444, 115.929323124465 -32.1297487938448, 115.929890952645 -32.129974242602, 115.931516311349 -32.1286482618815, 115.929958985321 -32.1272630354977), (115.929829 -32.1285630000132, 115.930203168696 -32.1288837386162, 115.929841830763 -32.1291914330032, 115.929674749035 -32.12918622374, 115.929611037711 -32.1291284977871, 115.929604360453 -32.1290982599076, 115.929612843797 -32.1290136920437, 115.929624352281 -32.1287818242318, 115.929652416541 -32.1287286225545, 115.929829 -32.1285630000132))\n17328401\tJOHNSTON STREET\tCheck with carrier\tPOLYGON ((150.910704736 -31.072084746, 150.910673056 -31.0720555715, 150.910562528 -31.071956393, 150.910449856 -31.071855235, 150.9103368 -31.071753984500003, 150.910224128 -31.0716528265, 150.910111456 -31.0715516685, 150.909998752 -31.0714505105, 150.909885728 -31.0713493525, 150.909773056 -31.071248102000002, 150.909660352 -31.071146944000002, 150.909628672 -31.071122191, 150.909549856 -31.0710477655, 150.909439328 -31.070948587, 150.909178336 -31.070714488, 150.909067808 -31.070615309500003, 150.908806816 -31.070381229000002, 150.908883136 -31.0703184955, 150.908702048 -31.070293465000002, 150.908463712 -31.070264845500002, 150.908248448 -31.0714061475, 150.908209216 -31.071615382500003, 150.908167072 -31.071837956, 150.908126752 -31.0720516125, 150.908091488 -31.072238555000002, 150.908056576 -31.072425571500002, 150.908017696 -31.072630311, 150.907943872 -31.0730222705, 150.909228 -31.073200925000002, 150.90957072 -31.073248803000002, 150.909649568 -31.072839657, 150.910540576 -31.072964754, 150.91057872 -31.072760014500002, 150.910616896 -31.072555164, 150.910649632 -31.0723795805, 150.910704736 -31.072084746))\nAYAA-HGK4T\tBrookhaven Rise Estate\tReady for service\tPOLYGON ((144.69416767765 -37.5631410356327, 144.694356751893 -37.5635274161156, 144.694545828003 -37.5639137963386, 144.695164940537 -37.5648124497813, 144.695784067562 -37.5657111003438, 144.696215564605 -37.5654645410643, 144.696319124899 -37.5655492630894, 144.696517710941 -37.5654019789043, 144.696438936217 -37.565334678058, 144.696788149347 -37.5651319232181, 144.696580151321 -37.5646090628612, 144.69655943243 -37.5645482151868, 144.697217487942 -37.564378026183, 144.697018335531 -37.5640889684609, 144.696890020709 -37.5639908635472, 144.696726756677 -37.5637538930177, 144.696563493653 -37.5635169222876, 144.696451619738 -37.5633882445831, 144.696366016144 -37.563183450267, 144.69626361024 -37.5629677836353, 144.696164080878 -37.5629977367992, 144.696104051443 -37.5628713366333, 144.695979608371 -37.5626093001055, 144.695200664795 -37.562844627632, 144.695160509351 -37.5627603996582, 144.694821511984 -37.5628624147109, 144.694662702847 -37.5629102049763, 144.694696981702 -37.562981754736, 144.69416767765 -37.5631410356327))\n10238\tDalyellup\tReady for service\tPOLYGON ((115.61841130256653 -33.400497208697317, 115.61830401420593 -33.400492730249894, 115.61813235282898 -33.400739044515177, 115.61803579330444 -33.400945052273578, 115.61797142028809 -33.40111523222734, 115.61794996261597 -33.401204800490177, 115.61799287796021 -33.401285411847788, 115.6181001663208 -33.401316760688893, 115.61830401420593 -33.401352587922013, 115.61894237995148 -33.401437677541452, 115.61909794807434 -33.401451112736915, 115.61967194080353 -33.4015988997498, 115.61982750892639 -33.4015988997498, 115.61994016170502 -33.401666075581652, 115.62006890773773 -33.401692945899846, 115.620476603508 -33.401791470328817, 115.62114179134369 -33.402010910700895, 115.62140464782715 -33.402109434769308, 115.62156558036804 -33.402181088567083, 115.6216835975647 -33.402194523647587, 115.62178552150726 -33.402243785591651, 115.62196254730225 -33.402315439278624, 115.62225222587585 -33.402413963001727, 115.62260091304779 -33.40250800826955, 115.62270820140839 -33.402257220662456, 115.62262237071991 -33.402230350518771, 115.62314808368683 -33.401289890254361, 115.62348604202271 -33.40141976394429, 115.62359869480133 -33.401204800490177, 115.62357723712921 -33.401119710642668, 115.62300860881805 -33.40092266014959, 115.62274575233459 -33.400837570025779, 115.62218248844147 -33.400636040452824, 115.62132954597473 -33.400335529601669, 115.62122493982315 -33.400375835693048, 115.62088698148727 -33.4011080597648, 115.62080651521683 -33.401271521788473, 115.62068849802017 -33.40123569452193, 115.620296895504 -33.401121495011225, 115.61953246593475 -33.400944597433615, 115.61935007572174 -33.4009065308192, 115.61913549900055 -33.400855028902548, 115.6189826130867 -33.400801287739604, 115.61880558729172 -33.400720675932845, 115.61863124370575 -33.400631107170952, 115.61849176883698 -33.400550495206325, 115.61841130256653 -33.400497208697317))\n92\tEast Village\tReady for service\tPOLYGON ((153.09624206692058 -27.466723234947729, 153.09453618198819 -27.466294857990043, 153.09406143099329 -27.469041201384208, 153.09425991445602 -27.469036441749353, 153.0944691267587 -27.469060239920797, 153.09463542371955 -27.469126874774112, 153.09482317835133 -27.469145913295893, 153.09587728649697 -27.469274423234072, 153.09613209634927 -27.469222067351716, 153.09619110494651 -27.469160192185662, 153.09615891843566 -27.468950768289158, 153.09619646936204 -27.468765142230627, 153.09623938471282 -27.468646151002634, 153.09632521539652 -27.467908402522635, 153.09643518597684 -27.467132571373448, 153.09615623623688 -27.467075454754063, 153.09624206692058 -27.466723234947729))\nAYCA-1VDJU8\tCutters Ridge Estate\tContracted\tPOLYGON ((153.03225402 -26.6277088799738, 153.032504122193 -26.6285174231475, 153.032845277964 -26.6290441645723, 153.03414559811 -26.6296128415985, 153.03534373588 -26.6300597259119, 153.03573792 -26.6294279699739, 153.03579498 -26.6291630099738, 153.03578796 -26.6287799699738, 153.03574692 -26.6286860099738, 153.03544092 -26.6288079599739, 153.03540096 -26.6287210199738, 153.035181 -26.6288069699738, 153.03510792 -26.6286470399738, 153.034902 -26.6287329899739, 153.03460806 -26.6288429699738, 153.03458898 -26.6288020199739, 153.03488346 -26.6286879899738, 153.0347211 -26.6283073799738, 153.03464838 -26.6283357299738, 153.03436974 -26.6276590199738, 153.03445704 -26.6274900899738, 153.03438324 -26.6272249499738, 153.03225402 -26.6277088799738))\nON-N-HBUSH-C_Park\tCentenary Park\tReady for service\tPOLYGON ((151.06499433517456 -33.863457998887348, 151.06526255607605 -33.863101642929323, 151.06428623199463 -33.862460198456915, 151.06304168701172 -33.862335472583247, 151.06226921081543 -33.86051801775497, 151.06115341186523 -33.860259650937991, 151.06077790260315 -33.861328749933044, 151.06120705604553 -33.862299836585876, 151.06221556663513 -33.862772012343989, 151.06499433517456 -33.863457998887348))\n17350455\tDiamond Hill Estate\tCheck with carrier\tPOLYGON ((144.185662816 -37.075002745, 144.185452192 -37.074907988, 144.185241248 -37.074813212500004, 144.185030624 -37.074718437, 144.18481968 -37.0746236615, 144.184742272 -37.0745888445, 144.184508992 -37.0744839865, 144.184051808 -37.0751395525, 144.183801248 -37.075135945, 144.183533408 -37.075132078500005, 144.182886112 -37.076275175, 144.184586752 -37.0768855455, 144.184721056 -37.076933701, 144.18483408 -37.07697429, 144.185259232 -37.077126933500004, 144.18580752 -37.076343218, 144.186467776 -37.075399644, 144.186545152 -37.075285351, 144.186191296 -37.0751266765, 144.186034304 -37.075056395000004, 144.185974208 -37.0751426975, 144.185662816 -37.075002745))\n10144\tBanksia Grove\tReady for service\tPOLYGON ((115.79452514648437 -31.690188411450773, 115.79442590475082 -31.6909643883538, 115.79436421394348 -31.691854471517491, 115.79645499587059 -31.691876152923946, 115.79645499587059 -31.692023358128534, 115.79681441187859 -31.692026781502598, 115.79681307077408 -31.691880717429925, 115.79753994941711 -31.69189098756754, 115.79753994941711 -31.691507568325346, 115.79800933599472 -31.69150985058743, 115.79801604151726 -31.691186909945074, 115.79717315733433 -31.691178921999754, 115.79717382788658 -31.69114468794055, 115.79709067940712 -31.691145829076067, 115.79682379961014 -31.691235978736987, 115.79662799835205 -31.690921025109784, 115.79679295420647 -31.690841145396735, 115.79693645238876 -31.690704208585814, 115.7962229847908 -31.690245468796995, 115.79623907804489 -31.689768468303381, 115.79469680786133 -31.689649788373849, 115.79452514648437 -31.690188411450773))\nAYCA-H2A18\tWonthaggi Heartlands\tReady for service\tPOLYGON ((145.584599039998 -38.6046202500285, 145.584415221068 -38.6035377580643, 145.581137697621 -38.6039220443493, 145.578900961146 -38.6037498163608, 145.578946906642 -38.6043160312285, 145.579547159998 -38.6045453700285, 145.580198759998 -38.6047200600285, 145.580999039998 -38.6048432700285, 145.581691679998 -38.6048803500285, 145.584599039998 -38.6046202500285))\n10057\tAustralind-Treendale\tReady for service\tPOLYGON ((115.7360315322876 -33.285889047832221, 115.73559165000916 -33.285785907829577, 115.7355272769928 -33.285978734691966, 115.73550045490265 -33.286310575271592, 115.73549509048462 -33.286750037880971, 115.73561310768127 -33.287238825326526, 115.73570430278778 -33.287525818514325, 115.73577404022217 -33.287978727718773, 115.7361763715744 -33.28794285380809, 115.73611736297607 -33.287579629631949, 115.7368791103363 -33.287530302775387, 115.7376354932785 -33.287539271296843, 115.7376354932785 -33.28769173602047, 115.73856353759766 -33.287682767514681, 115.73856353759766 -33.286072905795493, 115.7376354932785 -33.286072905795493, 115.73763012886047 -33.285978734691966, 115.73623538017273 -33.285974250351167, 115.73601007461548 -33.28594734430154, 115.7360315322876 -33.285889047832221))\nAYCA-1B6PNJ\tHighfields North Estate\tUnder construction\tPOLYGON ((151.940037706812 -27.438383064857, 151.940855018566 -27.438486715721, 151.940919545719 -27.4380968877894, 151.940871 -27.4379269999807, 151.940935 -27.4375389999806, 151.942769 -27.4377899999806, 151.942805573698 -27.4375819998522, 151.94376642212 -27.4377291858053, 151.943893 -27.4369699999806, 151.941314 -27.4366269999806, 151.941385 -27.4362129999807, 151.940168529266 -27.4360028469143, 151.940165 -27.4360239999801, 151.939919506278 -27.4359902490565, 151.940037706812 -27.438383064857))\nAYCA-1FU57R\tSeascapes\tContracted\tPOLYGON ((115.675273969223 -32.5600200911635, 115.675382260203 -32.5600635845388, 115.675633388042 -32.5599959950662, 115.676108914425 -32.5591906581768, 115.676177895559 -32.5590956751976, 115.676464955383 -32.5588066787433, 115.676432999999 -32.5587830000152, 115.676237999999 -32.5585920000152, 115.676304999999 -32.5585430000152, 115.676508572579 -32.5583990993456, 115.676533501497 -32.5583763205576, 115.676558181773 -32.558357201316, 115.6767613238 -32.5582249013168, 115.676811414328 -32.5581845147448, 115.676741999999 -32.5581270000152, 115.676676999999 -32.5580680000152, 115.676651999999 -32.5580130000152, 115.676620999999 -32.5579610000152, 115.676583999999 -32.5579110000152, 115.676542999999 -32.5578640000152, 115.676495999999 -32.5578210000152, 115.676444999999 -32.5577820000152, 115.676388999999 -32.5577460000152, 115.676329999999 -32.5577160000153, 115.676224999999 -32.5577140000152, 115.676230999999 -32.5573710000153, 115.676145999999 -32.5573700000152, 115.676149999999 -32.5571000000152, 115.675710999999 -32.5570950000152, 115.675625999999 -32.5571070000153, 115.675536999999 -32.5571490000152, 115.675319999999 -32.5572950000152, 115.675098999999 -32.5575110000151, 115.674894107291 -32.5574571315169, 115.674514200006 -32.5578374100082, 115.674019199999 -32.5594633500148, 115.673993263235 -32.5595057055122, 115.675273969223 -32.5600200911635))\n10091\tBaldivis-Rivergums\tReady for service\tPOLYGON ((115.82648634910583 -32.3288040654175, 115.82758605480194 -32.330018873444978, 115.82558512687683 -32.331301656763465, 115.82533299922943 -32.331029690087135, 115.82516670227051 -32.331115812956391, 115.82502722740173 -32.331088616269682, 115.82497358322144 -32.331129411296672, 115.8246248960495 -32.330744124197622, 115.82449078559875 -32.330707861797983, 115.82431375980377 -32.330816648953309, 115.82380682229996 -32.33029764239047, 115.823814868927 -32.330209252329965, 115.82513988018036 -32.329443201523773, 115.8255797624588 -32.329089637426883, 115.82648634910583 -32.3288040654175))\n17325301\tChapple Street Business Park\tCheck with carrier\tPOLYGON ((151.245870112 -23.842427048, 151.243918912 -23.842158021, 151.243529056 -23.8421050185, 151.243206112 -23.844089976, 151.243192096 -23.8441789795, 151.24317696 -23.844268982, 151.245543968 -23.844439977500002, 151.24556304 -23.844321004, 151.245582112 -23.844203011, 151.245640096 -23.843843001, 151.245699136 -23.8434840085, 151.245727936 -23.8433030045, 151.245785152 -23.8429510235, 151.24584096 -23.842605961500002, 151.245870112 -23.842427048))\nAYCA-ZFMAE\tYanchep Golf Estate\tReady for service\tPOLYGON ((115.6544456324 -31.5455487881747, 115.654869913703 -31.5453027559652, 115.65487510962 -31.5452670985373, 115.654700769481 -31.5450976291786, 115.654746397498 -31.5450484866334, 115.65579061242 -31.5444429090833, 115.655905652837 -31.544348722193, 115.655803449183 -31.544212273497, 115.655830926625 -31.5441954243315, 115.656072730957 -31.5440616617944, 115.656792841647 -31.5450141051055, 115.656913260706 -31.5449496209477, 115.657174894253 -31.5452985006589, 115.657844760156 -31.5449604419951, 115.657930209282 -31.5448274743113, 115.657789662174 -31.5446428129514, 115.657797323136 -31.5446026218884, 115.657886973609 -31.5445443337915, 115.658074624504 -31.5444240196329, 115.657985009328 -31.544320888286, 115.657848244443 -31.5444053281278, 115.657803025059 -31.5443986058207, 115.657031717949 -31.5433873350683, 115.657006112609 -31.5433580750124, 115.656319535224 -31.542996253394, 115.654331910644 -31.5440728606958, 115.653786273817 -31.5449090839626, 115.6544456324 -31.5455487881747))\n10194\tCanningvale-Sanctuary Waters\tReady for service\tPOLYGON ((115.92701017856598 -32.09340096992868, 115.92756673693657 -32.093629373529339, 115.92806428670883 -32.093898678144924, 115.92828657478094 -32.094039845283504, 115.92847533524036 -32.094188965263406, 115.92867348343134 -32.094339789224058, 115.9288515150547 -32.094495725599536, 115.92906810343266 -32.094695119265666, 115.9287341684103 -32.094787715036716, 115.92856996692717 -32.094944431745191, 115.92856229748577 -32.09495007695012, 115.92844801023602 -32.095067063979783, 115.92815916985273 -32.095348684342433, 115.9278723411262 -32.095625191236593, 115.92756271362305 -32.095932372798671, 115.9273387491703 -32.095677311343231, 115.9271228313446 -32.09583466559922, 115.92710271477699 -32.095909650203488, 115.92701755464077 -32.095952255064837, 115.92691529542208 -32.095828700912158, 115.92675134539604 -32.095697761731174, 115.92657096683979 -32.095596929912936, 115.92638052999973 -32.0955114358052, 115.92642076313496 -32.095446108027751, 115.92591181397438 -32.095233650411139, 115.92575624585152 -32.095172298921895, 115.92553965747356 -32.095050163890072, 115.92533379793167 -32.094900761280279, 115.92594869434834 -32.094359387799535, 115.92661589384079 -32.093777677566813, 115.92682275921106 -32.09359756109253, 115.92700950801373 -32.093399265687005, 115.92701017856598 -32.09340096992868))\n17319264\tPeregian Springs\tCheck with carrier\tPOLYGON ((153.070047008 -26.5011980415, 153.069726976 -26.5010519655, 153.069593056 -26.5009899535, 153.069458048 -26.500929033000002, 153.069324128 -26.500868001500002, 153.069279136 -26.500847041, 153.069192 -26.500812039, 153.069140896 -26.500790967500002, 153.069092992 -26.5007930395, 153.06894288 -26.5008009575, 153.068721856 -26.500811040000002, 153.068550112 -26.500734006000002, 153.068190112 -26.5007520065, 153.06819408 -26.5008130195, 153.067911136 -26.500790967500002, 153.067709152 -26.500775039, 153.067557952 -26.500902023000002, 153.067362112 -26.501067006, 153.067212 -26.501192991, 153.06705792 -26.5013229535, 153.066852 -26.5013360145, 153.066594976 -26.5015510215, 153.068430976 -26.503319973, 153.070047008 -26.5011980415))\nAYCA-15LCBW\tLouisiana Road\tUnder construction\tPOLYGON ((151.471524999999 -33.2607460000182, 151.471405999999 -33.2613300000181, 151.471398999999 -33.2614060000181, 151.471429999999 -33.2616530000181, 151.471093999999 -33.2617490000181, 151.471176999999 -33.2619370000181, 151.471227999999 -33.2619580000182, 151.471554999999 -33.2627350000181, 151.471572999999 -33.2629160000182, 151.471392999999 -33.2638040000182, 151.471467999999 -33.2638150000181, 151.472456999999 -33.2638640000181, 151.472703999999 -33.2637840000181, 151.473053999999 -33.2636700000181, 151.473082999999 -33.2635230000181, 151.472765999999 -33.2634780000181, 151.472836999999 -33.2631300000181, 151.473255999999 -33.2610590000181, 151.473576999999 -33.2611030000181, 151.473588999999 -33.2610420000182, 151.473120999999 -33.2609750000181, 151.473136999999 -33.2608930000182, 151.472978999999 -33.2608700000181, 151.472961999999 -33.2609520000181, 151.471524999999 -33.2607460000182))\nAYAA-F3PM8\tWarralily - Armstrong Creek\tReady for service\tPOLYGON ((144.372427115256 -38.2365722474205, 144.372796114683 -38.2365768616074, 144.37317020211 -38.2365550944462, 144.373305324104 -38.2365714059007, 144.373342981358 -38.2365759240241, 144.373350273913 -38.2365767989845, 144.373356431985 -38.2365448695879, 144.37373035456 -38.2365225296078, 144.37395712004 -38.2364743488221, 144.374117473376 -38.236440215342, 144.374258477139 -38.2364571319537, 144.374286838906 -38.236460534572, 144.374297967358 -38.2364618696729, 144.374310068148 -38.2363991231167, 144.374592134893 -38.2363390067016, 144.374695528858 -38.2363169703209, 144.374712855057 -38.2363139178602, 144.374819990101 -38.2362790077706, 144.375026015841 -38.2362131105331, 144.375192702518 -38.2361597955186, 144.375399777294 -38.2360938538655, 144.375684022991 -38.2366466500151, 144.375603697876 -38.2368300531251, 144.375936149708 -38.2370471732692, 144.376083344364 -38.2371341532152, 144.376233194453 -38.2372225198191, 144.37637872241 -38.237308337282, 144.376440113687 -38.2372332696473, 144.376760987159 -38.2373779678631, 144.376788445925 -38.2373899688379, 144.376971773676 -38.2374738125823, 144.377012468087 -38.2374945757358, 144.377020723478 -38.2374856224247, 144.377135324863 -38.2373466756304, 144.377210008729 -38.2371985442653, 144.377268954969 -38.2371372983327, 144.377340585416 -38.2370784624091, 144.377411891158 -38.2370317936017, 144.377773450499 -38.2368395139832, 144.377857145335 -38.2368403243803, 144.377760573385 -38.2367642867461, 144.377679159265 -38.2366602457808, 144.377657442206 -38.2366324929972, 144.377564777744 -38.2365140744469, 144.377306540251 -38.2366538754413, 144.377015319696 -38.2368099687121, 144.376903039666 -38.2366960131999, 144.376580977022 -38.236320832503, 144.376273580103 -38.2359293499487, 144.375964743294 -38.2355312369214, 144.375805277431 -38.2353432006551, 144.375600971179 -38.2350833001992, 144.375127100464 -38.2352914588577, 144.374669667448 -38.2354440917892, 144.37449806614 -38.2355024767125, 144.374492290887 -38.2355036919579, 144.374458274239 -38.2355108498309, 144.374322413583 -38.235542679671, 144.373989424026 -38.235617983709, 144.373819534966 -38.2356563656518, 144.373808139526 -38.2356577343828, 144.373644538963 -38.2356773846746, 144.373279081294 -38.2357212128218, 144.373104744074 -38.2357421200936, 144.373033318918 -38.2357506856275, 144.372893527173 -38.2357552306124, 144.372717115894 -38.2357610592025, 144.372581995167 -38.2357653587063, 144.372523671616 -38.2360716357368, 144.372480268045 -38.2362965948798, 144.372427115256 -38.2365722474205))\n17324013\tGrassy Flat Road Diamond Creek\tCheck with carrier\tPOLYGON ((145.155772096 -37.6597870235, 145.155735008 -37.659771983, 145.155642848 -37.659768024, 145.155711968 -37.659778014000004, 145.15289712 -37.660533036000004, 145.152672128 -37.660507025, 145.152574016 -37.661122372, 145.152030976 -37.6615700165, 145.152187104 -37.6616931525, 145.1530752 -37.661790592, 145.153928096 -37.661665310000004, 145.155381856 -37.6618539545, 145.155467168 -37.661401981000004, 145.155732832 -37.6597809925, 145.155772096 -37.6597870235))\n10268\tDalyellup\tReady for service\tPOLYGON ((115.61404466629028 -33.4037614806216, 115.61432361602783 -33.403826415643621, 115.61459988355637 -33.403886872344643, 115.61451405286789 -33.403924937653329, 115.61443895101547 -33.404191394347151, 115.61480909585953 -33.40426528555448, 115.6148037314415 -33.404294394194679, 115.61564326286316 -33.404383959180208, 115.61563789844513 -33.404424263393587, 115.615793466568 -33.404462328466821, 115.61646670103073 -33.404596675650815, 115.61734110116959 -33.404771326679416, 115.61737060546875 -33.40453621944372, 115.61756104230881 -33.40454965416005, 115.61761736869812 -33.404484719678571, 115.61789900064468 -33.404525023845196, 115.61785072088242 -33.405111671264869, 115.61783999204636 -33.405254973849331, 115.61777830123901 -33.405924462479312, 115.61754494905472 -33.405850572683136, 115.61713725328445 -33.405852811768789, 115.61665713787079 -33.405884158961918, 115.61634868383408 -33.40590654980722, 115.61582297086716 -33.405975961391, 115.61574250459671 -33.4059222233955, 115.61569422483444 -33.405552773776648, 115.61571031808853 -33.405366928828968, 115.61572909355164 -33.405183322586645, 115.61555743217468 -33.40518108348374, 115.61556547880173 -33.405066889158739, 115.61495661735535 -33.405066889158739, 115.61433970928192 -33.40516764886506, 115.61432898044586 -33.40481386982551, 115.61423510313034 -33.404775804906308, 115.61413317918777 -33.404809391600587, 115.61403661966324 -33.405028824350396, 115.61393469572067 -33.4052325828361, 115.61388105154037 -33.405384841612324, 115.61336606740952 -33.40535349423903, 115.61336606740952 -33.405198996305415, 115.61343312263489 -33.405087041109361, 115.61392396688461 -33.404104068293826, 115.61398297548294 -33.403931655059012, 115.61404466629028 -33.4037614806216))\n10516\tMadora Bay\tReady for service\tPOLYGON ((115.75327277183533 -32.482489893520842, 115.75364828109741 -32.482544195723548, 115.75412034988403 -32.482354137870743, 115.75434565544128 -32.482236482808354, 115.75419545173645 -32.482118827592153, 115.7544207572937 -32.481802062784027, 115.75366973876953 -32.481476246389654, 115.74648141860962 -32.480761256278939, 115.74629902839661 -32.480942266970523, 115.74623465538025 -32.481358590179596, 115.74671745300293 -32.481376691145, 115.74678182601929 -32.481168529823051, 115.74983954429626 -32.481458145444272, 115.74971079826355 -32.482200281219761, 115.74951767921448 -32.482127877998856, 115.7494854927063 -32.482498943890242, 115.74851989746094 -32.482489893520842, 115.74848771095276 -32.482797605569594, 115.7489275932312 -32.482815706245582, 115.74888467788696 -32.48292431022503, 115.74973225593567 -32.48301481344113, 115.74975371360779 -32.4829062095709, 115.75024724006653 -32.482951461199413, 115.75024724006653 -32.482752353863695, 115.75034379959106 -32.482372238635932, 115.75065493583679 -32.482399389776873, 115.75070858001709 -32.482218382015873, 115.75032234191895 -32.48218218042, 115.75040817260742 -32.481901617558137, 115.75063347816467 -32.481919718414318, 115.75066566467285 -32.481521498737195, 115.75247883796692 -32.481702507899762, 115.75253248214722 -32.481593902445908, 115.75287580490112 -32.481648205189217, 115.75299382209778 -32.48172965924276, 115.75339078903198 -32.481783961904164, 115.75327277183533 -32.482489893520842))\nAYCA-Z1Y3T\tAnnadale Estate\tUnder construction\tPOLYGON ((144.89832195574 -37.5359491183692, 144.898128999993 -37.5359310000244, 144.898105999993 -37.5366370000245, 144.898818999993 -37.5367150000245, 144.898661999993 -37.5375710000245, 144.901287999993 -37.5378750000245, 144.901365999993 -37.5374470000245, 144.901354999993 -37.5374460000245, 144.901602999993 -37.5360910000246, 144.899172999993 -37.5358090000245, 144.899055999993 -37.5364500000245, 144.898545999993 -37.5363920000245, 144.898517999993 -37.5363610000244, 144.898586583184 -37.5359856738666, 144.89832195574 -37.5359491183692))\n10394\tIluka\tReady for service\tMULTIPOLYGON (((115.73288798332214 -31.734344863140645, 115.73289065791812 -31.734341064757274, 115.73289066553116 -31.734340300724597, 115.73288798332214 -31.734344863140645)), ((115.73389984667301 -31.735472343316534, 115.73441818356514 -31.735459226529457, 115.73486477136612 -31.735350870391123, 115.73514506220818 -31.735240803236636, 115.73535025119781 -31.735085112167877, 115.7354736328125 -31.734878093967897, 115.73551654815674 -31.734611764088086, 115.73632121086121 -31.734664231705256, 115.73641642928123 -31.734541046817906, 115.7364097237587 -31.734276426876416, 115.73619782924652 -31.733975306713269, 115.73613274376839 -31.733793094321062, 115.73565459810197 -31.733825316569867, 115.73568535968661 -31.733707263320451, 115.73526944965124 -31.733653654548831, 115.73527984321117 -31.733592061453788, 115.73497876524925 -31.73353274954577, 115.73370069265366 -31.733582936547329, 115.73338150978088 -31.733439219152146, 115.73317229747772 -31.73394108845098, 115.73289065791812 -31.734341064757274, 115.73288932442665 -31.734474891903403, 115.73292821645737 -31.73459579567696, 115.73323667049408 -31.735152407240694, 115.73328495025635 -31.735458085939175, 115.73389984667301 -31.735472343316534)))\n10406\tIluka\tReady for service\tPOLYGON ((115.72931528091431 -31.728176271463738, 115.7310962677002 -31.727884256944041, 115.73120892047882 -31.728354217360469, 115.73029160499573 -31.72853444426655, 115.73038280010223 -31.728890334342719, 115.73003679513931 -31.728965618606757, 115.73023527860641 -31.729691082016632, 115.73023796081543 -31.730046967650583, 115.72991341352463 -31.730108563102313, 115.72893708944321 -31.730416539746813, 115.72860449552536 -31.730192971617836, 115.72832554578781 -31.730484978862144, 115.72770059108734 -31.730044686336775, 115.72818875312805 -31.729462949481071, 115.72797819972038 -31.729320366361126, 115.7278910279274 -31.729310100368032, 115.72779178619385 -31.728970181287451, 115.728180706501 -31.728899459711315, 115.72804927825928 -31.728459159652203, 115.72931528091431 -31.728176271463738))\nAYAA-HD37C\tPotts Hill\tReady for service\tPOLYGON ((151.026671196638 -33.894950814314, 151.027789867619 -33.8951199925799, 151.028279741765 -33.8945558001273, 151.028445905694 -33.8943823084413, 151.029488418398 -33.8928541998576, 151.029496178828 -33.892779780651, 151.029499548269 -33.8925481647425, 151.027584506897 -33.8923158075369, 151.027574481116 -33.8923828272495, 151.027209086809 -33.8923522222462, 151.026960044849 -33.8935764510922, 151.026671196638 -33.894950814314))\nAYCA-PU9UW\tGrey Gum Estate\tReady for service\tPOLYGON ((150.938508516345 -33.6870753533343, 150.938680546259 -33.6871998723051, 150.938835458147 -33.6870592080966, 150.938947828165 -33.6869494967371, 150.93898178058 -33.6869646310157, 150.939127935425 -33.6870449758411, 150.939287030058 -33.6871576153997, 150.939399281835 -33.6872797844007, 150.939534067112 -33.6874344082037, 150.939660793794 -33.6875820233732, 150.939769372449 -33.6876857999118, 150.939857143805 -33.6877422564901, 150.939977452352 -33.6878141495006, 150.940080572975 -33.6878594051328, 150.940211213381 -33.6879005369047, 150.94032302194 -33.6879264606877, 150.940462404878 -33.6879459700825, 150.94129532625 -33.6880373984999, 150.941322003495 -33.687869558793, 150.941097581049 -33.6878464660358, 150.941084955452 -33.6878189080076, 150.941196524083 -33.6876262178546, 150.941230392726 -33.6875912901751, 150.941323289852 -33.6875218541476, 150.941930801131 -33.6871139588382, 150.941637050446 -33.6866935926728, 150.940667768831 -33.6857117787589, 150.940588219611 -33.6856378641182, 150.940106686118 -33.6852437206321, 150.94004624288 -33.6852050061753, 150.939949320057 -33.6851822741373, 150.939869179916 -33.6852126109455, 150.93973257492 -33.6853400426457, 150.939658211942 -33.6854308059783, 150.939566063586 -33.6855861276567, 150.93946965867 -33.6857685268897, 150.939375381459 -33.6859373872051, 150.939241538481 -33.6861848663044, 150.939116157897 -33.6863866647051, 150.938985782158 -33.6865571963894, 150.938874741706 -33.6866978088514, 150.93867085792 -33.6869194838349, 150.938508516345 -33.6870753533343))\nAYCA-IA841\tTrumpet Wy/Cottier Dr/Lovell Pl\tContracted\tPOLYGON ((118.606949894255 -20.4038037645468, 118.606926439597 -20.4040899229581, 118.607217662334 -20.4041185821227, 118.60718544 -20.4044583599183, 118.606230974974 -20.4043781013766, 118.60615476 -20.4049584899184, 118.60709328 -20.4050693699184, 118.60721712 -20.4052196699183, 118.607520690124 -20.405431964827, 118.607737709671 -20.4056021172505, 118.607902991115 -20.4054145057156, 118.607609712922 -20.4051848475488, 118.60785519058 -20.4050063354452, 118.607895752423 -20.4050097154239, 118.608076813714 -20.4048577111096, 118.60793964 -20.4047498699183, 118.60820568 -20.4044472899183, 118.60823064599 -20.4041835593033, 118.608343859431 -20.4042722137871, 118.608549547976 -20.4040387324161, 118.608859929767 -20.4042811487647, 118.609871185297 -20.403142281566, 118.609719247584 -20.402137310581, 118.608397526192 -20.4022867157652, 118.60841231843 -20.4023621359308, 118.607497399189 -20.4031327828183, 118.607663308131 -20.403380653473, 118.607616965044 -20.4038626343884, 118.606949894255 -20.4038037645468))\nAYCA-TAE37\tHelena Valley\tReady for service\tPOLYGON ((116.034292150265 -31.9171237015168, 116.033243053034 -31.9174943036054, 116.033370293482 -31.9177464354072, 116.034143857855 -31.9192999232008, 116.034465843861 -31.9199471577476, 116.034610529118 -31.9201926316278, 116.034712237529 -31.9203044383157, 116.035607611193 -31.9199887452856, 116.035511385886 -31.9197887067645, 116.035671241082 -31.9197346926696, 116.035894126863 -31.9196430310241, 116.035872581756 -31.9194435587467, 116.03526206691 -31.9182028467252, 116.035271187583 -31.9181472278533, 116.035693260521 -31.9179979163019, 116.035788730242 -31.9178945159934, 116.03582557738 -31.9175564418515, 116.0354870078 -31.916647732571, 116.035035362366 -31.9167653362187, 116.035220517884 -31.9172322624228, 116.034887633177 -31.9173245824105, 116.03496435535 -31.9175350998724, 116.034702646821 -31.9176075932588, 116.034629950943 -31.9174233341284, 116.03450753361 -31.9171932810106, 116.034336930359 -31.9172462079493, 116.034313035928 -31.9171997292032, 116.034292150265 -31.9171237015168))\nAYCA-E2MNA\tEucalypt\tReady for service\tPOLYGON ((145.035290743683 -37.6110605742831, 145.034964377057 -37.6113049009576, 145.034841249996 -37.611452312221, 145.034736868304 -37.6120561910064, 145.035204119995 -37.6121092500258, 145.035104641139 -37.6124118738348, 145.035161069468 -37.6125203325682, 145.035121034839 -37.612924963637, 145.035202638176 -37.6129359646215, 145.035026832803 -37.614172208482, 145.037014788625 -37.6144282309495, 145.037054010055 -37.6141378907487, 145.037386715166 -37.6141610656779, 145.037572778303 -37.6130731599992, 145.037411330309 -37.6130548332447, 145.037434837579 -37.6128090802052, 145.036376548785 -37.6127360010499, 145.036379999995 -37.612172000026, 145.035290743683 -37.6110605742831))\nAYCA-IAOE6\tThe Boulevard\tReady for service\tPOLYGON ((145.373152448696 -36.3559703078836, 145.373378028106 -36.355972188577, 145.37379474609 -36.3559769851678, 145.37379412383 -36.3558357104218, 145.373801199759 -36.3556509779984, 145.374384834103 -36.3556518509191, 145.375343485324 -36.3556710322431, 145.37535394034 -36.3537202143381, 145.374766898743 -36.3537200488462, 145.374766484032 -36.3539771461458, 145.374561463069 -36.3539769296893, 145.374561674507 -36.3538457898276, 145.374333432906 -36.3538455483248, 145.374315408314 -36.3538569000777, 145.3743156245 -36.3537232673831, 145.373897783719 -36.3537228242797, 145.373897934001 -36.3536299772079, 145.373675085787 -36.3536297392463, 145.37367500165 -36.3536814876289, 145.373663757509 -36.3537441163739, 145.373663580795 -36.3538527234668, 145.372555896116 -36.3538515390519, 145.372554693297 -36.3545842986157, 145.372708794719 -36.3545844640437, 145.372707927129 -36.3551135290412, 145.37270742511 -36.35541962322, 145.372829271576 -36.3554197751146, 145.372834709583 -36.3559683401154, 145.373152448696 -36.3559703078836))\nAYCA-SN6ZO\tGoogong Township\tReady for service\tPOLYGON ((149.234504074279 -35.4197191360926, 149.234217945006 -35.419660944989, 149.234231271185 -35.4200121779599, 149.234004431755 -35.4200026581898, 149.234006013734 -35.4199076429174, 149.233252562023 -35.4199493049379, 149.233260316313 -35.4200587722751, 149.233066443358 -35.4200747414978, 149.233058436641 -35.4199601679537, 149.232412408976 -35.4199960004615, 149.232388618071 -35.4203086228519, 149.232307776454 -35.42060148764, 149.232183515598 -35.4210271009239, 149.231965519744 -35.4209819587516, 149.23189431103 -35.4211867669321, 149.231859175594 -35.4212033459431, 149.230703388619 -35.4210350088057, 149.230353509711 -35.4210535394744, 149.230292297581 -35.4210322860386, 149.229684849627 -35.4197605736748, 149.22949961139 -35.4198207896808, 149.229439403419 -35.4196966730019, 149.22917600001 -35.4197790000198, 149.22931800001 -35.4200780000199, 149.229681215657 -35.4209329023556, 149.229379289968 -35.4210247972126, 149.229562143699 -35.4214123678923, 149.230249028643 -35.4214070441745, 149.230501317127 -35.4213685575284, 149.230644696087 -35.4213637103537, 149.231941148551 -35.421543865, 149.233378602047 -35.421824374031, 149.233825548286 -35.4216455462827, 149.23391700001 -35.4213440000198, 149.233963233174 -35.4211942124482, 149.234303692008 -35.4212584700716, 149.234549957649 -35.4204054894841, 149.234493366375 -35.4203951969942, 149.234504074279 -35.4197191360926))\nAYCA-L8UX7\tAmbrosia Estate\tReady for service\tPOLYGON ((145.237007178357 -38.111228466431, 145.236332769227 -38.1111440655732, 145.236305662472 -38.1112749510192, 145.236259356703 -38.1112963449605, 145.233508630808 -38.1109430312481, 145.233025099613 -38.1122199122583, 145.233313282046 -38.1122832565806, 145.233377179193 -38.1124154968396, 145.23552536508 -38.112703548265, 145.235534983027 -38.1126592494539, 145.235959413343 -38.1127125087897, 145.236027621307 -38.1126393953215, 145.236041141524 -38.1125738676401, 145.236346982588 -38.1126129714126, 145.23634264651 -38.1126342785991, 145.236353501836 -38.1126526790126, 145.236728648156 -38.1126989915441, 145.237007178357 -38.111228466431))\nAYCA-N50IV\tVermont, Fernadell\tReady for service\tPOLYGON ((150.859265867241 -33.5811619493067, 150.857912541575 -33.5810159253741, 150.857255337924 -33.5809301180711, 150.856883070534 -33.5829478163964, 150.857728892075 -33.583067758078, 150.857556837862 -33.5839675413415, 150.858521700802 -33.5841070533559, 150.858784730474 -33.582798420794, 150.858965295538 -33.5828195300429, 150.8589680418 -33.5826577244594, 150.859005344343 -33.5824698214132, 150.859265867241 -33.5811619493067))\nAYCA-RZ1UT\tPhase 2 Single LEAP Robertson Barracks\tReady for service\tPOLYGON ((130.975075679746 -12.4381023599208, 130.975089099621 -12.4398779025133, 130.975061679811 -12.4407813599433, 130.975526177891 -12.4407752793437, 130.976054679836 -12.4407683599178, 130.976054679694 -12.441116173692, 130.976597901541 -12.4410906465044, 130.976733248969 -12.4409965163909, 130.977186828587 -12.4409934495348, 130.977177071497 -12.4396643606528, 130.97660823279 -12.4394542185494, 130.976454679781 -12.4381023598892, 130.975075679746 -12.4381023599208))\n17346283\tBellevue Hill Estate\tCheck with carrier\tPOLYGON ((149.562792736 -32.592495776, 149.562982432 -32.5924130625, 149.563418048 -32.5922900375, 149.563397888 -32.592248283, 149.563325152 -32.5920987845, 149.563204192 -32.591848775500004, 149.56306992 -32.5915720155, 149.563001888 -32.591431434, 149.562921248 -32.5912648415, 149.562840256 -32.5910977125, 149.562759616 -32.590930861000004, 149.5627272 -32.590864446, 149.562678592 -32.5907640835, 149.5625976 -32.590597232, 149.562585728 -32.590572479, 149.562519488 -32.5904358565, 149.56250832 -32.5903263365, 149.562500768 -32.590254427, 149.562536416 -32.5900819885, 149.562572768 -32.589904314500004, 149.56260912 -32.5897265665, 149.562390592 -32.589694173, 149.562159488 -32.589660059, 149.561949952 -32.589629016, 149.56196256 -32.589566819, 149.561543168 -32.589504622, 149.56152768 -32.5895816745, 149.56150752 -32.5896830915, 149.561471168 -32.5898607655, 149.56139376 -32.5900556075, 149.5613592 -32.5901431865, 149.561335456 -32.590258645, 149.56129152 -32.5904718575, 149.561267776 -32.5905873345, 149.56077168 -32.590890993500004, 149.560682752 -32.590841136, 149.560105312 -32.5905174045, 149.56004736 -32.5908245785, 149.560038368 -32.5908737145, 149.560399808 -32.591295903, 149.560931168 -32.5919164485, 149.56121232 -32.592244953, 149.561517952 -32.5921199485, 149.561604736 -32.5920843915, 149.561997472 -32.59192383, 149.562083872 -32.592102392, 149.562170656 -32.5922810465, 149.562613792 -32.592127052500004, 149.562706688 -32.5923183055, 149.562785536 -32.5924811055, 149.562792736 -32.592495776))\nAYCA-E0VG1\tGracewood Kellyville\tReady for service\tPOLYGON ((150.942280808775 -33.7192705851282, 150.943277719389 -33.7217403772374, 150.945121723018 -33.7212244008756, 150.944056759123 -33.718769123719, 150.942280808775 -33.7192705851282))\nAYCA-RBWFU\tGolden Bay\tReady for service\tPOLYGON ((115.76247194129 -32.418280991871, 115.762439917856 -32.4183080873819, 115.762439873561 -32.4183621637384, 115.76215288288 -32.4183618622714, 115.762152256804 -32.4187901985518, 115.762470831383 -32.4187947277104, 115.762469846029 -32.419004742124, 115.762409457716 -32.4190572749086, 115.762400999528 -32.4192210943719, 115.762471630258 -32.419268306624, 115.762529108434 -32.4194563329566, 115.762524101666 -32.4195076634152, 115.762494412426 -32.4195568222178, 115.762453475995 -32.4195949070283, 115.761611527312 -32.4199809840312, 115.76150783334 -32.4199693658276, 115.76144063915 -32.4199021096285, 115.761415235169 -32.4199172375817, 115.761680041582 -32.4202979432226, 115.76186205515 -32.4201193550594, 115.762558144556 -32.4197993892615, 115.762642363917 -32.4198297720586, 115.762747724662 -32.419805944895, 115.762883252343 -32.4202578027301, 115.762962915191 -32.4202358698578, 115.762897983876 -32.4200273933671, 115.762925619792 -32.4199963123167, 115.763986345803 -32.4199981101482, 115.763986414254 -32.4199440961678, 115.764018189562 -32.4199175785165, 115.764025298254 -32.4196561622823, 115.764083609787 -32.419637421776, 115.764111446462 -32.4196079128411, 115.764773127356 -32.41948282418, 115.764727669113 -32.4193290047463, 115.764442682069 -32.4193911713537, 115.764440650678 -32.4190838145617, 115.764564014054 -32.4190601124221, 115.764563657796 -32.417863301836, 115.764246800788 -32.417861511715, 115.764246984219 -32.4176444019984, 115.764311124429 -32.4175890078476, 115.764407457571 -32.4175892968701, 115.764409152179 -32.4174319424803, 115.763297178966 -32.4174321835542, 115.763293889312 -32.4178644567968, 115.763229155924 -32.4179201004462, 115.762473703816 -32.4179187606511, 115.76247194129 -32.418280991871))\nAYCA-UFCXA\tSaddlers Ridge\tUnder construction\tPOLYGON ((151.53493159951 -32.7612562330972, 151.534934400259 -32.7612598573997, 151.534750999999 -32.761358000016, 151.534665274368 -32.7613958596425, 151.534563396194 -32.7614421068058, 151.534420999999 -32.761500000016, 151.534600999999 -32.761843000016, 151.534669293203 -32.7619185165895, 151.534710614801 -32.7621766171265, 151.534709951361 -32.7622858725712, 151.534562950187 -32.7631546387692, 151.535351155826 -32.7636167004935, 151.53550226017 -32.7634898723792, 151.535909771471 -32.7631466378831, 151.536106991763 -32.7629787901826, 151.536385279563 -32.76273619809, 151.5367257898 -32.7622801388548, 151.536964301626 -32.7619240552073, 151.537152999999 -32.761460000016, 151.536953999999 -32.761339000016, 151.536949999999 -32.761323000016, 151.536390999999 -32.761194000016, 151.536603999999 -32.7608910000161, 151.535800999999 -32.760415000016, 151.535392999999 -32.760900000016, 151.535155999999 -32.761110000016, 151.535046999999 -32.761186000016, 151.53493159951 -32.7612562330972))\nAYCA-FTSDU\tOakdene Estate\tReady for service\tPOLYGON ((144.54527020194 -38.2384317605686, 144.543414515703 -38.2386612396584, 144.543476427896 -38.2389726941477, 144.543565078596 -38.2389617321176, 144.543593381332 -38.239104112775, 144.543342484947 -38.2403808353101, 144.54320142665 -38.2405448225047, 144.543541320646 -38.2407268076606, 144.543899653273 -38.2409083159434, 144.54407268167 -38.2409959603086, 144.544324373641 -38.2411135497743, 144.544349357165 -38.2411529706905, 144.544335197724 -38.2412250260015, 144.544490382448 -38.2412439941755, 144.544495053556 -38.2412202236034, 144.544537547748 -38.2412022143946, 144.544893517586 -38.241325786275, 144.54497754219 -38.2411215321108, 144.544943842351 -38.2411124856195, 144.545000103921 -38.2408261646923, 144.545237112541 -38.2408551327455, 144.545543185652 -38.2392974297211, 144.545340094854 -38.2392726072619, 144.545428862487 -38.2388208325855, 144.545196452908 -38.2388070982519, 144.54527020194 -38.2384317605686))\nAYCA-J3YYH\t330 Bridge Inn Road\tUnder construction\tPOLYGON ((145.069762768022 -37.6015940565486, 145.070215008926 -37.5985534233828, 145.070332919996 -37.5977647800235, 145.069128907717 -37.5976341408266, 145.069079914149 -37.5979535508821, 145.069003832531 -37.5984485258301, 145.068826355118 -37.5996124427276, 145.068898290875 -37.5996205808783, 145.06890619211 -37.5996120433798, 145.068935968401 -37.599610363218, 145.068936180686 -37.5996296969347, 145.068825655312 -37.5996182766501, 145.068539758024 -37.6014811538565, 145.069762768022 -37.6015940565486))\nAYCA-SS6F2\tThe Woods\tReady for service\tPOLYGON ((144.915389999993 -37.5371740000247, 144.913461999993 -37.5370080000246, 144.912036036129 -37.5368680349333, 144.911850457974 -37.5369039072693, 144.911796066208 -37.5369982333806, 144.911778475884 -37.5370936804074, 144.911359023622 -37.5370447978985, 144.911337474472 -37.537161722039, 144.911525999993 -37.5391910000247, 144.912202999993 -37.5390980000247, 144.912214999993 -37.5392460000247, 144.912732999993 -37.5393070000247, 144.912784999993 -37.5390220000247, 144.912782999993 -37.5388760000247, 144.912828999993 -37.5386260000246, 144.912800999993 -37.5386230000247, 144.912853999993 -37.5383370000247, 144.912846999993 -37.5381910000247, 144.912907999993 -37.5378570000247, 144.913266999993 -37.5378980000247, 144.913449999993 -37.5378950000247, 144.913729999993 -37.5379280000247, 144.913829999993 -37.5373860000247, 144.915137999993 -37.5375390000247, 144.915321999993 -37.5375420000246, 144.915679999993 -37.5375840000247, 144.915747999993 -37.5372150000247, 144.915389999993 -37.5371740000247))\nAYCA-1JRAKC\tWaverley Parks Estate Willowvale\tReady for service\tPOLYGON ((153.280826659875 -27.8269472505816, 153.280817045308 -27.8269042714296, 153.280263485443 -27.8268115535641, 153.280160760102 -27.8267201478786, 153.280138436355 -27.826635633807, 153.279929899294 -27.8266247694612, 153.279695160578 -27.8266257946277, 153.279650703991 -27.8269042699946, 153.279643375652 -27.8270023340383, 153.279616115747 -27.8270742428869, 153.279670675757 -27.8274189188521, 153.279630377492 -27.8275378903545, 153.279349 -27.8280119999839, 153.279202 -27.8281179999839, 153.28065 -27.828336999984, 153.28271 -27.8286479999839, 153.282747 -27.828468999984, 153.28272 -27.8284589999839, 153.282713 -27.8284499999839, 153.282688 -27.8284069999839, 153.282652 -27.8283709999839, 153.282646 -27.8283629999839, 153.282645 -27.828353999984, 153.282713 -27.8279789999839, 153.282775 -27.827961999984, 153.282827 -27.8277099999839, 153.282768 -27.8276809999839, 153.282831 -27.8273309999839, 153.282562 -27.8272929999839, 153.282567 -27.8272389999839, 153.282560808928 -27.8271652986089, 153.28251578761 -27.8271449833846, 153.282473060118 -27.8271281852896, 153.281088534612 -27.8269278413108, 153.281069749552 -27.8269235899854, 153.281056689788 -27.8269235075472, 153.281027696783 -27.8269263936972, 153.281002631839 -27.8269434112609, 153.280991374911 -27.8269666828136, 153.280826659875 -27.8269472505816))\nAYCA-T4NHQ\tOld Broadwater Farm\tReady for service\tPOLYGON ((115.310452530096 -33.6679280396088, 115.310571781542 -33.6682128646204, 115.310684124799 -33.6683143132638, 115.310788900278 -33.668615629401, 115.310748491126 -33.6699861337139, 115.311353161318 -33.6700070072146, 115.313176055534 -33.6700414624172, 115.313202701506 -33.670166587499, 115.313494072276 -33.6701430206501, 115.313631286917 -33.6701675747671, 115.31371497254 -33.6701525150044, 115.313738842098 -33.6701220569198, 115.313964606494 -33.6700813917599, 115.314583643946 -33.6697641646088, 115.314670043908 -33.669809089011, 115.314735346657 -33.6697419294119, 115.314694494603 -33.6696490176478, 115.314472046785 -33.6697188964387, 115.314377878295 -33.6695750287591, 115.314223732487 -33.6696231543903, 115.314329052078 -33.6697914755601, 115.313931758338 -33.6699756268741, 115.31336774746 -33.6700570412316, 115.313358183686 -33.6699273940262, 115.313347413703 -33.6695939048188, 115.312593753078 -33.6688061378011, 115.312481504392 -33.6687729996983, 115.312195754061 -33.6685524956205, 115.312102454043 -33.6683364216092, 115.312020290794 -33.6682428771984, 115.312119790023 -33.6680792596723, 115.311997039678 -33.6679388399265, 115.311935525377 -33.6678446124185, 115.312024931047 -33.6676328892013, 115.312100773192 -33.6675898493833, 115.312175162483 -33.6675876009693, 115.312178556195 -33.667572447327, 115.311816159234 -33.6675210710052, 115.311719018533 -33.6674658223587, 115.311685541707 -33.6674733497041, 115.311359219578 -33.6677477342352, 115.31128590247 -33.6676223149153, 115.311091411043 -33.6676756041714, 115.311140012968 -33.6678013670729, 115.311071781476 -33.6678211279594, 115.310983039122 -33.6677833245798, 115.310452530096 -33.6679280396088))\nAYCA-FD0UW\tThe Grove\tReady for service\tPOLYGON ((145.281703115116 -38.0903093305982, 145.280536526576 -38.0901632434364, 145.282495445395 -38.0925989687656, 145.283449547373 -38.0931701188841, 145.28368721846 -38.0912654529304, 145.283566191092 -38.0909012109518, 145.283175822606 -38.0904887650821, 145.281703115116 -38.0903093305982))\n17331693\tHunt Club Village Shopping Centre\tCheck with carrier\tPOLYGON ((145.292970976 -38.100317034, 145.293031072 -38.1004790385, 145.29309696 -38.1005299875, 145.29320208 -38.100564009, 145.293308992 -38.1005949595, 145.293416992 -38.100623042500004, 145.29352608 -38.100648961000005, 145.293635168 -38.1006729925, 145.29386304 -38.100723035, 145.295102176 -38.1008879995, 145.295240032 -38.100867039, 145.29543984 -38.1007189835, 145.295967968 -38.100138028, 145.295980928 -38.1000419945, 145.295970112 -38.1000069925, 145.295880128 -38.099916990000004, 145.296006848 -38.0998130385, 145.296099008 -38.099851019, 145.296171008 -38.0998500385, 145.29626208 -38.0998140375, 145.29642192 -38.099638972, 145.296495008 -38.0992950015, 145.29642192 -38.0991149965, 145.29640608 -38.099077016, 145.295623072 -38.098972972, 145.295130976 -38.098944001, 145.294014976 -38.09887803, 145.293343936 -38.0987890265, 145.293095872 -38.098938969, 145.292973856 -38.0998950305, 145.292970976 -38.100239001, 145.292970976 -38.100317034))\nAYCA-K7DRA\tJohnston Stage 2\tReady for service\tPOLYGON ((131.005726999986 -12.4888519998869, 131.005775999986 -12.4888429998869, 131.005887798131 -12.4891215836773, 131.006109130733 -12.4890379043782, 131.006420595453 -12.48891356054, 131.006428469556 -12.4889367554737, 131.006465434546 -12.4889693841501, 131.006514905565 -12.4888808832457, 131.006545094711 -12.4888580406716, 131.006587323483 -12.488836138562, 131.006613831525 -12.4888257423245, 131.006662997788 -12.4888467853088, 131.006697486861 -12.4888661593201, 131.006743445384 -12.488852452477, 131.006797681922 -12.4889418379632, 131.006777278102 -12.4889644523154, 131.006747773898 -12.4890603122719, 131.006754951296 -12.4891046620145, 131.006840029591 -12.4893200317279, 131.007218845982 -12.4891389572067, 131.007226615624 -12.489089851844, 131.007721126237 -12.4888534742423, 131.007731619753 -12.4888131538067, 131.008114310219 -12.4886302256821, 131.008232411809 -12.4885797494922, 131.008271267779 -12.4885489719145, 131.008199879941 -12.4885102253992, 131.008182367744 -12.4884650194129, 131.008174397832 -12.4884186654435, 131.008176883215 -12.4883344289922, 131.008194645064 -12.4882839100477, 131.008458307147 -12.4881578778239, 131.008382332031 -12.4880060762836, 131.008156565855 -12.4881212052149, 131.008107569794 -12.4881241002899, 131.008033748716 -12.4880990403534, 131.007993140619 -12.4880467324235, 131.007805567444 -12.4876901178326, 131.007776030009 -12.4876412064331, 131.007738749673 -12.4875895111514, 131.00767459445 -12.4875170578457, 131.007083956665 -12.486910788178, 131.007032854083 -12.486878364715, 131.006961539531 -12.4868536991284, 131.006900992691 -12.4868474549363, 131.005832199528 -12.4869840102889, 131.005738404021 -12.4869591564785, 131.00566552411 -12.4869040233681, 131.005526887173 -12.486921736042, 131.005470778709 -12.486993349107, 131.005386569989 -12.4870409452915, 131.005120743194 -12.487074907786, 131.00502995867 -12.4871058124189, 131.004933684609 -12.4871925224009, 131.004894112087 -12.4872794829395, 131.004819091689 -12.4876148482752, 131.004771358413 -12.4878273622361, 131.004769974167 -12.4878941893945, 131.004785610978 -12.4879805876029, 131.004807115422 -12.4880241080047, 131.004839999986 -12.4880079998869, 131.005164999986 -12.4883209998869, 131.005419999986 -12.4885939998869, 131.005574999986 -12.4887949998869, 131.005647999986 -12.4888349998868, 131.005726999986 -12.4888519998869), (131.00690499391 -12.4878039566524, 131.007163213719 -12.4876224573399, 131.007291165273 -12.4877960587948, 131.007018798943 -12.4879676154285, 131.00690499391 -12.4878039566524))\nAYCA-1RC93R\tSubdivision of Lot 3333, Katherine East\tContracted\tPOLYGON ((132.297197632446 -14.466671523834, 132.297965827801 -14.4667953733559, 132.297872940023 -14.4673589698848, 132.297871831937 -14.4673658315535, 132.298138719674 -14.467416283194, 132.298136571972 -14.4674284898166, 132.298291893304 -14.4674543910897, 132.299726473584 -14.4678163149206, 132.300298079527 -14.465684003031, 132.298104628708 -14.4651245683081, 132.297710191186 -14.4653693595946, 132.29762053778 -14.4654228420098, 132.297599000094 -14.4653949998643, 132.297435391613 -14.4653300222552, 132.297197632446 -14.466671523834))\n17315991\tSteele Road Logan Village\tCheck with carrier\tPOLYGON ((153.115872128 -27.7712690325, 153.11044512 -27.7704389745, 153.110436128 -27.770481987, 153.110333152 -27.771017044, 153.11027808 -27.771300982, 153.110184832 -27.7717809645, 153.110491936 -27.771825956500003, 153.112181056 -27.772074004500002, 153.11369088 -27.7722950425, 153.114644896 -27.7712679595, 153.115836128 -27.771452016, 153.115872128 -27.7712690325))\n10545\tMurray-Murray River Country Estate\tReady for service\tPOLYGON ((115.85558697581291 -32.6095100377231, 115.85580557584763 -32.609552401341638, 115.85581094026566 -32.609539409834092, 115.8560261875391 -32.609584597678335, 115.85602249950171 -32.609595894635845, 115.85610598325729 -32.609613404917141, 115.85623472929001 -32.609639952756481, 115.85625819861889 -32.609582903134609, 115.8563145250082 -32.609590246157275, 115.85634235292673 -32.609522464386615, 115.85640085861087 -32.609461460749166, 115.85647813975811 -32.609411754050896, 115.85656028240919 -32.609387183115984, 115.85664913058281 -32.609379557652069, 115.85674703121185 -32.609397350400208, 115.8568898588419 -32.609469368630442, 115.85648953914642 -32.610927795936924, 115.85655592381954 -32.611018170201547, 115.8574092015624 -32.611011956973776, 115.85760315880179 -32.611006026165036, 115.85822559893131 -32.610959426939921, 115.85825057700276 -32.611161356740318, 115.85826348513365 -32.61116333367319, 115.85826021619141 -32.611296211703092, 115.85827572271228 -32.61141779280959, 115.85830070078373 -32.611573969923704, 115.85844688117504 -32.611576794100479, 115.85845291614532 -32.612092487285949, 115.85487619042397 -32.612113386070945, 115.85558697581291 -32.60950947287472, 115.85558697581291 -32.6095100377231))\n10551\tMurray-Murray River Country Estate\tReady for service\tPOLYGON ((115.85722647607327 -32.603443925540866, 115.85807874798775 -32.6037755133831, 115.85803315043449 -32.603890184872547, 115.85795000195503 -32.603922948128279, 115.85785545408726 -32.604115008351926, 115.8588032796979 -32.604499410003839, 115.85883638821542 -32.6045127552924, 115.8588426746428 -32.604504635143506, 115.85899581201375 -32.604567689845531, 115.85899258498102 -32.604573797605454, 115.85919320583344 -32.604655034303434, 115.85956335067749 -32.604805009552287, 115.85978128015995 -32.604894542679084, 115.859879180789 -32.604745414897778, 115.85985973477364 -32.604670286035123, 115.8600240200758 -32.604546012590156, 115.860241279006 -32.604697965097124, 115.86013399064541 -32.604802467601019, 115.86000256240368 -32.6047889105263, 115.85987851023674 -32.6049860527856, 115.85980106145144 -32.60514492427626, 115.85974372923374 -32.605303795485128, 115.85968740284443 -32.605635658879024, 115.85977256298065 -32.605718695144432, 115.85973300039768 -32.605846921062906, 115.85968572646379 -32.605835906068315, 115.85958497598767 -32.605823055239561, 115.85952655412257 -32.605813805466077, 115.85945338010788 -32.6058130287675, 115.85947751998901 -32.605678589202732, 115.85954792797565 -32.6056311398964, 115.85958749055862 -32.605395022736381, 115.85937023162842 -32.605410556779191, 115.85915833711624 -32.605421006951936, 115.85910737514496 -32.605426514474914, 115.8588995039463 -32.605465914437133, 115.85857294499874 -32.60556730924224, 115.85838954895735 -32.605683673055481, 115.85823817178607 -32.605785914921945, 115.85808612406254 -32.605914705615234, 115.85798185318708 -32.606027397319977, 115.85790323093534 -32.606133451664476, 115.85779242217541 -32.606315198298418, 115.85770457983017 -32.606535496754233, 115.85716679692268 -32.60642082865126, 115.85708230733871 -32.606641126847258, 115.85695557296276 -32.606601021318582, 115.85700184106827 -32.606494826310865, 115.85642114281654 -32.606318587509527, 115.85662432014942 -32.60557578234058, 115.8567875996232 -32.604977297193031, 115.85689790546894 -32.604571997052005, 115.85709974169731 -32.6038303071673, 115.85769720375538 -32.603948932770862, 115.85772804915905 -32.603853467416528, 115.85768345743418 -32.603778337805778, 115.85766786709428 -32.603774101171716, 115.85766904056072 -32.603762521037588, 115.85753191262484 -32.603731734820087, 115.85715137422085 -32.603611131829389, 115.85722580552101 -32.60344279576757, 115.85722647607327 -32.603443925540866))\nAYCA-18LJI2\tSpring Farm\tContracted\tPOLYGON ((150.737881999989 -34.0714520000158, 150.737077999989 -34.0712010000158, 150.736372999989 -34.0708700000158, 150.735555999989 -34.0720450000158, 150.735717999989 -34.0723810000157, 150.738183999989 -34.0730440000158, 150.739184999989 -34.0725450000158, 150.739618999989 -34.0716330000158, 150.739547999989 -34.0716100000159, 150.738909999989 -34.0714380000158, 150.738040999989 -34.0712360000158, 150.737881999989 -34.0714520000158))\nAYCA-1F0VFN\tFranklin Place\tReady for service\tPOLYGON ((146.545633 -38.1820110000299, 146.545905 -38.1833590000299, 146.547804 -38.1836020000299, 146.547982 -38.1827250000299, 146.548244 -38.1827580000299, 146.548126 -38.1822140000299, 146.54756 -38.1821410000299, 146.54735 -38.1821470000299, 146.5468 -38.1820760000299, 146.546884 -38.1816810000299, 146.546975 -38.1815180000299, 146.546743 -38.1814850000299, 146.546752 -38.1812110000299, 146.546603 -38.1812050000299, 146.546496 -38.1806270000299, 146.546445 -38.1802040000299, 146.545277 -38.1802220000299, 146.545633 -38.1820110000299))\n10297\tDawesville-Florida Beach\tReady for service\tPOLYGON ((115.62710702419281 -32.622768271720432, 115.62677443027496 -32.622621432766209, 115.62682271003723 -32.622573992437211, 115.62666714191437 -32.622476852637462, 115.62570422887802 -32.622472334504671, 115.62568545341492 -32.622422635028975, 115.6256827712059 -32.622052147158769, 115.62565863132477 -32.621848829992992, 115.62535017728806 -32.621851089075143, 115.625519156456 -32.6201436655789, 115.62437921762466 -32.620138688443525, 115.6243684887886 -32.620165797943521, 115.62442749738693 -32.6207960915044, 115.62442749738693 -32.620951969872635, 115.62442481517792 -32.621082997856227, 115.62437921762466 -32.621306648626565, 115.62428802251816 -32.621842052746175, 115.6243309378624 -32.622013742840608, 115.6244033575058 -32.622133473895779, 115.62432020902634 -32.622786344190459, 115.62436044216156 -32.622876706485847, 115.62441408634186 -32.622926405709457, 115.6247091293335 -32.62316812426706, 115.62479227781296 -32.623272040455696, 115.62524557113647 -32.6238074328199, 115.625339448452 -32.623834541208865, 115.62688171863556 -32.62344372780737, 115.62690585851669 -32.623403065043313, 115.62680393457413 -32.623100352774706, 115.62710702419281 -32.622768271720432))\nAYCA-1FZM3S\tWaterlink Estate\tUnder construction\tPOLYGON ((142.211344 -36.7205260000284, 142.210918 -36.7208840000284, 142.210483 -36.7211660000285, 142.211278 -36.7216290000284, 142.212572 -36.7218040000285, 142.212656 -36.7218260000284, 142.213053179878 -36.7205832371739, 142.213181943506 -36.7204588699004, 142.213196166768 -36.7204684134882, 142.213467999328 -36.720205859513, 142.213083 -36.7199460000285, 142.213121 -36.7198990000284, 142.212605 -36.7196290000284, 142.213146 -36.7189590000284, 142.21278 -36.7187670000284, 142.21282 -36.7187180000284, 142.211822 -36.7181950000284, 142.211437 -36.7191340000284, 142.21169 -36.7199660000285, 142.211613 -36.7201830000284, 142.211344 -36.7205260000284))\n17327844\t85 Brooking Road Gisborne\tCheck with carrier\tPOLYGON ((144.601026848 -37.5056739945, 144.600280928 -37.510127999, 144.601196032 -37.5102479715, 144.601391872 -37.509846022, 144.60165792 -37.508358955, 144.601764832 -37.50817599, 144.601941952 -37.507125967, 144.60206688 -37.507112018, 144.602147168 -37.506696027000004, 144.602298016 -37.5067240175, 144.60237792 -37.506314964000005, 144.60249312 -37.506174031, 144.602511136 -37.505871001, 144.601026848 -37.5056739945))\nAYCA-JNMSX\tYanchep Golf Estate\tReady for service\tPOLYGON ((115.655937330626 -31.5470222925299, 115.657340366818 -31.5483988943298, 115.657835689495 -31.5480556207531, 115.657972586348 -31.5482634172932, 115.65806532969 -31.5483199168015, 115.658132134357 -31.5483211895813, 115.658282241014 -31.5483478057231, 115.658278971056 -31.5483239088873, 115.658138350193 -31.5482958316716, 115.658208202572 -31.5480108632379, 115.657665970049 -31.5473508265095, 115.657907877546 -31.5472057435943, 115.658088848539 -31.5471924757426, 115.658369861604 -31.5470785111973, 115.658599701288 -31.5474550651518, 115.658828625009 -31.5473643855708, 115.658813114049 -31.5473253167988, 115.658943118947 -31.54729661168, 115.659013219419 -31.5473913625843, 115.659045969875 -31.5474072424935, 115.659076486511 -31.5474051942652, 115.65931392866 -31.5473305694547, 115.659258844235 -31.5471939194185, 115.659292753439 -31.5471892905038, 115.658784769804 -31.5458672356389, 115.658710019999 -31.5457720200098, 115.658524979999 -31.5453490200098, 115.658182733269 -31.5454463696583, 115.658117305843 -31.5454935567744, 115.657784240379 -31.5456017628888, 115.657851167651 -31.5457528513267, 115.657723855129 -31.5457885267478, 115.656864119126 -31.5462728634503, 115.657016472096 -31.5464911677673, 115.656738607268 -31.5466471244886, 115.656689289925 -31.5465930018142, 115.655937330626 -31.5470222925299))\n10111\tBaldivis-Tuart Ridge\tReady for service\tPOLYGON ((115.81529080867767 -32.345066635895328, 115.81418573856354 -32.3450847642205, 115.81418573856354 -32.345030379234089, 115.8136922121048 -32.345062103813461, 115.81357955932617 -32.342288427131805, 115.81385850906372 -32.342292959352612, 115.81392824649811 -32.342229508240841, 115.81409990787506 -32.342224976016858, 115.81416428089142 -32.342279362689538, 115.81418573856354 -32.342451586937358, 115.81491529941559 -32.342460651362359, 115.81527471542358 -32.342501441263693, 115.81535518169403 -32.342365474854425, 115.81543564796448 -32.342324684891793, 115.81561267375946 -32.342333749329526, 115.81566095352173 -32.34241986144265, 115.81592381000519 -32.3424470547245, 115.81558048725128 -32.34322205982189, 115.81538736820221 -32.3436208902674, 115.81538736820221 -32.343933608364395, 115.81533908843994 -32.344065040285457, 115.81536591053009 -32.344640619208185, 115.81528544425964 -32.344640619208185, 115.81529080867767 -32.345066635895328))\nAYCA-KEB94\tThe Village at Wellard\tReady for service\tPOLYGON ((115.822316290807 -32.2718680080145, 115.822620074658 -32.2716261818825, 115.822131590111 -32.271237747168, 115.821743660471 -32.2709755585426, 115.82144958371 -32.2707696038097, 115.821351801231 -32.2708304257572, 115.821368161855 -32.2708408619401, 115.821369041955 -32.2708634371997, 115.82115927086 -32.2710166723579, 115.821076806899 -32.2710554945409, 115.8210732865 -32.2710469869097, 115.821063270126 -32.2710499764552, 115.821066804495 -32.2710584840871, 115.820984815506 -32.2710830151251, 115.820888004523 -32.2711027964162, 115.820789768618 -32.2711139443467, 115.820691406994 -32.2711152435415, 115.820632118995 -32.2711096416358, 115.82061957408 -32.2710911455699, 115.820646 -32.2710380000129, 115.820319415831 -32.270944340565, 115.819808059901 -32.2717904557266, 115.819638884111 -32.2717167632627, 115.819531887286 -32.2718298620971, 115.819376665512 -32.2720303025097, 115.81949077307 -32.2721029601605, 115.819742477759 -32.2722310844054, 115.819779139897 -32.2723107826322, 115.819605245326 -32.2728011393163, 115.819567645093 -32.2728148180665, 115.819533356431 -32.2728000570899, 115.819387288742 -32.2727371759918, 115.819342077726 -32.2728201121517, 115.819333540853 -32.2728657169425, 115.819467482571 -32.2729232198524, 115.819680378053 -32.2729972167859, 115.819948827847 -32.273096544009, 115.820272137779 -32.2731302025808, 115.820495378465 -32.273155650237, 115.820930043638 -32.2731845764073, 115.8209638707 -32.2731242112919, 115.821117707132 -32.2730726018029, 115.821860971305 -32.2729680036094, 115.821908638838 -32.2729916300993, 115.822039599468 -32.272963393806, 115.821957563144 -32.2727268222244, 115.82182813391 -32.2723192845942, 115.822250000842 -32.2721438527537, 115.822152074238 -32.271981888108, 115.822316290807 -32.2718680080145))\nAYCA-13EJEY\tMaddington Rd,Alcock St- Maddington\tUnder construction\tPOLYGON ((115.99974 -32.0427570000128, 115.999824653398 -32.0430416905432, 116.000063847278 -32.042985835566, 116.000087977028 -32.043065562322, 116.000159919156 -32.0433546094642, 116.000328158917 -32.0433309338596, 116.000329 -32.0433380000128, 116.000399953337 -32.0435949369058, 116.000436 -32.0437430000127, 116.000399 -32.0437500000127, 116.000494889477 -32.0439840437674, 116.000844457004 -32.044277018314, 116.000855159724 -32.0442823060288, 116.00091324 -32.0442333300122, 116.001518387372 -32.0447445193451, 116.003393989762 -32.0431356987946, 116.002349404594 -32.0422470983875, 115.99974 -32.0427570000128))\nAYCA-1BUV12\tHighgrove Estate\tContracted\tPOLYGON ((145.329204999998 -38.1132090000285, 145.328820999998 -38.1131590000285, 145.328671999998 -38.1131590000286, 145.328671999998 -38.1131240000285, 145.328463999998 -38.1130970000285, 145.328126999998 -38.1146960000285, 145.328502999998 -38.1147450000286, 145.328541999998 -38.1147230000285, 145.329201999998 -38.1148100000285, 145.329230999998 -38.1148410000286, 145.329432999998 -38.1148680000286, 145.329445999998 -38.1148050000286, 145.331763999998 -38.1151110000286, 145.331823999998 -38.1148260000285, 145.331969999998 -38.1148450000286, 145.331997999998 -38.1148770000286, 145.332199999998 -38.1149030000285, 145.332310999998 -38.1143800000286, 145.332349999998 -38.1143580000286, 145.332383999998 -38.1141980000286, 145.331698999998 -38.1141080000286, 145.331664999998 -38.1140760000285, 145.331665999998 -38.1137740000286, 145.329663999998 -38.1137730000286, 145.329715999998 -38.1135260000286, 145.329513999998 -38.1134990000286, 145.329185999998 -38.1134990000285, 145.329186999998 -38.1133060000285, 145.329204999998 -38.1132090000285))\nAYCA-TXGI1\tPlenty River Views\tReady for service\tPOLYGON ((145.109534845624 -37.4982092374781, 145.110036321648 -37.4982100159115, 145.110152841772 -37.4982098543433, 145.110147469408 -37.4982770193794, 145.110201956962 -37.4982771465493, 145.110200075894 -37.4985841812038, 145.110538587979 -37.4985849192877, 145.112281976876 -37.4987990280562, 145.112299567348 -37.4991178872748, 145.112409549472 -37.499131309315, 145.1123809598 -37.4992787669778, 145.11258577826 -37.4992923289443, 145.112670805949 -37.4992937794522, 145.112799965442 -37.4992616368446, 145.113062210098 -37.4991523847768, 145.113098348725 -37.4991703119254, 145.113112717923 -37.4991609878283, 145.112880134958 -37.4989332207875, 145.112855865217 -37.4987228216992, 145.112832467304 -37.4982491051133, 145.112831024306 -37.4982195976362, 145.113091977166 -37.4977442846628, 145.113102599092 -37.4975416491851, 145.109565416267 -37.4971137492178, 145.109570993524 -37.4973138776862, 145.109534845624 -37.4982092374781))\nAYCA-LTU0Z\tThe Dunes\tReady for service\tPOLYGON ((144.330300660642 -38.305781828889, 144.330124621115 -38.3056225129328, 144.329501528274 -38.3055545736162, 144.329478889779 -38.3056593741094, 144.329508255401 -38.3056626618096, 144.329456074683 -38.3059329219072, 144.329297876939 -38.3059139569955, 144.329246301946 -38.3061810745577, 144.329137747768 -38.3063138210947, 144.329157852093 -38.3063162312533, 144.329054699904 -38.3068504661159, 144.329034595438 -38.3068480559344, 144.32903107496 -38.3069934035643, 144.329108751128 -38.3070027061838, 144.329057174438 -38.3072698235648, 144.329102374597 -38.3072752422545, 144.329050765224 -38.3075425274456, 144.329017534841 -38.3075385455483, 144.328989211971 -38.3076809085831, 144.329106105906 -38.3076949220493, 144.329054528564 -38.3079620393827, 144.327468765094 -38.3077719244952, 144.327470177719 -38.3077537898272, 144.32729261744 -38.3077261500525, 144.327288746442 -38.3077461949252, 144.326113498294 -38.3076052798483, 144.326118745159 -38.307576550665, 144.32596035532 -38.3075585907408, 144.325905368764 -38.307859664488, 144.325719837597 -38.3078905402495, 144.325789871562 -38.3081499735742, 144.32575765543 -38.3083176528272, 144.329696378431 -38.3087891946431, 144.329747947842 -38.3085220762342, 144.329782331444 -38.3083439977764, 144.329635450901 -38.3083263885831, 144.329751444592 -38.3077342619201, 144.329781701967 -38.307579801678, 144.329788851435 -38.3074894120599, 144.329788587281 -38.3074042642243, 144.329778451124 -38.3072961162315, 144.329713068171 -38.3068947297659, 144.329709845255 -38.3068168873497, 144.329732248098 -38.3066855997462, 144.329787813013 -38.3065625009134, 144.330301094377 -38.3057822214183, 144.330300660642 -38.305781828889))\nAYCA-1ZAGER\tBunnings Warehouse Glendale\tContracted\tPOLYGON ((151.627208999998 -32.9423760000163, 151.626414379905 -32.941900587054, 151.624604013296 -32.942643669792, 151.624585487646 -32.9427536048266, 151.624505799999 -32.9428614400166, 151.623919999999 -32.9450260000162, 151.624367999998 -32.9450590000163, 151.624797999998 -32.9448180000164, 151.627208999998 -32.9423760000163))\nAYCA-J3RSC\tNabilla Riverlinks\tReady for service\tPOLYGON ((148.959075130306 -21.155124074927, 148.958918523618 -21.1565168291228, 148.959340037465 -21.1565623472393, 148.959535929903 -21.1565469938344, 148.959935039166 -21.1565930983515, 148.959939243758 -21.1565282910277, 148.96191070372 -21.1567193800611, 148.962137531719 -21.156742547271, 148.962181922055 -21.1563600933911, 148.962233786776 -21.1562200431098, 148.962278385136 -21.1558521577348, 148.963364459394 -21.1559662263914, 148.963411902033 -21.1555917978519, 148.959707579565 -21.1552172965572, 148.959476800038 -21.1551628214452, 148.959075130306 -21.155124074927))\nAYCA-1MF8QB\tTindal Avenue, Beeliar\tUnder construction\tPOLYGON ((115.808323 -32.1345160000132, 115.8083 -32.1360540000132, 115.808936 -32.1360500000132, 115.808953 -32.1359260000131, 115.809095 -32.1358790000132, 115.809731 -32.1358790000131, 115.809868 -32.1359080000132, 115.80987 -32.1360990000131, 115.80995 -32.1361640000131, 115.810061 -32.1361660000132, 115.810096 -32.1361660000132, 115.810382 -32.1361640000131, 115.810486 -32.1361500000132, 115.810521 -32.1361450000131, 115.810587 -32.1360680000132, 115.810711 -32.1359460000131, 115.811003 -32.1359030000132, 115.811003 -32.1357760000132, 115.811166212439 -32.1357759911344, 115.811162797541 -32.1343599632661, 115.808342 -32.1343600000131, 115.808341 -32.1343880000132, 115.808322 -32.1343880000132, 115.808323 -32.1344860000131, 115.808323 -32.1345160000132))\n10663\tTapping The Kestrels\tReady for service\tPOLYGON ((115.79255104064941 -31.722027374956312, 115.79211115837097 -31.721169522773415, 115.791574716568 -31.720165643116353, 115.79317331314087 -31.719490299775504, 115.79326987266541 -31.719517678655283, 115.79358100891113 -31.719389910480469, 115.79365611076355 -31.719545057526979, 115.79350590705872 -31.719700204313817, 115.7938814163208 -31.720448555756285, 115.79365611076355 -31.720548943904841, 115.79377412796021 -31.720813603048075, 115.79492211341858 -31.720840981537012, 115.79492211341858 -31.721634954198308, 115.79334497451782 -31.721662332444634, 115.79255104064941 -31.722027374956312))\n154\tWater Edge\tReady for service\tPOLYGON ((145.32787449389329 -38.070486195965572, 145.3273058655825 -38.07340011342886, 145.32902247935485 -38.073450789227323, 145.32940871744933 -38.071457514684667, 145.32900102168392 -38.070773369799539, 145.32863624126031 -38.070511534878605, 145.32787449389329 -38.070486195965572))\nAYCA-JU3C3\tZuccoli\tReady for service\tPOLYGON ((131.007866215672 -12.5038714941515, 131.007916152222 -12.5041492536344, 131.007983188525 -12.5040070844803, 131.008151463109 -12.5038993822807, 131.008399781663 -12.5038483515585, 131.008867850134 -12.5038482305362, 131.009171428951 -12.5037799943424, 131.009451911398 -12.5036470312843, 131.009695204072 -12.5034560224142, 131.010041797849 -12.5030279476868, 131.010158868792 -12.5029027951424, 131.010292845156 -12.5027952504833, 131.010349441427 -12.5028447202217, 131.010441510985 -12.5027905297825, 131.010618919349 -12.5029130775801, 131.010859291588 -12.5027831301052, 131.010967103322 -12.5027327594304, 131.010970221661 -12.5026724951036, 131.011087727946 -12.5026057393334, 131.011059000238 -12.5025589998505, 131.011088000238 -12.5024889998505, 131.011238500254 -12.5024414999012, 131.011187643448 -12.5022903282973, 131.010681463859 -12.5024464100788, 131.01060752149 -12.5024128160764, 131.010503731199 -12.5021670652956, 131.010827413969 -12.5020350873567, 131.010733340176 -12.5018059002426, 131.009962744669 -12.5020809024783, 131.010180657961 -12.5026474707341, 131.009646030105 -12.5032082454168, 131.009133694444 -12.5020790750633, 131.008808205838 -12.5021830701917, 131.008743764846 -12.5020296789048, 131.008684117843 -12.501909029935, 131.008236839926 -12.5016755897844, 131.008216470088 -12.5017152494069, 131.008076281029 -12.5017771074502, 131.006606013492 -12.5021740006883, 131.006723965907 -12.5025953453682, 131.006886879939 -12.5030039021164, 131.007132890841 -12.5033701171805, 131.007528707412 -12.5038336720477, 131.007866215672 -12.5038714941515))\n17117399\tKooringa Valley - stage 1\tCheck with carrier\tPOLYGON ((151.901484128 -27.5173340365, 151.901533088 -27.517492988500003, 151.901425088 -27.517887982, 151.901425088 -27.518437987000002, 151.901260928 -27.5192289915, 151.900940896 -27.519281994, 151.900711936 -27.519296035500002, 151.90030512 -27.519224033500002, 151.900277056 -27.519426997, 151.900679872 -27.5194839585, 151.900774912 -27.519494041, 151.90078896 -27.5195099695, 151.900792928 -27.519535980500002, 151.90090992 -27.5195349815, 151.900911008 -27.519508989000002, 151.901250112 -27.519436987000002, 151.901286112 -27.519596013, 151.901448832 -27.519553981, 151.901607968 -27.5195259905, 151.901835136 -27.519498000000002, 151.90206192 -27.519498000000002, 151.902387008 -27.519508989000002, 151.902613088 -27.519549023, 151.90266096 -27.519342026500002, 151.902836992 -27.519240961, 151.903023136 -27.519265973, 151.90313616 -27.519104967500002, 151.903181888 -27.518922983, 151.903268992 -27.5186610045, 151.903325152 -27.518460039, 151.903376992 -27.518293983, 151.90342992 -27.5181689785, 151.90349616 -27.518022995000003, 151.903575008 -27.5178570315, 151.90364016 -27.5177269765, 151.903688032 -27.517659026, 151.903748896 -27.517474988, 151.90378704 -27.517299034500002, 151.903870912 -27.517133977500002, 151.90347312 -27.5170059945, 151.903157056 -27.5168809715, 151.90272 -27.5167670485, 151.902181088 -27.516729956000002, 151.901602912 -27.5166829845, 151.901538112 -27.517043975, 151.901484128 -27.5173340365))\nAYCA-1N5EWQ\tThe Rise\tContracted\tPOLYGON ((146.561114 -38.1779480000299, 146.561467 -38.1780050000299, 146.561409 -38.1782710000299, 146.562791 -38.1784950000299, 146.562841 -38.1782640000299, 146.56288 -38.1780860000299, 146.563036 -38.17737500003, 146.563086 -38.1771530000299, 146.563349 -38.1759450000299, 146.561558 -38.17565500003, 146.561379 -38.1756260000299, 146.561155 -38.1755900000299, 146.561078 -38.1759430000299, 146.561047 -38.1760880000299, 146.560891 -38.1767990000299, 146.560842 -38.1770210000299, 146.560656 -38.1778740000299, 146.560823 -38.1779010000299, 146.56087 -38.1779540000299, 146.560863 -38.1779840000299, 146.561043 -38.1780090000299, 146.561049 -38.1779830000299, 146.561114 -38.1779480000299))\nAYAA-FI1F0\tCliftleigh Residential Estate\tReady for service\tPOLYGON ((151.514588914151 -32.7895661017861, 151.514543960109 -32.7894455161482, 151.514256506648 -32.7893193614714, 151.514218629698 -32.7893809377125, 151.512232743618 -32.7899091165931, 151.512353486555 -32.7903311529261, 151.51250887192 -32.7902895172971, 151.512701272804 -32.7908056459873, 151.512544976649 -32.7908478434182, 151.512626985575 -32.7909672814502, 151.512817697928 -32.7914787711759, 151.513213900161 -32.7913676609727, 151.513314072455 -32.7916197575832, 151.513289281457 -32.7917125599966, 151.513501417917 -32.7917198914147, 151.513518200593 -32.7917511939006, 151.513556690954 -32.7917429228395, 151.513637961545 -32.7919672105073, 151.514126461035 -32.7918377003828, 151.514146563037 -32.7918323544081, 151.514995246068 -32.7904504153329, 151.515252156465 -32.7905631583599, 151.515523143557 -32.7905333936921, 151.515807092971 -32.7906586008612, 151.516102736583 -32.7901779629011, 151.515819425717 -32.7900517199147, 151.515948612372 -32.789841695947, 151.515778072147 -32.789766853865, 151.515734881064 -32.7897783884741, 151.515060298342 -32.789482341694, 151.515046642861 -32.7894458595006, 151.515075326227 -32.7893992283587, 151.514890574904 -32.7893181475107, 151.514743712536 -32.7895249285982, 151.514588914151 -32.7895661017861))\nAYCA-R8A12\tCormiston Upper\tContracted\tPOLYGON ((147.080731 -41.4003750000277, 147.080488 -41.4003820000239, 147.080373 -41.4004750000239, 147.080297 -41.4005410000239, 147.080067 -41.400681000024, 147.07990044 -41.4007619400276, 147.07968516 -41.4009045000275, 147.079623 -41.4009180000239, 147.079519 -41.4009240000239, 147.079291330219 -41.4009021621176, 147.07897848 -41.4009063000276, 147.07875852 -41.4009326700276, 147.078663 -41.4009730000239, 147.078213 -41.401234000024, 147.078149 -41.4012480000239, 147.07805544 -41.4012709800276, 147.077929590225 -41.4012431311855, 147.078485 -41.4017650000277, 147.079867 -41.4025570000277, 147.08070288 -41.4030353400276, 147.08168964 -41.4021509100275, 147.0813336 -41.4019051200276, 147.08147616 -41.4017766000275, 147.08108412 -41.4014410800276, 147.081623 -41.4012170000277, 147.08164608 -41.4012072600277, 147.08168676 -41.4011987100275, 147.08172816 -41.4012049200275, 147.08176164 -41.4012246300275, 147.08177928 -41.4012535200275, 147.08176776 -41.4012107700276, 147.0817314 -41.4011521800275, 147.081758 -41.4009300000277, 147.081656 -41.4010180000277, 147.081386 -41.4011300000277, 147.081185 -41.4007440000277, 147.081034 -41.4004990000277, 147.080731 -41.4003750000277))\nAYCA-1J45BM\tCarinity Aged Care - Fairfield Waters\tUnder construction\tPOLYGON ((146.807784719803 -19.3082003990128, 146.808006839803 -19.3080384890131, 146.808203759803 -19.3079225690132, 146.80838844 -19.3078278899104, 146.808579599803 -19.3077458090135, 146.80877652 -19.3076765999104, 146.80897776 -19.3076207099104, 146.80918296 -19.3075784099103, 146.809390679803 -19.3075499690143, 146.8096002 -19.3075353899104, 146.80981008 -19.3075348499103, 146.80996704 -19.3075449299104, 146.810643119803 -19.3076111690155, 146.81083788 -19.3076119799104, 146.81102904 -19.3075767899103, 146.81120904 -19.3075069499104, 146.81136528 -19.3074090299104, 146.81150856 -19.3072743899104, 146.81161764 -19.3071203099103, 146.811693239804 -19.3069488590164, 146.81173104 -19.3067729999103, 146.811619799804 -19.3067621090164, 146.811591359804 -19.3070228390164, 146.8106154 -19.3069271699104, 146.8106496 -19.3066125299103, 146.81044116 -19.3065920999104, 146.810406959804 -19.3069067390153, 146.809791359804 -19.3068464390147, 146.809825559804 -19.3065317990147, 146.80962684 -19.3065123599104, 146.80959264 -19.3068269999103, 146.80727928 -19.3066002899104, 146.80731348 -19.3062856499104, 146.80659996 -19.3062156299104, 146.80656576 -19.3065288299104, 146.806072559803 -19.3069136690113, 146.80711512 -19.3081186799104, 146.80746972 -19.3078364399105, 146.807784719803 -19.3082003990128))\n10700\tWannanup-Port Bouvard North\tReady for service\tPOLYGON ((115.65177261829376 -32.592785999107569, 115.64907431602478 -32.592785999107569, 115.64913332462311 -32.593075255004933, 115.64883828163147 -32.593364509968644, 115.64835011959076 -32.593274117892769, 115.64777612686157 -32.594101201987286, 115.64790219068527 -32.59413689947678, 115.64982533454895 -32.595222046938495, 115.65177261829376 -32.592785999107569))\n10155\tBanksia Grove\tReady for service\tPOLYGON ((115.80467998981476 -31.696228093465429, 115.80216944217682 -31.696218964880938, 115.80220699310303 -31.693895710930516, 115.80305993556976 -31.69387745330171, 115.80305457115173 -31.694233476415231, 115.80469071865082 -31.69422434763451, 115.80467998981476 -31.696228093465429))\nAYCA-18GJLW\tAurora Estate\tContracted\tPOLYGON ((145.001675999995 -37.6146450000259, 145.002395999995 -37.6149920000259, 145.002468999995 -37.6148820000259, 145.003605999995 -37.6154760000258, 145.003829999995 -37.6151970000259, 145.004035999995 -37.6152020000259, 145.004447999995 -37.6146430000259, 145.004520999995 -37.6146350000259, 145.004945999995 -37.6147280000259, 145.004963999995 -37.6146210000259, 145.005051999995 -37.6146410000259, 145.005246999995 -37.6142440000259, 145.005227999995 -37.6141990000259, 145.005424999995 -37.6140190000259, 145.005344999995 -37.6140350000259, 145.003835999995 -37.6133170000258, 145.003299999995 -37.6131730000258, 145.002221999995 -37.6130460000259, 145.002148999995 -37.6135130000259, 145.001769999995 -37.6145130000259, 145.001675999995 -37.6146450000259))\n17252433\tChurchfield\tCheck with carrier\tPOLYGON ((150.785196832 -34.1031509975, 150.786352096 -34.104445017, 150.78763296 -34.1038839675, 150.78798288 -34.103730954, 150.789737152 -34.103261979, 150.790727168 -34.103396973500004, 150.790938848 -34.102176029, 150.791208128 -34.1019320325, 150.79119984 -34.1019019885, 150.791187968 -34.1018399765, 150.791180032 -34.1017790375, 150.791177152 -34.1017479945, 150.79117392 -34.1016859825, 150.79117392 -34.1016550135, 150.79118112 -34.101601012, 150.791182912 -34.101531008, 150.79102416 -34.1016910145, 150.79073616 -34.1017070355, 150.790637152 -34.101728014500004, 150.790552928 -34.1017669755, 150.79048416 -34.1018260275, 150.790447072 -34.1018849685, 150.79034592 -34.101941042, 150.790092128 -34.101912959, 150.78999888 -34.102428036, 150.790068 -34.102539998000005, 150.78940416 -34.102836997000004, 150.78923712 -34.102583991, 150.787005856 -34.1033339625, 150.78638016 -34.1026389915, 150.786352096 -34.102636013, 150.785739008 -34.1030109525, 150.785645056 -34.1030330045, 150.78562416 -34.1030600145, 150.785605088 -34.103096996, 150.785424 -34.1030140235, 150.785196832 -34.1031509975), (150.790938848 -34.102176029, 150.79083984 -34.1027430355, 150.790455008 -34.102696045500004, 150.790508992 -34.102382045, 150.790938848 -34.102176029))\n10374\tEglington-Allara\tReady for service\tPOLYGON ((115.66079020500183 -31.577557425927434, 115.66150903701782 -31.576931317386926, 115.66155731678009 -31.575624245128754, 115.66138029098511 -31.575592253619931, 115.66157877445221 -31.574810743351804, 115.66097259521484 -31.574792462331445, 115.66097259521484 -31.574646214039479, 115.66079556941986 -31.574655354564463, 115.66080093383789 -31.574801602842079, 115.66081166267395 -31.574970702127068, 115.65953493118286 -31.574993553358265, 115.65942764282227 -31.575002693849189, 115.65918624401093 -31.574998123603834, 115.65918624401093 -31.575331750925177, 115.65903604030609 -31.575336321154168, 115.65903604030609 -31.575436866135231, 115.65908968448639 -31.57543229591116, 115.65908432006836 -31.575724789799278, 115.65988898277283 -31.575743070636808, 115.65988898277283 -31.575971580803511, 115.65965831279755 -31.576241222079776, 115.65944910049438 -31.576154388533588, 115.6588214635849 -31.576136107776705, 115.6585693359375 -31.576433169631731, 115.66079020500183 -31.577557425927434))\nAYAA-G53SW\tGlenmore Ridge\tReady for service\tPOLYGON ((150.679555616151 -33.7991333865018, 150.679510353932 -33.7993401728492, 150.679504221334 -33.799369267155, 150.679428378748 -33.7996142063293, 150.679201052514 -33.8005579472692, 150.679118930331 -33.8009119788959, 150.679166407406 -33.8009418996029, 150.679183870476 -33.8009442719477, 150.679192309704 -33.8009328791516, 150.679533398256 -33.800978903573, 150.679536227144 -33.8009642916269, 150.679834679924 -33.8010045622249, 150.680340836347 -33.8010792917545, 150.680162656852 -33.8019847651041, 150.680143837752 -33.8021085186825, 150.680083784926 -33.8024221177943, 150.680382243068 -33.8024623872814, 150.680389487241 -33.8024694291038, 150.680406961224 -33.8024717464532, 150.68054741914 -33.8025103234439, 150.680572961562 -33.8024927463657, 150.680749897865 -33.8015787630616, 150.680883479593 -33.8009102109001, 150.680944218932 -33.8008706357231, 150.680979141777 -33.8008753972941, 150.681378035199 -33.8009286698784, 150.681546862902 -33.8007422234539, 150.681597681004 -33.800479700229, 150.681299678564 -33.8004371112884, 150.681588247817 -33.7989463706296, 150.681442512361 -33.7989066719001, 150.681407268454 -33.7989040389834, 150.681152593968 -33.7988945745512, 150.680999669338 -33.7989021092644, 150.680967187434 -33.7989049632007, 150.680772648149 -33.7989279094999, 150.680565896051 -33.7989774322755, 150.680109941934 -33.7990769615587, 150.679634642858 -33.7990748879008, 150.679685495539 -33.7985315609716, 150.679668019503 -33.7985292587081, 150.679662504408 -33.7985584390378, 150.679555616151 -33.7991333865018), (150.680567514446 -33.8009985073084, 150.680443625811 -33.8009845931522, 150.680453233193 -33.8009372822929, 150.680380549186 -33.8009295440419, 150.680381752341 -33.8008849705225, 150.680369262524 -33.8008847355531, 150.680379924074 -33.8008241236848, 150.680474023728 -33.8008357397924, 150.680475705313 -33.8008155146803, 150.680533570615 -33.8008225620324, 150.680531354156 -33.8008346743851, 150.680587952509 -33.8008404648197, 150.680571019895 -33.8009531924208, 150.680567514446 -33.8009985073084))\nAYCA-198O38\tGlenview Estate\tUnder construction\tPOLYGON ((151.898128 -27.5569409999816, 151.897742 -27.5568209999816, 151.896202 -27.5564889999816, 151.895824 -27.5585959999816, 151.896063 -27.5586199999817, 151.896157 -27.5585709999817, 151.896333 -27.5586739999817, 151.896435 -27.5586499999816, 151.897193 -27.5587539999816, 151.897801 -27.5588379999817, 151.897998 -27.5588239999817, 151.898278 -27.5588629999816, 151.898606 -27.5570359999816, 151.898128 -27.5569409999816))\n10577\tSecret Harbour\tReady for service\tPOLYGON ((115.76191484928131 -32.412162780362479, 115.76135158538818 -32.412162780362479, 115.76075077056885 -32.411823125898366, 115.75990855693817 -32.411216273406694, 115.75977981090546 -32.411075881577375, 115.75881958007812 -32.411134755596905, 115.75796127319336 -32.41107135280506, 115.75754821300507 -32.410591301649887, 115.75801491737366 -32.410147478498857, 115.75838506221771 -32.4102561700846, 115.75871765613556 -32.41037391915475, 115.75911998748779 -32.4102969293955, 115.75916826725006 -32.41042826482763, 115.75937211513519 -32.410342217497131, 115.75957059860229 -32.410632060809448, 115.7597690820694 -32.410591301649887, 115.75967788696289 -32.410459966455029, 115.75996220111847 -32.410319573449158, 115.76115310192108 -32.409807816449707, 115.76145350933075 -32.410088603835248, 115.76178073883057 -32.410754338177625, 115.76191484928131 -32.412162780362479))\n10216\tClarkson-Somerly\tReady for service\tPOLYGON ((115.72820484638214 -31.692362057588973, 115.72839796543121 -31.692603974829602, 115.72826385498047 -31.692677006325475, 115.72822630405426 -31.692740908837223, 115.72830140590668 -31.693749649799575, 115.72818338871002 -31.693763343040363, 115.72822093963623 -31.694023514231485, 115.72888076305389 -31.693936790582175, 115.72935819625854 -31.693859195669333, 115.7295835018158 -31.69384093803335, 115.72958886623383 -31.693955048199285, 115.73025405406952 -31.693863760077772, 115.73049545288086 -31.693795293927685, 115.73076367378235 -31.693681183565293, 115.73085486888885 -31.693557944216312, 115.73092997074127 -31.693416446984148, 115.73091924190521 -31.693357109370961, 115.73101580142975 -31.693229305152144, 115.7309353351593 -31.693124322983572, 115.73089241981506 -31.692900664924057, 115.73076367378235 -31.692435089275239, 115.73054373264313 -31.691974075791936, 115.73018968105316 -31.691992333795234, 115.72999656200409 -31.691955817785068, 115.72983026504517 -31.691882785721621, 115.72968006134033 -31.691777802029705, 115.72958886623383 -31.69169107628159, 115.72925627231598 -31.691818882618936, 115.72897732257843 -31.691946688780284, 115.72856962680817 -31.692142962185319, 115.72820484638214 -31.692362057588973))\nAYCA-WDCA1\tThe Ponds\tReady for service\tPOLYGON ((150.898332999986 -33.7064140000126, 150.898297999986 -33.7064870000125, 150.898250999986 -33.7064990000125, 150.898161996854 -33.7064920043531, 150.897830996854 -33.7064570043529, 150.897568999986 -33.7064370000125, 150.897432571128 -33.7064540300016, 150.897316065055 -33.707550033639, 150.897265999986 -33.7076680000125, 150.897227999986 -33.7080260000125, 150.89724845007 -33.708178342076, 150.897168374046 -33.708930001163, 150.898104498703 -33.708935515948, 150.898086408648 -33.7100616033267, 150.898204564868 -33.7101040850097, 150.898582111888 -33.7102315154327, 150.899179822143 -33.7089849022244, 150.898528961945 -33.7087656161383, 150.898693567129 -33.7084113177061, 150.898588056332 -33.7083761558194, 150.898599435815 -33.7083433196976, 150.898625439971 -33.7083492289086, 150.898854933741 -33.7078726323344, 150.898833082676 -33.7078674407372, 150.898906470227 -33.7077229541015, 150.89892404356 -33.7077288873971, 150.899163204192 -33.707233314527, 150.89919836972 -33.7070891136855, 150.89930477467 -33.7068519131516, 150.898655370549 -33.7066423141205, 150.898726699459 -33.7064765866622, 150.898447194962 -33.7063863318084, 150.898367352649 -33.7063521652204, 150.898332999986 -33.7064140000126))\nAYAA-ESVR8\tQuarters\tReady for service\tPOLYGON ((145.253535845232 -38.0985862731359, 145.253595876639 -38.0983023050657, 145.254193936639 -38.0983695661542, 145.254297290705 -38.0984846867974, 145.254454093749 -38.0984983804655, 145.254703726768 -38.0972054957603, 145.252787273403 -38.0969418150428, 145.252586619416 -38.0969442663531, 145.252520350455 -38.0971939920742, 145.252162089441 -38.0971613696869, 145.252049625269 -38.0976836584869, 145.250341166558 -38.0974537307241, 145.250261999995 -38.0977480000261, 145.250216999995 -38.0977410000261, 145.250112194369 -38.0982330043263, 145.250764185924 -38.0983077009944, 145.250750365751 -38.0983641872655, 145.251328054093 -38.0984430660457, 145.251391270856 -38.0981466671629, 145.252160539071 -38.0982296265707, 145.252377317403 -38.0982268411835, 145.252322861024 -38.098499559783, 145.252577717833 -38.0985197138907, 145.253086209584 -38.0985899641923, 145.253101943721 -38.0985233793577, 145.253535845232 -38.0985862731359))\n10395\tIluka\tReady for service\tPOLYGON ((115.73339223861694 -31.733395875766995, 115.73350220918655 -31.733243033141708, 115.73331579566002 -31.732806175591136, 115.73323868215084 -31.732802183410804, 115.73316425085068 -31.732405816079257, 115.73370203375816 -31.732421784867849, 115.73428206145763 -31.732470831844147, 115.73480810970068 -31.73238585508966, 115.73578996583819 -31.732128928253879, 115.73637208901346 -31.732078027569795, 115.73688983917236 -31.732122939939561, 115.7365357875824 -31.734235365093621, 115.7362300157547 -31.733998118881097, 115.73612004518509 -31.733788246725133, 115.73565736413002 -31.733824746264681, 115.73568351566792 -31.733703841484893, 115.73526978492737 -31.733653654548831, 115.73525369167328 -31.733581795933958, 115.73499083518982 -31.733532179238782, 115.73370337486267 -31.733592061453788, 115.73338687419891 -31.733439219152146, 115.73339223861694 -31.733395875766995))\n10004\tAveley-Vale\tReady for service\tPOLYGON ((115.98265528678894 -31.793775915189809, 115.98242998123169 -31.793903580730287, 115.98241925239563 -31.794332170897974, 115.98002672195435 -31.794268338445747, 115.98004817962646 -31.794168030217509, 115.97961902618408 -31.794158911282256, 115.97962975502014 -31.793930937608881, 115.9791362285614 -31.793921818650261, 115.97911477088928 -31.792927846766137, 115.97971558570862 -31.792955203933502, 115.97971558570862 -31.79286401334409, 115.98116397857666 -31.792882251469173, 115.98118543624878 -31.792553964667171, 115.98191499710083 -31.792435416368807, 115.98265528678894 -31.793775915189809))\nAYCA-IKFNQ\tCaddens Road, Kingswood\tReady for service\tPOLYGON ((150.732427925935 -33.7749321775366, 150.732162192594 -33.7762734768354, 150.73239442496 -33.776383321049, 150.735339497815 -33.7768426683368, 150.735593478084 -33.7753320583263, 150.732430083364 -33.7749333641979, 150.732427925935 -33.7749321775366))\n10613\tSecret Harbour-Anstey Park\tReady for service\tPOLYGON ((115.7690455019474 -32.405161818926416, 115.77081844210625 -32.405159306708448, 115.77117819339037 -32.405159872842077, 115.7715567201376 -32.405162703510193, 115.77195033431053 -32.405160438975706, 115.77229768037796 -32.405161005109342, 115.77304668724537 -32.405162703510193, 115.77312413603067 -32.405306625175626, 115.77295482158661 -32.405624915040832, 115.77291190624237 -32.405692036889, 115.77278718352318 -32.405874047595631, 115.77260881662369 -32.406139844842272, 115.77246531844139 -32.406246276747147, 115.77248677611351 -32.406282508856343, 115.77249616384506 -32.406297794273044, 115.77202945947647 -32.406398564733209, 115.77141925692558 -32.406452346674328, 115.77036246657372 -32.406409321123988, 115.76986625790596 -32.40637025843553, 115.76963491737843 -32.406357237535623, 115.76963558793068 -32.406551984712131, 115.76936468482018 -32.406551984712131, 115.76920710504055 -32.4065689684576, 115.7690991461277 -32.406251053442062, 115.76903644949198 -32.40606778739928, 115.76904483139515 -32.40595472096409, 115.76904684305191 -32.405162951193653, 115.7690455019474 -32.405161818926416))\nAYCA-1FBKCC\tVantage\tUnder construction\tPOLYGON ((152.11326132 -32.7242332800109, 152.113110108848 -32.7250027179318, 152.113411 -32.7250450000161, 152.113392 -32.7250960000163, 152.113291 -32.7252240000162, 152.113255 -32.7253200000162, 152.113063 -32.7262960000162, 152.114698 -32.7263680000162, 152.1149 -32.7263360000162, 152.115063 -32.7262310000162, 152.1156 -32.7255110000163, 152.115918 -32.7247040000163, 152.115966 -32.7243660000162, 152.11534752 -32.7243033000158, 152.115323 -32.7244790000162, 152.114741640003 -32.7243807900158, 152.113736520001 -32.7243684600158, 152.113565879188 -32.7242758499024, 152.11326132 -32.7242332800109))\n10118\tCarramar-Banksia Grove\tReady for service\tPOLYGON ((115.79432129859924 -31.700067510729689, 115.79385995864868 -31.70021356191501, 115.79384922981262 -31.702942851142137, 115.79501867294312 -31.702961106987008, 115.79538345336914 -31.702979362828287, 115.7955014705658 -31.703070641980769, 115.79615592956543 -31.703070641980769, 115.79668164253235 -31.702495581820514, 115.79513669013977 -31.70133632272394, 115.79432129859924 -31.700067510729689))\nAYCA-13X8E1\tRiemore Downs Estate\tUnder construction\tPOLYGON ((153.111054854636 -27.8880325616494, 153.1104282 -27.8878955399838, 153.11038932 -27.8878163399838, 153.10855944 -27.8880881399838, 153.10809288 -27.8877602699838, 153.107702985028 -27.8882495597891, 153.107699918897 -27.888250292332, 153.107605486388 -27.8884057177254, 153.107606310844 -27.8884084420296, 153.1068552 -27.8891225999838, 153.10800576 -27.8893916999837, 153.108666259328 -27.8893892743226, 153.10925892 -27.8893392299838, 153.110493 -27.8894414699838, 153.110557050247 -27.8888150413623, 153.110751442809 -27.8886543830541, 153.111054854636 -27.8880325616494))\n10544\tMurray-Murray River Country Estate\tReady for service\tPOLYGON ((115.85716210305691 -32.606426477329705, 115.85770223289728 -32.606536344054923, 115.85802426561713 -32.606602574702066, 115.85823498666286 -32.606643386313124, 115.8582504093647 -32.606949861147662, 115.85847906768322 -32.606952120605747, 115.85848074406385 -32.60695960506024, 115.85849717259407 -32.60695466249603, 115.85852164775133 -32.607083027861037, 115.85851175710559 -32.607083380900853, 115.85851661860943 -32.607105198758042, 115.85857696831226 -32.60723907131883, 115.85866648703814 -32.607361646441625, 115.85878685116768 -32.607471794450355, 115.8589219674468 -32.607558438826452, 115.85907988250256 -32.607623618430715, 115.85920594632626 -32.607655250600736, 115.8592401444912 -32.607703828554335, 115.85920393466949 -32.607887972650857, 115.85910268127918 -32.608186217500958, 115.85905306041241 -32.608433624407049, 115.85885860025883 -32.609415460872384, 115.85847605019808 -32.609362082628117, 115.85789903998375 -32.609230755066307, 115.857447758317 -32.609050567689643, 115.85703000426292 -32.608773225282334, 115.85687108337879 -32.608616760856904, 115.85669539868832 -32.608446174781982, 115.85652206093073 -32.608162899506041, 115.8564667403698 -32.608069415644039, 115.85639633238316 -32.6078558992671, 115.85634000599384 -32.607600017859106, 115.85680268704891 -32.607524891390796, 115.85676044225693 -32.607263360411793, 115.8567825704813 -32.6070597272309, 115.85679329931736 -32.606925007105012, 115.85686437785625 -32.606700473111566, 115.85690058767796 -32.606591595104568, 115.85694618523121 -32.606477068290296, 115.85712656378746 -32.606517738741722, 115.85716210305691 -32.606426477329705))\nAYCA-RJUQM\tGoogong Township\tReady for service\tPOLYGON ((149.235661448984 -35.4144397061314, 149.234589505706 -35.4161292029528, 149.234732410168 -35.4161981346375, 149.234981345186 -35.4163140417611, 149.235003211004 -35.4162814853941, 149.235582725734 -35.4165246814884, 149.235441527756 -35.4167353389466, 149.235340548026 -35.4168710686966, 149.235316552218 -35.4168606629637, 149.235168527541 -35.4170846533869, 149.235324544681 -35.4171578292492, 149.235328254931 -35.4171809830641, 149.235988806722 -35.417477033628, 149.235945313055 -35.4177686577357, 149.236477414298 -35.4178712833694, 149.236464502094 -35.4179741127799, 149.236797611059 -35.4180075541972, 149.236905034571 -35.4172678294736, 149.236834731564 -35.417101242196, 149.237448536168 -35.4158070927992, 149.23736267344 -35.4156840643646, 149.237104006471 -35.4153568802435, 149.236865882864 -35.4151264746684, 149.236604493848 -35.4149141389569, 149.236313207589 -35.4147291984542, 149.236000564171 -35.4145681824433, 149.235661448984 -35.4144397061314))\nAYCA-W4ML9\tHeights Durack\tReady for service\tPOLYGON ((130.979350484024 -12.4702565470322, 130.978992209603 -12.4705605156798, 130.979067999994 -12.4706459998883, 130.977204999987 -12.472023999887, 130.976972999987 -12.472242999887, 130.976826999987 -12.4723669998869, 130.977076999994 -12.4726199998883, 130.977698999994 -12.4729519998883, 130.978809980052 -12.4734288935086, 130.978891481184 -12.4732194620933, 130.979139827501 -12.4726602910931, 130.979065569233 -12.4726276434684, 130.979478317747 -12.4722607107723, 130.979521171631 -12.4722627114752, 130.979714517995 -12.4724776031963, 130.979813440757 -12.4723958242816, 130.979999723608 -12.472232638756, 130.979954384183 -12.4721813947583, 130.980234107439 -12.4719394017396, 130.980320990062 -12.4720370682845, 130.980439103509 -12.4719455665429, 130.980548021012 -12.4720647033142, 130.980788313349 -12.4718605831634, 130.979350484024 -12.4702565470322))\nAYCA-1D96Q5\tCasey 4\tReady for service\tPOLYGON ((149.09373520338 -35.1768342022029, 149.095316394242 -35.1763108214862, 149.094611968014 -35.1747709140419, 149.094694463014 -35.1746627990417, 149.095075313357 -35.1740365302207, 149.094717186021 -35.1738789550372, 149.094196701021 -35.1736655610373, 149.094304580007 -35.1734881660462, 149.094329883113 -35.1734478857257, 149.094152338014 -35.1733753640418, 149.093955294007 -35.1732945760463, 149.093908806021 -35.1734303630372, 149.093433290028 -35.1733206050326, 149.093327224863 -35.1732995284712, 149.092968000007 -35.1743330000209, 149.092935000014 -35.1743920000163, 149.092903000014 -35.1744270000165, 149.092852000007 -35.1744660000208, 149.092791000014 -35.1744950000164, 149.092896000007 -35.1746870000209, 149.093000000007 -35.1752100000209, 149.093117000007 -35.175612000021, 149.093682000007 -35.1767200000209, 149.09373520338 -35.1768342022029))\nAYAA-FPRLN\tBluestone Green\tReady for service\tPOLYGON ((144.60797247417 -37.8955127533772, 144.607959224581 -37.8955846711185, 144.608560031657 -37.8956545953094, 144.608636013499 -37.8951333558025, 144.608688681248 -37.8950861391225, 144.608731079939 -37.895148726934, 144.608883039229 -37.8951727163112, 144.608910857145 -37.8950554774338, 144.61016983291 -37.895042384712, 144.610143479986 -37.8945081900184, 144.610206434377 -37.8937797306026, 144.610288017004 -37.8934298306239, 144.609733816435 -37.893348976927, 144.609676593396 -37.8936390202746, 144.609596197307 -37.8936763126891, 144.608366607036 -37.8935400580121, 144.60841197757 -37.8932937571705, 144.607354466035 -37.8931714114016, 144.607110689565 -37.8948926795454, 144.607102852573 -37.8950978263476, 144.60713170735 -37.895098522391, 144.607074444841 -37.8954103449069, 144.60797247417 -37.8955127533772))\nAYCA-1IP7M3\tHunt Club Estate\tContracted\tPOLYGON ((145.300113062036 -38.1112793229141, 145.300417650716 -38.1109160061602, 145.300783398112 -38.1100339893964, 145.300967637882 -38.1090777409909, 145.300618079998 -38.1090357000281, 145.300578999995 -38.1092410000267, 145.298036999995 -38.1089350000266, 145.298064443078 -38.1087646190405, 145.297621999995 -38.1085360000267, 145.297198800008 -38.1089281500188, 145.296690116426 -38.1092414005357, 145.300113062036 -38.1112793229141))\n17319025\tIsaac Views\tCheck with carrier\tPOLYGON ((148.066696096 -21.995396002, 148.0671 -21.9964750145, 148.068367936 -21.998349009000002, 148.068577088 -21.9986569785, 148.070115008 -21.997692, 148.068245888 -21.9955750265, 148.066696096 -21.995396002))\nAYCA-F9XI8\tToolern Waters\tContracted\tPOLYGON ((144.561908358791 -37.7167718217348, 144.561381376416 -37.7167085063055, 144.561120208041 -37.71808016892, 144.560582004757 -37.7180155024347, 144.560568436771 -37.7180867575237, 144.559510404882 -37.7180416209467, 144.558703103481 -37.7179446093597, 144.558691229943 -37.7180069573195, 144.557754986825 -37.7178944438655, 144.557707128411 -37.7181457307036, 144.557663384356 -37.7183754128338, 144.557693658224 -37.7183790511382, 144.557632589286 -37.7186996970547, 144.55920235656 -37.7188883403874, 144.559214229854 -37.7188259923742, 144.559763560132 -37.7188924850628, 144.55977552293 -37.7188296645049, 144.560156753655 -37.7188754729154, 144.560165234011 -37.7188309385319, 144.561118312617 -37.7189454541413, 144.561150535772 -37.718776223141, 144.5617999767 -37.7188542431796, 144.562692530844 -37.7140855144347, 144.562425235596 -37.7140545642052, 144.562002978325 -37.716276882866, 144.561908358791 -37.7167718217348))\n79\tWildflower Ridge\tReady for service\tPOLYGON ((152.92013208417609 -27.690741712392327, 152.92055587319695 -27.690817712756864, 152.92263087563708 -27.689145863095419, 152.92282399468436 -27.688081836891826, 152.92289909653707 -27.686908545977218, 152.9223465614817 -27.686395524126052, 152.921186929 -27.687302434000006, 152.92167869143054 -27.6878277040991, 152.92180207304958 -27.687732701034705, 152.92200055651233 -27.687948832887603, 152.9217377000368 -27.688162589243941, 152.92164382272094 -27.6882029653976, 152.92164650492865 -27.688267092199915, 152.92159822516237 -27.688319343639993, 152.92170014911048 -27.688447597068649, 152.92177793317089 -27.688535474331683, 152.92146679692013 -27.688784855367494, 152.92149093679876 -27.688813356021022, 152.9209893637175 -27.689247990065141, 152.919879338 -27.690143570999997, 152.92013208417609 -27.690741712392327))\n10312\tDawesville-Dawesville Ridge\tReady for service\tPOLYGON ((115.63646256923676 -32.6230624077761, 115.63595294952393 -32.623057889672879, 115.63580274581909 -32.623103070694917, 115.63547551631927 -32.623107588795875, 115.6351912021637 -32.623098552593746, 115.63462793827057 -32.624932882922494, 115.63454747200012 -32.626229542027261, 115.6346333026886 -32.626229542027261, 115.63463866710663 -32.626523207856586, 115.63475668430328 -32.6265277257849, 115.63482105731964 -32.626478028560946, 115.63483715057373 -32.6263560443488, 115.63504099845886 -32.626365080222072, 115.63574373722076 -32.626360562285541, 115.63580811023712 -32.6262611676244, 115.63580274581909 -32.626161772852868, 115.63602805137634 -32.626161772852868, 115.63633918762207 -32.626166290799439, 115.63632309436798 -32.625840998064554, 115.63637137413025 -32.624838004689465, 115.63647329807281 -32.624842522702842, 115.63648402690887 -32.624535297273709, 115.63648134469986 -32.624369930208523, 115.63639014959335 -32.624372189227053, 115.63640356063843 -32.623775806355745, 115.63640356063843 -32.62364026423991, 115.63646525144577 -32.62364026423991, 115.63646256923676 -32.6230624077761))\nAYAA-GHEC9\tProvidence Estate\tReady for service\tPOLYGON ((144.884572459401 -37.6239441054423, 144.884625214039 -37.6239276739825, 144.884769909257 -37.6238892936118, 144.885340381009 -37.6239639121627, 144.885283646437 -37.6242116718416, 144.885296529779 -37.6242119028362, 144.885174082408 -37.6248910673022, 144.885142921004 -37.6248861189013, 144.885126062213 -37.6250263014871, 144.885142540456 -37.62502952447, 144.885022704074 -37.625616307316, 144.88463825176 -37.6255391701817, 144.884559690518 -37.6256475152212, 144.884537414802 -37.62571882186, 144.88459229051 -37.6257315145342, 144.884527819226 -37.6259105388673, 144.886813645042 -37.6264369771446, 144.886875306958 -37.6262444931212, 144.886835710532 -37.6261871964804, 144.886783613187 -37.6261743494401, 144.886840178997 -37.6260294269242, 144.886564381636 -37.6259768323774, 144.886977222009 -37.6238412744661, 144.886839327206 -37.6238149783514, 144.886661162969 -37.623755198918, 144.886451314884 -37.6236233714171, 144.88627984965 -37.6234594714205, 144.886079636654 -37.62338440316, 144.884795203081 -37.6232243737971, 144.884799540585 -37.6232036035812, 144.884463322812 -37.6231677910719, 144.884373282483 -37.6235682448567, 144.884414596904 -37.6236970531365, 144.884471025097 -37.6236891308826, 144.884572459401 -37.6239441054423))\nAYAA-GGXGS\tProvidence Estate\tReady for service\tPOLYGON ((144.892266446432 -37.6249702235692, 144.891684479251 -37.6239276203246, 144.891631643517 -37.6237885554676, 144.891477666507 -37.6235126972395, 144.890896432685 -37.623717942295, 144.890492654673 -37.623822856801, 144.890369090995 -37.6238374732667, 144.890072498498 -37.6238725569215, 144.889929212859 -37.6238541416527, 144.889990944009 -37.6235502752522, 144.890114759592 -37.6233644093468, 144.890162641251 -37.6231287112497, 144.88978244517 -37.6230798474446, 144.889718995301 -37.6230739760312, 144.889761734035 -37.6228604488643, 144.889658213744 -37.6227876764501, 144.888920190709 -37.6226928190335, 144.888741745106 -37.6226703391846, 144.888248047467 -37.622606424881, 144.888210355251 -37.6228206162256, 144.888203583023 -37.6229971388155, 144.888566212912 -37.6230321840709, 144.888662828731 -37.6233665675128, 144.88852539855 -37.6240429934443, 144.888905598494 -37.6240918614187, 144.888789947818 -37.6246610928398, 144.889349074733 -37.6247329351173, 144.889363306818 -37.6246628828765, 144.889721145645 -37.6247088738635, 144.889731387426 -37.62465846118, 144.890039921159 -37.6246981143383, 144.890451140689 -37.6246134224448, 144.890544844527 -37.6249012473354, 144.890571649063 -37.6248957268061, 144.890617081517 -37.6250352782357, 144.890770604068 -37.6250036593637, 144.890867149133 -37.6253002059877, 144.89173157166 -37.6251221688913, 144.891914441207 -37.6250945241052, 144.891978791615 -37.6252098079612, 144.892330797285 -37.6250855072455, 144.892266446432 -37.6249702235692))\n10040\tAveley-Vale\tReady for service\tPOLYGON ((115.98254799842834 -31.771019423816419, 115.98632454872131 -31.770982938937845, 115.98689317703247 -31.770782271848521, 115.98773002624512 -31.771375150628398, 115.98744034767151 -31.771548452938728, 115.98703265190125 -31.771648785706837, 115.98674297332764 -31.771667028016626, 115.98661422729492 -31.771356908261055, 115.98534822463989 -31.771420756531011, 115.98535895347595 -31.771758239511595, 115.98454356193542 -31.771758239511595, 115.98454356193542 -31.772547215189668, 115.98485469818115 -31.772542654655943, 115.98487347364426 -31.772775241588867, 115.98467499017715 -31.77316744568067, 115.98432898521423 -31.77314464316272, 115.98351359367371 -31.77238759637579, 115.98290205001831 -31.771913298846638, 115.98230123519897 -31.771584937594262, 115.9822690486908 -31.77125657517638, 115.98254799842834 -31.771019423816419))\nAYCA-HZYR1\tArbourlea\tReady for service\tPOLYGON ((145.326774694117 -38.0828084141228, 145.326601268981 -38.0837167376541, 145.327144024998 -38.0837814768527, 145.330139519998 -38.0813823900283, 145.327431108912 -38.0810609928174, 145.327184428551 -38.0823530910747, 145.325991141308 -38.0822233730397, 145.325914821918 -38.0827056101528, 145.326774694117 -38.0828084141228))\n17334900\tMinto Renewal Project\tCheck with carrier\tPOLYGON ((150.851014912 -34.036637041, 150.851112832 -34.03793304, 150.851094848 -34.038398962500004, 150.850982176 -34.0389739795, 150.851001952 -34.038979011500004, 150.851027168 -34.0389860415, 150.851053088 -34.03899198, 150.851079008 -34.038998011000004, 150.851104928 -34.039002969, 150.851130848 -34.039008001, 150.851157856 -34.039010961, 150.851184128 -34.039014032000004, 150.851211136 -34.039016992, 150.851238112 -34.039017991, 150.85126512 -34.0390189715, 150.851292128 -34.0390189715, 150.851625856 -34.038961011, 150.851768032 -34.038899998, 150.85216512 -34.0384519835, 150.85245888 -34.038071993500004, 150.852678848 -34.037838986000004, 150.853047136 -34.037358023, 150.852958912 -34.0373439815, 150.852834016 -34.037324001500004, 150.852837952 -34.037315991, 150.85284912 -34.037290979, 150.852858848 -34.037264968, 150.85286784 -34.037238957, 150.852885856 -34.037199996, 150.85290384 -34.037160036, 150.852924 -34.037120964, 150.85294416 -34.0370829835, 150.852963968 -34.0370440225, 150.85298592 -34.037006042, 150.853004992 -34.0369720205, 150.853194016 -34.0367339625, 150.853280032 -34.03665099, 150.853389856 -34.036542987000004, 150.85340496 -34.036529038, 150.853420096 -34.036514016, 150.853433056 -34.0364989755, 150.853446016 -34.0364829545, 150.853458976 -34.036467026000004, 150.853470112 -34.036451005, 150.853480928 -34.0364340035, 150.853491008 -34.036416983500004, 150.853501088 -34.036399982, 150.85351008 -34.0363819815, 150.853542112 -34.036119984500004, 150.853538176 -34.0361010035, 150.85353312 -34.0360810235, 150.853527008 -34.036062024, 150.85352016 -34.036043043, 150.853511872 -34.0360250425, 150.853507936 -34.036017032000004, 150.853505056 -34.0360080225, 150.85320192 -34.036058971500005, 150.851664 -34.035818046, 150.85163808 -34.0358849975, 150.85159488 -34.0360080225, 150.851415968 -34.0364989755, 150.851304 -34.036692023, 150.851014912 -34.036637041))\nAYCA-ICLSQ\tVillage Square Estate\tReady for service\tPOLYGON ((150.85348955162 -33.9539837867809, 150.85345569799 -33.9541870789672, 150.853543110382 -33.9542064121026, 150.853367568046 -33.9552662736903, 150.853517263966 -33.9552993818945, 150.853493569496 -33.9556504760277, 150.855490794032 -33.9560950532072, 150.855511470037 -33.9560214465969, 150.855496179934 -33.9560168389631, 150.855451294934 -33.9559606274298, 150.855532013535 -33.9554732135786, 150.855552007858 -33.9554339674772, 150.855561329848 -33.9554000185975, 150.855566210362 -33.9553742976552, 150.855607457281 -33.9552481341675, 150.855639199142 -33.9549949226385, 150.855667209463 -33.9548250344214, 150.855711433477 -33.9546949026355, 150.85571825157 -33.9546744919056, 150.85576450959 -33.954610399444, 150.855823965281 -33.9545702845066, 150.855893201489 -33.9545515814341, 150.855951417725 -33.9545503850506, 150.856089592381 -33.9545528348576, 150.856125279382 -33.954376101046, 150.85593392561 -33.9543088101618, 150.855909907955 -33.9542410835684, 150.85595413691 -33.9541010698645, 150.856094382914 -33.9536759550149, 150.856130950587 -33.9535374263884, 150.856126442526 -33.9534265562423, 150.855845262799 -33.9533682298151, 150.855835567283 -33.9534541052339, 150.855848489459 -33.9534575917522, 150.855840196898 -33.9535052241816, 150.855816469768 -33.9536180110292, 150.855708220837 -33.9539535909287, 150.855409039501 -33.9538883185117, 150.855385658865 -33.9539668201545, 150.853439918634 -33.9535297493296, 150.853391482942 -33.953802266404, 150.853363367593 -33.9539610629734, 150.85348955162 -33.9539837867809))\nAYCA-1DG0KG\tWolstenholme Drive final stage\tReady for service\tPOLYGON ((147.545286116511 -42.7806744458159, 147.546197948709 -42.7821579972821, 147.54663846012 -42.7827774193882, 147.5494326 -42.781808430025, 147.54762648 -42.780896190025, 147.547278373837 -42.7809301411234, 147.546114587653 -42.7802859691611, 147.545286116511 -42.7806744458159))\nAYCA-F191C\tEdmondson Park South P1\tReady for service\tPOLYGON ((150.854876963875 -33.9813315071457, 150.854965699095 -33.9815807811402, 150.855813954582 -33.9813379967809, 150.85616434321 -33.9819393396364, 150.856795646849 -33.9819430055781, 150.857550173865 -33.9819919164821, 150.857472768542 -33.9813669169512, 150.857507609172 -33.9810247800476, 150.857542449471 -33.9806826431199, 150.857529621484 -33.9803083256057, 150.857568873444 -33.9802671469093, 150.857549529609 -33.9801145330049, 150.857496963753 -33.9800589492644, 150.857327453243 -33.9794097836206, 150.85712504593 -33.9787383614671, 150.856629934788 -33.9788494133276, 150.856332060187 -33.9789162245394, 150.85610251732 -33.9789814538943, 150.855888494806 -33.9790418253087, 150.855998011794 -33.9793004694963, 150.855937007562 -33.9793188177454, 150.856108393633 -33.9797456855128, 150.856129543326 -33.9798250687041, 150.855868367731 -33.9798867990038, 150.855805810139 -33.9799347539805, 150.855816108761 -33.9801346418374, 150.855905216443 -33.9803388935585, 150.855994928166 -33.9805814386868, 150.855969670328 -33.9808788758062, 150.855681740648 -33.9809593011968, 150.855728369612 -33.9810815052793, 150.855250764383 -33.9812190089092, 150.854876963875 -33.9813315071457))\n10603\tSecret Harbour\tReady for service\tPOLYGON ((115.75285837054253 -32.408150707277521, 115.75309071689844 -32.408319975466348, 115.753258690238 -32.408432632044857, 115.75321946293116 -32.408470561615005, 115.75310714542866 -32.408667568678247, 115.75294956564903 -32.408608126937224, 115.75293246656656 -32.408650868383539, 115.75288452208042 -32.408870236415254, 115.75282618403435 -32.408928545763658, 115.75270213186741 -32.408968173454667, 115.75276248157024 -32.409094415840016, 115.75282484292984 -32.409073469806238, 115.75290396809578 -32.409109700780512, 115.75294587761164 -32.409239905724291, 115.75307764112949 -32.409581834334446, 115.75326003134251 -32.4100505688008, 115.75350310653448 -32.410313806292272, 115.75374014675617 -32.410565721022095, 115.75338441878557 -32.410803482594034, 115.7530221529305 -32.411046904506783, 115.7530274335295 -32.411053131570355, 115.75301930308342 -32.411058226440232, 115.75290396809578 -32.411137479934624, 115.75313530862331 -32.411385429703273, 115.75315877795219 -32.411452228839522, 115.75314939022064 -32.411527519332111, 115.75318023562431 -32.411609036787119, 115.75315609574318 -32.411680930592574, 115.75306758284569 -32.411749993879312, 115.75302064418793 -32.411744899048493, 115.75292810797691 -32.411778298489743, 115.75291402637959 -32.411850192160358, 115.75267262756824 -32.412010962051156, 115.75242703780532 -32.411745323617737, 115.75227473862469 -32.411579670698529, 115.75226526707411 -32.41158724219698, 115.75218362733722 -32.411507847574136, 115.75219708029181 -32.411498188597861, 115.75202141655609 -32.4113096614494, 115.7520120497793 -32.411313606424272, 115.75194771867245 -32.411238563419971, 115.75195109238848 -32.41123500763252, 115.7518082857132 -32.411080870302875, 115.7517009973526 -32.410800369053696, 115.75164064764977 -32.41063917243175, 115.75158096849918 -32.41046552131494, 115.75132146477699 -32.409726757327988, 115.75142003595829 -32.40947936910873, 115.75154408812523 -32.409178199926522, 115.75211774557829 -32.408843346169064, 115.75231606140733 -32.408732529964738, 115.7525385171175 -32.408608126937224, 115.75285837054253 -32.408150707277521))\n17340486\tWest Park Industrial Estate\tCheck with carrier\tPOLYGON ((144.740836992 -37.8022170065, 144.740616 -37.8023300045, 144.740299008 -37.8046270015, 144.7422 -37.804801993, 144.742572 -37.8023670045, 144.740836992 -37.8022170065))\nAYAA-H9HQB\tParagon Estate\tReady for service\tPOLYGON ((144.760691293499 -37.9105173700591, 144.760720310293 -37.9105478905962, 144.760686150264 -37.9107448938449, 144.76118587886 -37.910830403521, 144.761229786156 -37.9105682180052, 144.76180044042 -37.9072906382391, 144.758868817631 -37.9069826356865, 144.75878251224 -37.9074648338533, 144.759336298995 -37.9075224904895, 144.75930544728 -37.9077367277902, 144.760272891698 -37.9078445478416, 144.760204911303 -37.9082508724318, 144.760268463294 -37.9083347093819, 144.760206962647 -37.9086420058839, 144.760727193661 -37.9086969844687, 144.760466697052 -37.9103456361847, 144.760185091328 -37.9103149022135, 144.759896696876 -37.9104268068971, 144.760691293499 -37.9105173700591))\nAYAA-FPSHQ\tBridge Inn Rise Estate\tReady for service\tPOLYGON ((145.119855999996 -37.6010320000267, 145.119418867014 -37.6009187793096, 145.119362335957 -37.6009791854008, 145.119106329206 -37.6009302325929, 145.119021999996 -37.6012150000267, 145.118949406741 -37.6014100677166, 145.119334876315 -37.6015291042409, 145.119403045232 -37.6015649437131, 145.119292323884 -37.6017044210783, 145.119181999996 -37.6018920000268, 145.119178999996 -37.6019160000267, 145.119115999996 -37.6020810000268, 145.119083999996 -37.6022430000267, 145.119522962033 -37.6022932935615, 145.119376079996 -37.6032546000267, 145.119386294236 -37.6033799012334, 145.121193843991 -37.6035840720355, 145.121206055133 -37.6035040687316, 145.121211486883 -37.6034684816606, 145.121492519996 -37.6015046400268, 145.120642999996 -37.6013460000267, 145.119855999996 -37.6010320000267))\n194\tAvondale Heights \tReady for service\tPOLYGON ((144.86028228759304 -37.765789677413487, 144.8597243881222 -37.764534424243308, 144.86262117385797 -37.763762602595413, 144.86314688682694 -37.765077239038895, 144.86204181670723 -37.765348644943423, 144.86240659713982 -37.765950823236324, 144.86028228759304 -37.765789677413487))\nAYCA-NLQCQ\tThe Glades\tReady for service\tPOLYGON ((138.601806567167 -34.784286739695, 138.600472089556 -34.7842800193767, 138.600443089346 -34.7852228994259, 138.600456775956 -34.7852264162131, 138.600453221898 -34.7855140398841, 138.600109325602 -34.7855080078748, 138.599889319074 -34.7854927261319, 138.599559637121 -34.7854857358853, 138.599549890995 -34.785882185406, 138.599562379908 -34.7858824287739, 138.599552957762 -34.7862198485706, 138.599540587987 -34.7865567428534, 138.599580915429 -34.7865575843729, 138.59957709201 -34.7866931083629, 138.599424324737 -34.7870542750167, 138.599175104967 -34.7869026524995, 138.598871191297 -34.78678456439, 138.598715682505 -34.7869596967611, 138.598678170799 -34.7869366409352, 138.598596736751 -34.7870259596639, 138.59891727948 -34.7872496154805, 138.598722792391 -34.7874672246627, 138.598854640169 -34.7875474939411, 138.59873794602 -34.7876780610546, 138.599265342538 -34.787999134593, 138.599592730147 -34.7876328222898, 138.599918690906 -34.7878312635673, 138.60021167513 -34.7875037015732, 138.60040396209 -34.7868814723131, 138.600435949496 -34.7866891949843, 138.601095860243 -34.7859452935431, 138.601747371343 -34.7851997930557, 138.601747376334 -34.7849818400951, 138.601807449803 -34.7849825916303, 138.601812666707 -34.7846987333283, 138.601801482779 -34.7845633926496, 138.601806567167 -34.784286739695), (138.59904494578 -34.7875775698901, 138.599271727447 -34.7877098453763, 138.599157870532 -34.7878361032769, 138.598933142422 -34.7876920705641, 138.59904494578 -34.7875775698901))\nAYCA-PT8T9\tGrey Gum Estate\tReady for service\tPOLYGON ((150.938493459122 -33.6871960958341, 150.938112573739 -33.6868538861136, 150.937913793354 -33.6866364489678, 150.937924648622 -33.6861332738712, 150.937875272373 -33.6859209575089, 150.937442147645 -33.6848841910846, 150.935323666087 -33.6855490338998, 150.934943125772 -33.6847074725845, 150.934035691307 -33.6849963639219, 150.934424733135 -33.6858316776585, 150.934732018245 -33.6861319045403, 150.935341551764 -33.6863701142899, 150.936953782703 -33.6870563338334, 150.937349965729 -33.687037068515, 150.937736574065 -33.6869738633736, 150.93813019255 -33.687361279932, 150.938271912828 -33.6873708297336, 150.938493459122 -33.6871960958341))\nAYCA-FDMGP\tSpringlands Estate\tReady for service\tPOLYGON ((144.723910254727 -37.7128286267871, 144.723916107292 -37.7128149328531, 144.724026314756 -37.7125511683882, 144.725687617422 -37.7129518881047, 144.726346877262 -37.7131029670887, 144.726413725753 -37.7131802431167, 144.726449286314 -37.7134340059457, 144.726517799989 -37.7134503300212, 144.72651924 -37.7134506900297, 144.726757791729 -37.7134575338418, 144.726777586832 -37.7130051770316, 144.726757259127 -37.7129440036648, 144.726761080644 -37.7128794973228, 144.726784011724 -37.7128070835962, 144.726811069375 -37.7121968698348, 144.726451010499 -37.7121559725874, 144.726165077645 -37.7119052029336, 144.72598371688 -37.7117493409873, 144.724226748672 -37.7101528300543, 144.723813706698 -37.7104358991724, 144.723845042227 -37.7104538241878, 144.723722503963 -37.7107845236781, 144.723779522288 -37.7108402469734, 144.723692850312 -37.7113045870487, 144.723755584159 -37.7113205627195, 144.723844534144 -37.7113481853055, 144.72344211382 -37.7124311854595, 144.723485708832 -37.7124320276511, 144.723387772642 -37.7127039494897, 144.723910254727 -37.7128286267871))\nAYAA-GR8X0\tElizabeth Hills\tReady for service\tPOLYGON ((150.843414378787 -33.8996909239624, 150.843349044593 -33.8994679217838, 150.843680783646 -33.8989959874347, 150.843876661897 -33.898916282448, 150.844051683824 -33.898698915603, 150.843977453424 -33.8986560484449, 150.844168499331 -33.8984244552313, 150.844315318574 -33.8983033355817, 150.844446666206 -33.8983747359424, 150.844582515349 -33.8981337708652, 150.843991087333 -33.8978007140901, 150.843808801623 -33.8980290862943, 150.842963664866 -33.8975499400794, 150.84291614464 -33.8975752378763, 150.84289232304 -33.8975808115749, 150.842900801828 -33.8975142997971, 150.843111683009 -33.8972937974921, 150.842422870144 -33.8968990474099, 150.842212729771 -33.8971319496668, 150.84212122956 -33.8970848984742, 150.841797353893 -33.8974154779592, 150.841397535165 -33.8971593406582, 150.841082299228 -33.8987160565089, 150.841086111425 -33.898718206796, 150.843228187005 -33.8999241691807, 150.843414378787 -33.8996909239624))\nAYCA-DLVJU\tSettlers Run Estate\tReady for service\tPOLYGON ((145.251979560089 -38.1348295175072, 145.251859781195 -38.1348637827722, 145.251404929452 -38.1355469522695, 145.250570950472 -38.1372280900552, 145.250931838478 -38.1373517899301, 145.250920961455 -38.1373793882465, 145.251064980706 -38.1376344726112, 145.251297337668 -38.1375732131517, 145.251438010155 -38.1378586486363, 145.251481535294 -38.1378573708144, 145.251672432938 -38.1382842790978, 145.251721888525 -38.1382662525415, 145.251855953272 -38.1385638273268, 145.253023931395 -38.1381781596765, 145.253203739994 -38.1380917050261, 145.253138109029 -38.1380234721937, 145.252960450177 -38.1374916245091, 145.253344028675 -38.13722514352, 145.251979560089 -38.1348295175072))\nAYAA-FEBBY\tCarlingford Estate\tReady for service\tPOLYGON ((144.987274126825 -37.6627376909728, 144.987273302035 -37.6627393103972, 144.988551896908 -37.6628905720119, 144.989521532644 -37.6629849292671, 144.99132034579 -37.6631681660865, 144.99135947955 -37.6629412106233, 144.991341415241 -37.6629114668401, 144.991302662758 -37.6628793299013, 144.991139259648 -37.6626682038579, 144.990938255657 -37.6626441109818, 144.990830954971 -37.6617483332662, 144.990793241181 -37.661723973305, 144.990983708568 -37.661578982561, 144.991180113479 -37.6614518776769, 144.991124484972 -37.6611868122546, 144.99074736133 -37.6612373365101, 144.990614244938 -37.6607777473947, 144.990317467216 -37.6609090136052, 144.99035462655 -37.6606594227226, 144.989989900271 -37.6608674803474, 144.989557529597 -37.6610360608311, 144.988945829406 -37.6611646965322, 144.988668729647 -37.6612379116809, 144.988527010702 -37.6614007854214, 144.988772452949 -37.6617554378689, 144.988579584666 -37.6618475495464, 144.988453978609 -37.6619315416362, 144.987877746984 -37.6623168603568, 144.987701919279 -37.6623974111317, 144.987556161096 -37.6625049750024, 144.987571582645 -37.6625181816796, 144.987274126825 -37.6627376909728))\nAYCA-VPX4J\tKirkham Rise\tReady for service\tPOLYGON ((150.705375039098 -34.022790678117, 150.705616417158 -34.0218732830637, 150.705739552333 -34.0216572642642, 150.706299664942 -34.0211009874213, 150.706996980046 -34.0205894813789, 150.707028674228 -34.0205698371776, 150.707539494649 -34.0210827964666, 150.70780190848 -34.0209214940832, 150.705566438161 -34.0182882780889, 150.705424050585 -34.0182123596948, 150.705307935676 -34.0182001429718, 150.705132674625 -34.018252806175, 150.706359121826 -34.0197028139403, 150.70623607145 -34.0197763191517, 150.70594813075 -34.0199667773002, 150.705848815531 -34.0200383127124, 150.705686838121 -34.0201582038641, 150.705529917073 -34.0202821472308, 150.705377724692 -34.0204103907014, 150.705229983557 -34.0205421707562, 150.705115940665 -34.0206502609717, 150.704974283782 -34.0207867639856, 150.704848015132 -34.0209219344146, 150.704730060376 -34.0210622012065, 150.704621633663 -34.0212153287894, 150.704533711255 -34.02136664447, 150.704519949725 -34.0213922263247, 150.704449903096 -34.0215314412193, 150.704406167335 -34.0216530382831, 150.704381829806 -34.0217247363512, 150.704365227687 -34.0217867655844, 150.704211145079 -34.0224285434447, 150.704121396901 -34.0228023512609, 150.704079966524 -34.0229983426248, 150.704567314669 -34.0231637663665, 150.704892383337 -34.0231520616872, 150.705189488828 -34.023016829657, 150.705375039098 -34.022790678117))\nAYCA-KD23I\tRenaissance Rise\tReady for service\tPOLYGON ((145.081302875535 -37.6023091045257, 145.081192871282 -37.6029874157932, 145.08112959968 -37.6033616880669, 145.08089609293 -37.6047429649918, 145.08112852235 -37.6047647612318, 145.082349355727 -37.604928579938, 145.082434983166 -37.6045017599887, 145.082814683113 -37.6045418554811, 145.082827885889 -37.6044516064802, 145.083367849987 -37.6045015601637, 145.083674061229 -37.6044936317022, 145.084128401676 -37.6043985115626, 145.083989393964 -37.603979660074, 145.08409516781 -37.6039576319938, 145.084119324702 -37.603924586995, 145.083951250655 -37.6034190982, 145.083909244605 -37.6033984109242, 145.083864098101 -37.6032127001488, 145.083940303599 -37.6031983675563, 145.083848328175 -37.6029102926295, 145.083695263842 -37.6029425376194, 145.082978707333 -37.6029916575108, 145.082442858871 -37.6029361977699, 145.08245007872 -37.6028920424542, 145.082180548702 -37.6028641454437, 145.082173328697 -37.6029083007388, 145.081454222024 -37.6028338683376, 145.081530264333 -37.60233380129, 145.081302875535 -37.6023091045257))\nACPV\tPalmview\tReady for service\tPOLYGON ((153.06353615169382 -26.735238042555888, 153.0633162105546 -26.73679987640579, 153.0641262376771 -26.736905275463659, 153.0642335260377 -26.736852575946941, 153.06433544998026 -26.736838203347219, 153.064469560431 -26.736895693735161, 153.06455002670145 -26.737005883564152, 153.06455002670145 -26.73710170071999, 153.06571946983195 -26.737264589699645, 153.06610034351206 -26.735233251621526, 153.0659984195695 -26.735099105377135, 153.06585894470072 -26.734993704645557, 153.06426034812785 -26.734782902889393, 153.06412087325907 -26.734787693842737, 153.06403504257059 -26.73484039431618, 153.06394921188212 -26.734897885713913, 153.06389556770182 -26.734993704645557, 153.06385265235758 -26.735276370023623, 153.06353615169382 -26.735238042555888))\nAYCA-G8KWU\tSpring Farm\tReady for service\tPOLYGON ((150.735698234826 -34.0658369930352, 150.734943809828 -34.0678646851507, 150.73516735534 -34.0681528814037, 150.735225432072 -34.0681014858058, 150.735396471836 -34.0678729362758, 150.736579652174 -34.0684755977142, 150.736794267408 -34.0681865878142, 150.737113804759 -34.068355610693, 150.737148845313 -34.0684652535606, 150.737423121365 -34.0686091823414, 150.738170551333 -34.067605416561, 150.737838024549 -34.0674323939897, 150.738037424351 -34.0671866853977, 150.737681905266 -34.0670026638933, 150.73785368146 -34.0667731147133, 150.737290215653 -34.066477426869, 150.737148575399 -34.066416714939, 150.736677144804 -34.0662971940721, 150.736582451449 -34.0665558757176, 150.73643478534 -34.0664709337067, 150.736495224026 -34.0663109283063, 150.736470197423 -34.0662598643185, 150.736359455949 -34.0662430689055, 150.736316396917 -34.0663214727434, 150.73602809528 -34.0662477143387, 150.736172259204 -34.0657848892294, 150.735698234826 -34.0658369930352))\nAYCA-I9H4I\tOsprey Subdivision\tReady for service\tPOLYGON ((118.613864891264 -20.4156691923102, 118.613955613954 -20.4160194224241, 118.613755101491 -20.416028095368, 118.612839737415 -20.4162227119678, 118.612988933773 -20.4186622708339, 118.613454801616 -20.4186571458605, 118.613454205011 -20.4190057329688, 118.6141714124 -20.4190016905155, 118.614168992431 -20.4186874983477, 118.614724861475 -20.4187000515432, 118.614762485267 -20.4167378373955, 118.614853561155 -20.416212522534, 118.614784377649 -20.4156874627919, 118.614945972723 -20.4156672402895, 118.615045501563 -20.4156271683827, 118.615053640734 -20.4156377519798, 118.615156752777 -20.4156036169592, 118.615111626922 -20.4154951428425, 118.614996440344 -20.4155325116749, 118.615007197014 -20.4155778594864, 118.614730275263 -20.4156069165459, 118.613864891264 -20.4156691923102), (118.614106529595 -20.4157163291041, 118.614469367814 -20.4156994504823, 118.614502207998 -20.415727626978, 118.614547571672 -20.4162393276979, 118.614169056927 -20.4162836101118, 118.614106529595 -20.4157163291041))\nAYAA-GNWAI\tEstuary\tReady for service\tPOLYGON ((144.455436423453 -38.2012828124497, 144.456035871434 -38.2011906845718, 144.456135963504 -38.2012197527414, 144.455629805361 -38.203616121605, 144.457595076901 -38.2038675659868, 144.457921629406 -38.2021752513809, 144.457835203727 -38.202113577859, 144.457394964162 -38.2011652588429, 144.456723048333 -38.2013543978017, 144.456524112577 -38.2008939947609, 144.456495676925 -38.2008933783303, 144.456495373843 -38.2009020843802, 144.456461532996 -38.2008841707447, 144.456445401043 -38.2006101358137, 144.456285872499 -38.2006487138869, 144.455418597269 -38.2007906612151, 144.455436423453 -38.2012828124497))\nAYAA-FXOCV\tTuart Ridge\tReady for service\tPOLYGON ((115.813532501132 -32.34050648256, 115.813583878706 -32.3423620760915, 115.81485589403 -32.3423837041935, 115.81587620016 -32.3425223525469, 115.816773754074 -32.3405767965665, 115.816743719882 -32.3405706006413, 115.816396401179 -32.3404574428817, 115.8162942045 -32.340708208001, 115.815881765428 -32.3405726638559, 115.815637309361 -32.3405613294114, 115.814299767609 -32.3405452160864, 115.814298801365 -32.3404003905186, 115.81412836965 -32.3403938342243, 115.814128686695 -32.3404938569897, 115.813842152023 -32.3404892371743, 115.813532501132 -32.34050648256))\nAYCA-1VT8Y4\tRobinson Park\tContracted\tPOLYGON ((115.995133701198 -32.0839373972776, 115.993777135364 -32.0850943246556, 115.996038991943 -32.0870166023965, 115.997394583178 -32.0858613805574, 115.995133701198 -32.0839373972776))\n17341648\tDiamond Crescent\tCheck with carrier\tPOLYGON ((150.8808672 -33.895387894500004, 150.879815296 -33.894668337, 150.8795568 -33.894491218, 150.879141728 -33.894206466, 150.878077568 -33.8952851085, 150.87837024 -33.8954853525, 150.877676896 -33.8961883525, 150.877472768 -33.8966481515, 150.877666816 -33.8967813515, 150.87789216 -33.896935253, 150.87791376 -33.896954974, 150.877919168 -33.896951015, 150.877924576 -33.896947056, 150.8779296 -33.896943097, 150.877935008 -33.8969393045, 150.877940416 -33.8969355305, 150.877946176 -33.8969317565, 150.877951552 -33.8969280565, 150.877957312 -33.896924375000005, 150.877963072 -33.89692086, 150.87796848 -33.896917345, 150.87797424 -33.8969138485, 150.87798 -33.896910426, 150.877986112 -33.896907096, 150.877991872 -33.8969038585, 150.877998016 -33.896900602500004, 150.878003776 -33.8968974575, 150.878009888 -33.8968943125, 150.878016 -33.8968912415, 150.878022112 -33.896888281500004, 150.878028256 -33.8968853955, 150.87803472 -33.896882528, 150.878040832 -33.896879734500004, 150.878046976 -33.896876941, 150.87805344 -33.8968743325, 150.878059936 -33.896871724, 150.8780664 -33.896869208, 150.878072896 -33.8968666735, 150.878079008 -33.89686425, 150.878085856 -33.896861919, 150.87809232 -33.896859662000004, 150.878098816 -33.896857405, 150.87810528 -33.896855259, 150.878112128 -33.896853187, 150.878118592 -33.8968512075, 150.87812544 -33.896849228, 150.878132288 -33.8968473225, 150.878139136 -33.896845528, 150.8781456 -33.896843826, 150.878152448 -33.8968421055, 150.878159296 -33.896840496, 150.878166112 -33.8968389605, 150.87817296 -33.8968375175, 150.87818016 -33.8968360745, 150.878187008 -33.896834724, 150.878193856 -33.896833466000004, 150.878201056 -33.8968323005, 150.878207872 -33.896831135, 150.87821472 -33.896830136, 150.87822192 -33.8968291555, 150.878228768 -33.896828249, 150.878235968 -33.8968273425, 150.878242816 -33.896826547, 150.878249984 -33.896825918000005, 150.878256832 -33.896825289, 150.878264032 -33.896824734, 150.878271232 -33.8968241975, 150.87827808 -33.8968237535, 150.87828528 -33.896823476, 150.87829248 -33.8968231245, 150.878299328 -33.8968229395, 150.878306528 -33.896822847, 150.878313728 -33.8968227545, 150.878320928 -33.8968227545, 150.878327776 -33.896822847, 150.878334976 -33.896823032, 150.878342176 -33.896823217, 150.878349376 -33.896823476, 150.878356192 -33.896823846000004, 150.878363392 -33.89682429, 150.878370592 -33.8968248265, 150.87837744 -33.896825363, 150.87838464 -33.8968260845, 150.878391488 -33.896826806, 150.878398688 -33.8968275275, 150.878405536 -33.896828434, 150.878412736 -33.896829322, 150.878419552 -33.896830321, 150.878426752 -33.896831394, 150.8784336 -33.896832578, 150.878440448 -33.896833743500004, 150.878447648 -33.896835094000004, 150.878454496 -33.8968364445, 150.878461312 -33.896837795, 150.87846816 -33.896839312000004, 150.878475008 -33.8968408475, 150.878481856 -33.8968424755, 150.878488672 -33.8968441775, 150.87849552 -33.896845972, 150.878502368 -33.896847785, 150.878508832 -33.896849672, 150.87851568 -33.8968516515, 150.878522176 -33.8968537235, 150.878528992 -33.8968557955, 150.878535488 -33.8968579415, 150.878541952 -33.8968601985, 150.8785488 -33.8968624555, 150.878555296 -33.896864879, 150.87856176 -33.8968673025, 150.878568256 -33.8968697445, 150.878574368 -33.896872353, 150.878580832 -33.896874961500004, 150.878587328 -33.8968776625, 150.87859344 -33.8968803635, 150.878599552 -33.896883231000004, 150.878606048 -33.896886117, 150.87861216 -33.896889003, 150.878618272 -33.896892055500004, 150.878624416 -33.896895034, 150.878630176 -33.896898179000004, 150.878636288 -33.8969014165, 150.8786424 -33.896904654000004, 150.87864816 -33.8969078915, 150.87865392 -33.896911314, 150.87865968 -33.8969147365, 150.87866544 -33.896918159, 150.8786712 -33.896921674, 150.87867696 -33.896925263, 150.878682368 -33.896928963, 150.878688128 -33.8969326445, 150.878892256 -33.897072782, 150.879079072 -33.897200765, 150.879099616 -33.897179878500005, 150.879340096 -33.8969361595, 150.879447712 -33.8968268985, 150.879456736 -33.896817815, 150.879573728 -33.896699452, 150.879690368 -33.896581015, 150.879807008 -33.8964626705, 150.87992256 -33.896345399, 150.879979456 -33.896287975, 150.880035968 -33.896230477, 150.880149376 -33.896115629, 150.880262752 -33.896000707, 150.880375808 -33.8958857665, 150.880489216 -33.8957708445, 150.880602592 -33.895655996500004, 150.880716 -33.8955410745, 150.880843072 -33.8954122775, 150.8808672 -33.895387894500004))\nAYCA-WHHP1\tThe Vines\tReady for service\tPOLYGON ((151.323950914147 -32.8286091895677, 151.323862710181 -32.8290400602815, 151.322337349494 -32.8288172928411, 151.321903200388 -32.8310103597457, 151.322978691635 -32.8311527954353, 151.323320597097 -32.8294892386041, 151.323699342608 -32.8295414935229, 151.323707415443 -32.8294998961817, 151.326234519859 -32.8298539176254, 151.326248927672 -32.829779799522, 151.326593840896 -32.8298277558355, 151.326748249676 -32.8290084029667, 151.323950914147 -32.8286091895677))\n172\tGemstone Rise\tReady for service\tPOLYGON ((151.9103253116011 -27.572448933673176, 151.9122404088362 -27.572762773849586, 151.91212239164162 -27.573257308062871, 151.91242279905245 -27.573328634929418, 151.91211166281067 -27.575016690560595, 151.90989079374029 -27.574683836575836, 151.90988006490929 -27.574655306187342, 151.9103253116011 -27.572448933673176))\nAYCA-LJ5ZI\tMcKeachies Run\tReady for service\tPOLYGON ((151.538040753666 -32.6974762147736, 151.538128077609 -32.6977602634467, 151.541497149989 -32.6972460166704, 151.541612380558 -32.6971141611063, 151.541569414311 -32.6968223237686, 151.541438592021 -32.6962337891955, 151.541420273741 -32.6960655035107, 151.541410079931 -32.695910281247, 151.539517719304 -32.6956247767485, 151.539371739278 -32.6956686092303, 151.539430843795 -32.6959387203577, 151.539413312688 -32.6960126959389, 151.538936268909 -32.696100395371, 151.538964689596 -32.6963299263864, 151.53880084678 -32.6963542932722, 151.538848358042 -32.696545450057, 151.538574678262 -32.6965953151002, 151.538674769163 -32.6969777241303, 151.538018495818 -32.6971025717863, 151.538046779274 -32.697227446042, 151.538091575947 -32.6974584197819, 151.538040753666 -32.6974762147736))\n10475\tLakelands\tReady for service\tPOLYGON ((115.76568603515625 -32.466486497956943, 115.76750457286835 -32.466509127901212, 115.76725244522095 -32.467962877747304, 115.76687157154083 -32.468885240401271, 115.76676964759827 -32.469577695673983, 115.76624393463135 -32.4694102396583, 115.76598107814789 -32.469414765500659, 115.76609909534454 -32.469125111131255, 115.76547145843506 -32.469097955986349, 115.76506912708282 -32.469061749113735, 115.76519787311554 -32.468595584328462, 115.76532661914825 -32.46857748079298, 115.76545000076294 -32.467866914150065, 115.76551973819733 -32.467808077170304, 115.76568603515625 -32.466486497956943))\nAYAA-FUGCA\tSaratoga Estate\tReady for service\tPOLYGON ((144.71646045913 -37.9066893056224, 144.715944982794 -37.9065608781875, 144.715212828873 -37.9064576747353, 144.715160980026 -37.9064030944268, 144.714746024573 -37.9087294761261, 144.716954746915 -37.9089928165865, 144.717035666636 -37.9084671158179, 144.71726149579 -37.9069283506541, 144.71646045913 -37.9066893056224))\nAYCA-17GFGC\tQuarters\tReady for service\tPOLYGON ((145.249468999997 -38.0967720000281, 145.249017999997 -38.0972210000281, 145.248999999997 -38.0971760000281, 145.248975999997 -38.0971320000282, 145.248947999997 -38.0970900000281, 145.248915999997 -38.0970500000281, 145.248878999997 -38.0970130000282, 145.248837999997 -38.0969780000281, 145.248794999997 -38.0969450000281, 145.248746999997 -38.0969190000282, 145.248697999997 -38.0968950000281, 145.248646999997 -38.0968740000281, 145.248592999997 -38.0968570000281, 145.248537999997 -38.0968430000281, 145.248481999997 -38.0968330000281, 145.248385999997 -38.0968200000281, 145.248297999997 -38.0972280000281, 145.248157999997 -38.0972090000281, 145.248103999997 -38.0974580000281, 145.248069999997 -38.0974540000281, 145.247903999997 -38.0982260000281, 145.247880999997 -38.0982230000281, 145.247789999997 -38.0986500000281, 145.248227999997 -38.0987090000282, 145.248166999997 -38.0989930000281, 145.248109999997 -38.098985000028, 145.248083999997 -38.0991100000281, 145.24865691519 -38.0991867135242, 145.248959182768 -38.0977832949489, 145.249002999992 -38.0975790000258, 145.24950899999 -38.0976470000254, 145.249640999992 -38.0975730000241, 145.249682999992 -38.0973770000242, 145.250341166571 -38.0974537306647, 145.250575947547 -38.0965124502219, 145.2503625496 -38.0964858826004, 145.250392739537 -38.0963549661687, 145.250356412733 -38.0963485642738, 145.250387298238 -38.0962063448647, 145.250603181572 -38.0962370390194, 145.25071794869 -38.0957040928047, 145.250655498448 -38.0956945468696, 145.250686946943 -38.0955573926298, 145.25034894316 -38.0955094071725, 145.250376427303 -38.0953410631647, 145.250763039618 -38.0953929888845, 145.251026999992 -38.0941640000242, 145.250348692521 -38.0940714173574, 145.250020999997 -38.0956980000282, 145.249981999997 -38.0957200000281, 145.249854999997 -38.0957030000282, 145.249687999997 -38.0956560000282, 145.249613999997 -38.0958170000282, 145.249624999997 -38.0958200000281, 145.249458999997 -38.0965900000281, 145.249339999997 -38.0966730000281, 145.249369999997 -38.096702000028, 145.249400999997 -38.0967270000282, 145.249433999997 -38.0967510000281, 145.249468999997 -38.0967720000281))\n10220\tClarkson-Somerly\tReady for service\tPOLYGON ((115.73165953159332 -31.686396087611623, 115.73227643966675 -31.68602634005039, 115.73222279548645 -31.685957868118159, 115.73238909244537 -31.685893960935843, 115.73268413543701 -31.685702239124854, 115.73291480541229 -31.685560729915139, 115.73307037353516 -31.685446609427565, 115.73332786560059 -31.685254886692594, 115.73346734046936 -31.685177284520616, 115.73366582393646 -31.68539183154369, 115.73398768901825 -31.685163590012955, 115.73432564735413 -31.684921653377629, 115.73442757129669 -31.685054033878849, 115.73449730873108 -31.68504490419518, 115.73464214801788 -31.685159025176617, 115.7347172498703 -31.685542470646556, 115.73480308055878 -31.685811794493898, 115.7348620891571 -31.686040034430778, 115.73495864868164 -31.686341310288078, 115.73363900184631 -31.687236002524521, 115.7334566116333 -31.687345556083255, 115.73348879814148 -31.687382073907436, 115.73325276374817 -31.687541839219275, 115.73297917842865 -31.687706168967392, 115.73289334774017 -31.687697039544577, 115.73200821876526 -31.686774963214386, 115.73165953159332 -31.686396087611623))\nAYCA-11AP93\tSomerset Rise\tReady for service\tPOLYGON ((146.984624526909 -36.0236020070927, 146.984596925262 -36.023735527618, 146.985452085438 -36.0255239162258, 146.985428874791 -36.0257015215144, 146.985497339361 -36.0258654600801, 146.985541036858 -36.0258530027336, 146.98556465234 -36.0258693027687, 146.985481440488 -36.026305449018, 146.985431190056 -36.0264096483977, 146.985606569643 -36.0264429839124, 146.985657365894 -36.0265336593373, 146.985869439534 -36.02653115309, 146.985853240962 -36.026505923803, 146.98655134595 -36.0265020389586, 146.986687539395 -36.0258151011601, 146.98692147374 -36.0258459475848, 146.987268962255 -36.0239402642954, 146.984624526909 -36.0236020070927))\nAYCA-U7W4J\tLakeland Development (VR Land)\tContracted\tPOLYGON ((145.434943999999 -38.076076000029, 145.434852999999 -38.076625000029, 145.435192999999 -38.077333000029, 145.435295999999 -38.077302000029, 145.435532999999 -38.077200000029, 145.435707999998 -38.0774520000289, 145.435742999999 -38.077437000029, 145.435902999999 -38.077666000029, 145.435840999999 -38.077694000029, 145.435666999998 -38.077655000029, 145.435500999998 -38.0777270000289, 145.435397999999 -38.077758000029, 145.435513999998 -38.0779990000289, 145.436112999999 -38.0777390000289, 145.436288999999 -38.077992000029, 145.436852999999 -38.077747000029, 145.436822999998 -38.077703000029, 145.437152999999 -38.077560000029, 145.437220999999 -38.077615000029, 145.437294999999 -38.0776660000289, 145.437372999999 -38.0777120000289, 145.437468999999 -38.0777600000289, 145.437574999998 -38.077800000029, 145.437684999999 -38.077834000029, 145.437796999998 -38.077862000029, 145.438049999999 -38.077910000029, 145.438331999999 -38.077964000029, 145.438560999999 -38.0772100000289, 145.438599999999 -38.077218000029, 145.438727999998 -38.076797000029, 145.434943999999 -38.076076000029))\nAYAA-G9SX5\tSussex Rise\tReady for service\tPOLYGON ((150.581802283005 -35.1593660247606, 150.581800361766 -35.1594964381377, 150.581920375732 -35.1595756449816, 150.581978048634 -35.1598051534222, 150.582286767305 -35.1597965638475, 150.582337106937 -35.1610575404136, 150.582712962179 -35.161670335901, 150.583625995378 -35.1612574574806, 150.583833729395 -35.1610895742763, 150.583943128456 -35.1608534871599, 150.5839041553 -35.1596070705385, 150.583862637463 -35.1594460533458, 150.584332284918 -35.1588649728613, 150.584276910033 -35.158806747469, 150.581929482927 -35.1588668112509, 150.581825429889 -35.1589129284328, 150.58182136721 -35.1589675897438, 150.581704058681 -35.1589646928981, 150.581701012629 -35.1590903209824, 150.581808767273 -35.1590969026489, 150.581802283005 -35.1593660247606))\n10214\tClarkson-Somerly\tReady for service\tPOLYGON ((115.7305920124054 -31.683762174712466, 115.73065638542175 -31.683689136201426, 115.73215305805206 -31.6833832868123, 115.7321959733963 -31.68341524127322, 115.73234081268311 -31.683921946255012, 115.73238909244537 -31.68410910685509, 115.73251247406006 -31.684620372912455, 115.73294162750244 -31.684547335076658, 115.73298990726471 -31.684702540409031, 115.73308646678925 -31.684935347920991, 115.73333323001862 -31.685273146017749, 115.7330596446991 -31.685451174249756, 115.73292016983032 -31.685556165098319, 115.73236763477325 -31.68591678493457, 115.7322496175766 -31.68602634005039, 115.73167562484741 -31.686396087611623, 115.73150932788849 -31.686218061191934, 115.73133230209351 -31.68592591453249, 115.73125183582306 -31.685802664884758, 115.73116600513458 -31.685670285451202, 115.7310962677002 -31.685501387279107, 115.73103725910187 -31.685323359143407, 115.73096215724945 -31.685076858084123, 115.73079586029053 -31.684451472829966, 115.73066711425781 -31.684136496179551, 115.7305920124054 -31.683762174712466))\nAYCA-FKVUE\tKialla Lakes Estate\tReady for service\tPOLYGON ((145.402353581587 -36.4323583231229, 145.402361952009 -36.4295407500526, 145.401166439998 -36.4295413800269, 145.400869136131 -36.4309605468184, 145.400753612411 -36.4309556251472, 145.400736413537 -36.4310470817939, 145.400848185388 -36.4310648908829, 145.400747898692 -36.4315398949131, 145.400656787921 -36.4316009141341, 145.40065336464 -36.431745095953, 145.4013013408 -36.4317485051814, 145.40129818024 -36.432302593852, 145.402353581587 -36.4323583231229))\n10669\tWandi-Honeywood\tReady for service\tPOLYGON ((115.86132287979126 -32.19070947854437, 115.8610063791275 -32.190913769195184, 115.86147308349609 -32.191417684173338, 115.86119949817657 -32.191590194966253, 115.86080253124237 -32.191785404153357, 115.8608615398407 -32.191862579763004, 115.86053967475891 -32.192026010249762, 115.86058795452118 -32.192112265110573, 115.86024463176727 -32.192312012895421, 115.8604484796524 -32.192579855827965, 115.86106538772583 -32.192770523197957, 115.86095809936523 -32.193029285418312, 115.86079180240631 -32.193401538550049, 115.86129069328308 -32.193564966273264, 115.86119949817657 -32.193791948735289, 115.86155891418457 -32.193909979391812, 115.86143553256989 -32.194218674231273, 115.86178958415985 -32.194300387395856, 115.86251378059387 -32.192693348358226, 115.86241185665131 -32.192643411662345, 115.86247622966766 -32.192321092329756, 115.86210072040558 -32.192216678780056, 115.86213827133179 -32.191808102868862, 115.86190760135651 -32.191408604648878, 115.86132287979126 -32.19070947854437))\nAYCA-1IFF61\tGlebe Hill\tContracted\tPOLYGON ((147.430894 -42.8837890000249, 147.428589 -42.8834780000249, 147.428561 -42.8834780000248, 147.428575 -42.8837810000249, 147.428637 -42.8838310000249, 147.428665 -42.8840950000249, 147.428592 -42.8841680000248, 147.428618 -42.8847330000248, 147.428815 -42.8847270000248, 147.42939 -42.8848970000249, 147.429439 -42.8848340000249, 147.429784 -42.8849500000249, 147.430034 -42.8850000000249, 147.43025 -42.8850640000249, 147.430161 -42.8851760000248, 147.431197 -42.8855040000249, 147.431413392077 -42.8840052905052, 147.430894 -42.8837890000249))\nAYCA-189CVK\tHeron Park\tReady for service\tPOLYGON ((115.936707412129 -32.1181321904035, 115.938073490616 -32.1192704379671, 115.938251 -32.1191160000132, 115.93825 -32.1190390000132, 115.938068 -32.1188900000131, 115.93818 -32.1187910000131, 115.938527250656 -32.1184898679931, 115.938754549108 -32.1186791126502, 115.938854 -32.1187850000131, 115.939082 -32.1189740000131, 115.93926 -32.1188200000131, 115.93919 -32.1187640000131, 115.93928 -32.1186850000132, 115.93949799866 -32.1184967948023, 115.939344 -32.1183600000131, 115.939529 -32.1181980000131, 115.939454 -32.1181350000131, 115.939679 -32.1179430000132, 115.938287 -32.1167590000131, 115.937041 -32.1178420000132, 115.93693 -32.1179390000131, 115.936707412129 -32.1181321904035))\n17399469\tHolmesglen Private Hospital\tCheck with carrier\tPOLYGON ((145.050038016 -37.935096993500004, 145.049615008 -37.937232004500004, 145.051371008 -37.9374130085, 145.051780992 -37.9353129995, 145.051371008 -37.935262994, 145.051362016 -37.9353050075, 145.051055008 -37.9352680075, 145.051064 -37.935224995, 145.050038016 -37.935096993500004))\nAYCA-GDD50\tPennyroyal Development\tReady for service\tPOLYGON ((144.578526996617 -37.6577821951206, 144.57637224301 -37.6575214053497, 144.576312410381 -37.6576148231147, 144.576290966712 -37.6576116953518, 144.576271836859 -37.6576088578746, 144.576256979697 -37.6576056887988, 144.576210114044 -37.6577445601795, 144.57604089188 -37.658019386527, 144.575923290673 -37.6586338909039, 144.575518488285 -37.6592817789832, 144.575557495536 -37.6592864973249, 144.575530183831 -37.6594292027611, 144.575496666303 -37.6594250444959, 144.575470289402 -37.6594212735739, 144.575439583033 -37.6594164412883, 144.575427441622 -37.6594140457971, 144.575372388048 -37.6597017003157, 144.578041944688 -37.660024027995, 144.578420370903 -37.6580429302004, 144.578459081065 -37.6580202757145, 144.578480936626 -37.6580229188528, 144.578526996617 -37.6577821951206))\nAYCA-16LJ11\tNorfolk Estates Pty Ltd\tUnder construction\tPOLYGON ((153.326696189634 -27.8330656161685, 153.327485 -27.834122999984, 153.327464 -27.834227999984, 153.327928 -27.834302999984, 153.327947 -27.834211999984, 153.328245 -27.834259999984, 153.328295 -27.834023999984, 153.328595 -27.834071999984, 153.32876 -27.834145999984, 153.328763 -27.834131999984, 153.328982 -27.834166999984, 153.329036 -27.833900999984, 153.329157165793 -27.833768967267, 153.329291 -27.833790999984, 153.329345 -27.833523999984, 153.329613 -27.833566999984, 153.329668 -27.833300999984, 153.329691 -27.833306999984, 153.329791 -27.833168999984, 153.329846 -27.832902999984, 153.331541183448 -27.8331763111423, 153.331591414011 -27.833007141046, 153.331591185743 -27.8329647759517, 153.331592037349 -27.832644659916, 153.331654547218 -27.8326470671937, 153.331699047603 -27.8326217284279, 153.33172603722 -27.8325778443519, 153.331785272442 -27.832408459849, 153.329858 -27.832097999984, 153.329872 -27.832075999984, 153.329813 -27.8320649999839, 153.329769 -27.832345999984, 153.329439 -27.832290999984, 153.329404730105 -27.8325565394506, 153.329103952458 -27.832833608397, 153.328376192027 -27.8321984045569, 153.326696189634 -27.8330656161685))\nAYCA-FCJYS\tReid Street Subdivision\tReady for service\tPOLYGON ((148.779103252302 -26.5598998844113, 148.779099027791 -26.5599252976959, 148.782168720002 -26.5602837599718, 148.782251000555 -26.5597526695565, 148.782234971918 -26.5597502194174, 148.781178980896 -26.5596171281676, 148.781471051878 -26.5575468144431, 148.780550340781 -26.5574399435037, 148.780505972339 -26.5577490752468, 148.78031392093 -26.5576713723364, 148.780111486265 -26.5576847682893, 148.780114047129 -26.5576481710494, 148.779854101973 -26.5576206354816, 148.779834594447 -26.5577311003473, 148.779436531013 -26.5576843084027, 148.779103252302 -26.5598998844113))\nAYCA-J6QDT\tSanctuary\tReady for service\tPOLYGON ((151.643496053936 -32.8722398680756, 151.643460857602 -32.8724954360406, 151.643896895344 -32.8727364219759, 151.644644930727 -32.8719524408077, 151.644855554477 -32.8723581764937, 151.645722607313 -32.8721955963398, 151.645907306637 -32.8717776259141, 151.646017989419 -32.8712889752994, 151.646220320532 -32.8709859754144, 151.646653781642 -32.8710470742042, 151.64664224671 -32.870999235729, 151.646646620126 -32.8709836126401, 151.64673065832 -32.8703628085602, 151.646657462948 -32.8702400207387, 151.646728301358 -32.869926971969, 151.646738634301 -32.8696040405478, 151.646737258864 -32.8695628652134, 151.646376740134 -32.8695027093183, 151.646063537773 -32.8692786754481, 151.645957677837 -32.8692090761243, 151.645821539747 -32.8693575989804, 151.645483433469 -32.8695234227482, 151.645266633159 -32.8696417837637, 151.644847210608 -32.8699186398961, 151.644593487068 -32.8702708555343, 151.644470485587 -32.8706292665899, 151.644436858989 -32.8708834254146, 151.644421459554 -32.8710904084983, 151.64444282191 -32.8713064916348, 151.644513858134 -32.8714959406428, 151.644274288349 -32.8715413038243, 151.644031479026 -32.8716707909987, 151.643806232346 -32.8718954034428, 151.643496053936 -32.8722398680756), (151.644906313186 -32.8700009812975, 151.644983816181 -32.8699251899339, 151.645071202418 -32.8698672189901, 151.645276925787 -32.8700648820609, 151.645140545594 -32.870182571543, 151.644906313186 -32.8700009812975))\nAYCA-JJ268\tBungarribee (Bunya)\tReady for service\tPOLYGON ((150.86617327815 -33.7753775003967, 150.868515469207 -33.7756930873314, 150.868569099473 -33.7755041411002, 150.868783560298 -33.7749946697172, 150.868915028997 -33.7747991652324, 150.869071743088 -33.7745304180726, 150.869364798858 -33.7741055219273, 150.869326312282 -33.7740661378429, 150.866008561025 -33.7734915588608, 150.865759915983 -33.7735818191992, 150.865744639698 -33.7743155857701, 150.865803669717 -33.775169788108, 150.865879993441 -33.7753517467887, 150.86617327815 -33.7753775003967), (150.8677408172 -33.7751465999744, 150.867924868452 -33.7751711357803, 150.867869558689 -33.7754474033797, 150.867807357445 -33.7754847554283, 150.867679435894 -33.7754677021988, 150.8677408172 -33.7751465999744), (150.868040389349 -33.7754688239224, 150.868095434865 -33.7751938735011, 150.868279467512 -33.7752184062813, 150.868219270012 -33.7755333259582, 150.868085028761 -33.775518996545, 150.868040389349 -33.7754688239224))\n17147925\tMallia Subdivision\tCheck with carrier\tPOLYGON ((144.963704896 -37.4063609625, 144.963390976 -37.4080679945, 144.966197888 -37.4083980345, 144.96620688 -37.408399015, 144.966570112 -37.406484986500004, 144.963744128 -37.4061459555, 144.963704896 -37.4063609625))\n17289902\tDales Rd\tCheck with carrier\tPOLYGON ((142.518738976 -38.373669001, 142.518428992 -38.3752809985, 142.517989088 -38.375235988, 142.51786992 -38.3759510315, 142.518665152 -38.376032043, 142.518732832 -38.375614979, 142.518996 -38.375641989, 142.518927968 -38.3760590345, 142.520403968 -38.3762079965, 142.52085504 -38.3738830275, 142.518738976 -38.373669001))\nAYCA-EEDPT\tNewleaf Bonnyrigg Development\tReady for service\tPOLYGON ((150.895881918938 -33.8885391409453, 150.896085365343 -33.888863367607, 150.896275495368 -33.8887809206225, 150.896530264508 -33.8891841802643, 150.896658289289 -33.8891247154328, 150.896684623627 -33.8891604130561, 150.896717351921 -33.8891471120233, 150.896940957955 -33.8895059770953, 150.896399862203 -33.8897320995866, 150.896356653652 -33.8898530760917, 150.896889658911 -33.8896744295375, 150.897232796728 -33.890087001663, 150.896756564312 -33.8903055935439, 150.8968685823 -33.8903047846849, 150.896870549063 -33.8903548655442, 150.896886167128 -33.8903936553436, 150.897024127612 -33.8903414432161, 150.897042571698 -33.8903048049558, 150.898347563511 -33.889725689396, 150.898392549697 -33.8896955035445, 150.898711622528 -33.8894262505823, 150.898749148879 -33.8894173368115, 150.899027552074 -33.8896098372824, 150.899110284537 -33.8896844853965, 150.899164443523 -33.8897721806541, 150.899180050723 -33.8898311982941, 150.899168609989 -33.8898477485204, 150.899150888186 -33.8898538781718, 150.899161829201 -33.8898979970593, 150.899383545538 -33.8898745035301, 150.899384264339 -33.8898309447677, 150.899350747314 -33.8898210864875, 150.899306102573 -33.8896937898364, 150.899465336742 -33.8895256146583, 150.899222126824 -33.8893596817071, 150.899640921328 -33.8889336553163, 150.897590948619 -33.8875316740726, 150.897544469887 -33.8875554483599, 150.897515311162 -33.8875789462811, 150.897271596364 -33.8878168623248, 150.897043922907 -33.8879888627591, 150.896840781415 -33.8881130715907, 150.896649523755 -33.8882047848568, 150.895881918938 -33.8885391409453))\n17328894\tIndooroopilly Shopping Centre\tCheck with carrier\tPOLYGON ((152.973822976 -27.49784301, 152.973420832 -27.497780998, 152.973471968 -27.497517021500002, 152.97349392 -27.497466997500002, 152.973534976 -27.497429017, 152.973587872 -27.4974049855, 152.972407072 -27.497634034, 152.972170912 -27.4988799905, 152.97176304 -27.500969972500002, 152.971742176 -27.501078956, 152.973155168 -27.501303953, 152.97316992 -27.501229971500003, 152.97332112 -27.5004469775, 152.973392032 -27.500075016500002, 152.973437056 -27.499842009, 152.973822976 -27.49784301))\nAYCA-G6YEX\tEast Newman\tReady for service\tPOLYGON ((119.748159268223 -23.3565346916548, 119.747995954147 -23.3562579150034, 119.747310343903 -23.3566018835049, 119.747256581929 -23.3566598844043, 119.747093212257 -23.357076701999, 119.747141518527 -23.3572004641001, 119.747087812055 -23.3572720877907, 119.747468556175 -23.3574864861114, 119.747513930199 -23.3575319248774, 119.747446909954 -23.3575729548233, 119.747456511626 -23.3575912155095, 119.747193550484 -23.3578057847632, 119.747646698661 -23.3586180674132, 119.747929497872 -23.3584891404044, 119.747952481086 -23.3585282169736, 119.748439621745 -23.3584566781926, 119.748517788207 -23.358886476072, 119.748945834922 -23.35897344895, 119.748935463913 -23.3590054161546, 119.749558654236 -23.3591906537928, 119.749835979746 -23.3591332089353, 119.749538792688 -23.3578487988418, 119.749419588635 -23.3573688434414, 119.749323658889 -23.3570544350002, 119.749153900554 -23.3566217285973, 119.749099376587 -23.3564963989894, 119.749000104684 -23.3562742534904, 119.748937274139 -23.3561428843382, 119.748159268223 -23.3565346916548))\nAYCA-LDBQ3\tNabilla Riverlinks\tReady for service\tPOLYGON ((148.95891731688 -21.1565352551378, 148.958828047021 -21.157320717926, 148.959244573408 -21.1573727076183, 148.961807207926 -21.1576281325089, 148.963419272067 -21.1577907093494, 148.963599169833 -21.1560239858282, 148.962308171581 -21.155882809622, 148.96225006579 -21.1562265888327, 148.96221230912 -21.1563785687267, 148.962167206494 -21.1567663591477, 148.961541510449 -21.1567112702735, 148.961273272223 -21.1566837481211, 148.95995002909 -21.1565479724482, 148.959943376937 -21.1566028774632, 148.959536841452 -21.1565595344814, 148.959341144217 -21.1565756690704, 148.95891731688 -21.1565352551378))\n17326917\tJoondalup Business Park South\tCheck with carrier\tPOLYGON ((115.768271872 -31.7572630115, 115.768349984 -31.757711044500002, 115.768362944 -31.757768006000003, 115.768433888 -31.758085984, 115.768481024 -31.758604021, 115.769373824 -31.759653951500002, 115.77072816 -31.759120985000003, 115.771037024 -31.7590149615, 115.77123216 -31.758915968, 115.771110112 -31.758748025000003, 115.770974048 -31.7585999695, 115.770639968 -31.757867018000002, 115.769598848 -31.756586041000002, 115.769217952 -31.756867019, 115.768865888 -31.757115955, 115.768677952 -31.75721604, 115.768473824 -31.757250968, 115.768271872 -31.7572630115))\nAYCA-ZTGYS\tAurora Estate\tReady for service\tPOLYGON ((145.000503999995 -37.6164610000256, 145.000491999995 -37.6164770000255, 145.001300998088 -37.6168670025282, 145.001155137771 -37.6170589517902, 145.001579369581 -37.6172569477593, 145.001974964992 -37.6174442234203, 145.002534414538 -37.6166894049288, 145.002574479125 -37.6164258030467, 145.002676525783 -37.6162570365584, 145.003248873064 -37.6158642854667, 145.003599784067 -37.6154886092078, 145.002497035949 -37.6149037469032, 145.002409348488 -37.6150106243651, 145.001675999989 -37.6146450000218, 145.00127940926 -37.6146425740493, 145.000057999995 -37.6162470000256, 145.000503999995 -37.6164610000256))\nAYAA-FPPUI\tThe Ponds\tReady for service\tPOLYGON ((150.902998287707 -33.706787340221, 150.902426685083 -33.7084430580159, 150.902620066321 -33.7084893410127, 150.903382062556 -33.7085960793764, 150.904071513658 -33.7086583457074, 150.904673131526 -33.7086603051816, 150.904773885296 -33.7083188537441, 150.904831582101 -33.7082683569809, 150.90560746141 -33.708251484188, 150.905595551408 -33.7078952439196, 150.905496897503 -33.7073058965309, 150.905251645048 -33.7066196952445, 150.904913698698 -33.7065796445326, 150.904539937562 -33.7067448883073, 150.903452954323 -33.7068851461472, 150.903345396922 -33.7068864660457, 150.902998287707 -33.706787340221))\nAYCA-1F6W0L\tStage 1\tReady for service\tPOLYGON ((152.98472448 -27.2346020099783, 152.984418119994 -27.2363518800127, 152.986008157271 -27.236573941858, 152.98715016 -27.2367333899783, 152.98745508 -27.2349839699783, 152.987155593073 -27.2349421245995, 152.986856400057 -27.2349002696565, 152.9855154696 -27.2347126530816, 152.98472448 -27.2346020099783))\n17332519\tKalimna Park - stage 12\tCheck with carrier\tPOLYGON ((151.938828 -27.4353350435, 151.939448992 -27.435390025500002, 151.939412992 -27.434802965, 151.939131136 -27.434266021, 151.939369088 -27.4340719745, 151.93957104 -27.432801006000002, 151.937354176 -27.432520028000003, 151.937070848 -27.434295991000003, 151.93754784 -27.4343560235, 151.937535968 -27.4344409755, 151.938325088 -27.434521987, 151.938367936 -27.4352859815, 151.938828 -27.4353350435))\n239\tRipley Valley\tReady for service\tPOLYGON ((152.78388176915914 -27.668471218456073, 152.78802309988009 -27.669041336129006, 152.78467570303704 -27.670941706886243, 152.78388176915914 -27.668471218456073))\nAYAA-GHIU2\tProvidence Estate\tReady for service\tPOLYGON ((144.891117820951 -37.6221723380054, 144.891226740286 -37.6221356924046, 144.890636743523 -37.6210725417118, 144.8877293394 -37.6207005339947, 144.887637209471 -37.6211520894176, 144.887771351243 -37.6211702335781, 144.887519499653 -37.6224090855957, 144.887870323562 -37.6224560037997, 144.88782847152 -37.6227026126977, 144.887961969108 -37.6227197726394, 144.887978535129 -37.6227618344449, 144.888026999985 -37.622793000017, 144.888208836278 -37.6228305956899, 144.888246958679 -37.6225801366953, 144.888401891325 -37.6226046609261, 144.888396854186 -37.6225489726218, 144.889287423226 -37.6226632236301, 144.889416473732 -37.6220461502057, 144.889818007983 -37.6220930203871, 144.889987130673 -37.6220770643574, 144.890499597566 -37.6221412929905, 144.890599148302 -37.622113680554, 144.890726346288 -37.622323275329, 144.891117820951 -37.6221723380054))\nAYAA-F3CHZ\tNewhaven\tReady for service\tPOLYGON ((115.930736211416 -32.1331908950702, 115.930703156062 -32.1332196716027, 115.930703024945 -32.1332198106604, 115.930702953522 -32.1332199276657, 115.930702928369 -32.1332199688604, 115.93070290602 -32.1332200342013, 115.93070286975 -32.1332201400989, 115.930702851626 -32.1332203177047, 115.930702862535 -32.1332204014785, 115.930702874617 -32.133220494862, 115.930702937695 -32.1332206649195, 115.930702981531 -32.1332207329003, 115.930703038547 -32.1332208211597, 115.930703173316 -32.1332209576856, 115.930703336739 -32.1332210692541, 115.930703522659 -32.1332211514308, 115.930703723901 -32.1332212013103, 115.930703923453 -32.1332212160614, 115.930738483624 -32.133191519234, 115.930738621329 -32.1331913744634, 115.930738717828 -32.1331912167134, 115.930738776476 -32.1331910459379, 115.930738794872 -32.1331908686412, 115.930738772364 -32.1331906918192, 115.93073870989 -32.1331905220198, 115.930738609672 -32.1331903658578, 115.930738477982 -32.1331902315491, 115.930853133361 -32.1330917100125, 115.930853274594 -32.1330915622762, 115.930853371213 -32.1330914044491, 115.930853429756 -32.1330912336606, 115.930853448257 -32.1330910563769, 115.930853425748 -32.1330908795548, 115.930853363168 -32.1330907097425, 115.930853263057 -32.1330905535936, 115.930853129059 -32.1330904169789, 115.931163724671 -32.1328200198426, 115.931486366977 -32.1325462842258, 115.931455385412 -32.1324609405678, 115.9296926573 -32.1309819790023, 115.929734 -32.1309500000127, 115.929576172657 -32.1308161749838, 115.929699 -32.1307130000128, 115.929384623742 -32.1304367592291, 115.929056899537 -32.1307132048553, 115.92905682873 -32.1307192586672, 115.928088443573 -32.1307110622369, 115.927928497688 -32.1312665327616, 115.928063503643 -32.1314786660662, 115.930419030944 -32.1334634331485, 115.930736211416 -32.1331908950702))\nAYCA-EZXP3\tHidden Waters\tReady for service\tPOLYGON ((151.639558370114 -32.8837089157827, 151.639517699382 -32.8836548918724, 151.639371986963 -32.8833756288168, 151.639303085124 -32.8834012240675, 151.639111267302 -32.883028675323, 151.639455639814 -32.8828630784392, 151.639452461368 -32.8828207044261, 151.639213347957 -32.8825056538843, 151.639157501739 -32.882562201345, 151.638874174658 -32.8826220537503, 151.638889420994 -32.8826670218726, 151.637865750921 -32.8829388727812, 151.637331198116 -32.8831880421687, 151.637176211917 -32.8832213706606, 151.636824633227 -32.8832286768485, 151.636719123791 -32.8832137165857, 151.636665667754 -32.8835804671919, 151.636496796247 -32.8836503831994, 151.636456813369 -32.8840485907322, 151.636513908771 -32.8841449403208, 151.636928663713 -32.8843746446191, 151.637223396424 -32.8845378753029, 151.63905863942 -32.8848229654494, 151.639156857569 -32.8848349754067, 151.639235631437 -32.8844399017965, 151.639352455085 -32.8844393144942, 151.639560656272 -32.8843728019015, 151.639702802672 -32.8843018552295, 151.639886475669 -32.8842536646106, 151.639558370114 -32.8837089157827))\nAYCA-KBSOQ\tHuntington Rise\tReady for service\tPOLYGON ((153.287132 -27.9184949999847, 153.286641 -27.9189719999847, 153.286616 -27.9190749999846, 153.286415 -27.9192899999847, 153.286381 -27.9194259999846, 153.285726 -27.9200139999846, 153.285478 -27.9206019999847, 153.285529 -27.9207539999847, 153.285518 -27.9207819999847, 153.285275 -27.9208359999847, 153.285322 -27.9210259999847, 153.28533 -27.9211249999847, 153.285303 -27.9213409999847, 153.285699 -27.9212629999847, 153.286025 -27.9212399999847, 153.286184 -27.9212709999847, 153.286177 -27.9212979999847, 153.287467 -27.9215489999846, 153.287547 -27.9212239999847, 153.287724 -27.9212149999847, 153.287884 -27.9211799999847, 153.288028 -27.9211089999846, 153.288158 -27.9209889999846, 153.288289 -27.9207799999847, 153.288103 -27.9206959999847, 153.288032 -27.9207309999846, 153.287946 -27.9208659999847, 153.287876 -27.9209259999847, 153.28779 -27.9209679999847, 153.287695 -27.9209889999847, 153.287587 -27.9209859999847, 153.287647 -27.9206699999846, 153.28744 -27.9200659999847, 153.287489 -27.9198309999847, 153.287782 -27.9186639999847, 153.287132 -27.9184949999847))\n10218\tClarkson-Somerly\tReady for service\tPOLYGON ((115.72906851768494 -31.685108811962056, 115.73021113872528 -31.685072293243508, 115.73023796081543 -31.68535987776318, 115.7302862405777 -31.685565294731706, 115.73032379150391 -31.685665720639772, 115.73036670684814 -31.685757016825548, 115.73148250579834 -31.686911905822825, 115.73127329349518 -31.68713101357606, 115.73115527629852 -31.68714014305456, 115.73114454746246 -31.687354685540644, 115.73113918304443 -31.687642262988813, 115.73085486888885 -31.687646827703027, 115.73088705539703 -31.687806592559134, 115.73104798793793 -31.68808047452978, 115.72993218898773 -31.688167203652004, 115.72954595088959 -31.688304144206274, 115.7292777299881 -31.688431955207992, 115.72896122932434 -31.688687576683368, 115.72876274585724 -31.688532378014418, 115.72875738143921 -31.688441084558516, 115.72911143302917 -31.688212850525872, 115.72939574718475 -31.688048521674848, 115.72972297668457 -31.687911580743407, 115.72966933250427 -31.687697039544577, 115.72953522205353 -31.6872314377901, 115.72949230670929 -31.687026024508839, 115.72935819625854 -31.686592372755523, 115.72930455207825 -31.686350439844258, 115.72916507720947 -31.685569859548082, 115.72906851768494 -31.685108811962056))\nAYCA-JY3KC\tOakdene Estate\tReady for service\tPOLYGON ((144.545255663843 -38.238505748673, 144.545196452492 -38.2388070980486, 144.54542846425 -38.2388208090392, 144.545340190339 -38.2392721189921, 144.545543185636 -38.2392974297074, 144.545237112525 -38.2408551327318, 144.544999845389 -38.2408274803029, 144.54494393196 -38.2411125096651, 144.544977729664 -38.2411210763289, 144.54489351757 -38.2413257862614, 144.547075472014 -38.2416427828345, 144.547010394431 -38.2419292696906, 144.54810856372 -38.2420622914214, 144.548132944289 -38.2419419538599, 144.548527762276 -38.2419901986243, 144.548603777872 -38.2416032551628, 144.548454064027 -38.241584961067, 144.548515266983 -38.2412734185176, 144.548046369403 -38.2412206784219, 144.546203456686 -38.2409954624698, 144.54660296398 -38.2389620941157, 144.546345209011 -38.2389305922845, 144.546406418057 -38.2386190509231, 144.546225842976 -38.2385969802156, 144.545836284149 -38.2385493693187, 144.545832936538 -38.2385674556455, 144.545257361793 -38.238497106794, 144.545255663843 -38.238505748673))\nAYCA-1ED0W6\tElderslie\tUnder construction\tPOLYGON ((150.722491999989 -34.0564940000155, 150.722553999989 -34.0566020000155, 150.722661999989 -34.0567870000155, 150.722515999989 -34.0569260000156, 150.722459999989 -34.0569250000155, 150.722367999989 -34.0569990000154, 150.722421999989 -34.0570490000155, 150.722475999989 -34.0570920000154, 150.722508999989 -34.0571140000155, 150.722540999989 -34.0571340000156, 150.722575999989 -34.0571540000155, 150.722630999989 -34.0571810000155, 150.722726999989 -34.0572180000154, 150.722808999989 -34.0572450000155, 150.723426999989 -34.0574450000156, 150.723449999989 -34.0574900000155, 150.723512999989 -34.0575130000155, 150.723598999989 -34.0575410000155, 150.723661999989 -34.0575590000156, 150.723717999989 -34.0575390000155, 150.724200999989 -34.0576930000155, 150.724287999989 -34.0577210000155, 150.724356999989 -34.0577420000156, 150.724433999989 -34.0577630000155, 150.724519999989 -34.0577830000155, 150.724599999989 -34.0578000000155, 150.724660999989 -34.0578110000156, 150.724742999989 -34.0578240000156, 150.724831999989 -34.0578350000156, 150.724908999989 -34.0578420000156, 150.725051999989 -34.0578510000155, 150.725397999989 -34.0578560000156, 150.725416999989 -34.0578560000156, 150.725457999989 -34.0578530000156, 150.725490999989 -34.0578480000155, 150.725511999989 -34.0578430000155, 150.725536999989 -34.0578370000156, 150.725562999989 -34.0578280000156, 150.725499293232 -34.0577209013904, 150.725494818397 -34.057707572696, 150.725370771 -34.0576837362784, 150.724795039581 -34.0566325436089, 150.725130255896 -34.0565135342191, 150.725031999989 -34.0563290000156, 150.724277999989 -34.0550370000156, 150.724048999989 -34.0550980000156, 150.723893999989 -34.0551630000155, 150.723745999989 -34.0552250000155, 150.723246999989 -34.0554390000155, 150.723357999989 -34.0554390000154, 150.723599999989 -34.0558600000155, 150.722928999989 -34.0561320000155, 150.723012999989 -34.0562840000155, 150.722930999989 -34.0563160000155, 150.722491999989 -34.0564940000155))\n10583\tSecret Harbour\tReady for service\tPOLYGON ((115.75388431549072 -32.416944979494694, 115.75388431549072 -32.416469488087742, 115.75406134128571 -32.416510244592239, 115.75410425662994 -32.416206834617121, 115.75393259525299 -32.4161706064922, 115.75394868850708 -32.415382641176429, 115.7539701461792 -32.414499568421327, 115.75384140014648 -32.414499568421327, 115.7538628578186 -32.414096522086368, 115.75554192066193 -32.414110107947195, 115.7555365562439 -32.414490511220095, 115.75564384460449 -32.414490511220095, 115.75564384460449 -32.416211363131708, 115.75550973415375 -32.416215891646061, 115.75551509857178 -32.416614400020094, 115.75556337833405 -32.416627985501805, 115.75556337833405 -32.41696762188014, 115.75388431549072 -32.416944979494694))\n17359417\t1550 Pascoe Vale Road Coolaroo\tCheck with carrier\tPOLYGON ((144.933915968 -37.645206193, 144.932956384 -37.645086294500004, 144.932732544 -37.645058304, 144.932508672 -37.6450303135, 144.932284832 -37.645002323, 144.932173088 -37.644988355500004, 144.932060928 -37.6449743325, 144.931837088 -37.644946342000004, 144.931635456 -37.644921145, 144.931613248 -37.64491837, 144.931501344 -37.6449044025, 144.931389408 -37.644890435, 144.931157952 -37.644861538, 144.930811872 -37.644818359, 144.930557056 -37.6447865575, 144.929733824 -37.6446835865, 144.930055424 -37.6452166085, 144.930605504 -37.646089586500004, 144.930728544 -37.6462406205, 144.93088912 -37.646500712, 144.930898528 -37.646515142, 144.930908576 -37.646529276, 144.93091936 -37.646543077000004, 144.930930816 -37.6465565265, 144.930942944 -37.646569606, 144.93095568 -37.646582297, 144.930969056 -37.6465945625, 144.93098304 -37.6466064025, 144.930997568 -37.646617817, 144.931206016 -37.6467746415, 144.931234016 -37.646819929500005, 144.93126944 -37.646815878, 144.93135952 -37.6468055735, 144.931722432 -37.6466604595, 144.931738912 -37.6466865445, 144.93239376 -37.646428081, 144.932525056 -37.646444509, 144.933603264 -37.646579374, 144.93361248 -37.6465491265, 144.93366624 -37.646357337000005, 144.933715552 -37.6461647705, 144.933915968 -37.645206193))\nAYAA-G0M8Z\tSouth at Seaford Meadows\tReady for service\tPOLYGON ((138.484664684411 -35.1712591559897, 138.484715736084 -35.1717193613349, 138.484730299247 -35.1718965054719, 138.484612897174 -35.1719108641611, 138.484614220992 -35.1719888935645, 138.484456415808 -35.1719993800969, 138.48452788187 -35.1721310793754, 138.484679040047 -35.1721548679219, 138.484686873858 -35.1725681964977, 138.488866375105 -35.172382411574, 138.488759287518 -35.1710354505733, 138.484664684411 -35.1712591559897))\n17341536\tWyreema Estate\tCheck with carrier\tPOLYGON ((151.869831136 -27.654777992, 151.868763008 -27.656415982000002, 151.871142976 -27.656748001500002, 151.87109184 -27.657118982, 151.871771168 -27.657207005, 151.87166208 -27.656709022, 151.872665056 -27.656469003, 151.872582976 -27.656021969, 151.87277088 -27.655956997, 151.872704992 -27.655603018, 151.872233056 -27.65567502, 151.872306112 -27.65532204, 151.869831136 -27.654777992))\nAYCA-EWZHS\tSouth at Seaford Meadows\tReady for service\tPOLYGON ((138.484732855314 -35.1725839127242, 138.484756244977 -35.1728839818068, 138.484331438131 -35.1728999324613, 138.483754655126 -35.1732949520999, 138.483466499126 -35.1730515302473, 138.483351651051 -35.1729365566099, 138.482836975919 -35.1728220944505, 138.482809062975 -35.1729852602943, 138.482904071369 -35.1730046394035, 138.482897504342 -35.1730317287071, 138.48285264052 -35.1731573577738, 138.483106505441 -35.1731991028005, 138.483425309779 -35.1734939066101, 138.483312824953 -35.1735759070916, 138.483903896689 -35.1740651343323, 138.484492479877 -35.1736355374427, 138.48452005908 -35.1736688173684, 138.484628859654 -35.1735342421878, 138.484390105332 -35.1733299386773, 138.484565222667 -35.1732619754489, 138.484595378693 -35.1732483643221, 138.485294033994 -35.1732118107712, 138.485650792962 -35.1731923025879, 138.485683258932 -35.1735974950797, 138.485734810639 -35.1735942174873, 138.485742089744 -35.1737219751916, 138.485757251681 -35.1739057265648, 138.485767915554 -35.1740936323295, 138.485931548448 -35.1740525070871, 138.486023861937 -35.1742828827594, 138.486135736826 -35.1745449186248, 138.486584784249 -35.1745212205722, 138.48657035228 -35.1743368681297, 138.486866065878 -35.1743212606609, 138.486861995858 -35.1742672232253, 138.487834814843 -35.1742234720163, 138.487840825032 -35.1742698086673, 138.488880829709 -35.1742121196433, 138.488863722179 -35.1739880483606, 138.488831124546 -35.1736096102097, 138.488047244673 -35.1736504862715, 138.487254058025 -35.1736957070298, 138.487217297132 -35.1732755196316, 138.487171598805 -35.1724577644063, 138.486812189272 -35.1724801529458, 138.486242325395 -35.1725006871508, 138.485551598184 -35.1725292827586, 138.484732855314 -35.1725839127242))\nAYAA-F8LET\tOrmeau Ridge\tReady for service\tPOLYGON ((153.25226694043 -27.8018459693702, 153.252283345642 -27.8018467072781, 153.252322834813 -27.8018484834544, 153.252551762966 -27.801882137504, 153.252561463907 -27.8019816689596, 153.252532126838 -27.8020798348784, 153.254510759995 -27.802227864684, 153.254579194452 -27.8021062167773, 153.254587327026 -27.8020919508788, 153.25486272316 -27.8016715371374, 153.255070027415 -27.8013078830842, 153.255085734162 -27.8012722088288, 153.255088086209 -27.8012392492067, 153.255068477285 -27.8012112016497, 153.255034197325 -27.8011984934534, 153.254446313996 -27.8011538494077, 153.254418670682 -27.8014416812506, 153.253053596926 -27.8013380073819, 153.252883241199 -27.8013613097813, 153.252559556565 -27.8013367243808, 153.252675332576 -27.8001314296644, 153.25242245689 -27.8001122220061, 153.252204909946 -27.8000434380085, 153.251875886965 -27.8000184450997, 153.251787046602 -27.8009992767575, 153.251463363344 -27.8009746887389, 153.251297589312 -27.8008986730987, 153.251140671483 -27.8008867526975, 153.250997582625 -27.8008960433148, 153.25089897081 -27.8009116901577, 153.250750338663 -27.8009352735299, 153.250376409219 -27.801498867871, 153.250272954281 -27.8015362546701, 153.250368508749 -27.8017453355987, 153.250321517853 -27.8017712256238, 153.250387021822 -27.801899429622, 153.250565523099 -27.8022891740077, 153.250614889427 -27.8023440396832, 153.251066139348 -27.80245068013, 153.251246360524 -27.8024278839704, 153.251874297821 -27.8025762758732, 153.252039729215 -27.802602684033, 153.252265627841 -27.8018468044031, 153.252265835746 -27.8018468343689, 153.252266035662 -27.8018468267013, 153.252266230026 -27.8018467846704, 153.252266411655 -27.8018467100023, 153.252266573434 -27.8018466054298, 153.2522667095 -27.8018464749009, 153.252266814397 -27.8018463235091, 153.252266884403 -27.8018461567572, 153.25226694043 -27.8018459693702))\nAYCA-VHOKB\tAurora Estate\tReady for service\tPOLYGON ((144.996540243027 -37.6192571596227, 144.996521732684 -37.6194020263223, 144.997470463999 -37.6194973927587, 144.99749911792 -37.6193176189462, 144.997507280007 -37.6192711400024, 144.997556280004 -37.6183941400022, 144.997602280003 -37.618126140002, 144.997536280002 -37.6181191400022, 144.997630280001 -37.617583140002, 144.997672280001 -37.6175881400018, 144.99773528 -37.6173411400017, 144.997883279999 -37.6170101400013, 144.99789013913 -37.6170006212043, 144.998564722596 -37.616097957087, 144.998383358026 -37.6160047867676, 144.998729427786 -37.6155452944633, 144.997775451825 -37.6151065763283, 144.997087007473 -37.6150008153281, 144.996918751436 -37.6161177288905, 144.996722910479 -37.6161051556229, 144.996635734812 -37.6165926582946, 144.997020000261 -37.6166286738357, 144.996872101336 -37.6170091063093, 144.996766990132 -37.6176147267949, 144.996478222921 -37.6176010257699, 144.996371536541 -37.6182778975058, 144.996605613606 -37.6182860083137, 144.996540243027 -37.6192571596227))\n17359833\t75-81 Bremen Street Hemmant\tCheck with carrier\tPOLYGON ((153.139708768 -27.455191833500002, 153.1393016 -27.4551826205, 153.138887264 -27.455173204, 153.138683744 -27.455168597500002, 153.136118976 -27.45480424, 153.135999136 -27.455472756000002, 153.135875424 -27.4561625655, 153.137083872 -27.4563349855, 153.13947472 -27.4566760515, 153.139663136 -27.456702932000002, 153.139663264 -27.456699269, 153.13968448 -27.4559957695, 153.139708768 -27.455191833500002))\nAYAA-HJXUR\t165 Rowes Lane\tReady for service\tPOLYGON ((144.965936354376 -37.4196941109529, 144.965054905842 -37.4195819764509, 144.965060447955 -37.4195507521174, 144.964702517484 -37.4195103374463, 144.964706872111 -37.4194858040576, 144.964125236205 -37.4194201279542, 144.964115338903 -37.4194758855948, 144.963200506374 -37.4193725801837, 144.963149828556 -37.4196580587876, 144.963169759101 -37.4196607644825, 144.963169644707 -37.419661408882, 144.963017802446 -37.4205167539898, 144.963070497819 -37.4205227047112, 144.96294379756 -37.4212364012049, 144.965642677402 -37.4215416004136, 144.965896103448 -37.4201137543069, 144.965862547145 -37.4201099657062, 144.965936354376 -37.4196941109529))\nAYCA-Q23DQ\tStrzelecki Views Estate\tReady for service\tPOLYGON ((146.165903487972 -38.2064062373483, 146.165901430573 -38.2064063907274, 146.165896208036 -38.2067689228852, 146.16595634581 -38.2072713585271, 146.165916797783 -38.2072743056663, 146.164611817431 -38.2090974176989, 146.16472227536 -38.2092478006624, 146.165558951422 -38.2096540435495, 146.166685060727 -38.2080699970362, 146.166733366051 -38.2079489485689, 146.167220122978 -38.2080556111315, 146.167379220989 -38.2081265502277, 146.167511620097 -38.2079416815342, 146.168080691381 -38.2081954176382, 146.168143799672 -38.2066112424239, 146.167690515299 -38.2067466130298, 146.167538457321 -38.2066649018919, 146.167078928042 -38.2066742218567, 146.166977055789 -38.2067033504479, 146.166526067672 -38.206712573195, 146.166513558204 -38.206504840774, 146.166566058906 -38.2063880587653, 146.165903487972 -38.2064062373483))\nAYCA-DIOLX\tOcean Club Residential Community\tReady for service\tPOLYGON ((152.831779795737 -31.5666562701162, 152.833728467981 -31.567184981921, 152.835239 -31.5651520000097, 152.835175 -31.5651380000097, 152.835020001504 -31.5650266136155, 152.835017015839 -31.5649960470399, 152.834873392721 -31.5648914033031, 152.834910989229 -31.5648469220944, 152.834571189731 -31.564621396133, 152.834210396391 -31.564382046642, 152.833955265226 -31.5642297575063, 152.833523001867 -31.5647219985491, 152.833424838182 -31.5646627036922, 152.832205649045 -31.5659808639002, 152.8322928622 -31.5660532280476, 152.831779795737 -31.5666562701162))\n17335051\tSt Eyre Estate\tCheck with carrier\tPOLYGON ((137.733543008 -32.5007980285, 137.733956992 -32.502921033, 137.735928 -32.502837968, 137.73583008 -32.500209969000004, 137.733487936 -32.500771018500004, 137.733543008 -32.5007980285))\nAYCA-KJ1FN\tThe Parc\tReady for service\tPOLYGON ((150.950595156373 -33.719577830225, 150.950829895619 -33.7201643851623, 150.952411220546 -33.7199306961883, 150.952494976381 -33.7201110125235, 150.953820730098 -33.7184514772287, 150.953666701131 -33.7178562402679, 150.951532319994 -33.7176384300169, 150.951607788772 -33.7178343459562, 150.951330641293 -33.7185547434432, 150.950975804359 -33.7189631376551, 150.950800361952 -33.719477643623, 150.950598328921 -33.719576221245, 150.950595156373 -33.719577830225))\n17348299\tBeaumount Park\tCheck with carrier\tPOLYGON ((147.020243776 -36.047103303, 147.01960368 -36.047024271, 147.01958928 -36.0471150875, 147.019347712 -36.0470843035, 147.01874256 -36.047007362, 147.018466816 -36.0469722675, 147.018394432 -36.047347281, 147.018395168 -36.0475292655, 147.018064672 -36.0479122155, 147.01811328 -36.047922927, 147.018286816 -36.048000516, 147.018386528 -36.048131181500004, 147.01842864 -36.0483846315, 147.01839408 -36.048563101, 147.018392288 -36.0485636375, 147.018116896 -36.04864365, 147.017704672 -36.0485910915, 147.017514976 -36.048295258, 147.017024992 -36.0482803285, 147.016852576 -36.0491706965, 147.01978656 -36.0495447295, 147.020243776 -36.047103303))\n17355577\tFersfield Road \u0026 Willowbank Road Gisborne\tCheck with carrier\tPOLYGON ((144.592994176 -37.4967479665, 144.592407008 -37.500095967, 144.59391216 -37.500255992, 144.594538912 -37.4969379615, 144.592994176 -37.4967479665))\n1143\tNone\tReady for service\tPOLYGON ((144.934485623438 -37.8177849378873, 144.934816056445 -37.816073667638, 144.937587750386 -37.8150194732256, 144.937640525146 -37.8152549844248, 144.937687706304 -37.815367467472, 144.938090711674 -37.8160411996979, 144.938190479563 -37.816005367215, 144.938373243044 -37.8163102679986, 144.934485623438 -37.8177849378873))\nAYCA-1FMEEC\tBarlow Estate\tContracted\tPOLYGON ((151.91544 -27.5289549999814, 151.913777 -27.5296239999814, 151.912928 -27.5295019999814, 151.91264124 -27.5305251599807, 151.916502 -27.5311209999814, 151.916641209003 -27.5302114671755, 151.916701799993 -27.5297458199811, 151.916631993491 -27.5297795159397, 151.916001467944 -27.5300174041448, 151.91544 -27.5289549999814))\nAYCA-1940S3\tAlarah Estate\tUnder construction\tPOLYGON ((145.248546999997 -38.1107970000281, 145.248612999997 -38.1107460000281, 145.248761999997 -38.1107280000282, 145.248726999997 -38.1105490000281, 145.248675999997 -38.1105550000281, 145.248609999997 -38.1105030000281, 145.248617999997 -38.1104660000281, 145.248313999997 -38.1104250000281, 145.248300999997 -38.1104890000281, 145.248234999997 -38.1105260000281, 145.247885999997 -38.1104800000281, 145.247838999997 -38.1107020000281, 145.248186784154 -38.1107479620577, 145.248234473656 -38.1108008914781, 145.248122342413 -38.1113247317703, 145.24771741877 -38.1112704178401, 145.247447999997 -38.1125290000281, 145.247815999997 -38.1125780000281, 145.248118999997 -38.1126190000281, 145.250904999997 -38.1130020000281, 145.250801999997 -38.1126680000282, 145.251136999997 -38.1126110000281, 145.251088999997 -38.1124340000282, 145.250747999997 -38.1124920000281, 145.250428999997 -38.1114620000281, 145.250233999997 -38.1114350000281, 145.250265999997 -38.1115370000281, 145.249271999997 -38.1114000000281, 145.249311999997 -38.1112210000281, 145.249305999997 -38.1111920000281, 145.248486999997 -38.1110790000281, 145.248546999997 -38.1107970000281))\nAYAA-FKLI6\tHalcyon Landing Bli Bli\tReady for service\tPOLYGON ((153.03895856369 -26.6174680398293, 153.039161212934 -26.6176678534066, 153.03915072 -26.6177570399732, 153.039197406541 -26.6177435296047, 153.040276680529 -26.6176984252997, 153.04070268 -26.6177953799731, 153.040910308625 -26.617881817086, 153.041100248293 -26.6178992800586, 153.041243215643 -26.6178931167806, 153.041347413691 -26.6177061577243, 153.041405418274 -26.6176804491663, 153.041593810391 -26.6174095191029, 153.041844361859 -26.6172162671881, 153.041683422257 -26.6164520606643, 153.041244119221 -26.6163181857946, 153.041318945691 -26.616150540585, 153.041454163523 -26.6151742932282, 153.040266020938 -26.6150253732574, 153.040233418314 -26.6152355233314, 153.04015758817 -26.6153171830562, 153.040154424594 -26.6154019891885, 153.040026324675 -26.6159385895432, 153.039770751095 -26.6165075733452, 153.039420857112 -26.6170088217595, 153.039076553967 -26.6173711338692, 153.03895856369 -26.6174680398293))\n10594\tSecret Harbour\tReady for service\tPOLYGON ((115.76508186757565 -32.415488389974591, 115.76582349836826 -32.415491786387605, 115.76598308980465 -32.415473106114469, 115.76602315530181 -32.41547381370065, 115.76602298766375 -32.415479049838162, 115.76625214889646 -32.415477493148664, 115.76625139452517 -32.415473318390326, 115.7663257420063 -32.415475370390212, 115.76824888586998 -32.415475936459138, 115.768251568079 -32.415783877428105, 115.76826497912407 -32.415917469139238, 115.76830118894577 -32.415917469139238, 115.76829951256514 -32.416088703988223, 115.76830588281155 -32.416222578280149, 115.76830722391605 -32.416361263912215, 115.76830923557281 -32.416638634536852, 115.76831191778183 -32.416647125460891, 115.76835751533508 -32.416647691522464, 115.76835550367832 -32.416946571537615, 115.76824570074677 -32.416946288507752, 115.76824586838484 -32.416953930313369, 115.76801016926765 -32.416953364253715, 115.7680094987154 -32.416944307298749, 115.76725110411644 -32.416945439418207, 115.76622314751148 -32.416942609119644, 115.766068585217 -32.416950250925566, 115.76606908813119 -32.416943882754012, 115.76568846590817 -32.416944095026409, 115.76498597860336 -32.416943741239088, 115.76497323811054 -32.41556537530473, 115.76494507491589 -32.415491786387605, 115.76508387923241 -32.415489522112281, 115.76508186757565 -32.415488389974591))\nAYCA-10P92J\tSt Anthony\u0027s - Secret Harbour\tUnder construction\tPOLYGON ((115.762005 -32.3999940000145, 115.76202147999 -32.4009900600038, 115.762061 -32.4029950000146, 115.763178960026 -32.4030038400137, 115.763225 -32.4032230000145, 115.763227 -32.4034770000145, 115.763699 -32.4034740000145, 115.763699 -32.4037280000145, 115.763761 -32.4037770000146, 115.764001 -32.4037820000145, 115.763992 -32.4032790000145, 115.763894 -32.4026480000145, 115.763599 -32.4026430000145, 115.763597479981 -32.402519060005, 115.763542479984 -32.401927059936, 115.763541 -32.4018160000145, 115.763605 -32.4017600000145, 115.763453479904 -32.4017610600103, 115.76344572 -32.401363050014, 115.763261479988 -32.401363060009, 115.763256 -32.4010680000145, 115.76323 -32.4009410000145, 115.763228 -32.4006750000145, 115.763406 -32.4006640000145, 115.763401 -32.4004020000145, 115.763515 -32.4002590000145, 115.763514 -32.3999750000145, 115.762005 -32.3999940000145))\nAYCA-139S5J\tGolden Bay\tReady for service\tPOLYGON ((115.755524712345 -32.4205202560757, 115.755860825516 -32.4204766827811, 115.755785852118 -32.4200477559577, 115.755367783362 -32.420097291717, 115.755423698636 -32.4199191759201, 115.755208043456 -32.4199072361465, 115.755130147213 -32.4199252542789, 115.755116789232 -32.4199223256094, 115.754753414784 -32.4199242261915, 115.754780372958 -32.4198877786852, 115.754814380704 -32.4197498361422, 115.754839856781 -32.4197018085905, 115.754853601102 -32.4196761513362, 115.754766768755 -32.4196428934295, 115.754607708851 -32.4196421342411, 115.754607644865 -32.419637337684, 115.753950899146 -32.4196374315238, 115.753012263326 -32.4196543143937, 115.753020337487 -32.4198897589684, 115.752970381272 -32.4200007796902, 115.75350063629 -32.4200242293887, 115.753347754195 -32.4206365661779, 115.753173645691 -32.4209265183705, 115.752714450375 -32.4207832168054, 115.752642212254 -32.4209171846602, 115.752557132717 -32.4209441517015, 115.75246446201 -32.4211158957872, 115.752480285812 -32.4211516746422, 115.753431034234 -32.4215228496582, 115.753473838112 -32.4215098700661, 115.753531865607 -32.4214017328492, 115.753679092867 -32.4214549614684, 115.753619105755 -32.4215659932178, 115.753634480298 -32.4216015345517, 115.754469941433 -32.4219278476565, 115.754615122135 -32.4216581661538, 115.75481225925 -32.4216274923288, 115.755007017378 -32.4215979365002, 115.755036 -32.4216040000146, 115.75506409648 -32.421609913062, 115.755098250877 -32.4216299173023, 115.755131202517 -32.4216507599383, 115.755160189446 -32.4216843806224, 115.755411629988 -32.4216297140759, 115.755399620096 -32.4215579023618, 115.755453464648 -32.4214951155492, 115.755677803536 -32.421463520113, 115.755524712345 -32.4205202560757))\nAYCA-1HPMUJ\tPeregian Breeze\tUnder construction\tPOLYGON ((153.078679 -26.4864609999726, 153.079353 -26.4871349999726, 153.079524 -26.4873329999726, 153.079713 -26.4875769999726, 153.079799 -26.4876889999726, 153.080849 -26.4873999999726, 153.080765 -26.4871389999726, 153.08078 -26.4869799999726, 153.080749 -26.4869879999726, 153.080671 -26.4867589999726, 153.080806 -26.4867219999726, 153.080791 -26.4866759999726, 153.080797 -26.4866419999726, 153.080952 -26.4857479999726, 153.080917 -26.4855929999726, 153.080963 -26.4853249999726, 153.080265 -26.4852269999726, 153.080361 -26.4846769999726, 153.080063 -26.4846349999726, 153.079866 -26.4846009999726, 153.07979 -26.4845899999726, 153.079364 -26.4845299999726, 153.079327 -26.4845339999726, 153.079295 -26.4845539999726, 153.07928 -26.4845849999726, 153.079213 -26.4849729999726, 153.079063 -26.4857619999726, 153.079031 -26.4858329999726, 153.079015 -26.4859049999726, 153.079025 -26.4860049999726, 153.079047 -26.4860809999726, 153.078889 -26.4862659999726, 153.078903 -26.4862799999726, 153.078679 -26.4864609999726))\nAYCA-1NJD6X\tAspiri\tUnder construction\tPOLYGON ((115.916003 -32.1445270000132, 115.916107 -32.1444410000133, 115.91732 -32.1433870000133, 115.917359249832 -32.1434178327501, 115.917494766702 -32.1432958624388, 115.917453 -32.1432710000133, 115.918233 -32.1425930000133, 115.918508 -32.1425920000133, 115.918511 -32.1425800000133, 115.91851 -32.1423350000133, 115.918478 -32.1423080000133, 115.918701 -32.1423100000132, 115.918714 -32.1421750000132, 115.918717 -32.1419040000132, 115.9183 -32.1419010000132, 115.918297 -32.1421710000133, 115.918276 -32.1421890000133, 115.918106 -32.1421870000133, 115.917944 -32.1422450000133, 115.917833 -32.1423410000133, 115.917803 -32.1423410000133, 115.917545 -32.1421260000132, 115.916805 -32.1427700000133, 115.916147 -32.1422220000132, 115.91608 -32.1421250000132, 115.91604 -32.1420200000132, 115.915888 -32.1420010000132, 115.915847 -32.1420690000133, 115.915609 -32.1421820000132, 115.915538971888 -32.1422505808187, 115.915856177107 -32.1425590510627, 115.914544439577 -32.1437289352892, 115.914501 -32.1437110000132, 115.91449 -32.1437280000133, 115.914526969332 -32.143744515975, 115.914444343507 -32.1438182049913, 115.914882 -32.1440170000132, 115.915535 -32.1443140000133, 115.916003 -32.1445270000132))\n10629\tStirling-Princeton\tReady for service\tPOLYGON ((115.81708252429962 -31.897763880376377, 115.81791937351227 -31.8962427150228, 115.81881523132324 -31.896597959480648, 115.81900298595428 -31.896297368105543, 115.81941068172455 -31.896010439059204, 115.82062840461731 -31.897203693663975, 115.82000076770782 -31.897686456399633, 115.81975400447845 -31.897476955900743, 115.81823587417603 -31.898519899315282, 115.81708252429962 -31.897763880376377))\nAYCA-KYBBZ\tSaratoga Estate\tReady for service\tPOLYGON ((144.718687648885 -37.9077956180254, 144.719068479682 -37.9079156651998, 144.719245697617 -37.9079413910833, 144.719343237377 -37.9077266499239, 144.720732601699 -37.9079164232758, 144.720684397102 -37.9081748643734, 144.721160859211 -37.9082306520323, 144.720928920168 -37.9094519847931, 144.723293924832 -37.9097288663166, 144.723643928066 -37.9080906946194, 144.721931957734 -37.9079380629763, 144.720270347078 -37.9077894463184, 144.720208037531 -37.9076259750646, 144.720231523583 -37.9073599049131, 144.72015675636 -37.9073527424489, 144.71992726906 -37.9073292020775, 144.719888525705 -37.9075420429399, 144.71984980754 -37.9075654861965, 144.718771604584 -37.9073789677276, 144.718741924389 -37.9075276269234, 144.718687648885 -37.9077956180254))\n89\tVictoria Harbour\tReady for service\tPOLYGON ((144.94251019944431 -37.8193148648327, 144.94171626557537 -37.819636922732222, 144.94012839784648 -37.8202047582361, 144.94039661874643 -37.820594612919116, 144.94116909493547 -37.820764114312624, 144.94141585817351 -37.820526812252872, 144.94171626557537 -37.820357310313724, 144.944130253693 -37.819628447542136, 144.94440920343294 -37.820314934768469, 144.94460232248019 -37.820781064431053, 144.94546062936186 -37.820611563075779, 144.94533188332738 -37.820060680984632, 144.94565374840911 -37.819992879827929, 144.94553573121456 -37.819450468330118, 144.94544990053089 -37.819213162046331, 144.94446284761472 -37.81951826998506, 144.94414098253299 -37.818747022482242, 144.9432290314605 -37.819052132347743, 144.94251019944431 -37.8193148648327))\n10478\tLakelands\tReady for service\tPOLYGON ((115.76628684997559 -32.469392136286608, 115.76598644256592 -32.46940118797292, 115.76609909534454 -32.469088904269555, 115.76551973819733 -32.469070800833251, 115.76539635658264 -32.469097955986349, 115.76507985591888 -32.469066274973621, 115.76503694057465 -32.469310671068918, 115.76342225074768 -32.469143214556645, 115.76318085193634 -32.470351609971104, 115.76342761516571 -32.470378764737937, 115.76372265815735 -32.470537167381174, 115.76437175273895 -32.470844920291377, 115.76474189758301 -32.471179826674906, 115.76537489891052 -32.470804188348964, 115.76630830764771 -32.470568847876386, 115.76628684997559 -32.469392136286608))\nAYCA-ZDHI7\tAspiri\tReady for service\tPOLYGON ((115.917500191323 -32.141551422264, 115.917575840925 -32.1414879376349, 115.917690435238 -32.1415815665815, 115.917937091783 -32.1417868399047, 115.918198059582 -32.1415638802186, 115.918310515145 -32.1414682233323, 115.918473583664 -32.141221259022, 115.918593597626 -32.1412189485592, 115.919716127587 -32.1402380274895, 115.917875279575 -32.1386820889989, 115.917772763713 -32.1387780110985, 115.91777234401 -32.1388548707683, 115.917589987567 -32.1390104496511, 115.917437954665 -32.1388847954319, 115.917297700624 -32.1387683866938, 115.917191159914 -32.1388602790776, 115.917478953661 -32.1391043391414, 115.917615007281 -32.1391654773664, 115.917575870361 -32.1392138938196, 115.917827399857 -32.1394257943355, 115.917823214959 -32.1394667891996, 115.917345980684 -32.1394649163603, 115.917343244578 -32.1396223513323, 115.917025574271 -32.1396194541737, 115.917014130775 -32.1408639517018, 115.917082029834 -32.141019975832, 115.917212 -32.1411280000132, 115.917360061257 -32.1412509945038, 115.917249077177 -32.1413480057349, 115.917500191323 -32.141551422264))\nAYCA-JBYRH\tKirkham Rise\tReady for service\tPOLYGON ((150.707736011559 -34.0241027745067, 150.708186287396 -34.0237842960302, 150.70824906638 -34.0238464219163, 150.708345265641 -34.0239665958799, 150.708564070855 -34.0238570642597, 150.709725476747 -34.0230301537408, 150.709808148127 -34.0228234283914, 150.709653882226 -34.0228293040166, 150.709551801566 -34.022792308342, 150.709491869609 -34.0227072474927, 150.709460847922 -34.0226596693457, 150.709473217493 -34.0225533426518, 150.709130037472 -34.0225537610266, 150.708954271824 -34.0224714858747, 150.707619410001 -34.0211244172812, 150.706516186254 -34.0219000436408, 150.706609270561 -34.0222382693461, 150.706227137139 -34.022508548211, 150.707096256509 -34.0235332549849, 150.707736011559 -34.0241027745067))\nAYCA-IUBNF\tLots 156-158 \u0026 169 Landsdale\tReady for service\tPOLYGON ((115.873276630402 -31.8174764837792, 115.873275600091 -31.8180690372764, 115.8750522 -31.8180707100116, 115.875055363525 -31.8157950273471, 115.873605801906 -31.8157931089391, 115.873279557467 -31.8157926474106, 115.872418291027 -31.8157922739664, 115.872388528773 -31.8174648742186, 115.873276630402 -31.8174764837792))\n10332\tDudley Park-Mariner\u0027s Cove\tReady for service\tPOLYGON ((115.73980003595352 -32.555757370278961, 115.73970884084702 -32.555735893164567, 115.73940709233284 -32.555888493602758, 115.73892295360565 -32.556130622631287, 115.73890417814255 -32.556207487731534, 115.73905169963837 -32.55641547531976, 115.73886930942535 -32.55650364382582, 115.73845356702805 -32.556709370003063, 115.738625228405 -32.55695804936795, 115.73856353759766 -32.556987438701888, 115.73863863945007 -32.557129863799318, 115.73841065168381 -32.557229335161871, 115.73828458786011 -32.557279070801783, 115.7379412651062 -32.557444102500426, 115.73783397674561 -32.557502880840339, 115.7376354932785 -32.557591048278034, 115.73763012886047 -32.557676954928866, 115.73797076940536 -32.558059012458763, 115.73814779520035 -32.558246649584916, 115.73848843574524 -32.558628704689276, 115.73856890201569 -32.558633226041714, 115.73889881372452 -32.5584727178905, 115.73898732662201 -32.55858575182971, 115.73918849229813 -32.5588163406242, 115.74020236730576 -32.558287341921954, 115.74030965566635 -32.558224042723026, 115.74019968509674 -32.5580725766015, 115.74022114276886 -32.558016059326484, 115.74026137590408 -32.557975366866444, 115.74076563119888 -32.557762861497459, 115.74068784713745 -32.557649826521704, 115.7409480214119 -32.557534530699741, 115.74097618460655 -32.5574563067803, 115.74064761400223 -32.556989699419482, 115.74050545692444 -32.55678397388489, 115.74022650718689 -32.556374782133915, 115.7400843501091 -32.556171315927855, 115.73980003595352 -32.555757370278961))\n17231671\tLots 639-642 Horus Bend Bibra Lake - Stage 3\tCheck with carrier\tPOLYGON ((115.814032992 -32.098437995, 115.809444 -32.098439993, 115.809439008 -32.0997129965, 115.813079008 -32.0997020075, 115.814033984 -32.099030994, 115.814032992 -32.098437995))\nAYCA-HRACE\tGreenhills Beach Residential\tReady for service\tPOLYGON ((151.161808804036 -34.0341041256818, 151.16059973869 -34.0360744911556, 151.160357118538 -34.0362370412825, 151.160424491791 -34.0363738012577, 151.160504628176 -34.0364405362095, 151.160689172426 -34.0364924504988, 151.161469284269 -34.0365813599362, 151.161585996757 -34.0363512991111, 151.161640565182 -34.0363451467796, 151.161845317168 -34.0364295030834, 151.161890501435 -34.03634075503, 151.161663925285 -34.0362328465263, 151.161825940289 -34.0359816189507, 151.162552958344 -34.0362713414395, 151.162680702576 -34.0360842315783, 151.163119181967 -34.0362454448181, 151.164217493097 -34.0345845856231, 151.163945279133 -34.0344683457016, 151.163965724463 -34.0343458941116, 151.164119571304 -34.0342889302591, 151.164028494741 -34.0341478825662, 151.163822601638 -34.0342590971018, 151.163541243782 -34.0343310877728, 151.161808804036 -34.0341041256818))\n17322671\tAlbert Park Stage 5\tCheck with carrier\tPOLYGON ((143.926175168 -37.5462279925, 143.92614816 -37.546212952000005, 143.926059968 -37.546208993, 143.925972128 -37.546189013, 143.925944032 -37.546146981, 143.92592208 -37.54608804, 143.925347168 -37.5457979785, 143.92546416 -37.545645964, 143.92537488 -37.5455940345, 143.92523808 -37.545751987500005, 143.925013088 -37.545939004000005, 143.924787008 -37.545836033, 143.92426896 -37.5461350115, 143.923979872 -37.5456950075, 143.923766048 -37.545768989, 143.922377152 -37.546353996, 143.92167408 -37.5473709965, 143.921832128 -37.547463959, 143.925216128 -37.547465032, 143.926098112 -37.546363986, 143.926175168 -37.5462279925))\nAYCA-O1HNI\tAspiri\tReady for service\tPOLYGON ((115.912551774299 -32.1403086957267, 115.912565116337 -32.1404631878035, 115.912560115202 -32.1405556575469, 115.91271737699 -32.1405580927086, 115.912711888769 -32.1410063161564, 115.913080795538 -32.1410112124107, 115.913145201422 -32.1409576163985, 115.915345218696 -32.140978323115, 115.91581491082 -32.1410717884228, 115.915924979999 -32.1410349900122, 115.916246097882 -32.1410315373298, 115.916247904411 -32.1408788107299, 115.916192153327 -32.1408771198829, 115.916213693704 -32.1396162878688, 115.915869777027 -32.1396183706882, 115.915709281649 -32.1395994578973, 115.914103500806 -32.1395844741177, 115.914108292206 -32.1391681582373, 115.913995578237 -32.1391516927364, 115.913783446859 -32.1390647350396, 115.913838507629 -32.1389636992217, 115.913677299502 -32.1388934777606, 115.913639391254 -32.1389537572237, 115.913369206679 -32.1392898861896, 115.912732031044 -32.1399934092687, 115.912666580562 -32.1400395009799, 115.912571541885 -32.1400604553482, 115.911833248099 -32.1397069471382, 115.911698799994 -32.1399116392522, 115.912551774299 -32.1403086957267))\n17340366\tRed Ochre\tCheck with carrier\tMULTIPOLYGON (((152.8729 -31.4770779955, 152.872691008 -31.477025992, 152.87269097173353 -31.477026228691788, 152.8729 -31.4770779955)), ((152.872635008 -31.478602007000003, 152.872594016 -31.4776590065, 152.87269097173353 -31.477026228691788, 152.872690016 -31.477025992, 152.872738016 -31.476709993500002, 152.872243008 -31.476680005000002, 152.872270016 -31.4765110075, 152.871967008 -31.476222999500003, 152.871543008 -31.4760720025, 152.871211008 -31.4761090025, 152.870279008 -31.4761090025, 152.870184 -31.478427996, 152.871832 -31.478543991000002, 152.872635008 -31.478602007000003)))\nAYCA-SJ3BD\tThe Village at Wellard\tReady for service\tPOLYGON ((115.824519064651 -32.2738274722911, 115.823355999171 -32.2744090369272, 115.823249724242 -32.2744652406284, 115.823037739507 -32.2745338535848, 115.822919889736 -32.2742874483317, 115.82278568856 -32.2743288381357, 115.82261750893 -32.2743356405653, 115.822599340049 -32.2743645176341, 115.822475707556 -32.2743638043627, 115.822471331696 -32.274341309482, 115.822147833106 -32.274349689402, 115.821902910951 -32.2754966179884, 115.821850851402 -32.2754933227838, 115.821828030686 -32.2757197239409, 115.821817979214 -32.2757964033199, 115.821640203853 -32.2757927962124, 115.821638549585 -32.2758327172722, 115.821799834724 -32.2758434145436, 115.821855886523 -32.2758392329379, 115.822088990932 -32.2758458324179, 115.822195770286 -32.2758425833019, 115.82235361521 -32.2758400600448, 115.822459213505 -32.2758256825282, 115.823691819701 -32.2755418414716, 115.823970871859 -32.2754277153261, 115.824107129616 -32.2753419546755, 115.824126153199 -32.2752759282409, 115.825634165744 -32.2744767498498, 115.825791424811 -32.2747267254182, 115.825978619521 -32.2745286065211, 115.826121599858 -32.2740969512735, 115.825877738498 -32.2738006750084, 115.825875266234 -32.2737088104697, 115.825879610582 -32.2735388669933, 115.825791267564 -32.2734526940716, 115.825540572411 -32.2732235245413, 115.825269125518 -32.2734094722776, 115.824858266483 -32.2737565861774, 115.824707902387 -32.2736492076659, 115.824519064651 -32.2738274722911))\nAYCA-E2RAD\tRees Road, Brookfield\tReady for service\tPOLYGON ((144.556781497763 -37.7097882370117, 144.556951472087 -37.7099107564075, 144.561367573685 -37.7065767292638, 144.562554035243 -37.7054275478239, 144.561181358285 -37.7060975963103, 144.560442515219 -37.7062967020743, 144.558778362977 -37.7070586414021, 144.55791267258 -37.7076089249128, 144.557419926845 -37.7081183451423, 144.557532789357 -37.7088784536175, 144.557636271254 -37.7091259930298, 144.556781497763 -37.7097882370117))\n10113\tBaldivis-Tuart Ridge\tReady for service\tPOLYGON ((115.81399261951447 -32.339206464431314, 115.81397652626038 -32.33901157208485, 115.81408381462097 -32.338843873683338, 115.8134400844574 -32.338857470862592, 115.81351518630981 -32.340498182164168, 115.81385850906372 -32.340498182164168, 115.81404089927673 -32.340493649853478, 115.81403017044067 -32.340407535907275, 115.81408381462097 -32.340348615791605, 115.81438422203064 -32.340339551155012, 115.81438958644867 -32.340652280592487, 115.81553220748901 -32.340634151379241, 115.81578433513641 -32.340711200510434, 115.81586480140686 -32.34057069910429, 115.81634223461151 -32.340738394305781, 115.8164656162262 -32.340461923672308, 115.81679284572601 -32.340557102182444, 115.81674993038177 -32.34066587750003, 115.81713616847992 -32.340783717279869, 115.81742584705353 -32.340121999604563, 115.81674993038177 -32.339877253485142, 115.81685185432434 -32.339632506703786, 115.81671237945557 -32.339591715509208, 115.81682503223419 -32.339351500323723, 115.81681966781616 -32.338993442542908, 115.81672847270966 -32.3389254567283, 115.81649243831635 -32.338929989117524, 115.81649243831635 -32.339220061556105, 115.81399261951447 -32.339206464431314))\nAYCA-KYW9J\tEstella\tReady for service\tPOLYGON ((147.351224224319 -35.0802781835745, 147.350879902463 -35.0803447873418, 147.350920647407 -35.080496872889, 147.350415665981 -35.0805920313633, 147.350374997526 -35.0804131856728, 147.349809863627 -35.080527008116, 147.349889344788 -35.0808613771852, 147.350036683493 -35.0811791878155, 147.349828047708 -35.0812455387935, 147.350465664316 -35.0820443889869, 147.350389200139 -35.0820950963123, 147.350808274644 -35.0824528536197, 147.350854954135 -35.082414185456, 147.351346290831 -35.0828222979117, 147.352865697498 -35.0815776249654, 147.352489941942 -35.0806937800264, 147.35189543623 -35.080035862903, 147.351637382976 -35.0800082749226, 147.351224224319 -35.0802781835745))\n10509\tLakelands\tReady for service\tPOLYGON ((115.778067111969 -32.469058142569, 115.77818512916565 -32.470750798361813, 115.77853918075562 -32.470723643707181, 115.77856063842773 -32.471076653578457, 115.77519178390503 -32.471321044217035, 115.77514886856079 -32.470805107646477, 115.77537417411804 -32.470153394068348, 115.77600717544556 -32.46972796738239, 115.77696204185486 -32.4692391767937, 115.778067111969 -32.469058142569))\nAYAA-G2694\tThe Ponds\tReady for service\tPOLYGON ((150.904883037469 -33.7033945088663, 150.904884909823 -33.7048211372613, 150.904959972374 -33.7051787871167, 150.905004143179 -33.7053375937077, 150.905249890512 -33.7058671660448, 150.90544388085 -33.7061862391215, 150.907045770832 -33.7051250460136, 150.907320641965 -33.7049767876521, 150.90761587889 -33.7048590172574, 150.906930286036 -33.7033971510743, 150.904883037469 -33.7033945088663), (150.906557791334 -33.7037820097858, 150.906464715896 -33.703582659891, 150.906799640186 -33.7035636893746, 150.906890956409 -33.7037531883367, 150.906932545686 -33.7038694767146, 150.906551752609 -33.7038852850025, 150.906557791334 -33.7037820097858))\nAYCA-10NFWS\tTwin Waters Estate\tReady for service\tPOLYGON ((150.614387999986 -34.9143320000157, 150.614324999986 -34.9146710000158, 150.614208999986 -34.9148200000157, 150.613888999986 -34.9163300000157, 150.614002999986 -34.9163440000157, 150.613937999986 -34.9166910000157, 150.613987999986 -34.9168440000158, 150.613922999986 -34.9171910000157, 150.615054999986 -34.9173420000157, 150.615545769031 -34.9174059699118, 150.616090568678 -34.9144019697217, 150.615370999986 -34.9143110000157, 150.615343999986 -34.9144540000157, 150.614387999986 -34.9143320000157))\nAYCA-PCUQ6\tJohnston Stage 2\tReady for service\tPOLYGON ((131.008389200094 -12.4880008665144, 131.008464458975 -12.4881560378704, 131.008718185463 -12.4886865834136, 131.008709036391 -12.4889759249847, 131.008785525431 -12.4892148995855, 131.008879788215 -12.4894241936219, 131.009068329558 -12.4896918496152, 131.009246934128 -12.4897523961531, 131.009340579963 -12.4900317923449, 131.009464144475 -12.4901135630194, 131.009575695957 -12.4899756234459, 131.009972053352 -12.489898836194, 131.010016351213 -12.4901948572439, 131.00996320438 -12.4904316963096, 131.009903610668 -12.4907587112883, 131.009885769622 -12.4910022755593, 131.009851751654 -12.491077585004, 131.010830999986 -12.4909919998868, 131.010706017941 -12.4897414547478, 131.010446647172 -12.4889057308901, 131.01015985071 -12.4880042554685, 131.009924444508 -12.4874029936671, 131.009773497992 -12.4873903237109, 131.009766276903 -12.4872798648377, 131.009477231914 -12.4874228085808, 131.009168187911 -12.48756377424, 131.009050747437 -12.4876241587724, 131.009058732194 -12.48765371271, 131.009032750649 -12.4876934552202, 131.008389200094 -12.4880008665144))\nAYCA-15R7EA\tByford West\tReady for service\tPOLYGON ((115.976886020093 -32.2256277021986, 115.976724769456 -32.2256268080919, 115.976722693219 -32.2258973374892, 115.976721655081 -32.2260326025951, 115.976623635554 -32.2260320589951, 115.97655945722 -32.2260859065486, 115.976557727419 -32.2263112415081, 115.976880759277 -32.2263130445839, 115.977207 -32.2263150000132, 115.977684 -32.2263180000133, 115.977669 -32.2279540000132, 115.977985995385 -32.2279559874471, 115.977985 -32.2281690000132, 115.977947 -32.2283350000132, 115.977919809636 -32.2283576210455, 115.977983414025 -32.2284119584702, 115.977982 -32.2286300000133, 115.978194 -32.2286300000133, 115.978196 -32.2283590000132, 115.978218 -32.2283590000132, 115.978221 -32.2279790000132, 115.978285 -32.2279250000132, 115.979457 -32.2279250000133, 115.979463 -32.2274900000133, 115.979304 -32.2274890000133, 115.97932 -32.2263210000132, 115.97957065044 -32.226320003979, 115.97960330578 -32.225672623555, 115.979340756032 -32.2256475273949, 115.976886020093 -32.2256277021986))\nAYCA-11QH4G\tThornton East Estate\tReady for service\tPOLYGON ((151.649705999999 -32.7652340000161, 151.649693999999 -32.7653270000161, 151.649717999999 -32.7653360000162, 151.649695999999 -32.7654300000162, 151.649744999999 -32.7654530000162, 151.649781999999 -32.7654720000162, 151.649793999999 -32.7654790000162, 151.649846999999 -32.7655420000162, 151.649708999999 -32.7662440000162, 151.650025999999 -32.7662890000162, 151.650166999999 -32.7655760000162, 151.650198999999 -32.7655550000162, 151.650306999999 -32.7655380000162, 151.650490999999 -32.7655640000162, 151.650559999999 -32.7655790000162, 151.650617999999 -32.7656000000162, 151.650660999999 -32.7656220000162, 151.650702999999 -32.7656500000162, 151.650738999999 -32.7656810000162, 151.650768999999 -32.7657140000162, 151.650949999999 -32.7656100000162, 151.650932999999 -32.7655900000161, 151.650931999999 -32.7655340000162, 151.650997999999 -32.7654710000162, 151.651054999999 -32.7654200000162, 151.651136999999 -32.7653620000162, 151.651209999999 -32.7653150000162, 151.651273999999 -32.7652770000162, 151.651307999999 -32.7652590000162, 151.651341999999 -32.7652420000162, 151.651408999999 -32.7652110000161, 151.651462999999 -32.7651890000162, 151.651550999999 -32.7651580000162, 151.651616999999 -32.7651380000162, 151.651688999999 -32.7651190000162, 151.651765999999 -32.7651030000162, 151.651858999999 -32.7650880000162, 151.651963999999 -32.7650770000161, 151.652117999999 -32.7650720000162, 151.652273999999 -32.7650740000162, 151.652733999999 -32.7650800000161, 151.653004999999 -32.7650840000162, 151.653000999999 -32.7649300000162, 151.653007999999 -32.7646280000162, 151.652918999999 -32.7640880000162, 151.652846999999 -32.7638080000162, 151.652725999999 -32.7636700000162, 151.652639999999 -32.7633150000161, 151.651448999999 -32.7635320000162, 151.650603999999 -32.7639500000162, 151.650448999999 -32.7641420000161, 151.650307999999 -32.7648610000162, 151.649990999999 -32.7648160000161, 151.649946999999 -32.7648110000162, 151.649883999999 -32.7651450000162, 151.649868999999 -32.7651830000162, 151.649837999999 -32.7651990000162, 151.649805999999 -32.7652000000161, 151.649738999999 -32.7652010000162, 151.649708999999 -32.7651980000162, 151.649705999999 -32.7652340000161))\nAYAA-G2EO2\tEagle Rise Estate\tReady for service\tPOLYGON ((152.562973981554 -27.4682997975088, 152.562973904479 -27.4682997845744, 152.562973588677 -27.4682997315775, 152.562935018292 -27.4685336497587, 152.563356671423 -27.4688899919495, 152.563446807813 -27.4689310542754, 152.564925054227 -27.4696044681724, 152.565262315378 -27.4696621882956, 152.565647911621 -27.4695521502317, 152.566054152226 -27.4691156867227, 152.566263972519 -27.4676535623109, 152.564751326522 -27.4674965486197, 152.563968179288 -27.4674102729605, 152.563874278236 -27.4682213509184, 152.563397097507 -27.4683052132197, 152.56343025478 -27.4683763669577, 152.562973981554 -27.4682997975088))\nAYCA-KVTM7\tGracemere Greens Estate\tReady for service\tPOLYGON ((150.467308434216 -23.4647783600981, 150.467324828821 -23.4644013273529, 150.467053104026 -23.4643781078816, 150.467078941305 -23.4641911308186, 150.467044888453 -23.4641872124773, 150.467205585355 -23.4633142917605, 150.466916209289 -23.4632690330019, 150.466934124055 -23.4631717184405, 150.466778736096 -23.4631472960395, 150.466783748803 -23.4631208003363, 150.466725782627 -23.4631117683996, 150.466720263857 -23.4631381456946, 150.466350551358 -23.4630804370283, 150.466594892704 -23.4616539746573, 150.466012181735 -23.4615634506659, 150.466018634425 -23.4615257395621, 150.465498427144 -23.4614439680554, 150.465237412462 -23.4628684411657, 150.464943341272 -23.4644105102993, 150.467308434216 -23.4647783600981))\n10295\tDawesville-Port Bouvard South\tReady for service\tPOLYGON ((115.63187062740326 -32.611531466052533, 115.63124299049377 -32.611662507823127, 115.63094258308411 -32.61157665289165, 115.63038468360901 -32.611545022106661, 115.62904357910156 -32.611486279190636, 115.62898993492126 -32.61156309684231, 115.62865734100342 -32.61156309684231, 115.62848031520844 -32.611445610995425, 115.62853932380676 -32.611260344539112, 115.62880754470825 -32.610925960208732, 115.62915086746216 -32.61041986263109, 115.62963366508484 -32.609977024904488, 115.63026666641235 -32.609949912319472, 115.6302747130394 -32.609983344112571, 115.63105523586273 -32.609922340789062, 115.6311222910881 -32.609974306585784, 115.6311222910881 -32.610279322610829, 115.63116252422333 -32.610525594050834, 115.63119739294052 -32.6107673460901, 115.63120543956757 -32.610950354209173, 115.63133955001831 -32.611006838121021, 115.63146561384201 -32.611128843249027, 115.63159972429276 -32.611280219750839, 115.63188940286636 -32.611540044493275, 115.63187062740326 -32.611531466052533))\n156\tGrand Central Shopping Centre\tReady for service\tPOLYGON ((151.94767092229293 -27.5603446110652, 151.94725786210304 -27.561837886139735, 151.94812153340919 -27.561818863655315, 151.94967721463615 -27.562042377641987, 151.95048724176053 -27.560701286894737, 151.94767092229293 -27.5603446110652))\n10309\tDawesville-Dawesville Ridge\tReady for service\tPOLYGON ((115.63877463340759 -32.624083493256379, 115.63760250806808 -32.624080775365933, 115.6376051902771 -32.6243789662823, 115.6376051902771 -32.624430923688848, 115.63709557056427 -32.6244218876203, 115.63709557056427 -32.62454839249677, 115.63710361719131 -32.624851099868224, 115.63722163438797 -32.624851099868224, 115.63720554113388 -32.626276521565423, 115.63770174980164 -32.626272003624429, 115.63790023326874 -32.626265226712512, 115.63806116580963 -32.626310406115579, 115.63845545053482 -32.626310406115579, 115.63852518796921 -32.62625844980009, 115.63867807388306 -32.62626070877095, 115.63868075609207 -32.62639624691856, 115.63908308744431 -32.626421095556687, 115.63902676105499 -32.625583014954053, 115.63883632421494 -32.62455291052477, 115.63877463340759 -32.624083493256379))\nAYCA-ES8DH\tHillTop (Bennis)\tReady for service\tPOLYGON ((150.848479023084 -34.4376222076966, 150.848605234924 -34.4371637118563, 150.848609830433 -34.4367450907916, 150.848538046528 -34.4366839200423, 150.848214339288 -34.4366934102274, 150.848135701787 -34.4364981845755, 150.847981455324 -34.4362804543843, 150.84773866824 -34.4360335708587, 150.847000925189 -34.4354927376342, 150.847056203241 -34.4359781215512, 150.846910705546 -34.4359637038594, 150.846694546787 -34.4360281125747, 150.84623185597 -34.4355851827861, 150.846001266057 -34.4356437733266, 150.845995121135 -34.4362305228941, 150.845882458922 -34.4372520581103, 150.846818994008 -34.4373983942123, 150.848479023084 -34.4376222076966))\nAYCA-MNFP2\tBrookford\tContracted\tPOLYGON ((145.314933876048 -38.1144916738184, 145.314701179915 -38.1156302474136, 145.314441205391 -38.1169022466063, 145.314501142892 -38.1169404041772, 145.31451128026 -38.1170303558291, 145.314554613777 -38.117039540957, 145.314980482666 -38.1170878163045, 145.315234375795 -38.1171222695356, 145.315305973787 -38.1171232965004, 145.315485999998 -38.1170880000283, 145.315515245341 -38.1170871639785, 145.315634852872 -38.1170562966374, 145.315691850634 -38.1167806309811, 145.315752777078 -38.1166714769414, 145.315979099327 -38.1155586304416, 145.316193936628 -38.1154208041003, 145.316225017423 -38.1152701245816, 145.316305008549 -38.1151124676173, 145.316342261338 -38.11511007328, 145.316609890398 -38.1151278031075, 145.31759961816 -38.1152556180403, 145.317795975086 -38.1152780373537, 145.317904177231 -38.1152653678494, 145.317994663345 -38.1151989656425, 145.318025068353 -38.1151233320661, 145.318031094307 -38.1150941893955, 145.318011204653 -38.1150045320876, 145.316036780291 -38.11474974462, 145.315691047926 -38.1145893939496, 145.314933876048 -38.1144916738184))\nAYCA-YGR8M\tLearmonth Street Subdivision\tReady for service\tPOLYGON ((143.810931456638 -37.5588375241757, 143.810688000034 -37.5588110000006, 143.808895000034 -37.5586150000007, 143.808843000034 -37.5586260000008, 143.808796000034 -37.5588840000007, 143.808594000034 -37.5588600000007, 143.808314025791 -37.5603959888227, 143.808316292325 -37.5604098976486, 143.808573000034 -37.5603920000007, 143.808610000034 -37.5603910000007, 143.808990000034 -37.5604030000007, 143.809027000034 -37.5604060000007, 143.809158000034 -37.5604190000007, 143.809194000034 -37.5604240000007, 143.809466000034 -37.5604710000007, 143.809502000034 -37.5604790000007, 143.810023000034 -37.5606520000007, 143.810048000034 -37.5606510000006, 143.810081000034 -37.5606650000007, 143.810322604655 -37.5607824769356, 143.810629000034 -37.5591160000007, 143.810875000034 -37.5591440000006, 143.810931456638 -37.5588375241757))\n17376001\tSpringview Estate\tCheck with carrier\tPOLYGON ((140.750435008 -37.8073679985, 140.750643008 -37.806904, 140.750751008 -37.806939002, 140.750806016 -37.806754002, 140.750588992 -37.8067039965, 140.750544 -37.806718001, 140.750264 -37.8066250015, 140.750390016 -37.806389996, 140.748700992 -37.805904001, 140.748448 -37.805498, 140.748511008 -37.805425998000004, 140.748204 -37.805261995500004, 140.747924 -37.8052910035, 140.747843008 -37.805018998, 140.747644 -37.804911994, 140.746975008 -37.805091000000004, 140.747463008 -37.8064330085, 140.750435008 -37.8073679985))\nON-V-CNL-FUR\tFurlong Road\tReady for service\tPOLYGON ((144.79012191295624 -37.75588456672174, 144.79011118412018 -37.756062699094656, 144.7915381193161 -37.756215383644353, 144.79116797447205 -37.757699800342174, 144.78880226612091 -37.757411401715, 144.78884518146515 -37.756775224297293, 144.78934407234192 -37.755803982888324, 144.79012191295624 -37.75588456672174))\n17324603\tMoonee Ridge Estate\tCheck with carrier\tPOLYGON ((153.15106896 -30.208320005, 153.15000912 -30.2086279745, 153.150114976 -30.2080400075, 153.149439968 -30.2080100375, 153.149415136 -30.208145032, 153.148529888 -30.2079020345, 153.14835888 -30.207708987, 153.148305952 -30.2078860135, 153.14880096 -30.2081130085, 153.148911136 -30.2081380205, 153.148848832 -30.2083119945, 153.148686848 -30.208861981000002, 153.148520896 -30.209423049, 153.147885856 -30.2092800255, 153.147498848 -30.2105649615, 153.150746048 -30.210026038000002, 153.150864832 -30.2093980185, 153.150874912 -30.209344017, 153.150904096 -30.209194981, 153.15093792 -30.209012016000003, 153.150968896 -30.2088490125, 153.151002016 -30.208672985, 153.15103296 -30.2085099815, 153.15106608 -30.208338986, 153.15106896 -30.208320005))\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1659337696562_1957224400",
+ "id": "paragraph_1659337696562_1957224400",
+ "dateCreated": "2022-08-01T07:08:16+0000",
+ "dateStarted": "2022-08-16T04:47:04+0000",
+ "dateFinished": "2022-08-16T04:47:04+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Data count of each column",
+ "text": "%python\nnew_site_df.count()",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 6.0,
+ "editorHide": false,
+ "fontSize": 15.0,
+ "title": true,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TEXT",
+ "data": "LOC_UID 12382\nDEVELOPMENT_NAME 10183\nSTATUS 12382\nDEVELOPMENT_SHAPE 12382\ndtype: int64\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_1872096393",
+ "id": "20220727-124935_413530157",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:06+0000",
+ "dateFinished": "2022-08-16T04:47:06+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Populate the missing values in DEVELOPMENT NAME column",
+ "text": "%python\n\nnew_site_df.DEVELOPMENT_NAME \u003d new_site_df.DEVELOPMENT_NAME.fillna(\u0027Proposed Development Site\u0027)\n",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "language": "sql",
+ "editOnDblClick": false
+ },
+ "colWidth": 6.0,
+ "editorMode": "ace/mode/undefined",
+ "fontSize": 17.0,
+ "title": true,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": []
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1659094513922_1711749747",
+ "id": "paragraph_1659094513922_1711749747",
+ "dateCreated": "2022-07-29T11:35:13+0000",
+ "dateStarted": "2022-08-16T04:47:08+0000",
+ "dateFinished": "2022-08-16T04:47:08+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Extract LATITUDE and LONGITUDE from Polygon",
+ "text": "%python\nnew_site_df[\u0027LATITUDE\u0027] \u003d [float(i.split(\u0027(\u0027)[-1].split(\u0027 \u0027)[1].replace(\u0027,\u0027,\u0027\u0027)) for i in new_site_df[\u0027DEVELOPMENT_SHAPE\u0027]]\nnew_site_df[\u0027LONGITUDE\u0027] \u003d [float(i.split(\u0027(\u0027)[-1].split(\u0027 \u0027)[0]) for i in new_site_df[\u0027DEVELOPMENT_SHAPE\u0027]]\nnew_site_df \u003d new_site_df.drop([\u0027DEVELOPMENT_SHAPE\u0027], axis \u003d 1)\nz.show(new_site_df)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {
+ "0": {
+ "graph": {
+ "mode": "table",
+ "height": 300.0,
+ "optionOpen": false,
+ "setting": {
+ "table": {
+ "tableGridState": {},
+ "tableColumnTypeState": {
+ "names": {
+ "LOC_UID": "number",
+ "DEVELOPMENT_NAME": "string",
+ "STATUS": "string",
+ "LATITUDE": "number",
+ "LONGITUDE": "number"
+ },
+ "updated": false
+ },
+ "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
+ "tableOptionValue": {
+ "useFilter": false,
+ "showPagination": false,
+ "showAggregationFooter": false
+ },
+ "updated": false,
+ "initialized": false
+ }
+ },
+ "commonSetting": {}
+ }
+ }
+ },
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TABLE",
+ "data": "LOC_UID\tDEVELOPMENT_NAME\tSTATUS\tLATITUDE\tLONGITUDE\n8\tMandalay\tReady for service\t-37.46798\t144.9582\n23\tBrighton\tReady for service\t-31.65684\t115.70471\n119\tArcadia\tReady for service\t-38.07084494642178\t145.43561612126868\n37\tSpringfield Central\tReady for service\t-27.682974884308496\t152.91246017602205\n35\tYarrabilba\tReady for service\t-27.797998206\t153.101112401\n63\tElliot Springs\tReady for service\t-19.401424360582585\t146.86272523475841\n73\tAlkimos Beach\tReady for service\t-31.603789876\t115.681571085\n274\tAlkimos Vista\tReady for service\t-31.60329949166057\t115.6701798417717\n66\tCalderwood Valley\tReady for service\t-34.55546994973096\t150.75436137069624\n263\tEynesbury\tUnder construction\t-37.7910746733703\t144.5355847930891\n9\tOran Park\tReady for service\t-33.99488\t150.72662\n133\tSpringfield Rise\tReady for service\t-27.695522398191628\t152.8959551906582\n17325842\tPart Section 4574 Goode Road Subdivision\tCheck with carrier\t-12.6280940325\t131.136419168\n54\tAtherstone\tReady for service\t-37.70794\t144.58145\n307\tSanctuary Cove\tUnder construction\t-27.869021570119873\t153.3576214596788\n75\tHarpley\tReady for service\t-37.912572931\t144.625651148\n137\tWestbrook\tReady for service\t-37.834372936889345\t144.6912409809133\n28\tJordan Springs\tReady for service\t-33.72444837965098\t150.7529925477441\n40\tThe Hermitage\tReady for service\t-33.999267672\t150.782646178\n86\tArmstrong Creek\tReady for service\t-38.219653804\t144.337797674\n12\tWaterford County\tReady for service\t-32.76639\t151.63323\n17346815\tKilgariff\tCheck with carrier\t-23.770110992\t133.874777984\nON-Q-CM\tCoomera Waters\tReady for service\t-27.844502585656677\t153.34836959838867\n150\tBrighton - Ridgewood\tReady for service\t-31.668997101580473\t115.72628719298541\n17348681\tJerberra Estate\tCheck with carrier\t-35.0503108155\t150.617052\n112\tTulliallan\tReady for service\t-38.07325420365761\t145.32472823624735\n103\tDelaray\tReady for service\t-38.1054664324721\t145.34451757431034\n177\tMovida\tReady for service\t-31.880915344780455\t116.02860284367573\n17330606\tBenjamin Estate\tCheck with carrier\t-12.5455349705\t131.178166912\n222\tAmber\tReady for service\t-37.5901190955084\t144.9926761245665\n95\tNorth Harbour\tReady for service\t-27.12189866458404\t152.9953961986942\n18\tTrinity\tReady for service\t-31.63125\t115.6923\n6\tGregory Hills\tReady for service\t-34.02859\t150.76602\n48\tWaterford Melton\tReady for service\t-37.71846\t144.56231\n265\tMt. Atkinson\tUnder construction\t-37.74787485827774\t144.68840633391846\n5\tSpringwood\tReady for service\t-34.6028\t138.76311\n169\tThornhill Park\tReady for service\t-37.70310491027097\t144.62098096373794\n220\tBotanical\tReady for service\t-37.56278183676677\t144.8842612361972\n124\tSt. Germain\tUnder construction\t-38.09153958890924\t145.35089050295065\n29\tRopes Crossing\tReady for service\t-33.71985\t150.78022\n302\tMount Gilead\tUnder construction\t-34.11922208553677\t150.79637561797068\n17352628\tWalgrove Stage 3\tCheck with carrier\t-34.879298351\t148.972882176\n36\tEcco Ripley\tReady for service\t-27.690283476217093\t152.792975736585\n85\tSomerfield\tReady for service\t-38.013076203\t145.163782188\n1\tNoosa Waters\tUnder construction\t-26.4021826\t153.0615905\n4\tFernbrooke\tReady for service\t-27.649980000000006\t152.84131999999997\n27\tGrandvue\tReady for service\t-38.06422199480529\t145.42937690489117\n94\tThe Pines\tReady for service\t-23.15793858635379\t150.7088666997396\n30\tMarriott Waters\tReady for service\t-38.077606995\t145.239757322\n199\tVerdant Hill\tUnder construction\t-37.817526995212646\t144.67540298462276\n2\tAlamanda\tReady for service\t-37.91384960992702\t144.74352936555584\n223\tRathdowne\tReady for service\t-37.60362794600752\t144.98134082402584\n166\tGen Fyansford\tReady for service\t-38.13604424640745\t144.3176150775032\n118\tEastland Shopping Centre\tReady for service\t-37.81043931231062\t145.23779297099972\n352\tThe Hermitage (SEKI)\tReady for service\t-34.01737882595945\t150.76310090845152\n180\tBrookhaven\tReady for service\t-27.734339958204625\t153.17479691902153\n262\tBingara Gorge\tUnder construction\t-34.22852815365605\t150.67522570933588\n17350712\tThe Ridge\tCheck with carrier\t-33.541005243\t150.919743232\n226\tFlourish\tUnder construction\t-27.680557076021895\t152.75919471740568\n69\tUniversity Hill\tReady for service\t-37.67879\t145.06972\n17329992\tLots 2-3 Golf Links Road Wundowie\tCheck with carrier\t-31.731990994\t116.361575008\n183\tThe Peninsula\tReady for service\t-27.67932432276379\t152.90982757569347\n17361458\tBlackmore Subdivision\tCheck with carrier\t-12.7275434465\t130.919370368\n17346227\tRidge View Estate\tCheck with carrier\t-12.8086149605\t131.053826176\n3\tBlakes Crossing\tReady for service\t-34.67067\t138.70131\n17317496\tRoche Creek Road Wandoan\tCheck with carrier\t-26.114619951\t149.992989856\n286\tMinta Farm\tUnder construction\t-38.077836007648486\t145.36372219087\n237\tKinbrook\tReady for service\t-37.541772522962034\t144.9586871719261\n42\tChancellor\tReady for service\t-37.68643919487637\t145.0934309349293\n123\tSeaside\tReady for service\t-32.856728450325335\t151.81044193518323\n61\tBerwick Waters\tReady for service\t-38.076523384598765\t145.35105203575029\n17362675\tGolf Links Road Wundowie\tCheck with carrier\t-31.731914996\t116.361575008\n284\tSussex Inlet\tUnder construction\t-35.145242466816605\t150.5873778915308\n82\tModeina\tReady for service\t-37.741855443\t144.749644009\n68\tBrentwood Forest\tReady for service\t-27.642904867\t152.880475846\nON-Q-GC-EcoVill\tEco Village, Currumbin Valley\tReady for service\t-28.176020023448768\t153.42949161770866\n136\tJindee\tReady for service\t-31.645613986187424\t115.69413457871279\n102\tAlira\tReady for service\t-38.04436956469803\t145.32106433870212\n7\tLightsview\tReady for service\t-34.85796\t138.63601\nON-V-LSP\tLakeside, Pakenham\tReady for service\t-38.072927\t145.435528\n17324634\tDrivers Run\tCheck with carrier\t-41.432627961499996\t147.21321888\n17316139\tPort Hedland International Airport Precinct 3\tCheck with carrier\t-20.3850569715\t118.610489152\n140\tGreenlea\tReady for service\t-32.29440226891333\t115.8279660797097\n17348174\tCaviar Drive\tCheck with carrier\t-26.387840605\t146.298855616\n313\tCanopy\tUnder construction\t-38.11076284000009\t145.25756294999746\nAYAA-J6EL5\tGrantham Rebuild Project\tReady for service\t-27.5642384987419\t152.189940289936\n47\tMaplewood\tReady for service\t-37.714\t144.56265\n17329519\tMcMahon Road North Dandalup\tCheck with carrier\t-32.503848031000004\t115.930991872\n32\tWoodlands\tReady for service\t-27.72047\t153.15887\nAYAA-GBGC1\tKrystal Park Estate\tUnder construction\t-33.9119984699961\t120.13371719996\n17347518\tRiver Bend\tCheck with carrier\t-37.800278003\t147.737944096\n238\tExford Waters\tUnder construction\t-37.72870832579734\t144.57431589126315\n224\tTrue North\tUnder construction\t-37.61704689321036\t144.91319690701724\n348\tDonnybrae\tUnder construction\t-37.538066721261295\t144.9750416114666\n45\tGreenvale Gardens\tReady for service\t-37.62173695362797\t144.88392554244993\n55\tCraigieburn\tReady for service\t-37.59183713555152\t144.91833857808493\n46\tCurlewis Park\tReady for service\t-38.17030866\t144.552845283\n300\tRidgeview\tReady for service\t-27.180970349691385\t152.92398963929068\n17362862\tGillkrest\tCheck with carrier\t-33.508577629\t149.187270976\n53\tAspire\tReady for service\t-37.7071699681171\t144.72471421132394\n168\tSunbury Fields\tReady for service\t-37.55414704520112\t144.72058211325393\n3\tGateway Business Park\tUnder construction\t-23.16892639545118\t150.6975458127288\n17197764\tHeritage Hills \tCheck with carrier\t-33.2903079875\t115.834854944\n25\tCasiana Grove\tReady for service\t-38.117325487\t145.241297532\n17345766\tAvon Ridge\tCheck with carrier\t-31.750261002000002\t116.094329984\n192\tAlbright\tReady for service\t-37.82327629224027\t144.72443376542194\n49\tPasadena\tReady for service\t-38.1199733\t145.326901918\n187\tQuay 2\tReady for service\t-38.30801646041315\t144.32025705337773\n161\tAbiwood 660\tReady for service\t-38.10452062882804\t145.33696983813107\n17383368\tHumewood Pl Luddenham\tCheck with carrier\t-33.848964993500005\t150.755635008\n10\tParkBridge\tReady for service\t-33.91103\t150.83601\n250\tAquarevo\tUnder construction\t-38.07126647363257\t145.24955213212104\n17376685\tHarold Circuit\tCheck with carrier\t-31.080961009000003\t152.890432\n70\tCentral Hills\tReady for service\t-34.02411\t150.75842\n60\tStoneleigh\tReady for service\t-27.709207521\t153.116339917\n326\tMambourin\tUnder construction\t-37.89016156795095\t144.59766150734774\n134\tBrookwater\tReady for service\t-27.658654038139588\t152.90161062834122\n167\tLife\tReady for service\t-37.90772667655167\t144.74404923692424\n308\tEllarook\tUnder construction\t-37.81174599477853\t144.72281371116424\nAYAA-H5USB\tGap Ridge Industrial Area\tReady for service\t-20.7372019200672\t116.765896746965\n17291731\tFishermans Rd\tCheck with carrier\t-33.4777957195\t115.577883712\n21\tEvergreen Waters\tReady for service\t-36.71591\t144.2837\n255\tRiverside at Tea Gardens\tContracted\t-32.64457220383459\t152.14687858579424\n17339141\tSwan Bay Estate\tCheck with carrier\t-41.282250026999996\t147.034243072\n17271033\tMarshmead\tCheck with carrier\t-31.0154570045\t150.223744992\n342\tWestwood\tUnder construction\t-37.69940908900018\t144.71112482498938\n17314584\tFig Tree Fields Estate\tCheck with carrier\t-28.647101971\t153.56134512\n17204078\tEurama Estate\tCheck with carrier\t-33.7120599615\t150.53916096\n26\tJackson View\tReady for service\t-38.1263\t145.85796\n162\tClydevale\tReady for service\t-38.09632791448807\t145.33187213534754\n210\tMeridian\tReady for service\t-38.09078808023383\t145.34457658290762\n297\tThe Orchard\tUnder construction\t-37.816153962518605\t144.65684209824462\n10514\tMaddington\tReady for service\t-32.02974797464645\t116.00603342056274\n11\tTea Trees\tReady for service\t-27.6976693876262\t152.90857676178814\n44\tGrand Lakes\tReady for service\t-38.025754875\t144.38463099\n56\tTrillium\tReady for service\t-37.563836207\t144.890532129\n17325360\tOnslow Aerodome Redevelopment\tCheck with carrier\t-21.6636330045\t115.115901984\n164\tAurora\tReady for service\t-37.606178773039986\t145.0053790664693\n17332589\tCalula Estate\tCheck with carrier\t-37.804131997\t140.757626176\n67\tTannum Blue\tReady for service\t-23.960568557\t151.36700841\n264\tWarralily Grange\tUnder construction\t-38.228853370218076\t144.32429109570816\n17347475\t324 Tea Tree Rd Brighton - Stages 3\u00264\tCheck with carrier\t-42.6948000075\t147.283779008\nAYCA-NZGFP\tLampada\tReady for service\t-31.1369920275562\t150.95517748943\nAYCA-G1IS9\tCasey 3 Estate\tReady for service\t-35.1717411112112\t149.088880068466\n243\tSt. Claire\tReady for service\t-37.60823491943989\t145.02730918279434\nAYCA-1D96NK\tCrace\tReady for service\t-35.2026701433085\t149.112121260484\n17352159\tGermantown Road Two Wells\tCheck with carrier\t-34.6144390125\t138.556290976\n312\tThe Vale\tUnder construction\t-34.47484502892406\t150.76265755179605\n17316815\tLOT 224 ORTON ROAD OAKFORD\tCheck with carrier\t-32.228281984\t115.953296032\n71\tMayfield\tReady for service\t-38.125209668\t145.289746189\n185\tAgar Industrial Park\tReady for service\t-37.79845362681997\t144.75201086321994\n196\tKaduna Park \tReady for service\t-38.083378128834276\t145.428175673462\n78\tZeally Sands\tReady for service\t-38.309154864\t144.33959113\n43\tCallaway Park\tReady for service\t-37.79528303\t144.789941126\nAYCA-G7P1X\tGap Ridge Industrial Area\tReady for service\t-20.7597367757634\t116.767197579578\n322\tAureus\tUnder construction\t-28.839575834611363\t153.60090183043093\n17334879\tSt Eyre Estate\tCheck with carrier\t-32.5057349755\t137.736468\nON-V-LSP-WTN7\tWorthington Estate\tReady for service\t-38.056759116436055\t145.44930696487427\n17344902\tFishermans Road Stratham Park\tCheck with carrier\t-33.479493039\t115.580933984\n287\tPavilion\tReady for service\t-38.121935435108206\t145.317223415383\n17326687\tLot 9601 Maddern Road Chittering WA\tCheck with carrier\t-31.522233961\t116.068223168\n17307174\tRendezvous Road Vasse\tCheck with carrier\t-33.6766400095\t115.276300928\n16\tPanorama\tReady for service\t-33.965203598332444\t150.89165216421515\n17266708\tEdenvale \tCheck with carrier\t-27.8746859935\t152.966187008\n17339941\tSherwin Ridge\tCheck with carrier\t-35.0642670305\t149.65457184\n248\tLara Industrial Park\tUnder construction\t-38.048203343505\t144.3582585906956\n171\tWaterside\tReady for service\t-38.077916796186784\t145.33521009756245\n254\tWeemala at the Lake\tContracted\t-32.953487781499845\t151.62784968375465\n52\tBaywater\tReady for service\t-38.157866291\t144.549435001\n17338135\tDavid Road\tCheck with carrier\t-28.6656509775\t114.637218112\nAYAA-HJ45E\tLatitude 32 Flinders Precinct\tReady for service\t-32.203130500848\t115.789668200234\n213\tLara Views \tReady for service\t-38.03296209351632\t144.38508068086276\n17353506\tGrandevue Estate\tCheck with carrier\t-38.1822589915\t147.100400992\n17347514\tHumpty Doo Industrial Park\tCheck with carrier\t-12.5915301515\t131.095235712\nON-V-LSP-DEV\tLakeside, Devonia\tReady for service\t-38.07179481677172\t145.43976366519928\n10241\tDalyellup\tReady for service\t-33.39055091775127\t115.61975240707397\nAYCA-1DER92\tLots 9004 Eastlyn Dr Deepdale\tReady for service\t-28.7938689999871\t114.67999499999\n17349902\tLot 1301 Gull Rock Road Albany WA\tCheck with carrier\t-34.948832044\t117.999468\n186\tSanctuary\tReady for service\t-38.2314381624407\t144.34730645652323\n17123438\tSouthern Cross - Stage 1 (52L)\tCheck with carrier\t-27.214454996500002\t151.272823008\n158\tRobina Town Centre\tReady for service\t-28.07890531166396\t153.38309799194224\nAYAA-H0UT9\tWedgefield\tReady for service\t-20.3799983349327\t118.594521325414\nAYAA-FRYDK\tTeviot Downs Estate\tReady for service\t-27.7504397198131\t152.951579273602\n189\tAshbury\tReady for service\t-38.22122706468388\t144.35133218646388\n17340096\tMundoolun Estate\tCheck with carrier\t-27.8594579775\t153.087716896\n181\tThe Surrounds\tReady for service\t-27.928418734504167\t153.33939444392914\n17316655\tForest Hills\tCheck with carrier\t-31.032246957\t150.928926112\n17219184\tEdenvale\tCheck with carrier\t-27.8724570025\t152.974415008\n17322026\tTanby Heights Stage 2\tCheck with carrier\t-23.2286249645\t150.75956592\n17325176\tFletcher Industrial Stage 1\tCheck with carrier\t-32.213367987\t148.63352688\n17328781\tAvoca Dell Stage 1\tCheck with carrier\t-35.092629991\t139.316762176\n17051058\tLot 17 Harbour Rd\tCheck with carrier\t-33.844219022000004\t121.883787008\n17337131\tTimbertop Estate\tCheck with carrier\t-32.633252016\t151.70961312\n17333083\tWaterside Pastures\tCheck with carrier\t-32.7579690075\t151.828084992\nAYCA-1ORQMM\tRIVERLAND GARDENS\tContracted\t-35.9649560000272\t146.014765\nAYCA-IQWLC\tJimboomba Woods\tReady for service\t-27.8661709999843\t153.059876\n17331968\tRavendene Estate\tCheck with carrier\t-38.041282535\t145.593441376\nAYCA-1DEL05\tTeviot Downs Estate\tReady for service\t-27.7470854999827\t152.9503524\n304\tTeneriffe\tUnder construction\t-34.7266547867358\t149.71105729101944\n17355158\tMulcahys Road\tCheck with carrier\t-37.389870007\t144.305286016\nAYCA-G3LBH\tParklands\tReady for service\t-24.9399487796629\t152.288441837448\n38\tCentral Walk\tReady for service\t-27.69738289415636\t152.9088333969901\n170\tWaratah\tReady for service\t-37.5356296673782\t144.90365844136687\n17335030\tGlenview Park Estate Stage 1\tCheck with carrier\t-31.453299002\t152.720484128\nAYAA-H5ANY\tFreeway Business Park\tReady for service\t-32.8098597420961\t151.625033944844\nAYCA-1D96QN\tO\u0027Malley\tReady for service\t-35.351972000021\t149.117269000008\nAYCA-EGT1A\tKrystal Park Estate\tContracted\t-33.9109884902099\t120.134017439686\n10542\tMurray-Murray River Country Estate\tReady for service\t-32.607827868144106\t115.8599978685379\n17399839\tGOLDEN VALLEY PLACE\tCheck with carrier\t-26.5433651285\t153.00147056\nAYCA-FWZJ8\tGrantham Rebuild Project\tReady for service\t-27.563568564007\t152.190239281867\n51\tBellaview\tReady for service\t-38.172782464\t144.538409178\nAYCA-ISJ9I\tHarrington Grove\tReady for service\t-34.0211317989616\t150.755048319874\nACNC\tNewcastle\tReady for service\t-32.884942742051216\t151.69733047485352\nAYCA-G07X9\tLot 502 Jane Brook Drive\tContracted\t-31.8562302562125\t116.062230625921\n17350846\tCountry Hills Estate\tCheck with carrier\t-27.568049751500002\t152.590619168\n207\tYarraBend\tReady for service\t-37.78198519686202\t145.02525959964044\n58\tSpires\tReady for service\t-32.30285\t115.80864\n17357158\tHuntington Downs\tCheck with carrier\t-27.922871963000002\t153.28360512\n17325574\tDarling Downs Lot 102 Keenan Street\tCheck with carrier\t-32.1866129725\t116.00267616\n17331436\tSt Andrews - stage 2\tCheck with carrier\t-26.0649970125\t152.565019936\n195\tHighland Views \tReady for service\t-33.807140119426315\t150.68084751128293\n10564\tSecret Harbour\tReady for service\t-32.40690570593458\t115.74870228767395\nAYCA-H18JF\tThe Key Industrial Estate\tReady for service\t-38.0188635264808\t145.18197712273\nACDU\tDurack\tReady for service\t-27.578192809613444\t152.98293471336365\nAYCA-19PQFS\tRedbank Motorway Estate\tContracted\t-27.5852564442896\t152.873819345554\nAYCA-1JBB7K\tThe Fairways\tContracted\t-27.5314779999815\t152.479575\n126\tPark Edge\tReady for service\t-27.693434833927977\t152.91510616302708\n240\tWandana\tContracted\t-38.172482021397926\t144.293338403687\nAYCA-IQRNE\tJimboomba Woods\tReady for service\t-27.8694558108568\t153.02928854703\n17351673\tHighlands Estate\tCheck with carrier\t-37.0380393935\t146.108255776\n17348813\tPaynters Creek Road Rosemount\tCheck with carrier\t-26.6289672555\t153.012338656\n132\tThe Sanctuary\tReady for service\t-27.68292278318855\t152.91255538226966\nAYCA-MAELG\tMuirhead\tReady for service\t-12.3616549362567\t130.897783136586\n114\tWest\tReady for service\t-34.877605383583415\t138.4939632858763\n251\tSequana\tReady for service\t-27.715761863642843\t153.11554227829404\n244\tAscot Grove\tReady for service\t-34.015506343998354\t150.75497303962794\n17271426\tWoodscott\tCheck with carrier\t-34.4601080165\t147.523613056\n270\tWoodgrove Shopping Centre\tReady for service\t-37.68522284633658\t144.5592192390933\n13\tLochiel Park\tReady for service\t-34.87687\t138.65406\n17354065\tLinton Hill\tCheck with carrier\t-27.466329999\t151.827287008\n285\tSummit Business Park\tUnder construction\t-38.09425213318867\t145.34356270786907\nAYCA-RI32N\tDeepdale North\tReady for service\t-28.7710969532846\t114.671990385878\n17349923\tLot 50 and 51 Link Road ALbany\tCheck with carrier\t-34.9695262735\t117.8126136\n17339915\tSamford Skies\tCheck with carrier\t-27.386634959000002\t152.835657856\n17147547\tSummit View\tCheck with carrier\t-26.512940972\t151.867271872\nAYCA-1WH7YL\tL9001-9003 Wungong Sth Rd Darling Downs\tContracted\t-32.1933860000136\t116.001872\n17312227\tTrilla Hills Estate\tCheck with carrier\t-21.298979967\t149.22698688\nAYCA-10UTGP\tJimboomba Woods\tReady for service\t-27.8623843557346\t153.055174379743\n268\tBurwood Brickworks\tUnder construction\t-37.851994880682255\t145.13495121956865\n17238926\tLane Court Mt Warren Park\tCheck with carrier\t-27.7269029985\t153.198027008\n17338860\tBlind Creek Estate Stage 1\u00262\tCheck with carrier\t-37.521863992\t143.776407968\n17344475\tQuilpie Industrial Estate\tCheck with carrier\t-26.6136479975\t144.249904096\n17320060\tWindella Ridge P/L\tCheck with carrier\t-32.697926018000004\t151.473242176\n17358725\tRusty Lane Branxton\tCheck with carrier\t-32.638311988\t151.382246048\n62\tJindalee Beachside\tReady for service\t-31.649101558193706\t115.68944719351767\nAYAA-H8QSJ\tMinto Renewal\tReady for service\t-34.0238418542272\t150.856926410431\n204\tCollege Green\tReady for service\t-38.08048877494351\t145.36312792316772\nAYAA-FPSKZ\tGovernors Hill\tReady for service\t-35.1389166799533\t147.425006282888\n17362563\tMurray Banks\tCheck with carrier\t-36.092428007\t144.725100992\n190\tHighfields\tReady for service\t-27.061379929370613\t153.16209955950143\n57000359\t(RAPA) Berne Court\tCheck with carrier\t-41.355567007\t147.001377952\nAYAA-F6JJR\tGoogong Township\tReady for service\t-35.4154091807694\t149.23348216701\nAYCA-PXLYW\tParamount Park\tReady for service\t-23.271600332771\t150.514225099238\n10380\tHalls Head-Port Mandurah\tReady for service\t-32.53875201575307\t115.70585131645203\n17335365\tMundoolun\tCheck with carrier\t-27.860803020000002\t153.076204096\nON-Q-VT\tVue Terraces\tReady for service\t-28.068610116288863\t153.38100671768188\nAYCA-F193I\tEdmondson Park South P1\tReady for service\t-33.9861716630198\t150.853549054355\nAYCA-WDIWW\tMuirhead\tReady for service\t-12.3585879914992\t130.89374145864\nAYCA-19Q49D\tLot 10,50 \u0026 700 Ocean Reef Gnangara\tReady for service\t-31.7917864249926\t115.856744892211\n327\tMadison Rise\tUnder construction\t-33.23597707399918\t151.46842898041183\nAYCA-1FTKU1\tMolonglo Valley - Coombs Stage 2\tReady for service\t-35.3176259170474\t149.042577119006\nAYAA-IWD7J\tRadford Park\tReady for service\t-32.6450822595972\t151.355551754519\n10000\tAveley-Vale\tReady for service\t-31.791797076764176\t115.98894238471985\n10750\tPagewood Green\tReady for service\t-33.943452567717465\t151.22275114059448\n6\tNLV Bridgewater\tReady for service\t-32.56081186922684\t115.69084383614063\nAYCA-OOFYN\tCasuarina Town Centre\tReady for service\t-28.2958512505823\t153.570424118964\n17332860\tPalm Lake Resort\tCheck with carrier\t-32.867030966\t151.790780896\n292\tNortham Eco Lifestyle Village\tReady for service\t-31.661646746555668\t116.65020329840772\nAYCA-1MO0PE\tParaweena Drive\tUnder construction\t-37.811130011173\t144.75090726482\n17341715\tCanobolas Meadows\tCheck with carrier\t-33.268190294\t149.0541512\nAYAA-G1FKH\tRiemore Downs Estate\tReady for service\t-27.8886882702533\t153.115619080583\nAYAA-G3N4A\tSix Mile Creek Village\tUnder construction\t-27.6355815192483\t152.848832768594\n17354521\tDandenong LOGIS\tCheck with carrier\t-38.005410961\t145.192518016\n10233\tDalyellup\tReady for service\t-33.39171543951737\t115.62436580657959\nAYCA-1O7JIC\tSpring Mountain\tContracted\t-27.7311679999831\t152.906283\n17319634\tWaldara Park Estate\tCheck with carrier\t-36.334991978\t146.304649088\n17312200\tBERRINBA STAGE 1\tCheck with carrier\t-27.646784993\t153.09164016\n10691\tWannanup-Port Bouvard North\tReady for service\t-32.593080692667876\t115.63935399055481\nAYCA-MUELL\tHarrington Grove\tReady for service\t-34.0254648141925\t150.752128700289\nAYAA-F9DJ9\tMuirhead\tReady for service\t-12.3613535542535\t130.891892926405\nAYCA-NZ9RQ\tGrantham Estate Riverstone\tReady for service\t-33.6574602900158\t150.866171279992\nAYCA-GE6TE\tVoyager Point\tReady for service\t-33.9612904042168\t150.970919147374\n9\tRCA Cardinia Waters\tReady for service\t-38.0794393994041\t145.4930143046206\n179\tGemlife Bribie Island\tReady for service\t-27.061404864414\t153.16211615558882\nAYCA-Q13UU\tLot 502 Jane Brook Drive\tReady for service\t-31.8615610033738\t116.062904454047\nAYCA-1DF126\tMistful Park\tUnder construction\t-34.7264160000054\t149.703161000029\nAYAA-F9C6X\tParamount Park\tReady for service\t-23.275657059569\t150.516972407757\nAYCA-1D18C9\tThe Fairways\tReady for service\t-27.5271879999808\t152.483766\n17337667\tLoc 1017 Redgate Road Witchcliffe\tCheck with carrier\t-34.0241140025\t115.074863008\n10185\tCanningvale-Avenues\tReady for service\t-32.09173541358429\t115.92247389256954\n50\tEncore\tReady for service\t-37.712129506\t144.721116645\n17318655\tNEVERWOODS ESTATE\tCheck with carrier\t-32.0491919755\t152.499962176\nAYCA-1FLSZY\tFrizzo Road, Palmview\tReady for service\t-26.7471129999749\t153.039069\nAYCA-EUUAD\tWindmill Downs\tReady for service\t-31.039191773641\t150.900431984145\n10687\tWannanup-Port Bouvard North\tReady for service\t-32.60023856019557\t115.64025521278381\nAYCA-DGEDI\tAmberton\tReady for service\t-31.5957645503307\t115.665663637788\nAYCA-LQAH1\tLot 511 Kalgan Drive Newman Townsite\tUnder construction\t-23.3608589999371\t119.753393000012\nAYCA-HT2UX\tRidge Road Estate\tReady for service\t-37.5105770100269\t145.140747839996\nAYCA-1J8WWD\tJimboomba Woods\tUnder construction\t-27.8632579999842\t153.046244\n217\tGolden Grove\tUnder construction\t-36.713258816028286\t144.28416154026564\n209\tEden\tReady for service\t-34.01244870032878\t150.7617563462324\nAYCA-1CRLQU\tMoncrieff Residential Estate\tUnder construction\t-35.1564860000211\t149.104790000007\n10234\tDalyellup\tReady for service\t-33.391038213222714\t115.62284231185913\n252\tTonsley Village \tReady for service\t-35.008155671689565\t138.56730763673485\n17320872\tThe Beacons\tCheck with carrier\t-37.777715995\t147.604363936\n10377\tHalls Head-Port Mandurah\tReady for service\t-32.535507592267805\t115.70966005325317\nAYCA-LGXW5\tWedgefield\tContracted\t-20.3827064266398\t118.596070833098\nAYCA-TBR12\tShoal Point Bay Develoment\tContracted\t-21.0044656120105\t149.152767009298\nAYCA-1D96QE\tCasey 4\tReady for service\t-35.1731241190463\t149.095898093007\n235\tWarralily Central\tUnder construction\t-38.23425550957785\t144.36323677063632\n10169\tBurns Beach\tReady for service\t-31.72897567076238\t115.72501301765442\nAYCA-1BC5OS\tHuntlee Stage 1\tUnder construction\t-32.6743620000152\t151.351995999998\n311\tIngenia Hervey Bay\tReady for service\t-25.318376649408144\t152.89279818800648\nAYCA-JR6GE\tMuirhead\tReady for service\t-12.3653714219552\t130.892741370061\nAYCA-DZ1PY\tHoly Spirit Boondall\tReady for service\t-27.3601289999794\t153.061465\nAYCA-GNFE0\tRIVERSTONE RISE\tReady for service\t-23.9689175040552\t151.31856988929\nAYCA-JBQMC\tWishart Business Precinct\tReady for service\t-12.4685142851903\t130.953474865161\nAYCA-1AO4XL\tCloverlea - Chirnside Park\tContracted\t-37.7488860000284\t145.326879999998\n17365410\tWestwood\tCheck with carrier\t-26.9620360015\t152.761562016\nAYCA-1FTKWM\tMolonglo Valley - Coombs Stage 3\tReady for service\t-35.3142289200475\t149.038520189006\n10567\tSecret Harbour\tReady for service\t-32.40169177773249\t115.75070321559906\n10397\tIluka\tReady for service\t-31.73905315673185\t115.72926163673401\n8\tRCA Beleura Village\tReady for service\t-38.224609205304276\t145.0725362142516\n22\tEvergreen Links\tReady for service\t-36.71305\t144.27727\nAYCA-ENWFM\tCoolalinga Sub-Division\tReady for service\t-12.5198168057597\t131.041303845074\n17344624\tMadison Ridge\tCheck with carrier\t-27.0450116095\t152.956953728\n17326045\tAurukun Res Sub-division - stage 2\tCheck with carrier\t-13.365806045\t141.725994848\nAYCA-1BK5IS\tJimboomba Woods\tReady for service\t-27.8666469999842\t153.060515\n10385\tHalls Head-Port Mandurah\tReady for service\t-32.54463498135928\t115.70902973413467\nAYCA-NGQ9B\tBungarribee (Bunya)\tReady for service\t-33.7714202761297\t150.867204897709\n17394228\tGol Gol Heights Lot 78 on DP 756946\tCheck with carrier\t-34.1830270045\t142.233328\n17341371\tLinton Hill Stage 3\tCheck with carrier\t-27.470484988000003\t151.822847168\n10356\tMillbridge\tReady for service\t-33.300927475174035\t115.73048070073128\n17235866\tAcacia Avenue - stages 4to6\tCheck with carrier\t-26.9617699715\t152.954452096\n17367991\tKilgariff Residential Subdivision\tCheck with carrier\t-23.7729379955\t133.875308\nAYCA-J9CE8\tAE2 Ermington\tReady for service\t-33.8208669951457\t151.055244815032\n17341714\tSilverdown Heights\tCheck with carrier\t-33.263683028\t149.060066048\nAYCA-14QOEO\tHarrington Grove\tUnder construction\t-34.0145969382659\t150.734399607064\n10703\tWannanup-Port Bouvard East\tReady for service\t-32.60624084744729\t115.64411759376526\nAYCA-NS3TL\tEttamogah Rise\tReady for service\t-36.0218474363591\t146.976677442572\nAYCA-KDKUW\tVasse Newtown\tReady for service\t-33.6750847083728\t115.242896164382\nAYCA-F8YLR\tFreeway Business Park\tReady for service\t-32.8006781615145\t151.631399631104\nAYAA-GR9JV\tIronbark Ridge\tReady for service\t-32.2977687119396\t150.899503128249\nAYCA-PO3A4\tBerrimah Business Park\tReady for service\t-12.4272906594548\t130.91433759827\nAYAA-F7FJT\tKingsley Drive, Beaudesert\tReady for service\t-27.9947144922874\t153.011802811568\n260\tGlenside\tReady for service\t-34.940416129598376\t138.62478255578358\n10357\tMillbridge\tReady for service\t-33.30724335650221\t115.7363560795784\nPRJ0001049-3A6E2E02\tO\u0027Connell Street\tContracted\t-33.76839194885882\t150.73397789150476\nAYCA-1FA2OY\tThe Grove\tUnder construction\t-28.7839001827515\t114.685670982283\nAYCA-10LG0G\tSpringlake Subdivision, Mt Barker\tContracted\t-35.0928450000204\t138.856486999992\n10348\tEaton-Millbridge\tReady for service\t-33.31223599288549\t115.7294225692749\n17337529\t276 Old North\tCheck with carrier\t-27.061864018\t152.866091168\n10565\tSecret Harbour\tReady for service\t-32.39632446515415\t115.74663698673248\nAYCA-1MI4GK\tMoncrieff Residential Estate\tContracted\t-35.1609006970852\t149.119975532677\n282\tArcadia Group Hidden Valley\tReady for service\t-37.395547376433164\t144.99366317749167\n17325557\tAvenue Hill Stage 1\tCheck with carrier\t-37.517128029\t143.714459872\n17335954\tMalcolm Road Subdivision\tCheck with carrier\t-17.191856979\t145.562276896\n245\tMorphettville Redevelopment\tReady for service\t-34.9861747519862\t138.5437873458612\n17203252\tRedgum Rise Estate\tCheck with carrier\t-37.048975021000004\t146.092817888\n10393\tIluka\tReady for service\t-31.73569532841298\t115.732501745224\nAYCA-FZTQG\tLot 502 Jane Brook Drive\tReady for service\t-31.8620273343564\t116.058612526473\nAYCA-1COQ8Z\tRiver Oaks Estate\tUnder construction\t-27.7696789999834\t153.092011\nAYCA-19ZSPD\tVermont Riverlands\tContracted\t-33.5638770000159\t150.868297999992\n17356820\tAspect\tCheck with carrier\t-27.746267041\t153.138958912\nAYCA-L6RW4\tRiverside Estate\tContracted\t-36.1360260000277\t146.949994\nAYCA-XKC83\tGreenway - 799 Richmond Rd\tUnder construction\t-33.7239020000161\t150.844540999992\n17340077\t5-21 GRAY ST\tCheck with carrier\t-28.145302014000002\t153.42793488\nAYAA-FPQGL\tThe Ponds\tReady for service\t-33.6949818131024\t150.909569357808\nAYCA-1J8WS5\tJimboomba Woods\tReady for service\t-27.8691483307398\t153.042010627221\n10192\tCanningvale-Sanctuary Waters\tReady for service\t-32.09583289039479\t115.92712484300137\nON-V-LSP-WTN\tWorthington Estate\tReady for service\t-38.05896187075398\t145.44869273900986\nAYAA-FPOR9\tThe Fairways\tReady for service\t-27.5456169942859\t152.464248641146\n269\tWatergardens Town Centre\tReady for service\t-37.70288208544553\t144.7762755012373\n17336600\tRiverglen Estate\tCheck with carrier\t-27.4389650025\t152.659110976\nAYCA-1F7EBL\tLampada\tContracted\t-31.1398907133126\t150.954064771498\nAYCA-13X4N6\tCalleya\tReady for service\t-32.1265031928837\t115.874723296591\n10876\tMelrose Park\tContracted\t-33.809225805531725\t151.06601751590676\n88\tLakes Entrance\tReady for service\t-27.684162625000003\t152.919766137\nAYCA-KYG28\tThe Sands\tReady for service\t-23.9898136034058\t151.378798009355\nAYCA-10ILHK\tMarsden Park Precinct\tContracted\t-33.6969017543874\t150.821641697981\nAYCA-1D9BBM\tHarrington Grove\tUnder construction\t-34.0141980000153\t150.719515999989\nAYCA-1J527U\tMuirhead\tContracted\t-12.3530259998886\t130.893439999995\nAYCA-1FTKTT\tMolonglo Valley - Coombs Stage 1\tReady for service\t-35.3229330840435\t149.043426474012\nAYCA-G4D1B\tDeepdale Industrial Estate\tReady for service\t-28.7918229925085\t114.691418008669\nAYCA-DNDK2\tManooka Valley\tReady for service\t-34.0386187385006\t150.775687810547\n17342032\tHighfields Views\tCheck with carrier\t-27.450900814\t151.993666816\n17350580\tBroadview Estate\tCheck with carrier\t-32.626900004\t149.59184\nAYCA-T062O\tGoogong Township\tReady for service\t-35.4157760444998\t149.237467703633\nAYAA-HE3NB\tBroome North\tReady for service\t-17.9224571928365\t122.230466306045\n17248287\tNogoa Rise Estate \tCheck with carrier\t-23.548365996\t148.161332896\n173\tGemstone Waters\tReady for service\t-27.095016408891176\t152.93148641347787\n17296036\tINNOVATION PARK\tCheck with carrier\t-38.042261999000004\t145.219498912\n314\tLiving Gems Kuluin\tUnder construction\t-26.65790047155776\t153.04729444825927\n10740\tLiving Choice Glenhaven\tReady for service\t-33.69626396335785\t150.99443078041077\nAYCA-19ZSTU\tVermont Riverlands\tContracted\t-33.5641750000158\t150.870480999992\n10704\tWannanup-Port Bouvard East\tReady for service\t-32.60341102088821\t115.64603269100189\nAYCA-OVO23\tMINDA Redevelopment\tReady for service\t-35.0032417638245\t138.51675979825\n10553\tMurray-Riverland Ramble\tReady for service\t-32.57704251337142\t115.8260753005743\nAYCA-IEEZM\tLot 1693 Parker St \u0026 Lot 2119 Stanley St\tReady for service\t-20.3946096122919\t118.599534752865\n83\tStonybrook\tReady for service\t-37.690168202\t144.731148311\nAYCA-ETCHB\tWhiteman Edge\tReady for service\t-31.8141469707026\t115.963526331826\n17357878\tSerpentine Downs\tCheck with carrier\t-32.374276991\t115.981357984\nAYCA-1ABGJI\tJimboomba Woods\tReady for service\t-27.8718669999843\t153.046343\n115\tThe Grove\tReady for service\t-35.175531914056855\t149.1008225536489\n338\tLincoln on the Bellarine\tUnder construction\t-38.22705044497567\t144.37139348266936\nAYCA-LF9PR\tGolden Bay\tReady for service\t-32.4205231935049\t115.755533304269\n17320876\tWokarena Road\tCheck with carrier\t-28.660908965\t114.62454\n17347341\tPeak Drive Estate Stage 1\tCheck with carrier\t-38.0048399955\t145.33659504\n17289791\tEagle Bay Rise\tCheck with carrier\t-37.896200096\t147.674397248\n17382301\tLyn Parade\tCheck with carrier\t-33.936563992\t150.881592992\nAYCA-12UCDR\tJimboomba Woods\tReady for service\t-27.8704580343858\t153.046562722769\nACSP\tSpringfield\tReady for service\t-27.68752972507293\t152.90936708450317\nAYCA-LIVVA\tIronbark Ridge\tReady for service\t-32.2974524392657\t150.896860220885\n10351\tMillbridge\tReady for service\t-33.30790860838177\t115.72964385151863\n10328\tDudley Park-Mariner\u0027s Cove\tReady for service\t-32.54983018052196\t115.73004484176636\n10731\tEpping Park\tReady for service\t-33.782216765389535\t151.07181787490845\nAYCA-FWOIG\t1440 Frankston-Flinders Road, Tyabb\tReady for service\t-38.2535102671778\t145.190052381605\n10612\tSecret Harbour-Anstey Park\tReady for service\t-32.402189320789844\t115.76897978782654\n10658\tTapping The Kestrels\tReady for service\t-31.721625828114394\t115.78534126281738\n17349312\tMOUNTAIN VIEW ESTATE\tCheck with carrier\t-33.912672574\t150.621471712\n17356160\tWoodridge Estate Stage 1B\tCheck with carrier\t-34.837832969000004\t150.548339168\nAYAA-GDLZ8\tHarrington Grove\tReady for service\t-34.0194031212073\t150.7532483145\nAYCA-1CRLYV\tMoncrieff Residential Estate\tUnder construction\t-35.154803000021\t149.107155000007\nAYCA-WHTZS\tFarragher subdivision\tReady for service\t-32.765554999864\t151.6233730003\nAYCA-10KKU8\tThe Gateway\tReady for service\t-34.1901310500305\t150.786361112653\nAYCA-DXRRI\tMiddleton Grange\tReady for service\t-33.9151240703677\t150.840006288988\n17327379\tTwin Creeks Golf Couse Estate\tCheck with carrier\t-33.845982479\t150.757997056\n10705\tWannanup-Port Bouvard East\tReady for service\t-32.60215424475941\t115.65199792385101\n10235\tDalyellup\tReady for service\t-33.39171543951737\t115.62134027481079\n17313925\tSanctuary on Moggill\tCheck with carrier\t-27.5747120085\t152.880090112\n10573\tSecret Harbour\tReady for service\t-32.39568219217621\t115.75586915016174\n17244744\tPremier Gardens Estate\tCheck with carrier\t-34.2963140485\t146.076527872\n10171\tBurns Beach\tReady for service\t-31.724599957029927\t115.71629583835602\nAYCA-DVQ33\tParkland Heights\tReady for service\t-32.3549928434823\t115.798355647355\nAYCA-1EL358\tEden Park Estate\tReady for service\t-19.2331609988561\t146.647843999839\nAYAA-GVMB7\tArise\tReady for service\t-27.5754951435665\t153.116533700679\nAYAA-ESS68\tTalana\tReady for service\t-33.9517943675023\t150.844216592569\nAYCA-19M72I\tLot 9000 Baile Road Canning Vale\tContracted\t-32.0656820000128\t115.913695\n17327746\tBindea Estate\tCheck with carrier\t-30.993058980500003\t150.264839168\nAYCA-DF9C9\tBungarribee (Bunya)\tReady for service\t-33.7766755592885\t150.86762255512\n20\tMacarthur Gardens\tReady for service\t-34.078731685352246\t150.7971630189405\n10389\tIluka\tReady for service\t-31.737971912801473\t115.73255270719528\n5\tEl Caballo Lifestyle Village\tReady for service\t-31.800599504507684\t116.35106955017488\nAYAA-F7DKM\tHighland Reserve\tReady for service\t-27.8823195164227\t153.278922005378\nAYCA-1DIQ1G\tDeepdale North\tUnder construction\t-28.7695852595405\t114.682667281468\nAYCA-G6D99\tIronbark Ridge\tReady for service\t-32.2945243372932\t150.897661735819\n17320794\tStegemann Road Buccan\tCheck with carrier\t-27.752138016\t153.135784096\nAYCA-MVLET\tMount Margaret\tReady for service\t-19.3376598365711\t146.596882842201\n10387\tIluka\tReady for service\t-31.741005750924383\t115.73422908782959\nAYAA-HLIZF\tNickol West\tReady for service\t-20.7363338099194\t116.79243804\nAYCA-1GCO65\tWhitby\tContracted\t-32.279590000014\t115.997557\n17311856\tFantasia Land\tCheck with carrier\t-34.644247026500004\t138.651928928\n10172\tBurns Beach\tReady for service\t-31.728574154024283\t115.72688519954681\n10574\tSecret Harbour\tReady for service\t-32.39552818753023\t115.75571894645691\n10688\tWannanup-Port Bouvard North\tReady for service\t-32.601983893518465\t115.6345796585083\n10197\tCanningvale-Sanctuary Waters\tReady for service\t-32.100772582784344\t115.93021810054779\nON-V-LSP-TWC\tLakeside, Town Centre\tReady for service\t-38.072816794351404\t145.43586373329163\n17334924\tHalcyon\tCheck with carrier\t-27.878194981\t153.363738976\n101\tBarangaroo\tReady for service\t-33.860891437945874\t151.20260026877574\nAYCA-ILWV9\tCloverlea - Chirnside Park\tReady for service\t-37.745503247648\t145.332093027342\nAYCA-1INGUF\tLot 9000 Baile Road Canning Vale\tContracted\t-32.0671115083085\t115.909507261094\n17362323\tHOEVET FIELD\tCheck with carrier\t-17.0509390565\t145.4283672\nAYAA-J45NH\tPimpama Rivers Estate\tReady for service\t-27.7926076471019\t153.265624578904\nAYCA-TCBF0\tWandi Estate\tUnder construction\t-32.194845000013\t115.860880999999\nAYCA-T0C3W\tWickham South\tReady for service\t-20.684563011765\t117.142895280133\n10092\tBaldivis-The Chase\tReady for service\t-32.303049020278486\t115.82371830940247\nAYCA-1EFSPR\tCoomera Springs Estate\tContracted\t-27.8408675699834\t153.2906154\nAYCA-F6OD2\tThe Fairways\tReady for service\t-27.5485524851706\t152.46376330561\nAYCA-FZLKH\tMadigan Road\tReady for service\t-20.7515312639833\t116.79272085637\nON-Q-GC-SeaChange\tSeachange Emerald Lakes, Carrara\tUnder construction\t-28.015345000000003\t153.381919\nAYCA-M5S0I\tWindmill Downs\tReady for service\t-31.0370319898862\t150.904114385348\n10590\tSecret Harbour\tReady for service\t-32.410379155588195\t115.76870754361153\nAYAA-J4JYO\tWickham South\tReady for service\t-20.6838523976977\t117.137120090343\n271\tWestpoint Shopping Centre\tReady for service\t-33.76852830684482\t150.90482269288674\n334\tOceanside\tUnder construction\t-24.77278537946005\t152.41152280181123\nAYCA-13X8H5\tRiemore Downs Estate\tContracted\t-27.8859651299838\t153.10899288\n17362631\tBarbers Paddock\tCheck with carrier\t-36.1019571165\t144.76534032\n193\tChambers Pines\tReady for service\t-27.721799275380192\t153.08751662773457\nAYAA-F548W\tElizabeth Hills\tReady for service\t-33.8956701905742\t150.845726075931\n17348353\tAvenue Hill\tCheck with carrier\t-37.5230560025\t143.718275008\n17345976\tWestwood\tCheck with carrier\t-26.957241264\t152.764883648\nAYCA-FD0SO\tForest Springs\tReady for service\t-23.8947114383945\t151.248552545618\nAYCA-1CPHX4\tMoncrieff Residential Estate\tContracted\t-35.1611090000209\t149.114634000007\n17338330\tAmorosa Gardens\tCheck with carrier\t-27.4216899615\t152.000035936\nAYCA-F190V\tEdmondson Park South P1\tReady for service\t-33.9783097831143\t150.852090806049\n17357936\tBroadview Estate\tCheck with carrier\t-32.6346520035\t149.594210016\n234\tLogan Hyperdome Shopping Centre\tReady for service\t-27.659035338906623\t153.16967998506846\n17136044\tThe Grange Stage 1\tCheck with carrier\t-37.0329309885\t146.10346992\nAYAA-GR8ZS\tElizabeth Hills\tReady for service\t-33.8975584538271\t150.847407166737\nAYCA-1JH740\tCockburn Coast\tContracted\t-32.0863006079454\t115.761090935601\nAYCA-GKAGS\tParks Edge @ Casey Fields\tReady for service\t-38.1198055463689\t145.304366851953\nAYCA-13X8OH\tRiemore Downs Estate\tContracted\t-27.8859651299838\t153.10899288\nAYCA-19PWB1\tLot 1032 Redgate Road\tUnder construction\t-34.0292127594157\t115.09022781127\nAYCA-11PKDA\tMount Margaret\tReady for service\t-19.3405234999658\t146.599826077646\nAYCA-XGZCF\tFrench Street Werrington\tContracted\t-33.7607850000147\t150.735713999989\nAYAA-FG08V\tHighfields North Estate\tReady for service\t-27.4330973824287\t151.942094713239\nAYCA-13WQNT\tThe Fairways\tReady for service\t-27.5270719999815\t152.481257\nAYCA-1UJIVI\tEden Park Estate\tUnder construction\t-19.2357979999108\t146.643857\n216\tMartha Cove\tReady for service\t-38.30550886289194\t145.00656717872238\nAYAA-GPFH1\tThe Ponds\tReady for service\t-33.692786388454\t150.914964008876\nAYCA-HKY43\tEvans Park Industrial\tReady for service\t-38.0926864860118\t145.254120650953\n17322659\tLockhart River Subdivision\tCheck with carrier\t-12.779468007\t143.341381088\nAYCA-1J5EEA\tLot 10,50 \u0026 700 Ocean Reef Gnangara\tUnder construction\t-31.7877473878712\t115.858690851779\nAYAA-IGZL9\tTaylors Hill Estate\tReady for service\t-37.7193046518177\t144.739097452396\n10788\tWWP LBNCo\tReady for service\t-33.828184078700204\t151.07364177703857\n17321918\tOnslow Townsite Development\tCheck with carrier\t-21.646846974\t115.114884832\nAYCA-DWNVE\tMaranda Heights\tReady for service\t-23.5637709827387\t148.150837820423\nAYCA-TZAP5\tFrizzo Road, Palmview\tReady for service\t-26.7508125378843\t153.03774225061\n221\tCanberra Centre\tReady for service\t-35.28132145478449\t149.13330946921718\n303\tRochedale\tUnder construction\t-27.585841634265535\t153.11353598593286\n1\tDFO Perth\tReady for service\t-31.940804813395204\t115.94954840593766\n4\tDFO Perth\tUnder construction\t-31.940804813395204\t115.94954840593766\nAYCA-1ESEJE\tJimboomba Woods\tReady for service\t-27.8674779999843\t153.046517\nAYAA-EOFUR\tThe Village at Wellard\tReady for service\t-32.267305140479\t115.825448154138\nAYCA-1MFJ8K\tTindal Avenue, Beeliar\tContracted\t-32.1325105806847\t115.808275026027\n10105\tBaldivis-Tuart Ridge\tReady for service\t-32.33848128148256\t115.82120776176453\nAYAA-F614T\tArise\tReady for service\t-27.5751646966551\t153.118817920361\nAYCA-145346\tL107 Exploration Drive Multi-User Site\tReady for service\t-20.7552641658172\t116.768744493333\n17262882\tEastside Subdivision\tCheck with carrier\t-34.1966919555\t142.182113056\n10589\tSecret Harbour\tReady for service\t-32.40927015711777\t115.76955780386925\nAYCA-FUHRO\tCaddens Release\tReady for service\t-33.7747377813714\t150.721273265564\nAYCA-RNFCZ\tRIVERSTONE RISE\tReady for service\t-23.9719377242301\t151.317210217489\n10329\tDudley Park-Mariner\u0027s Cove\tReady for service\t-32.54984374590842\t115.7272070646286\nAYCA-JWNIP\tRedbank Motorway Estate\tReady for service\t-27.5859849493714\t152.876343356434\n17201178\tPacific Pines\tCheck with carrier\t-27.9312569955\t153.301434848\n10047\tAustralind-Galway Green\tReady for service\t-33.25603165631664\t115.7270622253418\n10698\tWannanup-Port Bouvard North\tReady for service\t-32.59203121760377\t115.64583957195282\n10327\tDudley Park-Mariner\u0027s Cove\tReady for service\t-32.550530596897936\t115.73215842247009\nAYCA-ROJ8T\tThe Meadows\tUnder construction\t-27.8279519999839\t153.312236\nAYCA-EOU5T\tHidden Valley Northern Paddock\tUnder construction\t-37.3869390600181\t144.994662359996\nAYCA-1RO4RX\tWindradyne\tContracted\t-33.4027119999957\t149.54138000004\nAYCA-LQAF8\tRIVERSTONE RISE\tReady for service\t-23.9673324937224\t151.318411370725\nAYCA-SG61Y\tAlkira Estate\tContracted\t-34.4891840000067\t150.764230999955\nAYCA-JKJE1\tForest Springs\tReady for service\t-23.8984820678198\t151.247298624639\nAYCA-DD3C8\tVermont Riverlands\tReady for service\t-33.5689465929785\t150.862954209724\nAYCA-GPU42\tNewman Light Industrial Area\tReady for service\t-23.370211790284\t119.727884729292\n10371\tFalcon-Pleasant Grove\tReady for service\t-32.59561976274473\t115.65103232860565\nAYCA-GR59S\tJohnston Stage 2\tReady for service\t-12.4910377171343\t131.00747135911\n17366497\t250-252 Blind Creek Road\tCheck with carrier\t-37.523448998\t143.77838\n17363349\tBullocks Run\tCheck with carrier\t-32.092228007500005\t152.449822016\n10217\tClarkson-Somerly\tReady for service\t-31.68231965347913\t115.73390185832977\nAYAA-GS1IC\tLot 1002 Penson Street, Singleton\tReady for service\t-32.4526525091403\t115.758240281793\n10046\tAustralind-Galway Green\tReady for service\t-33.25845042274144\t115.72949230670929\n17290310\tLinton Hill - Stage 2\tCheck with carrier\t-27.466329962\t151.82728704\n10611\tSecret Harbour-Anstey Park\tReady for service\t-32.398474967071245\t115.76890334486961\nAYCA-ER2HH\tVicars Avenue\tReady for service\t-38.5897578015856\t145.592578108999\nAYCA-G7VCW\tGap Ridge Industrial Area\tReady for service\t-20.7376182188109\t116.76592759951\nAYCA-159BSA\tMoncrieff Residential Estate\tContracted\t-35.159419000021\t149.110044000007\nAYCA-1S9DR7\tVasse Newtown\tContracted\t-33.6735871946194\t115.237501509781\n24\tChesalon Living\tReady for service\t-34.0064770830842\t150.7440112571631\nAYCA-S72QY\tKialla Lakes Estate\tUnder construction\t-36.4346950000272\t145.392727999998\n17349198\tThe Palisades\tCheck with carrier\t-27.4275060285\t152.923364992\nAYCA-1L7JOH\tLots 73 and 74 Queensway Rd, Landsdale\tUnder construction\t-31.8046482472394\t115.869656132796\n17355906\tDeepwater Estate\tCheck with carrier\t-27.3051000015\t153.015337088\n17347407\tAspire at Weston\tCheck with carrier\t-32.808095997\t151.447782976\n17325519\tBraeburn Estate\tCheck with carrier\t-32.5464440405\t151.173253088\nAYCA-IK50L\tSt George Springs\tContracted\t-28.2061125129523\t152.051781890475\nAYCA-1DAJU0\tHarrington Grove\tUnder construction\t-34.0141670000154\t150.719234999989\n10576\tSecret Harbour\tReady for service\t-32.41016651368836\t115.7580041885376\n10445\tJindalee-Jindalee Beach\tReady for service\t-31.64808608166744\t115.69432854652405\n10291\tDawesville-Port Bouvard South\tReady for service\t-32.6050378802273\t115.63354969024658\nAYCA-F6G23\tHeron Park\tReady for service\t-32.1206153334715\t115.933853735721\n272\tCastle Towers Shopping Centre\tContracted\t-33.73115719422902\t151.00477934287912\nAYCA-1BNMMK\tRedgum Brook Estate\tReady for service\t-32.2091690608967\t115.973701271346\nAYCA-1BCCVE\tFrizzo Road, Palmview\tReady for service\t-26.7461322570971\t153.039079776235\n10378\tHalls Head-Port Mandurah\tReady for service\t-32.53337661342534\t115.7064950466156\nAYCA-1JG1CU\tSpring Mountain\tContracted\t-27.7313099999831\t152.906138\nAYAA-GO2KN\tCardinia Lakes\tReady for service\t-38.0624103221007\t145.507605858647\n17325948\tEwer St Carindale\tCheck with carrier\t-27.516684964\t153.116602912\n17348390\tNorth Byron Beach Resort\tCheck with carrier\t-28.626032968500002\t153.588858848\n10571\tSecret Harbour\tReady for service\t-32.40081854959892\t115.75819730758667\n17315061\tYandina Caravan Park Stage 1\tCheck with carrier\t-26.5687499775\t152.95569984\nAYAA-IGN9M\tGreenhills Beach Residential\tReady for service\t-34.0345879914221\t151.164224730179\nAYAA-IWBVJ\tGalway Gold Estate\tReady for service\t-38.0572001902837\t145.481057988543\n17394457\tBoundary warehouses\tCheck with carrier\t-38.0843087805\t145.184269728\n17324948\tPerricoota Run Stage 3\tCheck with carrier\t-36.0924779755\t144.73565712\nAYCA-12K0N9\tGreenway - 799 Richmond Rd\tUnder construction\t-33.7233900000067\t150.847701999976\nAYAA-GUYWC\tBrookhaven Rise Estate\tReady for service\t-37.5627940974843\t144.696586941518\nRAWM\tWellington Manor\tReady for service\t-27.490458180626142\t153.22544932365417\nAYCA-H7WBI\tSovereign Hills\tUnder construction\t-31.4549160000096\t152.827631\nAYCA-KACMM\tBeverly Hills Estate\tReady for service\t-33.2436355021387\t149.091830082507\nAYCA-18CNWR\tMacquarie View Estate\tReady for service\t-32.2786208316522\t148.616670217466\nAYAA-GIMD0\tYellowgum\tReady for service\t-36.6907045065123\t144.323835048935\n10209\tClarkson-Somerly\tReady for service\t-31.690390180334045\t115.7239830493927\nAYCA-142BGQ\tLLOYD ESTATE\tUnder construction\t-35.1520639984098\t147.337553998696\n10649\tTapping-Ashton Heights\tReady for service\t-31.716962281699793\t115.79671382904053\n17329917\tCastle Hill Subdivision\tCheck with carrier\t-33.720329258\t151.01356512\n33\tHamilton Reach\tReady for service\t-27.443015132\t153.085595175\n10473\tLakelands\tReady for service\t-32.466192308164004\t115.76794981956482\n10570\tSecret Harbour\tReady for service\t-32.40004856754565\t115.75763940811157\nAYCA-NC7MJ\tGlenwood Development\tReady for service\t-36.185263368505\t146.936057138263\n17325403\tPatterson Gardens Estate Stage 2\tCheck with carrier\t-33.289404022\t149.12302608\n10170\tBurns Beach\tReady for service\t-31.728966545401306\t115.72501301765442\n17361986\tBalmattum Hill Estate\tCheck with carrier\t-36.751287007\t145.583227008\n17333322\tMacquarie Heights Estate\tCheck with carrier\t-32.944256996\t151.639039072\n10079\tBaldivis-Rivergums\tReady for service\t-32.34183520390608\t115.82303166389465\n17328997\tCar Mega Mart Stage 2\tCheck with carrier\t-38.095363992\t145.485427008\n10532\tMadora Bay\tReady for service\t-32.47605485052216\t115.75556874275208\nAYCA-MT9YM\tPotts Hill\tReady for service\t-33.891202420849\t151.028901244511\nAYAA-GR0XZ\tElizabeth Hills\tReady for service\t-33.9012756454489\t150.844692256359\n10029\tAveley-Vale\tReady for service\t-31.790171998121004\t115.9892749786377\nAYAA-FN97T\tAspiri\tReady for service\t-32.1417876390121\t115.909525216\nRAFB\tForresters Beach\tReady for service\t-33.4038792802728\t151.4666497707367\n17316951\tKookaburra Rise - Stg 3\u00264\tCheck with carrier\t-20.3102260255\t148.659717952\n10787\tWWP LBNCo\tReady for service\t-33.82709673956692\t151.0745644569397\nAYCA-1D9FGG\tFairway Gardens\tUnder construction\t-36.0520650000274\t147.013232\nAYCA-G7OO0\tGap Ridge Industrial Area\tReady for service\t-20.7357517321217\t116.762107212586\n10007\tAveley-Vale\tReady for service\t-31.78787482485216\t115.98103523254395\nAYCA-10WO6Q\tLot 6 Nicholson Road\tContracted\t-32.1440537855947\t115.91943745081\n10288\tDawesville-Port Bouvard South\tReady for service\t-32.61100683812102\t115.63154071569443\n17326041\tKinross Road\tCheck with carrier\t-27.556326986000002\t153.249588\n17337045\talanvale gardens\tCheck with carrier\t-41.398637042\t147.128419072\n10002\tAveley-Vale\tReady for service\t-31.79322877516195\t115.98442554473877\nAYAA-GYFSE\tKalynda Chase Estate\tReady for service\t-19.3044992828765\t146.690298682805\n10582\tSecret Harbour\tReady for service\t-32.415387169732384\t115.75394868850708\n10693\tWannanup-Port Bouvard North\tReady for service\t-32.5945576768249\t115.64508318901062\n17340599\tLeisure Life Village - 3 Parkside Pde Toronto\tCheck with carrier\t-33.027171036\t151.566399008\n10702\tWannanup-Port Bouvard East\tReady for service\t-32.60514633646602\t115.64143002033234\n10075\tBaldivis-Rivergums\tReady for service\t-32.33649153092163\t115.82380414009094\n17319550\t32-40 Cawarra Road\tCheck with carrier\t-34.0320390325\t151.129942912\n17329919\t800 MONTPELIER DRIVE\tCheck with carrier\t-34.084847967\t150.570492128\nAYCA-1F7L92\tZuccoli\tReady for service\t-12.5056259998882\t131.008578999993\n10186\tCanningvale-Avenues\tReady for service\t-32.09173200503879\t115.92247188091278\nAYAA-EW1BR\tShoal Point Waters\tReady for service\t-21.011116523858\t149.151202655373\nAYCA-14TLE6\tGeraldton Heights\tReady for service\t-28.7357469207182\t114.664126999979\n10187\tCanningvale-Avenues\tReady for service\t-32.089038646255204\t115.92517420649529\n165\tCanterbury Lakes\tUnder construction\t-38.02956063324748\t144.3880579328667\nAYCA-17SASX\tPaech Road Residential Subdivision\tUnder construction\t-35.0898210000208\t138.887281999993\nAYCA-NLVNW\tOsprey Subdivision\tContracted\t-20.4185619453499\t118.616142056594\nAYCA-189LZC\tOakwood Rise\tReady for service\t-27.8279889999839\t153.286215\n17328227\tRidgeview Estate\tCheck with carrier\t-34.0858359965\t150.69247488\nAYAA-GS0IM\tHarvest Lakes\tReady for service\t-32.1607065295207\t115.865516044205\nAYCA-1FTKWE\tMolonglo Valley - Coombs Stage 1\tReady for service\t-35.3198709016713\t149.048650961069\n17325807\tCoomera Rivers\tCheck with carrier\t-27.847922043500002\t153.366432832\nAYCA-EW20T\tNorthview Estate\tReady for service\t-32.2465804568276\t150.90397766\nAYAA-FOSEA\tCitiswich\tReady for service\t-27.6017188985184\t152.813996660607\nAYAA-FYWH5\tMcKeachies Run\tReady for service\t-32.6945357355568\t151.545543112298\n17275187\tSovereign Downs - stage 1\tCheck with carrier\t-28.238709957\t152.02181808\n17349266\tHenry St Brassall\tCheck with carrier\t-27.590119012000002\t152.729560096\nAYAA-F2BSM\tGlenfield West\tReady for service\t-35.1379948217273\t147.319628488454\nAYCA-E2RCZ\tRees Road, Brookfield\tReady for service\t-37.7152222374757\t144.548775775167\nAYCA-OKUJA\tSt Leonards Estate\tReady for service\t-31.851351726601\t115.975319584732\nAYCA-EMGSR\tMistful Park\tReady for service\t-34.7307356697632\t149.707134940517\nAYCA-F54UX\tBelmore Estate\tReady for service\t-34.7331738928449\t149.706596567539\n10661\tTapping The Kestrels\tReady for service\t-31.71812134547654\t115.7907485961914\n17359981\tYamba Waters\tCheck with carrier\t-29.4395681005\t153.343916\nAYAA-F26L4\tShannon Waters Estate\tReady for service\t-37.8385911993154\t147.572827852958\n17278226\tSpring Park Estate stage 5 \u0026 6\tCheck with carrier\t-36.0182999685\t147.01261392\nAYAA-EOIUG\tBungarribee (Bunya)\tReady for service\t-33.7785498963346\t150.871722313876\n249\tBentley Park\tReady for service\t-38.00089970213787\t145.1807633495413\nAYAA-H9B8H\t95 Flynn Ave, Middleton Grange\tReady for service\t-33.9169220163184\t150.84380031936\n17316398\tCurrey Street Roma\tCheck with carrier\t-26.5661309695\t148.773735008\nAYCA-10XNGP\tWarner Springs\tReady for service\t-27.3090973931164\t152.955923963122\n17358015\tWoodside Park Estate\tCheck with carrier\t-34.17311772\t142.219964768\n10434\tJindalee-Jindalee Beach\tReady for service\t-31.650771238172503\t115.69381356239319\n10633\tStirling-Roselea\tReady for service\t-31.886405556850722\t115.81453442573547\nAYCA-IIZZF\tGlenhaven Park\tContracted\t-38.0777960000299\t147.067778\nAYAA-ETJLH\tKurra at Newman\tReady for service\t-23.3492192099286\t119.732205600023\n17399437\tKokoda DHA Redevelopment\tCheck with carrier\t-28.034862009\t153.181528992\n10451\tJindalee-Eden Beach\tReady for service\t-31.650792215652338\t115.69370090961456\n10652\tTapping-Ashton Heights\tReady for service\t-31.718741940597035\t115.80303311347961\nAYCA-114M8I\tBaldivis East\tReady for service\t-32.3126555913481\t115.824591508574\nAYCA-13WZ1H\tRiemore Downs Estate\tReady for service\t-27.8912129399838\t153.11493288\n10566\tSecret Harbour\tReady for service\t-32.398073760026065\t115.74823021888733\n17314100\tHilltop Estate\tCheck with carrier\t-35.162060047000004\t147.343695136\n17256993\tVolker Street Dalby\tCheck with carrier\t-27.172153988\t151.24532688\n10076\tBaldivis-Rivergums\tReady for service\t-32.339061428306444\t115.8249306678772\nAYCA-1KG5DU\tCaddens Release\tUnder construction\t-33.7729190000145\t150.717314999989\n17321970\t52 Lot Subdivision at 278-298 Kopps Road Oxenford\tCheck with carrier\t-27.9186920175\t153.298582912\nAYCA-Z2NWV\tRiverside Estate\tReady for service\t-36.1396140000277\t146.94733\n135\tVicinity\tReady for service\t-27.668484209033387\t152.8932789745534\nAYAA-FIVKB\tSilkwood\tReady for service\t-27.62766731302\t153.257320500246\nAYCA-13KY8A\tStonecutters Ridge\tUnder construction\t-33.7177115360161\t150.85353745036\nAYCA-N65WN\tWilliams Landing\tReady for service\t-37.8572225911177\t144.752599787152\n10501\tLakelands\tReady for service\t-32.4656455793399\t115.77149033546448\nAYCA-1G91V7\tWellard Glen\tUnder construction\t-32.2718152106875\t115.847753342353\nAYAA-FPPZ3\tThe Village\tReady for service\t-19.2930919827071\t146.813468464972\nAYCA-RIMV7\tShoesmith Road / Gwenda Drive\tReady for service\t-27.5980661022218\t151.868618675165\nAYCA-SGJJ1\tEast Newman\tContracted\t-23.3533529999134\t119.745250920015\nAYCA-HZPMS\tRiverbank\tContracted\t-27.0924267420636\t152.957653706985\nAYAA-F68FV\tAmbrosia Estate\tReady for service\t-38.1152450696986\t145.232253663761\n17355795\t2070 Romsey Rd\tCheck with carrier\t-37.3508019845\t144.756296992\n10560\tQuinns Rock-Brighton Beachside\tReady for service\t-31.654480539552317\t115.69308316335082\nAYCA-1IDZGW\tDeepdale North\tContracted\t-28.7846939999871\t114.68948799999\nAYCA-E1F2P\tBig Sky\tReady for service\t-27.8371893741321\t153.329235325445\n10354\tMillbridge\tReady for service\t-33.314029170846915\t115.73272973299026\nAYCA-1B7QW3\tHeights Durack\tReady for service\t-12.4689548107749\t130.97684745566\nAYCA-EV5A6\tBotanic Ridge Estate\tReady for service\t-38.1394484973512\t145.257629874059\nAYCA-1E33L6\tHeartland\tUnder construction\t-34.0243758693653\t150.770672515165\n10595\tSecret Harbour\tReady for service\t-32.41516629622664\t115.76824150979519\n17317230\tTarneit Gardens\tCheck with carrier\t-37.8385389815\t144.675806048\nAYCA-MQ1IF\tHeron Park\tReady for service\t-32.1206153334704\t115.933853735722\n319\tSamford Retirement Village\tUnder construction\t-27.377593669964934\t152.88582620064778\n17364564\t42-44 WANAKA DRIVE\tCheck with carrier\t-37.714644981\t144.814979168\nAYCA-M7UKE\tAlex Ave Schofields\tReady for service\t-33.7077925068541\t150.885738909094\nAYCA-ES879\tVista Park\tContracted\t-34.4717682164447\t150.760773157261\nAYCA-DR2XE\tLyndarum\tReady for service\t-37.6175821626794\t145.022186165777\nAYCA-1T833W\tMunno Para West\tContracted\t-34.6537236956186\t138.679963581282\nAYCA-1JCYUF\tThe Village at Wellard\tUnder construction\t-32.2674723303443\t115.815194636229\nAYCA-GC69I\tRedbank Estate\tReady for service\t-31.1321730296903\t150.95450405738\nAYAA-FPPJL\tTreendale Grand Entrance\tReady for service\t-33.2832867559444\t115.743499048217\nAYCA-HAFZC\tSanctuary\tReady for service\t-32.8625539345981\t151.640409860095\nAYCA-EOUA4\tHidden Valley Northern Paddock\tContracted\t-37.3829400000256\t144.997435999994\nAYCA-RX20O\tForest Park Estate\tReady for service\t-23.324944363326\t150.526877499554\nAYAA-I2S0G\tRiverbank\tReady for service\t-27.0937721425907\t152.957423135435\nAYAA-HDH0A\t22-26 Fairway Drive, Kellyville\tReady for service\t-33.7268669549468\t150.95973745889\n10607\tSecret Harbour\tReady for service\t-32.40772750003423\t115.76587110757828\nAYCA-1OUD2V\tCoomera 2 Estate\tContracted\t-27.841463999984\t153.344296\nAYCA-181ZYP\tPlateau Drive Estate\tReady for service\t-28.8150662776219\t153.417476227406\nAYCA-NLQYO\tWest Macgregor\tReady for service\t-35.2062806440738\t149.008430046802\nAYCA-K45EX\tBrook View Estate- Glen Eden\tReady for service\t-23.908229708765\t151.275568311569\nAYCA-PY6D9\tLandcom - North Penrith\tUnder construction\t-33.7450150000141\t150.696213999988\nAYCA-DWNT0\t165 Rowes Lane\tReady for service\t-37.4199886208213\t144.968656883999\nAYCA-DSIWC\tCapestone Estate\tReady for service\t-27.2294086990467\t153.036578134434\n17320784\tThe Poplars Estate\tCheck with carrier\t-33.277665957\t149.068000096\nAYCA-L7A0N\tSherwins Way Estate\tReady for service\t-37.6190774358342\t145.031257513902\n10656\tTapping-Ashton Heights\tReady for service\t-31.719818845799136\t115.79861283302307\nAYCA-X7HVB\tHeron Park\tReady for service\t-32.1216367216858\t115.93642891207\nAYCA-XMF0H\tMarsden Heights\tReady for service\t-33.3946425629997\t149.604477678932\n17371587\tEatons Hill Village\tCheck with carrier\t-27.338218017\t152.96384304\nAYAA-F26S6\tSienna Wood\tReady for service\t-32.1637390545126\t115.988251904\n17320603\tAmaroo Park - Stage 5\tCheck with carrier\t-16.9941300335\t145.438629856\n17323048\tCotton Beach Subdivision\tCheck with carrier\t-28.308743002\t153.571853888\n17320331\tBeachside Residential - Stage A\tCheck with carrier\t-23.187879991\t150.790339072\nAYCA-QKD53\tAppletree Grove Estate\tReady for service\t-32.9133083422074\t151.585942961201\n17354070\tIluka Views\tCheck with carrier\t-36.049058993500005\t147.01605408\nAYCA-1FM3ZL\tSouth East Thornlands\tUnder construction\t-27.5720465858005\t153.276578592126\nAYCA-HVMVD\tBraemar Homesteads\tUnder construction\t-35.915706397652\t150.08859337385\nAYCA-ZURHM\tFrizzo Road, Palmview\tReady for service\t-26.7503297059672\t153.034471680316\nAYCA-HB8MK\tRenwick\tReady for service\t-34.4461002983266\t150.472202450163\n17351484\tBelle Eden Estate\tCheck with carrier\t-24.870535022000002\t152.393478112\nAYCA-EXVZY\tViewpoint, Huntly\tReady for service\t-36.6615597123722\t144.343671970779\nAYCA-194B8B\tByford On The Scarp\tContracted\t-32.2331850000137\t116.011438\nAYAA-GYS6F\tKalynda Chase Estate\tReady for service\t-19.3026909769079\t146.694942977699\nAYCA-EY6AL\tLucas\tReady for service\t-37.5495318428072\t143.781291126\nAYCA-1PWOJN\tERA Estate Capalaba\tContracted\t-27.5506336349747\t153.224509592182\n10630\tStirling-Princeton\tReady for service\t-31.898519899315282\t115.818230509758\nAYCA-DD3G0\tScenic Rise\tReady for service\t-27.9577945994649\t152.993526956843\n10382\tHalls Head-Port Mandurah\tReady for service\t-32.54381648521821\t115.71380406618118\nAYCA-1FDUG2\tMarsden Heights\tReady for service\t-33.3983704758768\t149.601534226053\nAYCA-1OAYNC\tNelson Street Subdivision\tContracted\t-27.6162069999815\t151.940039\nAYCA-1014V5\tMoree Gateway\tUnder construction\t-29.492475671184\t149.850760017586\nAYAA-FPT58\tBluestone Green\tReady for service\t-37.88934150819\t144.607045054923\n17332661\tColes Banksia Grove Shopping Centre\tCheck with carrier\t-31.7052610285\t115.803839168\nAYCA-1AAFH9\tAvonlee Estate\tContracted\t-31.8176660000115\t115.975602\n10353\tMillbridge\tReady for service\t-33.302394501737766\t115.72965525090694\n10103\tBaldivis-The Ridge\tReady for service\t-32.35180098789957\t115.80986805260181\nAYAA-J8QYX\tBrentwood Rise\tReady for service\t-27.6490802207415\t152.885460967255\nAYCA-MLELV\tLot 502 Jane Brook Drive\tReady for service\t-31.8595792828707\t116.056652970219\n10790\tBurns Beach\tReady for service\t-31.719263385089498\t115.7285964739358\nAYAA-HV1XO\tHighlands\tReady for service\t-37.5688227233428\t144.903520432181\nAYCA-HDLQ8\tRenwick\tReady for service\t-34.4501084045719\t150.472312610919\nAYAA-F68I5\tAmbrosia Estate\tReady for service\t-38.1152450696986\t145.232253663761\nAYAA-FU6UI\tWindradyne Estate\tReady for service\t-33.4000271122747\t149.54050912388\n17336882\tSage Apartments\tCheck with carrier\t-28.056345023000002\t153.367508896\nAYCA-IKR2K\tCalifornia Creek Estate\tReady for service\t-27.6595933676148\t153.204977135269\nAYCA-1FZO3Y\tKingston Downs Estate\tContracted\t-38.2495510895261\t144.544847507348\nAYAA-GE42C\tThe Ponds\tReady for service\t-33.7034999554244\t150.902785947618\nAYCA-IJB9S\tSmirk Road\tReady for service\t-32.3504673154424\t115.812371738849\nAYCA-N65SV\tWilliams Landing\tReady for service\t-37.8621307656859\t144.748331797565\nAYCA-DUTWB\tLittle Creek\tReady for service\t-23.8967502294119\t151.215576601543\nAYAA-F5EGE\tNewhaven\tReady for service\t-32.1285630000132\t115.929829\n17328401\tJOHNSTON STREET\tCheck with carrier\t-31.072084746\t150.910704736\nAYAA-HGK4T\tBrookhaven Rise Estate\tReady for service\t-37.5631410356327\t144.69416767765\n10238\tDalyellup\tReady for service\t-33.40049720869732\t115.61841130256653\n92\tEast Village\tReady for service\t-27.46672323494773\t153.09624206692058\nAYCA-1VDJU8\tCutters Ridge Estate\tContracted\t-26.6277088799738\t153.03225402\nON-N-HBUSH-C_Park\tCentenary Park\tReady for service\t-33.86345799888735\t151.06499433517456\n17350455\tDiamond Hill Estate\tCheck with carrier\t-37.075002745\t144.185662816\n10144\tBanksia Grove\tReady for service\t-31.690188411450773\t115.79452514648438\nAYCA-H2A18\tWonthaggi Heartlands\tReady for service\t-38.6046202500285\t145.584599039998\n10057\tAustralind-Treendale\tReady for service\t-33.28588904783222\t115.7360315322876\nAYCA-1B6PNJ\tHighfields North Estate\tUnder construction\t-27.438383064857\t151.940037706812\nAYCA-1FU57R\tSeascapes\tContracted\t-32.5600200911635\t115.675273969223\n10091\tBaldivis-Rivergums\tReady for service\t-32.3288040654175\t115.82648634910583\n17325301\tChapple Street Business Park\tCheck with carrier\t-23.842427048\t151.245870112\nAYCA-ZFMAE\tYanchep Golf Estate\tReady for service\t-31.5455487881747\t115.6544456324\n10194\tCanningvale-Sanctuary Waters\tReady for service\t-32.09340096992868\t115.92701017856598\n17319264\tPeregian Springs\tCheck with carrier\t-26.5011980415\t153.070047008\nAYCA-15LCBW\tLouisiana Road\tUnder construction\t-33.2607460000182\t151.471524999999\nAYAA-F3PM8\tWarralily - Armstrong Creek\tReady for service\t-38.2365722474205\t144.372427115256\n17324013\tGrassy Flat Road Diamond Creek\tCheck with carrier\t-37.6597870235\t145.155772096\n10268\tDalyellup\tReady for service\t-33.4037614806216\t115.61404466629028\n10516\tMadora Bay\tReady for service\t-32.48248989352084\t115.75327277183533\nAYCA-Z1Y3T\tAnnadale Estate\tUnder construction\t-37.5359491183692\t144.89832195574\n10394\tIluka\tReady for service\t-31.735472343316534\t115.73389984667301\n10406\tIluka\tReady for service\t-31.728176271463738\t115.7293152809143\nAYAA-HD37C\tPotts Hill\tReady for service\t-33.894950814314\t151.026671196638\nAYCA-PU9UW\tGrey Gum Estate\tReady for service\t-33.6870753533343\t150.938508516345\nAYCA-IA841\tTrumpet Wy/Cottier Dr/Lovell Pl\tContracted\t-20.4038037645468\t118.606949894255\nAYCA-TAE37\tHelena Valley\tReady for service\t-31.9171237015168\t116.034292150265\nAYCA-E2MNA\tEucalypt\tReady for service\t-37.6110605742831\t145.035290743683\nAYCA-IAOE6\tThe Boulevard\tReady for service\t-36.3559703078836\t145.373152448696\nAYCA-SN6ZO\tGoogong Township\tReady for service\t-35.4197191360926\t149.234504074279\nAYCA-L8UX7\tAmbrosia Estate\tReady for service\t-38.111228466431\t145.237007178357\nAYCA-N50IV\tVermont, Fernadell\tReady for service\t-33.5811619493067\t150.859265867241\nAYCA-RZ1UT\tPhase 2 Single LEAP Robertson Barracks\tReady for service\t-12.4381023599208\t130.975075679746\n17346283\tBellevue Hill Estate\tCheck with carrier\t-32.592495776\t149.562792736\nAYCA-E0VG1\tGracewood Kellyville\tReady for service\t-33.7192705851282\t150.942280808775\nAYCA-RBWFU\tGolden Bay\tReady for service\t-32.418280991871\t115.76247194129\nAYCA-UFCXA\tSaddlers Ridge\tUnder construction\t-32.7612562330972\t151.53493159951\nAYCA-FTSDU\tOakdene Estate\tReady for service\t-38.2384317605686\t144.54527020194\nAYCA-J3YYH\t330 Bridge Inn Road\tUnder construction\t-37.6015940565486\t145.069762768022\nAYCA-SS6F2\tThe Woods\tReady for service\t-37.5371740000247\t144.915389999993\nAYCA-1JRAKC\tWaverley Parks Estate Willowvale\tReady for service\t-27.8269472505816\t153.280826659875\nAYCA-T4NHQ\tOld Broadwater Farm\tReady for service\t-33.6679280396088\t115.310452530096\nAYCA-FD0UW\tThe Grove\tReady for service\t-38.0903093305982\t145.281703115116\n17331693\tHunt Club Village Shopping Centre\tCheck with carrier\t-38.100317034\t145.292970976\nAYCA-K7DRA\tJohnston Stage 2\tReady for service\t-12.4878039566524\t131.00690499391\nAYCA-1RC93R\tSubdivision of Lot 3333, Katherine East\tContracted\t-14.466671523834\t132.297197632446\n17315991\tSteele Road Logan Village\tCheck with carrier\t-27.7712690325\t153.115872128\n10545\tMurray-Murray River Country Estate\tReady for service\t-32.6095100377231\t115.85558697581291\n10551\tMurray-Murray River Country Estate\tReady for service\t-32.603443925540866\t115.85722647607327\nAYCA-18LJI2\tSpring Farm\tContracted\t-34.0714520000158\t150.737881999989\nAYCA-1F0VFN\tFranklin Place\tReady for service\t-38.1820110000299\t146.545633\n10297\tDawesville-Florida Beach\tReady for service\t-32.62276827172043\t115.62710702419281\nAYCA-1FZM3S\tWaterlink Estate\tUnder construction\t-36.7205260000284\t142.211344\n17327844\t85 Brooking Road Gisborne\tCheck with carrier\t-37.5056739945\t144.601026848\nAYCA-JNMSX\tYanchep Golf Estate\tReady for service\t-31.5470222925299\t115.655937330626\n10111\tBaldivis-Tuart Ridge\tReady for service\t-32.34506663589533\t115.81529080867767\nAYCA-KEB94\tThe Village at Wellard\tReady for service\t-32.2718680080145\t115.822316290807\nAYCA-13EJEY\tMaddington Rd,Alcock St- Maddington\tUnder construction\t-32.0427570000128\t115.99974\nAYCA-1BUV12\tHighgrove Estate\tContracted\t-38.1132090000285\t145.329204999998\nAYCA-TXGI1\tPlenty River Views\tReady for service\t-37.4982092374781\t145.109534845624\nAYCA-LTU0Z\tThe Dunes\tReady for service\t-38.305781828889\t144.330300660642\nAYCA-1ZAGER\tBunnings Warehouse Glendale\tContracted\t-32.9423760000163\t151.627208999998\nAYCA-J3RSC\tNabilla Riverlinks\tReady for service\t-21.155124074927\t148.959075130306\nAYCA-1MF8QB\tTindal Avenue, Beeliar\tUnder construction\t-32.1345160000132\t115.808323\n10663\tTapping The Kestrels\tReady for service\t-31.722027374956312\t115.79255104064941\n154\tWater Edge\tReady for service\t-38.07048619596557\t145.3278744938933\nAYCA-JU3C3\tZuccoli\tReady for service\t-12.5038714941515\t131.007866215672\n17117399\tKooringa Valley - stage 1\tCheck with carrier\t-27.5173340365\t151.901484128\nAYCA-1N5EWQ\tThe Rise\tContracted\t-38.1779480000299\t146.561114\nAYAA-FI1F0\tCliftleigh Residential Estate\tReady for service\t-32.7895661017861\t151.514588914151\nAYCA-R8A12\tCormiston Upper\tContracted\t-41.4003750000277\t147.080731\nAYCA-1J45BM\tCarinity Aged Care - Fairfield Waters\tUnder construction\t-19.3082003990128\t146.807784719803\n10700\tWannanup-Port Bouvard North\tReady for service\t-32.59278599910757\t115.65177261829376\n10155\tBanksia Grove\tReady for service\t-31.69622809346543\t115.80467998981476\nAYCA-18GJLW\tAurora Estate\tContracted\t-37.6146450000259\t145.001675999995\n17252433\tChurchfield\tCheck with carrier\t-34.102176029\t150.790938848\n10374\tEglington-Allara\tReady for service\t-31.577557425927434\t115.66079020500183\nAYAA-G53SW\tGlenmore Ridge\tReady for service\t-33.8009985073084\t150.680567514446\nAYCA-198O38\tGlenview Estate\tUnder construction\t-27.5569409999816\t151.898128\n10577\tSecret Harbour\tReady for service\t-32.41216278036248\t115.76191484928131\n10216\tClarkson-Somerly\tReady for service\t-31.692362057588973\t115.72820484638214\nAYCA-WDCA1\tThe Ponds\tReady for service\t-33.7064140000126\t150.898332999986\nAYAA-ESVR8\tQuarters\tReady for service\t-38.0985862731359\t145.253535845232\n10395\tIluka\tReady for service\t-31.733395875766995\t115.73339223861694\n10004\tAveley-Vale\tReady for service\t-31.79377591518981\t115.98265528678894\nAYCA-IKFNQ\tCaddens Road, Kingswood\tReady for service\t-33.7749321775366\t150.732427925935\n10613\tSecret Harbour-Anstey Park\tReady for service\t-32.405161818926416\t115.7690455019474\nAYCA-1FBKCC\tVantage\tUnder construction\t-32.7242332800109\t152.11326132\n10118\tCarramar-Banksia Grove\tReady for service\t-31.70006751072969\t115.79432129859924\nAYCA-13X8E1\tRiemore Downs Estate\tUnder construction\t-27.8880325616494\t153.111054854636\n10544\tMurray-Murray River Country Estate\tReady for service\t-32.606426477329705\t115.85716210305691\nAYCA-RJUQM\tGoogong Township\tReady for service\t-35.4144397061314\t149.235661448984\nAYCA-W4ML9\tHeights Durack\tReady for service\t-12.4702565470322\t130.979350484024\nAYCA-1D96Q5\tCasey 4\tReady for service\t-35.1768342022029\t149.09373520338\nAYAA-FPRLN\tBluestone Green\tReady for service\t-37.8955127533772\t144.60797247417\nAYCA-1IP7M3\tHunt Club Estate\tContracted\t-38.1112793229141\t145.300113062036\n17319025\tIsaac Views\tCheck with carrier\t-21.995396002\t148.066696096\nAYCA-F9XI8\tToolern Waters\tContracted\t-37.7167718217348\t144.561908358791\n79\tWildflower Ridge\tReady for service\t-27.690741712392327\t152.9201320841761\n10312\tDawesville-Dawesville Ridge\tReady for service\t-32.6230624077761\t115.63646256923676\nAYAA-GHEC9\tProvidence Estate\tReady for service\t-37.6239441054423\t144.884572459401\nAYAA-GGXGS\tProvidence Estate\tReady for service\t-37.6249702235692\t144.892266446432\n10040\tAveley-Vale\tReady for service\t-31.77101942381642\t115.98254799842834\nAYCA-HZYR1\tArbourlea\tReady for service\t-38.0828084141228\t145.326774694117\n17334900\tMinto Renewal Project\tCheck with carrier\t-34.036637041\t150.851014912\nAYCA-ICLSQ\tVillage Square Estate\tReady for service\t-33.9539837867809\t150.85348955162\nAYCA-1DG0KG\tWolstenholme Drive final stage\tReady for service\t-42.7806744458159\t147.545286116511\nAYCA-F191C\tEdmondson Park South P1\tReady for service\t-33.9813315071457\t150.854876963875\n10603\tSecret Harbour\tReady for service\t-32.40815070727752\t115.75285837054253\n17340486\tWest Park Industrial Estate\tCheck with carrier\t-37.8022170065\t144.740836992\nAYAA-H9HQB\tParagon Estate\tReady for service\t-37.9105173700591\t144.760691293499\nAYAA-FPSHQ\tBridge Inn Rise Estate\tReady for service\t-37.6010320000267\t145.119855999996\n194\tAvondale Heights \tReady for service\t-37.76578967741349\t144.86028228759304\nAYCA-NLQCQ\tThe Glades\tReady for service\t-34.7875775698901\t138.59904494578\nAYCA-PT8T9\tGrey Gum Estate\tReady for service\t-33.6871960958341\t150.938493459122\nAYCA-FDMGP\tSpringlands Estate\tReady for service\t-37.7128286267871\t144.723910254727\nAYAA-GR8X0\tElizabeth Hills\tReady for service\t-33.8996909239624\t150.843414378787\nAYCA-DLVJU\tSettlers Run Estate\tReady for service\t-38.1348295175072\t145.251979560089\nAYAA-FEBBY\tCarlingford Estate\tReady for service\t-37.6627376909728\t144.987274126825\nAYCA-VPX4J\tKirkham Rise\tReady for service\t-34.022790678117\t150.705375039098\nAYCA-KD23I\tRenaissance Rise\tReady for service\t-37.6023091045257\t145.081302875535\nACPV\tPalmview\tReady for service\t-26.73523804255589\t153.06353615169382\nAYCA-G8KWU\tSpring Farm\tReady for service\t-34.0658369930352\t150.735698234826\nAYCA-I9H4I\tOsprey Subdivision\tReady for service\t-20.4157163291041\t118.614106529595\nAYAA-GNWAI\tEstuary\tReady for service\t-38.2012828124497\t144.455436423453\nAYAA-FXOCV\tTuart Ridge\tReady for service\t-32.34050648256\t115.813532501132\nAYCA-1VT8Y4\tRobinson Park\tContracted\t-32.0839373972776\t115.995133701198\n17341648\tDiamond Crescent\tCheck with carrier\t-33.895387894500004\t150.8808672\nAYCA-WHHP1\tThe Vines\tReady for service\t-32.8286091895677\t151.323950914147\n172\tGemstone Rise\tReady for service\t-27.572448933673176\t151.9103253116011\nAYCA-LJ5ZI\tMcKeachies Run\tReady for service\t-32.6974762147736\t151.538040753666\n10475\tLakelands\tReady for service\t-32.46648649795694\t115.76568603515625\nAYAA-FUGCA\tSaratoga Estate\tReady for service\t-37.9066893056224\t144.71646045913\nAYCA-17GFGC\tQuarters\tReady for service\t-38.0967720000281\t145.249468999997\n10220\tClarkson-Somerly\tReady for service\t-31.686396087611623\t115.73165953159332\nAYCA-11AP93\tSomerset Rise\tReady for service\t-36.0236020070927\t146.984624526909\nAYCA-U7W4J\tLakeland Development (VR Land)\tContracted\t-38.076076000029\t145.434943999999\nAYAA-G9SX5\tSussex Rise\tReady for service\t-35.1593660247606\t150.581802283005\n10214\tClarkson-Somerly\tReady for service\t-31.683762174712466\t115.7305920124054\nAYCA-FKVUE\tKialla Lakes Estate\tReady for service\t-36.4323583231229\t145.402353581587\n10669\tWandi-Honeywood\tReady for service\t-32.19070947854437\t115.86132287979126\nAYCA-1IFF61\tGlebe Hill\tContracted\t-42.8837890000249\t147.430894\nAYCA-189CVK\tHeron Park\tReady for service\t-32.1181321904035\t115.936707412129\n17399469\tHolmesglen Private Hospital\tCheck with carrier\t-37.935096993500004\t145.050038016\nAYCA-GDD50\tPennyroyal Development\tReady for service\t-37.6577821951206\t144.578526996617\nAYCA-16LJ11\tNorfolk Estates Pty Ltd\tUnder construction\t-27.8330656161685\t153.326696189634\nAYCA-FCJYS\tReid Street Subdivision\tReady for service\t-26.5598998844113\t148.779103252302\nAYCA-J6QDT\tSanctuary\tReady for service\t-32.8700009812975\t151.644906313186\nAYCA-JJ268\tBungarribee (Bunya)\tReady for service\t-33.7754688239224\t150.868040389349\n17147925\tMallia Subdivision\tCheck with carrier\t-37.4063609625\t144.963704896\n17289902\tDales Rd\tCheck with carrier\t-38.373669001\t142.518738976\nAYCA-EEDPT\tNewleaf Bonnyrigg Development\tReady for service\t-33.8885391409453\t150.895881918938\n17328894\tIndooroopilly Shopping Centre\tCheck with carrier\t-27.49784301\t152.973822976\nAYCA-G6YEX\tEast Newman\tReady for service\t-23.3565346916548\t119.748159268223\nAYCA-LDBQ3\tNabilla Riverlinks\tReady for service\t-21.1565352551378\t148.95891731688\n17326917\tJoondalup Business Park South\tCheck with carrier\t-31.7572630115\t115.768271872\nAYCA-ZTGYS\tAurora Estate\tReady for service\t-37.6164610000256\t145.000503999995\nAYAA-FPPUI\tThe Ponds\tReady for service\t-33.706787340221\t150.902998287707\nAYCA-1F6W0L\tStage 1\tReady for service\t-27.2346020099783\t152.98472448\n17332519\tKalimna Park - stage 12\tCheck with carrier\t-27.4353350435\t151.938828\n239\tRipley Valley\tReady for service\t-27.668471218456073\t152.78388176915914\nAYAA-GHIU2\tProvidence Estate\tReady for service\t-37.6221723380054\t144.891117820951\nAYAA-F3CHZ\tNewhaven\tReady for service\t-32.1331908950702\t115.930736211416\nAYCA-EZXP3\tHidden Waters\tReady for service\t-32.8837089157827\t151.639558370114\nAYCA-KBSOQ\tHuntington Rise\tReady for service\t-27.9184949999847\t153.287132\n10218\tClarkson-Somerly\tReady for service\t-31.685108811962056\t115.72906851768494\nAYCA-JY3KC\tOakdene Estate\tReady for service\t-38.238505748673\t144.545255663843\nAYCA-1ED0W6\tElderslie\tUnder construction\t-34.0564940000155\t150.722491999989\n10583\tSecret Harbour\tReady for service\t-32.416944979494694\t115.75388431549072\n17359417\t1550 Pascoe Vale Road Coolaroo\tCheck with carrier\t-37.645206193\t144.933915968\nAYAA-G0M8Z\tSouth at Seaford Meadows\tReady for service\t-35.1712591559897\t138.484664684411\n17341536\tWyreema Estate\tCheck with carrier\t-27.654777992\t151.869831136\nAYCA-EWZHS\tSouth at Seaford Meadows\tReady for service\t-35.1725839127242\t138.484732855314\nAYAA-F8LET\tOrmeau Ridge\tReady for service\t-27.8018459693702\t153.25226694043\nAYCA-VHOKB\tAurora Estate\tReady for service\t-37.6192571596227\t144.996540243027\n17359833\t75-81 Bremen Street Hemmant\tCheck with carrier\t-27.455191833500002\t153.139708768\nAYAA-HJXUR\t165 Rowes Lane\tReady for service\t-37.4196941109529\t144.965936354376\nAYCA-Q23DQ\tStrzelecki Views Estate\tReady for service\t-38.2064062373483\t146.165903487972\nAYCA-DIOLX\tOcean Club Residential Community\tReady for service\t-31.5666562701162\t152.831779795737\n17335051\tSt Eyre Estate\tCheck with carrier\t-32.5007980285\t137.733543008\nAYCA-KJ1FN\tThe Parc\tReady for service\t-33.719577830225\t150.950595156373\n17348299\tBeaumount Park\tCheck with carrier\t-36.047103303\t147.020243776\n17355577\tFersfield Road \u0026 Willowbank Road Gisborne\tCheck with carrier\t-37.4967479665\t144.592994176\n1143\tProposed Development Site\tReady for service\t-37.8177849378873\t144.934485623438\nAYCA-1FMEEC\tBarlow Estate\tContracted\t-27.5289549999814\t151.91544\nAYCA-1940S3\tAlarah Estate\tUnder construction\t-38.1107970000281\t145.248546999997\nAYAA-FKLI6\tHalcyon Landing Bli Bli\tReady for service\t-26.6174680398293\t153.03895856369\n10594\tSecret Harbour\tReady for service\t-32.41548838997459\t115.76508186757565\nAYCA-10P92J\tSt Anthony\u0027s - Secret Harbour\tUnder construction\t-32.3999940000145\t115.762005\nAYCA-139S5J\tGolden Bay\tReady for service\t-32.4205202560757\t115.755524712345\nAYCA-1HPMUJ\tPeregian Breeze\tUnder construction\t-26.4864609999726\t153.078679\nAYCA-1NJD6X\tAspiri\tUnder construction\t-32.1445270000132\t115.916003\n10629\tStirling-Princeton\tReady for service\t-31.897763880376377\t115.81708252429962\nAYCA-KYBBZ\tSaratoga Estate\tReady for service\t-37.9077956180254\t144.718687648885\n89\tVictoria Harbour\tReady for service\t-37.8193148648327\t144.9425101994443\n10478\tLakelands\tReady for service\t-32.46939213628661\t115.76628684997559\nAYCA-ZDHI7\tAspiri\tReady for service\t-32.141551422264\t115.917500191323\nAYCA-JBYRH\tKirkham Rise\tReady for service\t-34.0241027745067\t150.707736011559\nAYCA-IUBNF\tLots 156-158 \u0026 169 Landsdale\tReady for service\t-31.8174764837792\t115.873276630402\n10332\tDudley Park-Mariner\u0027s Cove\tReady for service\t-32.55575737027896\t115.73980003595352\n17231671\tLots 639-642 Horus Bend Bibra Lake - Stage 3\tCheck with carrier\t-32.098437995\t115.814032992\nAYCA-HRACE\tGreenhills Beach Residential\tReady for service\t-34.0341041256818\t151.161808804036\n17322671\tAlbert Park Stage 5\tCheck with carrier\t-37.5462279925\t143.926175168\nAYCA-O1HNI\tAspiri\tReady for service\t-32.1403086957267\t115.912551774299\n17340366\tRed Ochre\tCheck with carrier\t-31.478602007000003\t152.872635008\nAYCA-SJ3BD\tThe Village at Wellard\tReady for service\t-32.2738274722911\t115.824519064651\nAYCA-E2RAD\tRees Road, Brookfield\tReady for service\t-37.7097882370117\t144.556781497763\n10113\tBaldivis-Tuart Ridge\tReady for service\t-32.339206464431314\t115.81399261951447\nAYCA-KYW9J\tEstella\tReady for service\t-35.0802781835745\t147.351224224319\n10509\tLakelands\tReady for service\t-32.469058142569\t115.778067111969\nAYAA-G2694\tThe Ponds\tReady for service\t-33.7037820097858\t150.906557791334\nAYCA-10NFWS\tTwin Waters Estate\tReady for service\t-34.9143320000157\t150.614387999986\nAYCA-PCUQ6\tJohnston Stage 2\tReady for service\t-12.4880008665144\t131.008389200094\nAYCA-15R7EA\tByford West\tReady for service\t-32.2256277021986\t115.976886020093\nAYCA-11QH4G\tThornton East Estate\tReady for service\t-32.7652340000161\t151.649705999999\nAYAA-G2EO2\tEagle Rise Estate\tReady for service\t-27.4682997975088\t152.562973981554\nAYCA-KVTM7\tGracemere Greens Estate\tReady for service\t-23.4647783600981\t150.467308434216\n10295\tDawesville-Port Bouvard South\tReady for service\t-32.61153146605253\t115.63187062740326\n156\tGrand Central Shopping Centre\tReady for service\t-27.5603446110652\t151.94767092229293\n10309\tDawesville-Dawesville Ridge\tReady for service\t-32.62408349325638\t115.63877463340759\nAYCA-ES8DH\tHillTop (Bennis)\tReady for service\t-34.4376222076966\t150.848479023084\nAYCA-MNFP2\tBrookford\tContracted\t-38.1144916738184\t145.314933876048\nAYCA-YGR8M\tLearmonth Street Subdivision\tReady for service\t-37.5588375241757\t143.810931456638\n17376001\tSpringview Estate\tCheck with carrier\t-37.8073679985\t140.750435008\nON-V-CNL-FUR\tFurlong Road\tReady for service\t-37.75588456672174\t144.79012191295624\n17324603\tMoonee Ridge Estate\tCheck with carrier\t-30.208320005\t153.15106896\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_727122178",
+ "id": "20220727-124935_315021071",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:10+0000",
+ "dateFinished": "2022-08-16T04:47:10+0000",
+ "status": "FINISHED"
+ },
+ {
+ "text": "%md\n# K-Nearest Neighbors ",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "language": "markdown",
+ "editOnDblClick": true
+ },
+ "editorMode": "ace/mode/markdown",
+ "colWidth": 12.0,
+ "editorHide": true,
+ "fontSize": 9.0,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "HTML",
+ "data": "\u003ch1\u003eK-Nearest Neighbors\u003c/h1\u003e\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_-1194283996",
+ "id": "20220727-124935_729546504",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:12+0000",
+ "dateFinished": "2022-08-16T04:47:12+0000",
+ "status": "FINISHED"
+ },
+ {
+ "text": "%md\n## Ball Tree",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "language": "markdown",
+ "editOnDblClick": true
+ },
+ "editorMode": "ace/mode/markdown",
+ "colWidth": 12.0,
+ "editorHide": true,
+ "fontSize": 9.0,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "HTML",
+ "data": "\u003ch2\u003eBall Tree\u003c/h2\u003e\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_-332849346",
+ "id": "20220727-124935_1691853850",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:14+0000",
+ "dateFinished": "2022-08-16T04:47:14+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Import Libraries",
+ "text": "%python\nfrom sklearn.neighbors import BallTree",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": []
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_1006548902",
+ "id": "20220727-124935_1083009312",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:16+0000",
+ "dateFinished": "2022-08-16T04:47:16+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Making a copy of Existed and New development sites",
+ "text": "%python\nSITE_LOCATION \u003d site_df.copy()\nNEW_SITE_LOCATION \u003d new_site_df.copy()",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": []
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_835057010",
+ "id": "20220727-124935_2011071884",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:18+0000",
+ "dateFinished": "2022-08-16T04:47:18+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Convert Lat Long degree into radeon",
+ "text": "%python\nfor column in SITE_LOCATION[[\"LATITUDE\", \"LONGITUDE\"]]:\n rad \u003d np.deg2rad(SITE_LOCATION[column].values)\n SITE_LOCATION[f\u0027{column}_rad\u0027] \u003d rad\n \nfor column in NEW_SITE_LOCATION[[\"LATITUDE\", \"LONGITUDE\"]]:\n rad \u003d np.deg2rad(NEW_SITE_LOCATION[column].values)\n NEW_SITE_LOCATION[f\u0027{column}_rad\u0027] \u003d rad",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": []
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_354159613",
+ "id": "20220727-124935_61450176",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:20+0000",
+ "dateFinished": "2022-08-16T04:47:20+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Make a Ball tree of existing Site location and query against new development sites",
+ "text": "%python\nball \u003d BallTree(SITE_LOCATION[[\"LATITUDE_rad\", \"LONGITUDE_rad\"]].values, metric\u003d\u0027haversine\u0027)\n\n\nneighbours \u003d 5\n\n\ndistances, indices \u003d ball.query(NEW_SITE_LOCATION[[\"LATITUDE_rad\", \"LONGITUDE_rad\"]].values, k \u003d neighbours)\n# indices\u003d indices[:,1:]\n# distances \u003d distances[:,1:]",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": []
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_-1320898961",
+ "id": "20220727-124935_1510417627",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:22+0000",
+ "dateFinished": "2022-08-16T04:47:26+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Indexes of Nearest neighbors from each New development site",
+ "text": "%python\nindices",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "language": "sql",
+ "editOnDblClick": false
+ },
+ "colWidth": 12.0,
+ "editorMode": "ace/mode/undefined",
+ "fontSize": 9.0,
+ "title": true,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TEXT",
+ "data": "array([[ 26769, 22640, 55298, 103389, 26767],\n [ 86996, 88088, 72862, 100829, 27200],\n [ 85447, 97143, 15905, 99082, 1640],\n ...,\n [ 68736, 23217, 15851, 8438, 14466],\n [ 2165, 49853, 2173, 2166, 89537],\n [ 90697, 84446, 88813, 49332, 25920]])\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1659093920075_356917752",
+ "id": "paragraph_1659093920075_356917752",
+ "dateCreated": "2022-07-29T11:25:20+0000",
+ "dateStarted": "2022-08-16T04:47:28+0000",
+ "dateFinished": "2022-08-16T04:47:28+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Distance of Nearest neighbors from each New development site",
+ "text": "%python\ndistances",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TEXT",
+ "data": "array([[2.43050649e-04, 2.44272206e-04, 2.44965646e-04, 2.45138568e-04,\n 2.79959779e-04],\n [5.98851738e-05, 6.10984600e-05, 6.32726787e-05, 1.08225251e-04,\n 1.26246144e-04],\n [3.82210941e-05, 4.85392100e-05, 1.35502056e-04, 1.46591650e-04,\n 1.59336481e-04],\n ...,\n [3.29009860e-05, 3.38228132e-05, 3.47988764e-05, 3.48916302e-05,\n 3.81969294e-05],\n [3.74407421e-06, 1.09350787e-05, 1.45306346e-05, 1.69348354e-05,\n 2.08765497e-05],\n [3.03999457e-06, 6.28960715e-06, 7.33324976e-06, 1.09365265e-05,\n 1.20871642e-05]])\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_-106938633",
+ "id": "20220727-124935_1902674642",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:30+0000",
+ "dateFinished": "2022-08-16T04:47:30+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Convert distance value to Kilometers",
+ "text": "%python\ndistances \u003d distances*6371\ndistances",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TEXT",
+ "data": "array([[1.54847568, 1.55625823, 1.56067613, 1.56177781, 1.78362375],\n [0.38152844, 0.38925829, 0.40311024, 0.68950307, 0.80431418],\n [0.24350659, 0.30924331, 0.8632836 , 0.9339354 , 1.01513272],\n ...,\n [0.20961218, 0.21548514, 0.22170364, 0.22229458, 0.24335264],\n [0.0238535 , 0.06966739, 0.09257467, 0.10789184, 0.1330045 ],\n [0.01936781, 0.04007109, 0.04672013, 0.06967661, 0.07700732]])\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_1245476567",
+ "id": "20220727-124935_1593995021",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:32+0000",
+ "dateFinished": "2022-08-16T04:47:32+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Calculate Total cost and Total Revenue of New sites based on its Nearest neighbors ",
+ "text": "%python\ndef Predict_Total_Cost_Revenue(indices, SITE_LOCATION, neighbours):\n \n neighbour_list \u003d [SITE_LOCATION.iloc[idx] for idx in indices]\n predicted_cost \u003d [sum(i[\u0027COST\u0027])/(neighbours) for i in neighbour_list]\n predicted_revenue \u003d [sum(i[\u0027REVENUE\u0027])/(neighbours) for i in neighbour_list]\n return predicted_cost, predicted_revenue, neighbour_list\n\n\nY1, Y2, neighbour_list \u003d Predict_Total_Cost_Revenue(indices, SITE_LOCATION, neighbours)\nnew_site_df[\u0027TOTAL_COST\u0027] \u003d Y1\nnew_site_df[\u0027TOTAL_REVENUE\u0027] \u003d Y2\nz.show(new_site_df)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {
+ "0": {
+ "graph": {
+ "mode": "table",
+ "height": 300.0,
+ "optionOpen": false,
+ "setting": {
+ "table": {
+ "tableGridState": {},
+ "tableColumnTypeState": {
+ "names": {
+ "LOC_UID": "number",
+ "DEVELOPMENT_NAME": "string",
+ "STATUS": "string",
+ "LATITUDE": "number",
+ "LONGITUDE": "number",
+ "TOTAL_COST": "number"
+ },
+ "updated": false
+ },
+ "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
+ "tableOptionValue": {
+ "useFilter": false,
+ "showPagination": false,
+ "showAggregationFooter": false
+ },
+ "updated": false,
+ "initialized": false
+ }
+ },
+ "commonSetting": {}
+ }
+ },
+ "1": {
+ "graph": {
+ "mode": "table",
+ "height": 300.0,
+ "optionOpen": false,
+ "setting": {
+ "table": {
+ "tableGridState": {},
+ "tableColumnTypeState": {
+ "names": {
+ "DEVELOPMENT_ROLLOUT_ID": "number",
+ "LOC_UID": "number",
+ "DEVELOPMENT_NAME": "string",
+ "STATUS": "string",
+ "LATITUDE": "number",
+ "LONGITUDE": "number",
+ "TOTAL_COST": "number",
+ "TOTAL_REVENUE": "number"
+ },
+ "updated": false
+ },
+ "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
+ "tableOptionValue": {
+ "useFilter": false,
+ "showPagination": false,
+ "showAggregationFooter": false
+ },
+ "updated": false,
+ "initialized": false
+ }
+ },
+ "commonSetting": {}
+ }
+ }
+ },
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TABLE",
+ "data": "LOC_UID\tDEVELOPMENT_NAME\tSTATUS\tLATITUDE\tLONGITUDE\tTOTAL_COST\tTOTAL_REVENUE\n8\tMandalay\tReady for service\t-37.46798\t144.9582\t18440.0\t27444.2\n23\tBrighton\tReady for service\t-31.65684\t115.70471\t19166.0\t23435.4\n119\tArcadia\tReady for service\t-38.07084494642178\t145.43561612126868\t16998.8\t23317.4\n37\tSpringfield Central\tReady for service\t-27.682974884308496\t152.91246017602205\t26901.8\t22150.6\n35\tYarrabilba\tReady for service\t-27.797998206\t153.101112401\t19592.0\t22519.6\n63\tElliot Springs\tReady for service\t-19.401424360582585\t146.86272523475841\t17163.6\t22134.4\n73\tAlkimos Beach\tReady for service\t-31.603789876\t115.681571085\t17232.8\t23476.4\n274\tAlkimos Vista\tReady for service\t-31.60329949166057\t115.6701798417717\t16931.6\t23548.8\n66\tCalderwood Valley\tReady for service\t-34.55546994973096\t150.75436137069624\t19298.2\t23977.4\n263\tEynesbury\tUnder construction\t-37.7910746733703\t144.5355847930891\t16763.8\t27185.6\n9\tOran Park\tReady for service\t-33.99488\t150.72662\t17574.2\t24392.4\n133\tSpringfield Rise\tReady for service\t-27.695522398191628\t152.8959551906582\t25843.2\t25099.8\n17325842\tPart Section 4574 Goode Road Subdivision\tCheck with carrier\t-12.6280940325\t131.136419168\t16962.6\t23033.2\n54\tAtherstone\tReady for service\t-37.70794\t144.58145\t26412.6\t26500.8\n307\tSanctuary Cove\tUnder construction\t-27.869021570119873\t153.3576214596788\t15030.4\t24972.0\n75\tHarpley\tReady for service\t-37.912572931\t144.625651148\t14821.4\t22920.6\n137\tWestbrook\tReady for service\t-37.834372936889345\t144.6912409809133\t22139.2\t25734.6\n28\tJordan Springs\tReady for service\t-33.72444837965098\t150.7529925477441\t19371.6\t29354.0\n40\tThe Hermitage\tReady for service\t-33.999267672\t150.782646178\t20850.6\t25651.8\n86\tArmstrong Creek\tReady for service\t-38.219653804\t144.337797674\t15169.8\t22975.8\n12\tWaterford County\tReady for service\t-32.76639\t151.63323\t15208.0\t23994.2\n17346815\tKilgariff\tCheck with carrier\t-23.770110992\t133.874777984\t24732.8\t24870.6\nON-Q-CM\tCoomera Waters\tReady for service\t-27.844502585656677\t153.34836959838867\t18700.8\t22525.2\n150\tBrighton - Ridgewood\tReady for service\t-31.668997101580473\t115.72628719298541\t21109.0\t23038.0\n17348681\tJerberra Estate\tCheck with carrier\t-35.0503108155\t150.617052\t21621.2\t27593.6\n112\tTulliallan\tReady for service\t-38.07325420365761\t145.32472823624735\t17375.4\t26864.4\n103\tDelaray\tReady for service\t-38.1054664324721\t145.34451757431034\t19434.0\t22365.2\n177\tMovida\tReady for service\t-31.880915344780455\t116.02860284367573\t17173.4\t24249.8\n17330606\tBenjamin Estate\tCheck with carrier\t-12.5455349705\t131.178166912\t20701.4\t24904.4\n222\tAmber\tReady for service\t-37.5901190955084\t144.9926761245665\t20290.0\t24308.4\n95\tNorth Harbour\tReady for service\t-27.12189866458404\t152.9953961986942\t18420.6\t23135.8\n18\tTrinity\tReady for service\t-31.63125\t115.6923\t19744.4\t21161.2\n6\tGregory Hills\tReady for service\t-34.02859\t150.76602\t21295.2\t26651.4\n48\tWaterford Melton\tReady for service\t-37.71846\t144.56231\t21531.4\t21999.8\n265\tMt. Atkinson\tUnder construction\t-37.74787485827774\t144.68840633391846\t25250.6\t21633.2\n5\tSpringwood\tReady for service\t-34.6028\t138.76311\t18236.8\t27101.2\n169\tThornhill Park\tReady for service\t-37.70310491027097\t144.62098096373794\t21939.8\t23468.6\n220\tBotanical\tReady for service\t-37.56278183676677\t144.8842612361972\t16907.4\t22684.2\n124\tSt. Germain\tUnder construction\t-38.09153958890924\t145.35089050295065\t21396.2\t23230.6\n29\tRopes Crossing\tReady for service\t-33.71985\t150.78022\t20240.0\t24173.6\n302\tMount Gilead\tUnder construction\t-34.11922208553677\t150.79637561797068\t18153.2\t22136.8\n17352628\tWalgrove Stage 3\tCheck with carrier\t-34.879298351\t148.972882176\t22662.8\t21091.6\n36\tEcco Ripley\tReady for service\t-27.690283476217093\t152.792975736585\t19075.4\t22592.8\n85\tSomerfield\tReady for service\t-38.013076203\t145.163782188\t19546.8\t23876.0\n1\tNoosa Waters\tUnder construction\t-26.4021826\t153.0615905\t20748.0\t24423.6\n4\tFernbrooke\tReady for service\t-27.649980000000006\t152.84131999999997\t18604.0\t25718.4\n27\tGrandvue\tReady for service\t-38.06422199480529\t145.42937690489117\t21233.0\t23872.4\n94\tThe Pines\tReady for service\t-23.15793858635379\t150.7088666997396\t20113.4\t23855.8\n30\tMarriott Waters\tReady for service\t-38.077606995\t145.239757322\t23739.8\t26873.6\n199\tVerdant Hill\tUnder construction\t-37.817526995212646\t144.67540298462276\t20902.6\t21606.2\n2\tAlamanda\tReady for service\t-37.91384960992702\t144.74352936555584\t25219.2\t24307.6\n223\tRathdowne\tReady for service\t-37.60362794600752\t144.98134082402584\t19838.6\t24601.8\n166\tGen Fyansford\tReady for service\t-38.13604424640745\t144.3176150775032\t22903.4\t23590.8\n118\tEastland Shopping Centre\tReady for service\t-37.81043931231062\t145.23779297099972\t19536.4\t24682.2\n352\tThe Hermitage (SEKI)\tReady for service\t-34.01737882595945\t150.76310090845152\t18021.6\t23293.2\n180\tBrookhaven\tReady for service\t-27.734339958204625\t153.17479691902153\t16415.2\t22792.4\n262\tBingara Gorge\tUnder construction\t-34.22852815365605\t150.67522570933588\t20444.0\t26780.2\n17350712\tThe Ridge\tCheck with carrier\t-33.541005243\t150.919743232\t18206.0\t22667.6\n226\tFlourish\tUnder construction\t-27.680557076021895\t152.75919471740568\t23720.8\t22118.4\n69\tUniversity Hill\tReady for service\t-37.67879\t145.06972\t18125.8\t24432.6\n17329992\tLots 2-3 Golf Links Road Wundowie\tCheck with carrier\t-31.731990994\t116.361575008\t21014.6\t25748.0\n183\tThe Peninsula\tReady for service\t-27.67932432276379\t152.90982757569347\t24487.2\t23684.2\n17361458\tBlackmore Subdivision\tCheck with carrier\t-12.7275434465\t130.919370368\t22422.2\t23260.4\n17346227\tRidge View Estate\tCheck with carrier\t-12.8086149605\t131.053826176\t21621.6\t23711.4\n3\tBlakes Crossing\tReady for service\t-34.67067\t138.70131\t21298.2\t22845.6\n17317496\tRoche Creek Road Wandoan\tCheck with carrier\t-26.114619951\t149.992989856\t18565.4\t23261.2\n286\tMinta Farm\tUnder construction\t-38.077836007648486\t145.36372219087\t20844.4\t24486.6\n237\tKinbrook\tReady for service\t-37.541772522962034\t144.9586871719261\t17987.0\t24744.8\n42\tChancellor\tReady for service\t-37.68643919487637\t145.0934309349293\t20404.2\t21586.2\n123\tSeaside\tReady for service\t-32.856728450325335\t151.81044193518323\t18557.4\t21511.6\n61\tBerwick Waters\tReady for service\t-38.076523384598765\t145.35105203575029\t19340.2\t24673.4\n17362675\tGolf Links Road Wundowie\tCheck with carrier\t-31.731914996\t116.361575008\t21014.6\t25748.0\n284\tSussex Inlet\tUnder construction\t-35.145242466816605\t150.5873778915308\t20756.0\t24374.4\n82\tModeina\tReady for service\t-37.741855443\t144.749644009\t21125.4\t20958.6\n68\tBrentwood Forest\tReady for service\t-27.642904867\t152.880475846\t15703.6\t23750.8\nON-Q-GC-EcoVill\tEco Village, Currumbin Valley\tReady for service\t-28.176020023448768\t153.42949161770866\t23634.8\t24644.4\n136\tJindee\tReady for service\t-31.645613986187424\t115.69413457871279\t17346.8\t23220.0\n102\tAlira\tReady for service\t-38.04436956469803\t145.32106433870212\t17575.8\t25286.0\n7\tLightsview\tReady for service\t-34.85796\t138.63601\t22268.6\t24199.6\nON-V-LSP\tLakeside, Pakenham\tReady for service\t-38.072927\t145.435528\t16998.8\t23317.4\n17324634\tDrivers Run\tCheck with carrier\t-41.432627961499996\t147.21321888\t21854.8\t23505.2\n17316139\tPort Hedland International Airport Precinct 3\tCheck with carrier\t-20.3850569715\t118.610489152\t22979.4\t24308.6\n140\tGreenlea\tReady for service\t-32.29440226891333\t115.8279660797097\t19514.8\t23025.6\n17348174\tCaviar Drive\tCheck with carrier\t-26.387840605\t146.298855616\t19610.4\t24114.0\n313\tCanopy\tUnder construction\t-38.11076284000009\t145.25756294999746\t21336.0\t23611.4\nAYAA-J6EL5\tGrantham Rebuild Project\tReady for service\t-27.5642384987419\t152.189940289936\t17167.2\t24050.0\n47\tMaplewood\tReady for service\t-37.714\t144.56265\t18429.0\t22839.0\n17329519\tMcMahon Road North Dandalup\tCheck with carrier\t-32.503848031000004\t115.930991872\t21394.2\t22223.8\n32\tWoodlands\tReady for service\t-27.72047\t153.15887\t18573.4\t23098.2\nAYAA-GBGC1\tKrystal Park Estate\tUnder construction\t-33.9119984699961\t120.13371719996\t17520.4\t23572.2\n17347518\tRiver Bend\tCheck with carrier\t-37.800278003\t147.737944096\t20888.2\t21386.6\n238\tExford Waters\tUnder construction\t-37.72870832579734\t144.57431589126315\t22623.8\t23216.4\n224\tTrue North\tUnder construction\t-37.61704689321036\t144.91319690701724\t15787.2\t25520.8\n348\tDonnybrae\tUnder construction\t-37.538066721261295\t144.9750416114666\t17762.8\t23575.8\n45\tGreenvale Gardens\tReady for service\t-37.62173695362797\t144.88392554244993\t20883.8\t24136.8\n55\tCraigieburn\tReady for service\t-37.59183713555152\t144.91833857808493\t21312.2\t24012.0\n46\tCurlewis Park\tReady for service\t-38.17030866\t144.552845283\t17598.8\t23743.6\n300\tRidgeview\tReady for service\t-27.180970349691385\t152.92398963929068\t20108.2\t25050.8\n17362862\tGillkrest\tCheck with carrier\t-33.508577629\t149.187270976\t24367.0\t21610.0\n53\tAspire\tReady for service\t-37.7071699681171\t144.72471421132394\t18504.0\t23275.0\n168\tSunbury Fields\tReady for service\t-37.55414704520112\t144.72058211325393\t23735.0\t23150.8\n3\tGateway Business Park\tUnder construction\t-23.16892639545118\t150.6975458127288\t16901.0\t22294.4\n17197764\tHeritage Hills \tCheck with carrier\t-33.2903079875\t115.834854944\t17927.2\t25109.0\n25\tCasiana Grove\tReady for service\t-38.117325487\t145.241297532\t20422.6\t24134.0\n17345766\tAvon Ridge\tCheck with carrier\t-31.750261002000002\t116.094329984\t22046.0\t25918.4\n192\tAlbright\tReady for service\t-37.82327629224027\t144.72443376542194\t23441.2\t26915.2\n49\tPasadena\tReady for service\t-38.1199733\t145.326901918\t19454.2\t20175.2\n187\tQuay 2\tReady for service\t-38.30801646041315\t144.32025705337773\t18779.0\t24291.4\n161\tAbiwood 660\tReady for service\t-38.10452062882804\t145.33696983813107\t20148.8\t23052.0\n17383368\tHumewood Pl Luddenham\tCheck with carrier\t-33.848964993500005\t150.755635008\t16858.6\t21729.8\n10\tParkBridge\tReady for service\t-33.91103\t150.83601\t18915.8\t25249.8\n250\tAquarevo\tUnder construction\t-38.07126647363257\t145.24955213212104\t25432.0\t25333.6\n17376685\tHarold Circuit\tCheck with carrier\t-31.080961009000003\t152.890432\t19508.4\t25941.2\n70\tCentral Hills\tReady for service\t-34.02411\t150.75842\t18021.6\t23293.2\n60\tStoneleigh\tReady for service\t-27.709207521\t153.116339917\t16674.8\t25184.4\n326\tMambourin\tUnder construction\t-37.89016156795095\t144.59766150734774\t16419.0\t23826.0\n134\tBrookwater\tReady for service\t-27.658654038139588\t152.90161062834122\t18949.2\t24369.4\n167\tLife\tReady for service\t-37.90772667655167\t144.74404923692424\t19045.2\t25708.6\n308\tEllarook\tUnder construction\t-37.81174599477853\t144.72281371116424\t22607.0\t28104.2\nAYAA-H5USB\tGap Ridge Industrial Area\tReady for service\t-20.7372019200672\t116.765896746965\t19990.2\t25246.0\n17291731\tFishermans Rd\tCheck with carrier\t-33.4777957195\t115.577883712\t22181.2\t24283.2\n21\tEvergreen Waters\tReady for service\t-36.71591\t144.2837\t19934.6\t22542.0\n255\tRiverside at Tea Gardens\tContracted\t-32.64457220383459\t152.14687858579424\t20615.4\t24692.6\n17339141\tSwan Bay Estate\tCheck with carrier\t-41.282250026999996\t147.034243072\t23226.6\t22963.4\n17271033\tMarshmead\tCheck with carrier\t-31.0154570045\t150.223744992\t18726.8\t22401.8\n342\tWestwood\tUnder construction\t-37.69940908900018\t144.71112482498938\t18050.2\t25197.8\n17314584\tFig Tree Fields Estate\tCheck with carrier\t-28.647101971\t153.56134512\t20562.0\t24312.4\n17204078\tEurama Estate\tCheck with carrier\t-33.7120599615\t150.53916096\t21639.0\t26746.0\n26\tJackson View\tReady for service\t-38.1263\t145.85796\t17995.8\t23827.2\n162\tClydevale\tReady for service\t-38.09632791448807\t145.33187213534754\t20148.8\t23052.0\n210\tMeridian\tReady for service\t-38.09078808023383\t145.34457658290762\t18222.2\t22923.4\n297\tThe Orchard\tUnder construction\t-37.816153962518605\t144.65684209824462\t22408.4\t23075.4\n10514\tMaddington\tReady for service\t-32.02974797464645\t116.00603342056274\t22289.4\t23730.2\n11\tTea Trees\tReady for service\t-27.6976693876262\t152.90857676178814\t24174.8\t23805.6\n44\tGrand Lakes\tReady for service\t-38.025754875\t144.38463099\t15918.8\t24176.6\n56\tTrillium\tReady for service\t-37.563836207\t144.890532129\t16352.6\t21360.2\n17325360\tOnslow Aerodome Redevelopment\tCheck with carrier\t-21.6636330045\t115.115901984\t20929.6\t24284.0\n164\tAurora\tReady for service\t-37.606178773039986\t145.0053790664693\t23503.0\t22860.4\n17332589\tCalula Estate\tCheck with carrier\t-37.804131997\t140.757626176\t17124.4\t21674.0\n67\tTannum Blue\tReady for service\t-23.960568557\t151.36700841\t20637.8\t26156.6\n264\tWarralily Grange\tUnder construction\t-38.228853370218076\t144.32429109570816\t16503.0\t25169.8\n17347475\t324 Tea Tree Rd Brighton - Stages 3\u00264\tCheck with carrier\t-42.6948000075\t147.283779008\t17065.4\t25494.8\nAYCA-NZGFP\tLampada\tReady for service\t-31.1369920275562\t150.95517748943\t18335.4\t23286.4\nAYCA-G1IS9\tCasey 3 Estate\tReady for service\t-35.1717411112112\t149.088880068466\t19658.2\t23213.8\n243\tSt. Claire\tReady for service\t-37.60823491943989\t145.02730918279434\t23503.0\t22860.4\nAYCA-1D96NK\tCrace\tReady for service\t-35.2026701433085\t149.112121260484\t18864.2\t24519.6\n17352159\tGermantown Road Two Wells\tCheck with carrier\t-34.6144390125\t138.556290976\t17189.8\t20886.8\n312\tThe Vale\tUnder construction\t-34.47484502892406\t150.76265755179605\t22038.6\t27233.4\n17316815\tLOT 224 ORTON ROAD OAKFORD\tCheck with carrier\t-32.228281984\t115.953296032\t23318.8\t24246.6\n71\tMayfield\tReady for service\t-38.125209668\t145.289746189\t23298.2\t21822.0\n185\tAgar Industrial Park\tReady for service\t-37.79845362681997\t144.75201086321994\t21841.2\t22499.2\n196\tKaduna Park \tReady for service\t-38.083378128834276\t145.428175673462\t16354.8\t22748.0\n78\tZeally Sands\tReady for service\t-38.309154864\t144.33959113\t16550.4\t25385.0\n43\tCallaway Park\tReady for service\t-37.79528303\t144.789941126\t17490.2\t25769.6\nAYCA-G7P1X\tGap Ridge Industrial Area\tReady for service\t-20.7597367757634\t116.767197579578\t21575.6\t26668.6\n322\tAureus\tUnder construction\t-28.839575834611363\t153.60090183043093\t17440.4\t24088.6\n17334879\tSt Eyre Estate\tCheck with carrier\t-32.5057349755\t137.736468\t23282.8\t25355.8\nON-V-LSP-WTN7\tWorthington Estate\tReady for service\t-38.056759116436055\t145.44930696487427\t18613.2\t23655.8\n17344902\tFishermans Road Stratham Park\tCheck with carrier\t-33.479493039\t115.580933984\t22181.2\t24283.2\n287\tPavilion\tReady for service\t-38.121935435108206\t145.317223415383\t21487.4\t19956.2\n17326687\tLot 9601 Maddern Road Chittering WA\tCheck with carrier\t-31.522233961\t116.068223168\t21870.6\t24671.2\n17307174\tRendezvous Road Vasse\tCheck with carrier\t-33.6766400095\t115.276300928\t16431.4\t24759.0\n16\tPanorama\tReady for service\t-33.965203598332444\t150.89165216421515\t20260.0\t24497.8\n17266708\tEdenvale \tCheck with carrier\t-27.8746859935\t152.966187008\t17365.2\t24273.2\n17339941\tSherwin Ridge\tCheck with carrier\t-35.0642670305\t149.65457184\t18667.4\t21106.0\n248\tLara Industrial Park\tUnder construction\t-38.048203343505\t144.3582585906956\t18124.2\t23867.2\n171\tWaterside\tReady for service\t-38.077916796186784\t145.33521009756245\t18274.4\t27182.2\n254\tWeemala at the Lake\tContracted\t-32.953487781499845\t151.62784968375465\t21277.4\t25920.6\n52\tBaywater\tReady for service\t-38.157866291\t144.549435001\t20779.4\t20996.2\n17338135\tDavid Road\tCheck with carrier\t-28.6656509775\t114.637218112\t18123.4\t25630.0\nAYAA-HJ45E\tLatitude 32 Flinders Precinct\tReady for service\t-32.203130500848\t115.789668200234\t15454.0\t25494.0\n213\tLara Views \tReady for service\t-38.03296209351632\t144.38508068086276\t15512.8\t23869.6\n17353506\tGrandevue Estate\tCheck with carrier\t-38.1822589915\t147.100400992\t18188.4\t24437.8\n17347514\tHumpty Doo Industrial Park\tCheck with carrier\t-12.5915301515\t131.095235712\t20028.2\t24032.4\nON-V-LSP-DEV\tLakeside, Devonia\tReady for service\t-38.07179481677172\t145.43976366519928\t16998.8\t23317.4\n10241\tDalyellup\tReady for service\t-33.39055091775127\t115.61975240707397\t21921.6\t26404.4\nAYCA-1DER92\tLots 9004 Eastlyn Dr Deepdale\tReady for service\t-28.7938689999871\t114.67999499999\t20610.0\t22575.8\n17349902\tLot 1301 Gull Rock Road Albany WA\tCheck with carrier\t-34.948832044\t117.999468\t19223.6\t22713.0\n186\tSanctuary\tReady for service\t-38.2314381624407\t144.34730645652323\t15609.6\t23813.8\n17123438\tSouthern Cross - Stage 1 (52L)\tCheck with carrier\t-27.214454996500002\t151.272823008\t21934.8\t22321.0\n158\tRobina Town Centre\tReady for service\t-28.07890531166396\t153.38309799194224\t16329.4\t27231.4\nAYAA-H0UT9\tWedgefield\tReady for service\t-20.3799983349327\t118.594521325414\t22667.6\t24820.2\nAYAA-FRYDK\tTeviot Downs Estate\tReady for service\t-27.7504397198131\t152.951579273602\t16448.2\t21066.0\n189\tAshbury\tReady for service\t-38.22122706468388\t144.35133218646388\t15579.4\t24108.6\n17340096\tMundoolun Estate\tCheck with carrier\t-27.8594579775\t153.087716896\t21088.8\t22001.6\n181\tThe Surrounds\tReady for service\t-27.928418734504167\t153.33939444392914\t20220.6\t23377.2\n17316655\tForest Hills\tCheck with carrier\t-31.032246957\t150.928926112\t19588.6\t23922.8\n17219184\tEdenvale\tCheck with carrier\t-27.8724570025\t152.974415008\t17496.8\t23088.0\n17322026\tTanby Heights Stage 2\tCheck with carrier\t-23.2286249645\t150.75956592\t24819.6\t22288.2\n17325176\tFletcher Industrial Stage 1\tCheck with carrier\t-32.213367987\t148.63352688\t18382.8\t27862.0\n17328781\tAvoca Dell Stage 1\tCheck with carrier\t-35.092629991\t139.316762176\t22713.4\t23555.0\n17051058\tLot 17 Harbour Rd\tCheck with carrier\t-33.844219022000004\t121.883787008\t23863.4\t21586.0\n17337131\tTimbertop Estate\tCheck with carrier\t-32.633252016\t151.70961312\t22937.4\t23638.8\n17333083\tWaterside Pastures\tCheck with carrier\t-32.7579690075\t151.828084992\t19992.6\t26454.6\nAYCA-1ORQMM\tRIVERLAND GARDENS\tContracted\t-35.9649560000272\t146.014765\t20637.2\t23451.6\nAYCA-IQWLC\tJimboomba Woods\tReady for service\t-27.8661709999843\t153.059876\t21799.4\t24895.6\n17331968\tRavendene Estate\tCheck with carrier\t-38.041282535\t145.593441376\t19547.6\t25945.4\nAYCA-1DEL05\tTeviot Downs Estate\tReady for service\t-27.7470854999827\t152.9503524\t17323.8\t21673.8\n304\tTeneriffe\tUnder construction\t-34.7266547867358\t149.71105729101944\t18164.0\t24295.0\n17355158\tMulcahys Road\tCheck with carrier\t-37.389870007\t144.305286016\t21510.8\t23841.6\nAYCA-G3LBH\tParklands\tReady for service\t-24.9399487796629\t152.288441837448\t17005.6\t22330.6\n38\tCentral Walk\tReady for service\t-27.69738289415636\t152.9088333969901\t24988.2\t23664.4\n170\tWaratah\tReady for service\t-37.5356296673782\t144.90365844136687\t17839.0\t24726.0\n17335030\tGlenview Park Estate Stage 1\tCheck with carrier\t-31.453299002\t152.720484128\t23799.0\t23732.6\nAYAA-H5ANY\tFreeway Business Park\tReady for service\t-32.8098597420961\t151.625033944844\t16052.0\t23872.0\nAYCA-1D96QN\tO\u0027Malley\tReady for service\t-35.351972000021\t149.117269000008\t21877.4\t23664.0\nAYCA-EGT1A\tKrystal Park Estate\tContracted\t-33.9109884902099\t120.134017439686\t17520.4\t23572.2\n10542\tMurray-Murray River Country Estate\tReady for service\t-32.607827868144106\t115.8599978685379\t16446.0\t25777.2\n17399839\tGOLDEN VALLEY PLACE\tCheck with carrier\t-26.5433651285\t153.00147056\t13421.6\t24935.6\nAYCA-FWZJ8\tGrantham Rebuild Project\tReady for service\t-27.563568564007\t152.190239281867\t17167.2\t24050.0\n51\tBellaview\tReady for service\t-38.172782464\t144.538409178\t19057.0\t23578.0\nAYCA-ISJ9I\tHarrington Grove\tReady for service\t-34.0211317989616\t150.755048319874\t18021.6\t23293.2\nACNC\tNewcastle\tReady for service\t-32.884942742051216\t151.69733047485352\t20464.0\t25268.2\nAYCA-G07X9\tLot 502 Jane Brook Drive\tContracted\t-31.8562302562125\t116.062230625921\t22036.6\t20917.2\n17350846\tCountry Hills Estate\tCheck with carrier\t-27.568049751500002\t152.590619168\t16035.0\t23906.6\n207\tYarraBend\tReady for service\t-37.78198519686202\t145.02525959964044\t16514.6\t21182.4\n58\tSpires\tReady for service\t-32.30285\t115.80864\t19651.4\t24418.2\n17357158\tHuntington Downs\tCheck with carrier\t-27.922871963000002\t153.28360512\t20267.4\t21354.4\n17325574\tDarling Downs Lot 102 Keenan Street\tCheck with carrier\t-32.1866129725\t116.00267616\t18573.8\t22809.0\n17331436\tSt Andrews - stage 2\tCheck with carrier\t-26.0649970125\t152.565019936\t22475.8\t23703.6\n195\tHighland Views \tReady for service\t-33.807140119426315\t150.68084751128293\t21305.2\t24483.8\n10564\tSecret Harbour\tReady for service\t-32.40690570593458\t115.74870228767395\t18912.6\t20619.4\nAYCA-H18JF\tThe Key Industrial Estate\tReady for service\t-38.0188635264808\t145.18197712273\t21284.4\t26193.4\nACDU\tDurack\tReady for service\t-27.578192809613444\t152.98293471336365\t22314.8\t25563.0\nAYCA-19PQFS\tRedbank Motorway Estate\tContracted\t-27.5852564442896\t152.873819345554\t19008.2\t22288.6\nAYCA-1JBB7K\tThe Fairways\tContracted\t-27.5314779999815\t152.479575\t20008.4\t24708.6\n126\tPark Edge\tReady for service\t-27.693434833927977\t152.91510616302708\t24988.2\t23664.4\n240\tWandana\tContracted\t-38.172482021397926\t144.293338403687\t19491.6\t24467.2\nAYCA-IQRNE\tJimboomba Woods\tReady for service\t-27.8694558108568\t153.02928854703\t17283.6\t25566.2\n17351673\tHighlands Estate\tCheck with carrier\t-37.0380393935\t146.108255776\t19002.2\t24612.2\n17348813\tPaynters Creek Road Rosemount\tCheck with carrier\t-26.6289672555\t153.012338656\t22396.2\t24799.0\n132\tThe Sanctuary\tReady for service\t-27.68292278318855\t152.91255538226966\t26901.8\t22150.6\nAYCA-MAELG\tMuirhead\tReady for service\t-12.3616549362567\t130.897783136586\t21417.2\t22004.0\n114\tWest\tReady for service\t-34.877605383583415\t138.4939632858763\t22421.6\t27485.4\n251\tSequana\tReady for service\t-27.715761863642843\t153.11554227829404\t17433.6\t23245.2\n244\tAscot Grove\tReady for service\t-34.015506343998354\t150.75497303962794\t18021.6\t23293.2\n17271426\tWoodscott\tCheck with carrier\t-34.4601080165\t147.523613056\t27267.4\t23888.0\n270\tWoodgrove Shopping Centre\tReady for service\t-37.68522284633658\t144.5592192390933\t19407.4\t22827.0\n13\tLochiel Park\tReady for service\t-34.87687\t138.65406\t13956.0\t24356.8\n17354065\tLinton Hill\tCheck with carrier\t-27.466329999\t151.827287008\t22133.6\t25616.6\n285\tSummit Business Park\tUnder construction\t-38.09425213318867\t145.34356270786907\t17875.0\t25007.6\nAYCA-RI32N\tDeepdale North\tReady for service\t-28.7710969532846\t114.671990385878\t18037.8\t22544.2\n17349923\tLot 50 and 51 Link Road ALbany\tCheck with carrier\t-34.9695262735\t117.8126136\t22546.2\t25408.4\n17339915\tSamford Skies\tCheck with carrier\t-27.386634959000002\t152.835657856\t24394.8\t23240.6\n17147547\tSummit View\tCheck with carrier\t-26.512940972\t151.867271872\t21032.6\t26598.2\nAYCA-1WH7YL\tL9001-9003 Wungong Sth Rd Darling Downs\tContracted\t-32.1933860000136\t116.001872\t18817.2\t23470.8\n17312227\tTrilla Hills Estate\tCheck with carrier\t-21.298979967\t149.22698688\t18689.4\t24292.4\nAYCA-10UTGP\tJimboomba Woods\tReady for service\t-27.8623843557346\t153.055174379743\t21799.4\t24895.6\n268\tBurwood Brickworks\tUnder construction\t-37.851994880682255\t145.13495121956865\t17640.0\t23319.2\n17238926\tLane Court Mt Warren Park\tCheck with carrier\t-27.7269029985\t153.198027008\t21441.0\t21279.8\n17338860\tBlind Creek Estate Stage 1\u00262\tCheck with carrier\t-37.521863992\t143.776407968\t21490.4\t25234.4\n17344475\tQuilpie Industrial Estate\tCheck with carrier\t-26.6136479975\t144.249904096\t15961.0\t22922.0\n17320060\tWindella Ridge P/L\tCheck with carrier\t-32.697926018000004\t151.473242176\t16873.6\t26637.2\n17358725\tRusty Lane Branxton\tCheck with carrier\t-32.638311988\t151.382246048\t17562.6\t23902.8\n62\tJindalee Beachside\tReady for service\t-31.649101558193706\t115.68944719351767\t19663.8\t27023.0\nAYAA-H8QSJ\tMinto Renewal\tReady for service\t-34.0238418542272\t150.856926410431\t21151.0\t22837.2\n204\tCollege Green\tReady for service\t-38.08048877494351\t145.36312792316772\t20844.4\t24486.6\nAYAA-FPSKZ\tGovernors Hill\tReady for service\t-35.1389166799533\t147.425006282888\t23871.6\t22712.8\n17362563\tMurray Banks\tCheck with carrier\t-36.092428007\t144.725100992\t18737.6\t27236.2\n190\tHighfields\tReady for service\t-27.061379929370613\t153.16209955950143\t19261.0\t21643.2\n57000359\t(RAPA) Berne Court\tCheck with carrier\t-41.355567007\t147.001377952\t21125.0\t24516.4\nAYAA-F6JJR\tGoogong Township\tReady for service\t-35.4154091807694\t149.23348216701\t20986.2\t26356.0\nAYCA-PXLYW\tParamount Park\tReady for service\t-23.271600332771\t150.514225099238\t20816.2\t24876.0\n10380\tHalls Head-Port Mandurah\tReady for service\t-32.53875201575307\t115.70585131645203\t21712.6\t21851.8\n17335365\tMundoolun\tCheck with carrier\t-27.860803020000002\t153.076204096\t22925.2\t23763.2\nON-Q-VT\tVue Terraces\tReady for service\t-28.068610116288863\t153.38100671768188\t17184.8\t25863.6\nAYCA-F193I\tEdmondson Park South P1\tReady for service\t-33.9861716630198\t150.853549054355\t19782.2\t24983.2\nAYCA-WDIWW\tMuirhead\tReady for service\t-12.3585879914992\t130.89374145864\t20989.8\t22419.6\nAYCA-19Q49D\tLot 10,50 \u0026 700 Ocean Reef Gnangara\tReady for service\t-31.7917864249926\t115.856744892211\t18206.4\t24366.0\n327\tMadison Rise\tUnder construction\t-33.23597707399918\t151.46842898041183\t13047.2\t25975.6\nAYCA-1FTKU1\tMolonglo Valley - Coombs Stage 2\tReady for service\t-35.3176259170474\t149.042577119006\t18192.8\t26874.4\nAYAA-IWD7J\tRadford Park\tReady for service\t-32.6450822595972\t151.355551754519\t20353.6\t24302.8\n10000\tAveley-Vale\tReady for service\t-31.791797076764176\t115.98894238471985\t24358.4\t23175.8\n10750\tPagewood Green\tReady for service\t-33.943452567717465\t151.22275114059448\t17879.8\t27278.8\n6\tNLV Bridgewater\tReady for service\t-32.56081186922684\t115.69084383614063\t18390.6\t20828.0\nAYCA-OOFYN\tCasuarina Town Centre\tReady for service\t-28.2958512505823\t153.570424118964\t15515.2\t22968.0\n17332860\tPalm Lake Resort\tCheck with carrier\t-32.867030966\t151.790780896\t19174.4\t21206.4\n292\tNortham Eco Lifestyle Village\tReady for service\t-31.661646746555668\t116.65020329840772\t17236.2\t23753.8\nAYCA-1MO0PE\tParaweena Drive\tUnder construction\t-37.811130011173\t144.75090726482\t26770.0\t22262.8\n17341715\tCanobolas Meadows\tCheck with carrier\t-33.268190294\t149.0541512\t19341.4\t25074.8\nAYAA-G1FKH\tRiemore Downs Estate\tReady for service\t-27.8886882702533\t153.115619080583\t21179.4\t23515.6\nAYAA-G3N4A\tSix Mile Creek Village\tUnder construction\t-27.6355815192483\t152.848832768594\t20766.8\t24031.6\n17354521\tDandenong LOGIS\tCheck with carrier\t-38.005410961\t145.192518016\t20547.4\t25896.0\n10233\tDalyellup\tReady for service\t-33.39171543951737\t115.62436580657959\t21921.6\t26404.4\nAYCA-1O7JIC\tSpring Mountain\tContracted\t-27.7311679999831\t152.906283\t22274.0\t23160.8\n17319634\tWaldara Park Estate\tCheck with carrier\t-36.334991978\t146.304649088\t20922.2\t23029.2\n17312200\tBERRINBA STAGE 1\tCheck with carrier\t-27.646784993\t153.09164016\t17483.4\t24779.8\n10691\tWannanup-Port Bouvard North\tReady for service\t-32.593080692667876\t115.63935399055481\t22279.6\t22067.4\nAYCA-MUELL\tHarrington Grove\tReady for service\t-34.0254648141925\t150.752128700289\t18346.6\t25025.0\nAYAA-F9DJ9\tMuirhead\tReady for service\t-12.3613535542535\t130.891892926405\t20973.2\t23227.0\nAYCA-NZ9RQ\tGrantham Estate Riverstone\tReady for service\t-33.6574602900158\t150.866171279992\t22177.0\t22707.6\nAYCA-GE6TE\tVoyager Point\tReady for service\t-33.9612904042168\t150.970919147374\t22169.2\t23515.0\n9\tRCA Cardinia Waters\tReady for service\t-38.0794393994041\t145.4930143046206\t22067.0\t24277.2\n179\tGemlife Bribie Island\tReady for service\t-27.061404864414\t153.16211615558882\t19261.0\t21643.2\nAYCA-Q13UU\tLot 502 Jane Brook Drive\tReady for service\t-31.8615610033738\t116.062904454047\t22439.4\t22574.8\nAYCA-1DF126\tMistful Park\tUnder construction\t-34.7264160000054\t149.703161000029\t18034.0\t23985.4\nAYAA-F9C6X\tParamount Park\tReady for service\t-23.275657059569\t150.516972407757\t20816.2\t24876.0\nAYCA-1D18C9\tThe Fairways\tReady for service\t-27.5271879999808\t152.483766\t20759.4\t25389.4\n17337667\tLoc 1017 Redgate Road Witchcliffe\tCheck with carrier\t-34.0241140025\t115.074863008\t23401.8\t22355.6\n10185\tCanningvale-Avenues\tReady for service\t-32.09173541358429\t115.92247389256954\t23640.8\t25763.6\n50\tEncore\tReady for service\t-37.712129506\t144.721116645\t16978.4\t24745.0\n17318655\tNEVERWOODS ESTATE\tCheck with carrier\t-32.0491919755\t152.499962176\t21566.0\t24533.6\nAYCA-1FLSZY\tFrizzo Road, Palmview\tReady for service\t-26.7471129999749\t153.039069\t18663.8\t24901.2\nAYCA-EUUAD\tWindmill Downs\tReady for service\t-31.039191773641\t150.900431984145\t19406.6\t24280.0\n10687\tWannanup-Port Bouvard North\tReady for service\t-32.60023856019557\t115.64025521278381\t20167.2\t22821.0\nAYCA-DGEDI\tAmberton\tReady for service\t-31.5957645503307\t115.665663637788\t22135.4\t22735.0\nAYCA-LQAH1\tLot 511 Kalgan Drive Newman Townsite\tUnder construction\t-23.3608589999371\t119.753393000012\t17015.0\t23401.8\nAYCA-HT2UX\tRidge Road Estate\tReady for service\t-37.5105770100269\t145.140747839996\t20132.8\t23111.6\nAYCA-1J8WWD\tJimboomba Woods\tUnder construction\t-27.8632579999842\t153.046244\t19362.6\t25082.4\n217\tGolden Grove\tUnder construction\t-36.713258816028286\t144.28416154026564\t21168.0\t23475.8\n209\tEden\tReady for service\t-34.01244870032878\t150.7617563462324\t18209.8\t22669.2\nAYCA-1CRLQU\tMoncrieff Residential Estate\tUnder construction\t-35.1564860000211\t149.104790000007\t18817.6\t23359.8\n10234\tDalyellup\tReady for service\t-33.391038213222714\t115.62284231185913\t21921.6\t26404.4\n252\tTonsley Village \tReady for service\t-35.008155671689565\t138.56730763673485\t16018.4\t21840.2\n17320872\tThe Beacons\tCheck with carrier\t-37.777715995\t147.604363936\t19169.6\t25338.8\n10377\tHalls Head-Port Mandurah\tReady for service\t-32.535507592267805\t115.70966005325317\t20200.6\t24562.6\nAYCA-LGXW5\tWedgefield\tContracted\t-20.3827064266398\t118.596070833098\t22667.6\t24820.2\nAYCA-TBR12\tShoal Point Bay Develoment\tContracted\t-21.0044656120105\t149.152767009298\t22300.6\t26647.0\nAYCA-1D96QE\tCasey 4\tReady for service\t-35.1731241190463\t149.095898093007\t20885.8\t22303.0\n235\tWarralily Central\tUnder construction\t-38.23425550957785\t144.36323677063632\t15609.6\t23813.8\n10169\tBurns Beach\tReady for service\t-31.72897567076238\t115.72501301765442\t20257.4\t23419.8\nAYCA-1BC5OS\tHuntlee Stage 1\tUnder construction\t-32.6743620000152\t151.351995999998\t20966.2\t24795.8\n311\tIngenia Hervey Bay\tReady for service\t-25.318376649408144\t152.89279818800648\t17505.8\t23090.6\nAYCA-JR6GE\tMuirhead\tReady for service\t-12.3653714219552\t130.892741370061\t19275.2\t21492.0\nAYCA-DZ1PY\tHoly Spirit Boondall\tReady for service\t-27.3601289999794\t153.061465\t19059.2\t23300.8\nAYCA-GNFE0\tRIVERSTONE RISE\tReady for service\t-23.9689175040552\t151.31856988929\t21259.8\t26661.2\nAYCA-JBQMC\tWishart Business Precinct\tReady for service\t-12.4685142851903\t130.953474865161\t22014.2\t24757.2\nAYCA-1AO4XL\tCloverlea - Chirnside Park\tContracted\t-37.7488860000284\t145.326879999998\t20720.4\t24467.0\n17365410\tWestwood\tCheck with carrier\t-26.9620360015\t152.761562016\t21326.4\t23167.2\nAYCA-1FTKWM\tMolonglo Valley - Coombs Stage 3\tReady for service\t-35.3142289200475\t149.038520189006\t17018.6\t25974.8\n10567\tSecret Harbour\tReady for service\t-32.40169177773249\t115.75070321559906\t19678.0\t20961.4\n10397\tIluka\tReady for service\t-31.73905315673185\t115.72926163673401\t17143.8\t23661.8\n8\tRCA Beleura Village\tReady for service\t-38.224609205304276\t145.0725362142516\t22074.4\t23478.2\n22\tEvergreen Links\tReady for service\t-36.71305\t144.27727\t19775.8\t22248.6\nAYCA-ENWFM\tCoolalinga Sub-Division\tReady for service\t-12.5198168057597\t131.041303845074\t23936.2\t22320.2\n17344624\tMadison Ridge\tCheck with carrier\t-27.0450116095\t152.956953728\t24298.6\t26554.2\n17326045\tAurukun Res Sub-division - stage 2\tCheck with carrier\t-13.365806045\t141.725994848\t15373.4\t24916.8\nAYCA-1BK5IS\tJimboomba Woods\tReady for service\t-27.8666469999842\t153.060515\t21799.4\t24895.6\n10385\tHalls Head-Port Mandurah\tReady for service\t-32.54463498135928\t115.70902973413467\t20871.0\t21765.8\nAYCA-NGQ9B\tBungarribee (Bunya)\tReady for service\t-33.7714202761297\t150.867204897709\t18697.8\t21427.6\n17394228\tGol Gol Heights Lot 78 on DP 756946\tCheck with carrier\t-34.1830270045\t142.233328\t18453.0\t21033.0\n17341371\tLinton Hill Stage 3\tCheck with carrier\t-27.470484988000003\t151.822847168\t23210.6\t26933.2\n10356\tMillbridge\tReady for service\t-33.300927475174035\t115.73048070073128\t15019.0\t22838.8\n17235866\tAcacia Avenue - stages 4to6\tCheck with carrier\t-26.9617699715\t152.954452096\t18853.8\t24391.2\n17367991\tKilgariff Residential Subdivision\tCheck with carrier\t-23.7729379955\t133.875308\t22042.6\t22428.8\nAYCA-J9CE8\tAE2 Ermington\tReady for service\t-33.8208669951457\t151.055244815032\t23957.6\t21494.6\n17341714\tSilverdown Heights\tCheck with carrier\t-33.263683028\t149.060066048\t18813.8\t22927.4\nAYCA-14QOEO\tHarrington Grove\tUnder construction\t-34.0145969382659\t150.734399607064\t19464.6\t23087.0\n10703\tWannanup-Port Bouvard East\tReady for service\t-32.60624084744729\t115.64411759376526\t21401.4\t25564.0\nAYCA-NS3TL\tEttamogah Rise\tReady for service\t-36.0218474363591\t146.976677442572\t19751.4\t25368.0\nAYCA-KDKUW\tVasse Newtown\tReady for service\t-33.6750847083728\t115.242896164382\t21410.4\t23554.2\nAYCA-F8YLR\tFreeway Business Park\tReady for service\t-32.8006781615145\t151.631399631104\t15882.6\t24729.4\nAYAA-GR9JV\tIronbark Ridge\tReady for service\t-32.2977687119396\t150.899503128249\t16287.6\t23451.4\nAYCA-PO3A4\tBerrimah Business Park\tReady for service\t-12.4272906594548\t130.91433759827\t19507.6\t26599.2\nAYAA-F7FJT\tKingsley Drive, Beaudesert\tReady for service\t-27.9947144922874\t153.011802811568\t19795.0\t26645.6\n260\tGlenside\tReady for service\t-34.940416129598376\t138.62478255578358\t18654.4\t23094.2\n10357\tMillbridge\tReady for service\t-33.30724335650221\t115.7363560795784\t13305.2\t24096.8\nPRJ0001049-3A6E2E02\tO\u0027Connell Street\tContracted\t-33.76839194885882\t150.73397789150476\t23437.6\t20701.2\nAYCA-1FA2OY\tThe Grove\tUnder construction\t-28.7839001827515\t114.685670982283\t18662.4\t20361.8\nAYCA-10LG0G\tSpringlake Subdivision, Mt Barker\tContracted\t-35.0928450000204\t138.856486999992\t20215.0\t23817.8\n10348\tEaton-Millbridge\tReady for service\t-33.31223599288549\t115.7294225692749\t16071.2\t24242.0\n17337529\t276 Old North\tCheck with carrier\t-27.061864018\t152.866091168\t21776.8\t26024.2\n10565\tSecret Harbour\tReady for service\t-32.39632446515415\t115.74663698673248\t18652.6\t22901.2\nAYCA-1MI4GK\tMoncrieff Residential Estate\tContracted\t-35.1609006970852\t149.119975532677\t19607.6\t22238.8\n282\tArcadia Group Hidden Valley\tReady for service\t-37.395547376433164\t144.99366317749167\t17682.2\t26559.0\n17325557\tAvenue Hill Stage 1\tCheck with carrier\t-37.517128029\t143.714459872\t22599.0\t25083.4\n17335954\tMalcolm Road Subdivision\tCheck with carrier\t-17.191856979\t145.562276896\t22370.4\t24740.8\n245\tMorphettville Redevelopment\tReady for service\t-34.9861747519862\t138.5437873458612\t16948.2\t25541.2\n17203252\tRedgum Rise Estate\tCheck with carrier\t-37.048975021000004\t146.092817888\t23353.6\t26892.2\n10393\tIluka\tReady for service\t-31.73569532841298\t115.732501745224\t17143.8\t23661.8\nAYCA-FZTQG\tLot 502 Jane Brook Drive\tReady for service\t-31.8620273343564\t116.058612526473\t22258.8\t22303.2\nAYCA-1COQ8Z\tRiver Oaks Estate\tUnder construction\t-27.7696789999834\t153.092011\t19452.2\t21938.2\nAYCA-19ZSPD\tVermont Riverlands\tContracted\t-33.5638770000159\t150.868297999992\t20829.4\t22118.6\n17356820\tAspect\tCheck with carrier\t-27.746267041\t153.138958912\t18459.4\t24199.4\nAYCA-L6RW4\tRiverside Estate\tContracted\t-36.1360260000277\t146.949994\t20487.8\t23717.2\nAYCA-XKC83\tGreenway - 799 Richmond Rd\tUnder construction\t-33.7239020000161\t150.844540999992\t21780.0\t23986.4\n17340077\t5-21 GRAY ST\tCheck with carrier\t-28.145302014000002\t153.42793488\t20104.8\t23483.2\nAYAA-FPQGL\tThe Ponds\tReady for service\t-33.6949818131024\t150.909569357808\t16030.4\t22328.2\nAYCA-1J8WS5\tJimboomba Woods\tReady for service\t-27.8691483307398\t153.042010627221\t20789.8\t27482.2\n10192\tCanningvale-Sanctuary Waters\tReady for service\t-32.09583289039479\t115.92712484300137\t23973.0\t26180.2\nON-V-LSP-WTN\tWorthington Estate\tReady for service\t-38.05896187075398\t145.44869273900986\t18613.2\t23655.8\nAYAA-FPOR9\tThe Fairways\tReady for service\t-27.5456169942859\t152.464248641146\t20518.4\t25462.6\n269\tWatergardens Town Centre\tReady for service\t-37.70288208544553\t144.7762755012373\t23493.0\t24718.4\n17336600\tRiverglen Estate\tCheck with carrier\t-27.4389650025\t152.659110976\t19408.6\t23134.0\nAYCA-1F7EBL\tLampada\tContracted\t-31.1398907133126\t150.954064771498\t18335.4\t23286.4\nAYCA-13X4N6\tCalleya\tReady for service\t-32.1265031928837\t115.874723296591\t20731.8\t27632.6\n10876\tMelrose Park\tContracted\t-33.809225805531725\t151.06601751590676\t21277.2\t24281.6\n88\tLakes Entrance\tReady for service\t-27.684162625000003\t152.919766137\t26086.8\t22307.6\nAYCA-KYG28\tThe Sands\tReady for service\t-23.9898136034058\t151.378798009355\t18884.6\t27012.2\nAYCA-10ILHK\tMarsden Park Precinct\tContracted\t-33.6969017543874\t150.821641697981\t18000.2\t24424.4\nAYCA-1D9BBM\tHarrington Grove\tUnder construction\t-34.0141980000153\t150.719515999989\t18076.2\t24489.8\nAYCA-1J527U\tMuirhead\tContracted\t-12.3530259998886\t130.893439999995\t19123.8\t22961.8\nAYCA-1FTKTT\tMolonglo Valley - Coombs Stage 1\tReady for service\t-35.3229330840435\t149.043426474012\t16881.4\t27189.0\nAYCA-G4D1B\tDeepdale Industrial Estate\tReady for service\t-28.7918229925085\t114.691418008669\t14628.8\t20052.4\nAYCA-DNDK2\tManooka Valley\tReady for service\t-34.0386187385006\t150.775687810547\t21590.4\t24429.8\n17342032\tHighfields Views\tCheck with carrier\t-27.450900814\t151.993666816\t18346.4\t24541.0\n17350580\tBroadview Estate\tCheck with carrier\t-32.626900004\t149.59184\t22096.0\t21108.0\nAYCA-T062O\tGoogong Township\tReady for service\t-35.4157760444998\t149.237467703633\t20986.2\t26356.0\nAYAA-HE3NB\tBroome North\tReady for service\t-17.9224571928365\t122.230466306045\t17453.8\t23815.6\n17248287\tNogoa Rise Estate \tCheck with carrier\t-23.548365996\t148.161332896\t23657.4\t24525.8\n173\tGemstone Waters\tReady for service\t-27.095016408891176\t152.93148641347787\t20166.8\t19742.8\n17296036\tINNOVATION PARK\tCheck with carrier\t-38.042261999000004\t145.219498912\t20229.4\t25023.0\n314\tLiving Gems Kuluin\tUnder construction\t-26.65790047155776\t153.04729444825927\t22844.8\t23761.4\n10740\tLiving Choice Glenhaven\tReady for service\t-33.69626396335785\t150.99443078041077\t15573.4\t24175.6\nAYCA-19ZSTU\tVermont Riverlands\tContracted\t-33.5641750000158\t150.870480999992\t20385.4\t22417.8\n10704\tWannanup-Port Bouvard East\tReady for service\t-32.60341102088821\t115.64603269100189\t24229.8\t22691.0\nAYCA-OVO23\tMINDA Redevelopment\tReady for service\t-35.0032417638245\t138.51675979825\t22640.4\t24730.8\n10553\tMurray-Riverland Ramble\tReady for service\t-32.57704251337142\t115.8260753005743\t21688.4\t21019.0\nAYCA-IEEZM\tLot 1693 Parker St \u0026 Lot 2119 Stanley St\tReady for service\t-20.3946096122919\t118.599534752865\t18979.6\t24684.6\n83\tStonybrook\tReady for service\t-37.690168202\t144.731148311\t18033.4\t26974.4\nAYCA-ETCHB\tWhiteman Edge\tReady for service\t-31.8141469707026\t115.963526331826\t19701.4\t24007.0\n17357878\tSerpentine Downs\tCheck with carrier\t-32.374276991\t115.981357984\t23695.0\t22275.0\nAYCA-1ABGJI\tJimboomba Woods\tReady for service\t-27.8718669999843\t153.046343\t19919.8\t26224.6\n115\tThe Grove\tReady for service\t-35.175531914056855\t149.1008225536489\t20404.4\t24099.0\n338\tLincoln on the Bellarine\tUnder construction\t-38.22705044497567\t144.37139348266936\t15609.6\t23813.8\nAYCA-LF9PR\tGolden Bay\tReady for service\t-32.4205231935049\t115.755533304269\t18912.6\t20619.4\n17320876\tWokarena Road\tCheck with carrier\t-28.660908965\t114.62454\t18123.4\t25630.0\n17347341\tPeak Drive Estate Stage 1\tCheck with carrier\t-38.0048399955\t145.33659504\t18299.0\t22463.2\n17289791\tEagle Bay Rise\tCheck with carrier\t-37.896200096\t147.674397248\t21096.8\t23734.2\n17382301\tLyn Parade\tCheck with carrier\t-33.936563992\t150.881592992\t16525.6\t25997.0\nAYCA-12UCDR\tJimboomba Woods\tReady for service\t-27.8704580343858\t153.046562722769\t19919.8\t26224.6\nACSP\tSpringfield\tReady for service\t-27.68752972507293\t152.90936708450317\t24988.2\t23664.4\nAYCA-LIVVA\tIronbark Ridge\tReady for service\t-32.2974524392657\t150.896860220885\t19588.0\t21423.2\n10351\tMillbridge\tReady for service\t-33.30790860838177\t115.72964385151863\t16071.2\t24242.0\n10328\tDudley Park-Mariner\u0027s Cove\tReady for service\t-32.54983018052196\t115.73004484176636\t21353.6\t23456.6\n10731\tEpping Park\tReady for service\t-33.782216765389535\t151.07181787490845\t20366.6\t22242.4\nAYCA-FWOIG\t1440 Frankston-Flinders Road, Tyabb\tReady for service\t-38.2535102671778\t145.190052381605\t19285.8\t24293.6\n10612\tSecret Harbour-Anstey Park\tReady for service\t-32.402189320789844\t115.76897978782654\t16931.6\t22374.6\n10658\tTapping The Kestrels\tReady for service\t-31.721625828114394\t115.78534126281738\t26443.8\t26125.0\n17349312\tMOUNTAIN VIEW ESTATE\tCheck with carrier\t-33.912672574\t150.621471712\t22901.0\t24578.8\n17356160\tWoodridge Estate Stage 1B\tCheck with carrier\t-34.837832969000004\t150.548339168\t16677.2\t23567.4\nAYAA-GDLZ8\tHarrington Grove\tReady for service\t-34.0194031212073\t150.7532483145\t18021.6\t23293.2\nAYCA-1CRLYV\tMoncrieff Residential Estate\tUnder construction\t-35.154803000021\t149.107155000007\t18817.6\t23359.8\nAYCA-WHTZS\tFarragher subdivision\tReady for service\t-32.765554999864\t151.6233730003\t18055.6\t25171.4\nAYCA-10KKU8\tThe Gateway\tReady for service\t-34.1901310500305\t150.786361112653\t17790.2\t26490.2\nAYCA-DXRRI\tMiddleton Grange\tReady for service\t-33.9151240703677\t150.840006288988\t17646.6\t24963.0\n17327379\tTwin Creeks Golf Couse Estate\tCheck with carrier\t-33.845982479\t150.757997056\t15609.0\t22854.2\n10705\tWannanup-Port Bouvard East\tReady for service\t-32.60215424475941\t115.65199792385101\t23585.6\t22301.2\n10235\tDalyellup\tReady for service\t-33.39171543951737\t115.62134027481079\t21921.6\t26404.4\n17313925\tSanctuary on Moggill\tCheck with carrier\t-27.5747120085\t152.880090112\t17210.6\t22169.6\n10573\tSecret Harbour\tReady for service\t-32.39568219217621\t115.75586915016174\t19191.2\t20236.2\n17244744\tPremier Gardens Estate\tCheck with carrier\t-34.2963140485\t146.076527872\t20610.2\t22313.0\n10171\tBurns Beach\tReady for service\t-31.724599957029927\t115.71629583835602\t21081.6\t22725.8\nAYCA-DVQ33\tParkland Heights\tReady for service\t-32.3549928434823\t115.798355647355\t19750.0\t23652.2\nAYCA-1EL358\tEden Park Estate\tReady for service\t-19.2331609988561\t146.647843999839\t24359.0\t21391.2\nAYAA-GVMB7\tArise\tReady for service\t-27.5754951435665\t153.116533700679\t19897.2\t26717.0\nAYAA-ESS68\tTalana\tReady for service\t-33.9517943675023\t150.844216592569\t22752.6\t21586.2\nAYCA-19M72I\tLot 9000 Baile Road Canning Vale\tContracted\t-32.0656820000128\t115.913695\t22424.6\t24840.0\n17327746\tBindea Estate\tCheck with carrier\t-30.993058980500003\t150.264839168\t20145.2\t23028.6\nAYCA-DF9C9\tBungarribee (Bunya)\tReady for service\t-33.7766755592885\t150.86762255512\t16069.6\t22202.4\n20\tMacarthur Gardens\tReady for service\t-34.078731685352246\t150.7971630189405\t18646.6\t24314.4\n10389\tIluka\tReady for service\t-31.737971912801473\t115.73255270719528\t17143.8\t23661.8\n5\tEl Caballo Lifestyle Village\tReady for service\t-31.800599504507684\t116.35106955017488\t18556.6\t24259.0\nAYAA-F7DKM\tHighland Reserve\tReady for service\t-27.8823195164227\t153.278922005378\t23901.0\t26226.8\nAYCA-1DIQ1G\tDeepdale North\tUnder construction\t-28.7695852595405\t114.682667281468\t18384.0\t21936.0\nAYCA-G6D99\tIronbark Ridge\tReady for service\t-32.2945243372932\t150.897661735819\t16287.6\t23451.4\n17320794\tStegemann Road Buccan\tCheck with carrier\t-27.752138016\t153.135784096\t17962.6\t24559.8\nAYCA-MVLET\tMount Margaret\tReady for service\t-19.3376598365711\t146.596882842201\t16882.2\t24779.8\n10387\tIluka\tReady for service\t-31.741005750924383\t115.73422908782959\t18258.4\t22958.8\nAYAA-HLIZF\tNickol West\tReady for service\t-20.7363338099194\t116.79243804\t21746.4\t26289.6\nAYCA-1GCO65\tWhitby\tContracted\t-32.279590000014\t115.997557\t18326.6\t24411.4\n17311856\tFantasia Land\tCheck with carrier\t-34.644247026500004\t138.651928928\t20255.8\t21455.0\n10172\tBurns Beach\tReady for service\t-31.728574154024283\t115.72688519954681\t20257.4\t23419.8\n10574\tSecret Harbour\tReady for service\t-32.39552818753023\t115.75571894645691\t19191.2\t20236.2\n10688\tWannanup-Port Bouvard North\tReady for service\t-32.601983893518465\t115.6345796585083\t20434.8\t23784.4\n10197\tCanningvale-Sanctuary Waters\tReady for service\t-32.100772582784344\t115.93021810054779\t21627.8\t24481.0\nON-V-LSP-TWC\tLakeside, Town Centre\tReady for service\t-38.072816794351404\t145.43586373329163\t16998.8\t23317.4\n17334924\tHalcyon\tCheck with carrier\t-27.878194981\t153.363738976\t15971.8\t25280.4\n101\tBarangaroo\tReady for service\t-33.860891437945874\t151.20260026877574\t21517.2\t23703.0\nAYCA-ILWV9\tCloverlea - Chirnside Park\tReady for service\t-37.745503247648\t145.332093027342\t24615.4\t24642.0\nAYCA-1INGUF\tLot 9000 Baile Road Canning Vale\tContracted\t-32.0671115083085\t115.909507261094\t18874.0\t24739.6\n17362323\tHOEVET FIELD\tCheck with carrier\t-17.0509390565\t145.4283672\t13610.4\t23351.2\nAYAA-J45NH\tPimpama Rivers Estate\tReady for service\t-27.7926076471019\t153.265624578904\t20400.2\t24205.0\nAYCA-TCBF0\tWandi Estate\tUnder construction\t-32.194845000013\t115.860880999999\t21257.4\t23627.2\nAYCA-T0C3W\tWickham South\tReady for service\t-20.684563011765\t117.142895280133\t27532.4\t27095.0\n10092\tBaldivis-The Chase\tReady for service\t-32.303049020278486\t115.82371830940247\t19088.8\t25121.6\nAYCA-1EFSPR\tCoomera Springs Estate\tContracted\t-27.8408675699834\t153.2906154\t14500.2\t23463.4\nAYCA-F6OD2\tThe Fairways\tReady for service\t-27.5485524851706\t152.46376330561\t20518.4\t25462.6\nAYCA-FZLKH\tMadigan Road\tReady for service\t-20.7515312639833\t116.79272085637\t25029.0\t24500.4\nON-Q-GC-SeaChange\tSeachange Emerald Lakes, Carrara\tUnder construction\t-28.015345000000003\t153.381919\t17031.4\t22893.4\nAYCA-M5S0I\tWindmill Downs\tReady for service\t-31.0370319898862\t150.904114385348\t22075.2\t24046.6\n10590\tSecret Harbour\tReady for service\t-32.410379155588195\t115.76870754361153\t17785.6\t20940.2\nAYAA-J4JYO\tWickham South\tReady for service\t-20.6838523976977\t117.137120090343\t26268.0\t26530.0\n271\tWestpoint Shopping Centre\tReady for service\t-33.76852830684482\t150.90482269288674\t25055.2\t26883.8\n334\tOceanside\tUnder construction\t-24.77278537946005\t152.41152280181123\t21721.4\t25329.4\nAYCA-13X8H5\tRiemore Downs Estate\tContracted\t-27.8859651299838\t153.10899288\t21179.4\t23515.6\n17362631\tBarbers Paddock\tCheck with carrier\t-36.1019571165\t144.76534032\t22234.0\t25514.0\n193\tChambers Pines\tReady for service\t-27.721799275380192\t153.08751662773457\t20861.2\t26484.0\nAYAA-F548W\tElizabeth Hills\tReady for service\t-33.8956701905742\t150.845726075931\t22430.8\t25208.4\n17348353\tAvenue Hill\tCheck with carrier\t-37.5230560025\t143.718275008\t22599.0\t25083.4\n17345976\tWestwood\tCheck with carrier\t-26.957241264\t152.764883648\t21326.4\t23167.2\nAYCA-FD0SO\tForest Springs\tReady for service\t-23.8947114383945\t151.248552545618\t17125.8\t22555.8\nAYCA-1CPHX4\tMoncrieff Residential Estate\tContracted\t-35.1611090000209\t149.114634000007\t20296.8\t22031.4\n17338330\tAmorosa Gardens\tCheck with carrier\t-27.4216899615\t152.000035936\t18346.4\t24541.0\nAYCA-F190V\tEdmondson Park South P1\tReady for service\t-33.9783097831143\t150.852090806049\t23980.0\t22931.8\n17357936\tBroadview Estate\tCheck with carrier\t-32.6346520035\t149.594210016\t22096.0\t21108.0\n234\tLogan Hyperdome Shopping Centre\tReady for service\t-27.659035338906623\t153.16967998506846\t22753.4\t23414.8\n17136044\tThe Grange Stage 1\tCheck with carrier\t-37.0329309885\t146.10346992\t17565.6\t23981.6\nAYAA-GR8ZS\tElizabeth Hills\tReady for service\t-33.8975584538271\t150.847407166737\t22787.6\t24541.8\nAYCA-1JH740\tCockburn Coast\tContracted\t-32.0863006079454\t115.761090935601\t19181.6\t24539.2\nAYCA-GKAGS\tParks Edge @ Casey Fields\tReady for service\t-38.1198055463689\t145.304366851953\t21265.6\t24304.4\nAYCA-13X8OH\tRiemore Downs Estate\tContracted\t-27.8859651299838\t153.10899288\t21179.4\t23515.6\nAYCA-19PWB1\tLot 1032 Redgate Road\tUnder construction\t-34.0292127594157\t115.09022781127\t23401.8\t22355.6\nAYCA-11PKDA\tMount Margaret\tReady for service\t-19.3405234999658\t146.599826077646\t16882.2\t24779.8\nAYCA-XGZCF\tFrench Street Werrington\tContracted\t-33.7607850000147\t150.735713999989\t21857.6\t25505.6\nAYAA-FG08V\tHighfields North Estate\tReady for service\t-27.4330973824287\t151.942094713239\t21843.6\t23328.0\nAYCA-13WQNT\tThe Fairways\tReady for service\t-27.5270719999815\t152.481257\t20759.4\t25389.4\nAYCA-1UJIVI\tEden Park Estate\tUnder construction\t-19.2357979999108\t146.643857\t24359.0\t21391.2\n216\tMartha Cove\tReady for service\t-38.30550886289194\t145.00656717872238\t18222.0\t23807.6\nAYAA-GPFH1\tThe Ponds\tReady for service\t-33.692786388454\t150.914964008876\t18171.2\t24263.8\nAYCA-HKY43\tEvans Park Industrial\tReady for service\t-38.0926864860118\t145.254120650953\t16863.4\t23981.0\n17322659\tLockhart River Subdivision\tCheck with carrier\t-12.779468007\t143.341381088\t15852.8\t23196.6\nAYCA-1J5EEA\tLot 10,50 \u0026 700 Ocean Reef Gnangara\tUnder construction\t-31.7877473878712\t115.858690851779\t19519.2\t25300.6\nAYAA-IGZL9\tTaylors Hill Estate\tReady for service\t-37.7193046518177\t144.739097452396\t20922.2\t21622.2\n10788\tWWP LBNCo\tReady for service\t-33.828184078700204\t151.07364177703857\t20162.4\t23078.6\n17321918\tOnslow Townsite Development\tCheck with carrier\t-21.646846974\t115.114884832\t20194.4\t22023.4\nAYCA-DWNVE\tMaranda Heights\tReady for service\t-23.5637709827387\t148.150837820423\t16604.6\t24318.4\nAYCA-TZAP5\tFrizzo Road, Palmview\tReady for service\t-26.7508125378843\t153.03774225061\t21159.2\t23773.8\n221\tCanberra Centre\tReady for service\t-35.28132145478449\t149.13330946921718\t17138.6\t21300.6\n303\tRochedale\tUnder construction\t-27.585841634265535\t153.11353598593286\t16618.0\t26267.4\n1\tDFO Perth\tReady for service\t-31.940804813395204\t115.94954840593766\t19240.6\t21798.8\n4\tDFO Perth\tUnder construction\t-31.940804813395204\t115.94954840593766\t19240.6\t21798.8\nAYCA-1ESEJE\tJimboomba Woods\tReady for service\t-27.8674779999843\t153.046517\t21855.6\t26241.4\nAYAA-EOFUR\tThe Village at Wellard\tReady for service\t-32.267305140479\t115.825448154138\t18802.2\t21027.4\nAYCA-1MFJ8K\tTindal Avenue, Beeliar\tContracted\t-32.1325105806847\t115.808275026027\t22021.0\t23771.4\n10105\tBaldivis-Tuart Ridge\tReady for service\t-32.33848128148256\t115.82120776176453\t20845.2\t25818.2\nAYAA-F614T\tArise\tReady for service\t-27.5751646966551\t153.118817920361\t19897.2\t26717.0\nAYCA-145346\tL107 Exploration Drive Multi-User Site\tReady for service\t-20.7552641658172\t116.768744493333\t18985.0\t25356.6\n17262882\tEastside Subdivision\tCheck with carrier\t-34.1966919555\t142.182113056\t15426.0\t25615.6\n10589\tSecret Harbour\tReady for service\t-32.40927015711777\t115.76955780386925\t15429.8\t20625.0\nAYCA-FUHRO\tCaddens Release\tReady for service\t-33.7747377813714\t150.721273265564\t18661.6\t21899.8\nAYCA-RNFCZ\tRIVERSTONE RISE\tReady for service\t-23.9719377242301\t151.317210217489\t21259.8\t26661.2\n10329\tDudley Park-Mariner\u0027s Cove\tReady for service\t-32.54984374590842\t115.7272070646286\t21442.2\t24058.8\nAYCA-JWNIP\tRedbank Motorway Estate\tReady for service\t-27.5859849493714\t152.876343356434\t19008.2\t22288.6\n17201178\tPacific Pines\tCheck with carrier\t-27.9312569955\t153.301434848\t22325.0\t20473.2\n10047\tAustralind-Galway Green\tReady for service\t-33.25603165631664\t115.7270622253418\t17814.0\t24196.8\n10698\tWannanup-Port Bouvard North\tReady for service\t-32.59203121760377\t115.64583957195282\t23020.6\t22511.8\n10327\tDudley Park-Mariner\u0027s Cove\tReady for service\t-32.550530596897936\t115.73215842247009\t21235.6\t22435.0\nAYCA-ROJ8T\tThe Meadows\tUnder construction\t-27.8279519999839\t153.312236\t19812.0\t24234.2\nAYCA-EOU5T\tHidden Valley Northern Paddock\tUnder construction\t-37.3869390600181\t144.994662359996\t17682.2\t26559.0\nAYCA-1RO4RX\tWindradyne\tContracted\t-33.4027119999957\t149.54138000004\t17430.6\t23060.6\nAYCA-LQAF8\tRIVERSTONE RISE\tReady for service\t-23.9673324937224\t151.318411370725\t22609.6\t25941.6\nAYCA-SG61Y\tAlkira Estate\tContracted\t-34.4891840000067\t150.764230999955\t17293.6\t26685.2\nAYCA-JKJE1\tForest Springs\tReady for service\t-23.8984820678198\t151.247298624639\t17125.8\t22555.8\nAYCA-DD3C8\tVermont Riverlands\tReady for service\t-33.5689465929785\t150.862954209724\t21039.8\t23921.4\nAYCA-GPU42\tNewman Light Industrial Area\tReady for service\t-23.370211790284\t119.727884729292\t16749.6\t26623.2\n10371\tFalcon-Pleasant Grove\tReady for service\t-32.59561976274473\t115.65103232860565\t23020.6\t22511.8\nAYCA-GR59S\tJohnston Stage 2\tReady for service\t-12.4910377171343\t131.00747135911\t21211.0\t22446.0\n17366497\t250-252 Blind Creek Road\tCheck with carrier\t-37.523448998\t143.77838\t23521.0\t23517.2\n17363349\tBullocks Run\tCheck with carrier\t-32.092228007500005\t152.449822016\t18871.6\t23298.2\n10217\tClarkson-Somerly\tReady for service\t-31.68231965347913\t115.73390185832977\t15798.8\t21451.8\nAYAA-GS1IC\tLot 1002 Penson Street, Singleton\tReady for service\t-32.4526525091403\t115.758240281793\t25210.2\t25585.6\n10046\tAustralind-Galway Green\tReady for service\t-33.25845042274144\t115.72949230670929\t18038.0\t25761.8\n17290310\tLinton Hill - Stage 2\tCheck with carrier\t-27.466329962\t151.82728704\t22133.6\t25616.6\n10611\tSecret Harbour-Anstey Park\tReady for service\t-32.398474967071245\t115.76890334486961\t14407.6\t24555.0\nAYCA-ER2HH\tVicars Avenue\tReady for service\t-38.5897578015856\t145.592578108999\t20472.8\t24350.0\nAYCA-G7VCW\tGap Ridge Industrial Area\tReady for service\t-20.7376182188109\t116.76592759951\t19990.2\t25246.0\nAYCA-159BSA\tMoncrieff Residential Estate\tContracted\t-35.159419000021\t149.110044000007\t18817.6\t23359.8\nAYCA-1S9DR7\tVasse Newtown\tContracted\t-33.6735871946194\t115.237501509781\t21538.8\t23505.4\n24\tChesalon Living\tReady for service\t-34.0064770830842\t150.7440112571631\t17470.2\t22831.2\nAYCA-S72QY\tKialla Lakes Estate\tUnder construction\t-36.4346950000272\t145.392727999998\t21039.8\t23906.6\n17349198\tThe Palisades\tCheck with carrier\t-27.4275060285\t152.923364992\t21054.6\t24970.6\nAYCA-1L7JOH\tLots 73 and 74 Queensway Rd, Landsdale\tUnder construction\t-31.8046482472394\t115.869656132796\t16108.2\t22465.8\n17355906\tDeepwater Estate\tCheck with carrier\t-27.3051000015\t153.015337088\t21351.2\t22136.2\n17347407\tAspire at Weston\tCheck with carrier\t-32.808095997\t151.447782976\t22171.0\t23258.2\n17325519\tBraeburn Estate\tCheck with carrier\t-32.5464440405\t151.173253088\t22274.6\t22785.0\nAYCA-IK50L\tSt George Springs\tContracted\t-28.2061125129523\t152.051781890475\t20794.0\t26620.0\nAYCA-1DAJU0\tHarrington Grove\tUnder construction\t-34.0141670000154\t150.719234999989\t18076.2\t24489.8\n10576\tSecret Harbour\tReady for service\t-32.41016651368836\t115.7580041885376\t19155.0\t21643.0\n10445\tJindalee-Jindalee Beach\tReady for service\t-31.64808608166744\t115.69432854652405\t14335.6\t25786.8\n10291\tDawesville-Port Bouvard South\tReady for service\t-32.6050378802273\t115.63354969024658\t22843.2\t24504.2\nAYCA-F6G23\tHeron Park\tReady for service\t-32.1206153334715\t115.933853735721\t15577.4\t25051.6\n272\tCastle Towers Shopping Centre\tContracted\t-33.73115719422902\t151.00477934287912\t20433.0\t25585.2\nAYCA-1BNMMK\tRedgum Brook Estate\tReady for service\t-32.2091690608967\t115.973701271346\t20654.0\t22477.8\nAYCA-1BCCVE\tFrizzo Road, Palmview\tReady for service\t-26.7461322570971\t153.039079776235\t18663.8\t24901.2\n10378\tHalls Head-Port Mandurah\tReady for service\t-32.53337661342534\t115.7064950466156\t19870.0\t21671.6\nAYCA-1JG1CU\tSpring Mountain\tContracted\t-27.7313099999831\t152.906138\t22274.0\t23160.8\nAYAA-GO2KN\tCardinia Lakes\tReady for service\t-38.0624103221007\t145.507605858647\t17286.2\t23369.8\n17325948\tEwer St Carindale\tCheck with carrier\t-27.516684964\t153.116602912\t25186.8\t27676.0\n17348390\tNorth Byron Beach Resort\tCheck with carrier\t-28.626032968500002\t153.588858848\t19369.4\t24441.4\n10571\tSecret Harbour\tReady for service\t-32.40081854959892\t115.75819730758667\t19191.2\t20236.2\n17315061\tYandina Caravan Park Stage 1\tCheck with carrier\t-26.5687499775\t152.95569984\t14688.2\t24817.4\nAYAA-IGN9M\tGreenhills Beach Residential\tReady for service\t-34.0345879914221\t151.164224730179\t18744.8\t24791.6\nAYAA-IWBVJ\tGalway Gold Estate\tReady for service\t-38.0572001902837\t145.481057988543\t13353.6\t24337.6\n17394457\tBoundary warehouses\tCheck with carrier\t-38.0843087805\t145.184269728\t19624.0\t23655.8\n17324948\tPerricoota Run Stage 3\tCheck with carrier\t-36.0924779755\t144.73565712\t20190.2\t25712.8\nAYCA-12K0N9\tGreenway - 799 Richmond Rd\tUnder construction\t-33.7233900000067\t150.847701999976\t21780.0\t23986.4\nAYAA-GUYWC\tBrookhaven Rise Estate\tReady for service\t-37.5627940974843\t144.696586941518\t21542.4\t23327.4\nRAWM\tWellington Manor\tReady for service\t-27.490458180626142\t153.22544932365417\t17690.0\t20418.0\nAYCA-H7WBI\tSovereign Hills\tUnder construction\t-31.4549160000096\t152.827631\t20377.8\t25730.6\nAYCA-KACMM\tBeverly Hills Estate\tReady for service\t-33.2436355021387\t149.091830082507\t20090.0\t23946.8\nAYCA-18CNWR\tMacquarie View Estate\tReady for service\t-32.2786208316522\t148.616670217466\t22090.4\t22879.6\nAYAA-GIMD0\tYellowgum\tReady for service\t-36.6907045065123\t144.323835048935\t19579.2\t23198.8\n10209\tClarkson-Somerly\tReady for service\t-31.690390180334045\t115.7239830493927\t20251.2\t24191.0\nAYCA-142BGQ\tLLOYD ESTATE\tUnder construction\t-35.1520639984098\t147.337553998696\t19861.4\t20519.8\n10649\tTapping-Ashton Heights\tReady for service\t-31.716962281699793\t115.79671382904053\t23418.0\t24360.4\n17329917\tCastle Hill Subdivision\tCheck with carrier\t-33.720329258\t151.01356512\t18684.0\t24789.8\n33\tHamilton Reach\tReady for service\t-27.443015132\t153.085595175\t22128.6\t26017.2\n10473\tLakelands\tReady for service\t-32.466192308164004\t115.76794981956482\t21679.6\t27125.0\n10570\tSecret Harbour\tReady for service\t-32.40004856754565\t115.75763940811157\t19191.2\t20236.2\nAYCA-NC7MJ\tGlenwood Development\tReady for service\t-36.185263368505\t146.936057138263\t18313.8\t23298.0\n17325403\tPatterson Gardens Estate Stage 2\tCheck with carrier\t-33.289404022\t149.12302608\t25579.0\t21712.2\n10170\tBurns Beach\tReady for service\t-31.728966545401306\t115.72501301765442\t20257.4\t23419.8\n17361986\tBalmattum Hill Estate\tCheck with carrier\t-36.751287007\t145.583227008\t22603.6\t19970.8\n17333322\tMacquarie Heights Estate\tCheck with carrier\t-32.944256996\t151.639039072\t20695.6\t22385.2\n10079\tBaldivis-Rivergums\tReady for service\t-32.34183520390608\t115.82303166389465\t20845.2\t25818.2\n17328997\tCar Mega Mart Stage 2\tCheck with carrier\t-38.095363992\t145.485427008\t19556.8\t23263.4\n10532\tMadora Bay\tReady for service\t-32.47605485052216\t115.75556874275208\t26126.8\t24797.4\nAYCA-MT9YM\tPotts Hill\tReady for service\t-33.891202420849\t151.028901244511\t17993.0\t23410.0\nAYAA-GR0XZ\tElizabeth Hills\tReady for service\t-33.9012756454489\t150.844692256359\t20516.4\t25692.0\n10029\tAveley-Vale\tReady for service\t-31.790171998121004\t115.9892749786377\t24358.4\t23175.8\nAYAA-FN97T\tAspiri\tReady for service\t-32.1417876390121\t115.909525216\t23205.6\t25684.0\nRAFB\tForresters Beach\tReady for service\t-33.4038792802728\t151.4666497707367\t16752.2\t26508.8\n17316951\tKookaburra Rise - Stg 3\u00264\tCheck with carrier\t-20.3102260255\t148.659717952\t18178.6\t25828.6\n10787\tWWP LBNCo\tReady for service\t-33.82709673956692\t151.0745644569397\t20281.8\t22323.4\nAYCA-1D9FGG\tFairway Gardens\tUnder construction\t-36.0520650000274\t147.013232\t19458.4\t20622.2\nAYCA-G7OO0\tGap Ridge Industrial Area\tReady for service\t-20.7357517321217\t116.762107212586\t19990.2\t25246.0\n10007\tAveley-Vale\tReady for service\t-31.78787482485216\t115.98103523254395\t24754.8\t21027.0\nAYCA-10WO6Q\tLot 6 Nicholson Road\tContracted\t-32.1440537855947\t115.91943745081\t21514.4\t26428.6\n10288\tDawesville-Port Bouvard South\tReady for service\t-32.61100683812102\t115.63154071569443\t20947.6\t25747.6\n17326041\tKinross Road\tCheck with carrier\t-27.556326986000002\t153.249588\t22722.6\t21388.6\n17337045\talanvale gardens\tCheck with carrier\t-41.398637042\t147.128419072\t21282.6\t23578.4\n10002\tAveley-Vale\tReady for service\t-31.79322877516195\t115.98442554473877\t23497.2\t21903.4\nAYAA-GYFSE\tKalynda Chase Estate\tReady for service\t-19.3044992828765\t146.690298682805\t15406.8\t25450.4\n10582\tSecret Harbour\tReady for service\t-32.415387169732384\t115.75394868850708\t18912.6\t20619.4\n10693\tWannanup-Port Bouvard North\tReady for service\t-32.5945576768249\t115.64508318901062\t22279.6\t22067.4\n17340599\tLeisure Life Village - 3 Parkside Pde Toronto\tCheck with carrier\t-33.027171036\t151.566399008\t16374.4\t22490.6\n10702\tWannanup-Port Bouvard East\tReady for service\t-32.60514633646602\t115.64143002033234\t22843.2\t24504.2\n10075\tBaldivis-Rivergums\tReady for service\t-32.33649153092163\t115.82380414009094\t19876.6\t25828.8\n17319550\t32-40 Cawarra Road\tCheck with carrier\t-34.0320390325\t151.129942912\t16521.8\t22710.8\n17329919\t800 MONTPELIER DRIVE\tCheck with carrier\t-34.084847967\t150.570492128\t18547.8\t23334.0\nAYCA-1F7L92\tZuccoli\tReady for service\t-12.5056259998882\t131.008578999993\t20655.4\t24551.8\n10186\tCanningvale-Avenues\tReady for service\t-32.09173200503879\t115.92247188091278\t23640.8\t25763.6\nAYAA-EW1BR\tShoal Point Waters\tReady for service\t-21.011116523858\t149.151202655373\t24116.2\t25355.0\nAYCA-14TLE6\tGeraldton Heights\tReady for service\t-28.7357469207182\t114.664126999979\t18231.0\t24914.6\n10187\tCanningvale-Avenues\tReady for service\t-32.089038646255204\t115.92517420649529\t23640.8\t25763.6\n165\tCanterbury Lakes\tUnder construction\t-38.02956063324748\t144.3880579328667\t14185.8\t23552.4\nAYCA-17SASX\tPaech Road Residential Subdivision\tUnder construction\t-35.0898210000208\t138.887281999993\t16660.2\t24636.2\nAYCA-NLVNW\tOsprey Subdivision\tContracted\t-20.4185619453499\t118.616142056594\t19904.6\t25647.4\nAYCA-189LZC\tOakwood Rise\tReady for service\t-27.8279889999839\t153.286215\t17710.2\t23440.6\n17328227\tRidgeview Estate\tCheck with carrier\t-34.0858359965\t150.69247488\t18477.2\t26132.4\nAYAA-GS0IM\tHarvest Lakes\tReady for service\t-32.1607065295207\t115.865516044205\t18970.6\t26072.6\nAYCA-1FTKWE\tMolonglo Valley - Coombs Stage 1\tReady for service\t-35.3198709016713\t149.048650961069\t16490.2\t26693.6\n17325807\tCoomera Rivers\tCheck with carrier\t-27.847922043500002\t153.366432832\t20199.0\t22503.6\nAYCA-EW20T\tNorthview Estate\tReady for service\t-32.2465804568276\t150.90397766\t18841.4\t24396.6\nAYAA-FOSEA\tCitiswich\tReady for service\t-27.6017188985184\t152.813996660607\t18897.0\t24010.0\nAYAA-FYWH5\tMcKeachies Run\tReady for service\t-32.6945357355568\t151.545543112298\t18312.8\t22832.8\n17275187\tSovereign Downs - stage 1\tCheck with carrier\t-28.238709957\t152.02181808\t21410.8\t24818.4\n17349266\tHenry St Brassall\tCheck with carrier\t-27.590119012000002\t152.729560096\t17995.8\t23107.6\nAYAA-F2BSM\tGlenfield West\tReady for service\t-35.1379948217273\t147.319628488454\t21326.0\t24762.2\nAYCA-E2RCZ\tRees Road, Brookfield\tReady for service\t-37.7152222374757\t144.548775775167\t19011.2\t23744.4\nAYCA-OKUJA\tSt Leonards Estate\tReady for service\t-31.851351726601\t115.975319584732\t20048.2\t22385.8\nAYCA-EMGSR\tMistful Park\tReady for service\t-34.7307356697632\t149.707134940517\t18425.8\t24433.0\nAYCA-F54UX\tBelmore Estate\tReady for service\t-34.7331738928449\t149.706596567539\t19780.6\t24463.4\n10661\tTapping The Kestrels\tReady for service\t-31.71812134547654\t115.7907485961914\t25090.2\t23946.8\n17359981\tYamba Waters\tCheck with carrier\t-29.4395681005\t153.343916\t18467.2\t21196.4\nAYAA-F26L4\tShannon Waters Estate\tReady for service\t-37.8385911993154\t147.572827852958\t20185.8\t22242.0\n17278226\tSpring Park Estate stage 5 \u0026 6\tCheck with carrier\t-36.0182999685\t147.01261392\t19724.8\t23257.8\nAYAA-EOIUG\tBungarribee (Bunya)\tReady for service\t-33.7785498963346\t150.871722313876\t17558.6\t22368.0\n249\tBentley Park\tReady for service\t-38.00089970213787\t145.1807633495413\t18877.8\t25901.4\nAYAA-H9B8H\t95 Flynn Ave, Middleton Grange\tReady for service\t-33.9169220163184\t150.84380031936\t17117.4\t27741.8\n17316398\tCurrey Street Roma\tCheck with carrier\t-26.5661309695\t148.773735008\t18270.2\t23280.2\nAYCA-10XNGP\tWarner Springs\tReady for service\t-27.3090973931164\t152.955923963122\t21061.4\t23211.4\n17358015\tWoodside Park Estate\tCheck with carrier\t-34.17311772\t142.219964768\t17214.0\t22374.8\n10434\tJindalee-Jindalee Beach\tReady for service\t-31.650771238172503\t115.69381356239319\t14335.6\t25786.8\n10633\tStirling-Roselea\tReady for service\t-31.886405556850722\t115.81453442573547\t16294.2\t23455.8\nAYCA-IIZZF\tGlenhaven Park\tContracted\t-38.0777960000299\t147.067778\t14419.0\t24118.8\nAYAA-ETJLH\tKurra at Newman\tReady for service\t-23.3492192099286\t119.732205600023\t23652.6\t24782.2\n17399437\tKokoda DHA Redevelopment\tCheck with carrier\t-28.034862009\t153.181528992\t17457.8\t26545.6\n10451\tJindalee-Eden Beach\tReady for service\t-31.650792215652338\t115.69370090961456\t14335.6\t25786.8\n10652\tTapping-Ashton Heights\tReady for service\t-31.718741940597035\t115.80303311347961\t22638.4\t23863.2\nAYCA-114M8I\tBaldivis East\tReady for service\t-32.3126555913481\t115.824591508574\t18264.2\t24191.6\nAYCA-13WZ1H\tRiemore Downs Estate\tReady for service\t-27.8912129399838\t153.11493288\t21179.4\t23515.6\n10566\tSecret Harbour\tReady for service\t-32.398073760026065\t115.74823021888733\t21008.4\t23216.4\n17314100\tHilltop Estate\tCheck with carrier\t-35.162060047000004\t147.343695136\t17973.4\t24297.6\n17256993\tVolker Street Dalby\tCheck with carrier\t-27.172153988\t151.24532688\t19071.0\t24627.6\n10076\tBaldivis-Rivergums\tReady for service\t-32.339061428306444\t115.8249306678772\t20809.4\t25932.4\nAYCA-1KG5DU\tCaddens Release\tUnder construction\t-33.7729190000145\t150.717314999989\t15421.2\t22674.8\n17321970\t52 Lot Subdivision at 278-298 Kopps Road Oxenford\tCheck with carrier\t-27.9186920175\t153.298582912\t21674.2\t22267.8\nAYCA-Z2NWV\tRiverside Estate\tReady for service\t-36.1396140000277\t146.94733\t20487.8\t23717.2\n135\tVicinity\tReady for service\t-27.668484209033387\t152.8932789745534\t16511.2\t25944.0\nAYAA-FIVKB\tSilkwood\tReady for service\t-27.62766731302\t153.257320500246\t18444.2\t23558.6\nAYCA-13KY8A\tStonecutters Ridge\tUnder construction\t-33.7177115360161\t150.85353745036\t23446.2\t24948.8\nAYCA-N65WN\tWilliams Landing\tReady for service\t-37.8572225911177\t144.752599787152\t22729.2\t26072.2\n10501\tLakelands\tReady for service\t-32.4656455793399\t115.77149033546448\t21886.6\t25179.6\nAYCA-1G91V7\tWellard Glen\tUnder construction\t-32.2718152106875\t115.847753342353\t19892.0\t22285.4\nAYAA-FPPZ3\tThe Village\tReady for service\t-19.2930919827071\t146.813468464972\t14684.8\t23180.0\nAYCA-RIMV7\tShoesmith Road / Gwenda Drive\tReady for service\t-27.5980661022218\t151.868618675165\t25128.2\t22924.6\nAYCA-SGJJ1\tEast Newman\tContracted\t-23.3533529999134\t119.745250920015\t22006.8\t23588.2\nAYCA-HZPMS\tRiverbank\tContracted\t-27.0924267420636\t152.957653706985\t19238.2\t24452.2\nAYAA-F68FV\tAmbrosia Estate\tReady for service\t-38.1152450696986\t145.232253663761\t20660.4\t24841.6\n17355795\t2070 Romsey Rd\tCheck with carrier\t-37.3508019845\t144.756296992\t22793.8\t22775.8\n10560\tQuinns Rock-Brighton Beachside\tReady for service\t-31.654480539552317\t115.69308316335082\t18071.6\t25967.2\nAYCA-1IDZGW\tDeepdale North\tContracted\t-28.7846939999871\t114.68948799999\t18533.8\t23196.0\nAYCA-E1F2P\tBig Sky\tReady for service\t-27.8371893741321\t153.329235325445\t18191.0\t23565.4\n10354\tMillbridge\tReady for service\t-33.314029170846915\t115.73272973299026\t16071.2\t24242.0\nAYCA-1B7QW3\tHeights Durack\tReady for service\t-12.4689548107749\t130.97684745566\t21874.0\t25462.4\nAYCA-EV5A6\tBotanic Ridge Estate\tReady for service\t-38.1394484973512\t145.257629874059\t19426.6\t22527.8\nAYCA-1E33L6\tHeartland\tUnder construction\t-34.0243758693653\t150.770672515165\t18505.8\t25459.4\n10595\tSecret Harbour\tReady for service\t-32.41516629622664\t115.76824150979519\t17785.6\t20940.2\n17317230\tTarneit Gardens\tCheck with carrier\t-37.8385389815\t144.675806048\t23625.4\t23220.6\nAYCA-MQ1IF\tHeron Park\tReady for service\t-32.1206153334704\t115.933853735722\t15577.4\t25051.6\n319\tSamford Retirement Village\tUnder construction\t-27.377593669964934\t152.88582620064778\t22643.0\t24645.8\n17364564\t42-44 WANAKA DRIVE\tCheck with carrier\t-37.714644981\t144.814979168\t18687.0\t26113.6\nAYCA-M7UKE\tAlex Ave Schofields\tReady for service\t-33.7077925068541\t150.885738909094\t20109.8\t23609.4\nAYCA-ES879\tVista Park\tContracted\t-34.4717682164447\t150.760773157261\t22038.6\t27233.4\nAYCA-DR2XE\tLyndarum\tReady for service\t-37.6175821626794\t145.022186165777\t21717.8\t22560.8\nAYCA-1T833W\tMunno Para West\tContracted\t-34.6537236956186\t138.679963581282\t20408.6\t23223.8\nAYCA-1JCYUF\tThe Village at Wellard\tUnder construction\t-32.2674723303443\t115.815194636229\t18262.2\t22666.0\nAYCA-GC69I\tRedbank Estate\tReady for service\t-31.1321730296903\t150.95450405738\t18335.4\t23286.4\nAYAA-FPPJL\tTreendale Grand Entrance\tReady for service\t-33.2832867559444\t115.743499048217\t19436.8\t23507.4\nAYCA-HAFZC\tSanctuary\tReady for service\t-32.8625539345981\t151.640409860095\t18883.8\t25015.2\nAYCA-EOUA4\tHidden Valley Northern Paddock\tContracted\t-37.3829400000256\t144.997435999994\t17682.2\t26559.0\nAYCA-RX20O\tForest Park Estate\tReady for service\t-23.324944363326\t150.526877499554\t18606.6\t22189.2\nAYAA-I2S0G\tRiverbank\tReady for service\t-27.0937721425907\t152.957423135435\t20557.0\t23837.8\nAYAA-HDH0A\t22-26 Fairway Drive, Kellyville\tReady for service\t-33.7268669549468\t150.95973745889\t19414.4\t24337.4\n10607\tSecret Harbour\tReady for service\t-32.40772750003423\t115.76587110757828\t15429.8\t20625.0\nAYCA-1OUD2V\tCoomera 2 Estate\tContracted\t-27.841463999984\t153.344296\t19854.0\t23673.0\nAYCA-181ZYP\tPlateau Drive Estate\tReady for service\t-28.8150662776219\t153.417476227406\t21881.8\t25652.4\nAYCA-NLQYO\tWest Macgregor\tReady for service\t-35.2062806440738\t149.008430046802\t22696.2\t21149.4\nAYCA-K45EX\tBrook View Estate- Glen Eden\tReady for service\t-23.908229708765\t151.275568311569\t18773.0\t21306.2\nAYCA-PY6D9\tLandcom - North Penrith\tUnder construction\t-33.7450150000141\t150.696213999988\t20271.0\t22852.8\nAYCA-DWNT0\t165 Rowes Lane\tReady for service\t-37.4199886208213\t144.968656883999\t21920.8\t22621.6\nAYCA-DSIWC\tCapestone Estate\tReady for service\t-27.2294086990467\t153.036578134434\t17595.8\t23629.2\n17320784\tThe Poplars Estate\tCheck with carrier\t-33.277665957\t149.068000096\t19572.0\t26750.2\nAYCA-L7A0N\tSherwins Way Estate\tReady for service\t-37.6190774358342\t145.031257513902\t18952.6\t23509.0\n10656\tTapping-Ashton Heights\tReady for service\t-31.719818845799136\t115.79861283302307\t23418.0\t24360.4\nAYCA-X7HVB\tHeron Park\tReady for service\t-32.1216367216858\t115.93642891207\t15454.2\t25631.8\nAYCA-XMF0H\tMarsden Heights\tReady for service\t-33.3946425629997\t149.604477678932\t23601.0\t24805.2\n17371587\tEatons Hill Village\tCheck with carrier\t-27.338218017\t152.96384304\t24296.0\t21724.4\nAYAA-F26S6\tSienna Wood\tReady for service\t-32.1637390545126\t115.988251904\t20522.6\t23159.8\n17320603\tAmaroo Park - Stage 5\tCheck with carrier\t-16.9941300335\t145.438629856\t23605.4\t21775.2\n17323048\tCotton Beach Subdivision\tCheck with carrier\t-28.308743002\t153.571853888\t15607.2\t25328.6\n17320331\tBeachside Residential - Stage A\tCheck with carrier\t-23.187879991\t150.790339072\t24005.4\t23059.8\nAYCA-QKD53\tAppletree Grove Estate\tReady for service\t-32.9133083422074\t151.585942961201\t20054.0\t22065.0\n17354070\tIluka Views\tCheck with carrier\t-36.049058993500005\t147.01605408\t19458.4\t20622.2\nAYCA-1FM3ZL\tSouth East Thornlands\tUnder construction\t-27.5720465858005\t153.276578592126\t14992.2\t25286.8\nAYCA-HVMVD\tBraemar Homesteads\tUnder construction\t-35.915706397652\t150.08859337385\t18500.8\t26479.4\nAYCA-ZURHM\tFrizzo Road, Palmview\tReady for service\t-26.7503297059672\t153.034471680316\t21159.2\t23773.8\nAYCA-HB8MK\tRenwick\tReady for service\t-34.4461002983266\t150.472202450163\t20334.8\t23893.4\n17351484\tBelle Eden Estate\tCheck with carrier\t-24.870535022000002\t152.393478112\t24258.6\t26172.8\nAYCA-EXVZY\tViewpoint, Huntly\tReady for service\t-36.6615597123722\t144.343671970779\t23549.0\t24646.4\nAYCA-194B8B\tByford On The Scarp\tContracted\t-32.2331850000137\t116.011438\t24018.0\t22323.6\nAYAA-GYS6F\tKalynda Chase Estate\tReady for service\t-19.3026909769079\t146.694942977699\t16935.0\t24812.0\nAYCA-EY6AL\tLucas\tReady for service\t-37.5495318428072\t143.781291126\t24126.4\t27354.2\nAYCA-1PWOJN\tERA Estate Capalaba\tContracted\t-27.5506336349747\t153.224509592182\t22140.8\t24483.4\n10630\tStirling-Princeton\tReady for service\t-31.898519899315282\t115.818230509758\t21400.8\t22399.2\nAYCA-DD3G0\tScenic Rise\tReady for service\t-27.9577945994649\t152.993526956843\t14536.4\t24245.0\n10382\tHalls Head-Port Mandurah\tReady for service\t-32.54381648521821\t115.71380406618118\t19966.8\t21302.4\nAYCA-1FDUG2\tMarsden Heights\tReady for service\t-33.3983704758768\t149.601534226053\t23601.0\t24805.2\nAYCA-1OAYNC\tNelson Street Subdivision\tContracted\t-27.6162069999815\t151.940039\t20041.8\t24398.0\nAYCA-1014V5\tMoree Gateway\tUnder construction\t-29.492475671184\t149.850760017586\t22431.4\t24639.2\nAYAA-FPT58\tBluestone Green\tReady for service\t-37.88934150819\t144.607045054923\t16476.0\t25418.6\n17332661\tColes Banksia Grove Shopping Centre\tCheck with carrier\t-31.7052610285\t115.803839168\t20131.2\t24681.0\nAYCA-1AAFH9\tAvonlee Estate\tContracted\t-31.8176660000115\t115.975602\t25524.0\t23097.0\n10353\tMillbridge\tReady for service\t-33.302394501737766\t115.72965525090694\t14452.6\t23208.0\n10103\tBaldivis-The Ridge\tReady for service\t-32.35180098789957\t115.80986805260181\t20305.4\t23850.2\nAYAA-J8QYX\tBrentwood Rise\tReady for service\t-27.6490802207415\t152.885460967255\t15703.6\t23750.8\nAYCA-MLELV\tLot 502 Jane Brook Drive\tReady for service\t-31.8595792828707\t116.056652970219\t22036.6\t20917.2\n10790\tBurns Beach\tReady for service\t-31.719263385089498\t115.7285964739358\t17064.4\t23357.8\nAYAA-HV1XO\tHighlands\tReady for service\t-37.5688227233428\t144.903520432181\t17925.6\t21879.4\nAYCA-HDLQ8\tRenwick\tReady for service\t-34.4501084045719\t150.472312610919\t20334.8\t23893.4\nAYAA-F68I5\tAmbrosia Estate\tReady for service\t-38.1152450696986\t145.232253663761\t20660.4\t24841.6\nAYAA-FU6UI\tWindradyne Estate\tReady for service\t-33.4000271122747\t149.54050912388\t17430.6\t23060.6\n17336882\tSage Apartments\tCheck with carrier\t-28.056345023000002\t153.367508896\t22680.2\t24811.8\nAYCA-IKR2K\tCalifornia Creek Estate\tReady for service\t-27.6595933676148\t153.204977135269\t18385.2\t24579.4\nAYCA-1FZO3Y\tKingston Downs Estate\tContracted\t-38.2495510895261\t144.544847507348\t18860.6\t23877.6\nAYAA-GE42C\tThe Ponds\tReady for service\t-33.7034999554244\t150.902785947618\t18264.8\t24267.4\nAYCA-IJB9S\tSmirk Road\tReady for service\t-32.3504673154424\t115.812371738849\t19925.0\t24808.2\nAYCA-N65SV\tWilliams Landing\tReady for service\t-37.8621307656859\t144.748331797565\t19564.8\t24841.6\nAYCA-DUTWB\tLittle Creek\tReady for service\t-23.8967502294119\t151.215576601543\t21857.6\t24390.4\nAYAA-F5EGE\tNewhaven\tReady for service\t-32.1285630000132\t115.929829\t15577.4\t25051.6\n17328401\tJOHNSTON STREET\tCheck with carrier\t-31.072084746\t150.910704736\t18664.2\t26519.4\nAYAA-HGK4T\tBrookhaven Rise Estate\tReady for service\t-37.5631410356327\t144.69416767765\t21542.4\t23327.4\n10238\tDalyellup\tReady for service\t-33.40049720869732\t115.61841130256653\t21921.6\t26404.4\n92\tEast Village\tReady for service\t-27.46672323494773\t153.09624206692058\t17414.8\t22219.0\nAYCA-1VDJU8\tCutters Ridge Estate\tContracted\t-26.6277088799738\t153.03225402\t21225.8\t28631.0\nON-N-HBUSH-C_Park\tCentenary Park\tReady for service\t-33.86345799888735\t151.06499433517456\t23262.6\t25249.0\n17350455\tDiamond Hill Estate\tCheck with carrier\t-37.075002745\t144.185662816\t19753.2\t21396.6\n10144\tBanksia Grove\tReady for service\t-31.690188411450773\t115.79452514648438\t20303.0\t24773.8\nAYCA-H2A18\tWonthaggi Heartlands\tReady for service\t-38.6046202500285\t145.584599039998\t21203.4\t22343.6\n10057\tAustralind-Treendale\tReady for service\t-33.28588904783222\t115.7360315322876\t21988.4\t23747.4\nAYCA-1B6PNJ\tHighfields North Estate\tUnder construction\t-27.438383064857\t151.940037706812\t20598.2\t25477.8\nAYCA-1FU57R\tSeascapes\tContracted\t-32.5600200911635\t115.675273969223\t19701.2\t22187.6\n10091\tBaldivis-Rivergums\tReady for service\t-32.3288040654175\t115.82648634910583\t20176.4\t25461.4\n17325301\tChapple Street Business Park\tCheck with carrier\t-23.842427048\t151.245870112\t20490.6\t25446.6\nAYCA-ZFMAE\tYanchep Golf Estate\tReady for service\t-31.5455487881747\t115.6544456324\t15657.2\t24548.0\n10194\tCanningvale-Sanctuary Waters\tReady for service\t-32.09340096992868\t115.92701017856598\t23973.0\t26180.2\n17319264\tPeregian Springs\tCheck with carrier\t-26.5011980415\t153.070047008\t22768.8\t24233.8\nAYCA-15LCBW\tLouisiana Road\tUnder construction\t-33.2607460000182\t151.471524999999\t23175.0\t24614.2\nAYAA-F3PM8\tWarralily - Armstrong Creek\tReady for service\t-38.2365722474205\t144.372427115256\t15609.6\t23813.8\n17324013\tGrassy Flat Road Diamond Creek\tCheck with carrier\t-37.6597870235\t145.155772096\t17092.6\t24506.6\n10268\tDalyellup\tReady for service\t-33.4037614806216\t115.61404466629028\t21921.6\t26404.4\n10516\tMadora Bay\tReady for service\t-32.48248989352084\t115.75327277183533\t23274.8\t23558.6\nAYCA-Z1Y3T\tAnnadale Estate\tUnder construction\t-37.5359491183692\t144.89832195574\t16943.8\t24030.8\n10394\tIluka\tReady for service\t-31.735472343316534\t115.73389984667301\t17143.8\t23661.8\n10406\tIluka\tReady for service\t-31.728176271463738\t115.7293152809143\t18155.4\t23789.2\nAYAA-HD37C\tPotts Hill\tReady for service\t-33.894950814314\t151.026671196638\t18245.0\t22352.4\nAYCA-PU9UW\tGrey Gum Estate\tReady for service\t-33.6870753533343\t150.938508516345\t20342.0\t24900.8\nAYCA-IA841\tTrumpet Wy/Cottier Dr/Lovell Pl\tContracted\t-20.4038037645468\t118.606949894255\t15508.2\t22114.4\nAYCA-TAE37\tHelena Valley\tReady for service\t-31.9171237015168\t116.034292150265\t16282.4\t24617.8\nAYCA-E2MNA\tEucalypt\tReady for service\t-37.6110605742831\t145.035290743683\t18390.6\t22212.0\nAYCA-IAOE6\tThe Boulevard\tReady for service\t-36.3559703078836\t145.373152448696\t23341.4\t23863.0\nAYCA-SN6ZO\tGoogong Township\tReady for service\t-35.4197191360926\t149.234504074279\t20986.2\t26356.0\nAYCA-L8UX7\tAmbrosia Estate\tReady for service\t-38.111228466431\t145.237007178357\t20660.4\t24841.6\nAYCA-N50IV\tVermont, Fernadell\tReady for service\t-33.5811619493067\t150.859265867241\t18864.0\t24392.4\nAYCA-RZ1UT\tPhase 2 Single LEAP Robertson Barracks\tReady for service\t-12.4381023599208\t130.975075679746\t19879.8\t22372.8\n17346283\tBellevue Hill Estate\tCheck with carrier\t-32.592495776\t149.562792736\t22020.2\t24609.0\nAYCA-E0VG1\tGracewood Kellyville\tReady for service\t-33.7192705851282\t150.942280808775\t19857.8\t22076.0\nAYCA-RBWFU\tGolden Bay\tReady for service\t-32.418280991871\t115.76247194129\t17785.6\t20940.2\nAYCA-UFCXA\tSaddlers Ridge\tUnder construction\t-32.7612562330972\t151.53493159951\t17567.2\t22899.6\nAYCA-FTSDU\tOakdene Estate\tReady for service\t-38.2384317605686\t144.54527020194\t17025.2\t24740.0\nAYCA-J3YYH\t330 Bridge Inn Road\tUnder construction\t-37.6015940565486\t145.069762768022\t17557.8\t19829.2\nAYCA-SS6F2\tThe Woods\tReady for service\t-37.5371740000247\t144.915389999993\t19605.2\t25543.8\nAYCA-1JRAKC\tWaverley Parks Estate Willowvale\tReady for service\t-27.8269472505816\t153.280826659875\t18673.8\t23833.4\nAYCA-T4NHQ\tOld Broadwater Farm\tReady for service\t-33.6679280396088\t115.310452530096\t22400.8\t24832.6\nAYCA-FD0UW\tThe Grove\tReady for service\t-38.0903093305982\t145.281703115116\t24282.8\t23132.0\n17331693\tHunt Club Village Shopping Centre\tCheck with carrier\t-38.100317034\t145.292970976\t16429.0\t25297.4\nAYCA-K7DRA\tJohnston Stage 2\tReady for service\t-12.4878039566524\t131.00690499391\t21990.2\t22143.8\nAYCA-1RC93R\tSubdivision of Lot 3333, Katherine East\tContracted\t-14.466671523834\t132.297197632446\t24071.8\t23403.8\n17315991\tSteele Road Logan Village\tCheck with carrier\t-27.7712690325\t153.115872128\t23458.0\t22302.2\n10545\tMurray-Murray River Country Estate\tReady for service\t-32.6095100377231\t115.85558697581291\t16446.0\t25777.2\n10551\tMurray-Murray River Country Estate\tReady for service\t-32.603443925540866\t115.85722647607327\t17074.0\t26951.4\nAYCA-18LJI2\tSpring Farm\tContracted\t-34.0714520000158\t150.737881999989\t21076.2\t24580.8\nAYCA-1F0VFN\tFranklin Place\tReady for service\t-38.1820110000299\t146.545633\t14980.8\t24848.2\n10297\tDawesville-Florida Beach\tReady for service\t-32.62276827172043\t115.62710702419281\t17451.4\t24220.4\nAYCA-1FZM3S\tWaterlink Estate\tUnder construction\t-36.7205260000284\t142.211344\t21449.6\t26217.0\n17327844\t85 Brooking Road Gisborne\tCheck with carrier\t-37.5056739945\t144.601026848\t19887.8\t22916.0\nAYCA-JNMSX\tYanchep Golf Estate\tReady for service\t-31.5470222925299\t115.655937330626\t16552.0\t25067.6\n10111\tBaldivis-Tuart Ridge\tReady for service\t-32.34506663589533\t115.81529080867767\t19152.8\t26377.6\nAYCA-KEB94\tThe Village at Wellard\tReady for service\t-32.2718680080145\t115.822316290807\t19896.6\t23525.8\nAYCA-13EJEY\tMaddington Rd,Alcock St- Maddington\tUnder construction\t-32.0427570000128\t115.99974\t21033.4\t22252.0\nAYCA-1BUV12\tHighgrove Estate\tContracted\t-38.1132090000285\t145.329204999998\t20592.2\t20332.0\nAYCA-TXGI1\tPlenty River Views\tReady for service\t-37.4982092374781\t145.109534845624\t21746.4\t23521.6\nAYCA-LTU0Z\tThe Dunes\tReady for service\t-38.305781828889\t144.330300660642\t17337.0\t25067.4\nAYCA-1ZAGER\tBunnings Warehouse Glendale\tContracted\t-32.9423760000163\t151.627208999998\t17147.4\t25025.0\nAYCA-J3RSC\tNabilla Riverlinks\tReady for service\t-21.155124074927\t148.959075130306\t20464.0\t20715.2\nAYCA-1MF8QB\tTindal Avenue, Beeliar\tUnder construction\t-32.1345160000132\t115.808323\t20326.0\t22533.8\n10663\tTapping The Kestrels\tReady for service\t-31.722027374956312\t115.79255104064941\t22475.8\t24780.4\n154\tWater Edge\tReady for service\t-38.07048619596557\t145.3278744938933\t18544.2\t26238.4\nAYCA-JU3C3\tZuccoli\tReady for service\t-12.5038714941515\t131.007866215672\t20655.4\t24551.8\n17117399\tKooringa Valley - stage 1\tCheck with carrier\t-27.5173340365\t151.901484128\t20625.0\t25132.2\nAYCA-1N5EWQ\tThe Rise\tContracted\t-38.1779480000299\t146.561114\t23949.2\t25791.2\nAYAA-FI1F0\tCliftleigh Residential Estate\tReady for service\t-32.7895661017861\t151.514588914151\t20922.8\t24228.8\nAYCA-R8A12\tCormiston Upper\tContracted\t-41.4003750000277\t147.080731\t18932.8\t26095.0\nAYCA-1J45BM\tCarinity Aged Care - Fairfield Waters\tUnder construction\t-19.3082003990128\t146.807784719803\t18294.8\t23120.0\n10700\tWannanup-Port Bouvard North\tReady for service\t-32.59278599910757\t115.65177261829376\t23020.6\t22511.8\n10155\tBanksia Grove\tReady for service\t-31.69622809346543\t115.80467998981476\t19649.6\t24441.8\nAYCA-18GJLW\tAurora Estate\tContracted\t-37.6146450000259\t145.001675999995\t19888.4\t22687.4\n17252433\tChurchfield\tCheck with carrier\t-34.102176029\t150.790938848\t21345.0\t22338.4\n10374\tEglington-Allara\tReady for service\t-31.577557425927434\t115.66079020500183\t22868.8\t23219.0\nAYAA-G53SW\tGlenmore Ridge\tReady for service\t-33.8009985073084\t150.680567514446\t21305.2\t24483.8\nAYCA-198O38\tGlenview Estate\tUnder construction\t-27.5569409999816\t151.898128\t20729.8\t25265.4\n10577\tSecret Harbour\tReady for service\t-32.41216278036248\t115.76191484928131\t17785.6\t20940.2\n10216\tClarkson-Somerly\tReady for service\t-31.692362057588973\t115.72820484638214\t21174.0\t24990.6\nAYCA-WDCA1\tThe Ponds\tReady for service\t-33.7064140000126\t150.898332999986\t20083.6\t23585.0\nAYAA-ESVR8\tQuarters\tReady for service\t-38.0985862731359\t145.253535845232\t18951.2\t23685.8\n10395\tIluka\tReady for service\t-31.733395875766995\t115.73339223861694\t19410.4\t24236.8\n10004\tAveley-Vale\tReady for service\t-31.79377591518981\t115.98265528678894\t23497.2\t21903.4\nAYCA-IKFNQ\tCaddens Road, Kingswood\tReady for service\t-33.7749321775366\t150.732427925935\t17598.4\t21393.4\n10613\tSecret Harbour-Anstey Park\tReady for service\t-32.405161818926416\t115.7690455019474\t16931.6\t22374.6\nAYCA-1FBKCC\tVantage\tUnder construction\t-32.7242332800109\t152.11326132\t20325.2\t24213.8\n10118\tCarramar-Banksia Grove\tReady for service\t-31.70006751072969\t115.79432129859924\t22056.2\t25031.6\nAYCA-13X8E1\tRiemore Downs Estate\tUnder construction\t-27.8880325616494\t153.111054854636\t21179.4\t23515.6\n10544\tMurray-Murray River Country Estate\tReady for service\t-32.606426477329705\t115.85716210305691\t16446.0\t25777.2\nAYCA-RJUQM\tGoogong Township\tReady for service\t-35.4144397061314\t149.235661448984\t20986.2\t26356.0\nAYCA-W4ML9\tHeights Durack\tReady for service\t-12.4702565470322\t130.979350484024\t22860.2\t24013.6\nAYCA-1D96Q5\tCasey 4\tReady for service\t-35.1768342022029\t149.09373520338\t20885.8\t22303.0\nAYAA-FPRLN\tBluestone Green\tReady for service\t-37.8955127533772\t144.60797247417\t16476.0\t25418.6\nAYCA-1IP7M3\tHunt Club Estate\tContracted\t-38.1112793229141\t145.300113062036\t22572.0\t23986.8\n17319025\tIsaac Views\tCheck with carrier\t-21.995396002\t148.066696096\t17956.2\t24375.4\nAYCA-F9XI8\tToolern Waters\tContracted\t-37.7167718217348\t144.561908358791\t18429.0\t22839.0\n79\tWildflower Ridge\tReady for service\t-27.690741712392327\t152.9201320841761\t26086.8\t22307.6\n10312\tDawesville-Dawesville Ridge\tReady for service\t-32.6230624077761\t115.63646256923676\t16009.6\t25280.2\nAYAA-GHEC9\tProvidence Estate\tReady for service\t-37.6239441054423\t144.884572459401\t20883.8\t24136.8\nAYAA-GGXGS\tProvidence Estate\tReady for service\t-37.6249702235692\t144.892266446432\t22284.6\t23892.2\n10040\tAveley-Vale\tReady for service\t-31.77101942381642\t115.98254799842834\t24256.0\t23918.2\nAYCA-HZYR1\tArbourlea\tReady for service\t-38.0828084141228\t145.326774694117\t18511.4\t24406.0\n17334900\tMinto Renewal Project\tCheck with carrier\t-34.036637041\t150.851014912\t16671.2\t23823.6\nAYCA-ICLSQ\tVillage Square Estate\tReady for service\t-33.9539837867809\t150.85348955162\t22932.6\t23873.8\nAYCA-1DG0KG\tWolstenholme Drive final stage\tReady for service\t-42.7806744458159\t147.545286116511\t20857.4\t23170.4\nAYCA-F191C\tEdmondson Park South P1\tReady for service\t-33.9813315071457\t150.854876963875\t23144.8\t24256.0\n10603\tSecret Harbour\tReady for service\t-32.40815070727752\t115.75285837054253\t18912.6\t20619.4\n17340486\tWest Park Industrial Estate\tCheck with carrier\t-37.8022170065\t144.740836992\t24790.4\t23069.2\nAYAA-H9HQB\tParagon Estate\tReady for service\t-37.9105173700591\t144.760691293499\t22562.4\t24608.6\nAYAA-FPSHQ\tBridge Inn Rise Estate\tReady for service\t-37.6010320000267\t145.119855999996\t18800.4\t25852.6\n194\tAvondale Heights \tReady for service\t-37.76578967741349\t144.86028228759304\t19376.4\t22712.6\nAYCA-NLQCQ\tThe Glades\tReady for service\t-34.7875775698901\t138.59904494578\t22760.0\t24922.2\nAYCA-PT8T9\tGrey Gum Estate\tReady for service\t-33.6871960958341\t150.938493459122\t20342.0\t24900.8\nAYCA-FDMGP\tSpringlands Estate\tReady for service\t-37.7128286267871\t144.723910254727\t16978.4\t24745.0\nAYAA-GR8X0\tElizabeth Hills\tReady for service\t-33.8996909239624\t150.843414378787\t20516.4\t25692.0\nAYCA-DLVJU\tSettlers Run Estate\tReady for service\t-38.1348295175072\t145.251979560089\t19426.6\t22527.8\nAYAA-FEBBY\tCarlingford Estate\tReady for service\t-37.6627376909728\t144.987274126825\t21050.6\t25338.2\nAYCA-VPX4J\tKirkham Rise\tReady for service\t-34.022790678117\t150.705375039098\t19554.8\t27735.0\nAYCA-KD23I\tRenaissance Rise\tReady for service\t-37.6023091045257\t145.081302875535\t18714.2\t21452.8\nACPV\tPalmview\tReady for service\t-26.73523804255589\t153.06353615169382\t21010.8\t24742.2\nAYCA-G8KWU\tSpring Farm\tReady for service\t-34.0658369930352\t150.735698234826\t20489.8\t26185.6\nAYCA-I9H4I\tOsprey Subdivision\tReady for service\t-20.4157163291041\t118.614106529595\t19904.6\t25647.4\nAYAA-GNWAI\tEstuary\tReady for service\t-38.2012828124497\t144.455436423453\t17837.2\t20761.8\nAYAA-FXOCV\tTuart Ridge\tReady for service\t-32.34050648256\t115.813532501132\t19003.2\t25307.8\nAYCA-1VT8Y4\tRobinson Park\tContracted\t-32.0839373972776\t115.995133701198\t16227.0\t24652.0\n17341648\tDiamond Crescent\tCheck with carrier\t-33.895387894500004\t150.8808672\t18973.0\t21058.0\nAYCA-WHHP1\tThe Vines\tReady for service\t-32.8286091895677\t151.323950914147\t15438.4\t24190.6\n172\tGemstone Rise\tReady for service\t-27.572448933673176\t151.9103253116011\t19085.0\t24623.2\nAYCA-LJ5ZI\tMcKeachies Run\tReady for service\t-32.6974762147736\t151.538040753666\t18312.8\t22832.8\n10475\tLakelands\tReady for service\t-32.46648649795694\t115.76568603515625\t21679.6\t27125.0\nAYAA-FUGCA\tSaratoga Estate\tReady for service\t-37.9066893056224\t144.71646045913\t22788.4\t23839.4\nAYCA-17GFGC\tQuarters\tReady for service\t-38.0967720000281\t145.249468999997\t19670.6\t23719.0\n10220\tClarkson-Somerly\tReady for service\t-31.686396087611623\t115.73165953159332\t18085.4\t23107.0\nAYCA-11AP93\tSomerset Rise\tReady for service\t-36.0236020070927\t146.984624526909\t19751.4\t25368.0\nAYCA-U7W4J\tLakeland Development (VR Land)\tContracted\t-38.076076000029\t145.434943999999\t16354.8\t22748.0\nAYAA-G9SX5\tSussex Rise\tReady for service\t-35.1593660247606\t150.581802283005\t15644.8\t23201.6\n10214\tClarkson-Somerly\tReady for service\t-31.683762174712466\t115.7305920124054\t15798.8\t21451.8\nAYCA-FKVUE\tKialla Lakes Estate\tReady for service\t-36.4323583231229\t145.402353581587\t21039.8\t23906.6\n10669\tWandi-Honeywood\tReady for service\t-32.19070947854437\t115.86132287979126\t18215.6\t22664.6\nAYCA-1IFF61\tGlebe Hill\tContracted\t-42.8837890000249\t147.430894\t18238.4\t23306.8\nAYCA-189CVK\tHeron Park\tReady for service\t-32.1181321904035\t115.936707412129\t21299.4\t22939.0\n17399469\tHolmesglen Private Hospital\tCheck with carrier\t-37.935096993500004\t145.050038016\t20554.4\t24837.4\nAYCA-GDD50\tPennyroyal Development\tReady for service\t-37.6577821951206\t144.578526996617\t18974.2\t25301.6\nAYCA-16LJ11\tNorfolk Estates Pty Ltd\tUnder construction\t-27.8330656161685\t153.326696189634\t21780.0\t23144.2\nAYCA-FCJYS\tReid Street Subdivision\tReady for service\t-26.5598998844113\t148.779103252302\t20965.0\t21443.6\nAYCA-J6QDT\tSanctuary\tReady for service\t-32.8700009812975\t151.644906313186\t18883.8\t25015.2\nAYCA-JJ268\tBungarribee (Bunya)\tReady for service\t-33.7754688239224\t150.868040389349\t17623.0\t23258.6\n17147925\tMallia Subdivision\tCheck with carrier\t-37.4063609625\t144.963704896\t23570.6\t23414.2\n17289902\tDales Rd\tCheck with carrier\t-38.373669001\t142.518738976\t22638.8\t22480.6\nAYCA-EEDPT\tNewleaf Bonnyrigg Development\tReady for service\t-33.8885391409453\t150.895881918938\t17522.0\t25382.8\n17328894\tIndooroopilly Shopping Centre\tCheck with carrier\t-27.49784301\t152.973822976\t21648.6\t20344.6\nAYCA-G6YEX\tEast Newman\tReady for service\t-23.3565346916548\t119.748159268223\t17015.0\t23401.8\nAYCA-LDBQ3\tNabilla Riverlinks\tReady for service\t-21.1565352551378\t148.95891731688\t20464.0\t20715.2\n17326917\tJoondalup Business Park South\tCheck with carrier\t-31.7572630115\t115.768271872\t19650.2\t25804.4\nAYCA-ZTGYS\tAurora Estate\tReady for service\t-37.6164610000256\t145.000503999995\t19888.4\t22687.4\nAYAA-FPPUI\tThe Ponds\tReady for service\t-33.706787340221\t150.902998287707\t18264.8\t24267.4\nAYCA-1F6W0L\tStage 1\tReady for service\t-27.2346020099783\t152.98472448\t20689.2\t23054.4\n17332519\tKalimna Park - stage 12\tCheck with carrier\t-27.4353350435\t151.938828\t20598.2\t25477.8\n239\tRipley Valley\tReady for service\t-27.668471218456073\t152.78388176915914\t22927.0\t22871.2\nAYAA-GHIU2\tProvidence Estate\tReady for service\t-37.6221723380054\t144.891117820951\t20883.8\t24136.8\nAYAA-F3CHZ\tNewhaven\tReady for service\t-32.1331908950702\t115.930736211416\t16257.2\t25647.2\nAYCA-EZXP3\tHidden Waters\tReady for service\t-32.8837089157827\t151.639558370114\t18883.8\t25015.2\nAYCA-KBSOQ\tHuntington Rise\tReady for service\t-27.9184949999847\t153.287132\t20267.4\t21354.4\n10218\tClarkson-Somerly\tReady for service\t-31.685108811962056\t115.72906851768494\t15798.8\t21451.8\nAYCA-JY3KC\tOakdene Estate\tReady for service\t-38.238505748673\t144.545255663843\t17025.2\t24740.0\nAYCA-1ED0W6\tElderslie\tUnder construction\t-34.0564940000155\t150.722491999989\t17269.0\t23621.6\n10583\tSecret Harbour\tReady for service\t-32.416944979494694\t115.75388431549072\t18912.6\t20619.4\n17359417\t1550 Pascoe Vale Road Coolaroo\tCheck with carrier\t-37.645206193\t144.933915968\t18803.4\t25872.6\nAYAA-G0M8Z\tSouth at Seaford Meadows\tReady for service\t-35.1712591559897\t138.484664684411\t25272.6\t23429.2\n17341536\tWyreema Estate\tCheck with carrier\t-27.654777992\t151.869831136\t19476.8\t22420.8\nAYCA-EWZHS\tSouth at Seaford Meadows\tReady for service\t-35.1725839127242\t138.484732855314\t25272.6\t23429.2\nAYAA-F8LET\tOrmeau Ridge\tReady for service\t-27.8018459693702\t153.25226694043\t19521.6\t21598.0\nAYCA-VHOKB\tAurora Estate\tReady for service\t-37.6192571596227\t144.996540243027\t18145.8\t23570.0\n17359833\t75-81 Bremen Street Hemmant\tCheck with carrier\t-27.455191833500002\t153.139708768\t22333.4\t20903.2\nAYAA-HJXUR\t165 Rowes Lane\tReady for service\t-37.4196941109529\t144.965936354376\t20098.0\t21833.4\nAYCA-Q23DQ\tStrzelecki Views Estate\tReady for service\t-38.2064062373483\t146.165903487972\t18569.2\t24658.4\nAYCA-DIOLX\tOcean Club Residential Community\tReady for service\t-31.5666562701162\t152.831779795737\t20651.2\t25095.0\n17335051\tSt Eyre Estate\tCheck with carrier\t-32.5007980285\t137.733543008\t23841.8\t25734.8\nAYCA-KJ1FN\tThe Parc\tReady for service\t-33.719577830225\t150.950595156373\t19643.0\t21717.4\n17348299\tBeaumount Park\tCheck with carrier\t-36.047103303\t147.020243776\t19458.4\t20622.2\n17355577\tFersfield Road \u0026 Willowbank Road Gisborne\tCheck with carrier\t-37.4967479665\t144.592994176\t20022.8\t23103.4\n1143\tProposed Development Site\tReady for service\t-37.8177849378873\t144.934485623438\t19676.2\t25104.4\nAYCA-1FMEEC\tBarlow Estate\tContracted\t-27.5289549999814\t151.91544\t17593.4\t21483.8\nAYCA-1940S3\tAlarah Estate\tUnder construction\t-38.1107970000281\t145.248546999997\t23039.2\t25207.8\nAYAA-FKLI6\tHalcyon Landing Bli Bli\tReady for service\t-26.6174680398293\t153.03895856369\t20896.4\t27981.4\n10594\tSecret Harbour\tReady for service\t-32.41548838997459\t115.76508186757565\t17785.6\t20940.2\nAYCA-10P92J\tSt Anthony\u0027s - Secret Harbour\tUnder construction\t-32.3999940000145\t115.762005\t19191.2\t20236.2\nAYCA-139S5J\tGolden Bay\tReady for service\t-32.4205202560757\t115.755524712345\t18912.6\t20619.4\nAYCA-1HPMUJ\tPeregian Breeze\tUnder construction\t-26.4864609999726\t153.078679\t22579.6\t24757.6\nAYCA-1NJD6X\tAspiri\tUnder construction\t-32.1445270000132\t115.916003\t21514.4\t26428.6\n10629\tStirling-Princeton\tReady for service\t-31.897763880376377\t115.81708252429962\t21400.8\t22399.2\nAYCA-KYBBZ\tSaratoga Estate\tReady for service\t-37.9077956180254\t144.718687648885\t20439.4\t23376.4\n89\tVictoria Harbour\tReady for service\t-37.8193148648327\t144.9425101994443\t21579.8\t23064.8\n10478\tLakelands\tReady for service\t-32.46939213628661\t115.76628684997559\t23219.4\t26541.0\nAYCA-ZDHI7\tAspiri\tReady for service\t-32.141551422264\t115.917500191323\t21514.4\t26428.6\nAYCA-JBYRH\tKirkham Rise\tReady for service\t-34.0241027745067\t150.707736011559\t19230.4\t28337.4\nAYCA-IUBNF\tLots 156-158 \u0026 169 Landsdale\tReady for service\t-31.8174764837792\t115.873276630402\t23435.4\t23866.8\n10332\tDudley Park-Mariner\u0027s Cove\tReady for service\t-32.55575737027896\t115.73980003595352\t20489.2\t23017.0\n17231671\tLots 639-642 Horus Bend Bibra Lake - Stage 3\tCheck with carrier\t-32.098437995\t115.814032992\t16557.4\t23593.2\nAYCA-HRACE\tGreenhills Beach Residential\tReady for service\t-34.0341041256818\t151.161808804036\t18744.8\t24791.6\n17322671\tAlbert Park Stage 5\tCheck with carrier\t-37.5462279925\t143.926175168\t16252.8\t23810.2\nAYCA-O1HNI\tAspiri\tReady for service\t-32.1403086957267\t115.912551774299\t21514.4\t26428.6\n17340366\tRed Ochre\tCheck with carrier\t-31.478602007000003\t152.872635008\t22614.0\t24360.4\nAYCA-SJ3BD\tThe Village at Wellard\tReady for service\t-32.2738274722911\t115.824519064651\t19896.6\t23525.8\nAYCA-E2RAD\tRees Road, Brookfield\tReady for service\t-37.7097882370117\t144.556781497763\t17705.4\t23420.4\n10113\tBaldivis-Tuart Ridge\tReady for service\t-32.339206464431314\t115.81399261951447\t19003.2\t25307.8\nAYCA-KYW9J\tEstella\tReady for service\t-35.0802781835745\t147.351224224319\t21554.2\t26432.4\n10509\tLakelands\tReady for service\t-32.469058142569\t115.778067111969\t21399.8\t25520.2\nAYAA-G2694\tThe Ponds\tReady for service\t-33.7037820097858\t150.906557791334\t18396.8\t25013.0\nAYCA-10NFWS\tTwin Waters Estate\tReady for service\t-34.9143320000157\t150.614387999986\t21031.4\t22560.2\nAYCA-PCUQ6\tJohnston Stage 2\tReady for service\t-12.4880008665144\t131.008389200094\t21545.0\t23224.2\nAYCA-15R7EA\tByford West\tReady for service\t-32.2256277021986\t115.976886020093\t21172.8\t20714.0\nAYCA-11QH4G\tThornton East Estate\tReady for service\t-32.7652340000161\t151.649705999999\t19925.2\t25320.0\nAYAA-G2EO2\tEagle Rise Estate\tReady for service\t-27.4682997975088\t152.562973981554\t20004.8\t25265.2\nAYCA-KVTM7\tGracemere Greens Estate\tReady for service\t-23.4647783600981\t150.467308434216\t20163.4\t22397.4\n10295\tDawesville-Port Bouvard South\tReady for service\t-32.61153146605253\t115.63187062740326\t20947.6\t25747.6\n156\tGrand Central Shopping Centre\tReady for service\t-27.5603446110652\t151.94767092229293\t19013.8\t24226.2\n10309\tDawesville-Dawesville Ridge\tReady for service\t-32.62408349325638\t115.63877463340759\t16009.6\t25280.2\nAYCA-ES8DH\tHillTop (Bennis)\tReady for service\t-34.4376222076966\t150.848479023084\t26392.0\t22415.4\nAYCA-MNFP2\tBrookford\tContracted\t-38.1144916738184\t145.314933876048\t15917.2\t22208.0\nAYCA-YGR8M\tLearmonth Street Subdivision\tReady for service\t-37.5588375241757\t143.810931456638\t20725.0\t24184.4\n17376001\tSpringview Estate\tCheck with carrier\t-37.8073679985\t140.750435008\t15611.4\t23795.6\nON-V-CNL-FUR\tFurlong Road\tReady for service\t-37.75588456672174\t144.79012191295624\t17593.2\t22607.4\n17324603\tMoonee Ridge Estate\tCheck with carrier\t-30.208320005\t153.15106896\t18112.2\t23549.2\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_-705022408",
+ "id": "20220727-124935_1412623321",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:34+0000",
+ "dateFinished": "2022-08-16T04:47:39+0000",
+ "status": "FINISHED"
+ },
+ {
+ "text": "%python\nz.show(new_site_df)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "language": "sql",
+ "editOnDblClick": false
+ },
+ "colWidth": 12.0,
+ "editorMode": "ace/mode/undefined",
+ "fontSize": 9.0,
+ "results": {
+ "0": {
+ "graph": {
+ "mode": "multiBarChart",
+ "height": 300.0,
+ "optionOpen": false,
+ "setting": {
+ "table": {
+ "tableGridState": {},
+ "tableColumnTypeState": {
+ "names": {
+ "DEVELOPMENT_ROLLOUT_ID": "number",
+ "LOC_UID": "number",
+ "DEVELOPMENT_NAME": "string",
+ "STATUS": "string",
+ "LATITUDE": "number",
+ "LONGITUDE": "number",
+ "TOTAL_COST": "number",
+ "TOTAL_REVENUE": "number"
+ },
+ "updated": false
+ },
+ "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
+ "tableOptionValue": {
+ "useFilter": false,
+ "showPagination": false,
+ "showAggregationFooter": false
+ },
+ "updated": false,
+ "initialized": false
+ },
+ "stackedAreaChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default"
+ },
+ "multiBarChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default",
+ "stacked": false
+ },
+ "lineChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default"
+ }
+ },
+ "commonSetting": {},
+ "keys": [
+ {
+ "name": "STATUS",
+ "index": 2.0,
+ "aggr": "sum"
+ }
+ ],
+ "groups": [],
+ "values": [
+ {
+ "name": "TOTAL_COST",
+ "index": 5.0,
+ "aggr": "sum"
+ },
+ {
+ "name": "TOTAL_REVENUE",
+ "index": 6.0,
+ "aggr": "sum"
+ }
+ ]
+ },
+ "helium": {}
+ }
+ },
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TABLE",
+ "data": "LOC_UID\tDEVELOPMENT_NAME\tSTATUS\tLATITUDE\tLONGITUDE\tTOTAL_COST\tTOTAL_REVENUE\n8\tMandalay\tReady for service\t-37.46798\t144.9582\t18440.0\t27444.2\n23\tBrighton\tReady for service\t-31.65684\t115.70471\t19166.0\t23435.4\n119\tArcadia\tReady for service\t-38.07084494642178\t145.43561612126868\t16998.8\t23317.4\n37\tSpringfield Central\tReady for service\t-27.682974884308496\t152.91246017602205\t26901.8\t22150.6\n35\tYarrabilba\tReady for service\t-27.797998206\t153.101112401\t19592.0\t22519.6\n63\tElliot Springs\tReady for service\t-19.401424360582585\t146.86272523475841\t17163.6\t22134.4\n73\tAlkimos Beach\tReady for service\t-31.603789876\t115.681571085\t17232.8\t23476.4\n274\tAlkimos Vista\tReady for service\t-31.60329949166057\t115.6701798417717\t16931.6\t23548.8\n66\tCalderwood Valley\tReady for service\t-34.55546994973096\t150.75436137069624\t19298.2\t23977.4\n263\tEynesbury\tUnder construction\t-37.7910746733703\t144.5355847930891\t16763.8\t27185.6\n9\tOran Park\tReady for service\t-33.99488\t150.72662\t17574.2\t24392.4\n133\tSpringfield Rise\tReady for service\t-27.695522398191628\t152.8959551906582\t25843.2\t25099.8\n17325842\tPart Section 4574 Goode Road Subdivision\tCheck with carrier\t-12.6280940325\t131.136419168\t16962.6\t23033.2\n54\tAtherstone\tReady for service\t-37.70794\t144.58145\t26412.6\t26500.8\n307\tSanctuary Cove\tUnder construction\t-27.869021570119873\t153.3576214596788\t15030.4\t24972.0\n75\tHarpley\tReady for service\t-37.912572931\t144.625651148\t14821.4\t22920.6\n137\tWestbrook\tReady for service\t-37.834372936889345\t144.6912409809133\t22139.2\t25734.6\n28\tJordan Springs\tReady for service\t-33.72444837965098\t150.7529925477441\t19371.6\t29354.0\n40\tThe Hermitage\tReady for service\t-33.999267672\t150.782646178\t20850.6\t25651.8\n86\tArmstrong Creek\tReady for service\t-38.219653804\t144.337797674\t15169.8\t22975.8\n12\tWaterford County\tReady for service\t-32.76639\t151.63323\t15208.0\t23994.2\n17346815\tKilgariff\tCheck with carrier\t-23.770110992\t133.874777984\t24732.8\t24870.6\nON-Q-CM\tCoomera Waters\tReady for service\t-27.844502585656677\t153.34836959838867\t18700.8\t22525.2\n150\tBrighton - Ridgewood\tReady for service\t-31.668997101580473\t115.72628719298541\t21109.0\t23038.0\n17348681\tJerberra Estate\tCheck with carrier\t-35.0503108155\t150.617052\t21621.2\t27593.6\n112\tTulliallan\tReady for service\t-38.07325420365761\t145.32472823624735\t17375.4\t26864.4\n103\tDelaray\tReady for service\t-38.1054664324721\t145.34451757431034\t19434.0\t22365.2\n177\tMovida\tReady for service\t-31.880915344780455\t116.02860284367573\t17173.4\t24249.8\n17330606\tBenjamin Estate\tCheck with carrier\t-12.5455349705\t131.178166912\t20701.4\t24904.4\n222\tAmber\tReady for service\t-37.5901190955084\t144.9926761245665\t20290.0\t24308.4\n95\tNorth Harbour\tReady for service\t-27.12189866458404\t152.9953961986942\t18420.6\t23135.8\n18\tTrinity\tReady for service\t-31.63125\t115.6923\t19744.4\t21161.2\n6\tGregory Hills\tReady for service\t-34.02859\t150.76602\t21295.2\t26651.4\n48\tWaterford Melton\tReady for service\t-37.71846\t144.56231\t21531.4\t21999.8\n265\tMt. Atkinson\tUnder construction\t-37.74787485827774\t144.68840633391846\t25250.6\t21633.2\n5\tSpringwood\tReady for service\t-34.6028\t138.76311\t18236.8\t27101.2\n169\tThornhill Park\tReady for service\t-37.70310491027097\t144.62098096373794\t21939.8\t23468.6\n220\tBotanical\tReady for service\t-37.56278183676677\t144.8842612361972\t16907.4\t22684.2\n124\tSt. Germain\tUnder construction\t-38.09153958890924\t145.35089050295065\t21396.2\t23230.6\n29\tRopes Crossing\tReady for service\t-33.71985\t150.78022\t20240.0\t24173.6\n302\tMount Gilead\tUnder construction\t-34.11922208553677\t150.79637561797068\t18153.2\t22136.8\n17352628\tWalgrove Stage 3\tCheck with carrier\t-34.879298351\t148.972882176\t22662.8\t21091.6\n36\tEcco Ripley\tReady for service\t-27.690283476217093\t152.792975736585\t19075.4\t22592.8\n85\tSomerfield\tReady for service\t-38.013076203\t145.163782188\t19546.8\t23876.0\n1\tNoosa Waters\tUnder construction\t-26.4021826\t153.0615905\t20748.0\t24423.6\n4\tFernbrooke\tReady for service\t-27.649980000000006\t152.84131999999997\t18604.0\t25718.4\n27\tGrandvue\tReady for service\t-38.06422199480529\t145.42937690489117\t21233.0\t23872.4\n94\tThe Pines\tReady for service\t-23.15793858635379\t150.7088666997396\t20113.4\t23855.8\n30\tMarriott Waters\tReady for service\t-38.077606995\t145.239757322\t23739.8\t26873.6\n199\tVerdant Hill\tUnder construction\t-37.817526995212646\t144.67540298462276\t20902.6\t21606.2\n2\tAlamanda\tReady for service\t-37.91384960992702\t144.74352936555584\t25219.2\t24307.6\n223\tRathdowne\tReady for service\t-37.60362794600752\t144.98134082402584\t19838.6\t24601.8\n166\tGen Fyansford\tReady for service\t-38.13604424640745\t144.3176150775032\t22903.4\t23590.8\n118\tEastland Shopping Centre\tReady for service\t-37.81043931231062\t145.23779297099972\t19536.4\t24682.2\n352\tThe Hermitage (SEKI)\tReady for service\t-34.01737882595945\t150.76310090845152\t18021.6\t23293.2\n180\tBrookhaven\tReady for service\t-27.734339958204625\t153.17479691902153\t16415.2\t22792.4\n262\tBingara Gorge\tUnder construction\t-34.22852815365605\t150.67522570933588\t20444.0\t26780.2\n17350712\tThe Ridge\tCheck with carrier\t-33.541005243\t150.919743232\t18206.0\t22667.6\n226\tFlourish\tUnder construction\t-27.680557076021895\t152.75919471740568\t23720.8\t22118.4\n69\tUniversity Hill\tReady for service\t-37.67879\t145.06972\t18125.8\t24432.6\n17329992\tLots 2-3 Golf Links Road Wundowie\tCheck with carrier\t-31.731990994\t116.361575008\t21014.6\t25748.0\n183\tThe Peninsula\tReady for service\t-27.67932432276379\t152.90982757569347\t24487.2\t23684.2\n17361458\tBlackmore Subdivision\tCheck with carrier\t-12.7275434465\t130.919370368\t22422.2\t23260.4\n17346227\tRidge View Estate\tCheck with carrier\t-12.8086149605\t131.053826176\t21621.6\t23711.4\n3\tBlakes Crossing\tReady for service\t-34.67067\t138.70131\t21298.2\t22845.6\n17317496\tRoche Creek Road Wandoan\tCheck with carrier\t-26.114619951\t149.992989856\t18565.4\t23261.2\n286\tMinta Farm\tUnder construction\t-38.077836007648486\t145.36372219087\t20844.4\t24486.6\n237\tKinbrook\tReady for service\t-37.541772522962034\t144.9586871719261\t17987.0\t24744.8\n42\tChancellor\tReady for service\t-37.68643919487637\t145.0934309349293\t20404.2\t21586.2\n123\tSeaside\tReady for service\t-32.856728450325335\t151.81044193518323\t18557.4\t21511.6\n61\tBerwick Waters\tReady for service\t-38.076523384598765\t145.35105203575029\t19340.2\t24673.4\n17362675\tGolf Links Road Wundowie\tCheck with carrier\t-31.731914996\t116.361575008\t21014.6\t25748.0\n284\tSussex Inlet\tUnder construction\t-35.145242466816605\t150.5873778915308\t20756.0\t24374.4\n82\tModeina\tReady for service\t-37.741855443\t144.749644009\t21125.4\t20958.6\n68\tBrentwood Forest\tReady for service\t-27.642904867\t152.880475846\t15703.6\t23750.8\nON-Q-GC-EcoVill\tEco Village, Currumbin Valley\tReady for service\t-28.176020023448768\t153.42949161770866\t23634.8\t24644.4\n136\tJindee\tReady for service\t-31.645613986187424\t115.69413457871279\t17346.8\t23220.0\n102\tAlira\tReady for service\t-38.04436956469803\t145.32106433870212\t17575.8\t25286.0\n7\tLightsview\tReady for service\t-34.85796\t138.63601\t22268.6\t24199.6\nON-V-LSP\tLakeside, Pakenham\tReady for service\t-38.072927\t145.435528\t16998.8\t23317.4\n17324634\tDrivers Run\tCheck with carrier\t-41.432627961499996\t147.21321888\t21854.8\t23505.2\n17316139\tPort Hedland International Airport Precinct 3\tCheck with carrier\t-20.3850569715\t118.610489152\t22979.4\t24308.6\n140\tGreenlea\tReady for service\t-32.29440226891333\t115.8279660797097\t19514.8\t23025.6\n17348174\tCaviar Drive\tCheck with carrier\t-26.387840605\t146.298855616\t19610.4\t24114.0\n313\tCanopy\tUnder construction\t-38.11076284000009\t145.25756294999746\t21336.0\t23611.4\nAYAA-J6EL5\tGrantham Rebuild Project\tReady for service\t-27.5642384987419\t152.189940289936\t17167.2\t24050.0\n47\tMaplewood\tReady for service\t-37.714\t144.56265\t18429.0\t22839.0\n17329519\tMcMahon Road North Dandalup\tCheck with carrier\t-32.503848031000004\t115.930991872\t21394.2\t22223.8\n32\tWoodlands\tReady for service\t-27.72047\t153.15887\t18573.4\t23098.2\nAYAA-GBGC1\tKrystal Park Estate\tUnder construction\t-33.9119984699961\t120.13371719996\t17520.4\t23572.2\n17347518\tRiver Bend\tCheck with carrier\t-37.800278003\t147.737944096\t20888.2\t21386.6\n238\tExford Waters\tUnder construction\t-37.72870832579734\t144.57431589126315\t22623.8\t23216.4\n224\tTrue North\tUnder construction\t-37.61704689321036\t144.91319690701724\t15787.2\t25520.8\n348\tDonnybrae\tUnder construction\t-37.538066721261295\t144.9750416114666\t17762.8\t23575.8\n45\tGreenvale Gardens\tReady for service\t-37.62173695362797\t144.88392554244993\t20883.8\t24136.8\n55\tCraigieburn\tReady for service\t-37.59183713555152\t144.91833857808493\t21312.2\t24012.0\n46\tCurlewis Park\tReady for service\t-38.17030866\t144.552845283\t17598.8\t23743.6\n300\tRidgeview\tReady for service\t-27.180970349691385\t152.92398963929068\t20108.2\t25050.8\n17362862\tGillkrest\tCheck with carrier\t-33.508577629\t149.187270976\t24367.0\t21610.0\n53\tAspire\tReady for service\t-37.7071699681171\t144.72471421132394\t18504.0\t23275.0\n168\tSunbury Fields\tReady for service\t-37.55414704520112\t144.72058211325393\t23735.0\t23150.8\n3\tGateway Business Park\tUnder construction\t-23.16892639545118\t150.6975458127288\t16901.0\t22294.4\n17197764\tHeritage Hills \tCheck with carrier\t-33.2903079875\t115.834854944\t17927.2\t25109.0\n25\tCasiana Grove\tReady for service\t-38.117325487\t145.241297532\t20422.6\t24134.0\n17345766\tAvon Ridge\tCheck with carrier\t-31.750261002000002\t116.094329984\t22046.0\t25918.4\n192\tAlbright\tReady for service\t-37.82327629224027\t144.72443376542194\t23441.2\t26915.2\n49\tPasadena\tReady for service\t-38.1199733\t145.326901918\t19454.2\t20175.2\n187\tQuay 2\tReady for service\t-38.30801646041315\t144.32025705337773\t18779.0\t24291.4\n161\tAbiwood 660\tReady for service\t-38.10452062882804\t145.33696983813107\t20148.8\t23052.0\n17383368\tHumewood Pl Luddenham\tCheck with carrier\t-33.848964993500005\t150.755635008\t16858.6\t21729.8\n10\tParkBridge\tReady for service\t-33.91103\t150.83601\t18915.8\t25249.8\n250\tAquarevo\tUnder construction\t-38.07126647363257\t145.24955213212104\t25432.0\t25333.6\n17376685\tHarold Circuit\tCheck with carrier\t-31.080961009000003\t152.890432\t19508.4\t25941.2\n70\tCentral Hills\tReady for service\t-34.02411\t150.75842\t18021.6\t23293.2\n60\tStoneleigh\tReady for service\t-27.709207521\t153.116339917\t16674.8\t25184.4\n326\tMambourin\tUnder construction\t-37.89016156795095\t144.59766150734774\t16419.0\t23826.0\n134\tBrookwater\tReady for service\t-27.658654038139588\t152.90161062834122\t18949.2\t24369.4\n167\tLife\tReady for service\t-37.90772667655167\t144.74404923692424\t19045.2\t25708.6\n308\tEllarook\tUnder construction\t-37.81174599477853\t144.72281371116424\t22607.0\t28104.2\nAYAA-H5USB\tGap Ridge Industrial Area\tReady for service\t-20.7372019200672\t116.765896746965\t19990.2\t25246.0\n17291731\tFishermans Rd\tCheck with carrier\t-33.4777957195\t115.577883712\t22181.2\t24283.2\n21\tEvergreen Waters\tReady for service\t-36.71591\t144.2837\t19934.6\t22542.0\n255\tRiverside at Tea Gardens\tContracted\t-32.64457220383459\t152.14687858579424\t20615.4\t24692.6\n17339141\tSwan Bay Estate\tCheck with carrier\t-41.282250026999996\t147.034243072\t23226.6\t22963.4\n17271033\tMarshmead\tCheck with carrier\t-31.0154570045\t150.223744992\t18726.8\t22401.8\n342\tWestwood\tUnder construction\t-37.69940908900018\t144.71112482498938\t18050.2\t25197.8\n17314584\tFig Tree Fields Estate\tCheck with carrier\t-28.647101971\t153.56134512\t20562.0\t24312.4\n17204078\tEurama Estate\tCheck with carrier\t-33.7120599615\t150.53916096\t21639.0\t26746.0\n26\tJackson View\tReady for service\t-38.1263\t145.85796\t17995.8\t23827.2\n162\tClydevale\tReady for service\t-38.09632791448807\t145.33187213534754\t20148.8\t23052.0\n210\tMeridian\tReady for service\t-38.09078808023383\t145.34457658290762\t18222.2\t22923.4\n297\tThe Orchard\tUnder construction\t-37.816153962518605\t144.65684209824462\t22408.4\t23075.4\n10514\tMaddington\tReady for service\t-32.02974797464645\t116.00603342056274\t22289.4\t23730.2\n11\tTea Trees\tReady for service\t-27.6976693876262\t152.90857676178814\t24174.8\t23805.6\n44\tGrand Lakes\tReady for service\t-38.025754875\t144.38463099\t15918.8\t24176.6\n56\tTrillium\tReady for service\t-37.563836207\t144.890532129\t16352.6\t21360.2\n17325360\tOnslow Aerodome Redevelopment\tCheck with carrier\t-21.6636330045\t115.115901984\t20929.6\t24284.0\n164\tAurora\tReady for service\t-37.606178773039986\t145.0053790664693\t23503.0\t22860.4\n17332589\tCalula Estate\tCheck with carrier\t-37.804131997\t140.757626176\t17124.4\t21674.0\n67\tTannum Blue\tReady for service\t-23.960568557\t151.36700841\t20637.8\t26156.6\n264\tWarralily Grange\tUnder construction\t-38.228853370218076\t144.32429109570816\t16503.0\t25169.8\n17347475\t324 Tea Tree Rd Brighton - Stages 3\u00264\tCheck with carrier\t-42.6948000075\t147.283779008\t17065.4\t25494.8\nAYCA-NZGFP\tLampada\tReady for service\t-31.1369920275562\t150.95517748943\t18335.4\t23286.4\nAYCA-G1IS9\tCasey 3 Estate\tReady for service\t-35.1717411112112\t149.088880068466\t19658.2\t23213.8\n243\tSt. Claire\tReady for service\t-37.60823491943989\t145.02730918279434\t23503.0\t22860.4\nAYCA-1D96NK\tCrace\tReady for service\t-35.2026701433085\t149.112121260484\t18864.2\t24519.6\n17352159\tGermantown Road Two Wells\tCheck with carrier\t-34.6144390125\t138.556290976\t17189.8\t20886.8\n312\tThe Vale\tUnder construction\t-34.47484502892406\t150.76265755179605\t22038.6\t27233.4\n17316815\tLOT 224 ORTON ROAD OAKFORD\tCheck with carrier\t-32.228281984\t115.953296032\t23318.8\t24246.6\n71\tMayfield\tReady for service\t-38.125209668\t145.289746189\t23298.2\t21822.0\n185\tAgar Industrial Park\tReady for service\t-37.79845362681997\t144.75201086321994\t21841.2\t22499.2\n196\tKaduna Park \tReady for service\t-38.083378128834276\t145.428175673462\t16354.8\t22748.0\n78\tZeally Sands\tReady for service\t-38.309154864\t144.33959113\t16550.4\t25385.0\n43\tCallaway Park\tReady for service\t-37.79528303\t144.789941126\t17490.2\t25769.6\nAYCA-G7P1X\tGap Ridge Industrial Area\tReady for service\t-20.7597367757634\t116.767197579578\t21575.6\t26668.6\n322\tAureus\tUnder construction\t-28.839575834611363\t153.60090183043093\t17440.4\t24088.6\n17334879\tSt Eyre Estate\tCheck with carrier\t-32.5057349755\t137.736468\t23282.8\t25355.8\nON-V-LSP-WTN7\tWorthington Estate\tReady for service\t-38.056759116436055\t145.44930696487427\t18613.2\t23655.8\n17344902\tFishermans Road Stratham Park\tCheck with carrier\t-33.479493039\t115.580933984\t22181.2\t24283.2\n287\tPavilion\tReady for service\t-38.121935435108206\t145.317223415383\t21487.4\t19956.2\n17326687\tLot 9601 Maddern Road Chittering WA\tCheck with carrier\t-31.522233961\t116.068223168\t21870.6\t24671.2\n17307174\tRendezvous Road Vasse\tCheck with carrier\t-33.6766400095\t115.276300928\t16431.4\t24759.0\n16\tPanorama\tReady for service\t-33.965203598332444\t150.89165216421515\t20260.0\t24497.8\n17266708\tEdenvale \tCheck with carrier\t-27.8746859935\t152.966187008\t17365.2\t24273.2\n17339941\tSherwin Ridge\tCheck with carrier\t-35.0642670305\t149.65457184\t18667.4\t21106.0\n248\tLara Industrial Park\tUnder construction\t-38.048203343505\t144.3582585906956\t18124.2\t23867.2\n171\tWaterside\tReady for service\t-38.077916796186784\t145.33521009756245\t18274.4\t27182.2\n254\tWeemala at the Lake\tContracted\t-32.953487781499845\t151.62784968375465\t21277.4\t25920.6\n52\tBaywater\tReady for service\t-38.157866291\t144.549435001\t20779.4\t20996.2\n17338135\tDavid Road\tCheck with carrier\t-28.6656509775\t114.637218112\t18123.4\t25630.0\nAYAA-HJ45E\tLatitude 32 Flinders Precinct\tReady for service\t-32.203130500848\t115.789668200234\t15454.0\t25494.0\n213\tLara Views \tReady for service\t-38.03296209351632\t144.38508068086276\t15512.8\t23869.6\n17353506\tGrandevue Estate\tCheck with carrier\t-38.1822589915\t147.100400992\t18188.4\t24437.8\n17347514\tHumpty Doo Industrial Park\tCheck with carrier\t-12.5915301515\t131.095235712\t20028.2\t24032.4\nON-V-LSP-DEV\tLakeside, Devonia\tReady for service\t-38.07179481677172\t145.43976366519928\t16998.8\t23317.4\n10241\tDalyellup\tReady for service\t-33.39055091775127\t115.61975240707397\t21921.6\t26404.4\nAYCA-1DER92\tLots 9004 Eastlyn Dr Deepdale\tReady for service\t-28.7938689999871\t114.67999499999\t20610.0\t22575.8\n17349902\tLot 1301 Gull Rock Road Albany WA\tCheck with carrier\t-34.948832044\t117.999468\t19223.6\t22713.0\n186\tSanctuary\tReady for service\t-38.2314381624407\t144.34730645652323\t15609.6\t23813.8\n17123438\tSouthern Cross - Stage 1 (52L)\tCheck with carrier\t-27.214454996500002\t151.272823008\t21934.8\t22321.0\n158\tRobina Town Centre\tReady for service\t-28.07890531166396\t153.38309799194224\t16329.4\t27231.4\nAYAA-H0UT9\tWedgefield\tReady for service\t-20.3799983349327\t118.594521325414\t22667.6\t24820.2\nAYAA-FRYDK\tTeviot Downs Estate\tReady for service\t-27.7504397198131\t152.951579273602\t16448.2\t21066.0\n189\tAshbury\tReady for service\t-38.22122706468388\t144.35133218646388\t15579.4\t24108.6\n17340096\tMundoolun Estate\tCheck with carrier\t-27.8594579775\t153.087716896\t21088.8\t22001.6\n181\tThe Surrounds\tReady for service\t-27.928418734504167\t153.33939444392914\t20220.6\t23377.2\n17316655\tForest Hills\tCheck with carrier\t-31.032246957\t150.928926112\t19588.6\t23922.8\n17219184\tEdenvale\tCheck with carrier\t-27.8724570025\t152.974415008\t17496.8\t23088.0\n17322026\tTanby Heights Stage 2\tCheck with carrier\t-23.2286249645\t150.75956592\t24819.6\t22288.2\n17325176\tFletcher Industrial Stage 1\tCheck with carrier\t-32.213367987\t148.63352688\t18382.8\t27862.0\n17328781\tAvoca Dell Stage 1\tCheck with carrier\t-35.092629991\t139.316762176\t22713.4\t23555.0\n17051058\tLot 17 Harbour Rd\tCheck with carrier\t-33.844219022000004\t121.883787008\t23863.4\t21586.0\n17337131\tTimbertop Estate\tCheck with carrier\t-32.633252016\t151.70961312\t22937.4\t23638.8\n17333083\tWaterside Pastures\tCheck with carrier\t-32.7579690075\t151.828084992\t19992.6\t26454.6\nAYCA-1ORQMM\tRIVERLAND GARDENS\tContracted\t-35.9649560000272\t146.014765\t20637.2\t23451.6\nAYCA-IQWLC\tJimboomba Woods\tReady for service\t-27.8661709999843\t153.059876\t21799.4\t24895.6\n17331968\tRavendene Estate\tCheck with carrier\t-38.041282535\t145.593441376\t19547.6\t25945.4\nAYCA-1DEL05\tTeviot Downs Estate\tReady for service\t-27.7470854999827\t152.9503524\t17323.8\t21673.8\n304\tTeneriffe\tUnder construction\t-34.7266547867358\t149.71105729101944\t18164.0\t24295.0\n17355158\tMulcahys Road\tCheck with carrier\t-37.389870007\t144.305286016\t21510.8\t23841.6\nAYCA-G3LBH\tParklands\tReady for service\t-24.9399487796629\t152.288441837448\t17005.6\t22330.6\n38\tCentral Walk\tReady for service\t-27.69738289415636\t152.9088333969901\t24988.2\t23664.4\n170\tWaratah\tReady for service\t-37.5356296673782\t144.90365844136687\t17839.0\t24726.0\n17335030\tGlenview Park Estate Stage 1\tCheck with carrier\t-31.453299002\t152.720484128\t23799.0\t23732.6\nAYAA-H5ANY\tFreeway Business Park\tReady for service\t-32.8098597420961\t151.625033944844\t16052.0\t23872.0\nAYCA-1D96QN\tO\u0027Malley\tReady for service\t-35.351972000021\t149.117269000008\t21877.4\t23664.0\nAYCA-EGT1A\tKrystal Park Estate\tContracted\t-33.9109884902099\t120.134017439686\t17520.4\t23572.2\n10542\tMurray-Murray River Country Estate\tReady for service\t-32.607827868144106\t115.8599978685379\t16446.0\t25777.2\n17399839\tGOLDEN VALLEY PLACE\tCheck with carrier\t-26.5433651285\t153.00147056\t13421.6\t24935.6\nAYCA-FWZJ8\tGrantham Rebuild Project\tReady for service\t-27.563568564007\t152.190239281867\t17167.2\t24050.0\n51\tBellaview\tReady for service\t-38.172782464\t144.538409178\t19057.0\t23578.0\nAYCA-ISJ9I\tHarrington Grove\tReady for service\t-34.0211317989616\t150.755048319874\t18021.6\t23293.2\nACNC\tNewcastle\tReady for service\t-32.884942742051216\t151.69733047485352\t20464.0\t25268.2\nAYCA-G07X9\tLot 502 Jane Brook Drive\tContracted\t-31.8562302562125\t116.062230625921\t22036.6\t20917.2\n17350846\tCountry Hills Estate\tCheck with carrier\t-27.568049751500002\t152.590619168\t16035.0\t23906.6\n207\tYarraBend\tReady for service\t-37.78198519686202\t145.02525959964044\t16514.6\t21182.4\n58\tSpires\tReady for service\t-32.30285\t115.80864\t19651.4\t24418.2\n17357158\tHuntington Downs\tCheck with carrier\t-27.922871963000002\t153.28360512\t20267.4\t21354.4\n17325574\tDarling Downs Lot 102 Keenan Street\tCheck with carrier\t-32.1866129725\t116.00267616\t18573.8\t22809.0\n17331436\tSt Andrews - stage 2\tCheck with carrier\t-26.0649970125\t152.565019936\t22475.8\t23703.6\n195\tHighland Views \tReady for service\t-33.807140119426315\t150.68084751128293\t21305.2\t24483.8\n10564\tSecret Harbour\tReady for service\t-32.40690570593458\t115.74870228767395\t18912.6\t20619.4\nAYCA-H18JF\tThe Key Industrial Estate\tReady for service\t-38.0188635264808\t145.18197712273\t21284.4\t26193.4\nACDU\tDurack\tReady for service\t-27.578192809613444\t152.98293471336365\t22314.8\t25563.0\nAYCA-19PQFS\tRedbank Motorway Estate\tContracted\t-27.5852564442896\t152.873819345554\t19008.2\t22288.6\nAYCA-1JBB7K\tThe Fairways\tContracted\t-27.5314779999815\t152.479575\t20008.4\t24708.6\n126\tPark Edge\tReady for service\t-27.693434833927977\t152.91510616302708\t24988.2\t23664.4\n240\tWandana\tContracted\t-38.172482021397926\t144.293338403687\t19491.6\t24467.2\nAYCA-IQRNE\tJimboomba Woods\tReady for service\t-27.8694558108568\t153.02928854703\t17283.6\t25566.2\n17351673\tHighlands Estate\tCheck with carrier\t-37.0380393935\t146.108255776\t19002.2\t24612.2\n17348813\tPaynters Creek Road Rosemount\tCheck with carrier\t-26.6289672555\t153.012338656\t22396.2\t24799.0\n132\tThe Sanctuary\tReady for service\t-27.68292278318855\t152.91255538226966\t26901.8\t22150.6\nAYCA-MAELG\tMuirhead\tReady for service\t-12.3616549362567\t130.897783136586\t21417.2\t22004.0\n114\tWest\tReady for service\t-34.877605383583415\t138.4939632858763\t22421.6\t27485.4\n251\tSequana\tReady for service\t-27.715761863642843\t153.11554227829404\t17433.6\t23245.2\n244\tAscot Grove\tReady for service\t-34.015506343998354\t150.75497303962794\t18021.6\t23293.2\n17271426\tWoodscott\tCheck with carrier\t-34.4601080165\t147.523613056\t27267.4\t23888.0\n270\tWoodgrove Shopping Centre\tReady for service\t-37.68522284633658\t144.5592192390933\t19407.4\t22827.0\n13\tLochiel Park\tReady for service\t-34.87687\t138.65406\t13956.0\t24356.8\n17354065\tLinton Hill\tCheck with carrier\t-27.466329999\t151.827287008\t22133.6\t25616.6\n285\tSummit Business Park\tUnder construction\t-38.09425213318867\t145.34356270786907\t17875.0\t25007.6\nAYCA-RI32N\tDeepdale North\tReady for service\t-28.7710969532846\t114.671990385878\t18037.8\t22544.2\n17349923\tLot 50 and 51 Link Road ALbany\tCheck with carrier\t-34.9695262735\t117.8126136\t22546.2\t25408.4\n17339915\tSamford Skies\tCheck with carrier\t-27.386634959000002\t152.835657856\t24394.8\t23240.6\n17147547\tSummit View\tCheck with carrier\t-26.512940972\t151.867271872\t21032.6\t26598.2\nAYCA-1WH7YL\tL9001-9003 Wungong Sth Rd Darling Downs\tContracted\t-32.1933860000136\t116.001872\t18817.2\t23470.8\n17312227\tTrilla Hills Estate\tCheck with carrier\t-21.298979967\t149.22698688\t18689.4\t24292.4\nAYCA-10UTGP\tJimboomba Woods\tReady for service\t-27.8623843557346\t153.055174379743\t21799.4\t24895.6\n268\tBurwood Brickworks\tUnder construction\t-37.851994880682255\t145.13495121956865\t17640.0\t23319.2\n17238926\tLane Court Mt Warren Park\tCheck with carrier\t-27.7269029985\t153.198027008\t21441.0\t21279.8\n17338860\tBlind Creek Estate Stage 1\u00262\tCheck with carrier\t-37.521863992\t143.776407968\t21490.4\t25234.4\n17344475\tQuilpie Industrial Estate\tCheck with carrier\t-26.6136479975\t144.249904096\t15961.0\t22922.0\n17320060\tWindella Ridge P/L\tCheck with carrier\t-32.697926018000004\t151.473242176\t16873.6\t26637.2\n17358725\tRusty Lane Branxton\tCheck with carrier\t-32.638311988\t151.382246048\t17562.6\t23902.8\n62\tJindalee Beachside\tReady for service\t-31.649101558193706\t115.68944719351767\t19663.8\t27023.0\nAYAA-H8QSJ\tMinto Renewal\tReady for service\t-34.0238418542272\t150.856926410431\t21151.0\t22837.2\n204\tCollege Green\tReady for service\t-38.08048877494351\t145.36312792316772\t20844.4\t24486.6\nAYAA-FPSKZ\tGovernors Hill\tReady for service\t-35.1389166799533\t147.425006282888\t23871.6\t22712.8\n17362563\tMurray Banks\tCheck with carrier\t-36.092428007\t144.725100992\t18737.6\t27236.2\n190\tHighfields\tReady for service\t-27.061379929370613\t153.16209955950143\t19261.0\t21643.2\n57000359\t(RAPA) Berne Court\tCheck with carrier\t-41.355567007\t147.001377952\t21125.0\t24516.4\nAYAA-F6JJR\tGoogong Township\tReady for service\t-35.4154091807694\t149.23348216701\t20986.2\t26356.0\nAYCA-PXLYW\tParamount Park\tReady for service\t-23.271600332771\t150.514225099238\t20816.2\t24876.0\n10380\tHalls Head-Port Mandurah\tReady for service\t-32.53875201575307\t115.70585131645203\t21712.6\t21851.8\n17335365\tMundoolun\tCheck with carrier\t-27.860803020000002\t153.076204096\t22925.2\t23763.2\nON-Q-VT\tVue Terraces\tReady for service\t-28.068610116288863\t153.38100671768188\t17184.8\t25863.6\nAYCA-F193I\tEdmondson Park South P1\tReady for service\t-33.9861716630198\t150.853549054355\t19782.2\t24983.2\nAYCA-WDIWW\tMuirhead\tReady for service\t-12.3585879914992\t130.89374145864\t20989.8\t22419.6\nAYCA-19Q49D\tLot 10,50 \u0026 700 Ocean Reef Gnangara\tReady for service\t-31.7917864249926\t115.856744892211\t18206.4\t24366.0\n327\tMadison Rise\tUnder construction\t-33.23597707399918\t151.46842898041183\t13047.2\t25975.6\nAYCA-1FTKU1\tMolonglo Valley - Coombs Stage 2\tReady for service\t-35.3176259170474\t149.042577119006\t18192.8\t26874.4\nAYAA-IWD7J\tRadford Park\tReady for service\t-32.6450822595972\t151.355551754519\t20353.6\t24302.8\n10000\tAveley-Vale\tReady for service\t-31.791797076764176\t115.98894238471985\t24358.4\t23175.8\n10750\tPagewood Green\tReady for service\t-33.943452567717465\t151.22275114059448\t17879.8\t27278.8\n6\tNLV Bridgewater\tReady for service\t-32.56081186922684\t115.69084383614063\t18390.6\t20828.0\nAYCA-OOFYN\tCasuarina Town Centre\tReady for service\t-28.2958512505823\t153.570424118964\t15515.2\t22968.0\n17332860\tPalm Lake Resort\tCheck with carrier\t-32.867030966\t151.790780896\t19174.4\t21206.4\n292\tNortham Eco Lifestyle Village\tReady for service\t-31.661646746555668\t116.65020329840772\t17236.2\t23753.8\nAYCA-1MO0PE\tParaweena Drive\tUnder construction\t-37.811130011173\t144.75090726482\t26770.0\t22262.8\n17341715\tCanobolas Meadows\tCheck with carrier\t-33.268190294\t149.0541512\t19341.4\t25074.8\nAYAA-G1FKH\tRiemore Downs Estate\tReady for service\t-27.8886882702533\t153.115619080583\t21179.4\t23515.6\nAYAA-G3N4A\tSix Mile Creek Village\tUnder construction\t-27.6355815192483\t152.848832768594\t20766.8\t24031.6\n17354521\tDandenong LOGIS\tCheck with carrier\t-38.005410961\t145.192518016\t20547.4\t25896.0\n10233\tDalyellup\tReady for service\t-33.39171543951737\t115.62436580657959\t21921.6\t26404.4\nAYCA-1O7JIC\tSpring Mountain\tContracted\t-27.7311679999831\t152.906283\t22274.0\t23160.8\n17319634\tWaldara Park Estate\tCheck with carrier\t-36.334991978\t146.304649088\t20922.2\t23029.2\n17312200\tBERRINBA STAGE 1\tCheck with carrier\t-27.646784993\t153.09164016\t17483.4\t24779.8\n10691\tWannanup-Port Bouvard North\tReady for service\t-32.593080692667876\t115.63935399055481\t22279.6\t22067.4\nAYCA-MUELL\tHarrington Grove\tReady for service\t-34.0254648141925\t150.752128700289\t18346.6\t25025.0\nAYAA-F9DJ9\tMuirhead\tReady for service\t-12.3613535542535\t130.891892926405\t20973.2\t23227.0\nAYCA-NZ9RQ\tGrantham Estate Riverstone\tReady for service\t-33.6574602900158\t150.866171279992\t22177.0\t22707.6\nAYCA-GE6TE\tVoyager Point\tReady for service\t-33.9612904042168\t150.970919147374\t22169.2\t23515.0\n9\tRCA Cardinia Waters\tReady for service\t-38.0794393994041\t145.4930143046206\t22067.0\t24277.2\n179\tGemlife Bribie Island\tReady for service\t-27.061404864414\t153.16211615558882\t19261.0\t21643.2\nAYCA-Q13UU\tLot 502 Jane Brook Drive\tReady for service\t-31.8615610033738\t116.062904454047\t22439.4\t22574.8\nAYCA-1DF126\tMistful Park\tUnder construction\t-34.7264160000054\t149.703161000029\t18034.0\t23985.4\nAYAA-F9C6X\tParamount Park\tReady for service\t-23.275657059569\t150.516972407757\t20816.2\t24876.0\nAYCA-1D18C9\tThe Fairways\tReady for service\t-27.5271879999808\t152.483766\t20759.4\t25389.4\n17337667\tLoc 1017 Redgate Road Witchcliffe\tCheck with carrier\t-34.0241140025\t115.074863008\t23401.8\t22355.6\n10185\tCanningvale-Avenues\tReady for service\t-32.09173541358429\t115.92247389256954\t23640.8\t25763.6\n50\tEncore\tReady for service\t-37.712129506\t144.721116645\t16978.4\t24745.0\n17318655\tNEVERWOODS ESTATE\tCheck with carrier\t-32.0491919755\t152.499962176\t21566.0\t24533.6\nAYCA-1FLSZY\tFrizzo Road, Palmview\tReady for service\t-26.7471129999749\t153.039069\t18663.8\t24901.2\nAYCA-EUUAD\tWindmill Downs\tReady for service\t-31.039191773641\t150.900431984145\t19406.6\t24280.0\n10687\tWannanup-Port Bouvard North\tReady for service\t-32.60023856019557\t115.64025521278381\t20167.2\t22821.0\nAYCA-DGEDI\tAmberton\tReady for service\t-31.5957645503307\t115.665663637788\t22135.4\t22735.0\nAYCA-LQAH1\tLot 511 Kalgan Drive Newman Townsite\tUnder construction\t-23.3608589999371\t119.753393000012\t17015.0\t23401.8\nAYCA-HT2UX\tRidge Road Estate\tReady for service\t-37.5105770100269\t145.140747839996\t20132.8\t23111.6\nAYCA-1J8WWD\tJimboomba Woods\tUnder construction\t-27.8632579999842\t153.046244\t19362.6\t25082.4\n217\tGolden Grove\tUnder construction\t-36.713258816028286\t144.28416154026564\t21168.0\t23475.8\n209\tEden\tReady for service\t-34.01244870032878\t150.7617563462324\t18209.8\t22669.2\nAYCA-1CRLQU\tMoncrieff Residential Estate\tUnder construction\t-35.1564860000211\t149.104790000007\t18817.6\t23359.8\n10234\tDalyellup\tReady for service\t-33.391038213222714\t115.62284231185913\t21921.6\t26404.4\n252\tTonsley Village \tReady for service\t-35.008155671689565\t138.56730763673485\t16018.4\t21840.2\n17320872\tThe Beacons\tCheck with carrier\t-37.777715995\t147.604363936\t19169.6\t25338.8\n10377\tHalls Head-Port Mandurah\tReady for service\t-32.535507592267805\t115.70966005325317\t20200.6\t24562.6\nAYCA-LGXW5\tWedgefield\tContracted\t-20.3827064266398\t118.596070833098\t22667.6\t24820.2\nAYCA-TBR12\tShoal Point Bay Develoment\tContracted\t-21.0044656120105\t149.152767009298\t22300.6\t26647.0\nAYCA-1D96QE\tCasey 4\tReady for service\t-35.1731241190463\t149.095898093007\t20885.8\t22303.0\n235\tWarralily Central\tUnder construction\t-38.23425550957785\t144.36323677063632\t15609.6\t23813.8\n10169\tBurns Beach\tReady for service\t-31.72897567076238\t115.72501301765442\t20257.4\t23419.8\nAYCA-1BC5OS\tHuntlee Stage 1\tUnder construction\t-32.6743620000152\t151.351995999998\t20966.2\t24795.8\n311\tIngenia Hervey Bay\tReady for service\t-25.318376649408144\t152.89279818800648\t17505.8\t23090.6\nAYCA-JR6GE\tMuirhead\tReady for service\t-12.3653714219552\t130.892741370061\t19275.2\t21492.0\nAYCA-DZ1PY\tHoly Spirit Boondall\tReady for service\t-27.3601289999794\t153.061465\t19059.2\t23300.8\nAYCA-GNFE0\tRIVERSTONE RISE\tReady for service\t-23.9689175040552\t151.31856988929\t21259.8\t26661.2\nAYCA-JBQMC\tWishart Business Precinct\tReady for service\t-12.4685142851903\t130.953474865161\t22014.2\t24757.2\nAYCA-1AO4XL\tCloverlea - Chirnside Park\tContracted\t-37.7488860000284\t145.326879999998\t20720.4\t24467.0\n17365410\tWestwood\tCheck with carrier\t-26.9620360015\t152.761562016\t21326.4\t23167.2\nAYCA-1FTKWM\tMolonglo Valley - Coombs Stage 3\tReady for service\t-35.3142289200475\t149.038520189006\t17018.6\t25974.8\n10567\tSecret Harbour\tReady for service\t-32.40169177773249\t115.75070321559906\t19678.0\t20961.4\n10397\tIluka\tReady for service\t-31.73905315673185\t115.72926163673401\t17143.8\t23661.8\n8\tRCA Beleura Village\tReady for service\t-38.224609205304276\t145.0725362142516\t22074.4\t23478.2\n22\tEvergreen Links\tReady for service\t-36.71305\t144.27727\t19775.8\t22248.6\nAYCA-ENWFM\tCoolalinga Sub-Division\tReady for service\t-12.5198168057597\t131.041303845074\t23936.2\t22320.2\n17344624\tMadison Ridge\tCheck with carrier\t-27.0450116095\t152.956953728\t24298.6\t26554.2\n17326045\tAurukun Res Sub-division - stage 2\tCheck with carrier\t-13.365806045\t141.725994848\t15373.4\t24916.8\nAYCA-1BK5IS\tJimboomba Woods\tReady for service\t-27.8666469999842\t153.060515\t21799.4\t24895.6\n10385\tHalls Head-Port Mandurah\tReady for service\t-32.54463498135928\t115.70902973413467\t20871.0\t21765.8\nAYCA-NGQ9B\tBungarribee (Bunya)\tReady for service\t-33.7714202761297\t150.867204897709\t18697.8\t21427.6\n17394228\tGol Gol Heights Lot 78 on DP 756946\tCheck with carrier\t-34.1830270045\t142.233328\t18453.0\t21033.0\n17341371\tLinton Hill Stage 3\tCheck with carrier\t-27.470484988000003\t151.822847168\t23210.6\t26933.2\n10356\tMillbridge\tReady for service\t-33.300927475174035\t115.73048070073128\t15019.0\t22838.8\n17235866\tAcacia Avenue - stages 4to6\tCheck with carrier\t-26.9617699715\t152.954452096\t18853.8\t24391.2\n17367991\tKilgariff Residential Subdivision\tCheck with carrier\t-23.7729379955\t133.875308\t22042.6\t22428.8\nAYCA-J9CE8\tAE2 Ermington\tReady for service\t-33.8208669951457\t151.055244815032\t23957.6\t21494.6\n17341714\tSilverdown Heights\tCheck with carrier\t-33.263683028\t149.060066048\t18813.8\t22927.4\nAYCA-14QOEO\tHarrington Grove\tUnder construction\t-34.0145969382659\t150.734399607064\t19464.6\t23087.0\n10703\tWannanup-Port Bouvard East\tReady for service\t-32.60624084744729\t115.64411759376526\t21401.4\t25564.0\nAYCA-NS3TL\tEttamogah Rise\tReady for service\t-36.0218474363591\t146.976677442572\t19751.4\t25368.0\nAYCA-KDKUW\tVasse Newtown\tReady for service\t-33.6750847083728\t115.242896164382\t21410.4\t23554.2\nAYCA-F8YLR\tFreeway Business Park\tReady for service\t-32.8006781615145\t151.631399631104\t15882.6\t24729.4\nAYAA-GR9JV\tIronbark Ridge\tReady for service\t-32.2977687119396\t150.899503128249\t16287.6\t23451.4\nAYCA-PO3A4\tBerrimah Business Park\tReady for service\t-12.4272906594548\t130.91433759827\t19507.6\t26599.2\nAYAA-F7FJT\tKingsley Drive, Beaudesert\tReady for service\t-27.9947144922874\t153.011802811568\t19795.0\t26645.6\n260\tGlenside\tReady for service\t-34.940416129598376\t138.62478255578358\t18654.4\t23094.2\n10357\tMillbridge\tReady for service\t-33.30724335650221\t115.7363560795784\t13305.2\t24096.8\nPRJ0001049-3A6E2E02\tO\u0027Connell Street\tContracted\t-33.76839194885882\t150.73397789150476\t23437.6\t20701.2\nAYCA-1FA2OY\tThe Grove\tUnder construction\t-28.7839001827515\t114.685670982283\t18662.4\t20361.8\nAYCA-10LG0G\tSpringlake Subdivision, Mt Barker\tContracted\t-35.0928450000204\t138.856486999992\t20215.0\t23817.8\n10348\tEaton-Millbridge\tReady for service\t-33.31223599288549\t115.7294225692749\t16071.2\t24242.0\n17337529\t276 Old North\tCheck with carrier\t-27.061864018\t152.866091168\t21776.8\t26024.2\n10565\tSecret Harbour\tReady for service\t-32.39632446515415\t115.74663698673248\t18652.6\t22901.2\nAYCA-1MI4GK\tMoncrieff Residential Estate\tContracted\t-35.1609006970852\t149.119975532677\t19607.6\t22238.8\n282\tArcadia Group Hidden Valley\tReady for service\t-37.395547376433164\t144.99366317749167\t17682.2\t26559.0\n17325557\tAvenue Hill Stage 1\tCheck with carrier\t-37.517128029\t143.714459872\t22599.0\t25083.4\n17335954\tMalcolm Road Subdivision\tCheck with carrier\t-17.191856979\t145.562276896\t22370.4\t24740.8\n245\tMorphettville Redevelopment\tReady for service\t-34.9861747519862\t138.5437873458612\t16948.2\t25541.2\n17203252\tRedgum Rise Estate\tCheck with carrier\t-37.048975021000004\t146.092817888\t23353.6\t26892.2\n10393\tIluka\tReady for service\t-31.73569532841298\t115.732501745224\t17143.8\t23661.8\nAYCA-FZTQG\tLot 502 Jane Brook Drive\tReady for service\t-31.8620273343564\t116.058612526473\t22258.8\t22303.2\nAYCA-1COQ8Z\tRiver Oaks Estate\tUnder construction\t-27.7696789999834\t153.092011\t19452.2\t21938.2\nAYCA-19ZSPD\tVermont Riverlands\tContracted\t-33.5638770000159\t150.868297999992\t20829.4\t22118.6\n17356820\tAspect\tCheck with carrier\t-27.746267041\t153.138958912\t18459.4\t24199.4\nAYCA-L6RW4\tRiverside Estate\tContracted\t-36.1360260000277\t146.949994\t20487.8\t23717.2\nAYCA-XKC83\tGreenway - 799 Richmond Rd\tUnder construction\t-33.7239020000161\t150.844540999992\t21780.0\t23986.4\n17340077\t5-21 GRAY ST\tCheck with carrier\t-28.145302014000002\t153.42793488\t20104.8\t23483.2\nAYAA-FPQGL\tThe Ponds\tReady for service\t-33.6949818131024\t150.909569357808\t16030.4\t22328.2\nAYCA-1J8WS5\tJimboomba Woods\tReady for service\t-27.8691483307398\t153.042010627221\t20789.8\t27482.2\n10192\tCanningvale-Sanctuary Waters\tReady for service\t-32.09583289039479\t115.92712484300137\t23973.0\t26180.2\nON-V-LSP-WTN\tWorthington Estate\tReady for service\t-38.05896187075398\t145.44869273900986\t18613.2\t23655.8\nAYAA-FPOR9\tThe Fairways\tReady for service\t-27.5456169942859\t152.464248641146\t20518.4\t25462.6\n269\tWatergardens Town Centre\tReady for service\t-37.70288208544553\t144.7762755012373\t23493.0\t24718.4\n17336600\tRiverglen Estate\tCheck with carrier\t-27.4389650025\t152.659110976\t19408.6\t23134.0\nAYCA-1F7EBL\tLampada\tContracted\t-31.1398907133126\t150.954064771498\t18335.4\t23286.4\nAYCA-13X4N6\tCalleya\tReady for service\t-32.1265031928837\t115.874723296591\t20731.8\t27632.6\n10876\tMelrose Park\tContracted\t-33.809225805531725\t151.06601751590676\t21277.2\t24281.6\n88\tLakes Entrance\tReady for service\t-27.684162625000003\t152.919766137\t26086.8\t22307.6\nAYCA-KYG28\tThe Sands\tReady for service\t-23.9898136034058\t151.378798009355\t18884.6\t27012.2\nAYCA-10ILHK\tMarsden Park Precinct\tContracted\t-33.6969017543874\t150.821641697981\t18000.2\t24424.4\nAYCA-1D9BBM\tHarrington Grove\tUnder construction\t-34.0141980000153\t150.719515999989\t18076.2\t24489.8\nAYCA-1J527U\tMuirhead\tContracted\t-12.3530259998886\t130.893439999995\t19123.8\t22961.8\nAYCA-1FTKTT\tMolonglo Valley - Coombs Stage 1\tReady for service\t-35.3229330840435\t149.043426474012\t16881.4\t27189.0\nAYCA-G4D1B\tDeepdale Industrial Estate\tReady for service\t-28.7918229925085\t114.691418008669\t14628.8\t20052.4\nAYCA-DNDK2\tManooka Valley\tReady for service\t-34.0386187385006\t150.775687810547\t21590.4\t24429.8\n17342032\tHighfields Views\tCheck with carrier\t-27.450900814\t151.993666816\t18346.4\t24541.0\n17350580\tBroadview Estate\tCheck with carrier\t-32.626900004\t149.59184\t22096.0\t21108.0\nAYCA-T062O\tGoogong Township\tReady for service\t-35.4157760444998\t149.237467703633\t20986.2\t26356.0\nAYAA-HE3NB\tBroome North\tReady for service\t-17.9224571928365\t122.230466306045\t17453.8\t23815.6\n17248287\tNogoa Rise Estate \tCheck with carrier\t-23.548365996\t148.161332896\t23657.4\t24525.8\n173\tGemstone Waters\tReady for service\t-27.095016408891176\t152.93148641347787\t20166.8\t19742.8\n17296036\tINNOVATION PARK\tCheck with carrier\t-38.042261999000004\t145.219498912\t20229.4\t25023.0\n314\tLiving Gems Kuluin\tUnder construction\t-26.65790047155776\t153.04729444825927\t22844.8\t23761.4\n10740\tLiving Choice Glenhaven\tReady for service\t-33.69626396335785\t150.99443078041077\t15573.4\t24175.6\nAYCA-19ZSTU\tVermont Riverlands\tContracted\t-33.5641750000158\t150.870480999992\t20385.4\t22417.8\n10704\tWannanup-Port Bouvard East\tReady for service\t-32.60341102088821\t115.64603269100189\t24229.8\t22691.0\nAYCA-OVO23\tMINDA Redevelopment\tReady for service\t-35.0032417638245\t138.51675979825\t22640.4\t24730.8\n10553\tMurray-Riverland Ramble\tReady for service\t-32.57704251337142\t115.8260753005743\t21688.4\t21019.0\nAYCA-IEEZM\tLot 1693 Parker St \u0026 Lot 2119 Stanley St\tReady for service\t-20.3946096122919\t118.599534752865\t18979.6\t24684.6\n83\tStonybrook\tReady for service\t-37.690168202\t144.731148311\t18033.4\t26974.4\nAYCA-ETCHB\tWhiteman Edge\tReady for service\t-31.8141469707026\t115.963526331826\t19701.4\t24007.0\n17357878\tSerpentine Downs\tCheck with carrier\t-32.374276991\t115.981357984\t23695.0\t22275.0\nAYCA-1ABGJI\tJimboomba Woods\tReady for service\t-27.8718669999843\t153.046343\t19919.8\t26224.6\n115\tThe Grove\tReady for service\t-35.175531914056855\t149.1008225536489\t20404.4\t24099.0\n338\tLincoln on the Bellarine\tUnder construction\t-38.22705044497567\t144.37139348266936\t15609.6\t23813.8\nAYCA-LF9PR\tGolden Bay\tReady for service\t-32.4205231935049\t115.755533304269\t18912.6\t20619.4\n17320876\tWokarena Road\tCheck with carrier\t-28.660908965\t114.62454\t18123.4\t25630.0\n17347341\tPeak Drive Estate Stage 1\tCheck with carrier\t-38.0048399955\t145.33659504\t18299.0\t22463.2\n17289791\tEagle Bay Rise\tCheck with carrier\t-37.896200096\t147.674397248\t21096.8\t23734.2\n17382301\tLyn Parade\tCheck with carrier\t-33.936563992\t150.881592992\t16525.6\t25997.0\nAYCA-12UCDR\tJimboomba Woods\tReady for service\t-27.8704580343858\t153.046562722769\t19919.8\t26224.6\nACSP\tSpringfield\tReady for service\t-27.68752972507293\t152.90936708450317\t24988.2\t23664.4\nAYCA-LIVVA\tIronbark Ridge\tReady for service\t-32.2974524392657\t150.896860220885\t19588.0\t21423.2\n10351\tMillbridge\tReady for service\t-33.30790860838177\t115.72964385151863\t16071.2\t24242.0\n10328\tDudley Park-Mariner\u0027s Cove\tReady for service\t-32.54983018052196\t115.73004484176636\t21353.6\t23456.6\n10731\tEpping Park\tReady for service\t-33.782216765389535\t151.07181787490845\t20366.6\t22242.4\nAYCA-FWOIG\t1440 Frankston-Flinders Road, Tyabb\tReady for service\t-38.2535102671778\t145.190052381605\t19285.8\t24293.6\n10612\tSecret Harbour-Anstey Park\tReady for service\t-32.402189320789844\t115.76897978782654\t16931.6\t22374.6\n10658\tTapping The Kestrels\tReady for service\t-31.721625828114394\t115.78534126281738\t26443.8\t26125.0\n17349312\tMOUNTAIN VIEW ESTATE\tCheck with carrier\t-33.912672574\t150.621471712\t22901.0\t24578.8\n17356160\tWoodridge Estate Stage 1B\tCheck with carrier\t-34.837832969000004\t150.548339168\t16677.2\t23567.4\nAYAA-GDLZ8\tHarrington Grove\tReady for service\t-34.0194031212073\t150.7532483145\t18021.6\t23293.2\nAYCA-1CRLYV\tMoncrieff Residential Estate\tUnder construction\t-35.154803000021\t149.107155000007\t18817.6\t23359.8\nAYCA-WHTZS\tFarragher subdivision\tReady for service\t-32.765554999864\t151.6233730003\t18055.6\t25171.4\nAYCA-10KKU8\tThe Gateway\tReady for service\t-34.1901310500305\t150.786361112653\t17790.2\t26490.2\nAYCA-DXRRI\tMiddleton Grange\tReady for service\t-33.9151240703677\t150.840006288988\t17646.6\t24963.0\n17327379\tTwin Creeks Golf Couse Estate\tCheck with carrier\t-33.845982479\t150.757997056\t15609.0\t22854.2\n10705\tWannanup-Port Bouvard East\tReady for service\t-32.60215424475941\t115.65199792385101\t23585.6\t22301.2\n10235\tDalyellup\tReady for service\t-33.39171543951737\t115.62134027481079\t21921.6\t26404.4\n17313925\tSanctuary on Moggill\tCheck with carrier\t-27.5747120085\t152.880090112\t17210.6\t22169.6\n10573\tSecret Harbour\tReady for service\t-32.39568219217621\t115.75586915016174\t19191.2\t20236.2\n17244744\tPremier Gardens Estate\tCheck with carrier\t-34.2963140485\t146.076527872\t20610.2\t22313.0\n10171\tBurns Beach\tReady for service\t-31.724599957029927\t115.71629583835602\t21081.6\t22725.8\nAYCA-DVQ33\tParkland Heights\tReady for service\t-32.3549928434823\t115.798355647355\t19750.0\t23652.2\nAYCA-1EL358\tEden Park Estate\tReady for service\t-19.2331609988561\t146.647843999839\t24359.0\t21391.2\nAYAA-GVMB7\tArise\tReady for service\t-27.5754951435665\t153.116533700679\t19897.2\t26717.0\nAYAA-ESS68\tTalana\tReady for service\t-33.9517943675023\t150.844216592569\t22752.6\t21586.2\nAYCA-19M72I\tLot 9000 Baile Road Canning Vale\tContracted\t-32.0656820000128\t115.913695\t22424.6\t24840.0\n17327746\tBindea Estate\tCheck with carrier\t-30.993058980500003\t150.264839168\t20145.2\t23028.6\nAYCA-DF9C9\tBungarribee (Bunya)\tReady for service\t-33.7766755592885\t150.86762255512\t16069.6\t22202.4\n20\tMacarthur Gardens\tReady for service\t-34.078731685352246\t150.7971630189405\t18646.6\t24314.4\n10389\tIluka\tReady for service\t-31.737971912801473\t115.73255270719528\t17143.8\t23661.8\n5\tEl Caballo Lifestyle Village\tReady for service\t-31.800599504507684\t116.35106955017488\t18556.6\t24259.0\nAYAA-F7DKM\tHighland Reserve\tReady for service\t-27.8823195164227\t153.278922005378\t23901.0\t26226.8\nAYCA-1DIQ1G\tDeepdale North\tUnder construction\t-28.7695852595405\t114.682667281468\t18384.0\t21936.0\nAYCA-G6D99\tIronbark Ridge\tReady for service\t-32.2945243372932\t150.897661735819\t16287.6\t23451.4\n17320794\tStegemann Road Buccan\tCheck with carrier\t-27.752138016\t153.135784096\t17962.6\t24559.8\nAYCA-MVLET\tMount Margaret\tReady for service\t-19.3376598365711\t146.596882842201\t16882.2\t24779.8\n10387\tIluka\tReady for service\t-31.741005750924383\t115.73422908782959\t18258.4\t22958.8\nAYAA-HLIZF\tNickol West\tReady for service\t-20.7363338099194\t116.79243804\t21746.4\t26289.6\nAYCA-1GCO65\tWhitby\tContracted\t-32.279590000014\t115.997557\t18326.6\t24411.4\n17311856\tFantasia Land\tCheck with carrier\t-34.644247026500004\t138.651928928\t20255.8\t21455.0\n10172\tBurns Beach\tReady for service\t-31.728574154024283\t115.72688519954681\t20257.4\t23419.8\n10574\tSecret Harbour\tReady for service\t-32.39552818753023\t115.75571894645691\t19191.2\t20236.2\n10688\tWannanup-Port Bouvard North\tReady for service\t-32.601983893518465\t115.6345796585083\t20434.8\t23784.4\n10197\tCanningvale-Sanctuary Waters\tReady for service\t-32.100772582784344\t115.93021810054779\t21627.8\t24481.0\nON-V-LSP-TWC\tLakeside, Town Centre\tReady for service\t-38.072816794351404\t145.43586373329163\t16998.8\t23317.4\n17334924\tHalcyon\tCheck with carrier\t-27.878194981\t153.363738976\t15971.8\t25280.4\n101\tBarangaroo\tReady for service\t-33.860891437945874\t151.20260026877574\t21517.2\t23703.0\nAYCA-ILWV9\tCloverlea - Chirnside Park\tReady for service\t-37.745503247648\t145.332093027342\t24615.4\t24642.0\nAYCA-1INGUF\tLot 9000 Baile Road Canning Vale\tContracted\t-32.0671115083085\t115.909507261094\t18874.0\t24739.6\n17362323\tHOEVET FIELD\tCheck with carrier\t-17.0509390565\t145.4283672\t13610.4\t23351.2\nAYAA-J45NH\tPimpama Rivers Estate\tReady for service\t-27.7926076471019\t153.265624578904\t20400.2\t24205.0\nAYCA-TCBF0\tWandi Estate\tUnder construction\t-32.194845000013\t115.860880999999\t21257.4\t23627.2\nAYCA-T0C3W\tWickham South\tReady for service\t-20.684563011765\t117.142895280133\t27532.4\t27095.0\n10092\tBaldivis-The Chase\tReady for service\t-32.303049020278486\t115.82371830940247\t19088.8\t25121.6\nAYCA-1EFSPR\tCoomera Springs Estate\tContracted\t-27.8408675699834\t153.2906154\t14500.2\t23463.4\nAYCA-F6OD2\tThe Fairways\tReady for service\t-27.5485524851706\t152.46376330561\t20518.4\t25462.6\nAYCA-FZLKH\tMadigan Road\tReady for service\t-20.7515312639833\t116.79272085637\t25029.0\t24500.4\nON-Q-GC-SeaChange\tSeachange Emerald Lakes, Carrara\tUnder construction\t-28.015345000000003\t153.381919\t17031.4\t22893.4\nAYCA-M5S0I\tWindmill Downs\tReady for service\t-31.0370319898862\t150.904114385348\t22075.2\t24046.6\n10590\tSecret Harbour\tReady for service\t-32.410379155588195\t115.76870754361153\t17785.6\t20940.2\nAYAA-J4JYO\tWickham South\tReady for service\t-20.6838523976977\t117.137120090343\t26268.0\t26530.0\n271\tWestpoint Shopping Centre\tReady for service\t-33.76852830684482\t150.90482269288674\t25055.2\t26883.8\n334\tOceanside\tUnder construction\t-24.77278537946005\t152.41152280181123\t21721.4\t25329.4\nAYCA-13X8H5\tRiemore Downs Estate\tContracted\t-27.8859651299838\t153.10899288\t21179.4\t23515.6\n17362631\tBarbers Paddock\tCheck with carrier\t-36.1019571165\t144.76534032\t22234.0\t25514.0\n193\tChambers Pines\tReady for service\t-27.721799275380192\t153.08751662773457\t20861.2\t26484.0\nAYAA-F548W\tElizabeth Hills\tReady for service\t-33.8956701905742\t150.845726075931\t22430.8\t25208.4\n17348353\tAvenue Hill\tCheck with carrier\t-37.5230560025\t143.718275008\t22599.0\t25083.4\n17345976\tWestwood\tCheck with carrier\t-26.957241264\t152.764883648\t21326.4\t23167.2\nAYCA-FD0SO\tForest Springs\tReady for service\t-23.8947114383945\t151.248552545618\t17125.8\t22555.8\nAYCA-1CPHX4\tMoncrieff Residential Estate\tContracted\t-35.1611090000209\t149.114634000007\t20296.8\t22031.4\n17338330\tAmorosa Gardens\tCheck with carrier\t-27.4216899615\t152.000035936\t18346.4\t24541.0\nAYCA-F190V\tEdmondson Park South P1\tReady for service\t-33.9783097831143\t150.852090806049\t23980.0\t22931.8\n17357936\tBroadview Estate\tCheck with carrier\t-32.6346520035\t149.594210016\t22096.0\t21108.0\n234\tLogan Hyperdome Shopping Centre\tReady for service\t-27.659035338906623\t153.16967998506846\t22753.4\t23414.8\n17136044\tThe Grange Stage 1\tCheck with carrier\t-37.0329309885\t146.10346992\t17565.6\t23981.6\nAYAA-GR8ZS\tElizabeth Hills\tReady for service\t-33.8975584538271\t150.847407166737\t22787.6\t24541.8\nAYCA-1JH740\tCockburn Coast\tContracted\t-32.0863006079454\t115.761090935601\t19181.6\t24539.2\nAYCA-GKAGS\tParks Edge @ Casey Fields\tReady for service\t-38.1198055463689\t145.304366851953\t21265.6\t24304.4\nAYCA-13X8OH\tRiemore Downs Estate\tContracted\t-27.8859651299838\t153.10899288\t21179.4\t23515.6\nAYCA-19PWB1\tLot 1032 Redgate Road\tUnder construction\t-34.0292127594157\t115.09022781127\t23401.8\t22355.6\nAYCA-11PKDA\tMount Margaret\tReady for service\t-19.3405234999658\t146.599826077646\t16882.2\t24779.8\nAYCA-XGZCF\tFrench Street Werrington\tContracted\t-33.7607850000147\t150.735713999989\t21857.6\t25505.6\nAYAA-FG08V\tHighfields North Estate\tReady for service\t-27.4330973824287\t151.942094713239\t21843.6\t23328.0\nAYCA-13WQNT\tThe Fairways\tReady for service\t-27.5270719999815\t152.481257\t20759.4\t25389.4\nAYCA-1UJIVI\tEden Park Estate\tUnder construction\t-19.2357979999108\t146.643857\t24359.0\t21391.2\n216\tMartha Cove\tReady for service\t-38.30550886289194\t145.00656717872238\t18222.0\t23807.6\nAYAA-GPFH1\tThe Ponds\tReady for service\t-33.692786388454\t150.914964008876\t18171.2\t24263.8\nAYCA-HKY43\tEvans Park Industrial\tReady for service\t-38.0926864860118\t145.254120650953\t16863.4\t23981.0\n17322659\tLockhart River Subdivision\tCheck with carrier\t-12.779468007\t143.341381088\t15852.8\t23196.6\nAYCA-1J5EEA\tLot 10,50 \u0026 700 Ocean Reef Gnangara\tUnder construction\t-31.7877473878712\t115.858690851779\t19519.2\t25300.6\nAYAA-IGZL9\tTaylors Hill Estate\tReady for service\t-37.7193046518177\t144.739097452396\t20922.2\t21622.2\n10788\tWWP LBNCo\tReady for service\t-33.828184078700204\t151.07364177703857\t20162.4\t23078.6\n17321918\tOnslow Townsite Development\tCheck with carrier\t-21.646846974\t115.114884832\t20194.4\t22023.4\nAYCA-DWNVE\tMaranda Heights\tReady for service\t-23.5637709827387\t148.150837820423\t16604.6\t24318.4\nAYCA-TZAP5\tFrizzo Road, Palmview\tReady for service\t-26.7508125378843\t153.03774225061\t21159.2\t23773.8\n221\tCanberra Centre\tReady for service\t-35.28132145478449\t149.13330946921718\t17138.6\t21300.6\n303\tRochedale\tUnder construction\t-27.585841634265535\t153.11353598593286\t16618.0\t26267.4\n1\tDFO Perth\tReady for service\t-31.940804813395204\t115.94954840593766\t19240.6\t21798.8\n4\tDFO Perth\tUnder construction\t-31.940804813395204\t115.94954840593766\t19240.6\t21798.8\nAYCA-1ESEJE\tJimboomba Woods\tReady for service\t-27.8674779999843\t153.046517\t21855.6\t26241.4\nAYAA-EOFUR\tThe Village at Wellard\tReady for service\t-32.267305140479\t115.825448154138\t18802.2\t21027.4\nAYCA-1MFJ8K\tTindal Avenue, Beeliar\tContracted\t-32.1325105806847\t115.808275026027\t22021.0\t23771.4\n10105\tBaldivis-Tuart Ridge\tReady for service\t-32.33848128148256\t115.82120776176453\t20845.2\t25818.2\nAYAA-F614T\tArise\tReady for service\t-27.5751646966551\t153.118817920361\t19897.2\t26717.0\nAYCA-145346\tL107 Exploration Drive Multi-User Site\tReady for service\t-20.7552641658172\t116.768744493333\t18985.0\t25356.6\n17262882\tEastside Subdivision\tCheck with carrier\t-34.1966919555\t142.182113056\t15426.0\t25615.6\n10589\tSecret Harbour\tReady for service\t-32.40927015711777\t115.76955780386925\t15429.8\t20625.0\nAYCA-FUHRO\tCaddens Release\tReady for service\t-33.7747377813714\t150.721273265564\t18661.6\t21899.8\nAYCA-RNFCZ\tRIVERSTONE RISE\tReady for service\t-23.9719377242301\t151.317210217489\t21259.8\t26661.2\n10329\tDudley Park-Mariner\u0027s Cove\tReady for service\t-32.54984374590842\t115.7272070646286\t21442.2\t24058.8\nAYCA-JWNIP\tRedbank Motorway Estate\tReady for service\t-27.5859849493714\t152.876343356434\t19008.2\t22288.6\n17201178\tPacific Pines\tCheck with carrier\t-27.9312569955\t153.301434848\t22325.0\t20473.2\n10047\tAustralind-Galway Green\tReady for service\t-33.25603165631664\t115.7270622253418\t17814.0\t24196.8\n10698\tWannanup-Port Bouvard North\tReady for service\t-32.59203121760377\t115.64583957195282\t23020.6\t22511.8\n10327\tDudley Park-Mariner\u0027s Cove\tReady for service\t-32.550530596897936\t115.73215842247009\t21235.6\t22435.0\nAYCA-ROJ8T\tThe Meadows\tUnder construction\t-27.8279519999839\t153.312236\t19812.0\t24234.2\nAYCA-EOU5T\tHidden Valley Northern Paddock\tUnder construction\t-37.3869390600181\t144.994662359996\t17682.2\t26559.0\nAYCA-1RO4RX\tWindradyne\tContracted\t-33.4027119999957\t149.54138000004\t17430.6\t23060.6\nAYCA-LQAF8\tRIVERSTONE RISE\tReady for service\t-23.9673324937224\t151.318411370725\t22609.6\t25941.6\nAYCA-SG61Y\tAlkira Estate\tContracted\t-34.4891840000067\t150.764230999955\t17293.6\t26685.2\nAYCA-JKJE1\tForest Springs\tReady for service\t-23.8984820678198\t151.247298624639\t17125.8\t22555.8\nAYCA-DD3C8\tVermont Riverlands\tReady for service\t-33.5689465929785\t150.862954209724\t21039.8\t23921.4\nAYCA-GPU42\tNewman Light Industrial Area\tReady for service\t-23.370211790284\t119.727884729292\t16749.6\t26623.2\n10371\tFalcon-Pleasant Grove\tReady for service\t-32.59561976274473\t115.65103232860565\t23020.6\t22511.8\nAYCA-GR59S\tJohnston Stage 2\tReady for service\t-12.4910377171343\t131.00747135911\t21211.0\t22446.0\n17366497\t250-252 Blind Creek Road\tCheck with carrier\t-37.523448998\t143.77838\t23521.0\t23517.2\n17363349\tBullocks Run\tCheck with carrier\t-32.092228007500005\t152.449822016\t18871.6\t23298.2\n10217\tClarkson-Somerly\tReady for service\t-31.68231965347913\t115.73390185832977\t15798.8\t21451.8\nAYAA-GS1IC\tLot 1002 Penson Street, Singleton\tReady for service\t-32.4526525091403\t115.758240281793\t25210.2\t25585.6\n10046\tAustralind-Galway Green\tReady for service\t-33.25845042274144\t115.72949230670929\t18038.0\t25761.8\n17290310\tLinton Hill - Stage 2\tCheck with carrier\t-27.466329962\t151.82728704\t22133.6\t25616.6\n10611\tSecret Harbour-Anstey Park\tReady for service\t-32.398474967071245\t115.76890334486961\t14407.6\t24555.0\nAYCA-ER2HH\tVicars Avenue\tReady for service\t-38.5897578015856\t145.592578108999\t20472.8\t24350.0\nAYCA-G7VCW\tGap Ridge Industrial Area\tReady for service\t-20.7376182188109\t116.76592759951\t19990.2\t25246.0\nAYCA-159BSA\tMoncrieff Residential Estate\tContracted\t-35.159419000021\t149.110044000007\t18817.6\t23359.8\nAYCA-1S9DR7\tVasse Newtown\tContracted\t-33.6735871946194\t115.237501509781\t21538.8\t23505.4\n24\tChesalon Living\tReady for service\t-34.0064770830842\t150.7440112571631\t17470.2\t22831.2\nAYCA-S72QY\tKialla Lakes Estate\tUnder construction\t-36.4346950000272\t145.392727999998\t21039.8\t23906.6\n17349198\tThe Palisades\tCheck with carrier\t-27.4275060285\t152.923364992\t21054.6\t24970.6\nAYCA-1L7JOH\tLots 73 and 74 Queensway Rd, Landsdale\tUnder construction\t-31.8046482472394\t115.869656132796\t16108.2\t22465.8\n17355906\tDeepwater Estate\tCheck with carrier\t-27.3051000015\t153.015337088\t21351.2\t22136.2\n17347407\tAspire at Weston\tCheck with carrier\t-32.808095997\t151.447782976\t22171.0\t23258.2\n17325519\tBraeburn Estate\tCheck with carrier\t-32.5464440405\t151.173253088\t22274.6\t22785.0\nAYCA-IK50L\tSt George Springs\tContracted\t-28.2061125129523\t152.051781890475\t20794.0\t26620.0\nAYCA-1DAJU0\tHarrington Grove\tUnder construction\t-34.0141670000154\t150.719234999989\t18076.2\t24489.8\n10576\tSecret Harbour\tReady for service\t-32.41016651368836\t115.7580041885376\t19155.0\t21643.0\n10445\tJindalee-Jindalee Beach\tReady for service\t-31.64808608166744\t115.69432854652405\t14335.6\t25786.8\n10291\tDawesville-Port Bouvard South\tReady for service\t-32.6050378802273\t115.63354969024658\t22843.2\t24504.2\nAYCA-F6G23\tHeron Park\tReady for service\t-32.1206153334715\t115.933853735721\t15577.4\t25051.6\n272\tCastle Towers Shopping Centre\tContracted\t-33.73115719422902\t151.00477934287912\t20433.0\t25585.2\nAYCA-1BNMMK\tRedgum Brook Estate\tReady for service\t-32.2091690608967\t115.973701271346\t20654.0\t22477.8\nAYCA-1BCCVE\tFrizzo Road, Palmview\tReady for service\t-26.7461322570971\t153.039079776235\t18663.8\t24901.2\n10378\tHalls Head-Port Mandurah\tReady for service\t-32.53337661342534\t115.7064950466156\t19870.0\t21671.6\nAYCA-1JG1CU\tSpring Mountain\tContracted\t-27.7313099999831\t152.906138\t22274.0\t23160.8\nAYAA-GO2KN\tCardinia Lakes\tReady for service\t-38.0624103221007\t145.507605858647\t17286.2\t23369.8\n17325948\tEwer St Carindale\tCheck with carrier\t-27.516684964\t153.116602912\t25186.8\t27676.0\n17348390\tNorth Byron Beach Resort\tCheck with carrier\t-28.626032968500002\t153.588858848\t19369.4\t24441.4\n10571\tSecret Harbour\tReady for service\t-32.40081854959892\t115.75819730758667\t19191.2\t20236.2\n17315061\tYandina Caravan Park Stage 1\tCheck with carrier\t-26.5687499775\t152.95569984\t14688.2\t24817.4\nAYAA-IGN9M\tGreenhills Beach Residential\tReady for service\t-34.0345879914221\t151.164224730179\t18744.8\t24791.6\nAYAA-IWBVJ\tGalway Gold Estate\tReady for service\t-38.0572001902837\t145.481057988543\t13353.6\t24337.6\n17394457\tBoundary warehouses\tCheck with carrier\t-38.0843087805\t145.184269728\t19624.0\t23655.8\n17324948\tPerricoota Run Stage 3\tCheck with carrier\t-36.0924779755\t144.73565712\t20190.2\t25712.8\nAYCA-12K0N9\tGreenway - 799 Richmond Rd\tUnder construction\t-33.7233900000067\t150.847701999976\t21780.0\t23986.4\nAYAA-GUYWC\tBrookhaven Rise Estate\tReady for service\t-37.5627940974843\t144.696586941518\t21542.4\t23327.4\nRAWM\tWellington Manor\tReady for service\t-27.490458180626142\t153.22544932365417\t17690.0\t20418.0\nAYCA-H7WBI\tSovereign Hills\tUnder construction\t-31.4549160000096\t152.827631\t20377.8\t25730.6\nAYCA-KACMM\tBeverly Hills Estate\tReady for service\t-33.2436355021387\t149.091830082507\t20090.0\t23946.8\nAYCA-18CNWR\tMacquarie View Estate\tReady for service\t-32.2786208316522\t148.616670217466\t22090.4\t22879.6\nAYAA-GIMD0\tYellowgum\tReady for service\t-36.6907045065123\t144.323835048935\t19579.2\t23198.8\n10209\tClarkson-Somerly\tReady for service\t-31.690390180334045\t115.7239830493927\t20251.2\t24191.0\nAYCA-142BGQ\tLLOYD ESTATE\tUnder construction\t-35.1520639984098\t147.337553998696\t19861.4\t20519.8\n10649\tTapping-Ashton Heights\tReady for service\t-31.716962281699793\t115.79671382904053\t23418.0\t24360.4\n17329917\tCastle Hill Subdivision\tCheck with carrier\t-33.720329258\t151.01356512\t18684.0\t24789.8\n33\tHamilton Reach\tReady for service\t-27.443015132\t153.085595175\t22128.6\t26017.2\n10473\tLakelands\tReady for service\t-32.466192308164004\t115.76794981956482\t21679.6\t27125.0\n10570\tSecret Harbour\tReady for service\t-32.40004856754565\t115.75763940811157\t19191.2\t20236.2\nAYCA-NC7MJ\tGlenwood Development\tReady for service\t-36.185263368505\t146.936057138263\t18313.8\t23298.0\n17325403\tPatterson Gardens Estate Stage 2\tCheck with carrier\t-33.289404022\t149.12302608\t25579.0\t21712.2\n10170\tBurns Beach\tReady for service\t-31.728966545401306\t115.72501301765442\t20257.4\t23419.8\n17361986\tBalmattum Hill Estate\tCheck with carrier\t-36.751287007\t145.583227008\t22603.6\t19970.8\n17333322\tMacquarie Heights Estate\tCheck with carrier\t-32.944256996\t151.639039072\t20695.6\t22385.2\n10079\tBaldivis-Rivergums\tReady for service\t-32.34183520390608\t115.82303166389465\t20845.2\t25818.2\n17328997\tCar Mega Mart Stage 2\tCheck with carrier\t-38.095363992\t145.485427008\t19556.8\t23263.4\n10532\tMadora Bay\tReady for service\t-32.47605485052216\t115.75556874275208\t26126.8\t24797.4\nAYCA-MT9YM\tPotts Hill\tReady for service\t-33.891202420849\t151.028901244511\t17993.0\t23410.0\nAYAA-GR0XZ\tElizabeth Hills\tReady for service\t-33.9012756454489\t150.844692256359\t20516.4\t25692.0\n10029\tAveley-Vale\tReady for service\t-31.790171998121004\t115.9892749786377\t24358.4\t23175.8\nAYAA-FN97T\tAspiri\tReady for service\t-32.1417876390121\t115.909525216\t23205.6\t25684.0\nRAFB\tForresters Beach\tReady for service\t-33.4038792802728\t151.4666497707367\t16752.2\t26508.8\n17316951\tKookaburra Rise - Stg 3\u00264\tCheck with carrier\t-20.3102260255\t148.659717952\t18178.6\t25828.6\n10787\tWWP LBNCo\tReady for service\t-33.82709673956692\t151.0745644569397\t20281.8\t22323.4\nAYCA-1D9FGG\tFairway Gardens\tUnder construction\t-36.0520650000274\t147.013232\t19458.4\t20622.2\nAYCA-G7OO0\tGap Ridge Industrial Area\tReady for service\t-20.7357517321217\t116.762107212586\t19990.2\t25246.0\n10007\tAveley-Vale\tReady for service\t-31.78787482485216\t115.98103523254395\t24754.8\t21027.0\nAYCA-10WO6Q\tLot 6 Nicholson Road\tContracted\t-32.1440537855947\t115.91943745081\t21514.4\t26428.6\n10288\tDawesville-Port Bouvard South\tReady for service\t-32.61100683812102\t115.63154071569443\t20947.6\t25747.6\n17326041\tKinross Road\tCheck with carrier\t-27.556326986000002\t153.249588\t22722.6\t21388.6\n17337045\talanvale gardens\tCheck with carrier\t-41.398637042\t147.128419072\t21282.6\t23578.4\n10002\tAveley-Vale\tReady for service\t-31.79322877516195\t115.98442554473877\t23497.2\t21903.4\nAYAA-GYFSE\tKalynda Chase Estate\tReady for service\t-19.3044992828765\t146.690298682805\t15406.8\t25450.4\n10582\tSecret Harbour\tReady for service\t-32.415387169732384\t115.75394868850708\t18912.6\t20619.4\n10693\tWannanup-Port Bouvard North\tReady for service\t-32.5945576768249\t115.64508318901062\t22279.6\t22067.4\n17340599\tLeisure Life Village - 3 Parkside Pde Toronto\tCheck with carrier\t-33.027171036\t151.566399008\t16374.4\t22490.6\n10702\tWannanup-Port Bouvard East\tReady for service\t-32.60514633646602\t115.64143002033234\t22843.2\t24504.2\n10075\tBaldivis-Rivergums\tReady for service\t-32.33649153092163\t115.82380414009094\t19876.6\t25828.8\n17319550\t32-40 Cawarra Road\tCheck with carrier\t-34.0320390325\t151.129942912\t16521.8\t22710.8\n17329919\t800 MONTPELIER DRIVE\tCheck with carrier\t-34.084847967\t150.570492128\t18547.8\t23334.0\nAYCA-1F7L92\tZuccoli\tReady for service\t-12.5056259998882\t131.008578999993\t20655.4\t24551.8\n10186\tCanningvale-Avenues\tReady for service\t-32.09173200503879\t115.92247188091278\t23640.8\t25763.6\nAYAA-EW1BR\tShoal Point Waters\tReady for service\t-21.011116523858\t149.151202655373\t24116.2\t25355.0\nAYCA-14TLE6\tGeraldton Heights\tReady for service\t-28.7357469207182\t114.664126999979\t18231.0\t24914.6\n10187\tCanningvale-Avenues\tReady for service\t-32.089038646255204\t115.92517420649529\t23640.8\t25763.6\n165\tCanterbury Lakes\tUnder construction\t-38.02956063324748\t144.3880579328667\t14185.8\t23552.4\nAYCA-17SASX\tPaech Road Residential Subdivision\tUnder construction\t-35.0898210000208\t138.887281999993\t16660.2\t24636.2\nAYCA-NLVNW\tOsprey Subdivision\tContracted\t-20.4185619453499\t118.616142056594\t19904.6\t25647.4\nAYCA-189LZC\tOakwood Rise\tReady for service\t-27.8279889999839\t153.286215\t17710.2\t23440.6\n17328227\tRidgeview Estate\tCheck with carrier\t-34.0858359965\t150.69247488\t18477.2\t26132.4\nAYAA-GS0IM\tHarvest Lakes\tReady for service\t-32.1607065295207\t115.865516044205\t18970.6\t26072.6\nAYCA-1FTKWE\tMolonglo Valley - Coombs Stage 1\tReady for service\t-35.3198709016713\t149.048650961069\t16490.2\t26693.6\n17325807\tCoomera Rivers\tCheck with carrier\t-27.847922043500002\t153.366432832\t20199.0\t22503.6\nAYCA-EW20T\tNorthview Estate\tReady for service\t-32.2465804568276\t150.90397766\t18841.4\t24396.6\nAYAA-FOSEA\tCitiswich\tReady for service\t-27.6017188985184\t152.813996660607\t18897.0\t24010.0\nAYAA-FYWH5\tMcKeachies Run\tReady for service\t-32.6945357355568\t151.545543112298\t18312.8\t22832.8\n17275187\tSovereign Downs - stage 1\tCheck with carrier\t-28.238709957\t152.02181808\t21410.8\t24818.4\n17349266\tHenry St Brassall\tCheck with carrier\t-27.590119012000002\t152.729560096\t17995.8\t23107.6\nAYAA-F2BSM\tGlenfield West\tReady for service\t-35.1379948217273\t147.319628488454\t21326.0\t24762.2\nAYCA-E2RCZ\tRees Road, Brookfield\tReady for service\t-37.7152222374757\t144.548775775167\t19011.2\t23744.4\nAYCA-OKUJA\tSt Leonards Estate\tReady for service\t-31.851351726601\t115.975319584732\t20048.2\t22385.8\nAYCA-EMGSR\tMistful Park\tReady for service\t-34.7307356697632\t149.707134940517\t18425.8\t24433.0\nAYCA-F54UX\tBelmore Estate\tReady for service\t-34.7331738928449\t149.706596567539\t19780.6\t24463.4\n10661\tTapping The Kestrels\tReady for service\t-31.71812134547654\t115.7907485961914\t25090.2\t23946.8\n17359981\tYamba Waters\tCheck with carrier\t-29.4395681005\t153.343916\t18467.2\t21196.4\nAYAA-F26L4\tShannon Waters Estate\tReady for service\t-37.8385911993154\t147.572827852958\t20185.8\t22242.0\n17278226\tSpring Park Estate stage 5 \u0026 6\tCheck with carrier\t-36.0182999685\t147.01261392\t19724.8\t23257.8\nAYAA-EOIUG\tBungarribee (Bunya)\tReady for service\t-33.7785498963346\t150.871722313876\t17558.6\t22368.0\n249\tBentley Park\tReady for service\t-38.00089970213787\t145.1807633495413\t18877.8\t25901.4\nAYAA-H9B8H\t95 Flynn Ave, Middleton Grange\tReady for service\t-33.9169220163184\t150.84380031936\t17117.4\t27741.8\n17316398\tCurrey Street Roma\tCheck with carrier\t-26.5661309695\t148.773735008\t18270.2\t23280.2\nAYCA-10XNGP\tWarner Springs\tReady for service\t-27.3090973931164\t152.955923963122\t21061.4\t23211.4\n17358015\tWoodside Park Estate\tCheck with carrier\t-34.17311772\t142.219964768\t17214.0\t22374.8\n10434\tJindalee-Jindalee Beach\tReady for service\t-31.650771238172503\t115.69381356239319\t14335.6\t25786.8\n10633\tStirling-Roselea\tReady for service\t-31.886405556850722\t115.81453442573547\t16294.2\t23455.8\nAYCA-IIZZF\tGlenhaven Park\tContracted\t-38.0777960000299\t147.067778\t14419.0\t24118.8\nAYAA-ETJLH\tKurra at Newman\tReady for service\t-23.3492192099286\t119.732205600023\t23652.6\t24782.2\n17399437\tKokoda DHA Redevelopment\tCheck with carrier\t-28.034862009\t153.181528992\t17457.8\t26545.6\n10451\tJindalee-Eden Beach\tReady for service\t-31.650792215652338\t115.69370090961456\t14335.6\t25786.8\n10652\tTapping-Ashton Heights\tReady for service\t-31.718741940597035\t115.80303311347961\t22638.4\t23863.2\nAYCA-114M8I\tBaldivis East\tReady for service\t-32.3126555913481\t115.824591508574\t18264.2\t24191.6\nAYCA-13WZ1H\tRiemore Downs Estate\tReady for service\t-27.8912129399838\t153.11493288\t21179.4\t23515.6\n10566\tSecret Harbour\tReady for service\t-32.398073760026065\t115.74823021888733\t21008.4\t23216.4\n17314100\tHilltop Estate\tCheck with carrier\t-35.162060047000004\t147.343695136\t17973.4\t24297.6\n17256993\tVolker Street Dalby\tCheck with carrier\t-27.172153988\t151.24532688\t19071.0\t24627.6\n10076\tBaldivis-Rivergums\tReady for service\t-32.339061428306444\t115.8249306678772\t20809.4\t25932.4\nAYCA-1KG5DU\tCaddens Release\tUnder construction\t-33.7729190000145\t150.717314999989\t15421.2\t22674.8\n17321970\t52 Lot Subdivision at 278-298 Kopps Road Oxenford\tCheck with carrier\t-27.9186920175\t153.298582912\t21674.2\t22267.8\nAYCA-Z2NWV\tRiverside Estate\tReady for service\t-36.1396140000277\t146.94733\t20487.8\t23717.2\n135\tVicinity\tReady for service\t-27.668484209033387\t152.8932789745534\t16511.2\t25944.0\nAYAA-FIVKB\tSilkwood\tReady for service\t-27.62766731302\t153.257320500246\t18444.2\t23558.6\nAYCA-13KY8A\tStonecutters Ridge\tUnder construction\t-33.7177115360161\t150.85353745036\t23446.2\t24948.8\nAYCA-N65WN\tWilliams Landing\tReady for service\t-37.8572225911177\t144.752599787152\t22729.2\t26072.2\n10501\tLakelands\tReady for service\t-32.4656455793399\t115.77149033546448\t21886.6\t25179.6\nAYCA-1G91V7\tWellard Glen\tUnder construction\t-32.2718152106875\t115.847753342353\t19892.0\t22285.4\nAYAA-FPPZ3\tThe Village\tReady for service\t-19.2930919827071\t146.813468464972\t14684.8\t23180.0\nAYCA-RIMV7\tShoesmith Road / Gwenda Drive\tReady for service\t-27.5980661022218\t151.868618675165\t25128.2\t22924.6\nAYCA-SGJJ1\tEast Newman\tContracted\t-23.3533529999134\t119.745250920015\t22006.8\t23588.2\nAYCA-HZPMS\tRiverbank\tContracted\t-27.0924267420636\t152.957653706985\t19238.2\t24452.2\nAYAA-F68FV\tAmbrosia Estate\tReady for service\t-38.1152450696986\t145.232253663761\t20660.4\t24841.6\n17355795\t2070 Romsey Rd\tCheck with carrier\t-37.3508019845\t144.756296992\t22793.8\t22775.8\n10560\tQuinns Rock-Brighton Beachside\tReady for service\t-31.654480539552317\t115.69308316335082\t18071.6\t25967.2\nAYCA-1IDZGW\tDeepdale North\tContracted\t-28.7846939999871\t114.68948799999\t18533.8\t23196.0\nAYCA-E1F2P\tBig Sky\tReady for service\t-27.8371893741321\t153.329235325445\t18191.0\t23565.4\n10354\tMillbridge\tReady for service\t-33.314029170846915\t115.73272973299026\t16071.2\t24242.0\nAYCA-1B7QW3\tHeights Durack\tReady for service\t-12.4689548107749\t130.97684745566\t21874.0\t25462.4\nAYCA-EV5A6\tBotanic Ridge Estate\tReady for service\t-38.1394484973512\t145.257629874059\t19426.6\t22527.8\nAYCA-1E33L6\tHeartland\tUnder construction\t-34.0243758693653\t150.770672515165\t18505.8\t25459.4\n10595\tSecret Harbour\tReady for service\t-32.41516629622664\t115.76824150979519\t17785.6\t20940.2\n17317230\tTarneit Gardens\tCheck with carrier\t-37.8385389815\t144.675806048\t23625.4\t23220.6\nAYCA-MQ1IF\tHeron Park\tReady for service\t-32.1206153334704\t115.933853735722\t15577.4\t25051.6\n319\tSamford Retirement Village\tUnder construction\t-27.377593669964934\t152.88582620064778\t22643.0\t24645.8\n17364564\t42-44 WANAKA DRIVE\tCheck with carrier\t-37.714644981\t144.814979168\t18687.0\t26113.6\nAYCA-M7UKE\tAlex Ave Schofields\tReady for service\t-33.7077925068541\t150.885738909094\t20109.8\t23609.4\nAYCA-ES879\tVista Park\tContracted\t-34.4717682164447\t150.760773157261\t22038.6\t27233.4\nAYCA-DR2XE\tLyndarum\tReady for service\t-37.6175821626794\t145.022186165777\t21717.8\t22560.8\nAYCA-1T833W\tMunno Para West\tContracted\t-34.6537236956186\t138.679963581282\t20408.6\t23223.8\nAYCA-1JCYUF\tThe Village at Wellard\tUnder construction\t-32.2674723303443\t115.815194636229\t18262.2\t22666.0\nAYCA-GC69I\tRedbank Estate\tReady for service\t-31.1321730296903\t150.95450405738\t18335.4\t23286.4\nAYAA-FPPJL\tTreendale Grand Entrance\tReady for service\t-33.2832867559444\t115.743499048217\t19436.8\t23507.4\nAYCA-HAFZC\tSanctuary\tReady for service\t-32.8625539345981\t151.640409860095\t18883.8\t25015.2\nAYCA-EOUA4\tHidden Valley Northern Paddock\tContracted\t-37.3829400000256\t144.997435999994\t17682.2\t26559.0\nAYCA-RX20O\tForest Park Estate\tReady for service\t-23.324944363326\t150.526877499554\t18606.6\t22189.2\nAYAA-I2S0G\tRiverbank\tReady for service\t-27.0937721425907\t152.957423135435\t20557.0\t23837.8\nAYAA-HDH0A\t22-26 Fairway Drive, Kellyville\tReady for service\t-33.7268669549468\t150.95973745889\t19414.4\t24337.4\n10607\tSecret Harbour\tReady for service\t-32.40772750003423\t115.76587110757828\t15429.8\t20625.0\nAYCA-1OUD2V\tCoomera 2 Estate\tContracted\t-27.841463999984\t153.344296\t19854.0\t23673.0\nAYCA-181ZYP\tPlateau Drive Estate\tReady for service\t-28.8150662776219\t153.417476227406\t21881.8\t25652.4\nAYCA-NLQYO\tWest Macgregor\tReady for service\t-35.2062806440738\t149.008430046802\t22696.2\t21149.4\nAYCA-K45EX\tBrook View Estate- Glen Eden\tReady for service\t-23.908229708765\t151.275568311569\t18773.0\t21306.2\nAYCA-PY6D9\tLandcom - North Penrith\tUnder construction\t-33.7450150000141\t150.696213999988\t20271.0\t22852.8\nAYCA-DWNT0\t165 Rowes Lane\tReady for service\t-37.4199886208213\t144.968656883999\t21920.8\t22621.6\nAYCA-DSIWC\tCapestone Estate\tReady for service\t-27.2294086990467\t153.036578134434\t17595.8\t23629.2\n17320784\tThe Poplars Estate\tCheck with carrier\t-33.277665957\t149.068000096\t19572.0\t26750.2\nAYCA-L7A0N\tSherwins Way Estate\tReady for service\t-37.6190774358342\t145.031257513902\t18952.6\t23509.0\n10656\tTapping-Ashton Heights\tReady for service\t-31.719818845799136\t115.79861283302307\t23418.0\t24360.4\nAYCA-X7HVB\tHeron Park\tReady for service\t-32.1216367216858\t115.93642891207\t15454.2\t25631.8\nAYCA-XMF0H\tMarsden Heights\tReady for service\t-33.3946425629997\t149.604477678932\t23601.0\t24805.2\n17371587\tEatons Hill Village\tCheck with carrier\t-27.338218017\t152.96384304\t24296.0\t21724.4\nAYAA-F26S6\tSienna Wood\tReady for service\t-32.1637390545126\t115.988251904\t20522.6\t23159.8\n17320603\tAmaroo Park - Stage 5\tCheck with carrier\t-16.9941300335\t145.438629856\t23605.4\t21775.2\n17323048\tCotton Beach Subdivision\tCheck with carrier\t-28.308743002\t153.571853888\t15607.2\t25328.6\n17320331\tBeachside Residential - Stage A\tCheck with carrier\t-23.187879991\t150.790339072\t24005.4\t23059.8\nAYCA-QKD53\tAppletree Grove Estate\tReady for service\t-32.9133083422074\t151.585942961201\t20054.0\t22065.0\n17354070\tIluka Views\tCheck with carrier\t-36.049058993500005\t147.01605408\t19458.4\t20622.2\nAYCA-1FM3ZL\tSouth East Thornlands\tUnder construction\t-27.5720465858005\t153.276578592126\t14992.2\t25286.8\nAYCA-HVMVD\tBraemar Homesteads\tUnder construction\t-35.915706397652\t150.08859337385\t18500.8\t26479.4\nAYCA-ZURHM\tFrizzo Road, Palmview\tReady for service\t-26.7503297059672\t153.034471680316\t21159.2\t23773.8\nAYCA-HB8MK\tRenwick\tReady for service\t-34.4461002983266\t150.472202450163\t20334.8\t23893.4\n17351484\tBelle Eden Estate\tCheck with carrier\t-24.870535022000002\t152.393478112\t24258.6\t26172.8\nAYCA-EXVZY\tViewpoint, Huntly\tReady for service\t-36.6615597123722\t144.343671970779\t23549.0\t24646.4\nAYCA-194B8B\tByford On The Scarp\tContracted\t-32.2331850000137\t116.011438\t24018.0\t22323.6\nAYAA-GYS6F\tKalynda Chase Estate\tReady for service\t-19.3026909769079\t146.694942977699\t16935.0\t24812.0\nAYCA-EY6AL\tLucas\tReady for service\t-37.5495318428072\t143.781291126\t24126.4\t27354.2\nAYCA-1PWOJN\tERA Estate Capalaba\tContracted\t-27.5506336349747\t153.224509592182\t22140.8\t24483.4\n10630\tStirling-Princeton\tReady for service\t-31.898519899315282\t115.818230509758\t21400.8\t22399.2\nAYCA-DD3G0\tScenic Rise\tReady for service\t-27.9577945994649\t152.993526956843\t14536.4\t24245.0\n10382\tHalls Head-Port Mandurah\tReady for service\t-32.54381648521821\t115.71380406618118\t19966.8\t21302.4\nAYCA-1FDUG2\tMarsden Heights\tReady for service\t-33.3983704758768\t149.601534226053\t23601.0\t24805.2\nAYCA-1OAYNC\tNelson Street Subdivision\tContracted\t-27.6162069999815\t151.940039\t20041.8\t24398.0\nAYCA-1014V5\tMoree Gateway\tUnder construction\t-29.492475671184\t149.850760017586\t22431.4\t24639.2\nAYAA-FPT58\tBluestone Green\tReady for service\t-37.88934150819\t144.607045054923\t16476.0\t25418.6\n17332661\tColes Banksia Grove Shopping Centre\tCheck with carrier\t-31.7052610285\t115.803839168\t20131.2\t24681.0\nAYCA-1AAFH9\tAvonlee Estate\tContracted\t-31.8176660000115\t115.975602\t25524.0\t23097.0\n10353\tMillbridge\tReady for service\t-33.302394501737766\t115.72965525090694\t14452.6\t23208.0\n10103\tBaldivis-The Ridge\tReady for service\t-32.35180098789957\t115.80986805260181\t20305.4\t23850.2\nAYAA-J8QYX\tBrentwood Rise\tReady for service\t-27.6490802207415\t152.885460967255\t15703.6\t23750.8\nAYCA-MLELV\tLot 502 Jane Brook Drive\tReady for service\t-31.8595792828707\t116.056652970219\t22036.6\t20917.2\n10790\tBurns Beach\tReady for service\t-31.719263385089498\t115.7285964739358\t17064.4\t23357.8\nAYAA-HV1XO\tHighlands\tReady for service\t-37.5688227233428\t144.903520432181\t17925.6\t21879.4\nAYCA-HDLQ8\tRenwick\tReady for service\t-34.4501084045719\t150.472312610919\t20334.8\t23893.4\nAYAA-F68I5\tAmbrosia Estate\tReady for service\t-38.1152450696986\t145.232253663761\t20660.4\t24841.6\nAYAA-FU6UI\tWindradyne Estate\tReady for service\t-33.4000271122747\t149.54050912388\t17430.6\t23060.6\n17336882\tSage Apartments\tCheck with carrier\t-28.056345023000002\t153.367508896\t22680.2\t24811.8\nAYCA-IKR2K\tCalifornia Creek Estate\tReady for service\t-27.6595933676148\t153.204977135269\t18385.2\t24579.4\nAYCA-1FZO3Y\tKingston Downs Estate\tContracted\t-38.2495510895261\t144.544847507348\t18860.6\t23877.6\nAYAA-GE42C\tThe Ponds\tReady for service\t-33.7034999554244\t150.902785947618\t18264.8\t24267.4\nAYCA-IJB9S\tSmirk Road\tReady for service\t-32.3504673154424\t115.812371738849\t19925.0\t24808.2\nAYCA-N65SV\tWilliams Landing\tReady for service\t-37.8621307656859\t144.748331797565\t19564.8\t24841.6\nAYCA-DUTWB\tLittle Creek\tReady for service\t-23.8967502294119\t151.215576601543\t21857.6\t24390.4\nAYAA-F5EGE\tNewhaven\tReady for service\t-32.1285630000132\t115.929829\t15577.4\t25051.6\n17328401\tJOHNSTON STREET\tCheck with carrier\t-31.072084746\t150.910704736\t18664.2\t26519.4\nAYAA-HGK4T\tBrookhaven Rise Estate\tReady for service\t-37.5631410356327\t144.69416767765\t21542.4\t23327.4\n10238\tDalyellup\tReady for service\t-33.40049720869732\t115.61841130256653\t21921.6\t26404.4\n92\tEast Village\tReady for service\t-27.46672323494773\t153.09624206692058\t17414.8\t22219.0\nAYCA-1VDJU8\tCutters Ridge Estate\tContracted\t-26.6277088799738\t153.03225402\t21225.8\t28631.0\nON-N-HBUSH-C_Park\tCentenary Park\tReady for service\t-33.86345799888735\t151.06499433517456\t23262.6\t25249.0\n17350455\tDiamond Hill Estate\tCheck with carrier\t-37.075002745\t144.185662816\t19753.2\t21396.6\n10144\tBanksia Grove\tReady for service\t-31.690188411450773\t115.79452514648438\t20303.0\t24773.8\nAYCA-H2A18\tWonthaggi Heartlands\tReady for service\t-38.6046202500285\t145.584599039998\t21203.4\t22343.6\n10057\tAustralind-Treendale\tReady for service\t-33.28588904783222\t115.7360315322876\t21988.4\t23747.4\nAYCA-1B6PNJ\tHighfields North Estate\tUnder construction\t-27.438383064857\t151.940037706812\t20598.2\t25477.8\nAYCA-1FU57R\tSeascapes\tContracted\t-32.5600200911635\t115.675273969223\t19701.2\t22187.6\n10091\tBaldivis-Rivergums\tReady for service\t-32.3288040654175\t115.82648634910583\t20176.4\t25461.4\n17325301\tChapple Street Business Park\tCheck with carrier\t-23.842427048\t151.245870112\t20490.6\t25446.6\nAYCA-ZFMAE\tYanchep Golf Estate\tReady for service\t-31.5455487881747\t115.6544456324\t15657.2\t24548.0\n10194\tCanningvale-Sanctuary Waters\tReady for service\t-32.09340096992868\t115.92701017856598\t23973.0\t26180.2\n17319264\tPeregian Springs\tCheck with carrier\t-26.5011980415\t153.070047008\t22768.8\t24233.8\nAYCA-15LCBW\tLouisiana Road\tUnder construction\t-33.2607460000182\t151.471524999999\t23175.0\t24614.2\nAYAA-F3PM8\tWarralily - Armstrong Creek\tReady for service\t-38.2365722474205\t144.372427115256\t15609.6\t23813.8\n17324013\tGrassy Flat Road Diamond Creek\tCheck with carrier\t-37.6597870235\t145.155772096\t17092.6\t24506.6\n10268\tDalyellup\tReady for service\t-33.4037614806216\t115.61404466629028\t21921.6\t26404.4\n10516\tMadora Bay\tReady for service\t-32.48248989352084\t115.75327277183533\t23274.8\t23558.6\nAYCA-Z1Y3T\tAnnadale Estate\tUnder construction\t-37.5359491183692\t144.89832195574\t16943.8\t24030.8\n10394\tIluka\tReady for service\t-31.735472343316534\t115.73389984667301\t17143.8\t23661.8\n10406\tIluka\tReady for service\t-31.728176271463738\t115.7293152809143\t18155.4\t23789.2\nAYAA-HD37C\tPotts Hill\tReady for service\t-33.894950814314\t151.026671196638\t18245.0\t22352.4\nAYCA-PU9UW\tGrey Gum Estate\tReady for service\t-33.6870753533343\t150.938508516345\t20342.0\t24900.8\nAYCA-IA841\tTrumpet Wy/Cottier Dr/Lovell Pl\tContracted\t-20.4038037645468\t118.606949894255\t15508.2\t22114.4\nAYCA-TAE37\tHelena Valley\tReady for service\t-31.9171237015168\t116.034292150265\t16282.4\t24617.8\nAYCA-E2MNA\tEucalypt\tReady for service\t-37.6110605742831\t145.035290743683\t18390.6\t22212.0\nAYCA-IAOE6\tThe Boulevard\tReady for service\t-36.3559703078836\t145.373152448696\t23341.4\t23863.0\nAYCA-SN6ZO\tGoogong Township\tReady for service\t-35.4197191360926\t149.234504074279\t20986.2\t26356.0\nAYCA-L8UX7\tAmbrosia Estate\tReady for service\t-38.111228466431\t145.237007178357\t20660.4\t24841.6\nAYCA-N50IV\tVermont, Fernadell\tReady for service\t-33.5811619493067\t150.859265867241\t18864.0\t24392.4\nAYCA-RZ1UT\tPhase 2 Single LEAP Robertson Barracks\tReady for service\t-12.4381023599208\t130.975075679746\t19879.8\t22372.8\n17346283\tBellevue Hill Estate\tCheck with carrier\t-32.592495776\t149.562792736\t22020.2\t24609.0\nAYCA-E0VG1\tGracewood Kellyville\tReady for service\t-33.7192705851282\t150.942280808775\t19857.8\t22076.0\nAYCA-RBWFU\tGolden Bay\tReady for service\t-32.418280991871\t115.76247194129\t17785.6\t20940.2\nAYCA-UFCXA\tSaddlers Ridge\tUnder construction\t-32.7612562330972\t151.53493159951\t17567.2\t22899.6\nAYCA-FTSDU\tOakdene Estate\tReady for service\t-38.2384317605686\t144.54527020194\t17025.2\t24740.0\nAYCA-J3YYH\t330 Bridge Inn Road\tUnder construction\t-37.6015940565486\t145.069762768022\t17557.8\t19829.2\nAYCA-SS6F2\tThe Woods\tReady for service\t-37.5371740000247\t144.915389999993\t19605.2\t25543.8\nAYCA-1JRAKC\tWaverley Parks Estate Willowvale\tReady for service\t-27.8269472505816\t153.280826659875\t18673.8\t23833.4\nAYCA-T4NHQ\tOld Broadwater Farm\tReady for service\t-33.6679280396088\t115.310452530096\t22400.8\t24832.6\nAYCA-FD0UW\tThe Grove\tReady for service\t-38.0903093305982\t145.281703115116\t24282.8\t23132.0\n17331693\tHunt Club Village Shopping Centre\tCheck with carrier\t-38.100317034\t145.292970976\t16429.0\t25297.4\nAYCA-K7DRA\tJohnston Stage 2\tReady for service\t-12.4878039566524\t131.00690499391\t21990.2\t22143.8\nAYCA-1RC93R\tSubdivision of Lot 3333, Katherine East\tContracted\t-14.466671523834\t132.297197632446\t24071.8\t23403.8\n17315991\tSteele Road Logan Village\tCheck with carrier\t-27.7712690325\t153.115872128\t23458.0\t22302.2\n10545\tMurray-Murray River Country Estate\tReady for service\t-32.6095100377231\t115.85558697581291\t16446.0\t25777.2\n10551\tMurray-Murray River Country Estate\tReady for service\t-32.603443925540866\t115.85722647607327\t17074.0\t26951.4\nAYCA-18LJI2\tSpring Farm\tContracted\t-34.0714520000158\t150.737881999989\t21076.2\t24580.8\nAYCA-1F0VFN\tFranklin Place\tReady for service\t-38.1820110000299\t146.545633\t14980.8\t24848.2\n10297\tDawesville-Florida Beach\tReady for service\t-32.62276827172043\t115.62710702419281\t17451.4\t24220.4\nAYCA-1FZM3S\tWaterlink Estate\tUnder construction\t-36.7205260000284\t142.211344\t21449.6\t26217.0\n17327844\t85 Brooking Road Gisborne\tCheck with carrier\t-37.5056739945\t144.601026848\t19887.8\t22916.0\nAYCA-JNMSX\tYanchep Golf Estate\tReady for service\t-31.5470222925299\t115.655937330626\t16552.0\t25067.6\n10111\tBaldivis-Tuart Ridge\tReady for service\t-32.34506663589533\t115.81529080867767\t19152.8\t26377.6\nAYCA-KEB94\tThe Village at Wellard\tReady for service\t-32.2718680080145\t115.822316290807\t19896.6\t23525.8\nAYCA-13EJEY\tMaddington Rd,Alcock St- Maddington\tUnder construction\t-32.0427570000128\t115.99974\t21033.4\t22252.0\nAYCA-1BUV12\tHighgrove Estate\tContracted\t-38.1132090000285\t145.329204999998\t20592.2\t20332.0\nAYCA-TXGI1\tPlenty River Views\tReady for service\t-37.4982092374781\t145.109534845624\t21746.4\t23521.6\nAYCA-LTU0Z\tThe Dunes\tReady for service\t-38.305781828889\t144.330300660642\t17337.0\t25067.4\nAYCA-1ZAGER\tBunnings Warehouse Glendale\tContracted\t-32.9423760000163\t151.627208999998\t17147.4\t25025.0\nAYCA-J3RSC\tNabilla Riverlinks\tReady for service\t-21.155124074927\t148.959075130306\t20464.0\t20715.2\nAYCA-1MF8QB\tTindal Avenue, Beeliar\tUnder construction\t-32.1345160000132\t115.808323\t20326.0\t22533.8\n10663\tTapping The Kestrels\tReady for service\t-31.722027374956312\t115.79255104064941\t22475.8\t24780.4\n154\tWater Edge\tReady for service\t-38.07048619596557\t145.3278744938933\t18544.2\t26238.4\nAYCA-JU3C3\tZuccoli\tReady for service\t-12.5038714941515\t131.007866215672\t20655.4\t24551.8\n17117399\tKooringa Valley - stage 1\tCheck with carrier\t-27.5173340365\t151.901484128\t20625.0\t25132.2\nAYCA-1N5EWQ\tThe Rise\tContracted\t-38.1779480000299\t146.561114\t23949.2\t25791.2\nAYAA-FI1F0\tCliftleigh Residential Estate\tReady for service\t-32.7895661017861\t151.514588914151\t20922.8\t24228.8\nAYCA-R8A12\tCormiston Upper\tContracted\t-41.4003750000277\t147.080731\t18932.8\t26095.0\nAYCA-1J45BM\tCarinity Aged Care - Fairfield Waters\tUnder construction\t-19.3082003990128\t146.807784719803\t18294.8\t23120.0\n10700\tWannanup-Port Bouvard North\tReady for service\t-32.59278599910757\t115.65177261829376\t23020.6\t22511.8\n10155\tBanksia Grove\tReady for service\t-31.69622809346543\t115.80467998981476\t19649.6\t24441.8\nAYCA-18GJLW\tAurora Estate\tContracted\t-37.6146450000259\t145.001675999995\t19888.4\t22687.4\n17252433\tChurchfield\tCheck with carrier\t-34.102176029\t150.790938848\t21345.0\t22338.4\n10374\tEglington-Allara\tReady for service\t-31.577557425927434\t115.66079020500183\t22868.8\t23219.0\nAYAA-G53SW\tGlenmore Ridge\tReady for service\t-33.8009985073084\t150.680567514446\t21305.2\t24483.8\nAYCA-198O38\tGlenview Estate\tUnder construction\t-27.5569409999816\t151.898128\t20729.8\t25265.4\n10577\tSecret Harbour\tReady for service\t-32.41216278036248\t115.76191484928131\t17785.6\t20940.2\n10216\tClarkson-Somerly\tReady for service\t-31.692362057588973\t115.72820484638214\t21174.0\t24990.6\nAYCA-WDCA1\tThe Ponds\tReady for service\t-33.7064140000126\t150.898332999986\t20083.6\t23585.0\nAYAA-ESVR8\tQuarters\tReady for service\t-38.0985862731359\t145.253535845232\t18951.2\t23685.8\n10395\tIluka\tReady for service\t-31.733395875766995\t115.73339223861694\t19410.4\t24236.8\n10004\tAveley-Vale\tReady for service\t-31.79377591518981\t115.98265528678894\t23497.2\t21903.4\nAYCA-IKFNQ\tCaddens Road, Kingswood\tReady for service\t-33.7749321775366\t150.732427925935\t17598.4\t21393.4\n10613\tSecret Harbour-Anstey Park\tReady for service\t-32.405161818926416\t115.7690455019474\t16931.6\t22374.6\nAYCA-1FBKCC\tVantage\tUnder construction\t-32.7242332800109\t152.11326132\t20325.2\t24213.8\n10118\tCarramar-Banksia Grove\tReady for service\t-31.70006751072969\t115.79432129859924\t22056.2\t25031.6\nAYCA-13X8E1\tRiemore Downs Estate\tUnder construction\t-27.8880325616494\t153.111054854636\t21179.4\t23515.6\n10544\tMurray-Murray River Country Estate\tReady for service\t-32.606426477329705\t115.85716210305691\t16446.0\t25777.2\nAYCA-RJUQM\tGoogong Township\tReady for service\t-35.4144397061314\t149.235661448984\t20986.2\t26356.0\nAYCA-W4ML9\tHeights Durack\tReady for service\t-12.4702565470322\t130.979350484024\t22860.2\t24013.6\nAYCA-1D96Q5\tCasey 4\tReady for service\t-35.1768342022029\t149.09373520338\t20885.8\t22303.0\nAYAA-FPRLN\tBluestone Green\tReady for service\t-37.8955127533772\t144.60797247417\t16476.0\t25418.6\nAYCA-1IP7M3\tHunt Club Estate\tContracted\t-38.1112793229141\t145.300113062036\t22572.0\t23986.8\n17319025\tIsaac Views\tCheck with carrier\t-21.995396002\t148.066696096\t17956.2\t24375.4\nAYCA-F9XI8\tToolern Waters\tContracted\t-37.7167718217348\t144.561908358791\t18429.0\t22839.0\n79\tWildflower Ridge\tReady for service\t-27.690741712392327\t152.9201320841761\t26086.8\t22307.6\n10312\tDawesville-Dawesville Ridge\tReady for service\t-32.6230624077761\t115.63646256923676\t16009.6\t25280.2\nAYAA-GHEC9\tProvidence Estate\tReady for service\t-37.6239441054423\t144.884572459401\t20883.8\t24136.8\nAYAA-GGXGS\tProvidence Estate\tReady for service\t-37.6249702235692\t144.892266446432\t22284.6\t23892.2\n10040\tAveley-Vale\tReady for service\t-31.77101942381642\t115.98254799842834\t24256.0\t23918.2\nAYCA-HZYR1\tArbourlea\tReady for service\t-38.0828084141228\t145.326774694117\t18511.4\t24406.0\n17334900\tMinto Renewal Project\tCheck with carrier\t-34.036637041\t150.851014912\t16671.2\t23823.6\nAYCA-ICLSQ\tVillage Square Estate\tReady for service\t-33.9539837867809\t150.85348955162\t22932.6\t23873.8\nAYCA-1DG0KG\tWolstenholme Drive final stage\tReady for service\t-42.7806744458159\t147.545286116511\t20857.4\t23170.4\nAYCA-F191C\tEdmondson Park South P1\tReady for service\t-33.9813315071457\t150.854876963875\t23144.8\t24256.0\n10603\tSecret Harbour\tReady for service\t-32.40815070727752\t115.75285837054253\t18912.6\t20619.4\n17340486\tWest Park Industrial Estate\tCheck with carrier\t-37.8022170065\t144.740836992\t24790.4\t23069.2\nAYAA-H9HQB\tParagon Estate\tReady for service\t-37.9105173700591\t144.760691293499\t22562.4\t24608.6\nAYAA-FPSHQ\tBridge Inn Rise Estate\tReady for service\t-37.6010320000267\t145.119855999996\t18800.4\t25852.6\n194\tAvondale Heights \tReady for service\t-37.76578967741349\t144.86028228759304\t19376.4\t22712.6\nAYCA-NLQCQ\tThe Glades\tReady for service\t-34.7875775698901\t138.59904494578\t22760.0\t24922.2\nAYCA-PT8T9\tGrey Gum Estate\tReady for service\t-33.6871960958341\t150.938493459122\t20342.0\t24900.8\nAYCA-FDMGP\tSpringlands Estate\tReady for service\t-37.7128286267871\t144.723910254727\t16978.4\t24745.0\nAYAA-GR8X0\tElizabeth Hills\tReady for service\t-33.8996909239624\t150.843414378787\t20516.4\t25692.0\nAYCA-DLVJU\tSettlers Run Estate\tReady for service\t-38.1348295175072\t145.251979560089\t19426.6\t22527.8\nAYAA-FEBBY\tCarlingford Estate\tReady for service\t-37.6627376909728\t144.987274126825\t21050.6\t25338.2\nAYCA-VPX4J\tKirkham Rise\tReady for service\t-34.022790678117\t150.705375039098\t19554.8\t27735.0\nAYCA-KD23I\tRenaissance Rise\tReady for service\t-37.6023091045257\t145.081302875535\t18714.2\t21452.8\nACPV\tPalmview\tReady for service\t-26.73523804255589\t153.06353615169382\t21010.8\t24742.2\nAYCA-G8KWU\tSpring Farm\tReady for service\t-34.0658369930352\t150.735698234826\t20489.8\t26185.6\nAYCA-I9H4I\tOsprey Subdivision\tReady for service\t-20.4157163291041\t118.614106529595\t19904.6\t25647.4\nAYAA-GNWAI\tEstuary\tReady for service\t-38.2012828124497\t144.455436423453\t17837.2\t20761.8\nAYAA-FXOCV\tTuart Ridge\tReady for service\t-32.34050648256\t115.813532501132\t19003.2\t25307.8\nAYCA-1VT8Y4\tRobinson Park\tContracted\t-32.0839373972776\t115.995133701198\t16227.0\t24652.0\n17341648\tDiamond Crescent\tCheck with carrier\t-33.895387894500004\t150.8808672\t18973.0\t21058.0\nAYCA-WHHP1\tThe Vines\tReady for service\t-32.8286091895677\t151.323950914147\t15438.4\t24190.6\n172\tGemstone Rise\tReady for service\t-27.572448933673176\t151.9103253116011\t19085.0\t24623.2\nAYCA-LJ5ZI\tMcKeachies Run\tReady for service\t-32.6974762147736\t151.538040753666\t18312.8\t22832.8\n10475\tLakelands\tReady for service\t-32.46648649795694\t115.76568603515625\t21679.6\t27125.0\nAYAA-FUGCA\tSaratoga Estate\tReady for service\t-37.9066893056224\t144.71646045913\t22788.4\t23839.4\nAYCA-17GFGC\tQuarters\tReady for service\t-38.0967720000281\t145.249468999997\t19670.6\t23719.0\n10220\tClarkson-Somerly\tReady for service\t-31.686396087611623\t115.73165953159332\t18085.4\t23107.0\nAYCA-11AP93\tSomerset Rise\tReady for service\t-36.0236020070927\t146.984624526909\t19751.4\t25368.0\nAYCA-U7W4J\tLakeland Development (VR Land)\tContracted\t-38.076076000029\t145.434943999999\t16354.8\t22748.0\nAYAA-G9SX5\tSussex Rise\tReady for service\t-35.1593660247606\t150.581802283005\t15644.8\t23201.6\n10214\tClarkson-Somerly\tReady for service\t-31.683762174712466\t115.7305920124054\t15798.8\t21451.8\nAYCA-FKVUE\tKialla Lakes Estate\tReady for service\t-36.4323583231229\t145.402353581587\t21039.8\t23906.6\n10669\tWandi-Honeywood\tReady for service\t-32.19070947854437\t115.86132287979126\t18215.6\t22664.6\nAYCA-1IFF61\tGlebe Hill\tContracted\t-42.8837890000249\t147.430894\t18238.4\t23306.8\nAYCA-189CVK\tHeron Park\tReady for service\t-32.1181321904035\t115.936707412129\t21299.4\t22939.0\n17399469\tHolmesglen Private Hospital\tCheck with carrier\t-37.935096993500004\t145.050038016\t20554.4\t24837.4\nAYCA-GDD50\tPennyroyal Development\tReady for service\t-37.6577821951206\t144.578526996617\t18974.2\t25301.6\nAYCA-16LJ11\tNorfolk Estates Pty Ltd\tUnder construction\t-27.8330656161685\t153.326696189634\t21780.0\t23144.2\nAYCA-FCJYS\tReid Street Subdivision\tReady for service\t-26.5598998844113\t148.779103252302\t20965.0\t21443.6\nAYCA-J6QDT\tSanctuary\tReady for service\t-32.8700009812975\t151.644906313186\t18883.8\t25015.2\nAYCA-JJ268\tBungarribee (Bunya)\tReady for service\t-33.7754688239224\t150.868040389349\t17623.0\t23258.6\n17147925\tMallia Subdivision\tCheck with carrier\t-37.4063609625\t144.963704896\t23570.6\t23414.2\n17289902\tDales Rd\tCheck with carrier\t-38.373669001\t142.518738976\t22638.8\t22480.6\nAYCA-EEDPT\tNewleaf Bonnyrigg Development\tReady for service\t-33.8885391409453\t150.895881918938\t17522.0\t25382.8\n17328894\tIndooroopilly Shopping Centre\tCheck with carrier\t-27.49784301\t152.973822976\t21648.6\t20344.6\nAYCA-G6YEX\tEast Newman\tReady for service\t-23.3565346916548\t119.748159268223\t17015.0\t23401.8\nAYCA-LDBQ3\tNabilla Riverlinks\tReady for service\t-21.1565352551378\t148.95891731688\t20464.0\t20715.2\n17326917\tJoondalup Business Park South\tCheck with carrier\t-31.7572630115\t115.768271872\t19650.2\t25804.4\nAYCA-ZTGYS\tAurora Estate\tReady for service\t-37.6164610000256\t145.000503999995\t19888.4\t22687.4\nAYAA-FPPUI\tThe Ponds\tReady for service\t-33.706787340221\t150.902998287707\t18264.8\t24267.4\nAYCA-1F6W0L\tStage 1\tReady for service\t-27.2346020099783\t152.98472448\t20689.2\t23054.4\n17332519\tKalimna Park - stage 12\tCheck with carrier\t-27.4353350435\t151.938828\t20598.2\t25477.8\n239\tRipley Valley\tReady for service\t-27.668471218456073\t152.78388176915914\t22927.0\t22871.2\nAYAA-GHIU2\tProvidence Estate\tReady for service\t-37.6221723380054\t144.891117820951\t20883.8\t24136.8\nAYAA-F3CHZ\tNewhaven\tReady for service\t-32.1331908950702\t115.930736211416\t16257.2\t25647.2\nAYCA-EZXP3\tHidden Waters\tReady for service\t-32.8837089157827\t151.639558370114\t18883.8\t25015.2\nAYCA-KBSOQ\tHuntington Rise\tReady for service\t-27.9184949999847\t153.287132\t20267.4\t21354.4\n10218\tClarkson-Somerly\tReady for service\t-31.685108811962056\t115.72906851768494\t15798.8\t21451.8\nAYCA-JY3KC\tOakdene Estate\tReady for service\t-38.238505748673\t144.545255663843\t17025.2\t24740.0\nAYCA-1ED0W6\tElderslie\tUnder construction\t-34.0564940000155\t150.722491999989\t17269.0\t23621.6\n10583\tSecret Harbour\tReady for service\t-32.416944979494694\t115.75388431549072\t18912.6\t20619.4\n17359417\t1550 Pascoe Vale Road Coolaroo\tCheck with carrier\t-37.645206193\t144.933915968\t18803.4\t25872.6\nAYAA-G0M8Z\tSouth at Seaford Meadows\tReady for service\t-35.1712591559897\t138.484664684411\t25272.6\t23429.2\n17341536\tWyreema Estate\tCheck with carrier\t-27.654777992\t151.869831136\t19476.8\t22420.8\nAYCA-EWZHS\tSouth at Seaford Meadows\tReady for service\t-35.1725839127242\t138.484732855314\t25272.6\t23429.2\nAYAA-F8LET\tOrmeau Ridge\tReady for service\t-27.8018459693702\t153.25226694043\t19521.6\t21598.0\nAYCA-VHOKB\tAurora Estate\tReady for service\t-37.6192571596227\t144.996540243027\t18145.8\t23570.0\n17359833\t75-81 Bremen Street Hemmant\tCheck with carrier\t-27.455191833500002\t153.139708768\t22333.4\t20903.2\nAYAA-HJXUR\t165 Rowes Lane\tReady for service\t-37.4196941109529\t144.965936354376\t20098.0\t21833.4\nAYCA-Q23DQ\tStrzelecki Views Estate\tReady for service\t-38.2064062373483\t146.165903487972\t18569.2\t24658.4\nAYCA-DIOLX\tOcean Club Residential Community\tReady for service\t-31.5666562701162\t152.831779795737\t20651.2\t25095.0\n17335051\tSt Eyre Estate\tCheck with carrier\t-32.5007980285\t137.733543008\t23841.8\t25734.8\nAYCA-KJ1FN\tThe Parc\tReady for service\t-33.719577830225\t150.950595156373\t19643.0\t21717.4\n17348299\tBeaumount Park\tCheck with carrier\t-36.047103303\t147.020243776\t19458.4\t20622.2\n17355577\tFersfield Road \u0026 Willowbank Road Gisborne\tCheck with carrier\t-37.4967479665\t144.592994176\t20022.8\t23103.4\n1143\tProposed Development Site\tReady for service\t-37.8177849378873\t144.934485623438\t19676.2\t25104.4\nAYCA-1FMEEC\tBarlow Estate\tContracted\t-27.5289549999814\t151.91544\t17593.4\t21483.8\nAYCA-1940S3\tAlarah Estate\tUnder construction\t-38.1107970000281\t145.248546999997\t23039.2\t25207.8\nAYAA-FKLI6\tHalcyon Landing Bli Bli\tReady for service\t-26.6174680398293\t153.03895856369\t20896.4\t27981.4\n10594\tSecret Harbour\tReady for service\t-32.41548838997459\t115.76508186757565\t17785.6\t20940.2\nAYCA-10P92J\tSt Anthony\u0027s - Secret Harbour\tUnder construction\t-32.3999940000145\t115.762005\t19191.2\t20236.2\nAYCA-139S5J\tGolden Bay\tReady for service\t-32.4205202560757\t115.755524712345\t18912.6\t20619.4\nAYCA-1HPMUJ\tPeregian Breeze\tUnder construction\t-26.4864609999726\t153.078679\t22579.6\t24757.6\nAYCA-1NJD6X\tAspiri\tUnder construction\t-32.1445270000132\t115.916003\t21514.4\t26428.6\n10629\tStirling-Princeton\tReady for service\t-31.897763880376377\t115.81708252429962\t21400.8\t22399.2\nAYCA-KYBBZ\tSaratoga Estate\tReady for service\t-37.9077956180254\t144.718687648885\t20439.4\t23376.4\n89\tVictoria Harbour\tReady for service\t-37.8193148648327\t144.9425101994443\t21579.8\t23064.8\n10478\tLakelands\tReady for service\t-32.46939213628661\t115.76628684997559\t23219.4\t26541.0\nAYCA-ZDHI7\tAspiri\tReady for service\t-32.141551422264\t115.917500191323\t21514.4\t26428.6\nAYCA-JBYRH\tKirkham Rise\tReady for service\t-34.0241027745067\t150.707736011559\t19230.4\t28337.4\nAYCA-IUBNF\tLots 156-158 \u0026 169 Landsdale\tReady for service\t-31.8174764837792\t115.873276630402\t23435.4\t23866.8\n10332\tDudley Park-Mariner\u0027s Cove\tReady for service\t-32.55575737027896\t115.73980003595352\t20489.2\t23017.0\n17231671\tLots 639-642 Horus Bend Bibra Lake - Stage 3\tCheck with carrier\t-32.098437995\t115.814032992\t16557.4\t23593.2\nAYCA-HRACE\tGreenhills Beach Residential\tReady for service\t-34.0341041256818\t151.161808804036\t18744.8\t24791.6\n17322671\tAlbert Park Stage 5\tCheck with carrier\t-37.5462279925\t143.926175168\t16252.8\t23810.2\nAYCA-O1HNI\tAspiri\tReady for service\t-32.1403086957267\t115.912551774299\t21514.4\t26428.6\n17340366\tRed Ochre\tCheck with carrier\t-31.478602007000003\t152.872635008\t22614.0\t24360.4\nAYCA-SJ3BD\tThe Village at Wellard\tReady for service\t-32.2738274722911\t115.824519064651\t19896.6\t23525.8\nAYCA-E2RAD\tRees Road, Brookfield\tReady for service\t-37.7097882370117\t144.556781497763\t17705.4\t23420.4\n10113\tBaldivis-Tuart Ridge\tReady for service\t-32.339206464431314\t115.81399261951447\t19003.2\t25307.8\nAYCA-KYW9J\tEstella\tReady for service\t-35.0802781835745\t147.351224224319\t21554.2\t26432.4\n10509\tLakelands\tReady for service\t-32.469058142569\t115.778067111969\t21399.8\t25520.2\nAYAA-G2694\tThe Ponds\tReady for service\t-33.7037820097858\t150.906557791334\t18396.8\t25013.0\nAYCA-10NFWS\tTwin Waters Estate\tReady for service\t-34.9143320000157\t150.614387999986\t21031.4\t22560.2\nAYCA-PCUQ6\tJohnston Stage 2\tReady for service\t-12.4880008665144\t131.008389200094\t21545.0\t23224.2\nAYCA-15R7EA\tByford West\tReady for service\t-32.2256277021986\t115.976886020093\t21172.8\t20714.0\nAYCA-11QH4G\tThornton East Estate\tReady for service\t-32.7652340000161\t151.649705999999\t19925.2\t25320.0\nAYAA-G2EO2\tEagle Rise Estate\tReady for service\t-27.4682997975088\t152.562973981554\t20004.8\t25265.2\nAYCA-KVTM7\tGracemere Greens Estate\tReady for service\t-23.4647783600981\t150.467308434216\t20163.4\t22397.4\n10295\tDawesville-Port Bouvard South\tReady for service\t-32.61153146605253\t115.63187062740326\t20947.6\t25747.6\n156\tGrand Central Shopping Centre\tReady for service\t-27.5603446110652\t151.94767092229293\t19013.8\t24226.2\n10309\tDawesville-Dawesville Ridge\tReady for service\t-32.62408349325638\t115.63877463340759\t16009.6\t25280.2\nAYCA-ES8DH\tHillTop (Bennis)\tReady for service\t-34.4376222076966\t150.848479023084\t26392.0\t22415.4\nAYCA-MNFP2\tBrookford\tContracted\t-38.1144916738184\t145.314933876048\t15917.2\t22208.0\nAYCA-YGR8M\tLearmonth Street Subdivision\tReady for service\t-37.5588375241757\t143.810931456638\t20725.0\t24184.4\n17376001\tSpringview Estate\tCheck with carrier\t-37.8073679985\t140.750435008\t15611.4\t23795.6\nON-V-CNL-FUR\tFurlong Road\tReady for service\t-37.75588456672174\t144.79012191295624\t17593.2\t22607.4\n17324603\tMoonee Ridge Estate\tCheck with carrier\t-30.208320005\t153.15106896\t18112.2\t23549.2\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1659338940070_1855801685",
+ "id": "paragraph_1659338940070_1855801685",
+ "dateCreated": "2022-08-01T07:29:00+0000",
+ "dateStarted": "2022-08-16T04:47:41+0000",
+ "dateFinished": "2022-08-16T04:47:41+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Tagging a Unique ID to each New development sites ",
+ "text": "%python\nnew_site_df.insert(0,\u0027DEVELOPMENT_ROLLOUT_ID\u0027,\u0027\u0027)\nnew_site_df[\u0027DEVELOPMENT_ROLLOUT_ID\u0027] \u003d [dev_id for dev_id in range(1, len(new_site_df)+1)]\nz.show(new_site_df)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {
+ "0": {
+ "graph": {
+ "mode": "table",
+ "height": 300.0,
+ "optionOpen": false,
+ "setting": {
+ "table": {
+ "tableGridState": {},
+ "tableColumnTypeState": {
+ "names": {
+ "LOC_UID": "number",
+ "DEVELOPMENT_ROLLOUT_ID": "number",
+ "DEVELOPMENT_NAME": "string",
+ "STATUS": "string",
+ "LATITUDE": "number",
+ "LONGITUDE": "number",
+ "TOTAL_COST": "number",
+ "TOTAL_REVENUE": "number"
+ },
+ "updated": false
+ },
+ "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
+ "tableOptionValue": {
+ "useFilter": false,
+ "showPagination": false,
+ "showAggregationFooter": false
+ },
+ "updated": false,
+ "initialized": false
+ }
+ },
+ "commonSetting": {}
+ }
+ }
+ },
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TABLE",
+ "data": "DEVELOPMENT_ROLLOUT_ID\tLOC_UID\tDEVELOPMENT_NAME\tSTATUS\tLATITUDE\tLONGITUDE\tTOTAL_COST\tTOTAL_REVENUE\n1\t8\tMandalay\tReady for service\t-37.46798\t144.9582\t18440.0\t27444.2\n2\t23\tBrighton\tReady for service\t-31.65684\t115.70471\t19166.0\t23435.4\n3\t119\tArcadia\tReady for service\t-38.07084494642178\t145.43561612126868\t16998.8\t23317.4\n4\t37\tSpringfield Central\tReady for service\t-27.682974884308496\t152.91246017602205\t26901.8\t22150.6\n5\t35\tYarrabilba\tReady for service\t-27.797998206\t153.101112401\t19592.0\t22519.6\n6\t63\tElliot Springs\tReady for service\t-19.401424360582585\t146.86272523475841\t17163.6\t22134.4\n7\t73\tAlkimos Beach\tReady for service\t-31.603789876\t115.681571085\t17232.8\t23476.4\n8\t274\tAlkimos Vista\tReady for service\t-31.60329949166057\t115.6701798417717\t16931.6\t23548.8\n9\t66\tCalderwood Valley\tReady for service\t-34.55546994973096\t150.75436137069624\t19298.2\t23977.4\n10\t263\tEynesbury\tUnder construction\t-37.7910746733703\t144.5355847930891\t16763.8\t27185.6\n11\t9\tOran Park\tReady for service\t-33.99488\t150.72662\t17574.2\t24392.4\n12\t133\tSpringfield Rise\tReady for service\t-27.695522398191628\t152.8959551906582\t25843.2\t25099.8\n13\t17325842\tPart Section 4574 Goode Road Subdivision\tCheck with carrier\t-12.6280940325\t131.136419168\t16962.6\t23033.2\n14\t54\tAtherstone\tReady for service\t-37.70794\t144.58145\t26412.6\t26500.8\n15\t307\tSanctuary Cove\tUnder construction\t-27.869021570119873\t153.3576214596788\t15030.4\t24972.0\n16\t75\tHarpley\tReady for service\t-37.912572931\t144.625651148\t14821.4\t22920.6\n17\t137\tWestbrook\tReady for service\t-37.834372936889345\t144.6912409809133\t22139.2\t25734.6\n18\t28\tJordan Springs\tReady for service\t-33.72444837965098\t150.7529925477441\t19371.6\t29354.0\n19\t40\tThe Hermitage\tReady for service\t-33.999267672\t150.782646178\t20850.6\t25651.8\n20\t86\tArmstrong Creek\tReady for service\t-38.219653804\t144.337797674\t15169.8\t22975.8\n21\t12\tWaterford County\tReady for service\t-32.76639\t151.63323\t15208.0\t23994.2\n22\t17346815\tKilgariff\tCheck with carrier\t-23.770110992\t133.874777984\t24732.8\t24870.6\n23\tON-Q-CM\tCoomera Waters\tReady for service\t-27.844502585656677\t153.34836959838867\t18700.8\t22525.2\n24\t150\tBrighton - Ridgewood\tReady for service\t-31.668997101580473\t115.72628719298541\t21109.0\t23038.0\n25\t17348681\tJerberra Estate\tCheck with carrier\t-35.0503108155\t150.617052\t21621.2\t27593.6\n26\t112\tTulliallan\tReady for service\t-38.07325420365761\t145.32472823624735\t17375.4\t26864.4\n27\t103\tDelaray\tReady for service\t-38.1054664324721\t145.34451757431034\t19434.0\t22365.2\n28\t177\tMovida\tReady for service\t-31.880915344780455\t116.02860284367573\t17173.4\t24249.8\n29\t17330606\tBenjamin Estate\tCheck with carrier\t-12.5455349705\t131.178166912\t20701.4\t24904.4\n30\t222\tAmber\tReady for service\t-37.5901190955084\t144.9926761245665\t20290.0\t24308.4\n31\t95\tNorth Harbour\tReady for service\t-27.12189866458404\t152.9953961986942\t18420.6\t23135.8\n32\t18\tTrinity\tReady for service\t-31.63125\t115.6923\t19744.4\t21161.2\n33\t6\tGregory Hills\tReady for service\t-34.02859\t150.76602\t21295.2\t26651.4\n34\t48\tWaterford Melton\tReady for service\t-37.71846\t144.56231\t21531.4\t21999.8\n35\t265\tMt. Atkinson\tUnder construction\t-37.74787485827774\t144.68840633391846\t25250.6\t21633.2\n36\t5\tSpringwood\tReady for service\t-34.6028\t138.76311\t18236.8\t27101.2\n37\t169\tThornhill Park\tReady for service\t-37.70310491027097\t144.62098096373794\t21939.8\t23468.6\n38\t220\tBotanical\tReady for service\t-37.56278183676677\t144.8842612361972\t16907.4\t22684.2\n39\t124\tSt. Germain\tUnder construction\t-38.09153958890924\t145.35089050295065\t21396.2\t23230.6\n40\t29\tRopes Crossing\tReady for service\t-33.71985\t150.78022\t20240.0\t24173.6\n41\t302\tMount Gilead\tUnder construction\t-34.11922208553677\t150.79637561797068\t18153.2\t22136.8\n42\t17352628\tWalgrove Stage 3\tCheck with carrier\t-34.879298351\t148.972882176\t22662.8\t21091.6\n43\t36\tEcco Ripley\tReady for service\t-27.690283476217093\t152.792975736585\t19075.4\t22592.8\n44\t85\tSomerfield\tReady for service\t-38.013076203\t145.163782188\t19546.8\t23876.0\n45\t1\tNoosa Waters\tUnder construction\t-26.4021826\t153.0615905\t20748.0\t24423.6\n46\t4\tFernbrooke\tReady for service\t-27.649980000000006\t152.84131999999997\t18604.0\t25718.4\n47\t27\tGrandvue\tReady for service\t-38.06422199480529\t145.42937690489117\t21233.0\t23872.4\n48\t94\tThe Pines\tReady for service\t-23.15793858635379\t150.7088666997396\t20113.4\t23855.8\n49\t30\tMarriott Waters\tReady for service\t-38.077606995\t145.239757322\t23739.8\t26873.6\n50\t199\tVerdant Hill\tUnder construction\t-37.817526995212646\t144.67540298462276\t20902.6\t21606.2\n51\t2\tAlamanda\tReady for service\t-37.91384960992702\t144.74352936555584\t25219.2\t24307.6\n52\t223\tRathdowne\tReady for service\t-37.60362794600752\t144.98134082402584\t19838.6\t24601.8\n53\t166\tGen Fyansford\tReady for service\t-38.13604424640745\t144.3176150775032\t22903.4\t23590.8\n54\t118\tEastland Shopping Centre\tReady for service\t-37.81043931231062\t145.23779297099972\t19536.4\t24682.2\n55\t352\tThe Hermitage (SEKI)\tReady for service\t-34.01737882595945\t150.76310090845152\t18021.6\t23293.2\n56\t180\tBrookhaven\tReady for service\t-27.734339958204625\t153.17479691902153\t16415.2\t22792.4\n57\t262\tBingara Gorge\tUnder construction\t-34.22852815365605\t150.67522570933588\t20444.0\t26780.2\n58\t17350712\tThe Ridge\tCheck with carrier\t-33.541005243\t150.919743232\t18206.0\t22667.6\n59\t226\tFlourish\tUnder construction\t-27.680557076021895\t152.75919471740568\t23720.8\t22118.4\n60\t69\tUniversity Hill\tReady for service\t-37.67879\t145.06972\t18125.8\t24432.6\n61\t17329992\tLots 2-3 Golf Links Road Wundowie\tCheck with carrier\t-31.731990994\t116.361575008\t21014.6\t25748.0\n62\t183\tThe Peninsula\tReady for service\t-27.67932432276379\t152.90982757569347\t24487.2\t23684.2\n63\t17361458\tBlackmore Subdivision\tCheck with carrier\t-12.7275434465\t130.919370368\t22422.2\t23260.4\n64\t17346227\tRidge View Estate\tCheck with carrier\t-12.8086149605\t131.053826176\t21621.6\t23711.4\n65\t3\tBlakes Crossing\tReady for service\t-34.67067\t138.70131\t21298.2\t22845.6\n66\t17317496\tRoche Creek Road Wandoan\tCheck with carrier\t-26.114619951\t149.992989856\t18565.4\t23261.2\n67\t286\tMinta Farm\tUnder construction\t-38.077836007648486\t145.36372219087\t20844.4\t24486.6\n68\t237\tKinbrook\tReady for service\t-37.541772522962034\t144.9586871719261\t17987.0\t24744.8\n69\t42\tChancellor\tReady for service\t-37.68643919487637\t145.0934309349293\t20404.2\t21586.2\n70\t123\tSeaside\tReady for service\t-32.856728450325335\t151.81044193518323\t18557.4\t21511.6\n71\t61\tBerwick Waters\tReady for service\t-38.076523384598765\t145.35105203575029\t19340.2\t24673.4\n72\t17362675\tGolf Links Road Wundowie\tCheck with carrier\t-31.731914996\t116.361575008\t21014.6\t25748.0\n73\t284\tSussex Inlet\tUnder construction\t-35.145242466816605\t150.5873778915308\t20756.0\t24374.4\n74\t82\tModeina\tReady for service\t-37.741855443\t144.749644009\t21125.4\t20958.6\n75\t68\tBrentwood Forest\tReady for service\t-27.642904867\t152.880475846\t15703.6\t23750.8\n76\tON-Q-GC-EcoVill\tEco Village, Currumbin Valley\tReady for service\t-28.176020023448768\t153.42949161770866\t23634.8\t24644.4\n77\t136\tJindee\tReady for service\t-31.645613986187424\t115.69413457871279\t17346.8\t23220.0\n78\t102\tAlira\tReady for service\t-38.04436956469803\t145.32106433870212\t17575.8\t25286.0\n79\t7\tLightsview\tReady for service\t-34.85796\t138.63601\t22268.6\t24199.6\n80\tON-V-LSP\tLakeside, Pakenham\tReady for service\t-38.072927\t145.435528\t16998.8\t23317.4\n81\t17324634\tDrivers Run\tCheck with carrier\t-41.432627961499996\t147.21321888\t21854.8\t23505.2\n82\t17316139\tPort Hedland International Airport Precinct 3\tCheck with carrier\t-20.3850569715\t118.610489152\t22979.4\t24308.6\n83\t140\tGreenlea\tReady for service\t-32.29440226891333\t115.8279660797097\t19514.8\t23025.6\n84\t17348174\tCaviar Drive\tCheck with carrier\t-26.387840605\t146.298855616\t19610.4\t24114.0\n85\t313\tCanopy\tUnder construction\t-38.11076284000009\t145.25756294999746\t21336.0\t23611.4\n86\tAYAA-J6EL5\tGrantham Rebuild Project\tReady for service\t-27.5642384987419\t152.189940289936\t17167.2\t24050.0\n87\t47\tMaplewood\tReady for service\t-37.714\t144.56265\t18429.0\t22839.0\n88\t17329519\tMcMahon Road North Dandalup\tCheck with carrier\t-32.503848031000004\t115.930991872\t21394.2\t22223.8\n89\t32\tWoodlands\tReady for service\t-27.72047\t153.15887\t18573.4\t23098.2\n90\tAYAA-GBGC1\tKrystal Park Estate\tUnder construction\t-33.9119984699961\t120.13371719996\t17520.4\t23572.2\n91\t17347518\tRiver Bend\tCheck with carrier\t-37.800278003\t147.737944096\t20888.2\t21386.6\n92\t238\tExford Waters\tUnder construction\t-37.72870832579734\t144.57431589126315\t22623.8\t23216.4\n93\t224\tTrue North\tUnder construction\t-37.61704689321036\t144.91319690701724\t15787.2\t25520.8\n94\t348\tDonnybrae\tUnder construction\t-37.538066721261295\t144.9750416114666\t17762.8\t23575.8\n95\t45\tGreenvale Gardens\tReady for service\t-37.62173695362797\t144.88392554244993\t20883.8\t24136.8\n96\t55\tCraigieburn\tReady for service\t-37.59183713555152\t144.91833857808493\t21312.2\t24012.0\n97\t46\tCurlewis Park\tReady for service\t-38.17030866\t144.552845283\t17598.8\t23743.6\n98\t300\tRidgeview\tReady for service\t-27.180970349691385\t152.92398963929068\t20108.2\t25050.8\n99\t17362862\tGillkrest\tCheck with carrier\t-33.508577629\t149.187270976\t24367.0\t21610.0\n100\t53\tAspire\tReady for service\t-37.7071699681171\t144.72471421132394\t18504.0\t23275.0\n101\t168\tSunbury Fields\tReady for service\t-37.55414704520112\t144.72058211325393\t23735.0\t23150.8\n102\t3\tGateway Business Park\tUnder construction\t-23.16892639545118\t150.6975458127288\t16901.0\t22294.4\n103\t17197764\tHeritage Hills \tCheck with carrier\t-33.2903079875\t115.834854944\t17927.2\t25109.0\n104\t25\tCasiana Grove\tReady for service\t-38.117325487\t145.241297532\t20422.6\t24134.0\n105\t17345766\tAvon Ridge\tCheck with carrier\t-31.750261002000002\t116.094329984\t22046.0\t25918.4\n106\t192\tAlbright\tReady for service\t-37.82327629224027\t144.72443376542194\t23441.2\t26915.2\n107\t49\tPasadena\tReady for service\t-38.1199733\t145.326901918\t19454.2\t20175.2\n108\t187\tQuay 2\tReady for service\t-38.30801646041315\t144.32025705337773\t18779.0\t24291.4\n109\t161\tAbiwood 660\tReady for service\t-38.10452062882804\t145.33696983813107\t20148.8\t23052.0\n110\t17383368\tHumewood Pl Luddenham\tCheck with carrier\t-33.848964993500005\t150.755635008\t16858.6\t21729.8\n111\t10\tParkBridge\tReady for service\t-33.91103\t150.83601\t18915.8\t25249.8\n112\t250\tAquarevo\tUnder construction\t-38.07126647363257\t145.24955213212104\t25432.0\t25333.6\n113\t17376685\tHarold Circuit\tCheck with carrier\t-31.080961009000003\t152.890432\t19508.4\t25941.2\n114\t70\tCentral Hills\tReady for service\t-34.02411\t150.75842\t18021.6\t23293.2\n115\t60\tStoneleigh\tReady for service\t-27.709207521\t153.116339917\t16674.8\t25184.4\n116\t326\tMambourin\tUnder construction\t-37.89016156795095\t144.59766150734774\t16419.0\t23826.0\n117\t134\tBrookwater\tReady for service\t-27.658654038139588\t152.90161062834122\t18949.2\t24369.4\n118\t167\tLife\tReady for service\t-37.90772667655167\t144.74404923692424\t19045.2\t25708.6\n119\t308\tEllarook\tUnder construction\t-37.81174599477853\t144.72281371116424\t22607.0\t28104.2\n120\tAYAA-H5USB\tGap Ridge Industrial Area\tReady for service\t-20.7372019200672\t116.765896746965\t19990.2\t25246.0\n121\t17291731\tFishermans Rd\tCheck with carrier\t-33.4777957195\t115.577883712\t22181.2\t24283.2\n122\t21\tEvergreen Waters\tReady for service\t-36.71591\t144.2837\t19934.6\t22542.0\n123\t255\tRiverside at Tea Gardens\tContracted\t-32.64457220383459\t152.14687858579424\t20615.4\t24692.6\n124\t17339141\tSwan Bay Estate\tCheck with carrier\t-41.282250026999996\t147.034243072\t23226.6\t22963.4\n125\t17271033\tMarshmead\tCheck with carrier\t-31.0154570045\t150.223744992\t18726.8\t22401.8\n126\t342\tWestwood\tUnder construction\t-37.69940908900018\t144.71112482498938\t18050.2\t25197.8\n127\t17314584\tFig Tree Fields Estate\tCheck with carrier\t-28.647101971\t153.56134512\t20562.0\t24312.4\n128\t17204078\tEurama Estate\tCheck with carrier\t-33.7120599615\t150.53916096\t21639.0\t26746.0\n129\t26\tJackson View\tReady for service\t-38.1263\t145.85796\t17995.8\t23827.2\n130\t162\tClydevale\tReady for service\t-38.09632791448807\t145.33187213534754\t20148.8\t23052.0\n131\t210\tMeridian\tReady for service\t-38.09078808023383\t145.34457658290762\t18222.2\t22923.4\n132\t297\tThe Orchard\tUnder construction\t-37.816153962518605\t144.65684209824462\t22408.4\t23075.4\n133\t10514\tMaddington\tReady for service\t-32.02974797464645\t116.00603342056274\t22289.4\t23730.2\n134\t11\tTea Trees\tReady for service\t-27.6976693876262\t152.90857676178814\t24174.8\t23805.6\n135\t44\tGrand Lakes\tReady for service\t-38.025754875\t144.38463099\t15918.8\t24176.6\n136\t56\tTrillium\tReady for service\t-37.563836207\t144.890532129\t16352.6\t21360.2\n137\t17325360\tOnslow Aerodome Redevelopment\tCheck with carrier\t-21.6636330045\t115.115901984\t20929.6\t24284.0\n138\t164\tAurora\tReady for service\t-37.606178773039986\t145.0053790664693\t23503.0\t22860.4\n139\t17332589\tCalula Estate\tCheck with carrier\t-37.804131997\t140.757626176\t17124.4\t21674.0\n140\t67\tTannum Blue\tReady for service\t-23.960568557\t151.36700841\t20637.8\t26156.6\n141\t264\tWarralily Grange\tUnder construction\t-38.228853370218076\t144.32429109570816\t16503.0\t25169.8\n142\t17347475\t324 Tea Tree Rd Brighton - Stages 3\u00264\tCheck with carrier\t-42.6948000075\t147.283779008\t17065.4\t25494.8\n143\tAYCA-NZGFP\tLampada\tReady for service\t-31.1369920275562\t150.95517748943\t18335.4\t23286.4\n144\tAYCA-G1IS9\tCasey 3 Estate\tReady for service\t-35.1717411112112\t149.088880068466\t19658.2\t23213.8\n145\t243\tSt. Claire\tReady for service\t-37.60823491943989\t145.02730918279434\t23503.0\t22860.4\n146\tAYCA-1D96NK\tCrace\tReady for service\t-35.2026701433085\t149.112121260484\t18864.2\t24519.6\n147\t17352159\tGermantown Road Two Wells\tCheck with carrier\t-34.6144390125\t138.556290976\t17189.8\t20886.8\n148\t312\tThe Vale\tUnder construction\t-34.47484502892406\t150.76265755179605\t22038.6\t27233.4\n149\t17316815\tLOT 224 ORTON ROAD OAKFORD\tCheck with carrier\t-32.228281984\t115.953296032\t23318.8\t24246.6\n150\t71\tMayfield\tReady for service\t-38.125209668\t145.289746189\t23298.2\t21822.0\n151\t185\tAgar Industrial Park\tReady for service\t-37.79845362681997\t144.75201086321994\t21841.2\t22499.2\n152\t196\tKaduna Park \tReady for service\t-38.083378128834276\t145.428175673462\t16354.8\t22748.0\n153\t78\tZeally Sands\tReady for service\t-38.309154864\t144.33959113\t16550.4\t25385.0\n154\t43\tCallaway Park\tReady for service\t-37.79528303\t144.789941126\t17490.2\t25769.6\n155\tAYCA-G7P1X\tGap Ridge Industrial Area\tReady for service\t-20.7597367757634\t116.767197579578\t21575.6\t26668.6\n156\t322\tAureus\tUnder construction\t-28.839575834611363\t153.60090183043093\t17440.4\t24088.6\n157\t17334879\tSt Eyre Estate\tCheck with carrier\t-32.5057349755\t137.736468\t23282.8\t25355.8\n158\tON-V-LSP-WTN7\tWorthington Estate\tReady for service\t-38.056759116436055\t145.44930696487427\t18613.2\t23655.8\n159\t17344902\tFishermans Road Stratham Park\tCheck with carrier\t-33.479493039\t115.580933984\t22181.2\t24283.2\n160\t287\tPavilion\tReady for service\t-38.121935435108206\t145.317223415383\t21487.4\t19956.2\n161\t17326687\tLot 9601 Maddern Road Chittering WA\tCheck with carrier\t-31.522233961\t116.068223168\t21870.6\t24671.2\n162\t17307174\tRendezvous Road Vasse\tCheck with carrier\t-33.6766400095\t115.276300928\t16431.4\t24759.0\n163\t16\tPanorama\tReady for service\t-33.965203598332444\t150.89165216421515\t20260.0\t24497.8\n164\t17266708\tEdenvale \tCheck with carrier\t-27.8746859935\t152.966187008\t17365.2\t24273.2\n165\t17339941\tSherwin Ridge\tCheck with carrier\t-35.0642670305\t149.65457184\t18667.4\t21106.0\n166\t248\tLara Industrial Park\tUnder construction\t-38.048203343505\t144.3582585906956\t18124.2\t23867.2\n167\t171\tWaterside\tReady for service\t-38.077916796186784\t145.33521009756245\t18274.4\t27182.2\n168\t254\tWeemala at the Lake\tContracted\t-32.953487781499845\t151.62784968375465\t21277.4\t25920.6\n169\t52\tBaywater\tReady for service\t-38.157866291\t144.549435001\t20779.4\t20996.2\n170\t17338135\tDavid Road\tCheck with carrier\t-28.6656509775\t114.637218112\t18123.4\t25630.0\n171\tAYAA-HJ45E\tLatitude 32 Flinders Precinct\tReady for service\t-32.203130500848\t115.789668200234\t15454.0\t25494.0\n172\t213\tLara Views \tReady for service\t-38.03296209351632\t144.38508068086276\t15512.8\t23869.6\n173\t17353506\tGrandevue Estate\tCheck with carrier\t-38.1822589915\t147.100400992\t18188.4\t24437.8\n174\t17347514\tHumpty Doo Industrial Park\tCheck with carrier\t-12.5915301515\t131.095235712\t20028.2\t24032.4\n175\tON-V-LSP-DEV\tLakeside, Devonia\tReady for service\t-38.07179481677172\t145.43976366519928\t16998.8\t23317.4\n176\t10241\tDalyellup\tReady for service\t-33.39055091775127\t115.61975240707397\t21921.6\t26404.4\n177\tAYCA-1DER92\tLots 9004 Eastlyn Dr Deepdale\tReady for service\t-28.7938689999871\t114.67999499999\t20610.0\t22575.8\n178\t17349902\tLot 1301 Gull Rock Road Albany WA\tCheck with carrier\t-34.948832044\t117.999468\t19223.6\t22713.0\n179\t186\tSanctuary\tReady for service\t-38.2314381624407\t144.34730645652323\t15609.6\t23813.8\n180\t17123438\tSouthern Cross - Stage 1 (52L)\tCheck with carrier\t-27.214454996500002\t151.272823008\t21934.8\t22321.0\n181\t158\tRobina Town Centre\tReady for service\t-28.07890531166396\t153.38309799194224\t16329.4\t27231.4\n182\tAYAA-H0UT9\tWedgefield\tReady for service\t-20.3799983349327\t118.594521325414\t22667.6\t24820.2\n183\tAYAA-FRYDK\tTeviot Downs Estate\tReady for service\t-27.7504397198131\t152.951579273602\t16448.2\t21066.0\n184\t189\tAshbury\tReady for service\t-38.22122706468388\t144.35133218646388\t15579.4\t24108.6\n185\t17340096\tMundoolun Estate\tCheck with carrier\t-27.8594579775\t153.087716896\t21088.8\t22001.6\n186\t181\tThe Surrounds\tReady for service\t-27.928418734504167\t153.33939444392914\t20220.6\t23377.2\n187\t17316655\tForest Hills\tCheck with carrier\t-31.032246957\t150.928926112\t19588.6\t23922.8\n188\t17219184\tEdenvale\tCheck with carrier\t-27.8724570025\t152.974415008\t17496.8\t23088.0\n189\t17322026\tTanby Heights Stage 2\tCheck with carrier\t-23.2286249645\t150.75956592\t24819.6\t22288.2\n190\t17325176\tFletcher Industrial Stage 1\tCheck with carrier\t-32.213367987\t148.63352688\t18382.8\t27862.0\n191\t17328781\tAvoca Dell Stage 1\tCheck with carrier\t-35.092629991\t139.316762176\t22713.4\t23555.0\n192\t17051058\tLot 17 Harbour Rd\tCheck with carrier\t-33.844219022000004\t121.883787008\t23863.4\t21586.0\n193\t17337131\tTimbertop Estate\tCheck with carrier\t-32.633252016\t151.70961312\t22937.4\t23638.8\n194\t17333083\tWaterside Pastures\tCheck with carrier\t-32.7579690075\t151.828084992\t19992.6\t26454.6\n195\tAYCA-1ORQMM\tRIVERLAND GARDENS\tContracted\t-35.9649560000272\t146.014765\t20637.2\t23451.6\n196\tAYCA-IQWLC\tJimboomba Woods\tReady for service\t-27.8661709999843\t153.059876\t21799.4\t24895.6\n197\t17331968\tRavendene Estate\tCheck with carrier\t-38.041282535\t145.593441376\t19547.6\t25945.4\n198\tAYCA-1DEL05\tTeviot Downs Estate\tReady for service\t-27.7470854999827\t152.9503524\t17323.8\t21673.8\n199\t304\tTeneriffe\tUnder construction\t-34.7266547867358\t149.71105729101944\t18164.0\t24295.0\n200\t17355158\tMulcahys Road\tCheck with carrier\t-37.389870007\t144.305286016\t21510.8\t23841.6\n201\tAYCA-G3LBH\tParklands\tReady for service\t-24.9399487796629\t152.288441837448\t17005.6\t22330.6\n202\t38\tCentral Walk\tReady for service\t-27.69738289415636\t152.9088333969901\t24988.2\t23664.4\n203\t170\tWaratah\tReady for service\t-37.5356296673782\t144.90365844136687\t17839.0\t24726.0\n204\t17335030\tGlenview Park Estate Stage 1\tCheck with carrier\t-31.453299002\t152.720484128\t23799.0\t23732.6\n205\tAYAA-H5ANY\tFreeway Business Park\tReady for service\t-32.8098597420961\t151.625033944844\t16052.0\t23872.0\n206\tAYCA-1D96QN\tO\u0027Malley\tReady for service\t-35.351972000021\t149.117269000008\t21877.4\t23664.0\n207\tAYCA-EGT1A\tKrystal Park Estate\tContracted\t-33.9109884902099\t120.134017439686\t17520.4\t23572.2\n208\t10542\tMurray-Murray River Country Estate\tReady for service\t-32.607827868144106\t115.8599978685379\t16446.0\t25777.2\n209\t17399839\tGOLDEN VALLEY PLACE\tCheck with carrier\t-26.5433651285\t153.00147056\t13421.6\t24935.6\n210\tAYCA-FWZJ8\tGrantham Rebuild Project\tReady for service\t-27.563568564007\t152.190239281867\t17167.2\t24050.0\n211\t51\tBellaview\tReady for service\t-38.172782464\t144.538409178\t19057.0\t23578.0\n212\tAYCA-ISJ9I\tHarrington Grove\tReady for service\t-34.0211317989616\t150.755048319874\t18021.6\t23293.2\n213\tACNC\tNewcastle\tReady for service\t-32.884942742051216\t151.69733047485352\t20464.0\t25268.2\n214\tAYCA-G07X9\tLot 502 Jane Brook Drive\tContracted\t-31.8562302562125\t116.062230625921\t22036.6\t20917.2\n215\t17350846\tCountry Hills Estate\tCheck with carrier\t-27.568049751500002\t152.590619168\t16035.0\t23906.6\n216\t207\tYarraBend\tReady for service\t-37.78198519686202\t145.02525959964044\t16514.6\t21182.4\n217\t58\tSpires\tReady for service\t-32.30285\t115.80864\t19651.4\t24418.2\n218\t17357158\tHuntington Downs\tCheck with carrier\t-27.922871963000002\t153.28360512\t20267.4\t21354.4\n219\t17325574\tDarling Downs Lot 102 Keenan Street\tCheck with carrier\t-32.1866129725\t116.00267616\t18573.8\t22809.0\n220\t17331436\tSt Andrews - stage 2\tCheck with carrier\t-26.0649970125\t152.565019936\t22475.8\t23703.6\n221\t195\tHighland Views \tReady for service\t-33.807140119426315\t150.68084751128293\t21305.2\t24483.8\n222\t10564\tSecret Harbour\tReady for service\t-32.40690570593458\t115.74870228767395\t18912.6\t20619.4\n223\tAYCA-H18JF\tThe Key Industrial Estate\tReady for service\t-38.0188635264808\t145.18197712273\t21284.4\t26193.4\n224\tACDU\tDurack\tReady for service\t-27.578192809613444\t152.98293471336365\t22314.8\t25563.0\n225\tAYCA-19PQFS\tRedbank Motorway Estate\tContracted\t-27.5852564442896\t152.873819345554\t19008.2\t22288.6\n226\tAYCA-1JBB7K\tThe Fairways\tContracted\t-27.5314779999815\t152.479575\t20008.4\t24708.6\n227\t126\tPark Edge\tReady for service\t-27.693434833927977\t152.91510616302708\t24988.2\t23664.4\n228\t240\tWandana\tContracted\t-38.172482021397926\t144.293338403687\t19491.6\t24467.2\n229\tAYCA-IQRNE\tJimboomba Woods\tReady for service\t-27.8694558108568\t153.02928854703\t17283.6\t25566.2\n230\t17351673\tHighlands Estate\tCheck with carrier\t-37.0380393935\t146.108255776\t19002.2\t24612.2\n231\t17348813\tPaynters Creek Road Rosemount\tCheck with carrier\t-26.6289672555\t153.012338656\t22396.2\t24799.0\n232\t132\tThe Sanctuary\tReady for service\t-27.68292278318855\t152.91255538226966\t26901.8\t22150.6\n233\tAYCA-MAELG\tMuirhead\tReady for service\t-12.3616549362567\t130.897783136586\t21417.2\t22004.0\n234\t114\tWest\tReady for service\t-34.877605383583415\t138.4939632858763\t22421.6\t27485.4\n235\t251\tSequana\tReady for service\t-27.715761863642843\t153.11554227829404\t17433.6\t23245.2\n236\t244\tAscot Grove\tReady for service\t-34.015506343998354\t150.75497303962794\t18021.6\t23293.2\n237\t17271426\tWoodscott\tCheck with carrier\t-34.4601080165\t147.523613056\t27267.4\t23888.0\n238\t270\tWoodgrove Shopping Centre\tReady for service\t-37.68522284633658\t144.5592192390933\t19407.4\t22827.0\n239\t13\tLochiel Park\tReady for service\t-34.87687\t138.65406\t13956.0\t24356.8\n240\t17354065\tLinton Hill\tCheck with carrier\t-27.466329999\t151.827287008\t22133.6\t25616.6\n241\t285\tSummit Business Park\tUnder construction\t-38.09425213318867\t145.34356270786907\t17875.0\t25007.6\n242\tAYCA-RI32N\tDeepdale North\tReady for service\t-28.7710969532846\t114.671990385878\t18037.8\t22544.2\n243\t17349923\tLot 50 and 51 Link Road ALbany\tCheck with carrier\t-34.9695262735\t117.8126136\t22546.2\t25408.4\n244\t17339915\tSamford Skies\tCheck with carrier\t-27.386634959000002\t152.835657856\t24394.8\t23240.6\n245\t17147547\tSummit View\tCheck with carrier\t-26.512940972\t151.867271872\t21032.6\t26598.2\n246\tAYCA-1WH7YL\tL9001-9003 Wungong Sth Rd Darling Downs\tContracted\t-32.1933860000136\t116.001872\t18817.2\t23470.8\n247\t17312227\tTrilla Hills Estate\tCheck with carrier\t-21.298979967\t149.22698688\t18689.4\t24292.4\n248\tAYCA-10UTGP\tJimboomba Woods\tReady for service\t-27.8623843557346\t153.055174379743\t21799.4\t24895.6\n249\t268\tBurwood Brickworks\tUnder construction\t-37.851994880682255\t145.13495121956865\t17640.0\t23319.2\n250\t17238926\tLane Court Mt Warren Park\tCheck with carrier\t-27.7269029985\t153.198027008\t21441.0\t21279.8\n251\t17338860\tBlind Creek Estate Stage 1\u00262\tCheck with carrier\t-37.521863992\t143.776407968\t21490.4\t25234.4\n252\t17344475\tQuilpie Industrial Estate\tCheck with carrier\t-26.6136479975\t144.249904096\t15961.0\t22922.0\n253\t17320060\tWindella Ridge P/L\tCheck with carrier\t-32.697926018000004\t151.473242176\t16873.6\t26637.2\n254\t17358725\tRusty Lane Branxton\tCheck with carrier\t-32.638311988\t151.382246048\t17562.6\t23902.8\n255\t62\tJindalee Beachside\tReady for service\t-31.649101558193706\t115.68944719351767\t19663.8\t27023.0\n256\tAYAA-H8QSJ\tMinto Renewal\tReady for service\t-34.0238418542272\t150.856926410431\t21151.0\t22837.2\n257\t204\tCollege Green\tReady for service\t-38.08048877494351\t145.36312792316772\t20844.4\t24486.6\n258\tAYAA-FPSKZ\tGovernors Hill\tReady for service\t-35.1389166799533\t147.425006282888\t23871.6\t22712.8\n259\t17362563\tMurray Banks\tCheck with carrier\t-36.092428007\t144.725100992\t18737.6\t27236.2\n260\t190\tHighfields\tReady for service\t-27.061379929370613\t153.16209955950143\t19261.0\t21643.2\n261\t57000359\t(RAPA) Berne Court\tCheck with carrier\t-41.355567007\t147.001377952\t21125.0\t24516.4\n262\tAYAA-F6JJR\tGoogong Township\tReady for service\t-35.4154091807694\t149.23348216701\t20986.2\t26356.0\n263\tAYCA-PXLYW\tParamount Park\tReady for service\t-23.271600332771\t150.514225099238\t20816.2\t24876.0\n264\t10380\tHalls Head-Port Mandurah\tReady for service\t-32.53875201575307\t115.70585131645203\t21712.6\t21851.8\n265\t17335365\tMundoolun\tCheck with carrier\t-27.860803020000002\t153.076204096\t22925.2\t23763.2\n266\tON-Q-VT\tVue Terraces\tReady for service\t-28.068610116288863\t153.38100671768188\t17184.8\t25863.6\n267\tAYCA-F193I\tEdmondson Park South P1\tReady for service\t-33.9861716630198\t150.853549054355\t19782.2\t24983.2\n268\tAYCA-WDIWW\tMuirhead\tReady for service\t-12.3585879914992\t130.89374145864\t20989.8\t22419.6\n269\tAYCA-19Q49D\tLot 10,50 \u0026 700 Ocean Reef Gnangara\tReady for service\t-31.7917864249926\t115.856744892211\t18206.4\t24366.0\n270\t327\tMadison Rise\tUnder construction\t-33.23597707399918\t151.46842898041183\t13047.2\t25975.6\n271\tAYCA-1FTKU1\tMolonglo Valley - Coombs Stage 2\tReady for service\t-35.3176259170474\t149.042577119006\t18192.8\t26874.4\n272\tAYAA-IWD7J\tRadford Park\tReady for service\t-32.6450822595972\t151.355551754519\t20353.6\t24302.8\n273\t10000\tAveley-Vale\tReady for service\t-31.791797076764176\t115.98894238471985\t24358.4\t23175.8\n274\t10750\tPagewood Green\tReady for service\t-33.943452567717465\t151.22275114059448\t17879.8\t27278.8\n275\t6\tNLV Bridgewater\tReady for service\t-32.56081186922684\t115.69084383614063\t18390.6\t20828.0\n276\tAYCA-OOFYN\tCasuarina Town Centre\tReady for service\t-28.2958512505823\t153.570424118964\t15515.2\t22968.0\n277\t17332860\tPalm Lake Resort\tCheck with carrier\t-32.867030966\t151.790780896\t19174.4\t21206.4\n278\t292\tNortham Eco Lifestyle Village\tReady for service\t-31.661646746555668\t116.65020329840772\t17236.2\t23753.8\n279\tAYCA-1MO0PE\tParaweena Drive\tUnder construction\t-37.811130011173\t144.75090726482\t26770.0\t22262.8\n280\t17341715\tCanobolas Meadows\tCheck with carrier\t-33.268190294\t149.0541512\t19341.4\t25074.8\n281\tAYAA-G1FKH\tRiemore Downs Estate\tReady for service\t-27.8886882702533\t153.115619080583\t21179.4\t23515.6\n282\tAYAA-G3N4A\tSix Mile Creek Village\tUnder construction\t-27.6355815192483\t152.848832768594\t20766.8\t24031.6\n283\t17354521\tDandenong LOGIS\tCheck with carrier\t-38.005410961\t145.192518016\t20547.4\t25896.0\n284\t10233\tDalyellup\tReady for service\t-33.39171543951737\t115.62436580657959\t21921.6\t26404.4\n285\tAYCA-1O7JIC\tSpring Mountain\tContracted\t-27.7311679999831\t152.906283\t22274.0\t23160.8\n286\t17319634\tWaldara Park Estate\tCheck with carrier\t-36.334991978\t146.304649088\t20922.2\t23029.2\n287\t17312200\tBERRINBA STAGE 1\tCheck with carrier\t-27.646784993\t153.09164016\t17483.4\t24779.8\n288\t10691\tWannanup-Port Bouvard North\tReady for service\t-32.593080692667876\t115.63935399055481\t22279.6\t22067.4\n289\tAYCA-MUELL\tHarrington Grove\tReady for service\t-34.0254648141925\t150.752128700289\t18346.6\t25025.0\n290\tAYAA-F9DJ9\tMuirhead\tReady for service\t-12.3613535542535\t130.891892926405\t20973.2\t23227.0\n291\tAYCA-NZ9RQ\tGrantham Estate Riverstone\tReady for service\t-33.6574602900158\t150.866171279992\t22177.0\t22707.6\n292\tAYCA-GE6TE\tVoyager Point\tReady for service\t-33.9612904042168\t150.970919147374\t22169.2\t23515.0\n293\t9\tRCA Cardinia Waters\tReady for service\t-38.0794393994041\t145.4930143046206\t22067.0\t24277.2\n294\t179\tGemlife Bribie Island\tReady for service\t-27.061404864414\t153.16211615558882\t19261.0\t21643.2\n295\tAYCA-Q13UU\tLot 502 Jane Brook Drive\tReady for service\t-31.8615610033738\t116.062904454047\t22439.4\t22574.8\n296\tAYCA-1DF126\tMistful Park\tUnder construction\t-34.7264160000054\t149.703161000029\t18034.0\t23985.4\n297\tAYAA-F9C6X\tParamount Park\tReady for service\t-23.275657059569\t150.516972407757\t20816.2\t24876.0\n298\tAYCA-1D18C9\tThe Fairways\tReady for service\t-27.5271879999808\t152.483766\t20759.4\t25389.4\n299\t17337667\tLoc 1017 Redgate Road Witchcliffe\tCheck with carrier\t-34.0241140025\t115.074863008\t23401.8\t22355.6\n300\t10185\tCanningvale-Avenues\tReady for service\t-32.09173541358429\t115.92247389256954\t23640.8\t25763.6\n301\t50\tEncore\tReady for service\t-37.712129506\t144.721116645\t16978.4\t24745.0\n302\t17318655\tNEVERWOODS ESTATE\tCheck with carrier\t-32.0491919755\t152.499962176\t21566.0\t24533.6\n303\tAYCA-1FLSZY\tFrizzo Road, Palmview\tReady for service\t-26.7471129999749\t153.039069\t18663.8\t24901.2\n304\tAYCA-EUUAD\tWindmill Downs\tReady for service\t-31.039191773641\t150.900431984145\t19406.6\t24280.0\n305\t10687\tWannanup-Port Bouvard North\tReady for service\t-32.60023856019557\t115.64025521278381\t20167.2\t22821.0\n306\tAYCA-DGEDI\tAmberton\tReady for service\t-31.5957645503307\t115.665663637788\t22135.4\t22735.0\n307\tAYCA-LQAH1\tLot 511 Kalgan Drive Newman Townsite\tUnder construction\t-23.3608589999371\t119.753393000012\t17015.0\t23401.8\n308\tAYCA-HT2UX\tRidge Road Estate\tReady for service\t-37.5105770100269\t145.140747839996\t20132.8\t23111.6\n309\tAYCA-1J8WWD\tJimboomba Woods\tUnder construction\t-27.8632579999842\t153.046244\t19362.6\t25082.4\n310\t217\tGolden Grove\tUnder construction\t-36.713258816028286\t144.28416154026564\t21168.0\t23475.8\n311\t209\tEden\tReady for service\t-34.01244870032878\t150.7617563462324\t18209.8\t22669.2\n312\tAYCA-1CRLQU\tMoncrieff Residential Estate\tUnder construction\t-35.1564860000211\t149.104790000007\t18817.6\t23359.8\n313\t10234\tDalyellup\tReady for service\t-33.391038213222714\t115.62284231185913\t21921.6\t26404.4\n314\t252\tTonsley Village \tReady for service\t-35.008155671689565\t138.56730763673485\t16018.4\t21840.2\n315\t17320872\tThe Beacons\tCheck with carrier\t-37.777715995\t147.604363936\t19169.6\t25338.8\n316\t10377\tHalls Head-Port Mandurah\tReady for service\t-32.535507592267805\t115.70966005325317\t20200.6\t24562.6\n317\tAYCA-LGXW5\tWedgefield\tContracted\t-20.3827064266398\t118.596070833098\t22667.6\t24820.2\n318\tAYCA-TBR12\tShoal Point Bay Develoment\tContracted\t-21.0044656120105\t149.152767009298\t22300.6\t26647.0\n319\tAYCA-1D96QE\tCasey 4\tReady for service\t-35.1731241190463\t149.095898093007\t20885.8\t22303.0\n320\t235\tWarralily Central\tUnder construction\t-38.23425550957785\t144.36323677063632\t15609.6\t23813.8\n321\t10169\tBurns Beach\tReady for service\t-31.72897567076238\t115.72501301765442\t20257.4\t23419.8\n322\tAYCA-1BC5OS\tHuntlee Stage 1\tUnder construction\t-32.6743620000152\t151.351995999998\t20966.2\t24795.8\n323\t311\tIngenia Hervey Bay\tReady for service\t-25.318376649408144\t152.89279818800648\t17505.8\t23090.6\n324\tAYCA-JR6GE\tMuirhead\tReady for service\t-12.3653714219552\t130.892741370061\t19275.2\t21492.0\n325\tAYCA-DZ1PY\tHoly Spirit Boondall\tReady for service\t-27.3601289999794\t153.061465\t19059.2\t23300.8\n326\tAYCA-GNFE0\tRIVERSTONE RISE\tReady for service\t-23.9689175040552\t151.31856988929\t21259.8\t26661.2\n327\tAYCA-JBQMC\tWishart Business Precinct\tReady for service\t-12.4685142851903\t130.953474865161\t22014.2\t24757.2\n328\tAYCA-1AO4XL\tCloverlea - Chirnside Park\tContracted\t-37.7488860000284\t145.326879999998\t20720.4\t24467.0\n329\t17365410\tWestwood\tCheck with carrier\t-26.9620360015\t152.761562016\t21326.4\t23167.2\n330\tAYCA-1FTKWM\tMolonglo Valley - Coombs Stage 3\tReady for service\t-35.3142289200475\t149.038520189006\t17018.6\t25974.8\n331\t10567\tSecret Harbour\tReady for service\t-32.40169177773249\t115.75070321559906\t19678.0\t20961.4\n332\t10397\tIluka\tReady for service\t-31.73905315673185\t115.72926163673401\t17143.8\t23661.8\n333\t8\tRCA Beleura Village\tReady for service\t-38.224609205304276\t145.0725362142516\t22074.4\t23478.2\n334\t22\tEvergreen Links\tReady for service\t-36.71305\t144.27727\t19775.8\t22248.6\n335\tAYCA-ENWFM\tCoolalinga Sub-Division\tReady for service\t-12.5198168057597\t131.041303845074\t23936.2\t22320.2\n336\t17344624\tMadison Ridge\tCheck with carrier\t-27.0450116095\t152.956953728\t24298.6\t26554.2\n337\t17326045\tAurukun Res Sub-division - stage 2\tCheck with carrier\t-13.365806045\t141.725994848\t15373.4\t24916.8\n338\tAYCA-1BK5IS\tJimboomba Woods\tReady for service\t-27.8666469999842\t153.060515\t21799.4\t24895.6\n339\t10385\tHalls Head-Port Mandurah\tReady for service\t-32.54463498135928\t115.70902973413467\t20871.0\t21765.8\n340\tAYCA-NGQ9B\tBungarribee (Bunya)\tReady for service\t-33.7714202761297\t150.867204897709\t18697.8\t21427.6\n341\t17394228\tGol Gol Heights Lot 78 on DP 756946\tCheck with carrier\t-34.1830270045\t142.233328\t18453.0\t21033.0\n342\t17341371\tLinton Hill Stage 3\tCheck with carrier\t-27.470484988000003\t151.822847168\t23210.6\t26933.2\n343\t10356\tMillbridge\tReady for service\t-33.300927475174035\t115.73048070073128\t15019.0\t22838.8\n344\t17235866\tAcacia Avenue - stages 4to6\tCheck with carrier\t-26.9617699715\t152.954452096\t18853.8\t24391.2\n345\t17367991\tKilgariff Residential Subdivision\tCheck with carrier\t-23.7729379955\t133.875308\t22042.6\t22428.8\n346\tAYCA-J9CE8\tAE2 Ermington\tReady for service\t-33.8208669951457\t151.055244815032\t23957.6\t21494.6\n347\t17341714\tSilverdown Heights\tCheck with carrier\t-33.263683028\t149.060066048\t18813.8\t22927.4\n348\tAYCA-14QOEO\tHarrington Grove\tUnder construction\t-34.0145969382659\t150.734399607064\t19464.6\t23087.0\n349\t10703\tWannanup-Port Bouvard East\tReady for service\t-32.60624084744729\t115.64411759376526\t21401.4\t25564.0\n350\tAYCA-NS3TL\tEttamogah Rise\tReady for service\t-36.0218474363591\t146.976677442572\t19751.4\t25368.0\n351\tAYCA-KDKUW\tVasse Newtown\tReady for service\t-33.6750847083728\t115.242896164382\t21410.4\t23554.2\n352\tAYCA-F8YLR\tFreeway Business Park\tReady for service\t-32.8006781615145\t151.631399631104\t15882.6\t24729.4\n353\tAYAA-GR9JV\tIronbark Ridge\tReady for service\t-32.2977687119396\t150.899503128249\t16287.6\t23451.4\n354\tAYCA-PO3A4\tBerrimah Business Park\tReady for service\t-12.4272906594548\t130.91433759827\t19507.6\t26599.2\n355\tAYAA-F7FJT\tKingsley Drive, Beaudesert\tReady for service\t-27.9947144922874\t153.011802811568\t19795.0\t26645.6\n356\t260\tGlenside\tReady for service\t-34.940416129598376\t138.62478255578358\t18654.4\t23094.2\n357\t10357\tMillbridge\tReady for service\t-33.30724335650221\t115.7363560795784\t13305.2\t24096.8\n358\tPRJ0001049-3A6E2E02\tO\u0027Connell Street\tContracted\t-33.76839194885882\t150.73397789150476\t23437.6\t20701.2\n359\tAYCA-1FA2OY\tThe Grove\tUnder construction\t-28.7839001827515\t114.685670982283\t18662.4\t20361.8\n360\tAYCA-10LG0G\tSpringlake Subdivision, Mt Barker\tContracted\t-35.0928450000204\t138.856486999992\t20215.0\t23817.8\n361\t10348\tEaton-Millbridge\tReady for service\t-33.31223599288549\t115.7294225692749\t16071.2\t24242.0\n362\t17337529\t276 Old North\tCheck with carrier\t-27.061864018\t152.866091168\t21776.8\t26024.2\n363\t10565\tSecret Harbour\tReady for service\t-32.39632446515415\t115.74663698673248\t18652.6\t22901.2\n364\tAYCA-1MI4GK\tMoncrieff Residential Estate\tContracted\t-35.1609006970852\t149.119975532677\t19607.6\t22238.8\n365\t282\tArcadia Group Hidden Valley\tReady for service\t-37.395547376433164\t144.99366317749167\t17682.2\t26559.0\n366\t17325557\tAvenue Hill Stage 1\tCheck with carrier\t-37.517128029\t143.714459872\t22599.0\t25083.4\n367\t17335954\tMalcolm Road Subdivision\tCheck with carrier\t-17.191856979\t145.562276896\t22370.4\t24740.8\n368\t245\tMorphettville Redevelopment\tReady for service\t-34.9861747519862\t138.5437873458612\t16948.2\t25541.2\n369\t17203252\tRedgum Rise Estate\tCheck with carrier\t-37.048975021000004\t146.092817888\t23353.6\t26892.2\n370\t10393\tIluka\tReady for service\t-31.73569532841298\t115.732501745224\t17143.8\t23661.8\n371\tAYCA-FZTQG\tLot 502 Jane Brook Drive\tReady for service\t-31.8620273343564\t116.058612526473\t22258.8\t22303.2\n372\tAYCA-1COQ8Z\tRiver Oaks Estate\tUnder construction\t-27.7696789999834\t153.092011\t19452.2\t21938.2\n373\tAYCA-19ZSPD\tVermont Riverlands\tContracted\t-33.5638770000159\t150.868297999992\t20829.4\t22118.6\n374\t17356820\tAspect\tCheck with carrier\t-27.746267041\t153.138958912\t18459.4\t24199.4\n375\tAYCA-L6RW4\tRiverside Estate\tContracted\t-36.1360260000277\t146.949994\t20487.8\t23717.2\n376\tAYCA-XKC83\tGreenway - 799 Richmond Rd\tUnder construction\t-33.7239020000161\t150.844540999992\t21780.0\t23986.4\n377\t17340077\t5-21 GRAY ST\tCheck with carrier\t-28.145302014000002\t153.42793488\t20104.8\t23483.2\n378\tAYAA-FPQGL\tThe Ponds\tReady for service\t-33.6949818131024\t150.909569357808\t16030.4\t22328.2\n379\tAYCA-1J8WS5\tJimboomba Woods\tReady for service\t-27.8691483307398\t153.042010627221\t20789.8\t27482.2\n380\t10192\tCanningvale-Sanctuary Waters\tReady for service\t-32.09583289039479\t115.92712484300137\t23973.0\t26180.2\n381\tON-V-LSP-WTN\tWorthington Estate\tReady for service\t-38.05896187075398\t145.44869273900986\t18613.2\t23655.8\n382\tAYAA-FPOR9\tThe Fairways\tReady for service\t-27.5456169942859\t152.464248641146\t20518.4\t25462.6\n383\t269\tWatergardens Town Centre\tReady for service\t-37.70288208544553\t144.7762755012373\t23493.0\t24718.4\n384\t17336600\tRiverglen Estate\tCheck with carrier\t-27.4389650025\t152.659110976\t19408.6\t23134.0\n385\tAYCA-1F7EBL\tLampada\tContracted\t-31.1398907133126\t150.954064771498\t18335.4\t23286.4\n386\tAYCA-13X4N6\tCalleya\tReady for service\t-32.1265031928837\t115.874723296591\t20731.8\t27632.6\n387\t10876\tMelrose Park\tContracted\t-33.809225805531725\t151.06601751590676\t21277.2\t24281.6\n388\t88\tLakes Entrance\tReady for service\t-27.684162625000003\t152.919766137\t26086.8\t22307.6\n389\tAYCA-KYG28\tThe Sands\tReady for service\t-23.9898136034058\t151.378798009355\t18884.6\t27012.2\n390\tAYCA-10ILHK\tMarsden Park Precinct\tContracted\t-33.6969017543874\t150.821641697981\t18000.2\t24424.4\n391\tAYCA-1D9BBM\tHarrington Grove\tUnder construction\t-34.0141980000153\t150.719515999989\t18076.2\t24489.8\n392\tAYCA-1J527U\tMuirhead\tContracted\t-12.3530259998886\t130.893439999995\t19123.8\t22961.8\n393\tAYCA-1FTKTT\tMolonglo Valley - Coombs Stage 1\tReady for service\t-35.3229330840435\t149.043426474012\t16881.4\t27189.0\n394\tAYCA-G4D1B\tDeepdale Industrial Estate\tReady for service\t-28.7918229925085\t114.691418008669\t14628.8\t20052.4\n395\tAYCA-DNDK2\tManooka Valley\tReady for service\t-34.0386187385006\t150.775687810547\t21590.4\t24429.8\n396\t17342032\tHighfields Views\tCheck with carrier\t-27.450900814\t151.993666816\t18346.4\t24541.0\n397\t17350580\tBroadview Estate\tCheck with carrier\t-32.626900004\t149.59184\t22096.0\t21108.0\n398\tAYCA-T062O\tGoogong Township\tReady for service\t-35.4157760444998\t149.237467703633\t20986.2\t26356.0\n399\tAYAA-HE3NB\tBroome North\tReady for service\t-17.9224571928365\t122.230466306045\t17453.8\t23815.6\n400\t17248287\tNogoa Rise Estate \tCheck with carrier\t-23.548365996\t148.161332896\t23657.4\t24525.8\n401\t173\tGemstone Waters\tReady for service\t-27.095016408891176\t152.93148641347787\t20166.8\t19742.8\n402\t17296036\tINNOVATION PARK\tCheck with carrier\t-38.042261999000004\t145.219498912\t20229.4\t25023.0\n403\t314\tLiving Gems Kuluin\tUnder construction\t-26.65790047155776\t153.04729444825927\t22844.8\t23761.4\n404\t10740\tLiving Choice Glenhaven\tReady for service\t-33.69626396335785\t150.99443078041077\t15573.4\t24175.6\n405\tAYCA-19ZSTU\tVermont Riverlands\tContracted\t-33.5641750000158\t150.870480999992\t20385.4\t22417.8\n406\t10704\tWannanup-Port Bouvard East\tReady for service\t-32.60341102088821\t115.64603269100189\t24229.8\t22691.0\n407\tAYCA-OVO23\tMINDA Redevelopment\tReady for service\t-35.0032417638245\t138.51675979825\t22640.4\t24730.8\n408\t10553\tMurray-Riverland Ramble\tReady for service\t-32.57704251337142\t115.8260753005743\t21688.4\t21019.0\n409\tAYCA-IEEZM\tLot 1693 Parker St \u0026 Lot 2119 Stanley St\tReady for service\t-20.3946096122919\t118.599534752865\t18979.6\t24684.6\n410\t83\tStonybrook\tReady for service\t-37.690168202\t144.731148311\t18033.4\t26974.4\n411\tAYCA-ETCHB\tWhiteman Edge\tReady for service\t-31.8141469707026\t115.963526331826\t19701.4\t24007.0\n412\t17357878\tSerpentine Downs\tCheck with carrier\t-32.374276991\t115.981357984\t23695.0\t22275.0\n413\tAYCA-1ABGJI\tJimboomba Woods\tReady for service\t-27.8718669999843\t153.046343\t19919.8\t26224.6\n414\t115\tThe Grove\tReady for service\t-35.175531914056855\t149.1008225536489\t20404.4\t24099.0\n415\t338\tLincoln on the Bellarine\tUnder construction\t-38.22705044497567\t144.37139348266936\t15609.6\t23813.8\n416\tAYCA-LF9PR\tGolden Bay\tReady for service\t-32.4205231935049\t115.755533304269\t18912.6\t20619.4\n417\t17320876\tWokarena Road\tCheck with carrier\t-28.660908965\t114.62454\t18123.4\t25630.0\n418\t17347341\tPeak Drive Estate Stage 1\tCheck with carrier\t-38.0048399955\t145.33659504\t18299.0\t22463.2\n419\t17289791\tEagle Bay Rise\tCheck with carrier\t-37.896200096\t147.674397248\t21096.8\t23734.2\n420\t17382301\tLyn Parade\tCheck with carrier\t-33.936563992\t150.881592992\t16525.6\t25997.0\n421\tAYCA-12UCDR\tJimboomba Woods\tReady for service\t-27.8704580343858\t153.046562722769\t19919.8\t26224.6\n422\tACSP\tSpringfield\tReady for service\t-27.68752972507293\t152.90936708450317\t24988.2\t23664.4\n423\tAYCA-LIVVA\tIronbark Ridge\tReady for service\t-32.2974524392657\t150.896860220885\t19588.0\t21423.2\n424\t10351\tMillbridge\tReady for service\t-33.30790860838177\t115.72964385151863\t16071.2\t24242.0\n425\t10328\tDudley Park-Mariner\u0027s Cove\tReady for service\t-32.54983018052196\t115.73004484176636\t21353.6\t23456.6\n426\t10731\tEpping Park\tReady for service\t-33.782216765389535\t151.07181787490845\t20366.6\t22242.4\n427\tAYCA-FWOIG\t1440 Frankston-Flinders Road, Tyabb\tReady for service\t-38.2535102671778\t145.190052381605\t19285.8\t24293.6\n428\t10612\tSecret Harbour-Anstey Park\tReady for service\t-32.402189320789844\t115.76897978782654\t16931.6\t22374.6\n429\t10658\tTapping The Kestrels\tReady for service\t-31.721625828114394\t115.78534126281738\t26443.8\t26125.0\n430\t17349312\tMOUNTAIN VIEW ESTATE\tCheck with carrier\t-33.912672574\t150.621471712\t22901.0\t24578.8\n431\t17356160\tWoodridge Estate Stage 1B\tCheck with carrier\t-34.837832969000004\t150.548339168\t16677.2\t23567.4\n432\tAYAA-GDLZ8\tHarrington Grove\tReady for service\t-34.0194031212073\t150.7532483145\t18021.6\t23293.2\n433\tAYCA-1CRLYV\tMoncrieff Residential Estate\tUnder construction\t-35.154803000021\t149.107155000007\t18817.6\t23359.8\n434\tAYCA-WHTZS\tFarragher subdivision\tReady for service\t-32.765554999864\t151.6233730003\t18055.6\t25171.4\n435\tAYCA-10KKU8\tThe Gateway\tReady for service\t-34.1901310500305\t150.786361112653\t17790.2\t26490.2\n436\tAYCA-DXRRI\tMiddleton Grange\tReady for service\t-33.9151240703677\t150.840006288988\t17646.6\t24963.0\n437\t17327379\tTwin Creeks Golf Couse Estate\tCheck with carrier\t-33.845982479\t150.757997056\t15609.0\t22854.2\n438\t10705\tWannanup-Port Bouvard East\tReady for service\t-32.60215424475941\t115.65199792385101\t23585.6\t22301.2\n439\t10235\tDalyellup\tReady for service\t-33.39171543951737\t115.62134027481079\t21921.6\t26404.4\n440\t17313925\tSanctuary on Moggill\tCheck with carrier\t-27.5747120085\t152.880090112\t17210.6\t22169.6\n441\t10573\tSecret Harbour\tReady for service\t-32.39568219217621\t115.75586915016174\t19191.2\t20236.2\n442\t17244744\tPremier Gardens Estate\tCheck with carrier\t-34.2963140485\t146.076527872\t20610.2\t22313.0\n443\t10171\tBurns Beach\tReady for service\t-31.724599957029927\t115.71629583835602\t21081.6\t22725.8\n444\tAYCA-DVQ33\tParkland Heights\tReady for service\t-32.3549928434823\t115.798355647355\t19750.0\t23652.2\n445\tAYCA-1EL358\tEden Park Estate\tReady for service\t-19.2331609988561\t146.647843999839\t24359.0\t21391.2\n446\tAYAA-GVMB7\tArise\tReady for service\t-27.5754951435665\t153.116533700679\t19897.2\t26717.0\n447\tAYAA-ESS68\tTalana\tReady for service\t-33.9517943675023\t150.844216592569\t22752.6\t21586.2\n448\tAYCA-19M72I\tLot 9000 Baile Road Canning Vale\tContracted\t-32.0656820000128\t115.913695\t22424.6\t24840.0\n449\t17327746\tBindea Estate\tCheck with carrier\t-30.993058980500003\t150.264839168\t20145.2\t23028.6\n450\tAYCA-DF9C9\tBungarribee (Bunya)\tReady for service\t-33.7766755592885\t150.86762255512\t16069.6\t22202.4\n451\t20\tMacarthur Gardens\tReady for service\t-34.078731685352246\t150.7971630189405\t18646.6\t24314.4\n452\t10389\tIluka\tReady for service\t-31.737971912801473\t115.73255270719528\t17143.8\t23661.8\n453\t5\tEl Caballo Lifestyle Village\tReady for service\t-31.800599504507684\t116.35106955017488\t18556.6\t24259.0\n454\tAYAA-F7DKM\tHighland Reserve\tReady for service\t-27.8823195164227\t153.278922005378\t23901.0\t26226.8\n455\tAYCA-1DIQ1G\tDeepdale North\tUnder construction\t-28.7695852595405\t114.682667281468\t18384.0\t21936.0\n456\tAYCA-G6D99\tIronbark Ridge\tReady for service\t-32.2945243372932\t150.897661735819\t16287.6\t23451.4\n457\t17320794\tStegemann Road Buccan\tCheck with carrier\t-27.752138016\t153.135784096\t17962.6\t24559.8\n458\tAYCA-MVLET\tMount Margaret\tReady for service\t-19.3376598365711\t146.596882842201\t16882.2\t24779.8\n459\t10387\tIluka\tReady for service\t-31.741005750924383\t115.73422908782959\t18258.4\t22958.8\n460\tAYAA-HLIZF\tNickol West\tReady for service\t-20.7363338099194\t116.79243804\t21746.4\t26289.6\n461\tAYCA-1GCO65\tWhitby\tContracted\t-32.279590000014\t115.997557\t18326.6\t24411.4\n462\t17311856\tFantasia Land\tCheck with carrier\t-34.644247026500004\t138.651928928\t20255.8\t21455.0\n463\t10172\tBurns Beach\tReady for service\t-31.728574154024283\t115.72688519954681\t20257.4\t23419.8\n464\t10574\tSecret Harbour\tReady for service\t-32.39552818753023\t115.75571894645691\t19191.2\t20236.2\n465\t10688\tWannanup-Port Bouvard North\tReady for service\t-32.601983893518465\t115.6345796585083\t20434.8\t23784.4\n466\t10197\tCanningvale-Sanctuary Waters\tReady for service\t-32.100772582784344\t115.93021810054779\t21627.8\t24481.0\n467\tON-V-LSP-TWC\tLakeside, Town Centre\tReady for service\t-38.072816794351404\t145.43586373329163\t16998.8\t23317.4\n468\t17334924\tHalcyon\tCheck with carrier\t-27.878194981\t153.363738976\t15971.8\t25280.4\n469\t101\tBarangaroo\tReady for service\t-33.860891437945874\t151.20260026877574\t21517.2\t23703.0\n470\tAYCA-ILWV9\tCloverlea - Chirnside Park\tReady for service\t-37.745503247648\t145.332093027342\t24615.4\t24642.0\n471\tAYCA-1INGUF\tLot 9000 Baile Road Canning Vale\tContracted\t-32.0671115083085\t115.909507261094\t18874.0\t24739.6\n472\t17362323\tHOEVET FIELD\tCheck with carrier\t-17.0509390565\t145.4283672\t13610.4\t23351.2\n473\tAYAA-J45NH\tPimpama Rivers Estate\tReady for service\t-27.7926076471019\t153.265624578904\t20400.2\t24205.0\n474\tAYCA-TCBF0\tWandi Estate\tUnder construction\t-32.194845000013\t115.860880999999\t21257.4\t23627.2\n475\tAYCA-T0C3W\tWickham South\tReady for service\t-20.684563011765\t117.142895280133\t27532.4\t27095.0\n476\t10092\tBaldivis-The Chase\tReady for service\t-32.303049020278486\t115.82371830940247\t19088.8\t25121.6\n477\tAYCA-1EFSPR\tCoomera Springs Estate\tContracted\t-27.8408675699834\t153.2906154\t14500.2\t23463.4\n478\tAYCA-F6OD2\tThe Fairways\tReady for service\t-27.5485524851706\t152.46376330561\t20518.4\t25462.6\n479\tAYCA-FZLKH\tMadigan Road\tReady for service\t-20.7515312639833\t116.79272085637\t25029.0\t24500.4\n480\tON-Q-GC-SeaChange\tSeachange Emerald Lakes, Carrara\tUnder construction\t-28.015345000000003\t153.381919\t17031.4\t22893.4\n481\tAYCA-M5S0I\tWindmill Downs\tReady for service\t-31.0370319898862\t150.904114385348\t22075.2\t24046.6\n482\t10590\tSecret Harbour\tReady for service\t-32.410379155588195\t115.76870754361153\t17785.6\t20940.2\n483\tAYAA-J4JYO\tWickham South\tReady for service\t-20.6838523976977\t117.137120090343\t26268.0\t26530.0\n484\t271\tWestpoint Shopping Centre\tReady for service\t-33.76852830684482\t150.90482269288674\t25055.2\t26883.8\n485\t334\tOceanside\tUnder construction\t-24.77278537946005\t152.41152280181123\t21721.4\t25329.4\n486\tAYCA-13X8H5\tRiemore Downs Estate\tContracted\t-27.8859651299838\t153.10899288\t21179.4\t23515.6\n487\t17362631\tBarbers Paddock\tCheck with carrier\t-36.1019571165\t144.76534032\t22234.0\t25514.0\n488\t193\tChambers Pines\tReady for service\t-27.721799275380192\t153.08751662773457\t20861.2\t26484.0\n489\tAYAA-F548W\tElizabeth Hills\tReady for service\t-33.8956701905742\t150.845726075931\t22430.8\t25208.4\n490\t17348353\tAvenue Hill\tCheck with carrier\t-37.5230560025\t143.718275008\t22599.0\t25083.4\n491\t17345976\tWestwood\tCheck with carrier\t-26.957241264\t152.764883648\t21326.4\t23167.2\n492\tAYCA-FD0SO\tForest Springs\tReady for service\t-23.8947114383945\t151.248552545618\t17125.8\t22555.8\n493\tAYCA-1CPHX4\tMoncrieff Residential Estate\tContracted\t-35.1611090000209\t149.114634000007\t20296.8\t22031.4\n494\t17338330\tAmorosa Gardens\tCheck with carrier\t-27.4216899615\t152.000035936\t18346.4\t24541.0\n495\tAYCA-F190V\tEdmondson Park South P1\tReady for service\t-33.9783097831143\t150.852090806049\t23980.0\t22931.8\n496\t17357936\tBroadview Estate\tCheck with carrier\t-32.6346520035\t149.594210016\t22096.0\t21108.0\n497\t234\tLogan Hyperdome Shopping Centre\tReady for service\t-27.659035338906623\t153.16967998506846\t22753.4\t23414.8\n498\t17136044\tThe Grange Stage 1\tCheck with carrier\t-37.0329309885\t146.10346992\t17565.6\t23981.6\n499\tAYAA-GR8ZS\tElizabeth Hills\tReady for service\t-33.8975584538271\t150.847407166737\t22787.6\t24541.8\n500\tAYCA-1JH740\tCockburn Coast\tContracted\t-32.0863006079454\t115.761090935601\t19181.6\t24539.2\n501\tAYCA-GKAGS\tParks Edge @ Casey Fields\tReady for service\t-38.1198055463689\t145.304366851953\t21265.6\t24304.4\n502\tAYCA-13X8OH\tRiemore Downs Estate\tContracted\t-27.8859651299838\t153.10899288\t21179.4\t23515.6\n503\tAYCA-19PWB1\tLot 1032 Redgate Road\tUnder construction\t-34.0292127594157\t115.09022781127\t23401.8\t22355.6\n504\tAYCA-11PKDA\tMount Margaret\tReady for service\t-19.3405234999658\t146.599826077646\t16882.2\t24779.8\n505\tAYCA-XGZCF\tFrench Street Werrington\tContracted\t-33.7607850000147\t150.735713999989\t21857.6\t25505.6\n506\tAYAA-FG08V\tHighfields North Estate\tReady for service\t-27.4330973824287\t151.942094713239\t21843.6\t23328.0\n507\tAYCA-13WQNT\tThe Fairways\tReady for service\t-27.5270719999815\t152.481257\t20759.4\t25389.4\n508\tAYCA-1UJIVI\tEden Park Estate\tUnder construction\t-19.2357979999108\t146.643857\t24359.0\t21391.2\n509\t216\tMartha Cove\tReady for service\t-38.30550886289194\t145.00656717872238\t18222.0\t23807.6\n510\tAYAA-GPFH1\tThe Ponds\tReady for service\t-33.692786388454\t150.914964008876\t18171.2\t24263.8\n511\tAYCA-HKY43\tEvans Park Industrial\tReady for service\t-38.0926864860118\t145.254120650953\t16863.4\t23981.0\n512\t17322659\tLockhart River Subdivision\tCheck with carrier\t-12.779468007\t143.341381088\t15852.8\t23196.6\n513\tAYCA-1J5EEA\tLot 10,50 \u0026 700 Ocean Reef Gnangara\tUnder construction\t-31.7877473878712\t115.858690851779\t19519.2\t25300.6\n514\tAYAA-IGZL9\tTaylors Hill Estate\tReady for service\t-37.7193046518177\t144.739097452396\t20922.2\t21622.2\n515\t10788\tWWP LBNCo\tReady for service\t-33.828184078700204\t151.07364177703857\t20162.4\t23078.6\n516\t17321918\tOnslow Townsite Development\tCheck with carrier\t-21.646846974\t115.114884832\t20194.4\t22023.4\n517\tAYCA-DWNVE\tMaranda Heights\tReady for service\t-23.5637709827387\t148.150837820423\t16604.6\t24318.4\n518\tAYCA-TZAP5\tFrizzo Road, Palmview\tReady for service\t-26.7508125378843\t153.03774225061\t21159.2\t23773.8\n519\t221\tCanberra Centre\tReady for service\t-35.28132145478449\t149.13330946921718\t17138.6\t21300.6\n520\t303\tRochedale\tUnder construction\t-27.585841634265535\t153.11353598593286\t16618.0\t26267.4\n521\t1\tDFO Perth\tReady for service\t-31.940804813395204\t115.94954840593766\t19240.6\t21798.8\n522\t4\tDFO Perth\tUnder construction\t-31.940804813395204\t115.94954840593766\t19240.6\t21798.8\n523\tAYCA-1ESEJE\tJimboomba Woods\tReady for service\t-27.8674779999843\t153.046517\t21855.6\t26241.4\n524\tAYAA-EOFUR\tThe Village at Wellard\tReady for service\t-32.267305140479\t115.825448154138\t18802.2\t21027.4\n525\tAYCA-1MFJ8K\tTindal Avenue, Beeliar\tContracted\t-32.1325105806847\t115.808275026027\t22021.0\t23771.4\n526\t10105\tBaldivis-Tuart Ridge\tReady for service\t-32.33848128148256\t115.82120776176453\t20845.2\t25818.2\n527\tAYAA-F614T\tArise\tReady for service\t-27.5751646966551\t153.118817920361\t19897.2\t26717.0\n528\tAYCA-145346\tL107 Exploration Drive Multi-User Site\tReady for service\t-20.7552641658172\t116.768744493333\t18985.0\t25356.6\n529\t17262882\tEastside Subdivision\tCheck with carrier\t-34.1966919555\t142.182113056\t15426.0\t25615.6\n530\t10589\tSecret Harbour\tReady for service\t-32.40927015711777\t115.76955780386925\t15429.8\t20625.0\n531\tAYCA-FUHRO\tCaddens Release\tReady for service\t-33.7747377813714\t150.721273265564\t18661.6\t21899.8\n532\tAYCA-RNFCZ\tRIVERSTONE RISE\tReady for service\t-23.9719377242301\t151.317210217489\t21259.8\t26661.2\n533\t10329\tDudley Park-Mariner\u0027s Cove\tReady for service\t-32.54984374590842\t115.7272070646286\t21442.2\t24058.8\n534\tAYCA-JWNIP\tRedbank Motorway Estate\tReady for service\t-27.5859849493714\t152.876343356434\t19008.2\t22288.6\n535\t17201178\tPacific Pines\tCheck with carrier\t-27.9312569955\t153.301434848\t22325.0\t20473.2\n536\t10047\tAustralind-Galway Green\tReady for service\t-33.25603165631664\t115.7270622253418\t17814.0\t24196.8\n537\t10698\tWannanup-Port Bouvard North\tReady for service\t-32.59203121760377\t115.64583957195282\t23020.6\t22511.8\n538\t10327\tDudley Park-Mariner\u0027s Cove\tReady for service\t-32.550530596897936\t115.73215842247009\t21235.6\t22435.0\n539\tAYCA-ROJ8T\tThe Meadows\tUnder construction\t-27.8279519999839\t153.312236\t19812.0\t24234.2\n540\tAYCA-EOU5T\tHidden Valley Northern Paddock\tUnder construction\t-37.3869390600181\t144.994662359996\t17682.2\t26559.0\n541\tAYCA-1RO4RX\tWindradyne\tContracted\t-33.4027119999957\t149.54138000004\t17430.6\t23060.6\n542\tAYCA-LQAF8\tRIVERSTONE RISE\tReady for service\t-23.9673324937224\t151.318411370725\t22609.6\t25941.6\n543\tAYCA-SG61Y\tAlkira Estate\tContracted\t-34.4891840000067\t150.764230999955\t17293.6\t26685.2\n544\tAYCA-JKJE1\tForest Springs\tReady for service\t-23.8984820678198\t151.247298624639\t17125.8\t22555.8\n545\tAYCA-DD3C8\tVermont Riverlands\tReady for service\t-33.5689465929785\t150.862954209724\t21039.8\t23921.4\n546\tAYCA-GPU42\tNewman Light Industrial Area\tReady for service\t-23.370211790284\t119.727884729292\t16749.6\t26623.2\n547\t10371\tFalcon-Pleasant Grove\tReady for service\t-32.59561976274473\t115.65103232860565\t23020.6\t22511.8\n548\tAYCA-GR59S\tJohnston Stage 2\tReady for service\t-12.4910377171343\t131.00747135911\t21211.0\t22446.0\n549\t17366497\t250-252 Blind Creek Road\tCheck with carrier\t-37.523448998\t143.77838\t23521.0\t23517.2\n550\t17363349\tBullocks Run\tCheck with carrier\t-32.092228007500005\t152.449822016\t18871.6\t23298.2\n551\t10217\tClarkson-Somerly\tReady for service\t-31.68231965347913\t115.73390185832977\t15798.8\t21451.8\n552\tAYAA-GS1IC\tLot 1002 Penson Street, Singleton\tReady for service\t-32.4526525091403\t115.758240281793\t25210.2\t25585.6\n553\t10046\tAustralind-Galway Green\tReady for service\t-33.25845042274144\t115.72949230670929\t18038.0\t25761.8\n554\t17290310\tLinton Hill - Stage 2\tCheck with carrier\t-27.466329962\t151.82728704\t22133.6\t25616.6\n555\t10611\tSecret Harbour-Anstey Park\tReady for service\t-32.398474967071245\t115.76890334486961\t14407.6\t24555.0\n556\tAYCA-ER2HH\tVicars Avenue\tReady for service\t-38.5897578015856\t145.592578108999\t20472.8\t24350.0\n557\tAYCA-G7VCW\tGap Ridge Industrial Area\tReady for service\t-20.7376182188109\t116.76592759951\t19990.2\t25246.0\n558\tAYCA-159BSA\tMoncrieff Residential Estate\tContracted\t-35.159419000021\t149.110044000007\t18817.6\t23359.8\n559\tAYCA-1S9DR7\tVasse Newtown\tContracted\t-33.6735871946194\t115.237501509781\t21538.8\t23505.4\n560\t24\tChesalon Living\tReady for service\t-34.0064770830842\t150.7440112571631\t17470.2\t22831.2\n561\tAYCA-S72QY\tKialla Lakes Estate\tUnder construction\t-36.4346950000272\t145.392727999998\t21039.8\t23906.6\n562\t17349198\tThe Palisades\tCheck with carrier\t-27.4275060285\t152.923364992\t21054.6\t24970.6\n563\tAYCA-1L7JOH\tLots 73 and 74 Queensway Rd, Landsdale\tUnder construction\t-31.8046482472394\t115.869656132796\t16108.2\t22465.8\n564\t17355906\tDeepwater Estate\tCheck with carrier\t-27.3051000015\t153.015337088\t21351.2\t22136.2\n565\t17347407\tAspire at Weston\tCheck with carrier\t-32.808095997\t151.447782976\t22171.0\t23258.2\n566\t17325519\tBraeburn Estate\tCheck with carrier\t-32.5464440405\t151.173253088\t22274.6\t22785.0\n567\tAYCA-IK50L\tSt George Springs\tContracted\t-28.2061125129523\t152.051781890475\t20794.0\t26620.0\n568\tAYCA-1DAJU0\tHarrington Grove\tUnder construction\t-34.0141670000154\t150.719234999989\t18076.2\t24489.8\n569\t10576\tSecret Harbour\tReady for service\t-32.41016651368836\t115.7580041885376\t19155.0\t21643.0\n570\t10445\tJindalee-Jindalee Beach\tReady for service\t-31.64808608166744\t115.69432854652405\t14335.6\t25786.8\n571\t10291\tDawesville-Port Bouvard South\tReady for service\t-32.6050378802273\t115.63354969024658\t22843.2\t24504.2\n572\tAYCA-F6G23\tHeron Park\tReady for service\t-32.1206153334715\t115.933853735721\t15577.4\t25051.6\n573\t272\tCastle Towers Shopping Centre\tContracted\t-33.73115719422902\t151.00477934287912\t20433.0\t25585.2\n574\tAYCA-1BNMMK\tRedgum Brook Estate\tReady for service\t-32.2091690608967\t115.973701271346\t20654.0\t22477.8\n575\tAYCA-1BCCVE\tFrizzo Road, Palmview\tReady for service\t-26.7461322570971\t153.039079776235\t18663.8\t24901.2\n576\t10378\tHalls Head-Port Mandurah\tReady for service\t-32.53337661342534\t115.7064950466156\t19870.0\t21671.6\n577\tAYCA-1JG1CU\tSpring Mountain\tContracted\t-27.7313099999831\t152.906138\t22274.0\t23160.8\n578\tAYAA-GO2KN\tCardinia Lakes\tReady for service\t-38.0624103221007\t145.507605858647\t17286.2\t23369.8\n579\t17325948\tEwer St Carindale\tCheck with carrier\t-27.516684964\t153.116602912\t25186.8\t27676.0\n580\t17348390\tNorth Byron Beach Resort\tCheck with carrier\t-28.626032968500002\t153.588858848\t19369.4\t24441.4\n581\t10571\tSecret Harbour\tReady for service\t-32.40081854959892\t115.75819730758667\t19191.2\t20236.2\n582\t17315061\tYandina Caravan Park Stage 1\tCheck with carrier\t-26.5687499775\t152.95569984\t14688.2\t24817.4\n583\tAYAA-IGN9M\tGreenhills Beach Residential\tReady for service\t-34.0345879914221\t151.164224730179\t18744.8\t24791.6\n584\tAYAA-IWBVJ\tGalway Gold Estate\tReady for service\t-38.0572001902837\t145.481057988543\t13353.6\t24337.6\n585\t17394457\tBoundary warehouses\tCheck with carrier\t-38.0843087805\t145.184269728\t19624.0\t23655.8\n586\t17324948\tPerricoota Run Stage 3\tCheck with carrier\t-36.0924779755\t144.73565712\t20190.2\t25712.8\n587\tAYCA-12K0N9\tGreenway - 799 Richmond Rd\tUnder construction\t-33.7233900000067\t150.847701999976\t21780.0\t23986.4\n588\tAYAA-GUYWC\tBrookhaven Rise Estate\tReady for service\t-37.5627940974843\t144.696586941518\t21542.4\t23327.4\n589\tRAWM\tWellington Manor\tReady for service\t-27.490458180626142\t153.22544932365417\t17690.0\t20418.0\n590\tAYCA-H7WBI\tSovereign Hills\tUnder construction\t-31.4549160000096\t152.827631\t20377.8\t25730.6\n591\tAYCA-KACMM\tBeverly Hills Estate\tReady for service\t-33.2436355021387\t149.091830082507\t20090.0\t23946.8\n592\tAYCA-18CNWR\tMacquarie View Estate\tReady for service\t-32.2786208316522\t148.616670217466\t22090.4\t22879.6\n593\tAYAA-GIMD0\tYellowgum\tReady for service\t-36.6907045065123\t144.323835048935\t19579.2\t23198.8\n594\t10209\tClarkson-Somerly\tReady for service\t-31.690390180334045\t115.7239830493927\t20251.2\t24191.0\n595\tAYCA-142BGQ\tLLOYD ESTATE\tUnder construction\t-35.1520639984098\t147.337553998696\t19861.4\t20519.8\n596\t10649\tTapping-Ashton Heights\tReady for service\t-31.716962281699793\t115.79671382904053\t23418.0\t24360.4\n597\t17329917\tCastle Hill Subdivision\tCheck with carrier\t-33.720329258\t151.01356512\t18684.0\t24789.8\n598\t33\tHamilton Reach\tReady for service\t-27.443015132\t153.085595175\t22128.6\t26017.2\n599\t10473\tLakelands\tReady for service\t-32.466192308164004\t115.76794981956482\t21679.6\t27125.0\n600\t10570\tSecret Harbour\tReady for service\t-32.40004856754565\t115.75763940811157\t19191.2\t20236.2\n601\tAYCA-NC7MJ\tGlenwood Development\tReady for service\t-36.185263368505\t146.936057138263\t18313.8\t23298.0\n602\t17325403\tPatterson Gardens Estate Stage 2\tCheck with carrier\t-33.289404022\t149.12302608\t25579.0\t21712.2\n603\t10170\tBurns Beach\tReady for service\t-31.728966545401306\t115.72501301765442\t20257.4\t23419.8\n604\t17361986\tBalmattum Hill Estate\tCheck with carrier\t-36.751287007\t145.583227008\t22603.6\t19970.8\n605\t17333322\tMacquarie Heights Estate\tCheck with carrier\t-32.944256996\t151.639039072\t20695.6\t22385.2\n606\t10079\tBaldivis-Rivergums\tReady for service\t-32.34183520390608\t115.82303166389465\t20845.2\t25818.2\n607\t17328997\tCar Mega Mart Stage 2\tCheck with carrier\t-38.095363992\t145.485427008\t19556.8\t23263.4\n608\t10532\tMadora Bay\tReady for service\t-32.47605485052216\t115.75556874275208\t26126.8\t24797.4\n609\tAYCA-MT9YM\tPotts Hill\tReady for service\t-33.891202420849\t151.028901244511\t17993.0\t23410.0\n610\tAYAA-GR0XZ\tElizabeth Hills\tReady for service\t-33.9012756454489\t150.844692256359\t20516.4\t25692.0\n611\t10029\tAveley-Vale\tReady for service\t-31.790171998121004\t115.9892749786377\t24358.4\t23175.8\n612\tAYAA-FN97T\tAspiri\tReady for service\t-32.1417876390121\t115.909525216\t23205.6\t25684.0\n613\tRAFB\tForresters Beach\tReady for service\t-33.4038792802728\t151.4666497707367\t16752.2\t26508.8\n614\t17316951\tKookaburra Rise - Stg 3\u00264\tCheck with carrier\t-20.3102260255\t148.659717952\t18178.6\t25828.6\n615\t10787\tWWP LBNCo\tReady for service\t-33.82709673956692\t151.0745644569397\t20281.8\t22323.4\n616\tAYCA-1D9FGG\tFairway Gardens\tUnder construction\t-36.0520650000274\t147.013232\t19458.4\t20622.2\n617\tAYCA-G7OO0\tGap Ridge Industrial Area\tReady for service\t-20.7357517321217\t116.762107212586\t19990.2\t25246.0\n618\t10007\tAveley-Vale\tReady for service\t-31.78787482485216\t115.98103523254395\t24754.8\t21027.0\n619\tAYCA-10WO6Q\tLot 6 Nicholson Road\tContracted\t-32.1440537855947\t115.91943745081\t21514.4\t26428.6\n620\t10288\tDawesville-Port Bouvard South\tReady for service\t-32.61100683812102\t115.63154071569443\t20947.6\t25747.6\n621\t17326041\tKinross Road\tCheck with carrier\t-27.556326986000002\t153.249588\t22722.6\t21388.6\n622\t17337045\talanvale gardens\tCheck with carrier\t-41.398637042\t147.128419072\t21282.6\t23578.4\n623\t10002\tAveley-Vale\tReady for service\t-31.79322877516195\t115.98442554473877\t23497.2\t21903.4\n624\tAYAA-GYFSE\tKalynda Chase Estate\tReady for service\t-19.3044992828765\t146.690298682805\t15406.8\t25450.4\n625\t10582\tSecret Harbour\tReady for service\t-32.415387169732384\t115.75394868850708\t18912.6\t20619.4\n626\t10693\tWannanup-Port Bouvard North\tReady for service\t-32.5945576768249\t115.64508318901062\t22279.6\t22067.4\n627\t17340599\tLeisure Life Village - 3 Parkside Pde Toronto\tCheck with carrier\t-33.027171036\t151.566399008\t16374.4\t22490.6\n628\t10702\tWannanup-Port Bouvard East\tReady for service\t-32.60514633646602\t115.64143002033234\t22843.2\t24504.2\n629\t10075\tBaldivis-Rivergums\tReady for service\t-32.33649153092163\t115.82380414009094\t19876.6\t25828.8\n630\t17319550\t32-40 Cawarra Road\tCheck with carrier\t-34.0320390325\t151.129942912\t16521.8\t22710.8\n631\t17329919\t800 MONTPELIER DRIVE\tCheck with carrier\t-34.084847967\t150.570492128\t18547.8\t23334.0\n632\tAYCA-1F7L92\tZuccoli\tReady for service\t-12.5056259998882\t131.008578999993\t20655.4\t24551.8\n633\t10186\tCanningvale-Avenues\tReady for service\t-32.09173200503879\t115.92247188091278\t23640.8\t25763.6\n634\tAYAA-EW1BR\tShoal Point Waters\tReady for service\t-21.011116523858\t149.151202655373\t24116.2\t25355.0\n635\tAYCA-14TLE6\tGeraldton Heights\tReady for service\t-28.7357469207182\t114.664126999979\t18231.0\t24914.6\n636\t10187\tCanningvale-Avenues\tReady for service\t-32.089038646255204\t115.92517420649529\t23640.8\t25763.6\n637\t165\tCanterbury Lakes\tUnder construction\t-38.02956063324748\t144.3880579328667\t14185.8\t23552.4\n638\tAYCA-17SASX\tPaech Road Residential Subdivision\tUnder construction\t-35.0898210000208\t138.887281999993\t16660.2\t24636.2\n639\tAYCA-NLVNW\tOsprey Subdivision\tContracted\t-20.4185619453499\t118.616142056594\t19904.6\t25647.4\n640\tAYCA-189LZC\tOakwood Rise\tReady for service\t-27.8279889999839\t153.286215\t17710.2\t23440.6\n641\t17328227\tRidgeview Estate\tCheck with carrier\t-34.0858359965\t150.69247488\t18477.2\t26132.4\n642\tAYAA-GS0IM\tHarvest Lakes\tReady for service\t-32.1607065295207\t115.865516044205\t18970.6\t26072.6\n643\tAYCA-1FTKWE\tMolonglo Valley - Coombs Stage 1\tReady for service\t-35.3198709016713\t149.048650961069\t16490.2\t26693.6\n644\t17325807\tCoomera Rivers\tCheck with carrier\t-27.847922043500002\t153.366432832\t20199.0\t22503.6\n645\tAYCA-EW20T\tNorthview Estate\tReady for service\t-32.2465804568276\t150.90397766\t18841.4\t24396.6\n646\tAYAA-FOSEA\tCitiswich\tReady for service\t-27.6017188985184\t152.813996660607\t18897.0\t24010.0\n647\tAYAA-FYWH5\tMcKeachies Run\tReady for service\t-32.6945357355568\t151.545543112298\t18312.8\t22832.8\n648\t17275187\tSovereign Downs - stage 1\tCheck with carrier\t-28.238709957\t152.02181808\t21410.8\t24818.4\n649\t17349266\tHenry St Brassall\tCheck with carrier\t-27.590119012000002\t152.729560096\t17995.8\t23107.6\n650\tAYAA-F2BSM\tGlenfield West\tReady for service\t-35.1379948217273\t147.319628488454\t21326.0\t24762.2\n651\tAYCA-E2RCZ\tRees Road, Brookfield\tReady for service\t-37.7152222374757\t144.548775775167\t19011.2\t23744.4\n652\tAYCA-OKUJA\tSt Leonards Estate\tReady for service\t-31.851351726601\t115.975319584732\t20048.2\t22385.8\n653\tAYCA-EMGSR\tMistful Park\tReady for service\t-34.7307356697632\t149.707134940517\t18425.8\t24433.0\n654\tAYCA-F54UX\tBelmore Estate\tReady for service\t-34.7331738928449\t149.706596567539\t19780.6\t24463.4\n655\t10661\tTapping The Kestrels\tReady for service\t-31.71812134547654\t115.7907485961914\t25090.2\t23946.8\n656\t17359981\tYamba Waters\tCheck with carrier\t-29.4395681005\t153.343916\t18467.2\t21196.4\n657\tAYAA-F26L4\tShannon Waters Estate\tReady for service\t-37.8385911993154\t147.572827852958\t20185.8\t22242.0\n658\t17278226\tSpring Park Estate stage 5 \u0026 6\tCheck with carrier\t-36.0182999685\t147.01261392\t19724.8\t23257.8\n659\tAYAA-EOIUG\tBungarribee (Bunya)\tReady for service\t-33.7785498963346\t150.871722313876\t17558.6\t22368.0\n660\t249\tBentley Park\tReady for service\t-38.00089970213787\t145.1807633495413\t18877.8\t25901.4\n661\tAYAA-H9B8H\t95 Flynn Ave, Middleton Grange\tReady for service\t-33.9169220163184\t150.84380031936\t17117.4\t27741.8\n662\t17316398\tCurrey Street Roma\tCheck with carrier\t-26.5661309695\t148.773735008\t18270.2\t23280.2\n663\tAYCA-10XNGP\tWarner Springs\tReady for service\t-27.3090973931164\t152.955923963122\t21061.4\t23211.4\n664\t17358015\tWoodside Park Estate\tCheck with carrier\t-34.17311772\t142.219964768\t17214.0\t22374.8\n665\t10434\tJindalee-Jindalee Beach\tReady for service\t-31.650771238172503\t115.69381356239319\t14335.6\t25786.8\n666\t10633\tStirling-Roselea\tReady for service\t-31.886405556850722\t115.81453442573547\t16294.2\t23455.8\n667\tAYCA-IIZZF\tGlenhaven Park\tContracted\t-38.0777960000299\t147.067778\t14419.0\t24118.8\n668\tAYAA-ETJLH\tKurra at Newman\tReady for service\t-23.3492192099286\t119.732205600023\t23652.6\t24782.2\n669\t17399437\tKokoda DHA Redevelopment\tCheck with carrier\t-28.034862009\t153.181528992\t17457.8\t26545.6\n670\t10451\tJindalee-Eden Beach\tReady for service\t-31.650792215652338\t115.69370090961456\t14335.6\t25786.8\n671\t10652\tTapping-Ashton Heights\tReady for service\t-31.718741940597035\t115.80303311347961\t22638.4\t23863.2\n672\tAYCA-114M8I\tBaldivis East\tReady for service\t-32.3126555913481\t115.824591508574\t18264.2\t24191.6\n673\tAYCA-13WZ1H\tRiemore Downs Estate\tReady for service\t-27.8912129399838\t153.11493288\t21179.4\t23515.6\n674\t10566\tSecret Harbour\tReady for service\t-32.398073760026065\t115.74823021888733\t21008.4\t23216.4\n675\t17314100\tHilltop Estate\tCheck with carrier\t-35.162060047000004\t147.343695136\t17973.4\t24297.6\n676\t17256993\tVolker Street Dalby\tCheck with carrier\t-27.172153988\t151.24532688\t19071.0\t24627.6\n677\t10076\tBaldivis-Rivergums\tReady for service\t-32.339061428306444\t115.8249306678772\t20809.4\t25932.4\n678\tAYCA-1KG5DU\tCaddens Release\tUnder construction\t-33.7729190000145\t150.717314999989\t15421.2\t22674.8\n679\t17321970\t52 Lot Subdivision at 278-298 Kopps Road Oxenford\tCheck with carrier\t-27.9186920175\t153.298582912\t21674.2\t22267.8\n680\tAYCA-Z2NWV\tRiverside Estate\tReady for service\t-36.1396140000277\t146.94733\t20487.8\t23717.2\n681\t135\tVicinity\tReady for service\t-27.668484209033387\t152.8932789745534\t16511.2\t25944.0\n682\tAYAA-FIVKB\tSilkwood\tReady for service\t-27.62766731302\t153.257320500246\t18444.2\t23558.6\n683\tAYCA-13KY8A\tStonecutters Ridge\tUnder construction\t-33.7177115360161\t150.85353745036\t23446.2\t24948.8\n684\tAYCA-N65WN\tWilliams Landing\tReady for service\t-37.8572225911177\t144.752599787152\t22729.2\t26072.2\n685\t10501\tLakelands\tReady for service\t-32.4656455793399\t115.77149033546448\t21886.6\t25179.6\n686\tAYCA-1G91V7\tWellard Glen\tUnder construction\t-32.2718152106875\t115.847753342353\t19892.0\t22285.4\n687\tAYAA-FPPZ3\tThe Village\tReady for service\t-19.2930919827071\t146.813468464972\t14684.8\t23180.0\n688\tAYCA-RIMV7\tShoesmith Road / Gwenda Drive\tReady for service\t-27.5980661022218\t151.868618675165\t25128.2\t22924.6\n689\tAYCA-SGJJ1\tEast Newman\tContracted\t-23.3533529999134\t119.745250920015\t22006.8\t23588.2\n690\tAYCA-HZPMS\tRiverbank\tContracted\t-27.0924267420636\t152.957653706985\t19238.2\t24452.2\n691\tAYAA-F68FV\tAmbrosia Estate\tReady for service\t-38.1152450696986\t145.232253663761\t20660.4\t24841.6\n692\t17355795\t2070 Romsey Rd\tCheck with carrier\t-37.3508019845\t144.756296992\t22793.8\t22775.8\n693\t10560\tQuinns Rock-Brighton Beachside\tReady for service\t-31.654480539552317\t115.69308316335082\t18071.6\t25967.2\n694\tAYCA-1IDZGW\tDeepdale North\tContracted\t-28.7846939999871\t114.68948799999\t18533.8\t23196.0\n695\tAYCA-E1F2P\tBig Sky\tReady for service\t-27.8371893741321\t153.329235325445\t18191.0\t23565.4\n696\t10354\tMillbridge\tReady for service\t-33.314029170846915\t115.73272973299026\t16071.2\t24242.0\n697\tAYCA-1B7QW3\tHeights Durack\tReady for service\t-12.4689548107749\t130.97684745566\t21874.0\t25462.4\n698\tAYCA-EV5A6\tBotanic Ridge Estate\tReady for service\t-38.1394484973512\t145.257629874059\t19426.6\t22527.8\n699\tAYCA-1E33L6\tHeartland\tUnder construction\t-34.0243758693653\t150.770672515165\t18505.8\t25459.4\n700\t10595\tSecret Harbour\tReady for service\t-32.41516629622664\t115.76824150979519\t17785.6\t20940.2\n701\t17317230\tTarneit Gardens\tCheck with carrier\t-37.8385389815\t144.675806048\t23625.4\t23220.6\n702\tAYCA-MQ1IF\tHeron Park\tReady for service\t-32.1206153334704\t115.933853735722\t15577.4\t25051.6\n703\t319\tSamford Retirement Village\tUnder construction\t-27.377593669964934\t152.88582620064778\t22643.0\t24645.8\n704\t17364564\t42-44 WANAKA DRIVE\tCheck with carrier\t-37.714644981\t144.814979168\t18687.0\t26113.6\n705\tAYCA-M7UKE\tAlex Ave Schofields\tReady for service\t-33.7077925068541\t150.885738909094\t20109.8\t23609.4\n706\tAYCA-ES879\tVista Park\tContracted\t-34.4717682164447\t150.760773157261\t22038.6\t27233.4\n707\tAYCA-DR2XE\tLyndarum\tReady for service\t-37.6175821626794\t145.022186165777\t21717.8\t22560.8\n708\tAYCA-1T833W\tMunno Para West\tContracted\t-34.6537236956186\t138.679963581282\t20408.6\t23223.8\n709\tAYCA-1JCYUF\tThe Village at Wellard\tUnder construction\t-32.2674723303443\t115.815194636229\t18262.2\t22666.0\n710\tAYCA-GC69I\tRedbank Estate\tReady for service\t-31.1321730296903\t150.95450405738\t18335.4\t23286.4\n711\tAYAA-FPPJL\tTreendale Grand Entrance\tReady for service\t-33.2832867559444\t115.743499048217\t19436.8\t23507.4\n712\tAYCA-HAFZC\tSanctuary\tReady for service\t-32.8625539345981\t151.640409860095\t18883.8\t25015.2\n713\tAYCA-EOUA4\tHidden Valley Northern Paddock\tContracted\t-37.3829400000256\t144.997435999994\t17682.2\t26559.0\n714\tAYCA-RX20O\tForest Park Estate\tReady for service\t-23.324944363326\t150.526877499554\t18606.6\t22189.2\n715\tAYAA-I2S0G\tRiverbank\tReady for service\t-27.0937721425907\t152.957423135435\t20557.0\t23837.8\n716\tAYAA-HDH0A\t22-26 Fairway Drive, Kellyville\tReady for service\t-33.7268669549468\t150.95973745889\t19414.4\t24337.4\n717\t10607\tSecret Harbour\tReady for service\t-32.40772750003423\t115.76587110757828\t15429.8\t20625.0\n718\tAYCA-1OUD2V\tCoomera 2 Estate\tContracted\t-27.841463999984\t153.344296\t19854.0\t23673.0\n719\tAYCA-181ZYP\tPlateau Drive Estate\tReady for service\t-28.8150662776219\t153.417476227406\t21881.8\t25652.4\n720\tAYCA-NLQYO\tWest Macgregor\tReady for service\t-35.2062806440738\t149.008430046802\t22696.2\t21149.4\n721\tAYCA-K45EX\tBrook View Estate- Glen Eden\tReady for service\t-23.908229708765\t151.275568311569\t18773.0\t21306.2\n722\tAYCA-PY6D9\tLandcom - North Penrith\tUnder construction\t-33.7450150000141\t150.696213999988\t20271.0\t22852.8\n723\tAYCA-DWNT0\t165 Rowes Lane\tReady for service\t-37.4199886208213\t144.968656883999\t21920.8\t22621.6\n724\tAYCA-DSIWC\tCapestone Estate\tReady for service\t-27.2294086990467\t153.036578134434\t17595.8\t23629.2\n725\t17320784\tThe Poplars Estate\tCheck with carrier\t-33.277665957\t149.068000096\t19572.0\t26750.2\n726\tAYCA-L7A0N\tSherwins Way Estate\tReady for service\t-37.6190774358342\t145.031257513902\t18952.6\t23509.0\n727\t10656\tTapping-Ashton Heights\tReady for service\t-31.719818845799136\t115.79861283302307\t23418.0\t24360.4\n728\tAYCA-X7HVB\tHeron Park\tReady for service\t-32.1216367216858\t115.93642891207\t15454.2\t25631.8\n729\tAYCA-XMF0H\tMarsden Heights\tReady for service\t-33.3946425629997\t149.604477678932\t23601.0\t24805.2\n730\t17371587\tEatons Hill Village\tCheck with carrier\t-27.338218017\t152.96384304\t24296.0\t21724.4\n731\tAYAA-F26S6\tSienna Wood\tReady for service\t-32.1637390545126\t115.988251904\t20522.6\t23159.8\n732\t17320603\tAmaroo Park - Stage 5\tCheck with carrier\t-16.9941300335\t145.438629856\t23605.4\t21775.2\n733\t17323048\tCotton Beach Subdivision\tCheck with carrier\t-28.308743002\t153.571853888\t15607.2\t25328.6\n734\t17320331\tBeachside Residential - Stage A\tCheck with carrier\t-23.187879991\t150.790339072\t24005.4\t23059.8\n735\tAYCA-QKD53\tAppletree Grove Estate\tReady for service\t-32.9133083422074\t151.585942961201\t20054.0\t22065.0\n736\t17354070\tIluka Views\tCheck with carrier\t-36.049058993500005\t147.01605408\t19458.4\t20622.2\n737\tAYCA-1FM3ZL\tSouth East Thornlands\tUnder construction\t-27.5720465858005\t153.276578592126\t14992.2\t25286.8\n738\tAYCA-HVMVD\tBraemar Homesteads\tUnder construction\t-35.915706397652\t150.08859337385\t18500.8\t26479.4\n739\tAYCA-ZURHM\tFrizzo Road, Palmview\tReady for service\t-26.7503297059672\t153.034471680316\t21159.2\t23773.8\n740\tAYCA-HB8MK\tRenwick\tReady for service\t-34.4461002983266\t150.472202450163\t20334.8\t23893.4\n741\t17351484\tBelle Eden Estate\tCheck with carrier\t-24.870535022000002\t152.393478112\t24258.6\t26172.8\n742\tAYCA-EXVZY\tViewpoint, Huntly\tReady for service\t-36.6615597123722\t144.343671970779\t23549.0\t24646.4\n743\tAYCA-194B8B\tByford On The Scarp\tContracted\t-32.2331850000137\t116.011438\t24018.0\t22323.6\n744\tAYAA-GYS6F\tKalynda Chase Estate\tReady for service\t-19.3026909769079\t146.694942977699\t16935.0\t24812.0\n745\tAYCA-EY6AL\tLucas\tReady for service\t-37.5495318428072\t143.781291126\t24126.4\t27354.2\n746\tAYCA-1PWOJN\tERA Estate Capalaba\tContracted\t-27.5506336349747\t153.224509592182\t22140.8\t24483.4\n747\t10630\tStirling-Princeton\tReady for service\t-31.898519899315282\t115.818230509758\t21400.8\t22399.2\n748\tAYCA-DD3G0\tScenic Rise\tReady for service\t-27.9577945994649\t152.993526956843\t14536.4\t24245.0\n749\t10382\tHalls Head-Port Mandurah\tReady for service\t-32.54381648521821\t115.71380406618118\t19966.8\t21302.4\n750\tAYCA-1FDUG2\tMarsden Heights\tReady for service\t-33.3983704758768\t149.601534226053\t23601.0\t24805.2\n751\tAYCA-1OAYNC\tNelson Street Subdivision\tContracted\t-27.6162069999815\t151.940039\t20041.8\t24398.0\n752\tAYCA-1014V5\tMoree Gateway\tUnder construction\t-29.492475671184\t149.850760017586\t22431.4\t24639.2\n753\tAYAA-FPT58\tBluestone Green\tReady for service\t-37.88934150819\t144.607045054923\t16476.0\t25418.6\n754\t17332661\tColes Banksia Grove Shopping Centre\tCheck with carrier\t-31.7052610285\t115.803839168\t20131.2\t24681.0\n755\tAYCA-1AAFH9\tAvonlee Estate\tContracted\t-31.8176660000115\t115.975602\t25524.0\t23097.0\n756\t10353\tMillbridge\tReady for service\t-33.302394501737766\t115.72965525090694\t14452.6\t23208.0\n757\t10103\tBaldivis-The Ridge\tReady for service\t-32.35180098789957\t115.80986805260181\t20305.4\t23850.2\n758\tAYAA-J8QYX\tBrentwood Rise\tReady for service\t-27.6490802207415\t152.885460967255\t15703.6\t23750.8\n759\tAYCA-MLELV\tLot 502 Jane Brook Drive\tReady for service\t-31.8595792828707\t116.056652970219\t22036.6\t20917.2\n760\t10790\tBurns Beach\tReady for service\t-31.719263385089498\t115.7285964739358\t17064.4\t23357.8\n761\tAYAA-HV1XO\tHighlands\tReady for service\t-37.5688227233428\t144.903520432181\t17925.6\t21879.4\n762\tAYCA-HDLQ8\tRenwick\tReady for service\t-34.4501084045719\t150.472312610919\t20334.8\t23893.4\n763\tAYAA-F68I5\tAmbrosia Estate\tReady for service\t-38.1152450696986\t145.232253663761\t20660.4\t24841.6\n764\tAYAA-FU6UI\tWindradyne Estate\tReady for service\t-33.4000271122747\t149.54050912388\t17430.6\t23060.6\n765\t17336882\tSage Apartments\tCheck with carrier\t-28.056345023000002\t153.367508896\t22680.2\t24811.8\n766\tAYCA-IKR2K\tCalifornia Creek Estate\tReady for service\t-27.6595933676148\t153.204977135269\t18385.2\t24579.4\n767\tAYCA-1FZO3Y\tKingston Downs Estate\tContracted\t-38.2495510895261\t144.544847507348\t18860.6\t23877.6\n768\tAYAA-GE42C\tThe Ponds\tReady for service\t-33.7034999554244\t150.902785947618\t18264.8\t24267.4\n769\tAYCA-IJB9S\tSmirk Road\tReady for service\t-32.3504673154424\t115.812371738849\t19925.0\t24808.2\n770\tAYCA-N65SV\tWilliams Landing\tReady for service\t-37.8621307656859\t144.748331797565\t19564.8\t24841.6\n771\tAYCA-DUTWB\tLittle Creek\tReady for service\t-23.8967502294119\t151.215576601543\t21857.6\t24390.4\n772\tAYAA-F5EGE\tNewhaven\tReady for service\t-32.1285630000132\t115.929829\t15577.4\t25051.6\n773\t17328401\tJOHNSTON STREET\tCheck with carrier\t-31.072084746\t150.910704736\t18664.2\t26519.4\n774\tAYAA-HGK4T\tBrookhaven Rise Estate\tReady for service\t-37.5631410356327\t144.69416767765\t21542.4\t23327.4\n775\t10238\tDalyellup\tReady for service\t-33.40049720869732\t115.61841130256653\t21921.6\t26404.4\n776\t92\tEast Village\tReady for service\t-27.46672323494773\t153.09624206692058\t17414.8\t22219.0\n777\tAYCA-1VDJU8\tCutters Ridge Estate\tContracted\t-26.6277088799738\t153.03225402\t21225.8\t28631.0\n778\tON-N-HBUSH-C_Park\tCentenary Park\tReady for service\t-33.86345799888735\t151.06499433517456\t23262.6\t25249.0\n779\t17350455\tDiamond Hill Estate\tCheck with carrier\t-37.075002745\t144.185662816\t19753.2\t21396.6\n780\t10144\tBanksia Grove\tReady for service\t-31.690188411450773\t115.79452514648438\t20303.0\t24773.8\n781\tAYCA-H2A18\tWonthaggi Heartlands\tReady for service\t-38.6046202500285\t145.584599039998\t21203.4\t22343.6\n782\t10057\tAustralind-Treendale\tReady for service\t-33.28588904783222\t115.7360315322876\t21988.4\t23747.4\n783\tAYCA-1B6PNJ\tHighfields North Estate\tUnder construction\t-27.438383064857\t151.940037706812\t20598.2\t25477.8\n784\tAYCA-1FU57R\tSeascapes\tContracted\t-32.5600200911635\t115.675273969223\t19701.2\t22187.6\n785\t10091\tBaldivis-Rivergums\tReady for service\t-32.3288040654175\t115.82648634910583\t20176.4\t25461.4\n786\t17325301\tChapple Street Business Park\tCheck with carrier\t-23.842427048\t151.245870112\t20490.6\t25446.6\n787\tAYCA-ZFMAE\tYanchep Golf Estate\tReady for service\t-31.5455487881747\t115.6544456324\t15657.2\t24548.0\n788\t10194\tCanningvale-Sanctuary Waters\tReady for service\t-32.09340096992868\t115.92701017856598\t23973.0\t26180.2\n789\t17319264\tPeregian Springs\tCheck with carrier\t-26.5011980415\t153.070047008\t22768.8\t24233.8\n790\tAYCA-15LCBW\tLouisiana Road\tUnder construction\t-33.2607460000182\t151.471524999999\t23175.0\t24614.2\n791\tAYAA-F3PM8\tWarralily - Armstrong Creek\tReady for service\t-38.2365722474205\t144.372427115256\t15609.6\t23813.8\n792\t17324013\tGrassy Flat Road Diamond Creek\tCheck with carrier\t-37.6597870235\t145.155772096\t17092.6\t24506.6\n793\t10268\tDalyellup\tReady for service\t-33.4037614806216\t115.61404466629028\t21921.6\t26404.4\n794\t10516\tMadora Bay\tReady for service\t-32.48248989352084\t115.75327277183533\t23274.8\t23558.6\n795\tAYCA-Z1Y3T\tAnnadale Estate\tUnder construction\t-37.5359491183692\t144.89832195574\t16943.8\t24030.8\n796\t10394\tIluka\tReady for service\t-31.735472343316534\t115.73389984667301\t17143.8\t23661.8\n797\t10406\tIluka\tReady for service\t-31.728176271463738\t115.7293152809143\t18155.4\t23789.2\n798\tAYAA-HD37C\tPotts Hill\tReady for service\t-33.894950814314\t151.026671196638\t18245.0\t22352.4\n799\tAYCA-PU9UW\tGrey Gum Estate\tReady for service\t-33.6870753533343\t150.938508516345\t20342.0\t24900.8\n800\tAYCA-IA841\tTrumpet Wy/Cottier Dr/Lovell Pl\tContracted\t-20.4038037645468\t118.606949894255\t15508.2\t22114.4\n801\tAYCA-TAE37\tHelena Valley\tReady for service\t-31.9171237015168\t116.034292150265\t16282.4\t24617.8\n802\tAYCA-E2MNA\tEucalypt\tReady for service\t-37.6110605742831\t145.035290743683\t18390.6\t22212.0\n803\tAYCA-IAOE6\tThe Boulevard\tReady for service\t-36.3559703078836\t145.373152448696\t23341.4\t23863.0\n804\tAYCA-SN6ZO\tGoogong Township\tReady for service\t-35.4197191360926\t149.234504074279\t20986.2\t26356.0\n805\tAYCA-L8UX7\tAmbrosia Estate\tReady for service\t-38.111228466431\t145.237007178357\t20660.4\t24841.6\n806\tAYCA-N50IV\tVermont, Fernadell\tReady for service\t-33.5811619493067\t150.859265867241\t18864.0\t24392.4\n807\tAYCA-RZ1UT\tPhase 2 Single LEAP Robertson Barracks\tReady for service\t-12.4381023599208\t130.975075679746\t19879.8\t22372.8\n808\t17346283\tBellevue Hill Estate\tCheck with carrier\t-32.592495776\t149.562792736\t22020.2\t24609.0\n809\tAYCA-E0VG1\tGracewood Kellyville\tReady for service\t-33.7192705851282\t150.942280808775\t19857.8\t22076.0\n810\tAYCA-RBWFU\tGolden Bay\tReady for service\t-32.418280991871\t115.76247194129\t17785.6\t20940.2\n811\tAYCA-UFCXA\tSaddlers Ridge\tUnder construction\t-32.7612562330972\t151.53493159951\t17567.2\t22899.6\n812\tAYCA-FTSDU\tOakdene Estate\tReady for service\t-38.2384317605686\t144.54527020194\t17025.2\t24740.0\n813\tAYCA-J3YYH\t330 Bridge Inn Road\tUnder construction\t-37.6015940565486\t145.069762768022\t17557.8\t19829.2\n814\tAYCA-SS6F2\tThe Woods\tReady for service\t-37.5371740000247\t144.915389999993\t19605.2\t25543.8\n815\tAYCA-1JRAKC\tWaverley Parks Estate Willowvale\tReady for service\t-27.8269472505816\t153.280826659875\t18673.8\t23833.4\n816\tAYCA-T4NHQ\tOld Broadwater Farm\tReady for service\t-33.6679280396088\t115.310452530096\t22400.8\t24832.6\n817\tAYCA-FD0UW\tThe Grove\tReady for service\t-38.0903093305982\t145.281703115116\t24282.8\t23132.0\n818\t17331693\tHunt Club Village Shopping Centre\tCheck with carrier\t-38.100317034\t145.292970976\t16429.0\t25297.4\n819\tAYCA-K7DRA\tJohnston Stage 2\tReady for service\t-12.4878039566524\t131.00690499391\t21990.2\t22143.8\n820\tAYCA-1RC93R\tSubdivision of Lot 3333, Katherine East\tContracted\t-14.466671523834\t132.297197632446\t24071.8\t23403.8\n821\t17315991\tSteele Road Logan Village\tCheck with carrier\t-27.7712690325\t153.115872128\t23458.0\t22302.2\n822\t10545\tMurray-Murray River Country Estate\tReady for service\t-32.6095100377231\t115.85558697581291\t16446.0\t25777.2\n823\t10551\tMurray-Murray River Country Estate\tReady for service\t-32.603443925540866\t115.85722647607327\t17074.0\t26951.4\n824\tAYCA-18LJI2\tSpring Farm\tContracted\t-34.0714520000158\t150.737881999989\t21076.2\t24580.8\n825\tAYCA-1F0VFN\tFranklin Place\tReady for service\t-38.1820110000299\t146.545633\t14980.8\t24848.2\n826\t10297\tDawesville-Florida Beach\tReady for service\t-32.62276827172043\t115.62710702419281\t17451.4\t24220.4\n827\tAYCA-1FZM3S\tWaterlink Estate\tUnder construction\t-36.7205260000284\t142.211344\t21449.6\t26217.0\n828\t17327844\t85 Brooking Road Gisborne\tCheck with carrier\t-37.5056739945\t144.601026848\t19887.8\t22916.0\n829\tAYCA-JNMSX\tYanchep Golf Estate\tReady for service\t-31.5470222925299\t115.655937330626\t16552.0\t25067.6\n830\t10111\tBaldivis-Tuart Ridge\tReady for service\t-32.34506663589533\t115.81529080867767\t19152.8\t26377.6\n831\tAYCA-KEB94\tThe Village at Wellard\tReady for service\t-32.2718680080145\t115.822316290807\t19896.6\t23525.8\n832\tAYCA-13EJEY\tMaddington Rd,Alcock St- Maddington\tUnder construction\t-32.0427570000128\t115.99974\t21033.4\t22252.0\n833\tAYCA-1BUV12\tHighgrove Estate\tContracted\t-38.1132090000285\t145.329204999998\t20592.2\t20332.0\n834\tAYCA-TXGI1\tPlenty River Views\tReady for service\t-37.4982092374781\t145.109534845624\t21746.4\t23521.6\n835\tAYCA-LTU0Z\tThe Dunes\tReady for service\t-38.305781828889\t144.330300660642\t17337.0\t25067.4\n836\tAYCA-1ZAGER\tBunnings Warehouse Glendale\tContracted\t-32.9423760000163\t151.627208999998\t17147.4\t25025.0\n837\tAYCA-J3RSC\tNabilla Riverlinks\tReady for service\t-21.155124074927\t148.959075130306\t20464.0\t20715.2\n838\tAYCA-1MF8QB\tTindal Avenue, Beeliar\tUnder construction\t-32.1345160000132\t115.808323\t20326.0\t22533.8\n839\t10663\tTapping The Kestrels\tReady for service\t-31.722027374956312\t115.79255104064941\t22475.8\t24780.4\n840\t154\tWater Edge\tReady for service\t-38.07048619596557\t145.3278744938933\t18544.2\t26238.4\n841\tAYCA-JU3C3\tZuccoli\tReady for service\t-12.5038714941515\t131.007866215672\t20655.4\t24551.8\n842\t17117399\tKooringa Valley - stage 1\tCheck with carrier\t-27.5173340365\t151.901484128\t20625.0\t25132.2\n843\tAYCA-1N5EWQ\tThe Rise\tContracted\t-38.1779480000299\t146.561114\t23949.2\t25791.2\n844\tAYAA-FI1F0\tCliftleigh Residential Estate\tReady for service\t-32.7895661017861\t151.514588914151\t20922.8\t24228.8\n845\tAYCA-R8A12\tCormiston Upper\tContracted\t-41.4003750000277\t147.080731\t18932.8\t26095.0\n846\tAYCA-1J45BM\tCarinity Aged Care - Fairfield Waters\tUnder construction\t-19.3082003990128\t146.807784719803\t18294.8\t23120.0\n847\t10700\tWannanup-Port Bouvard North\tReady for service\t-32.59278599910757\t115.65177261829376\t23020.6\t22511.8\n848\t10155\tBanksia Grove\tReady for service\t-31.69622809346543\t115.80467998981476\t19649.6\t24441.8\n849\tAYCA-18GJLW\tAurora Estate\tContracted\t-37.6146450000259\t145.001675999995\t19888.4\t22687.4\n850\t17252433\tChurchfield\tCheck with carrier\t-34.102176029\t150.790938848\t21345.0\t22338.4\n851\t10374\tEglington-Allara\tReady for service\t-31.577557425927434\t115.66079020500183\t22868.8\t23219.0\n852\tAYAA-G53SW\tGlenmore Ridge\tReady for service\t-33.8009985073084\t150.680567514446\t21305.2\t24483.8\n853\tAYCA-198O38\tGlenview Estate\tUnder construction\t-27.5569409999816\t151.898128\t20729.8\t25265.4\n854\t10577\tSecret Harbour\tReady for service\t-32.41216278036248\t115.76191484928131\t17785.6\t20940.2\n855\t10216\tClarkson-Somerly\tReady for service\t-31.692362057588973\t115.72820484638214\t21174.0\t24990.6\n856\tAYCA-WDCA1\tThe Ponds\tReady for service\t-33.7064140000126\t150.898332999986\t20083.6\t23585.0\n857\tAYAA-ESVR8\tQuarters\tReady for service\t-38.0985862731359\t145.253535845232\t18951.2\t23685.8\n858\t10395\tIluka\tReady for service\t-31.733395875766995\t115.73339223861694\t19410.4\t24236.8\n859\t10004\tAveley-Vale\tReady for service\t-31.79377591518981\t115.98265528678894\t23497.2\t21903.4\n860\tAYCA-IKFNQ\tCaddens Road, Kingswood\tReady for service\t-33.7749321775366\t150.732427925935\t17598.4\t21393.4\n861\t10613\tSecret Harbour-Anstey Park\tReady for service\t-32.405161818926416\t115.7690455019474\t16931.6\t22374.6\n862\tAYCA-1FBKCC\tVantage\tUnder construction\t-32.7242332800109\t152.11326132\t20325.2\t24213.8\n863\t10118\tCarramar-Banksia Grove\tReady for service\t-31.70006751072969\t115.79432129859924\t22056.2\t25031.6\n864\tAYCA-13X8E1\tRiemore Downs Estate\tUnder construction\t-27.8880325616494\t153.111054854636\t21179.4\t23515.6\n865\t10544\tMurray-Murray River Country Estate\tReady for service\t-32.606426477329705\t115.85716210305691\t16446.0\t25777.2\n866\tAYCA-RJUQM\tGoogong Township\tReady for service\t-35.4144397061314\t149.235661448984\t20986.2\t26356.0\n867\tAYCA-W4ML9\tHeights Durack\tReady for service\t-12.4702565470322\t130.979350484024\t22860.2\t24013.6\n868\tAYCA-1D96Q5\tCasey 4\tReady for service\t-35.1768342022029\t149.09373520338\t20885.8\t22303.0\n869\tAYAA-FPRLN\tBluestone Green\tReady for service\t-37.8955127533772\t144.60797247417\t16476.0\t25418.6\n870\tAYCA-1IP7M3\tHunt Club Estate\tContracted\t-38.1112793229141\t145.300113062036\t22572.0\t23986.8\n871\t17319025\tIsaac Views\tCheck with carrier\t-21.995396002\t148.066696096\t17956.2\t24375.4\n872\tAYCA-F9XI8\tToolern Waters\tContracted\t-37.7167718217348\t144.561908358791\t18429.0\t22839.0\n873\t79\tWildflower Ridge\tReady for service\t-27.690741712392327\t152.9201320841761\t26086.8\t22307.6\n874\t10312\tDawesville-Dawesville Ridge\tReady for service\t-32.6230624077761\t115.63646256923676\t16009.6\t25280.2\n875\tAYAA-GHEC9\tProvidence Estate\tReady for service\t-37.6239441054423\t144.884572459401\t20883.8\t24136.8\n876\tAYAA-GGXGS\tProvidence Estate\tReady for service\t-37.6249702235692\t144.892266446432\t22284.6\t23892.2\n877\t10040\tAveley-Vale\tReady for service\t-31.77101942381642\t115.98254799842834\t24256.0\t23918.2\n878\tAYCA-HZYR1\tArbourlea\tReady for service\t-38.0828084141228\t145.326774694117\t18511.4\t24406.0\n879\t17334900\tMinto Renewal Project\tCheck with carrier\t-34.036637041\t150.851014912\t16671.2\t23823.6\n880\tAYCA-ICLSQ\tVillage Square Estate\tReady for service\t-33.9539837867809\t150.85348955162\t22932.6\t23873.8\n881\tAYCA-1DG0KG\tWolstenholme Drive final stage\tReady for service\t-42.7806744458159\t147.545286116511\t20857.4\t23170.4\n882\tAYCA-F191C\tEdmondson Park South P1\tReady for service\t-33.9813315071457\t150.854876963875\t23144.8\t24256.0\n883\t10603\tSecret Harbour\tReady for service\t-32.40815070727752\t115.75285837054253\t18912.6\t20619.4\n884\t17340486\tWest Park Industrial Estate\tCheck with carrier\t-37.8022170065\t144.740836992\t24790.4\t23069.2\n885\tAYAA-H9HQB\tParagon Estate\tReady for service\t-37.9105173700591\t144.760691293499\t22562.4\t24608.6\n886\tAYAA-FPSHQ\tBridge Inn Rise Estate\tReady for service\t-37.6010320000267\t145.119855999996\t18800.4\t25852.6\n887\t194\tAvondale Heights \tReady for service\t-37.76578967741349\t144.86028228759304\t19376.4\t22712.6\n888\tAYCA-NLQCQ\tThe Glades\tReady for service\t-34.7875775698901\t138.59904494578\t22760.0\t24922.2\n889\tAYCA-PT8T9\tGrey Gum Estate\tReady for service\t-33.6871960958341\t150.938493459122\t20342.0\t24900.8\n890\tAYCA-FDMGP\tSpringlands Estate\tReady for service\t-37.7128286267871\t144.723910254727\t16978.4\t24745.0\n891\tAYAA-GR8X0\tElizabeth Hills\tReady for service\t-33.8996909239624\t150.843414378787\t20516.4\t25692.0\n892\tAYCA-DLVJU\tSettlers Run Estate\tReady for service\t-38.1348295175072\t145.251979560089\t19426.6\t22527.8\n893\tAYAA-FEBBY\tCarlingford Estate\tReady for service\t-37.6627376909728\t144.987274126825\t21050.6\t25338.2\n894\tAYCA-VPX4J\tKirkham Rise\tReady for service\t-34.022790678117\t150.705375039098\t19554.8\t27735.0\n895\tAYCA-KD23I\tRenaissance Rise\tReady for service\t-37.6023091045257\t145.081302875535\t18714.2\t21452.8\n896\tACPV\tPalmview\tReady for service\t-26.73523804255589\t153.06353615169382\t21010.8\t24742.2\n897\tAYCA-G8KWU\tSpring Farm\tReady for service\t-34.0658369930352\t150.735698234826\t20489.8\t26185.6\n898\tAYCA-I9H4I\tOsprey Subdivision\tReady for service\t-20.4157163291041\t118.614106529595\t19904.6\t25647.4\n899\tAYAA-GNWAI\tEstuary\tReady for service\t-38.2012828124497\t144.455436423453\t17837.2\t20761.8\n900\tAYAA-FXOCV\tTuart Ridge\tReady for service\t-32.34050648256\t115.813532501132\t19003.2\t25307.8\n901\tAYCA-1VT8Y4\tRobinson Park\tContracted\t-32.0839373972776\t115.995133701198\t16227.0\t24652.0\n902\t17341648\tDiamond Crescent\tCheck with carrier\t-33.895387894500004\t150.8808672\t18973.0\t21058.0\n903\tAYCA-WHHP1\tThe Vines\tReady for service\t-32.8286091895677\t151.323950914147\t15438.4\t24190.6\n904\t172\tGemstone Rise\tReady for service\t-27.572448933673176\t151.9103253116011\t19085.0\t24623.2\n905\tAYCA-LJ5ZI\tMcKeachies Run\tReady for service\t-32.6974762147736\t151.538040753666\t18312.8\t22832.8\n906\t10475\tLakelands\tReady for service\t-32.46648649795694\t115.76568603515625\t21679.6\t27125.0\n907\tAYAA-FUGCA\tSaratoga Estate\tReady for service\t-37.9066893056224\t144.71646045913\t22788.4\t23839.4\n908\tAYCA-17GFGC\tQuarters\tReady for service\t-38.0967720000281\t145.249468999997\t19670.6\t23719.0\n909\t10220\tClarkson-Somerly\tReady for service\t-31.686396087611623\t115.73165953159332\t18085.4\t23107.0\n910\tAYCA-11AP93\tSomerset Rise\tReady for service\t-36.0236020070927\t146.984624526909\t19751.4\t25368.0\n911\tAYCA-U7W4J\tLakeland Development (VR Land)\tContracted\t-38.076076000029\t145.434943999999\t16354.8\t22748.0\n912\tAYAA-G9SX5\tSussex Rise\tReady for service\t-35.1593660247606\t150.581802283005\t15644.8\t23201.6\n913\t10214\tClarkson-Somerly\tReady for service\t-31.683762174712466\t115.7305920124054\t15798.8\t21451.8\n914\tAYCA-FKVUE\tKialla Lakes Estate\tReady for service\t-36.4323583231229\t145.402353581587\t21039.8\t23906.6\n915\t10669\tWandi-Honeywood\tReady for service\t-32.19070947854437\t115.86132287979126\t18215.6\t22664.6\n916\tAYCA-1IFF61\tGlebe Hill\tContracted\t-42.8837890000249\t147.430894\t18238.4\t23306.8\n917\tAYCA-189CVK\tHeron Park\tReady for service\t-32.1181321904035\t115.936707412129\t21299.4\t22939.0\n918\t17399469\tHolmesglen Private Hospital\tCheck with carrier\t-37.935096993500004\t145.050038016\t20554.4\t24837.4\n919\tAYCA-GDD50\tPennyroyal Development\tReady for service\t-37.6577821951206\t144.578526996617\t18974.2\t25301.6\n920\tAYCA-16LJ11\tNorfolk Estates Pty Ltd\tUnder construction\t-27.8330656161685\t153.326696189634\t21780.0\t23144.2\n921\tAYCA-FCJYS\tReid Street Subdivision\tReady for service\t-26.5598998844113\t148.779103252302\t20965.0\t21443.6\n922\tAYCA-J6QDT\tSanctuary\tReady for service\t-32.8700009812975\t151.644906313186\t18883.8\t25015.2\n923\tAYCA-JJ268\tBungarribee (Bunya)\tReady for service\t-33.7754688239224\t150.868040389349\t17623.0\t23258.6\n924\t17147925\tMallia Subdivision\tCheck with carrier\t-37.4063609625\t144.963704896\t23570.6\t23414.2\n925\t17289902\tDales Rd\tCheck with carrier\t-38.373669001\t142.518738976\t22638.8\t22480.6\n926\tAYCA-EEDPT\tNewleaf Bonnyrigg Development\tReady for service\t-33.8885391409453\t150.895881918938\t17522.0\t25382.8\n927\t17328894\tIndooroopilly Shopping Centre\tCheck with carrier\t-27.49784301\t152.973822976\t21648.6\t20344.6\n928\tAYCA-G6YEX\tEast Newman\tReady for service\t-23.3565346916548\t119.748159268223\t17015.0\t23401.8\n929\tAYCA-LDBQ3\tNabilla Riverlinks\tReady for service\t-21.1565352551378\t148.95891731688\t20464.0\t20715.2\n930\t17326917\tJoondalup Business Park South\tCheck with carrier\t-31.7572630115\t115.768271872\t19650.2\t25804.4\n931\tAYCA-ZTGYS\tAurora Estate\tReady for service\t-37.6164610000256\t145.000503999995\t19888.4\t22687.4\n932\tAYAA-FPPUI\tThe Ponds\tReady for service\t-33.706787340221\t150.902998287707\t18264.8\t24267.4\n933\tAYCA-1F6W0L\tStage 1\tReady for service\t-27.2346020099783\t152.98472448\t20689.2\t23054.4\n934\t17332519\tKalimna Park - stage 12\tCheck with carrier\t-27.4353350435\t151.938828\t20598.2\t25477.8\n935\t239\tRipley Valley\tReady for service\t-27.668471218456073\t152.78388176915914\t22927.0\t22871.2\n936\tAYAA-GHIU2\tProvidence Estate\tReady for service\t-37.6221723380054\t144.891117820951\t20883.8\t24136.8\n937\tAYAA-F3CHZ\tNewhaven\tReady for service\t-32.1331908950702\t115.930736211416\t16257.2\t25647.2\n938\tAYCA-EZXP3\tHidden Waters\tReady for service\t-32.8837089157827\t151.639558370114\t18883.8\t25015.2\n939\tAYCA-KBSOQ\tHuntington Rise\tReady for service\t-27.9184949999847\t153.287132\t20267.4\t21354.4\n940\t10218\tClarkson-Somerly\tReady for service\t-31.685108811962056\t115.72906851768494\t15798.8\t21451.8\n941\tAYCA-JY3KC\tOakdene Estate\tReady for service\t-38.238505748673\t144.545255663843\t17025.2\t24740.0\n942\tAYCA-1ED0W6\tElderslie\tUnder construction\t-34.0564940000155\t150.722491999989\t17269.0\t23621.6\n943\t10583\tSecret Harbour\tReady for service\t-32.416944979494694\t115.75388431549072\t18912.6\t20619.4\n944\t17359417\t1550 Pascoe Vale Road Coolaroo\tCheck with carrier\t-37.645206193\t144.933915968\t18803.4\t25872.6\n945\tAYAA-G0M8Z\tSouth at Seaford Meadows\tReady for service\t-35.1712591559897\t138.484664684411\t25272.6\t23429.2\n946\t17341536\tWyreema Estate\tCheck with carrier\t-27.654777992\t151.869831136\t19476.8\t22420.8\n947\tAYCA-EWZHS\tSouth at Seaford Meadows\tReady for service\t-35.1725839127242\t138.484732855314\t25272.6\t23429.2\n948\tAYAA-F8LET\tOrmeau Ridge\tReady for service\t-27.8018459693702\t153.25226694043\t19521.6\t21598.0\n949\tAYCA-VHOKB\tAurora Estate\tReady for service\t-37.6192571596227\t144.996540243027\t18145.8\t23570.0\n950\t17359833\t75-81 Bremen Street Hemmant\tCheck with carrier\t-27.455191833500002\t153.139708768\t22333.4\t20903.2\n951\tAYAA-HJXUR\t165 Rowes Lane\tReady for service\t-37.4196941109529\t144.965936354376\t20098.0\t21833.4\n952\tAYCA-Q23DQ\tStrzelecki Views Estate\tReady for service\t-38.2064062373483\t146.165903487972\t18569.2\t24658.4\n953\tAYCA-DIOLX\tOcean Club Residential Community\tReady for service\t-31.5666562701162\t152.831779795737\t20651.2\t25095.0\n954\t17335051\tSt Eyre Estate\tCheck with carrier\t-32.5007980285\t137.733543008\t23841.8\t25734.8\n955\tAYCA-KJ1FN\tThe Parc\tReady for service\t-33.719577830225\t150.950595156373\t19643.0\t21717.4\n956\t17348299\tBeaumount Park\tCheck with carrier\t-36.047103303\t147.020243776\t19458.4\t20622.2\n957\t17355577\tFersfield Road \u0026 Willowbank Road Gisborne\tCheck with carrier\t-37.4967479665\t144.592994176\t20022.8\t23103.4\n958\t1143\tProposed Development Site\tReady for service\t-37.8177849378873\t144.934485623438\t19676.2\t25104.4\n959\tAYCA-1FMEEC\tBarlow Estate\tContracted\t-27.5289549999814\t151.91544\t17593.4\t21483.8\n960\tAYCA-1940S3\tAlarah Estate\tUnder construction\t-38.1107970000281\t145.248546999997\t23039.2\t25207.8\n961\tAYAA-FKLI6\tHalcyon Landing Bli Bli\tReady for service\t-26.6174680398293\t153.03895856369\t20896.4\t27981.4\n962\t10594\tSecret Harbour\tReady for service\t-32.41548838997459\t115.76508186757565\t17785.6\t20940.2\n963\tAYCA-10P92J\tSt Anthony\u0027s - Secret Harbour\tUnder construction\t-32.3999940000145\t115.762005\t19191.2\t20236.2\n964\tAYCA-139S5J\tGolden Bay\tReady for service\t-32.4205202560757\t115.755524712345\t18912.6\t20619.4\n965\tAYCA-1HPMUJ\tPeregian Breeze\tUnder construction\t-26.4864609999726\t153.078679\t22579.6\t24757.6\n966\tAYCA-1NJD6X\tAspiri\tUnder construction\t-32.1445270000132\t115.916003\t21514.4\t26428.6\n967\t10629\tStirling-Princeton\tReady for service\t-31.897763880376377\t115.81708252429962\t21400.8\t22399.2\n968\tAYCA-KYBBZ\tSaratoga Estate\tReady for service\t-37.9077956180254\t144.718687648885\t20439.4\t23376.4\n969\t89\tVictoria Harbour\tReady for service\t-37.8193148648327\t144.9425101994443\t21579.8\t23064.8\n970\t10478\tLakelands\tReady for service\t-32.46939213628661\t115.76628684997559\t23219.4\t26541.0\n971\tAYCA-ZDHI7\tAspiri\tReady for service\t-32.141551422264\t115.917500191323\t21514.4\t26428.6\n972\tAYCA-JBYRH\tKirkham Rise\tReady for service\t-34.0241027745067\t150.707736011559\t19230.4\t28337.4\n973\tAYCA-IUBNF\tLots 156-158 \u0026 169 Landsdale\tReady for service\t-31.8174764837792\t115.873276630402\t23435.4\t23866.8\n974\t10332\tDudley Park-Mariner\u0027s Cove\tReady for service\t-32.55575737027896\t115.73980003595352\t20489.2\t23017.0\n975\t17231671\tLots 639-642 Horus Bend Bibra Lake - Stage 3\tCheck with carrier\t-32.098437995\t115.814032992\t16557.4\t23593.2\n976\tAYCA-HRACE\tGreenhills Beach Residential\tReady for service\t-34.0341041256818\t151.161808804036\t18744.8\t24791.6\n977\t17322671\tAlbert Park Stage 5\tCheck with carrier\t-37.5462279925\t143.926175168\t16252.8\t23810.2\n978\tAYCA-O1HNI\tAspiri\tReady for service\t-32.1403086957267\t115.912551774299\t21514.4\t26428.6\n979\t17340366\tRed Ochre\tCheck with carrier\t-31.478602007000003\t152.872635008\t22614.0\t24360.4\n980\tAYCA-SJ3BD\tThe Village at Wellard\tReady for service\t-32.2738274722911\t115.824519064651\t19896.6\t23525.8\n981\tAYCA-E2RAD\tRees Road, Brookfield\tReady for service\t-37.7097882370117\t144.556781497763\t17705.4\t23420.4\n982\t10113\tBaldivis-Tuart Ridge\tReady for service\t-32.339206464431314\t115.81399261951447\t19003.2\t25307.8\n983\tAYCA-KYW9J\tEstella\tReady for service\t-35.0802781835745\t147.351224224319\t21554.2\t26432.4\n984\t10509\tLakelands\tReady for service\t-32.469058142569\t115.778067111969\t21399.8\t25520.2\n985\tAYAA-G2694\tThe Ponds\tReady for service\t-33.7037820097858\t150.906557791334\t18396.8\t25013.0\n986\tAYCA-10NFWS\tTwin Waters Estate\tReady for service\t-34.9143320000157\t150.614387999986\t21031.4\t22560.2\n987\tAYCA-PCUQ6\tJohnston Stage 2\tReady for service\t-12.4880008665144\t131.008389200094\t21545.0\t23224.2\n988\tAYCA-15R7EA\tByford West\tReady for service\t-32.2256277021986\t115.976886020093\t21172.8\t20714.0\n989\tAYCA-11QH4G\tThornton East Estate\tReady for service\t-32.7652340000161\t151.649705999999\t19925.2\t25320.0\n990\tAYAA-G2EO2\tEagle Rise Estate\tReady for service\t-27.4682997975088\t152.562973981554\t20004.8\t25265.2\n991\tAYCA-KVTM7\tGracemere Greens Estate\tReady for service\t-23.4647783600981\t150.467308434216\t20163.4\t22397.4\n992\t10295\tDawesville-Port Bouvard South\tReady for service\t-32.61153146605253\t115.63187062740326\t20947.6\t25747.6\n993\t156\tGrand Central Shopping Centre\tReady for service\t-27.5603446110652\t151.94767092229293\t19013.8\t24226.2\n994\t10309\tDawesville-Dawesville Ridge\tReady for service\t-32.62408349325638\t115.63877463340759\t16009.6\t25280.2\n995\tAYCA-ES8DH\tHillTop (Bennis)\tReady for service\t-34.4376222076966\t150.848479023084\t26392.0\t22415.4\n996\tAYCA-MNFP2\tBrookford\tContracted\t-38.1144916738184\t145.314933876048\t15917.2\t22208.0\n997\tAYCA-YGR8M\tLearmonth Street Subdivision\tReady for service\t-37.5588375241757\t143.810931456638\t20725.0\t24184.4\n998\t17376001\tSpringview Estate\tCheck with carrier\t-37.8073679985\t140.750435008\t15611.4\t23795.6\n999\tON-V-CNL-FUR\tFurlong Road\tReady for service\t-37.75588456672174\t144.79012191295624\t17593.2\t22607.4\n1000\t17324603\tMoonee Ridge Estate\tCheck with carrier\t-30.208320005\t153.15106896\t18112.2\t23549.2\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_-1947667127",
+ "id": "20220727-124935_472196919",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:42+0000",
+ "dateFinished": "2022-08-16T04:47:42+0000",
+ "status": "FINISHED"
+ },
+ {
+ "text": "%python\nfor value in range(len(new_site_df.LOC_UID)):\n if new_site_df.LOC_UID[value] \u003d\u003d\u002717335038\u0027:\n new_site_df.DEVELOPMENT_NAME[value]\u003d\u0027Proposed Telstra Residential Site I\u0027\n if new_site_df.LOC_UID[value] \u003d\u003d\u002717322856\u0027: \n new_site_df.DEVELOPMENT_NAME[value]\u003d\u0027Proposed Telstra Residential Site II\u0027",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "language": "sql",
+ "editOnDblClick": false
+ },
+ "colWidth": 12.0,
+ "editorMode": "ace/mode/undefined",
+ "fontSize": 9.0,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": []
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1659336813575_905392405",
+ "id": "paragraph_1659336813575_905392405",
+ "dateCreated": "2022-08-01T06:53:33+0000",
+ "dateStarted": "2022-08-16T04:47:44+0000",
+ "dateFinished": "2022-08-16T04:47:45+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Save NEW DEVELOPMENT ROLLOUT dataframe in a DB table",
+ "text": "%python\ncr \u003d oml.cursor()\n\ntry:\n\n oml_df2 \u003d oml.create(new_site_df, table\u003d\u0027ESTIMATED_COST_REVENUE\u0027)\n print(\"Table Created !!\")\n \nexcept Exception as e:\n print(\"Exception occured and handled:\",e)\n \n query \u003d \"TRUNCATE table ESTIMATED_COST_REVENUE\"\n cr.execute(query)\n \n try:\n oml_df2 \u003d oml.create(new_site_df, table\u003d\u0027ESTIMATED_COST_REVENUE\u0027, append\u003dTrue)\n print(\"Records Updated !!\")\n \n except Exception as a:\n \n print(\"Exception occured and handled:\", a)\n oml_df2 \u003d oml.create(new_site_df, table\u003d\u0027ESTIMATED_COST_REVENUE\u0027)\n print(\"Records Updated !!\")\n \nfinally:\n z.show(oml_df2)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {
+ "1": {
+ "graph": {
+ "mode": "table",
+ "height": 300.0,
+ "optionOpen": false,
+ "setting": {
+ "table": {
+ "tableGridState": {},
+ "tableColumnTypeState": {
+ "names": {
+ "LOC_UID": "number",
+ "DEVELOPMENT_ROLLOUT_ID": "number",
+ "DEVELOPMENT_NAME": "string",
+ "STATUS": "string",
+ "LATITUDE": "number",
+ "LONGITUDE": "number",
+ "TOTAL_COST": "number",
+ "TOTAL_REVENUE": "number"
+ },
+ "updated": false
+ },
+ "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
+ "tableOptionValue": {
+ "useFilter": false,
+ "showPagination": false,
+ "showAggregationFooter": false
+ },
+ "updated": false,
+ "initialized": false
+ }
+ },
+ "commonSetting": {}
+ }
+ }
+ },
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TEXT",
+ "data": "Exception occured and handled: ORA-00955: name is already used by an existing object\nRecords Updated !!\n"
+ },
+ {
+ "type": "TABLE",
+ "data": "DEVELOPMENT_ROLLOUT_ID\tLOC_UID\tDEVELOPMENT_NAME\tSTATUS\tLATITUDE\tLONGITUDE\tTOTAL_COST\tTOTAL_REVENUE\n32\t18\tTrinity\tReady for service\t-31.63125\t115.6923\t19744.4\t21161.2\n1546\tAYCA-1UWJH8\tSignature Circle\tContracted\t-32.4867830000149\t115.7574\t23959.2\t24237.0\n1267\tAYCA-1FPCFZ\tCassia Glades\tContracted\t-32.2511040000138\t115.8128\t20210.6\t22620.4\n1593\tAYCA-RJYDZ\tRiva\tReady for service\t-32.1414750000132\t115.9304\t22557.4\t25392.0\n122\t21\tEvergreen Waters\tReady for service\t-36.71591\t144.2837\t19934.6\t22542.0\n1\t8\tMandalay\tReady for service\t-37.46798\t144.9582\t18440.0\t27444.2\n3195\tAYCA-VBZ9H\tDux Creek\tReady for service\t-27.0521669999775\t153.1421\t18521.6\t22463.2\n417\t17320876\tWokarena Road\tCheck with carrier\t-28.660908965\t114.62454\t18123.4\t25630.0\n4013\t17363240\tBrooKfield Estate\tCheck with carrier\t-33.969854002\t115.086368\t23737.8\t22491.2\n2\t23\tBrighton\tReady for service\t-31.65684\t115.70471\t19166.0\t23435.4\n1362\tAYCA-1DN2X0\tOsprey Waters, Erskine\tUnder construction\t-32.5521970000152\t115.713246\t20871.0\t21765.8\n3972\tAYCA-1OGOO4\tCatalina\tContracted\t-31.6958010000107\t115.726315\t18600.6\t24092.6\n2859\tAYCA-193QD1\tCatalina\tReady for service\t-31.6966230000107\t115.727104\t21174.0\t24990.6\n2224\tAYCA-1C3HQA\tTuckey Cove - Newport Drive\tUnder construction\t-32.5541620000152\t115.74433\t20489.2\t23017.0\n2719\tAYCA-P92PY\tTuckey Cove - Newport Drive\tReady for service\t-32.5504930000152\t115.746652\t20920.2\t22307.0\n3769\tAYCA-1PRCEM\tGolden Bay\tContracted\t-32.4169310000145\t115.75387\t18912.6\t20619.4\n1415\tAYCA-YU2JJ\tSignature Circle\tReady for service\t-32.492806000015\t115.75635\t19396.0\t25250.0\n1814\tAYCA-14Y4CC\tMeadow Springs Estate\tContracted\t-32.4920180000149\t115.759322\t19893.4\t25693.0\n1004\tAYCA-1F9K7F\tCraigie High School Site\tReady for service\t-31.7868410000112\t115.761012\t23957.0\t25987.4\n963\tAYCA-10P92J\tSt Anthony\u0027s - Secret Harbour\tUnder construction\t-32.3999940000145\t115.762005\t19191.2\t20236.2\n1595\tAYCA-XRBHQ\tMeadow Springs Estate\tReady for service\t-32.488744000015\t115.762963\t21005.2\t26093.4\n3723\tAYAA-GB2HI\tPort Coogee\tReady for service\t-32.1026020000125\t115.763216\t20309.8\t22519.4\n3385\tAYCA-1EWE22\tMeadow Springs Estate\tUnder construction\t-32.493798000015\t115.764322\t23673.2\t26007.0\n1761\tAYCA-1EWJJA\tMeadow Springs Estate\tUnder construction\t-32.4915150000149\t115.764635\t21005.2\t26093.4\n1304\tAYCA-188FVN\tThe Vista, Karnup\tUnder construction\t-32.4428660000147\t115.765544\t26216.6\t25232.2\n1758\tAYCA-1AHPEU\tThe Vista, Karnup\tUnder construction\t-32.4433240000148\t115.767552\t26216.6\t25232.2\n2819\tAYCA-1RN60F\t14-17 Ocean Road, Coogee\tContracted\t-32.104847000013\t115.769803\t21200.0\t24799.2\n1773\tAYCA-1YQDLT\tKim Beazley School, White Gum Valley\tContracted\t-32.0571990000127\t115.770257\t23395.4\t25346.4\n2140\tAYCA-1JG1HX\tThe Vista, Karnup\tContracted\t-32.4441900000147\t115.770606\t26216.6\t25232.2\n2599\tAYCA-1IUZYZ\tEliza Ponds\tUnder construction\t-32.105408000013\t115.774789\t18390.2\t25263.6\n3800\tAYCA-1N5VLF\tLot 95 Balcatta Road Gwelup WA\tUnder construction\t-31.8589670000117\t115.792932\t19202.4\t23924.2\n1371\tAYCA-1GRHN6\tWest Baldivis\tContracted\t-32.3325580000142\t115.799226\t16896.4\t22963.8\n838\tAYCA-1MF8QB\tTindal Avenue, Beeliar\tUnder construction\t-32.1345160000132\t115.808323\t20326.0\t22533.8\n217\t58\tSpires\tReady for service\t-32.30285\t115.80864\t19651.4\t24418.2\n2013\tAYCA-1MFJ2M\tTindal Avenue, Beeliar\tContracted\t-32.1360680000132\t115.810587\t17007.4\t23124.2\n2579\tAYCA-VWB8C\tLot 18, Sixty Eight Road\tReady for service\t-32.3570010000144\t115.817659\t15639.0\t23968.4\n2451\tAYCA-ZOCAL\tThe Village at Wellard\tReady for service\t-32.2634630000139\t115.819083\t21051.4\t23318.0\n3408\tAYCA-1BKH79\tBaldivis East\tReady for service\t-32.3145940000141\t115.823078\t18231.8\t24615.2\n2543\tAYCA-TAA74\tThe Village at Wellard\tReady for service\t-32.2717200000139\t115.827752\t21180.6\t22913.8\n2149\tAYCA-1SDRN6\tSixty Eight Rd, Baldivis\tContracted\t-32.3598370000144\t115.829307\t14866.8\t25537.8\n3597\tAYCA-MVLM2\tHeritage Park\tContracted\t-32.3442580000142\t115.829825\t19876.6\t25828.8\n1906\tAYCA-1DC5RJ\tLots 81 \u0026 82 Cooper Street, Madeley\tUnder construction\t-31.8025300000114\t115.831094\t20247.6\t25197.8\n1551\tAYCA-1GF9E3\tRavenswood Green\tContracted\t-32.5822050000155\t115.837302\t22034.4\t23237.0\n3834\tAYCA-15YSO5\tWellard Development\tReady for service\t-32.2665840000139\t115.839136\t21283.6\t21607.0\n3643\tAYCA-188498\tLakeside\tReady for service\t-32.1310030000131\t115.844498\t19558.8\t23890.8\n1324\tAYCA-18F2LB\tPerth Waterfront\tContracted\t-31.9586030000123\t115.854832\t17047.2\t25348.4\n3999\tAYCA-RFT35\tCorimbia\tReady for service\t-31.7991000000114\t115.870569\t16941.6\t22479.8\n1453\tAYCA-1JFTOW\tCorimbia\tUnder construction\t-31.7999190000114\t115.871621\t15444.6\t21769.4\n2454\tAYCA-1D1P5I\tCalleya\tContracted\t-32.1228100000131\t115.874896\t20731.8\t27632.6\n3049\tAYCA-YN1RD\tNewhaven\tReady for service\t-32.1338570000132\t115.912205\t16518.2\t24730.2\n448\tAYCA-19M72I\tLot 9000 Baile Road Canning Vale\tContracted\t-32.0656820000128\t115.913695\t22424.6\t24840.0\n1531\tAYCA-J9ZDK\tNewhaven\tReady for service\t-32.1311190000132\t115.914474\t16301.6\t25954.0\n966\tAYCA-1NJD6X\tAspiri\tUnder construction\t-32.1445270000132\t115.916003\t21514.4\t26428.6\n3420\tAYCA-11AE64\tRiva\tUnder construction\t-32.1361120000132\t115.924428\t16518.2\t24730.2\n772\tAYAA-F5EGE\tNewhaven\tReady for service\t-32.1285630000132\t115.929829\t15577.4\t25051.6\n3851\t17330114\tST - Gateway Blvd\tCheck with carrier\t-32.0681009735\t115.931484\t20744.8\t23901.8\n1036\tAYCA-1KPYI3\tHeron Park\tContracted\t-32.1227920000131\t115.938237\t15811.4\t23661.0\n1908\tAYCA-181VLT\tPark Ave Estate, Southern River\tReady for service\t-32.093388000013\t115.945963\t22512.8\t25620.4\n2782\tAYCA-1TZQ6F\tBletchley Park\tContracted\t-32.1019310000131\t115.956216\t24470.0\t21685.0\n1988\tAYCA-1KKL4H\tThe Avenue\tContracted\t-32.1803790000135\t115.964377\t21658.2\t24608.0\n3664\tAYCA-1CGLDZ\tWhiteman Edge\tReady for service\t-31.8254780000115\t115.965107\t23542.8\t23965.2\n3957\tAYCA-1FLB3A\tGolden Vines\tContracted\t-31.8479600000117\t115.971415\t20048.2\t22385.8\n2627\tAYCA-1QCV57\tLot 566 Arthur Street, Dayton\tContracted\t-31.8517560000117\t115.972116\t20048.2\t22385.8\n2209\tAYCA-TAJ7V\tLots 1-2 Rowley Rd Darling Downs Stage\tUnder construction\t-32.1797260000135\t115.975226\t20762.2\t22838.4\n755\tAYCA-1AAFH9\tAvonlee Estate\tContracted\t-31.8176660000115\t115.975602\t25524.0\t23097.0\n2569\tAYCA-1AVH72\tSienna Wood\tContracted\t-32.1648410000134\t115.981008\t20221.2\t23670.2\n2156\tAYCA-16XZPT\tLot 9000 Hesketh Av Seville Grove\tReady for service\t-32.1321760000132\t115.985698\t20872.0\t23423.0\n2832\tAYCA-1LBNM0\tLot 9000 Hesketh Av Seville Grove\tUnder construction\t-32.1322630000132\t115.985819\t20872.0\t23423.0\n1446\tAYCA-1O095S\tLot 9500 Briggs Road, Byford WA\tContracted\t-32.2112010000137\t115.987348\t19333.4\t23113.2\n2688\tAYCA-105ILR\tVale\tReady for service\t-31.7687730000112\t115.991302\t21358.8\t25124.6\n2749\tAYCA-11I0FI\tSpringtime Xavier\tUnder construction\t-32.1559900000134\t115.991799\t20522.6\t23159.8\n1732\tAYCA-1CFQQH\tSpringtime Xavier\tReady for service\t-32.1580180000133\t115.99269\t20522.6\t23159.8\n3390\tAYCA-1LFEPM\tVale\tContracted\t-31.7704340000112\t115.993758\t21358.8\t25124.6\n3953\tAYCA-1N3RDP\tVale\tContracted\t-31.7870380000113\t115.995115\t22190.6\t24433.2\n2376\tAYCA-1548HD\tVale\tReady for service\t-31.7899880000114\t115.996793\t22190.6\t24433.2\n461\tAYCA-1GCO65\tWhitby\tContracted\t-32.279590000014\t115.997557\t18326.6\t24411.4\n3214\tAYCA-1964RT\tVale\tReady for service\t-31.7893110000113\t115.997912\t22190.6\t24433.2\n832\tAYCA-13EJEY\tMaddington Rd,Alcock St- Maddington\tUnder construction\t-32.0427570000128\t115.99974\t21033.4\t22252.0\n1302\tAYCA-1G8QXW\tWhitby\tContracted\t-32.279737000014\t116.000848\t18769.4\t23077.4\n246\tAYCA-1WH7YL\tL9001-9003 Wungong Sth Rd Darling Downs\tContracted\t-32.1933860000136\t116.001872\t18817.2\t23470.8\n3690\tAYAA-I6TH4\tByford On The Scarp\tReady for service\t-32.2314580000138\t116.009777\t24018.0\t22323.6\n3441\tAYCA-1GUHTO\tRiverhaven\tUnder construction\t-32.0750910000129\t116.010432\t20303.2\t23966.0\n743\tAYCA-194B8B\tByford On The Scarp\tContracted\t-32.2331850000137\t116.011438\t24018.0\t22323.6\n1613\tAYCA-1IU7LQ\tRiverhaven\tContracted\t-32.0734940000129\t116.012392\t20303.2\t23966.0\n2589\tAYCA-1DPKHL\tEquis Lake\tUnder construction\t-31.7476320000111\t116.021753\t17455.2\t26465.0\n1196\tAYCA-Y35C9\tMulataga\tContracted\t-20.7349319999221\t116.869684\t18033.2\t25466.6\n2268\tAYCA-1EC09T\tOyster Harbour\tContracted\t-34.9695390000248\t117.927569\t22510.4\t23447.4\n3387\tAYCA-199H8A\tOyster Harbour\tUnder construction\t-34.9658080000248\t117.929763\t22510.4\t23447.4\n178\t17349902\tLot 1301 Gull Rock Road Albany WA\tCheck with carrier\t-34.948832044\t117.999468\t19223.6\t22713.0\n1498\tAYCA-17CN1O\tHamilton Precinct South Hedland\tContracted\t-20.3921379999191\t118.596955\t21676.6\t24746.2\n2930\tAYCA-17CNAY\tHamilton Precinct South Hedland\tContracted\t-20.393118999918\t118.597902\t21676.6\t24746.2\n3880\tAYCA-1JOR1M\tBHP Quattro\tContracted\t-20.4142349999193\t118.60026\t19780.0\t25058.6\n345\t17367991\tKilgariff Residential Subdivision\tCheck with carrier\t-23.7729379955\t133.875308\t22042.6\t22428.8\n157\t17334879\tSt Eyre Estate\tCheck with carrier\t-32.5057349755\t137.736468\t23282.8\t25355.8\n79\t7\tLightsview\tReady for service\t-34.85796\t138.63601\t22268.6\t24199.6\n239\t13\tLochiel Park\tReady for service\t-34.87687\t138.65406\t13956.0\t24356.8\n65\t3\tBlakes Crossing\tReady for service\t-34.67067\t138.70131\t21298.2\t22845.6\n2674\t17282811\tReidsview Estate\tCheck with carrier\t-34.5991049915\t138.728652\t20018.0\t22893.2\n36\t5\tSpringwood\tReady for service\t-34.6028\t138.76311\t18236.8\t27101.2\n2563\t17358292\tSeafarers Way\tCheck with carrier\t-38.053992997\t140.680356\t24825.2\t25552.8\n3893\tAYCA-16O9W3\tThe Meadows\tContracted\t-37.8165600000297\t140.804638\t22201.4\t22614.6\n3542\tAYCA-H8AXS\tThe Meadows\tReady for service\t-37.8178290000298\t140.805237\t22201.4\t22614.6\n3513\tAYCA-GDD8Q\tAttamurra Heights\tReady for service\t-37.8175080000298\t140.810174\t20345.6\t23089.2\n827\tAYCA-1FZM3S\tWaterlink Estate\tUnder construction\t-36.7205260000284\t142.211344\t21449.6\t26217.0\n341\t17394228\tGol Gol Heights Lot 78 on DP 756946\tCheck with carrier\t-34.1830270045\t142.233328\t18453.0\t21033.0\n1592\t17323666\tToohey Estate Stage 2\tCheck with carrier\t-38.3580759615\t142.503012\t19028.6\t24302.8\n549\t17366497\t250-252 Blind Creek Road\tCheck with carrier\t-37.523448998\t143.77838\t23521.0\t23517.2\n334\t22\tEvergreen Links\tReady for service\t-36.71305\t144.27727\t19775.8\t22248.6\n2605\tAYCA-18LJFQ\tTop Paddock\tContracted\t-36.6945880000286\t144.330024\t19579.2\t23198.8\n3850\tAYCA-1Q1W4X\tWarralily Coast v1\tContracted\t-38.2386170000299\t144.334969\t17278.4\t25058.0\n2860\tAYCA-1Q1YX3\tWarralily Coast v1\tContracted\t-38.23816200003\t144.340249\t17278.4\t25058.0\n3209\tAYCA-1RBPTF\tCoriyule Estate\tContracted\t-38.1765510000299\t144.548707\t18802.0\t23517.6\n34\t48\tWaterford Melton\tReady for service\t-37.71846\t144.56231\t21531.4\t21999.8\n87\t47\tMaplewood\tReady for service\t-37.714\t144.56265\t18429.0\t22839.0\n14\t54\tAtherstone\tReady for service\t-37.70794\t144.58145\t26412.6\t26500.8\n1307\tAYCA-106RN0\tUpper Point Cook v1\tContracted\t-37.8922620000298\t144.714894\t16429.0\t22251.0\n3526\tAYCA-1F9K0P\tInfinity Estate\tUnder construction\t-37.7120880000296\t144.72993\t18504.0\t23275.0\n2047\tAYCA-1FWTD6\t68 Knox Road, Romsey\tContracted\t-37.3626630000294\t144.740978\t19358.6\t20644.0\n2613\tAYCA-1HSHJY\tHighlands\tContracted\t-37.5881080000296\t144.895365\t14729.2\t22276.2\n60\t69\tUniversity Hill\tReady for service\t-37.67879\t145.06972\t18125.8\t24432.6\n1581\tAYCA-1YHJX7\tCambridge Rise Estate\tContracted\t-37.5996560000296\t145.070392\t17557.8\t19829.2\n3413\t17318332\tMatildas Field\tCheck with carrier\t-38.0020650325\t145.162944\t20862.2\t22119.8\n3803\tAYCA-1S78V2\tHighgrove Estate\tContracted\t-38.1137500000299\t145.329669\t20592.2\t20332.0\n2243\tAYCA-1S78KI\tHighgrove Estate\tContracted\t-38.1169040000299\t145.331201\t20592.2\t20332.0\n80\tON-V-LSP\tLakeside, Pakenham\tReady for service\t-38.072927\t145.435528\t16998.8\t23317.4\n1928\tAYCA-12ROLQ\tNorthpoint\tReady for service\t-16.8281489998967\t145.693217\t21956.2\t23839.0\n1915\tAYCA-1G68PJ\tRiverstone Hills\tContracted\t-17.0898219998979\t145.763554\t18234.8\t21744.8\n129\t26\tJackson View\tReady for service\t-38.1263\t145.85796\t17995.8\t23827.2\n2841\tAYCA-1G68VT\tEMBERWOOD ESTATE\tContracted\t-38.1537810000299\t145.952046\t21679.2\t20489.8\n2570\tAYCA-1JRJ44\tEMBERWOOD ESTATE\tContracted\t-38.1542920000298\t145.953644\t19332.8\t22511.8\n2762\tAYCA-1JRMAB\tEMBERWOOD ESTATE\tContracted\t-38.1536360000298\t145.955506\t19332.8\t22511.8\n195\tAYCA-1ORQMM\tRIVERLAND GARDENS\tContracted\t-35.9649560000272\t146.014765\t20637.2\t23451.6\n1932\tAYCA-1QG1P2\tThe Vineyard State\tContracted\t-36.0095870000273\t146.028231\t18739.0\t22350.2\n825\tAYCA-1F0VFN\tFranklin Place\tReady for service\t-38.1820110000299\t146.545633\t14980.8\t24848.2\n1476\tAYCA-YAKSO\tThe Strand Estate\tContracted\t-38.1801420000299\t146.554436\t21075.0\t24671.8\n843\tAYCA-1N5EWQ\tThe Rise\tContracted\t-38.1779480000299\t146.561114\t23949.2\t25791.2\n508\tAYCA-1UJIVI\tEden Park Estate\tUnder construction\t-19.2357979999108\t146.643857\t24359.0\t21391.2\n3181\tAYCA-1GKJ93\tSanctum\tContracted\t-19.2170499999106\t146.660361\t20847.6\t22903.8\n3554\tAYCA-1AXKM8\tBrendale West\tReady for service\t-19.252294999911\t146.669882\t18835.4\t23469.2\n3882\tAYCA-16M1RT\tNorth Shore\tReady for service\t-19.2384699999109\t146.696814\t16914.4\t25347.0\n3374\tAYCA-1DFZEI\tNorth Shore\tContracted\t-19.2362819999108\t146.698169\t18617.6\t24531.4\n2465\tAYCA-ZR6PW\tBrookstone on the Park\tReady for service\t-19.3329139999115\t146.715879\t21448.0\t22435.6\n3648\tAYCA-127GKD\tFairways\tReady for service\t-19.2991849999112\t146.804534\t23749.8\t21363.4\n2630\tAYCA-11AYWF\tWhenby Grange\tReady for service\t-36.1622590000276\t146.875358\t22032.2\t25874.8\n3019\tAYCA-1EVRBK\tWhite Box Rise\tReady for service\t-36.1397390000276\t146.900046\t19184.8\t23737.6\n680\tAYCA-Z2NWV\tRiverside Estate\tReady for service\t-36.1396140000277\t146.94733\t20487.8\t23717.2\n375\tAYCA-L6RW4\tRiverside Estate\tContracted\t-36.1360260000277\t146.949994\t20487.8\t23717.2\n1955\tAYCA-110YI6\tFairway Gardens\tReady for service\t-36.0491850000275\t147.006163\t19458.4\t20622.2\n616\tAYCA-1D9FGG\tFairway Gardens\tUnder construction\t-36.0520650000274\t147.013232\t19458.4\t20622.2\n667\tAYCA-IIZZF\tGlenhaven Park\tContracted\t-38.0777960000299\t147.067778\t14419.0\t24118.8\n845\tAYCA-R8A12\tCormiston Upper\tContracted\t-41.4003750000277\t147.080731\t18932.8\t26095.0\n1953\tAYCA-R89MW\tCormiston Upper\tContracted\t-41.398157000024\t147.081939\t18932.8\t26095.0\n3279\tAYCA-15OBNE\tBURWOOD SUBDIVISION\tReady for service\t-43.0022820000199\t147.308168\t20342.4\t24716.8\n1463\tAYCA-1KPY7L\tLloyd West subdivision\tContracted\t-35.1485400000253\t147.330445\t19861.4\t20519.8\n2090\tAYCA-12FR7Z\tEstella Rise Subdivision\tReady for service\t-35.0709270000251\t147.341731\t21061.0\t27063.4\n916\tAYCA-1IFF61\tGlebe Hill\tContracted\t-42.8837890000249\t147.430894\t18238.4\t23306.8\n1716\tAYCA-24XP1K\tBrunslea Park Estate\tContracted\t-35.1506780000253\t147.450328\t16167.2\t25906.2\n2552\tAYCA-1EZD92\tBrunslea Park Estate\tUnder construction\t-35.1494700000253\t147.451383\t16167.2\t25906.2\n1311\tAYCA-15VQFP\tShannon Waters Estate\tReady for service\t-37.8369590000298\t147.574353\t23134.8\t22549.2\n1858\tAYCA-17EQYT\tMaranda Heights\tContracted\t-23.5694819999465\t148.15314\t16604.6\t24318.4\n2875\tAYCA-MQK7A\tRoyal Sands\tReady for service\t-21.019152999923\t149.144914\t24549.2\t25963.4\n1952\tAYCA-1D9BED\tPremier Gardens\tContracted\t-21.0632909999234\t149.146316\t24229.6\t26399.0\n1772\tAYCA-FZLJ2\tAvalon Estate\tReady for service\t-21.0467029999246\t149.159473\t23538.6\t25564.6\n2946\tAYCA-FZLO3\tAvalon Estate\tContracted\t-21.0467029999246\t149.159473\t23538.6\t25564.6\n3191\tAYCA-1NHQ00\tKerrisdale Gardens\tReady for service\t-21.0783719999235\t149.161063\t23091.0\t26415.0\n3348\tAYCA-MUKGW\tPlantation Palms\tReady for service\t-21.0596419999233\t149.166028\t21406.0\t26063.2\n3943\tAYCA-1DUHXM\tPlantation Palms\tContracted\t-21.0637629999233\t149.171301\t21406.0\t26063.2\n2520\t17328877\tBruce Rd\tCheck with carrier\t-32.6191130025\t149.586516\t19038.6\t20751.6\n397\t17350580\tBroadview Estate\tCheck with carrier\t-32.626900004\t149.59184\t22096.0\t21108.0\n1749\t17383372\tHassans Walls Estate\tCheck with carrier\t-33.493701002\t150.151676\t19202.0\t26582.4\n25\t17348681\tJerberra Estate\tCheck with carrier\t-35.0503108155\t150.617052\t21621.2\t27593.6\n11\t9\tOran Park\tReady for service\t-33.99488\t150.72662\t17574.2\t24392.4\n114\t70\tCentral Hills\tReady for service\t-34.02411\t150.75842\t18021.6\t23293.2\n33\t6\tGregory Hills\tReady for service\t-34.02859\t150.76602\t21295.2\t26651.4\n40\t29\tRopes Crossing\tReady for service\t-33.71985\t150.78022\t20240.0\t24173.6\n111\t10\tParkBridge\tReady for service\t-33.91103\t150.83601\t18915.8\t25249.8\n3188\t17312251\tOld Saddleback Road Subdivision\tCheck with carrier\t-34.678144983500005\t150.838344\t17680.6\t20996.4\n1139\t41\tCentral Park\tReady for service\t-33.88441\t151.19874\t17250.0\t25917.2\n21\t12\tWaterford County\tReady for service\t-32.76639\t151.63323\t15208.0\t23994.2\n853\tAYCA-198O38\tGlenview Estate\tUnder construction\t-27.5569409999816\t151.898128\t20729.8\t25265.4\n959\tAYCA-1FMEEC\tBarlow Estate\tContracted\t-27.5289549999814\t151.91544\t17593.4\t21483.8\n934\t17332519\tKalimna Park - stage 12\tCheck with carrier\t-27.4353350435\t151.938828\t20598.2\t25477.8\n751\tAYCA-1OAYNC\tNelson Street Subdivision\tContracted\t-27.6162069999815\t151.940039\t20041.8\t24398.0\n3120\tAYCA-13WNS8\tKearney Street Residential\tReady for service\t-27.604340999982\t151.941994\t22463.0\t25965.4\n2780\tAYCA-1LNFB9\tKearney Street Residential\tUnder construction\t-27.6046999999821\t151.943652\t22318.8\t23654.8\n2195\tAYCA-10WW95\tVantage\tReady for service\t-32.7217880000162\t152.120382\t20536.6\t23700.6\n1368\tAYCA-ZQZ0H\tParklands\tReady for service\t-24.9267859999587\t152.294167\t21763.0\t23556.0\n3923\t17324558\tBelle Eden Estate\tCheck with carrier\t-24.870108967\t152.392464\t24258.6\t26172.8\n226\tAYCA-1JBB7K\tThe Fairways\tContracted\t-27.5314779999815\t152.479575\t20008.4\t24708.6\n507\tAYCA-13WQNT\tThe Fairways\tReady for service\t-27.5270719999815\t152.481257\t20759.4\t25389.4\n298\tAYCA-1D18C9\tThe Fairways\tReady for service\t-27.5271879999808\t152.483766\t20759.4\t25389.4\n1607\tAYCA-1MSYMQ\tSouthside, Gympie\tUnder construction\t-26.2219509999703\t152.657577\t26394.4\t22722.0\n1213\t17366110\tRiver Breeze Estate\tCheck with carrier\t-31.4431869945\t152.718824\t23799.0\t23732.6\n1632\tAYCA-1LLOIE\tGolf Links\tUnder construction\t-27.6287379999823\t152.738215\t19552.8\t23869.8\n3488\tAYCA-10KSX8\tFort Flinders Estate\tReady for service\t-27.6479179999825\t152.784033\t19485.0\t24029.6\n3811\tAYCA-172UJ5\tProvidence - SUCE\tUnder construction\t-27.6910299999828\t152.807726\t17056.4\t24050.8\n1146\tAYCA-172UFO\tProvidence - SUCE\tUnder construction\t-27.6902259999828\t152.808493\t17056.4\t24050.8\n1468\tAYCA-172USV\tProvidence - SUCE\tContracted\t-27.6901249999828\t152.81041\t17056.4\t24050.8\n2993\tAYCA-11CQVW\tNulands- Urraween Rd Estate\tReady for service\t-25.2995339999621\t152.813862\t20187.4\t24805.6\n590\tAYCA-H7WBI\tSovereign Hills\tUnder construction\t-31.4549160000096\t152.827631\t20377.8\t25730.6\n4015\tAYCA-188Z3H\tFlamingo Park Estate\tReady for service\t-25.3138909999622\t152.849761\t23483.4\t21722.4\n3620\tAYCA-1J8KZ3\tMountview Estate Stage 8\tReady for service\t-27.6625439999826\t152.853857\t17912.8\t24980.0\n1428\tAYCA-1GYLZ2\tMountview Estate Stage 8\tReady for service\t-27.6628029999826\t152.855421\t20504.4\t24879.8\n2361\tAYCA-1JVMPP\tRaward Road (Neighbourhood Park)\tReady for service\t-25.3202939999623\t152.859436\t21378.4\t25878.4\n1051\tAYCA-1QKKS8\tBrierley Hill\tContracted\t-31.4789470000093\t152.869486\t22614.0\t24360.4\n1880\tAYCA-15W095\tAugustine Heights Extension\tReady for service\t-27.6597989999826\t152.874753\t21308.0\t22110.4\n113\t17376685\tHarold Circuit\tCheck with carrier\t-31.080961009000003\t152.890432\t19508.4\t25941.2\n3246\tAYCA-WOLWL\tEmerald Downs Estate\tReady for service\t-31.4789500000097\t152.901738\t21172.6\t27742.6\n577\tAYCA-1JG1CU\tSpring Mountain\tContracted\t-27.7313099999831\t152.906138\t22274.0\t23160.8\n285\tAYCA-1O7JIC\tSpring Mountain\tContracted\t-27.7311679999831\t152.906283\t22274.0\t23160.8\n2687\tAYCA-ZS8ZC\tNarangba Heights\tReady for service\t-27.1781919999785\t152.920691\t20108.2\t25050.8\n2944\t17396254\tJuncrtion Hill\tCheck with carrier\t-29.6368849935\t152.923436\t18573.6\t22496.8\n2141\tAYCA-17JGP3\tCentral Springs\tContracted\t-27.0610849999775\t152.930507\t23679.6\t21969.6\n3575\tAYCA-1BZK7W\tStone Ridge\tUnder construction\t-27.1857539999786\t152.948025\t15268.6\t24086.2\n3608\tAYCA-1TQB3K\tYOUNGS CROSSING RD\tContracted\t-27.2729609999793\t152.952817\t19611.2\t21926.2\n3679\tAYCA-1N64YG\tYOUNGS CROSSING RD\tContracted\t-27.2717689999793\t152.95403\t18891.4\t22968.0\n3906\tAYCA-15TQ51\tThe Reserve\tReady for service\t-27.0514329999775\t152.957457\t25280.2\t25405.8\n2027\tAYCA-1RRH44\tArdrossan Rd\tContracted\t-27.0614769999775\t152.958687\t24231.4\t25094.6\n1654\tAYCA-1CCWRA\tWarner Springs\tUnder construction\t-27.3095229999796\t152.958921\t18908.2\t23383.4\n3765\tAYCA-1O77R8\tWoodvale East\tReady for service\t-27.1298819999781\t152.969242\t22329.8\t25122.4\n4047\tAYCA-19Y873\tCentral Lakes Estate\tReady for service\t-27.0706879999776\t152.969333\t21345.8\t25881.2\n3360\tAYCA-1DJOLL\tWoodvale East\tReady for service\t-27.1285429999781\t152.97002\t20284.0\t24190.0\n2225\tAYAA-FPS15\tCentral Lakes Estate\tReady for service\t-27.0788859999777\t152.970852\t22730.6\t24905.6\n2676\tAYCA-1GN36R\tStapylton Road Heathwood\tContracted\t-27.6334509999823\t152.985709\t21540.4\t25245.6\n2287\tAYCA-1NHB5M\tScenic Rise\tContracted\t-27.959613999985\t152.995387\t14536.4\t24245.0\n2540\tAYCA-15A4ZI\tThe Rise\tReady for service\t-27.2091459999788\t152.999425\t19970.0\t22344.8\n3352\tAYCA-YDUD3\tForest Pines\tUnder construction\t-26.6752759999742\t153.01528\t17358.6\t25414.8\n2536\tAYCA-YDTW6\tForest Pines\tReady for service\t-26.6766369999743\t153.017182\t16706.6\t24682.0\n4070\tAYCA-1P7OGA\tParklakes Estate\tUnder construction\t-26.5942179999736\t153.020205\t23423.2\t24575.4\n2097\tAYCA-1CDI7C\tGriffin Estate\tReady for service\t-27.2739859999793\t153.022256\t18397.4\t23161.6\n2581\tAYCA-1CPCIQ\tHenry Road Griffin\tContracted\t-27.2697459999793\t153.026557\t18401.4\t26396.0\n2016\tAYCA-1F5XTY\tDoonella\tUnder construction\t-26.406138999972\t153.033322\t19031.8\t22681.6\n3411\tAYCA-1PTJID\tPark Vista\tUnder construction\t-27.2200389999789\t153.034501\t19564.6\t24532.4\n1260\tAYCA-1COM6G\tCapestone Estate\tReady for service\t-27.239565999979\t153.036051\t20033.8\t23238.8\n1540\t17339896\tna\tCheck with carrier\t-27.4212150295\t153.036108\t19186.4\t22574.2\n1200\tAYCA-XPYP4\tCapestone Estate\tReady for service\t-27.229409999979\t153.036722\t17595.8\t23629.2\n1354\tAYCA-1O04ZH\tFreshwater Estate\tUnder construction\t-27.2598349999792\t153.037419\t19269.2\t24812.8\n303\tAYCA-1FLSZY\tFrizzo Road, Palmview\tReady for service\t-26.7471129999749\t153.039069\t18663.8\t24901.2\n1241\tAYCA-1ELWNY\tJimboomba Woods\tReady for service\t-27.8693139999843\t153.044919\t21855.6\t26241.4\n309\tAYCA-1J8WWD\tJimboomba Woods\tUnder construction\t-27.8632579999842\t153.046244\t19362.6\t25082.4\n413\tAYCA-1ABGJI\tJimboomba Woods\tReady for service\t-27.8718669999843\t153.046343\t19919.8\t26224.6\n523\tAYCA-1ESEJE\tJimboomba Woods\tReady for service\t-27.8674779999843\t153.046517\t21855.6\t26241.4\n196\tAYCA-IQWLC\tJimboomba Woods\tReady for service\t-27.8661709999843\t153.059876\t21799.4\t24895.6\n338\tAYCA-1BK5IS\tJimboomba Woods\tReady for service\t-27.8666469999842\t153.060515\t21799.4\t24895.6\n325\tAYCA-DZ1PY\tHoly Spirit Boondall\tReady for service\t-27.3601289999794\t153.061465\t19059.2\t23300.8\n2490\tAYCA-1JP58I\tCavalry Rd, Sippy Downs\tUnder construction\t-26.7291419999747\t153.075342\t21838.8\t23291.4\n3549\tAYCA-26783R\tCavalry Rd, Sippy Downs\tContracted\t-26.7300759999747\t153.075496\t21838.8\t23291.4\n3371\tAYCA-19N4OH\tSunshine Cove\tReady for service\t-26.6600189999741\t153.076191\t18110.8\t23485.4\n965\tAYCA-1HPMUJ\tPeregian Breeze\tUnder construction\t-26.4864609999726\t153.078679\t22579.6\t24757.6\n372\tAYCA-1COQ8Z\tRiver Oaks Estate\tUnder construction\t-27.7696789999834\t153.092011\t19452.2\t21938.2\n2545\tAYCA-1JG9Y5\tIvadale Lakes Estate\tUnder construction\t-26.7818949999751\t153.093129\t16098.4\t24133.8\n3763\tAYCA-1DNM6I\tIvadale Lakes Estate\tReady for service\t-26.7819679999752\t153.09586\t16098.4\t24133.8\n3357\tAYCA-1FZQZC\tCreekwood\tReady for service\t-26.768722999975\t153.09633\t19539.4\t24493.8\n2010\tAYCA-1CUX55\tMy Home \u0026 The River\tReady for service\t-27.7758579999835\t153.098553\t20292.0\t21354.6\n4006\tAYCA-1ARXJF\tPelican Waters Heart\tUnder construction\t-26.8423979999756\t153.098942\t20473.8\t23672.4\n1543\tAYCA-1ARX6Q\tPelican Waters Heart\tReady for service\t-26.8437339999757\t153.099056\t24021.2\t23689.0\n2773\tAYCA-1UHZVS\tCreekwood\tUnder construction\t-26.7723869999751\t153.10054\t19197.0\t24663.6\n1525\tAYCA-1UI061\tCreekwood\tUnder construction\t-26.7722439999751\t153.100564\t19197.0\t24663.6\n1715\tAYCA-1N0999\tMy Home \u0026 The River\tContracted\t-27.7771999999835\t153.101125\t23152.8\t21347.8\n2677\tAYCA-1HF7M0\tSandstone Lakes\tReady for service\t-27.0707479999776\t153.102026\t18125.0\t22328.2\n3715\tAYCA-1IGPWN\tBrightwater Estate\tReady for service\t-26.7058429999745\t153.108115\t21528.4\t23485.4\n3183\tAYCA-1RC48V\tBrightwater Estate\tUnder construction\t-26.7038839999745\t153.111112\t23607.0\t23630.8\n1406\tAYCA-1UDRED\tBirtinya Estate\tUnder construction\t-26.7493429999749\t153.114765\t19101.4\t24778.2\n3115\tAYCA-1NNGV1\tBirtinya Estate\tReady for service\t-26.7463279999748\t153.115249\t17027.0\t24098.2\n2593\tAYCA-16LMM2\tBirtinya Estate\tReady for service\t-26.756278999975\t153.115709\t19736.4\t23570.0\n2432\tAYCA-1D5CAV\tBirtinya Estate\tReady for service\t-26.757574999975\t153.116075\t21742.8\t23648.8\n3974\tAYCA-S1TCG\tHilltop\tReady for service\t-27.5198259999814\t153.123348\t25563.2\t27027.6\n3861\t17339545\tLoganlea\tCheck with carrier\t-27.6820959615\t153.136944\t17302.4\t22594.4\n2665\t17370701\tRadke Road\tCheck with carrier\t-27.6789549945\t153.154872\t17226.2\t24177.2\n89\t32\tWoodlands\tReady for service\t-27.72047\t153.15887\t18573.4\t23098.2\n2983\tAYCA-1AV5D9\tOrmeau Ridge\tReady for service\t-27.7980979999836\t153.248358\t22450.2\t21495.0\n621\t17326041\tKinross Road\tCheck with carrier\t-27.556326986000002\t153.249588\t22722.6\t21388.6\n3025\tAYAA-I33LE\tSilkwood\tReady for service\t-27.6276529999823\t153.259821\t18444.2\t23558.6\n3731\tAYCA-1BPFMB\tSilkwood\tReady for service\t-27.6285049999823\t153.262226\t18444.2\t23558.6\n2844\tAYCA-1P8IO5\tHighland Reserve\tContracted\t-27.8909499999845\t153.273297\t20219.0\t23576.6\n1984\tAYCA-1P8IES\tHighland Reserve\tContracted\t-27.8916699999844\t153.27373\t23421.6\t23219.4\n3243\tAYCA-1C027V\tWaverley Parks Estate Willowvale\tReady for service\t-27.8257539999839\t153.280628\t21087.0\t24729.8\n2232\tAYCA-1ZX40G\tWaverley Parks Estate Willowvale\tUnder construction\t-27.8273349999839\t153.282732\t18673.8\t23833.4\n640\tAYCA-189LZC\tOakwood Rise\tReady for service\t-27.8279889999839\t153.286215\t17710.2\t23440.6\n939\tAYCA-KBSOQ\tHuntington Rise\tReady for service\t-27.9184949999847\t153.287132\t20267.4\t21354.4\n2193\tAYCA-WBSKZ\tRidgeline Waverley\tReady for service\t-27.8253189999839\t153.288948\t18673.8\t23833.4\n1995\tAYCA-1JRFAW\tCoomera Springs Estate\tUnder construction\t-27.8458265699834\t153.292473\t15269.0\t24267.4\n3167\tAYCA-1QSS10\tCoomera Retreat\tUnder construction\t-27.8515149999841\t153.297399\t20167.8\t22024.8\n539\tAYCA-ROJ8T\tThe Meadows\tUnder construction\t-27.8279519999839\t153.312236\t19812.0\t24234.2\n1820\tAYCA-1R4BL0\tCoomera Town Centre\tReady for service\t-27.838902999984\t153.333724\t17341.4\t23815.6\n2453\tAYCA-1FBGGU\tParkside at Coomera\tReady for service\t-27.838022999984\t153.335871\t17341.4\t23815.6\n1673\tAYCA-1LM0WD\tParkside at Coomera\tReady for service\t-27.838693999984\t153.337486\t17341.4\t23815.6\n656\t17359981\tYamba Waters\tCheck with carrier\t-29.4395681005\t153.343916\t18467.2\t21196.4\n718\tAYCA-1OUD2V\tCoomera 2 Estate\tContracted\t-27.841463999984\t153.344296\t19854.0\t23673.0\n3879\tAYCA-1TTWTY\tCoomera 2 Estate\tContracted\t-27.840176999984\t153.345106\t20911.0\t25362.4\n2954\tAYCA-1BQ7HB\tCova\tReady for service\t-27.8695979999843\t153.351592\t20129.8\t21626.2\n480\tON-Q-GC-SeaChange\tSeachange Emerald Lakes, Carrara\tUnder construction\t-28.015345000000003\t153.381919\t17031.4\t22893.4\n1309\tON-Q-VL-SBY\tSouth Bay, Varsity Lakes\tReady for service\t-28.087344\t153.407452\t18540.0\t24438.4\n3831\tAYCA-1EPFB5\tPalm Beach Heights Estate\tReady for service\t-28.1217409999857\t153.45952\t23185.4\t24802.4\n3744\tAYCA-Y0WCQ\tBallina Heights\tContracted\t-28.8192329999917\t153.537862\t27273.8\t24652.6\n1895\tAYCA-1EQ2QM\tSeabreeze Estate\tUnder construction\t-28.3862209999884\t153.551248\t19527.0\t20702.0\n1646\tAYCA-13R726\tCasuarina West\tReady for service\t-28.2938829999877\t153.570315\t15493.2\t23765.8\n3459\t17378105\tHayters Dr Suffolk Park\tCheck with carrier\t-28.683518\t153.599308\t19843.6\t23924.6\n1862\t17321922\tOnslow Townsite Development\tCheck with carrier\t-21.646907543\t115.11920448\t16972.2\t21715.4\n2787\t17332076\tBackshall Place\tCheck with carrier\t-31.7783210435\t115.80076512\t18256.4\t23268.0\n1614\tAYCA-1C3D2T\tTuart Ridge\tUnder construction\t-32.3437038300139\t115.81734924\t19152.8\t26377.6\n1867\tAYAA-F5EH8\tEmerald Park\tReady for service\t-32.2627653900134\t115.84923084\t19289.6\t21712.8\n2821\t17342630\tLots 140 \u0026 141 Landsdale Road\tCheck with carrier\t-31.818237032000003\t115.86245904\t21599.0\t24691.6\n3615\tAYCA-IRJXO\tLots 156-158 \u0026 169 Landsdale\tReady for service\t-31.8157868700116\t115.8706152\t23435.4\t23866.8\n2207\t17334327\tLot 27 Fraser Rd North\tCheck with carrier\t-32.0796629925\t115.93603296\t20864.8\t25222.2\n3425\tAYAA-FPQQI\tBletchley Park\tReady for service\t-32.1060438000126\t115.94846592\t24205.0\t21812.4\n1207\t17338299\tForrestdale Business Park West\tCheck with carrier\t-32.123096016\t115.95594816\t20371.2\t21150.4\n1515\tAYCA-1N6UVJ\tLOT 1005 LORD STREET, CAVERSHAM\tContracted\t-31.8725546400113\t115.96237956\t19354.4\t24839.6\n2303\tAYCA-1L74S5\t565 Cranleigh St, Dayton\tUnder construction\t-31.8499926300113\t115.97119776\t20048.2\t22385.8\n3466\tAYCA-1964BJ\tChenel Private Estate\tContracted\t-31.8595149000429\t115.97686272\t18653.2\t23647.8\n3546\t17339407\tLot 26 Coast Rd Dayton\tCheck with carrier\t-31.8575109595\t115.97781312\t18653.2\t23647.8\n1397\t17331096\tLots 32-34 Phillip Street Maddington\tCheck with carrier\t-32.058532977\t115.98401808\t19208.4\t23811.0\n219\t17325574\tDarling Downs Lot 102 Keenan Street\tCheck with carrier\t-32.1866129725\t116.00267616\t18573.8\t22809.0\n3745\tAYAA-I6P1Q\tByford On The Scarp\tReady for service\t-32.2311915000133\t116.00762148\t24018.0\t22323.6\n460\tAYAA-HLIZF\tNickol West\tReady for service\t-20.7363338099194\t116.79243804\t21746.4\t26289.6\n243\t17349923\tLot 50 and 51 Link Road ALbany\tCheck with carrier\t-34.9695262735\t117.8126136\t22546.2\t25408.4\n1219\t17325888\tInvestigator Heights\tCheck with carrier\t-33.930899995000004\t137.64486816\t18428.0\t23423.0\n3423\t17310798\tSheidow Park\tCheck with carrier\t-35.085879008\t138.52843488\t15377.0\t23363.4\n2698\tAYCA-1EQ2L4\tMill Street, Meadows Land Dev\tContracted\t-35.1842112200508\t138.75939781\t20916.6\t21609.0\n2064\t17350140\tRiverside Park Estate Stage 1\tCheck with carrier\t-34.2024295455\t142.11678528\t16060.0\t22557.2\n3252\t17331223\tWetlands Walk\tCheck with carrier\t-34.2073088095\t142.12044432\t16060.0\t22557.2\n1528\t17265395\tMirage Estate\tCheck with carrier\t-34.2217870205\t142.13789712\t24135.2\t25117.6\n2279\t17338823\tSouthbank Estate\tCheck with carrier\t-36.730609113\t142.20247952\t18423.6\t22413.4\n1847\t17136362\tThe Province\tCheck with carrier\t-38.1589900245\t144.30258288\t24178.4\t22096.6\n2734\t17332641\tThe Valley Estate\tCheck with carrier\t-38.214377008\t144.30558384\t17877.6\t24578.6\n153\t78\tZeally Sands\tReady for service\t-38.309154864\t144.33959113\t16550.4\t25385.0\n135\t44\tGrand Lakes\tReady for service\t-38.025754875\t144.38463099\t15918.8\t24176.6\n4025\t17343997\t60 Edgecombe Street\tCheck with carrier\t-37.2482700265\t144.46765008\t20995.0\t24446.8\n2996\t17315087\tSheepwash Road\tCheck with carrier\t-38.260230035\t144.48650112\t24016.2\t22559.4\n2461\t17315688\tFersfield Road\tCheck with carrier\t-37.496750038500004\t144.59300496\t20022.8\t23103.4\n2553\t17167253\tWerribee Industrial Estate\tCheck with carrier\t-37.917250025\t144.65715696\t18447.8\t25301.0\n3509\t17357525\tPark View Estate\tCheck with carrier\t-36.1431399665\t144.72086112\t25300.2\t23048.2\n586\t17324948\tPerricoota Run Stage 3\tCheck with carrier\t-36.0924779755\t144.73565712\t20190.2\t25712.8\n1330\t17329893\tWilliams Landing\tCheck with carrier\t-37.867014311\t144.74420544\t17498.6\t24640.2\n487\t17362631\tBarbers Paddock\tCheck with carrier\t-36.1019571165\t144.76534032\t22234.0\t25514.0\n2636\t17328920\tBellbird Ridge Estate\tCheck with carrier\t-37.65943199\t145.16670896\t19157.6\t24853.6\n2116\t17263708\t18 Newson Street\tCheck with carrier\t-38.00136897\t145.16902512\t19901.6\t21063.0\n2811\t17231918\tProposed Development Site\tCheck with carrier\t-38.0881690275\t145.19619792\t17604.0\t24599.2\n2171\t17152225\tTHE WOODS\tCheck with carrier\t-38.163782967500005\t145.20479616\t16152.4\t25195.4\n1060\t17340680\tTHOMPSONS BASE DEVELOPMENT\tCheck with carrier\t-38.080397973000004\t145.24319808\t23400.2\t25377.4\n418\t17347341\tPeak Drive Estate Stage 1\tCheck with carrier\t-38.0048399955\t145.33659504\t18299.0\t22463.2\n3308\t17354334\t524 - 526 Hull Road Mooroolbark\tCheck with carrier\t-37.776527999\t145.34323488\t20912.8\t26895.4\n3172\t17306407\t70 - 78 Bell Street\tCheck with carrier\t-37.6536269675\t145.37777616\t21048.8\t24872.2\n472\t17362323\tHOEVET FIELD\tCheck with carrier\t-17.0509390565\t145.4283672\t13610.4\t23351.2\n1759\t17319117\tARENA SHOPPING CENTRE (RAPA)\tCheck with carrier\t-38.0636170115\t145.43699616\t16871.2\t22194.2\n1951\t17325892\tLeonards Access Subdivision - stage 1\tCheck with carrier\t-16.7978750405\t145.67631984\t16239.0\t20983.2\n2408\t17329995\tHIDDEN HAVEN ESTATE KORUMBURRA\tCheck with carrier\t-38.438062025\t145.82154384\t23064.8\t23177.0\n2337\tAYCA-TS09U\tSilverwoods Golf and Lifestyle Estate\tReady for service\t-36.007839450027\t146.03140152\t18739.0\t22350.2\n498\t17136044\tThe Grange Stage 1\tCheck with carrier\t-37.0329309885\t146.10346992\t17565.6\t23981.6\n3363\t17312523\tWaldara Park Estate Stage 4A\tCheck with carrier\t-36.331758992000005\t146.30139792\t20922.2\t23029.2\n1104\t17316758\tFigure of Eight Creek Pty Ltd\tCheck with carrier\t-41.232637985\t146.34389088\t17524.0\t23728.0\n2463\tAYCA-1FXK6H\tBanksia Ridge Traralgon\tUnder construction\t-38.1808944000299\t146.50039332\t17691.0\t26428.6\n1802\tAYCA-JKRG8\tHazelwood Road Subdivision\tContracted\t-38.2054390200297\t146.52340236\t16927.4\t24178.0\n3815\tAYAA-FPR4E\tThe Strand Estate\tReady for service\t-38.1814344900296\t146.55611844\t23290.8\t25647.0\n3842\tAYCA-1OJ91M\tNorth Shore\tUnder construction\t-19.2385320299108\t146.68885296\t16947.6\t23815.4\n658\t17278226\tSpring Park Estate stage 5 \u0026 6\tCheck with carrier\t-36.0182999685\t147.01261392\t19724.8\t23257.8\n736\t17354070\tIluka Views\tCheck with carrier\t-36.049058993500005\t147.01605408\t19458.4\t20622.2\n81\t17324634\tDrivers Run\tCheck with carrier\t-41.432627961499996\t147.21321888\t21854.8\t23505.2\n3332\t17333393\tGlebe Hill\tCheck with carrier\t-42.884635482\t147.42828544\t16843.0\t25791.0\n2769\tAYCA-1FLYB8\tOakdowns Estate\tContracted\t-42.9017878800247\t147.45667536\t22078.8\t26648.4\n1281\tAYCA-17GW1D\tBayley Subdivision Weston Hill Road\tUnder construction\t-42.773693310025\t147.56604228\t19281.8\t22805.6\n1008\tAYCA-IZ2ES\tBayley Subdivision Weston Hill Road\tReady for service\t-42.771751740025\t147.56889852\t19632.6\t23921.6\n1246\t17329393\tEagle Point Landings Stage 1 2A \u0026 2B\tCheck with carrier\t-37.8973760485\t147.67854192\t21096.8\t23734.2\n1201\t57000508\tIsaac Views - stage 6b\tCheck with carrier\t-21.9996780305\t148.07191104\t17956.2\t24375.4\n1099\t17330252\tHydeaway Bay Estate\tCheck with carrier\t-20.084016961\t148.48608384\t17439.0\t23394.0\n190\t17325176\tFletcher Industrial Stage 1\tCheck with carrier\t-32.213367987\t148.63352688\t18382.8\t27862.0\n280\t17341715\tCanobolas Meadows\tCheck with carrier\t-33.268190294\t149.0541512\t19341.4\t25074.8\n602\t17325403\tPatterson Gardens Estate Stage 2\tCheck with carrier\t-33.289404022\t149.12302608\t25579.0\t21712.2\n247\t17312227\tTrilla Hills Estate\tCheck with carrier\t-21.298979967\t149.22698688\t18689.4\t24292.4\n1667\t17331059\tWoorabinda Stage 2 Subdivision\tCheck with carrier\t-24.123018953\t149.46144912\t18979.6\t23327.8\n165\t17339941\tSherwin Ridge\tCheck with carrier\t-35.0642670305\t149.65457184\t18667.4\t21106.0\n2065\t17351179\tEast Street Subdivision\tCheck with carrier\t-36.687526387\t149.8506048\t19636.8\t21467.2\n3272\t17332563\tRosedale Estate\tCheck with carrier\t-23.29236603\t150.51467088\t20345.0\t24823.2\n128\t17204078\tEurama Estate\tCheck with carrier\t-33.7120599615\t150.53916096\t21639.0\t26746.0\n1800\t17347456\tDenman\tCheck with carrier\t-32.3811260055\t150.68290608\t19937.8\t21430.4\n641\t17328227\tRidgeview Estate\tCheck with carrier\t-34.0858359965\t150.69247488\t18477.2\t26132.4\n3287\t17313707\t64 Hilder Street Elderslie\tCheck with carrier\t-34.055366034\t150.71783616\t17269.0\t23621.6\n3319\t17337516\tAndromeda Drive 21 Lot subdivision\tCheck with carrier\t-33.7110720245\t150.72013008\t16871.6\t23185.8\n3593\tAYAA-GDFOR\tHarrington Grove\tReady for service\t-34.0248360600217\t150.7493268\t19038.0\t23712.8\n2828\t17327518\tKeppel View Estate Stage 2\tCheck with carrier\t-23.159747152\t150.75253728\t22317.0\t24469.6\n189\t17322026\tTanby Heights Stage 2\tCheck with carrier\t-23.2286249645\t150.75956592\t24819.6\t22288.2\n3196\t17337209\tPointCentral\tCheck with carrier\t-33.9421750235\t150.84190512\t20213.2\t22017.4\n902\t17341648\tDiamond Crescent\tCheck with carrier\t-33.895387894500004\t150.8808672\t18973.0\t21058.0\n2724\t17323385\tTAMWORTH GARDENS RETIREMENT ESTATE\tCheck with carrier\t-31.071587040500003\t150.90397488\t15233.2\t26123.4\n645\tAYCA-EW20T\tNorthview Estate\tReady for service\t-32.2465804568276\t150.90397766\t18841.4\t24396.6\n3253\t17320348\tBarry Road\tCheck with carrier\t-33.678502016\t150.94296288\t18944.6\t26230.6\n3323\t17274792\tGum Nut Close\tCheck with carrier\t-33.696989991\t150.95441808\t22704.8\t27237.0\n2502\t17312730\tHezlett 21\tCheck with carrier\t-33.694982001\t150.95781504\t21217.4\t26968.0\n3746\t17325381\tHezlett - 14290/207\tCheck with carrier\t-33.698032022\t150.96115296\t19010.0\t27431.4\n597\t17329917\tCastle Hill Subdivision\tCheck with carrier\t-33.720329258\t151.01356512\t18684.0\t24789.8\n1714\t17348180\t313 Alfords Point Road\tCheck with carrier\t-33.9998139935\t151.02233712\t19966.2\t20124.2\n676\t17256993\tVolker Street Dalby\tCheck with carrier\t-27.172153988\t151.24532688\t19071.0\t24627.6\n2455\t17358284\tBellbird\tCheck with carrier\t-32.860546198\t151.30908576\t21659.2\t21896.0\n140\t67\tTannum Blue\tReady for service\t-23.960568557\t151.36700841\t20637.8\t26156.6\n3329\t17341783\tPR - Cedar Ridge Estate\tCheck with carrier\t-33.084630001\t151.44249888\t19142.0\t23551.2\n1128\t17346476\tForest Gums\tCheck with carrier\t-32.8051989895\t151.45774992\t20726.2\t23269.8\n2911\t17340455\tBolwarra Tops\tCheck with carrier\t-32.6998800065\t151.56973296\t20594.0\t23414.0\n2043\t17340103\tSpinnakers Leisure Park\tCheck with carrier\t-33.042175017\t151.65956304\t18775.4\t24820.0\n193\t17337131\tTimbertop Estate\tCheck with carrier\t-32.633252016\t151.70961312\t22937.4\t23638.8\n554\t17290310\tLinton Hill - Stage 2\tCheck with carrier\t-27.466329962\t151.82728704\t22133.6\t25616.6\n2764\t17301749\tMcDougall Street Subdivision\tCheck with carrier\t-27.5668740025\t151.90586208\t22475.8\t23980.6\n3001\t17355038\tGlenvale Views\tCheck with carrier\t-27.574151033\t151.91552592\t17995.8\t23742.2\n1235\tAYCA-EBL5G\tGriffith Estate\tReady for service\t-28.2087415799851\t151.98855984\t21020.6\t22326.6\n648\t17275187\tSovereign Downs - stage 1\tCheck with carrier\t-28.238709957\t152.02181808\t21410.8\t24818.4\n862\tAYCA-1FBKCC\tVantage\tUnder construction\t-32.7242332800109\t152.11326132\t20325.2\t24213.8\n3336\t17351161\tGolf Links Estate\tCheck with carrier\t-24.827022985\t152.45641008\t22713.4\t23508.4\n3345\t17315578\tCape Hawke Estate Stage 10\tCheck with carrier\t-32.206194982\t152.53996608\t20810.2\t26067.0\n1934\tAYCA-GMX9L\tAugustus Estate\tReady for service\t-25.2917710199613\t152.80766568\t18665.8\t25770.4\n1596\t17328213\tPalm Lakes Resort Stage 2A\tCheck with carrier\t-25.285011038500002\t152.80985088\t21762.2\t21055.4\n2201\tAYCA-1A5VF0\tRedbank Motorway Estate\tReady for service\t-27.5901139799814\t152.87734476\t20592.4\t21981.8\n2923\t17318088\tBanksia Grove Estate\tCheck with carrier\t-31.447562041\t152.90453808\t16336.0\t22687.0\n3223\t17331879\tBrookfield Village Redevelopment Stage 1\tCheck with carrier\t-27.4838550305\t152.90805888\t18888.0\t22053.2\n2159\t17322730\tJunction Hill\tCheck with carrier\t-29.635183974\t152.92700784\t18573.6\t22496.8\n1075\t17332461\tCoochin Twins Stages - ABC\tCheck with carrier\t-26.857837989\t152.93709504\t20486.8\t22778.4\n3839\t17325421\t151 Oakey Flat Rd\tCheck with carrier\t-27.121311992000003\t152.94101904\t17766.6\t24962.8\n3716\t17344849\tMarian Estate\tCheck with carrier\t-29.670297029500002\t152.94276288\t19941.8\t24116.6\n1420\t17334929\tSettlement Road\tCheck with carrier\t-27.430175967\t152.94345408\t22895.8\t23334.8\n1947\t17330134\tRoxton Court - stage 1\tCheck with carrier\t-26.8584710405\t152.94576816\t19545.0\t22226.4\n198\tAYCA-1DEL05\tTeviot Downs Estate\tReady for service\t-27.7470854999827\t152.9503524\t17323.8\t21673.8\n1052\t17253450\tEmu Road Caboolture\tCheck with carrier\t-27.0499149975\t152.95287312\t24001.4\t25750.0\n582\t17315061\tYandina Caravan Park Stage 1\tCheck with carrier\t-26.5687499775\t152.95569984\t14688.2\t24817.4\n730\t17371587\tEatons Hill Village\tCheck with carrier\t-27.338218017\t152.96384304\t24296.0\t21724.4\n3993\t17228330\tCoachwood Rise Estate Stage 15\tCheck with carrier\t-27.108890019\t152.97072912\t15920.8\t22866.2\n933\tAYCA-1F6W0L\tStage 1\tReady for service\t-27.2346020099783\t152.98472448\t20689.2\t23054.4\n2217\tAYAA-J7JZ2\tBlunder Road\tReady for service\t-27.5871295799807\t152.9878302\t22954.0\t25121.0\n209\t17399839\tGOLDEN VALLEY PLACE\tCheck with carrier\t-26.5433651285\t153.00147056\t13421.6\t24935.6\n2790\tAYCA-Q0Q9K\tNorth Lakes\tReady for service\t-27.2280841199783\t153.00655092\t14955.6\t24131.8\n1388\tAYCA-HSP0X\tPine River Cove\tReady for service\t-27.2774366999787\t153.0071172\t22735.4\t25310.0\n2903\tAYAA-HVZ2Y\tTelegraph Road\tReady for service\t-27.3304753199791\t153.01077012\t22346.2\t21916.4\n2988\tAYCA-1H06HB\tParklakes at Bli Bli\tReady for service\t-26.605298069973\t153.01986408\t24197.6\t24347.0\n2305\tAYCA-OPQMN\tWatson Road\tReady for service\t-27.5762235599812\t153.02228076\t19081.0\t24203.8\n777\tAYCA-1VDJU8\tCutters Ridge Estate\tContracted\t-26.6277088799738\t153.03225402\t21225.8\t28631.0\n3826\tAYAA-HDXSS\tDoonella\tReady for service\t-26.4057620399712\t153.03492576\t19267.6\t21443.6\n3257\tAYCA-1TW5MH\tPARKINSON TOWNHOUSE DEVELOPMENT\tContracted\t-27.6314205599822\t153.04012632\t20425.4\t23919.4\n1297\t17321427\t154 Kinsellas Road East\tCheck with carrier\t-27.246079988\t153.04152384\t19131.0\t24090.6\n3394\t17262038\t2704 Beaudesert Road\tCheck with carrier\t-27.6352790475\t153.04602096\t20133.6\t23697.6\n45\t1\tNoosa Waters\tUnder construction\t-26.4021826\t153.0615905\t20748.0\t24423.6\n287\t17312200\tBERRINBA STAGE 1\tCheck with carrier\t-27.646784993\t153.09164016\t17483.4\t24779.8\n2186\tAYCA-1D08ZO\tBunnings Warehouse COFFS HARBOUR\tReady for service\t-30.3140082600024\t153.09378216\t22972.8\t26200.6\n3460\t17328415\t78-84 Judith St\tCheck with carrier\t-27.694720972000002\t153.09387216\t20602.0\t25885.2\n3568\t17148221\tIvadale Lakes\tCheck with carrier\t-26.781939981500003\t153.09605088\t16098.4\t24133.8\n3911\tAYCA-HKH9U\tBrightwater Estate\tReady for service\t-26.7101833499748\t153.10257156\t22024.4\t22832.6\n3262\t17216826\tTorvill Heights\tCheck with carrier\t-27.603982986000002\t153.10397808\t23737.4\t24852.4\n3419\t17350074\t242 Millers Road Underwood\tCheck with carrier\t-27.6000742875\t153.10763712\t22950.8\t24419.2\n486\tAYCA-13X8H5\tRiemore Downs Estate\tContracted\t-27.8859651299838\t153.10899288\t21179.4\t23515.6\n502\tAYCA-13X8OH\tRiemore Downs Estate\tContracted\t-27.8859651299838\t153.10899288\t21179.4\t23515.6\n673\tAYCA-13WZ1H\tRiemore Downs Estate\tReady for service\t-27.8912129399838\t153.11493288\t21179.4\t23515.6\n1969\tAYCA-U732X\tKorora Haven\tReady for service\t-30.2570414100019\t153.13440384\t21216.0\t21777.0\n1000\t17324603\tMoonee Ridge Estate\tCheck with carrier\t-30.208320005\t153.15106896\t18112.2\t23549.2\n3110\t17319187\tWindaroo Road\tCheck with carrier\t-27.7379489785\t153.18601488\t18196.2\t20949.0\n3938\t17338698\tNautica Fairways Stage 7\tCheck with carrier\t-30.0934890065\t153.18916992\t20428.8\t26682.6\n3450\t17304296\t62-70 Birkdale Road\tCheck with carrier\t-27.4988349985\t153.21121488\t22822.8\t21827.2\n3712\t17356323\tColumbus Estate\tCheck with carrier\t-29.461955043\t153.22145184\t23311.8\t25080.0\n3584\t17346338\tWellington St Ormiston\tCheck with carrier\t-27.5018593415\t153.25993728\t20858.8\t23633.2\n1756\t17168670\t121-129 Bunker Rd Victoria Point\tCheck with carrier\t-27.5930109875\t153.26947584\t23377.0\t24687.2\n218\t17357158\tHuntington Downs\tCheck with carrier\t-27.922871963000002\t153.28360512\t20267.4\t21354.4\n477\tAYCA-1EFSPR\tCoomera Springs Estate\tContracted\t-27.8408675699834\t153.2906154\t14500.2\t23463.4\n3634\t17324439\tGawthern\tCheck with carrier\t-27.822842019\t153.30692016\t18857.0\t21559.0\n1798\t17324446\tKaringal Dr\tCheck with carrier\t-27.825633095500002\t153.30800304\t20223.0\t21941.0\n1778\tAYCA-1US8UQ\tGilston Green\tContracted\t-28.0261649699856\t153.3130254\t16936.0\t26879.4\n2928\tAYCA-1B7F8P\tThe Meadows\tContracted\t-27.8247696299833\t153.31933152\t18883.0\t22869.8\n2643\t17314997\t28 Lot Subdivision Varsity Heights Reserve\tCheck with carrier\t-28.099949042000002\t153.39144816\t19953.4\t23612.8\n377\t17340077\t5-21 GRAY ST\tCheck with carrier\t-28.145302014000002\t153.42793488\t20104.8\t23483.2\n3341\t17345252\tRiveroaks\tCheck with carrier\t-28.854727027000003\t153.55420704\t21436.2\t24350.6\n127\t17314584\tFig Tree Fields Estate\tCheck with carrier\t-28.647101971\t153.56134512\t20562.0\t24312.4\n170\t17338135\tDavid Road\tCheck with carrier\t-28.6656509775\t114.637218112\t18123.4\t25630.0\n1101\t17347323\tLot 504 Caves Road Margaret River WA\tCheck with carrier\t-33.961190674\t115.015993568\t20569.8\t22270.8\n299\t17337667\tLoc 1017 Redgate Road Witchcliffe\tCheck with carrier\t-34.0241140025\t115.074863008\t23401.8\t22355.6\n4066\t17348543\tBrookfield Estate\tCheck with carrier\t-33.9684029915\t115.085882144\t23737.8\t22491.2\n2564\t17328001\tBrookfield Private Estate\tCheck with carrier\t-33.9668520255\t115.087911104\t22882.4\t23498.8\n1339\t17347716\tRiverslea\tCheck with carrier\t-33.955477023\t115.091200064\t20054.6\t22711.6\n3340\t17347971\tCountry Vines Estate\tCheck with carrier\t-33.855772956500005\t115.100980928\t17573.8\t23570.4\n516\t17321918\tOnslow Townsite Development\tCheck with carrier\t-21.646846974\t115.114884832\t20194.4\t22023.4\n137\t17325360\tOnslow Aerodome Redevelopment\tCheck with carrier\t-21.6636330045\t115.115901984\t20929.6\t24284.0\n1380\t17321920\tOnslow Townsite Developemtn\tCheck with carrier\t-21.6463750205\t115.120005824\t16972.2\t21715.4\n2610\t17340964\t19 Dowell Rd Vasse\tCheck with carrier\t-33.6761180135\t115.256720864\t17549.4\t24920.8\n162\t17307174\tRendezvous Road Vasse\tCheck with carrier\t-33.6766400095\t115.276300928\t16431.4\t24759.0\n3877\t17355051\tLot 226 Range Road Capel - The Grove\tCheck with carrier\t-33.5631752175\t115.555976992\t20067.2\t24601.8\n121\t17291731\tFishermans Rd\tCheck with carrier\t-33.4777957195\t115.577883712\t22181.2\t24283.2\n159\t17344902\tFishermans Road Stratham Park\tCheck with carrier\t-33.479493039\t115.580933984\t22181.2\t24283.2\n787\tAYCA-ZFMAE\tYanchep Golf Estate\tReady for service\t-31.5455487881747\t115.6544456324\t15657.2\t24548.0\n2509\t17319929\tRiverlea Estate\tCheck with carrier\t-33.336620018\t115.672233952\t17283.0\t22763.6\n7\t73\tAlkimos Beach\tReady for service\t-31.603789876\t115.681571085\t17232.8\t23476.4\n3990\t17330684\tLot 158 Seaward Loop Sorrento\tCheck with carrier\t-31.822693016000002\t115.742600992\t17827.8\t20742.2\n930\t17326917\tJoondalup Business Park South\tCheck with carrier\t-31.7572630115\t115.768271872\t19650.2\t25804.4\n2438\t17329054\tLots 3 \u0026 4 Churchill Avenue Munster\tCheck with carrier\t-32.13553401\t115.782837824\t19422.0\t24449.8\n3228\t17337592\tLots 19 \u0026 25 Rockingham Road Munster\tCheck with carrier\t-32.130195021\t115.786397888\t20262.6\t26337.2\n3358\t17337591\tLot 18 Rockingham Road Munster\tCheck with carrier\t-32.1307209945\t115.786479968\t20262.6\t26337.2\n754\t17332661\tColes Banksia Grove Shopping Centre\tCheck with carrier\t-31.7052610285\t115.803839168\t20131.2\t24681.0\n3622\t17323621\tPP3RD_CPA\tCheck with carrier\t-32.130066964\t115.805333152\t20870.8\t25540.2\n3559\t17277506\tLots 34 36 \u0026 55 Tindal Avenue\tCheck with carrier\t-32.1307549975\t115.808127008\t20870.8\t25540.2\n1597\t57000103\tTindal Ave (RAPA)\tCheck with carrier\t-32.129501049\t115.808127104\t20870.8\t25540.2\n975\t17231671\tLots 639-642 Horus Bend Bibra Lake - Stage 3\tCheck with carrier\t-32.098437995\t115.814032992\t16557.4\t23593.2\n3417\t17334529\tlot 23 kemp st\tCheck with carrier\t-31.7805159575\t115.816480928\t21062.8\t23730.4\n1538\t17319938\tLot 500 Lenore Road\tCheck with carrier\t-31.7724789655\t115.825331168\t24889.0\t25524.8\n3180\t17234231\tLot 5 Baldivis\tCheck with carrier\t-32.340414998\t115.831941984\t19876.6\t25828.8\n103\t17197764\tHeritage Hills \tCheck with carrier\t-33.2903079875\t115.834854944\t17927.2\t25109.0\n3399\t17322685\tLOT 4 HAMMOND ROAD\tCheck with carrier\t-32.141250991\t115.844288032\t19507.8\t24053.6\n3582\t17327482\tLot 39 Gaebler Road Hammond Park\tCheck with carrier\t-32.171655963\t115.846350112\t23250.4\t26776.4\n3629\t17317242\tLot 155 Johnson Road Wellard\tCheck with carrier\t-32.2646900395\t115.848338048\t20084.6\t20781.8\n1310\tAYCA-PX1UI\tEmerald Park\tReady for service\t-32.2581710095134\t115.852455008\t19289.6\t21712.8\n1007\tAYAA-IXB3L\tLots 27 \u0026 201 Mortimer Rd, Wellard\tReady for service\t-32.2606655030106\t115.8545795573\t19289.6\t21712.8\n1481\t17227395\tLot 69 Kingsway Darch\tCheck with carrier\t-31.809931013\t115.866687968\t21251.0\t25181.8\n3119\t17347417\tLots 147 - 148 Landsdale Road Landsdale WA\tCheck with carrier\t-31.8190869035\t115.868031872\t21296.4\t25170.8\n3548\t17324476\tLot 161 Landsdale Road Landsdale\tCheck with carrier\t-31.815784986500002\t115.869727072\t23435.4\t23866.8\n3322\t17350940\tLot 151 Landsdale Road Landsdale WA\tCheck with carrier\t-31.818247022\t115.871231872\t23435.4\t23866.8\n3553\t17332157\tLot 172 Alexander Drive Landsdale\tCheck with carrier\t-31.814580951\t115.876827008\t21823.6\t24233.4\n612\tAYAA-FN97T\tAspiri\tReady for service\t-32.1417876390121\t115.909525216\t23205.6\t25684.0\n2238\t57000653\t17110805 CY O\u0027CONNOR ERADE VILLAGE\tCheck with carrier\t-32.118377036\t115.916036032\t17164.0\t24815.2\n88\t17329519\tMcMahon Road North Dandalup\tCheck with carrier\t-32.503848031000004\t115.930991872\t21394.2\t22223.8\n3356\t17147704\tLot 2 Shreeve Rd Canning Vale\tCheck with carrier\t-32.081509977\t115.941858848\t22393.2\t26863.2\n2383\tAYAA-HISZE\tBletchley Park\tReady for service\t-32.1095800825127\t115.947250368\t22279.4\t21884.6\n3837\tAYAA-IW2UZ\tBletchley Park\tReady for service\t-32.1122853930126\t115.950403104\t24860.6\t21698.2\n149\t17316815\tLOT 224 ORTON ROAD OAKFORD\tCheck with carrier\t-32.228281984\t115.953296032\t23318.8\t24246.6\n2740\t17329331\tSydenham St Subdivision\tCheck with carrier\t-32.025948039\t115.960241152\t21937.8\t21688.6\n412\t17357878\tSerpentine Downs\tCheck with carrier\t-32.374276991\t115.981357984\t23695.0\t22275.0\n3691\t17319764\tGosnells Lot 1540 Verna Street\tCheck with carrier\t-32.0974669855\t115.981995968\t20067.8\t24064.8\n2638\t17328549\tLot 50 Lake Rd Seville Grove\tCheck with carrier\t-32.127249969000005\t115.986005984\t20615.6\t24173.2\n731\tAYAA-F26S6\tSienna Wood\tReady for service\t-32.1637390545126\t115.988251904\t20522.6\t23159.8\n3295\t17334385\tLot 4 \u0026 500 Hale Road Wattle Grove\tCheck with carrier\t-31.9988099635\t115.989239168\t20703.6\t23052.0\n2300\t17320518\tWattle Grove Lots 24 \u0026 163 Hardey East Road\tCheck with carrier\t-31.9935909655\t115.989244928\t19803.2\t24563.2\n2519\t17334304\tLot 1 Whiteley Road Hilbert\tCheck with carrier\t-32.1665509805\t115.989615008\t21878.2\t23515.6\n2435\t17204533\tLot 1000 Rowley Rd\tCheck with carrier\t-32.179723998\t115.989923008\t24443.4\t23156.2\n2335\t17346177\tLots 4 13 \u0026 20 Girraween Street \u0026 Balanda Place Armadale\tCheck with carrier\t-32.150046964\t115.994364832\t21691.8\t24657.8\n3412\t17347496\tBoral Edge\tCheck with carrier\t-31.874324037\t116.000124128\t18929.4\t25481.6\n1023\t17332272\tLots 414 5 \u0026 6 Maddington Road Maddington\tCheck with carrier\t-32.042800984\t116.008961024\t24801.8\t23459.2\n161\t17326687\tLot 9601 Maddern Road Chittering WA\tCheck with carrier\t-31.522233961\t116.068223168\t21870.6\t24671.2\n105\t17345766\tAvon Ridge\tCheck with carrier\t-31.750261002000002\t116.094329984\t22046.0\t25918.4\n1231\t17345510\tParkerville Lot 1854 Beacon Rd \u0026 Lot 1915 Richardson Rd\tCheck with carrier\t-31.874942973\t116.137553024\t22374.2\t23825.8\n61\t17329992\tLots 2-3 Golf Links Road Wundowie\tCheck with carrier\t-31.731990994\t116.361575008\t21014.6\t25748.0\n72\t17362675\tGolf Links Road Wundowie\tCheck with carrier\t-31.731914996\t116.361575008\t21014.6\t25748.0\n2905\t17352942\tLot 9012 Pegasus Blvd McKail WA\tCheck with carrier\t-34.9921219515\t117.842329792\t17631.4\t25070.4\n3071\t17335103\tLeanda Estate\tCheck with carrier\t-34.986135962\t117.917296928\t22000.6\t22270.4\n3724\t17319848\tCatamore Court\tCheck with carrier\t-20.3969970935\t118.607710304\t16349.6\t23971.4\n82\t17316139\tPort Hedland International Airport Precinct 3\tCheck with carrier\t-20.3850569715\t118.610489152\t22979.4\t24308.6\n1897\t17342890\tLot 173 Kitchener Road Kalgoorlie WA\tCheck with carrier\t-30.720221998\t121.464017984\t25376.4\t21313.4\n192\t17051058\tLot 17 Harbour Rd\tCheck with carrier\t-33.844219022000004\t121.883787008\t23863.4\t21586.0\n3802\t17264130\tHalls Creek\tCheck with carrier\t-18.229680006\t127.665143008\t22889.4\t24717.8\n63\t17361458\tBlackmore Subdivision\tCheck with carrier\t-12.7275434465\t130.919370368\t22422.2\t23260.4\n4043\t17327062\tEDEN ESTATE\tCheck with carrier\t-12.4130130325\t130.919578912\t19957.8\t24122.8\n64\t17346227\tRidge View Estate\tCheck with carrier\t-12.8086149605\t131.053826176\t21621.6\t23711.4\n174\t17347514\tHumpty Doo Industrial Park\tCheck with carrier\t-12.5915301515\t131.095235712\t20028.2\t24032.4\n13\t17325842\tPart Section 4574 Goode Road Subdivision\tCheck with carrier\t-12.6280940325\t131.136419168\t16962.6\t23033.2\n29\t17330606\tBenjamin Estate\tCheck with carrier\t-12.5455349705\t131.178166912\t20701.4\t24904.4\n1218\t17347336\tRAAF Base Tindal\tCheck with carrier\t-14.497583005500001\t132.403339008\t18433.4\t23565.4\n22\t17346815\tKilgariff\tCheck with carrier\t-23.770110992\t133.874777984\t24732.8\t24870.6\n1382\t17338151\tIlpeye Ilpeye Town Camp\tCheck with carrier\t-23.695155004500002\t133.904454848\t16232.6\t23923.2\n954\t17335051\tSt Eyre Estate\tCheck with carrier\t-32.5007980285\t137.733543008\t23841.8\t25734.8\n147\t17352159\tGermantown Road Two Wells\tCheck with carrier\t-34.6144390125\t138.556290976\t17189.8\t20886.8\n1269\t17332085\tBrickworks Torrensville\tCheck with carrier\t-34.9142049835\t138.565564928\t20713.4\t24269.2\n2915\t17331263\tKalev Court Development\tCheck with carrier\t-35.094359963\t138.585272032\t15637.0\t25481.6\n3422\t17322588\tParkview Estate\tCheck with carrier\t-34.769815018\t138.618798112\t23309.2\t25540.8\n462\t17311856\tFantasia Land\tCheck with carrier\t-34.644247026500004\t138.651928928\t20255.8\t21455.0\n3034\t17202066\tGreen Valley Project\tCheck with carrier\t-34.7714559865\t138.695289856\t22825.4\t22961.8\n3930\t17226676\tGREENBROOK ESTATE\tCheck with carrier\t-34.622270007000004\t138.727252096\t23425.4\t24110.0\n3788\t17317021\tMonk Ave Subdivision\tCheck with carrier\t-35.039891967\t138.870258848\t18219.2\t22643.2\n3577\t17325665\tSims Road Mount Barker\tCheck with carrier\t-35.083149037\t138.876293152\t18076.6\t25185.2\n1295\t17342778\tMillbrook Park\tCheck with carrier\t-35.2542150035\t138.901763872\t20272.8\t24173.8\n1283\t17155696\tGreenock Road Nuriootpa\tCheck with carrier\t-34.4753929755\t138.984014176\t23203.8\t23816.8\n2068\t17333762\tWoodland Estate\tCheck with carrier\t-34.472509029\t138.988040032\t20126.6\t24042.0\n191\t17328781\tAvoca Dell Stage 1\tCheck with carrier\t-35.092629991\t139.316762176\t22713.4\t23555.0\n998\t17376001\tSpringview Estate\tCheck with carrier\t-37.8073679985\t140.750435008\t15611.4\t23795.6\n139\t17332589\tCalula Estate\tCheck with carrier\t-37.804131997\t140.757626176\t17124.4\t21674.0\n2369\t17341082\tAramanta Developments\tCheck with carrier\t-37.8201490195\t140.804370016\t25376.2\t23426.8\n337\t17326045\tAurukun Res Sub-division - stage 2\tCheck with carrier\t-13.365806045\t141.725994848\t15373.4\t24916.8\n1102\t17331267\tRiverside Breeze\tCheck with carrier\t-34.203035161500004\t142.112228032\t16755.0\t23172.4\n2041\t17391532\tWetlands Reserve\tCheck with carrier\t-34.203269001500004\t142.115759008\t16060.0\t22557.2\n3635\t17346014\tWetlands Walk\tCheck with carrier\t-34.2049369985\t142.121812992\t16830.4\t22594.2\n1825\t17339370\tJubilee Park\tCheck with carrier\t-34.193800979\t142.127246176\t15936.2\t20796.0\n2079\t17338127\tMildura Golf Resort\tCheck with carrier\t-34.1788270235\t142.138697504\t16674.4\t22820.0\n2634\t17350111\tEtiwanda Parklands\tCheck with carrier\t-34.2084879995\t142.150896992\t26358.4\t25659.8\n2154\t17368033\tSummerfield Estate\tCheck with carrier\t-34.2153039915\t142.150922016\t24135.2\t25117.6\n1186\t17342341\tToorak Gardens\tCheck with carrier\t-34.229990975\t142.158619808\t18266.0\t25720.4\n1187\t17392165\tToorak Gardens\tCheck with carrier\t-34.229990975\t142.158619808\t18266.0\t25720.4\n2907\t17392879\tKaradoc Heights\tCheck with carrier\t-34.2299947675\t142.167379552\t18924.4\t26493.8\n3393\t17333347\tStage 6 Wirraway Heights Mildura\tCheck with carrier\t-34.199082988\t142.177328992\t18160.4\t24664.8\n529\t17262882\tEastside Subdivision\tCheck with carrier\t-34.1966919555\t142.182113056\t15426.0\t25615.6\n664\t17358015\tWoodside Park Estate\tCheck with carrier\t-34.17311772\t142.219964768\t17214.0\t22374.8\n3202\t17342171\tHorn Island Affordable Housing Project\tCheck with carrier\t-10.5963550275\t142.250816896\t18200.0\t21139.0\n1878\t17251943\tDennington Rise Stg 5\tCheck with carrier\t-38.352813026\t142.449297856\t18790.2\t22615.8\n3444\t17289913\tAberline Rd\tCheck with carrier\t-38.3738969765\t142.517658976\t21756.2\t23199.4\n925\t17289902\tDales Rd\tCheck with carrier\t-38.373669001\t142.518738976\t22638.8\t22480.6\n512\t17322659\tLockhart River Subdivision\tCheck with carrier\t-12.779468007\t143.341381088\t15852.8\t23196.6\n3848\t17350700\tPound Road Colac\tCheck with carrier\t-38.352609008\t143.587985056\t19116.2\t25973.4\n366\t17325557\tAvenue Hill Stage 1\tCheck with carrier\t-37.517128029\t143.714459872\t22599.0\t25083.4\n490\t17348353\tAvenue Hill\tCheck with carrier\t-37.5230560025\t143.718275008\t22599.0\t25083.4\n2559\t17315214\tWhirrakee Rise\tCheck with carrier\t-37.022630040500005\t143.745378112\t19032.4\t23959.2\n251\t17338860\tBlind Creek Estate Stage 1\u00262\tCheck with carrier\t-37.521863992\t143.776407968\t21490.4\t25234.4\n745\tAYCA-EY6AL\tLucas\tReady for service\t-37.5495318428072\t143.781291126\t24126.4\t27354.2\n977\t17322671\tAlbert Park Stage 5\tCheck with carrier\t-37.5462279925\t143.926175168\t16252.8\t23810.2\n1145\t17291121\tAlbert Park Estate\tCheck with carrier\t-37.545134365\t143.926293888\t16252.8\t23810.2\n2208\t17172503\tLeslie St\tCheck with carrier\t-36.734016961\t144.137849056\t20406.0\t24514.6\n1124\t17321379\tRiver Estate Stage 1\tCheck with carrier\t-35.641221036000005\t144.140708896\t21557.0\t21359.2\n779\t17350455\tDiamond Hill Estate\tCheck with carrier\t-37.075002745\t144.185662816\t19753.2\t21396.6\n1809\t17322710\tDiamond Hill Estate Stage 1\tCheck with carrier\t-37.073412004\t144.187855936\t19753.2\t21396.6\n1534\t17327951\tMeadows Gate Estate\tCheck with carrier\t-36.754064005000004\t144.206179936\t20807.4\t25355.8\n3247\t17322492\t26 Hogan Rd Ballan\tCheck with carrier\t-37.590172023\t144.222298912\t19829.8\t23216.8\n1598\t17312334\tSheltons Run Estate\tCheck with carrier\t-36.822632035\t144.242695072\t24961.2\t24182.8\n252\t17344475\tQuilpie Industrial Estate\tCheck with carrier\t-26.6136479975\t144.249904096\t15961.0\t22922.0\n1916\t17385010\tGull Street\tCheck with carrier\t-23.4360569915\t144.267444992\t20118.4\t23642.2\n2015\t17313355\tCity Edge\tCheck with carrier\t-36.7823410145\t144.274704128\t21433.2\t21232.4\n2273\t17316942\tRubicon Rise\tCheck with carrier\t-36.7203580225\t144.284594048\t20764.8\t22383.6\n3600\t17325069\tForbes Estate\tCheck with carrier\t-36.733137027\t144.289112032\t20496.0\t23640.0\n4029\t17344416\t45 Grange Park Drive\tCheck with carrier\t-38.207573004000004\t144.300075136\t21463.8\t22789.8\n200\t17355158\tMulcahys Road\tCheck with carrier\t-37.389870007\t144.305286016\t21510.8\t23841.6\n1167\t17345814\tSeachange Estate\tCheck with carrier\t-38.312567016\t144.307171072\t18779.0\t24291.4\n2246\t17317330\tAttunga Drive - Torquay\tCheck with carrier\t-38.324816014\t144.313414912\t18601.2\t24023.2\n1245\t17322302\tWaurn Ponds Shopping Center Extension\tCheck with carrier\t-38.200569995500004\t144.318248992\t21557.4\t24097.4\n3799\t17343483\tCloverfields Estate Stage 3 (23L)\tCheck with carrier\t-36.6984380015\t144.322199008\t21848.8\t24028.8\n3418\t17327222\tThe Balcombe\tCheck with carrier\t-38.1599209815\t144.332318176\t22756.6\t25089.8\n20\t86\tArmstrong Creek\tReady for service\t-38.219653804\t144.337797674\t15169.8\t22975.8\n1948\t17335409\tMcIvor Forest\tCheck with carrier\t-36.7762920325\t144.339184096\t21121.2\t25320.2\n1840\t17337904\tTannery Lane\tCheck with carrier\t-36.8091260175\t144.344066048\t20557.8\t22205.4\n3985\t17348875\tStation Rd Estate Stage 1\tCheck with carrier\t-38.191331965\t144.355313888\t23283.0\t23715.0\n1662\t17378870\tLakeside Lara\tCheck with carrier\t-38.029809593500005\t144.424239392\t22316.2\t21701.2\n3039\tAYAA-GEY8N\tEstuary\tReady for service\t-38.2006256715735\t144.4564663635\t17837.2\t20761.8\n4072\t17265919\tKensington Estate\tCheck with carrier\t-38.1833610365\t144.478436032\t21226.6\t23088.6\n1813\t17237525\tRiedwell Field\tCheck with carrier\t-37.367166955\t144.533536928\t16993.6\t25024.8\n211\t51\tBellaview\tReady for service\t-38.172782464\t144.538409178\t19057.0\t23578.0\n169\t52\tBaywater\tReady for service\t-38.157866291\t144.549435001\t20779.4\t20996.2\n97\t46\tCurlewis Park\tReady for service\t-38.17030866\t144.552845283\t17598.8\t23743.6\n957\t17355577\tFersfield Road \u0026 Willowbank Road Gisborne\tCheck with carrier\t-37.4967479665\t144.592994176\t20022.8\t23103.4\n3644\t17335407\tJacksons Creek Development\tCheck with carrier\t-37.4815179895\t144.594649088\t16568.0\t24921.8\n3074\t17363612\tJacksons Creek Development\tCheck with carrier\t-37.480557007\t144.596644992\t17411.2\t23672.4\n828\t17327844\t85 Brooking Road Gisborne\tCheck with carrier\t-37.5056739945\t144.601026848\t19887.8\t22916.0\n3566\t17319963\tGisborne Fields\tCheck with carrier\t-37.504555022\t144.604842848\t19901.6\t22952.2\n16\t75\tHarpley\tReady for service\t-37.912572931\t144.625651148\t14821.4\t22920.6\n2680\t17326723\tBellemeade Estate\tCheck with carrier\t-37.878263014\t144.625687936\t20566.4\t22215.2\n1936\t17331945\t90 Wootten Road\tCheck with carrier\t-37.8545550235\t144.664134848\t17438.6\t25116.0\n701\t17317230\tTarneit Gardens\tCheck with carrier\t-37.8385389815\t144.675806048\t23625.4\t23220.6\n3150\t17324694\t20 Spavin Drive Sunbury\tCheck with carrier\t-37.561046770000004\t144.716660096\t23513.2\t22821.8\n301\t50\tEncore\tReady for service\t-37.712129506\t144.721116645\t16978.4\t24745.0\n259\t17362563\tMurray Banks\tCheck with carrier\t-36.092428007\t144.725100992\t18737.6\t27236.2\n410\t83\tStonybrook\tReady for service\t-37.690168202\t144.731148311\t18033.4\t26974.4\n3749\t17339304\tClara\tCheck with carrier\t-37.8538779605\t144.731247136\t18253.2\t23685.0\n2867\t17325636\tRomsey Heights Estate\tCheck with carrier\t-37.3445430275\t144.731518912\t14552.0\t23527.4\n884\t17340486\tWest Park Industrial Estate\tCheck with carrier\t-37.8022170065\t144.740836992\t24790.4\t23069.2\n74\t82\tModeina\tReady for service\t-37.741855443\t144.749644009\t21125.4\t20958.6\n692\t17355795\t2070 Romsey Rd\tCheck with carrier\t-37.3508019845\t144.756296992\t22793.8\t22775.8\n154\t43\tCallaway Park\tReady for service\t-37.79528303\t144.789941126\t17490.2\t25769.6\n704\t17364564\t42-44 WANAKA DRIVE\tCheck with carrier\t-37.714644981\t144.814979168\t18687.0\t26113.6\n1964\t17337482\tThe Royal\tCheck with carrier\t-37.795757047\t144.828100096\t21673.4\t21763.6\n136\t56\tTrillium\tReady for service\t-37.563836207\t144.890532129\t16352.6\t21360.2\n3560\t17337454\tLOT 7C LA SCALA AVE MARIBYRNONG\tCheck with carrier\t-37.781078037\t144.892842112\t18832.4\t24897.6\n1966\tAYCA-N2O57\tAston Development\tReady for service\t-37.5960129102159\t144.8961811773\t16591.6\t24307.6\n3284\tAYCA-11QA30\tHighlands\tReady for service\t-37.575675224673\t144.9021485828\t20108.0\t21282.6\n3492\tAYCA-TZF8W\tHighlands\tReady for service\t-37.575675224673\t144.9021485828\t20108.0\t21282.6\n944\t17359417\t1550 Pascoe Vale Road Coolaroo\tCheck with carrier\t-37.645206193\t144.933915968\t18803.4\t25872.6\n3932\t17363861\tPROPOSED WAREHOUSE AND OFFICE DEVELOPMENT\tCheck with carrier\t-37.642222772000004\t144.952765216\t20350.8\t25470.6\n924\t17147925\tMallia Subdivision\tCheck with carrier\t-37.4063609625\t144.963704896\t23570.6\t23414.2\n1134\t17342581\tMartha Cove Retirement Village\tCheck with carrier\t-38.317902564\t145.003154048\t19732.6\t23078.4\n2947\t74\tStudio Nine\tReady for service\t-37.825048166\t145.009793607\t18819.6\t24643.0\n2744\t17325541\tWarrenwood Place\tCheck with carrier\t-37.697374972\t145.033122976\t18270.8\t22158.4\n918\t17399469\tHolmesglen Private Hospital\tCheck with carrier\t-37.935096993500004\t145.050038016\t20554.4\t24837.4\n2039\t17325565\t27 Dromana Ave\tCheck with carrier\t-37.908066958\t145.066710976\t18461.8\t25232.4\n1567\t57000108\tVantage Point Stg 8A\tCheck with carrier\t-37.603442961\t145.107366848\t22522.8\t25804.4\n2474\t17335601\tBurwood Industrial\tCheck with carrier\t-37.857836979\t145.112176096\t19615.8\t24963.4\n2178\tAYAA-FT3V6\tPlenty River Views\tReady for service\t-37.5014584672942\t145.1131631456\t21746.4\t23521.6\n2467\t17325794\t22 OId Diamond Creek Road Development\tCheck with carrier\t-37.6785669655\t145.135469152\t19104.2\t27407.4\n792\t17324013\tGrassy Flat Road Diamond Creek\tCheck with carrier\t-37.6597870235\t145.155772096\t17092.6\t24506.6\n4071\t17233414\t57 Sandown Road\tCheck with carrier\t-37.948447981\t145.159863136\t20362.4\t20596.6\n44\t85\tSomerfield\tReady for service\t-38.013076203\t145.163782188\t19546.8\t23876.0\n3302\t17360458\tSilkwood Park Pty Ltd\tCheck with carrier\t-38.089080985\t145.164282848\t21498.8\t25298.6\n2598\t17347940\tSolsbury Fields - 3\tCheck with carrier\t-38.000904028\t145.165017952\t22071.6\t21393.8\n1866\t17335454\t272 Broad Gully Road Diamond Creek\tCheck with carrier\t-37.6570419935\t145.166466016\t19157.6\t24853.6\n1280\t17334695\t114-122 Perry Road Keysborough\tCheck with carrier\t-38.0043670245\t145.167187712\t22906.8\t21635.2\n1170\t17340714\tAscot Place Estate\tCheck with carrier\t-37.998458994\t145.168193888\t19901.6\t21063.0\n2896\t17328924\tBellbird Ridge Estate\tCheck with carrier\t-37.660500605500005\t145.169054528\t19157.6\t24853.6\n2904\t17358685\tRusty Gate Court\tCheck with carrier\t-37.664160035\t145.172454112\t20743.6\t24372.0\n3349\t17330545\t8-14 Bend Road Keysborough\tCheck with carrier\t-38.003074004\t145.181386016\t17568.4\t27239.6\n585\t17394457\tBoundary warehouses\tCheck with carrier\t-38.0843087805\t145.184269728\t19624.0\t23655.8\n3964\t17328855\tRyman Healthcare Retirement Village\tCheck with carrier\t-37.9130449565\t145.188146176\t17121.0\t24392.0\n283\t17354521\tDandenong LOGIS\tCheck with carrier\t-38.005410961\t145.192518016\t20547.4\t25896.0\n1994\t17231931\tProposed Development Site\tCheck with carrier\t-38.0908520085\t145.195378912\t18077.8\t24336.4\n2067\t17347819\t205 McCormicks Road\tCheck with carrier\t-38.0995070485\t145.197389888\t17982.8\t21799.6\n402\t17296036\tINNOVATION PARK\tCheck with carrier\t-38.042261999000004\t145.219498912\t20229.4\t25023.0\n49\t30\tMarriott Waters\tReady for service\t-38.077606995\t145.239757322\t23739.8\t26873.6\n104\t25\tCasiana Grove\tReady for service\t-38.117325487\t145.241297532\t20422.6\t24134.0\n1230\t17351928\tThompsons Base Development\tCheck with carrier\t-38.083501977000005\t145.242636128\t23400.2\t25377.4\n1287\t17351927\tThompsons Base Development\tCheck with carrier\t-38.0816549925\t145.242957952\t23400.2\t25377.4\n3395\t17239339\tAylmer Road Lynbrook\tCheck with carrier\t-38.060645042000004\t145.254926176\t19417.8\t22943.8\n3979\t17314518\t75 OLIVE ROAD HAMPTON PARK\tCheck with carrier\t-38.044598031\t145.262927168\t24506.8\t23547.6\n3438\t17249496\tHuntingfield Estate\tCheck with carrier\t-38.105596971000004\t145.288888928\t17146.8\t25789.6\n150\t71\tMayfield\tReady for service\t-38.125209668\t145.289746189\t23298.2\t21822.0\n818\t17331693\tHunt Club Village Shopping Centre\tCheck with carrier\t-38.100317034\t145.292970976\t16429.0\t25297.4\n3050\t17354918\t17-31 Rhyll Newhaven Road Rhyll\tCheck with carrier\t-38.465065994\t145.298382016\t19430.2\t26353.2\n1301\t17316308\tKalman Drive\tCheck with carrier\t-37.8382258875\t145.301000448\t21173.8\t27645.4\n1828\t17336223\tLondon Park Estate\tCheck with carrier\t-37.9987440235\t145.309782976\t22235.4\t23468.8\n3320\t17340214\tWilliam\tCheck with carrier\t-38.083541049000004\t145.315316896\t18431.4\t24836.2\n3515\tAYCA-FKW4J\tSanctuary Springs\tReady for service\t-38.0649895202462\t145.3154675618\t21558.0\t24539.2\n2076\t17363094\tKilthys Warehouse Development\tCheck with carrier\t-37.815880089000004\t145.321449952\t18155.4\t24712.4\n3210\t17345420\tShopping on Clyde\tCheck with carrier\t-38.118677988\t145.321542048\t19565.4\t20344.4\n107\t49\tPasadena\tReady for service\t-38.1199733\t145.326901918\t19454.2\t20175.2\n3885\t17343925\t132 Maroondah Highway\tCheck with carrier\t-37.7622612985\t145.328010112\t21186.2\t25912.6\n3187\t17370042\tWERONA WATER ESTATE\tCheck with carrier\t-38.071844017000004\t145.332412928\t18274.4\t27182.2\n2597\t17327906\tGera Estate - Berwick\tCheck with carrier\t-38.070335971\t145.334379968\t19783.2\t26882.8\n3498\t17356070\tWoolamai House Stage 2\tCheck with carrier\t-38.520231995\t145.343211008\t14032.4\t26760.8\n4005\t17325310\tMinta Farm\tCheck with carrier\t-38.061360196500004\t145.357303456\t26885.6\t24420.2\n2881\t17325315\tMinta Farm\tCheck with carrier\t-38.0624521405\t145.360061792\t27242.6\t23225.0\n1059\t17332050\tGrammar Park Estate\tCheck with carrier\t-36.332082002\t145.411135936\t16532.6\t26127.2\n2385\t17030156\tSavannah Life Style Resort\tCheck with carrier\t-17.0024740145\t145.438566848\t21241.8\t21837.4\n732\t17320603\tAmaroo Park - Stage 5\tCheck with carrier\t-16.9941300335\t145.438629856\t23605.4\t21775.2\n2271\t17336830\tAmaroo Park\tCheck with carrier\t-16.996403961000002\t145.441554112\t23605.4\t21775.2\n2717\t17032843\tPort Pacific - Stages 3 \u0026 4\tCheck with carrier\t-16.5396539645\t145.472270048\t19767.8\t25099.6\n3820\t17334306\tAztec Park - Stages 2 \u0026 3\tCheck with carrier\t-17.222679995500002\t145.475543168\t21052.0\t22430.4\n1385\t17367344\tMain Street Retirement Village\tCheck with carrier\t-38.074795026000004\t145.477434976\t16949.2\t26107.6\n607\t17328997\tCar Mega Mart Stage 2\tCheck with carrier\t-38.095363992\t145.485427008\t19556.8\t23263.4\n1268\t17039218\tUrban Res Sub-div - stage 4\tCheck with carrier\t-17.2725159615\t145.489861088\t19801.2\t23483.8\n367\t17335954\tMalcolm Road Subdivision\tCheck with carrier\t-17.191856979\t145.562276896\t22370.4\t24740.8\n1261\t17335661\twhitehill\tCheck with carrier\t-38.2685959755\t145.565706976\t24475.4\t25821.8\n1577\t17316514\tWhitehill\tCheck with carrier\t-38.2697610315\t145.569474016\t24475.4\t25821.8\n604\t17361986\tBalmattum Hill Estate\tCheck with carrier\t-36.751287007\t145.583227008\t22603.6\t19970.8\n197\t17331968\tRavendene Estate\tCheck with carrier\t-38.041282535\t145.593441376\t19547.6\t25945.4\n3461\t17219850\tCambridge Estate Wonthaggi\tCheck with carrier\t-38.592255954500004\t145.609083008\t19928.2\t24024.0\n1459\t17337874\tParadise Point\tCheck with carrier\t-16.7451679855\t145.662762976\t23177.8\t23202.6\n2001\t17326820\tBluewater Park Estate\tCheck with carrier\t-16.806385984000002\t145.704282848\t19054.6\t24608.0\n2183\t17339829\tOrchid Glen\tCheck with carrier\t-17.0206939985\t145.710511008\t22189.2\t23423.0\n1644\t17356221\tMillhouse Estate\tCheck with carrier\t-17.023229997\t145.713764896\t21728.6\t23671.6\n1519\t17288102\tKanimbla Heights - Stage 6b\tCheck with carrier\t-16.919229324\t145.718376128\t18848.6\t25570.0\n2659\t17361993\tKanimbla Heights\tCheck with carrier\t-16.9204979985\t145.722024992\t19198.4\t24264.2\n3948\t17323347\tTimbertop Estate Stage 1\tCheck with carrier\t-38.139908033000005\t145.853147872\t22852.2\t22809.0\n2992\t17134077\tGerrard Street\tCheck with carrier\t-38.122315014\t145.853299072\t17995.8\t23827.2\n2596\t17345180\tMcNeilly Road\tCheck with carrier\t-38.1304232125\t145.863670176\t17995.8\t23827.2\n3595\t17365099\tWingrove Gardens\tCheck with carrier\t-41.0677660035\t145.882955008\t21721.0\t25104.4\n1627\t17344757\tTarago Gardens\tCheck with carrier\t-38.0234009715\t145.957138912\t19757.0\t24433.6\n3611\t17322139\tO\u0027Loughlin Drive Development\tCheck with carrier\t-36.5611010315\t145.970186048\t22012.2\t24630.4\n3778\t17323874\tThe Vineyard Estate Stage 2\tCheck with carrier\t-36.0086229885\t146.026550176\t18739.0\t22350.2\n442\t17244744\tPremier Gardens Estate\tCheck with carrier\t-34.2963140485\t146.076527872\t20610.2\t22313.0\n3230\t17323933\tMadden Drive Subdivision\tCheck with carrier\t-34.2706339765\t146.086611136\t21240.0\t22922.4\n369\t17203252\tRedgum Rise Estate\tCheck with carrier\t-37.048975021000004\t146.092817888\t23353.6\t26892.2\n230\t17351673\tHighlands Estate\tCheck with carrier\t-37.0380393935\t146.108255776\t19002.2\t24612.2\n1911\t17331068\tThe Junction\tCheck with carrier\t-36.0311395975\t146.170924448\t17893.0\t23114.2\n2858\t17337319\tAmaroo Way/Narracan Gardens\tCheck with carrier\t-38.175497001000004\t146.274783136\t16613.8\t23968.6\n3344\t17319256\tCurrawong Estate\tCheck with carrier\t-36.350441994\t146.290195072\t26157.8\t22983.4\n1638\t17320207\tArlington Park Estate Stage 3\tCheck with carrier\t-36.3368999755\t146.293669088\t23585.2\t24136.0\n1044\t17238671\tArlington Park Estate (RAPA)\tCheck with carrier\t-36.336443044\t146.293751168\t23585.2\t24136.0\n84\t17348174\tCaviar Drive\tCheck with carrier\t-26.387840605\t146.298855616\t19610.4\t24114.0\n286\t17319634\tWaldara Park Estate\tCheck with carrier\t-36.334991978\t146.304649088\t20922.2\t23029.2\n1600\t17357068\tIsabella Rise Estate\tCheck with carrier\t-34.540128897\t146.401035328\t19917.4\t25553.4\n2835\t17265233\tMonash Parklands 34 Lots\tCheck with carrier\t-38.319272008\t146.425676032\t17382.2\t23206.6\n1587\t17349718\tParkridge Subdivision Stage\tCheck with carrier\t-38.207695955\t146.534032096\t20377.8\t22357.0\n3689\t17368928\tMarshalls Retirement Estate\tCheck with carrier\t-38.179927973\t146.553630112\t21075.0\t24671.8\n2334\t17247474\tCorella Woods - Stage 3\tCheck with carrier\t-34.7357330045\t146.558649952\t17126.6\t25474.4\n2113\t17341606\tRodeo Drive\tCheck with carrier\t-18.718529038\t146.596092128\t16752.4\t24835.2\n1486\t17353529\tGolf Links Estate\tCheck with carrier\t-35.981931429\t146.642783392\t22409.6\t24025.0\n3883\t17357885\tRoss River Estate\tCheck with carrier\t-19.369743024\t146.721807008\t19879.0\t22845.6\n2124\t17362609\tThorn Street Stage 1\tCheck with carrier\t-19.285881007\t146.731355008\t16283.8\t23642.8\n1709\t17331734\tMountain View\tCheck with carrier\t-36.316828974\t146.831649856\t19423.8\t23562.6\n1873\t17325495\tPioneer Estate Stage 2\tCheck with carrier\t-35.9610039885\t146.884812128\t19177.4\t23228.4\n1648\t17316437\tMaryland Estate\tCheck with carrier\t-36.0769552915\t146.920628608\t21888.0\t22714.8\n2607\t17341211\tMountain Rise Stages 3\u00264\tCheck with carrier\t-36.0450230335\t146.956290112\t21140.4\t28032.8\n1674\t17362290\tHillcrest\tCheck with carrier\t-37.948975009\t146.981056992\t21276.2\t24546.6\n3275\t17359152\tKensington Gardens Estate\tCheck with carrier\t-36.055947006000004\t146.991750016\t18847.6\t21244.4\n3512\t17344213\tKensington Gardens Estate\tCheck with carrier\t-36.055142996\t146.996651872\t19500.6\t20794.6\n261\t57000359\t(RAPA) Berne Court\tCheck with carrier\t-41.355567007\t147.001377952\t21125.0\t24516.4\n956\t17348299\tBeaumount Park\tCheck with carrier\t-36.047103303\t147.020243776\t19458.4\t20622.2\n124\t17339141\tSwan Bay Estate\tCheck with carrier\t-41.282250026999996\t147.034243072\t23226.6\t22963.4\n173\t17353506\tGrandevue Estate\tCheck with carrier\t-38.1822589915\t147.100400992\t18188.4\t24437.8\n622\t17337045\talanvale gardens\tCheck with carrier\t-41.398637042\t147.128419072\t21282.6\t23578.4\n1140\t57000599\tGagebrook\tCheck with carrier\t-42.750820985999994\t147.276816128\t20823.4\t24400.2\n142\t17347475\t324 Tea Tree Rd Brighton - Stages 3\u00264\tCheck with carrier\t-42.6948000075\t147.283779008\t17065.4\t25494.8\n675\t17314100\tHilltop Estate\tCheck with carrier\t-35.162060047000004\t147.343695136\t17973.4\t24297.6\n1271\tAYCA-LPLGZ\tEstella Rise Subdivision\tReady for service\t-35.0715734622821\t147.3445574225\t21061.0\t27063.4\n1494\t17336926\tUrana Street\tCheck with carrier\t-35.1255779915\t147.345990112\t14082.2\t23164.4\n3007\t17319281\tStage 2a and 2b Kaloona Drive\tCheck with carrier\t-35.1581720315\t147.347543168\t18907.8\t25583.6\n1487\t17346540\tBourkelands\tCheck with carrier\t-35.158356994500004\t147.349850048\t18907.8\t25583.6\n3901\t17324632\tBulla Drive Subdivisino\tCheck with carrier\t-42.8877430195\t147.447786976\t22454.2\t24347.2\n237\t17271426\tWoodscott\tCheck with carrier\t-34.4601080165\t147.523613056\t27267.4\t23888.0\n3912\t17342101\tJohn Potts Drive\tCheck with carrier\t-34.8641990025\t147.574503008\t23433.2\t23702.0\n315\t17320872\tThe Beacons\tCheck with carrier\t-37.777715995\t147.604363936\t19169.6\t25338.8\n419\t17289791\tEagle Bay Rise\tCheck with carrier\t-37.896200096\t147.674397248\t21096.8\t23734.2\n91\t17347518\tRiver Bend\tCheck with carrier\t-37.800278003\t147.737944096\t20888.2\t21386.6\n1333\t17362758\tBearham Chase\tCheck with carrier\t-37.883197001\t147.837238016\t20405.4\t26245.0\n4034\t17291049\tTumbarumba Shire Council\tCheck with carrier\t-35.7800642205\t147.998795136\t21140.4\t24727.6\n871\t17319025\tIsaac Views\tCheck with carrier\t-21.995396002\t148.066696096\t17956.2\t24375.4\n1806\t17287348\tIsaac Views Estate - st 6a\tCheck with carrier\t-22.000654978500002\t148.072948928\t15920.2\t24743.0\n1520\t17336363\tRosewood Estate\tCheck with carrier\t-33.1433890165\t148.154959072\t21776.0\t24732.6\n2362\t17368897\tStage 3 Condo Rd\tCheck with carrier\t-33.1333859925\t148.159583008\t21080.8\t25062.6\n400\t17248287\tNogoa Rise Estate \tCheck with carrier\t-23.548365996\t148.161332896\t23657.4\t24525.8\n1708\t17293572\tEast Parkes Estate Stage 1-2\tCheck with carrier\t-33.1288100175\t148.192278848\t18176.4\t23352.4\n3148\t17322737\tWhitsunday Gardens - stage 3bi\tCheck with carrier\t-20.4112170075\t148.580746912\t20355.4\t24435.8\n1839\t17312707\tHolmwood Estate Stage 14\tCheck with carrier\t-32.277535015\t148.623234848\t27925.4\t26002.6\n614\t17316951\tKookaburra Rise - Stg 3\u00264\tCheck with carrier\t-20.3102260255\t148.659717952\t18178.6\t25828.6\n2172\t17320036\tWhitsunday Acres Stage 1\tCheck with carrier\t-20.304853015\t148.665412096\t18575.2\t26968.2\n3300\t17351339\tWhitsunday Lakes Estate\tCheck with carrier\t-20.292676019\t148.683666976\t23162.6\t25753.0\n3968\t17351336\tWhitsunday Lakes Estate\tCheck with carrier\t-20.2928640345\t148.684831936\t23162.6\t25753.0\n2222\t17323446\tShelley Sands Estate\tCheck with carrier\t-20.279448001000002\t148.689879136\t19680.6\t23522.8\n1629\t17259697\tCayman private sub-division (31L)\tCheck with carrier\t-20.284002997\t148.699397152\t18807.8\t23627.2\n2003\t17341231\tWhitsunday Bay\tCheck with carrier\t-20.278890984500002\t148.726459072\t16639.6\t25719.4\n662\t17316398\tCurrey Street Roma\tCheck with carrier\t-26.5661309695\t148.773735008\t18270.2\t23280.2\n1949\t17333641\tHatton Park Stage 4\tCheck with carrier\t-34.848501031\t148.901882048\t19927.8\t24390.6\n3454\t17326711\tKenny\u0027s Rd Marian\tCheck with carrier\t-21.146948003000002\t148.957558912\t21149.4\t21027.0\n42\t17352628\tWalgrove Stage 3\tCheck with carrier\t-34.879298351\t148.972882176\t22662.8\t21091.6\n347\t17341714\tSilverdown Heights\tCheck with carrier\t-33.263683028\t149.060066048\t18813.8\t22927.4\n1535\t17336581\tPloughmans Hill Stage 11\tCheck with carrier\t-33.2716969875\t149.063045056\t19341.4\t25074.8\n725\t17320784\tThe Poplars Estate\tCheck with carrier\t-33.277665957\t149.068000096\t19572.0\t26750.2\n4055\t17313295\tNorthpoint Stage 3\tCheck with carrier\t-33.247855982000004\t149.090114176\t20090.0\t23946.8\n3639\t17320694\tKearneys Drive Estate\tCheck with carrier\t-33.262315027\t149.091332032\t19418.0\t20423.8\n2269\t17333880\tLindwall Street\tCheck with carrier\t-21.115033024\t149.143233952\t17707.2\t26377.4\n2094\tAYCA-M8PR7\tRichana Estate\tReady for service\t-21.0709933786496\t149.1535350531\t24229.6\t26399.0\n3296\t17327988\tMackay-Bucasia Road Mackay\tCheck with carrier\t-21.062112035000002\t149.154784928\t21406.0\t26063.2\n3145\t17242437\tSeaview Estate\tCheck with carrier\t-21.035634021\t149.158667872\t22745.2\t25387.4\n99\t17362862\tGillkrest\tCheck with carrier\t-33.508577629\t149.187270976\t24367.0\t21610.0\n1383\tAYCA-RJUKI\tGoogong Township\tReady for service\t-35.4190096435814\t149.231910587\t20986.2\t26356.0\n808\t17346283\tBellevue Hill Estate\tCheck with carrier\t-32.592495776\t149.562792736\t22020.2\t24609.0\n1575\t17333732\tLot1 DP1036575\tCheck with carrier\t-32.597813971\t149.570006048\t19877.0\t25922.0\n2583\t17327740\tElouera Estate\tCheck with carrier\t-32.59837404\t149.572734112\t19877.0\t25922.0\n496\t17357936\tBroadview Estate\tCheck with carrier\t-32.6346520035\t149.594210016\t22096.0\t21108.0\n2161\t17323085\tWentworth Drive\tCheck with carrier\t-33.398798037\t149.604270848\t23601.0\t24805.2\n3330\t17333461\tRoxburgh Downs Estate Stage 6\tCheck with carrier\t-33.405611587\t149.614307648\t21616.6\t23451.2\n1582\t17204300\tAshworth Drive Kelso\tCheck with carrier\t-33.4156929955\t149.622378016\t19947.8\t23348.4\n2180\t17317593\tOrchard Hills 5\u00266\tCheck with carrier\t-33.4170839735\t149.623206848\t20413.2\t22149.2\n3021\t17326748\tlot 21 Rawlinson St Bega\tCheck with carrier\t-36.6865259995\t149.844751008\t18791.2\t21723.4\n66\t17317496\tRoche Creek Road Wandoan\tCheck with carrier\t-26.114619951\t149.992989856\t18565.4\t23261.2\n125\t17271033\tMarshmead\tCheck with carrier\t-31.0154570045\t150.223744992\t18726.8\t22401.8\n2964\t17345198\tPark View Estate\tCheck with carrier\t-30.995583842000002\t150.253502048\t18000.0\t23277.8\n449\t17327746\tBindea Estate\tCheck with carrier\t-30.993058980500003\t150.264839168\t20145.2\t23028.6\n2518\t17323603\tThe Abbey Nursing Home\tCheck with carrier\t-34.472855978\t150.468180832\t18334.8\t24045.0\n1115\t17336871\tRiverside Estate\tCheck with carrier\t-23.3182510265\t150.492117952\t17944.2\t24488.6\n3649\t17342601\tGerman street\tCheck with carrier\t-23.330289957\t150.536680928\t20043.2\t25268.6\n431\t17356160\tWoodridge Estate Stage 1B\tCheck with carrier\t-34.837832969000004\t150.548339168\t16677.2\t23567.4\n1396\t17346043\tAhris Hutrof House Additions and Renovations\tCheck with carrier\t-34.203618004\t150.553806848\t18919.8\t23286.4\n631\t17329919\t800 MONTPELIER DRIVE\tCheck with carrier\t-34.084847967\t150.570492128\t18547.8\t23334.0\n1334\t17333665\t800 Montpelier Drive stage 2\tCheck with carrier\t-34.084847967\t150.570492128\t18547.8\t23334.0\n3174\t17326793\tBluegum Lifestyle Resort\tCheck with carrier\t-34.2097980215\t150.579078848\t21655.4\t22306.4\n2338\t17333919\tJamieson Run Estate Stg 1\tCheck with carrier\t-34.8535929525\t150.587476928\t21963.8\t23583.8\n430\t17349312\tMOUNTAIN VIEW ESTATE\tCheck with carrier\t-33.912672574\t150.621471712\t22901.0\t24578.8\n1029\t17320410\tBottle Tree Estate - stage 3a\tCheck with carrier\t-26.7552459985\t150.625248128\t21381.2\t27001.2\n3475\tAYCA-XWXVN\tChinchilla Park Estate\tReady for service\t-26.756669070223\t150.6296129218\t19028.8\t27000.2\n4000\t17198443\tWorrigee Triangle\tCheck with carrier\t-34.890688986\t150.634910176\t18167.2\t25579.0\n2228\t17315293\tCurlew Grove\tCheck with carrier\t-23.133402005\t150.720280928\t22657.6\t24169.4\n2910\tAYCA-QMBSP\tCentral Park Estate\tReady for service\t-23.1385814546852\t150.7344138995\t21937.6\t23426.4\n2286\t17359829\t276-280 Caddens Road\tCheck with carrier\t-33.779790996\t150.744220992\t18774.4\t25343.0\n4083\t17386558\tCaddens Meadow\tCheck with carrier\t-33.7785100005\t150.746455008\t20211.4\t24990.8\n432\tAYAA-GDLZ8\tHarrington Grove\tReady for service\t-34.0194031212073\t150.7532483145\t18021.6\t23293.2\n110\t17383368\tHumewood Pl Luddenham\tCheck with carrier\t-33.848964993500005\t150.755635008\t16858.6\t21729.8\n437\t17327379\tTwin Creeks Golf Couse Estate\tCheck with carrier\t-33.845982479\t150.757997056\t15609.0\t22854.2\n3069\t17341335\t129 Turner Road Gregory Hills\tCheck with carrier\t-34.031113644\t150.770572576\t20335.6\t24605.2\n3083\t17218635\tPP3RD_TEL HERITAGE WAY (RAPA)\tCheck with carrier\t-34.087264011500004\t150.779486176\t22037.4\t25165.8\n19\t40\tThe Hermitage\tReady for service\t-33.999267672\t150.782646178\t20850.6\t25651.8\n2658\t17321008\tUNIVERSAL PROPERTY GROUP PTY LTD\tCheck with carrier\t-33.7269369585\t150.785634976\t18905.0\t23682.8\n734\t17320331\tBeachside Residential - Stage A\tCheck with carrier\t-23.187879991\t150.790339072\t24005.4\t23059.8\n850\t17252433\tChurchfield\tCheck with carrier\t-34.102176029\t150.790938848\t21345.0\t22338.4\n3158\t17343867\tMinchinbury estate\tCheck with carrier\t-33.779743025500004\t150.808760992\t15632.6\t22142.2\n1242\t17334897\tMinto Renewal Project\tCheck with carrier\t-34.0357680035\t150.849254176\t16671.2\t23823.6\n879\t17334900\tMinto Renewal Project\tCheck with carrier\t-34.036637041\t150.851014912\t16671.2\t23823.6\n2863\tAYCA-15AMU8\tStonecutters Ridge\tContracted\t-33.7177114057515\t150.8535368148\t23446.2\t24948.8\n3288\t17337642\tCroatia 15100\tCheck with carrier\t-33.962057991\t150.861657952\t20251.4\t22031.8\n3433\t17385322\tBernera Business Park\tCheck with carrier\t-33.935892997\t150.868719008\t18765.0\t24241.0\n1493\tAYCA-195ASM\tRemembrance Drive\tUnder construction\t-33.9597162285351\t150.8710786256\t16238.0\t24148.6\n420\t17382301\tLyn Parade\tCheck with carrier\t-33.936563992\t150.881592992\t16525.6\t25997.0\n3589\t17328168\tRiver View Estate Stage 2\tCheck with carrier\t-31.0763660345\t150.910571168\t16277.8\t24160.2\n773\t17328401\tJOHNSTON STREET\tCheck with carrier\t-31.072084746\t150.910704736\t18664.2\t26519.4\n2350\t17379944\t1 Picrite Close\tCheck with carrier\t-33.811769393\t150.919404096\t18115.8\t22403.8\n58\t17350712\tThe Ridge\tCheck with carrier\t-33.541005243\t150.919743232\t18206.0\t22667.6\n187\t17316655\tForest Hills\tCheck with carrier\t-31.032246957\t150.928926112\t19588.6\t23922.8\n2355\t17321293\t43 Arnold Avenue Kellyville\tCheck with carrier\t-33.7133199595\t150.938934848\t15897.6\t23333.2\n2956\t17189407\tWhite Gum Place North Kellyville\tCheck with carrier\t-33.679025011\t150.939816128\t21324.6\t25694.8\n3162\t17322878\tArnold\tCheck with carrier\t-33.713474046\t150.941328832\t18030.6\t22308.0\n3221\t17321359\tBarry Road DUP 17320348?\tCheck with carrier\t-33.678825026\t150.943295872\t18944.6\t26230.6\n1736\t17337999\tSubdivision of 20 and 22 Arnold Ave Kellyville Stage 2\tCheck with carrier\t-33.7162920215\t150.943479136\t18100.0\t22356.4\n3318\t17331495\tArnold Ave\tCheck with carrier\t-33.7160670245\t150.944283008\t18100.0\t22356.4\n3403\t17339367\t16 ARNOLD\tCheck with carrier\t-33.713781035000004\t150.944739136\t18030.6\t22308.0\n1369\t17330424\tBarry Road\tCheck with carrier\t-33.6819629775\t150.946516096\t22717.8\t26238.4\n2726\t17313745\tSUBDIVISION OF 11A BALMORAL RD 17313745 17313746 17313747 1731374\tCheck with carrier\t-33.723356043\t150.947177056\t19416.0\t21976.6\n2986\t17331128\tIntegrated Housing Development and Community Title Subdivision\tCheck with carrier\t-33.723355858\t150.947177056\t19416.0\t21976.6\n1173\t17328400\t23-27 Arnold Ave Kellyville\tCheck with carrier\t-33.712149964\t150.947337952\t19521.4\t22532.0\n2468\t17280046\tCurtis Road\tCheck with carrier\t-33.691991032000004\t150.948700928\t22717.8\t26238.4\n1435\t17349233\tEden Parc Estate\tCheck with carrier\t-33.691698991\t150.949037888\t22717.8\t26238.4\n2230\t17334505\t34 Hezlett Road\tCheck with carrier\t-33.697017981500004\t150.950274848\t22704.8\t27237.0\n2699\tAYAA-FPPX0\tBella Vista Waters\tReady for service\t-33.7269246623779\t150.9508488568\t17036.6\t23805.6\n3844\t17327322\tHector Court 15130\tCheck with carrier\t-33.720334012500004\t150.950887936\t19643.0\t21717.4\n3227\t17342791\t17A \u0026 19 Memorial Avenue Kellyville\tCheck with carrier\t-33.715989713\t150.951688576\t21244.8\t22107.4\n1447\t17316366\t110046 4 Arnold Ave Kellyville\tCheck with carrier\t-33.716040033\t150.952194016\t21244.8\t22107.4\n1537\t17326684\tFormer B2 Subdivision\tCheck with carrier\t-33.7509500325\t151.108926848\t20155.6\t25084.6\n630\t17319550\t32-40 Cawarra Road\tCheck with carrier\t-34.0320390325\t151.129942912\t16521.8\t22710.8\n2503\tAYCA-15YSTQ\tEDGELEA\tReady for service\t-33.7869784854918\t151.162293241\t15834.4\t25903.2\n566\t17325519\tBraeburn Estate\tCheck with carrier\t-32.5464440405\t151.173253088\t22274.6\t22785.0\n3532\t17157871\tColonial Credit P/L\tCheck with carrier\t-33.7328599925\t151.224811008\t23788.6\t25856.4\n786\t17325301\tChapple Street Business Park\tCheck with carrier\t-23.842427048\t151.245870112\t20490.6\t25446.6\n180\t17123438\tSouthern Cross - Stage 1 (52L)\tCheck with carrier\t-27.214454996500002\t151.272823008\t21934.8\t22321.0\n2669\t17354691\tEllalong Park Estate\tCheck with carrier\t-32.9122780255\t151.314594112\t24751.4\t22494.4\n1046\t17333659\tGrange Estate Cessnock\tCheck with carrier\t-32.823631982500004\t151.373909152\t17499.6\t22141.2\n254\t17358725\tRusty Lane Branxton\tCheck with carrier\t-32.638311988\t151.382246048\t17562.6\t23902.8\n3552\t17325051\tCedar Cutters Cres (was Investa Stage 3)\tCheck with carrier\t-33.081042962\t151.443740896\t20994.2\t22378.6\n565\t17347407\tAspire at Weston\tCheck with carrier\t-32.808095997\t151.447782976\t22171.0\t23258.2\n2145\t17343311\tVexhart Johns Rd\tCheck with carrier\t-33.2725794375\t151.462464128\t27173.2\t23961.4\n253\t17320060\tWindella Ridge P/L\tCheck with carrier\t-32.697926018000004\t151.473242176\t16873.6\t26637.2\n2738\t17318003\tProposed Medium Density Development\tCheck with carrier\t-33.254276037000004\t151.487605088\t21616.0\t25407.8\n2019\t17162649\tHeddon Leigh\tCheck with carrier\t-32.7974810485\t151.513395136\t22679.8\t23476.8\n2939\t17331462\tHeddon Leigh (North)\tCheck with carrier\t-32.7944210375\t151.516996928\t20922.8\t24228.8\n3941\t17191562\tDiamond Circuit Rutherford\tCheck with carrier\t-32.712130984\t151.540757984\t17814.4\t24081.8\n627\t17340599\tLeisure Life Village - 3 Parkside Pde Toronto\tCheck with carrier\t-33.027171036\t151.566399008\t16374.4\t22490.6\n2414\t17316461\tBolwarra Heights Estate\tCheck with carrier\t-32.699160005\t151.572567968\t20594.0\t23414.0\n1526\t17349122\tResidential Development Bolwarra\tCheck with carrier\t-32.7044079925\t151.577093152\t20594.0\t23414.0\n2323\t57100063\tHunterglen Stage 1\tCheck with carrier\t-32.7028031545\t151.579122752\t20050.4\t24795.6\n4033\t17325050\tHampton Street Toronto (DUP 17325045)\tCheck with carrier\t-33.023250997\t151.603041952\t21774.8\t24821.8\n1250\t17334682\tValley View Estate\tCheck with carrier\t-32.734979002\t151.616116096\t21791.8\t25328.0\n434\tAYCA-WHTZS\tFarragher subdivision\tReady for service\t-32.765554999864\t151.6233730003\t18055.6\t25171.4\n3139\t17337517\tPR - KARINYA\tCheck with carrier\t-32.771159008\t151.638796096\t15208.0\t23994.2\n605\t17333322\tMacquarie Heights Estate\tCheck with carrier\t-32.944256996\t151.639039072\t20695.6\t22385.2\n3376\t17329212\tNotting Hill\tCheck with carrier\t-32.767355963\t151.646644096\t16367.2\t25619.0\n2591\t17327349\tNikkinba Stage 10\tCheck with carrier\t-32.8854419995\t151.647792128\t19342.0\t24022.0\n277\t17332860\tPalm Lake Resort\tCheck with carrier\t-32.867030966\t151.790780896\t19174.4\t21206.4\n342\t17341371\tLinton Hill Stage 3\tCheck with carrier\t-27.470484988000003\t151.822847168\t23210.6\t26933.2\n240\t17354065\tLinton Hill\tCheck with carrier\t-27.466329999\t151.827287008\t22133.6\t25616.6\n194\t17333083\tWaterside Pastures\tCheck with carrier\t-32.7579690075\t151.828084992\t19992.6\t26454.6\n245\t17147547\tSummit View\tCheck with carrier\t-26.512940972\t151.867271872\t21032.6\t26598.2\n1894\t17336497\tWyreema East\tCheck with carrier\t-27.656846995000002\t151.867438912\t19476.8\t22420.8\n946\t17341536\tWyreema Estate\tCheck with carrier\t-27.654777992\t151.869831136\t19476.8\t22420.8\n2125\t17344545\tWyreema East\tCheck with carrier\t-27.656469003\t151.872665056\t22136.4\t21400.6\n1864\t17344556\tWyreema Estate\tCheck with carrier\t-27.6543909905\t151.872923168\t22136.4\t21400.6\n1150\t17315008\tHigland Park Estate - stage 3\tCheck with carrier\t-27.410349961\t151.882904896\t17262.4\t24839.8\n842\t17117399\tKooringa Valley - stage 1\tCheck with carrier\t-27.5173340365\t151.901484128\t20625.0\t25132.2\n2466\t17326017\tGlenview Estate - stage 1\tCheck with carrier\t-27.565190003\t151.908231968\t21525.2\t22908.2\n3538\t17332744\tParkview - stage 2\tCheck with carrier\t-27.565190003\t151.908231968\t21525.2\t22908.2\n2655\t17344627\tHursley Road Subdivision\tCheck with carrier\t-27.558697132000002\t151.909334272\t17727.0\t22709.2\n2617\t17337528\tGreenwattle Street - stages 3\u00264\tCheck with carrier\t-27.567866971500003\t151.914113984\t20747.2\t25797.2\n1585\t17316253\tKalimna Park - stage 11\tCheck with carrier\t-27.436237344000002\t151.939275584\t20598.2\t25477.8\n1811\t17335997\tCherbourg Subdivision Area A\tCheck with carrier\t-26.2953469875\t151.950425056\t19094.0\t25081.0\n2017\t17313477\tTarlington Street\tCheck with carrier\t-27.609534984\t151.958417056\t23491.0\t24086.2\n3702\t17328622\tBateswood Heights - stage 8\tCheck with carrier\t-27.605366009\t151.967849056\t20048.0\t24674.6\n396\t17342032\tHighfields Views\tCheck with carrier\t-27.450900814\t151.993666816\t18346.4\t24541.0\n494\t17338330\tAmorosa Gardens\tCheck with carrier\t-27.4216899615\t152.000035936\t18346.4\t24541.0\n2028\t17340989\tOrchard Grove Estate\tCheck with carrier\t-28.2276170055\t152.002726912\t20479.8\t24405.6\n2284\t17321750\tLatitude One\tCheck with carrier\t-32.7614550365\t152.078033152\t24694.0\t23673.2\n1414\t17341546\tBella Vista\tCheck with carrier\t-27.544051977000002\t152.127893152\t18940.8\t24307.8\n3443\t17333448\tBranyan by the River - stages 2a2b\tCheck with carrier\t-24.896214002500002\t152.298651968\t20493.8\t23109.4\n3738\t17323825\tRiver Springs Dr Sub-division - st 1\u00262\tCheck with carrier\t-24.881373006500002\t152.302682176\t19159.6\t23032.2\n1790\t17333776\tJealous Road - stages 2a\u00262b\tCheck with carrier\t-24.8497219855\t152.378529856\t20734.4\t22745.4\n1594\t17336810\tCoral Gardens Stage 7\tCheck with carrier\t-24.8543440255\t152.392350976\t24139.0\t20990.2\n741\t17351484\tBelle Eden Estate\tCheck with carrier\t-24.870535022000002\t152.393478112\t24258.6\t26172.8\n550\t17363349\tBullocks Run\tCheck with carrier\t-32.092228007500005\t152.449822016\t18871.6\t23298.2\n2626\t17322633\tGolf Links Estate - stages 3a3b\tCheck with carrier\t-24.827675036000002\t152.458952032\t22055.4\t24313.0\n3672\t17346163\tBanksia Gardens\tCheck with carrier\t-32.162838826\t152.490679872\t20868.2\t26057.0\n302\t17318655\tNEVERWOODS ESTATE\tCheck with carrier\t-32.0491919755\t152.499962176\t21566.0\t24533.6\n220\t17331436\tSt Andrews - stage 2\tCheck with carrier\t-26.0649970125\t152.565019936\t22475.8\t23703.6\n3439\t17348979\tOcean Blue Estate\tCheck with carrier\t-31.978120044500002\t152.569807936\t18523.2\t23690.4\n215\t17350846\tCountry Hills Estate\tCheck with carrier\t-27.568049751500002\t152.590619168\t16035.0\t23906.6\n3232\t17312686\t1-21 Bassett Lane Rosewood\tCheck with carrier\t-27.643725981\t152.601305056\t15420.2\t22648.6\n1700\t17340871\tEngels Hill Estate\tCheck with carrier\t-27.939948036500002\t152.634015008\t20689.0\t23648.0\n1117\t17340861\tTimbers Reserve\tCheck with carrier\t-25.494015954\t152.656508896\t22947.0\t23822.2\n384\t17336600\tRiverglen Estate\tCheck with carrier\t-27.4389650025\t152.659110976\t19408.6\t23134.0\n1943\t17320420\tThe Echelon - stage 6\tCheck with carrier\t-26.2308770035\t152.664131872\t24195.6\t24375.8\n3950\t17339465\tSovereign Heights\tCheck with carrier\t-26.216232033500003\t152.667902176\t18323.0\t23248.4\n2331\t17374296\tPoets Ridge\tCheck with carrier\t-31.635507000500002\t152.700722016\t16847.8\t23938.6\n204\t17335030\tGlenview Park Estate Stage 1\tCheck with carrier\t-31.453299002\t152.720484128\t23799.0\t23732.6\n2221\tAYCA-131R9D\tSavannah Woods\tReady for service\t-27.5870644598639\t152.7240635753\t20133.0\t21398.2\n649\t17349266\tHenry St Brassall\tCheck with carrier\t-27.590119012000002\t152.729560096\t17995.8\t23107.6\n3583\t17344661\tGRACE STREET ESTATE\tCheck with carrier\t-27.610844044\t152.730620992\t16956.4\t25258.4\n3016\t17330918\tYamanto Hills\tCheck with carrier\t-27.6580040405\t152.734073056\t19222.2\t22082.8\n2554\t17387135\tFairwinds Estate\tCheck with carrier\t-31.637075005\t152.759719008\t20633.8\t25525.2\n329\t17365410\tWestwood\tCheck with carrier\t-26.9620360015\t152.761562016\t21326.4\t23167.2\n491\t17345976\tWestwood\tCheck with carrier\t-26.957241264\t152.764883648\t21326.4\t23167.2\n3572\t17339076\t38 Brodzig\tCheck with carrier\t-27.571024977\t152.786021056\t19055.4\t28178.6\n2742\t17200601\tRivendell Place\tCheck with carrier\t-27.571616015\t152.786572928\t19055.4\t28178.6\n244\t17339915\tSamford Skies\tCheck with carrier\t-27.386634959000002\t152.835657856\t24394.8\t23240.6\n2548\t17350702\tOcean Drive Estate\tCheck with carrier\t-31.564011993\t152.840222016\t22373.0\t27346.4\n4074\t17368031\tParklands Estate\tCheck with carrier\t-25.328306459\t152.857719904\t27548.2\t24934.6\n1541\t17344165\tWitty Road Moggill\tCheck with carrier\t-27.566503022\t152.860641856\t17067.4\t21538.2\n362\t17337529\t276 Old North\tCheck with carrier\t-27.061864018\t152.866091168\t21776.8\t26024.2\n3100\t17340373\tInnes Lake\tCheck with carrier\t-31.469594042500002\t152.872410976\t21065.0\t24223.4\n979\t17340366\tRed Ochre\tCheck with carrier\t-31.478602007000003\t152.872635008\t22614.0\t24360.4\n1154\t17393835\tHuntingdale Woods\tCheck with carrier\t-25.31401976\t152.879278368\t24033.2\t23558.0\n440\t17313925\tSanctuary on Moggill\tCheck with carrier\t-27.5747120085\t152.880090112\t17210.6\t22169.6\n75\t68\tBrentwood Forest\tReady for service\t-27.642904867\t152.880475846\t15703.6\t23750.8\n2187\tAYCA-HSP55\tCunningham Rise\tContracted\t-27.6028471514642\t152.881192565\t15354.6\t22403.2\n3263\t17328193\t23 Lot Subdivision\tCheck with carrier\t-27.567159032\t152.893659968\t20990.4\t21062.2\n3569\t17371958\tBirchwood Court\tCheck with carrier\t-31.473840995\t152.901531008\t21172.6\t27742.6\n3720\t17358317\tMarina Shores\tCheck with carrier\t-25.300944737000002\t152.901905632\t21026.4\t25141.0\n2861\t17352994\tLevitt Road\tCheck with carrier\t-27.421324013\t152.909602912\t18155.6\t24630.6\n1320\t17337321\tLevitt Road Stage 2\tCheck with carrier\t-27.417215977\t152.913804832\t18958.6\t24313.8\n2693\t17337422\tJarrah Estate\tCheck with carrier\t-27.4146759825\t152.915732992\t18958.6\t24313.8\n3613\t17314951\tJarrah\tCheck with carrier\t-27.415392765\t152.916226016\t18958.6\t24313.8\n1579\t17319570\tLevitt Road\tCheck with carrier\t-27.419957991500002\t152.916472096\t18958.6\t24313.8\n3900\t17352497\tPark Edge\tCheck with carrier\t-27.691058971\t152.919303136\t26086.8\t22307.6\n388\t88\tLakes Entrance\tReady for service\t-27.684162625000003\t152.919766137\t26086.8\t22307.6\n3222\t17385202\tCathie Road Port Macquarie\tCheck with carrier\t-31.473397069\t152.922017504\t16442.2\t25477.4\n562\t17349198\tThe Palisades\tCheck with carrier\t-27.4275060285\t152.923364992\t21054.6\t24970.6\n2267\t17377355\tHogarth Rd Ferny Grove\tCheck with carrier\t-27.4064449995\t152.925476992\t24563.6\t22874.8\n2248\t17336883\tRivertop Estate\tCheck with carrier\t-29.629058032\t152.925858016\t21642.2\t24775.4\n3666\t17344503\t26 Lot Subdivision at 26 Hogarth Road Ferny Grove\tCheck with carrier\t-27.4076096485\t152.930007008\t22053.0\t23228.6\n3645\t17338445\tSunset Rd Kenmore\tCheck with carrier\t-27.526211002500002\t152.935135936\t20213.2\t24374.4\n3213\t17344252\t103 Oakey Flat Road Stage 3\tCheck with carrier\t-27.117406975\t152.945070112\t18253.2\t24874.8\n1163\t17330969\t75 Coonowrin Road\tCheck with carrier\t-26.907496022\t152.946759968\t20981.0\t21774.2\n1031\t17351877\t75 Coonowrin Road\tCheck with carrier\t-26.909190992\t152.947458016\t20981.0\t21774.2\n3539\t17329771\t49 Bellwood\tCheck with carrier\t-27.5605270225\t152.950952896\t19005.0\t22670.4\n1976\t17323584\tChipley Street\tCheck with carrier\t-27.5607659685\t152.954399168\t20588.2\t23662.2\n344\t17235866\tAcacia Avenue - stages 4to6\tCheck with carrier\t-26.9617699715\t152.954452096\t18853.8\t24391.2\n3524\t17320197\tWoogaroo Green\tCheck with carrier\t-27.6218190025\t152.955546112\t21265.0\t25564.2\n3521\t17336308\tWoogaroo st\tCheck with carrier\t-27.6208550045\t152.955739072\t21265.0\t25564.2\n336\t17344624\tMadison Ridge\tCheck with carrier\t-27.0450116095\t152.956953728\t24298.6\t26554.2\n2191\t17342152\tBeerwah Village\tCheck with carrier\t-26.855576012500002\t152.957590912\t23844.8\t24028.0\n1566\tAYAA-F8M3J\tWarner Lakes\tReady for service\t-27.299031370345\t152.9584530418\t20700.0\t23589.8\n2175\tAYAA-F6JW2\tWarner Lakes\tReady for service\t-27.299031370345\t152.9584530418\t20700.0\t23589.8\n3852\t17316838\t The Edge at Warner Stage 1\tCheck with carrier\t-27.308176015\t152.962607872\t18908.2\t23383.4\n164\t17266708\tEdenvale \tCheck with carrier\t-27.8746859935\t152.966187008\t17365.2\t24273.2\n1012\t17180994\tPumicestone Park\tCheck with carrier\t-27.0559649785\t152.966238112\t24309.2\t26521.8\n2752\t17325190\tLagoon Rd / Paradise Rd\tCheck with carrier\t-27.131762975\t152.967750848\t19756.6\t24551.6\n1998\t17323489\t122 Eugenia St Oxley\tCheck with carrier\t-27.5885090125\t152.968145056\t19768.8\t23502.8\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_-717133778",
+ "id": "20220727-124935_108215494",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:47+0000",
+ "dateFinished": "2022-08-16T04:47:48+0000",
+ "status": "FINISHED"
+ },
+ {
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "language": "sql",
+ "editOnDblClick": false
+ },
+ "colWidth": 12.0,
+ "editorMode": "ace/mode/osql",
+ "fontSize": 9.0,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1659940949893_527468493",
+ "id": "paragraph_1659940949893_527468493",
+ "dateCreated": "2022-08-08T06:42:29+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Create an empty NEAREST NEIGHBOR dataframe",
+ "text": "%python\n\nNEAREST_NEIGHBOR_DF \u003d pd.DataFrame(\n columns \u003d [\u0027DEVELOPMENT_ROLLOUT_ID\u0027 ,\u0027DEVELOPMENT_NAME\u0027, \u0027NEAREST_SITE_ID\u0027, \u0027NEAREST_SITE_NAME\u0027 , \u0027DISTANCE\u0027],\n )",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": []
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175433_-1124254362",
+ "id": "20220727-124935_861585312",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:52+0000",
+ "dateFinished": "2022-08-16T04:47:52+0000",
+ "status": "FINISHED"
+ },
+ {
+ "text": "%python\nz.show(NEAREST_NEIGHBOR_DF)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "results": {
+ "0": {
+ "graph": {
+ "mode": "table",
+ "height": 300.0,
+ "optionOpen": false,
+ "setting": {
+ "table": {
+ "tableGridState": {},
+ "tableColumnTypeState": {
+ "names": {
+ "DEVELOPMENT_ROLLOUT_ID": "string",
+ "DEVELOPMENT_NAME": "string",
+ "NEAREST_SITE_ID": "string",
+ "NEAREST_SITE_NAME": "string",
+ "DISTANCE": "string"
+ },
+ "updated": false
+ },
+ "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
+ "tableOptionValue": {
+ "useFilter": false,
+ "showPagination": false,
+ "showAggregationFooter": false
+ },
+ "updated": false,
+ "initialized": false
+ }
+ },
+ "commonSetting": {}
+ }
+ }
+ },
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TABLE",
+ "data": "DEVELOPMENT_ROLLOUT_ID\tDEVELOPMENT_NAME\tNEAREST_SITE_ID\tNEAREST_SITE_NAME\tDISTANCE\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175434_1658658446",
+ "id": "20220727-124935_1151534365",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:53+0000",
+ "dateFinished": "2022-08-16T04:47:53+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "For each New Development sites, store the information of its Nearest Neighbor in the dataframe",
+ "text": "%python\ndef Nearest_neighbour_table(NEAREST_NEIGHBOR_DF, neighbour_list, distances, neighbours):\n \n NEAREST_NEIGHBOR_DF[\u0027NEAREST_SITE_ID\u0027] \u003d [j for i in range(len(neighbour_list)) for j in (neighbour_list[i][\u0027SITE_ID\u0027])]\n \n NEAREST_NEIGHBOR_DF[\u0027NEAREST_SITE_NAME\u0027] \u003d [y for x in range(len(neighbour_list)) for y in (neighbour_list[x][\u0027NAME\u0027])]\n \n NEAREST_NEIGHBOR_DF[\u0027DISTANCE\u0027] \u003d [round(km,2) for km in distances.flatten()]\n \n NEAREST_NEIGHBOR_DF[\u0027DEVELOPMENT_NAME\u0027] \u003d [values[2] for values in new_site_df.values for dev_name in range(neighbours)]\n \n NEAREST_NEIGHBOR_DF[\u0027DEVELOPMENT_ROLLOUT_ID\u0027] \u003d [values[0] for values in new_site_df.values for dev_name in range(neighbours)]\n \n NEAREST_NEIGHBOR_DF[\u0027LATITUDE\u0027] \u003d [lat for value in range(len(neighbour_list)) for lat in (neighbour_list[value][\u0027LATITUDE\u0027])]\n \n NEAREST_NEIGHBOR_DF[\u0027LONGITUDE\u0027] \u003d [long for value in range(len(neighbour_list)) for long in (neighbour_list[value][\u0027LONGITUDE\u0027])]\n\nNearest_neighbour_table(NEAREST_NEIGHBOR_DF, neighbour_list, distances, neighbours)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": []
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175434_-217346825",
+ "id": "20220727-124935_1078804812",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:47:55+0000",
+ "dateFinished": "2022-08-16T04:47:59+0000",
+ "status": "FINISHED"
+ },
+ {
+ "text": "%python\nz.show(NEAREST_NEIGHBOR_DF)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "results": {
+ "0": {
+ "graph": {
+ "mode": "multiBarChart",
+ "height": 300.0,
+ "optionOpen": false,
+ "setting": {
+ "table": {
+ "tableGridState": {},
+ "tableColumnTypeState": {
+ "names": {
+ "DEVELOPMENT_ROLLOUT_ID": "number",
+ "DEVELOPMENT_NAME": "string",
+ "NEAREST_SITE_ID": "number",
+ "NEAREST_SITE_NAME": "string",
+ "DISTANCE": "number"
+ },
+ "updated": false
+ },
+ "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
+ "tableOptionValue": {
+ "useFilter": false,
+ "showPagination": false,
+ "showAggregationFooter": false
+ },
+ "updated": false,
+ "initialized": false
+ },
+ "multiBarChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default"
+ },
+ "pieChart": {},
+ "stackedAreaChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default"
+ },
+ "lineChart": {
+ "rotate": {
+ "degree": "-45"
+ },
+ "xLabelStatus": "default",
+ "lineWithFocus": false,
+ "forceY": false,
+ "isDateFormat": false
+ },
+ "scatterChart": {
+ "xAxis": {
+ "name": "DEVELOPMENT_ROLLOUT_ID",
+ "index": 0.0,
+ "aggr": "sum"
+ },
+ "yAxis": {
+ "name": "DISTANCE",
+ "index": 4.0,
+ "aggr": "sum"
+ }
+ }
+ },
+ "keys": [
+ {
+ "name": "DEVELOPMENT_ROLLOUT_ID",
+ "index": 0.0,
+ "aggr": "sum"
+ }
+ ],
+ "groups": [],
+ "values": [
+ {
+ "name": "DISTANCE",
+ "index": 4.0,
+ "aggr": "avg"
+ }
+ ],
+ "commonSetting": {}
+ },
+ "helium": {}
+ }
+ },
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TABLE",
+ "data": "DEVELOPMENT_ROLLOUT_ID\tDEVELOPMENT_NAME\tNEAREST_SITE_ID\tNEAREST_SITE_NAME\tDISTANCE\tLATITUDE\tLONGITUDE\n1\tMandalay\t138822\t1 Old Hume Highway BEVERIDGE VIC\t1.55\t-37.460284\t144.972822\n1\tMandalay\t134291\tOptus Site Beveridge Old Hume Highway BEVERIDGE\t1.56\t-37.460578\t144.973165\n1\tMandalay\t38837\tTelstra/Optus Site Old Hume Hwy BEVERIDGE\t1.56\t-37.460478\t144.973145\n1\tMandalay\t9914581\tMobile Spectrum Licensing Site HUME HIGHWAY\t1.56\t-37.476425\t144.972341\n1\tMandalay\t138703\tMaintenance Facility Mandalay Golf Course Mandalay Circuit BEVERIDGE\t1.78\t-37.480088\t144.944943\n2\tBrighton\t9013283\tChilli Peppers Cnr Hughie Edwards Drive and Marmion Ave MERRIWA\t0.38\t-31.659598\t115.707108\n2\tBrighton\t9014890\tTelstra Site 10 Hughie Edwards Dr MERRIWA\t0.39\t-31.659905\t115.706697\n2\tBrighton\t600625\tHughie Edwards Drive MERRIWA\t0.4\t-31.656763\t115.708968\n2\tBrighton\t9028046\tButler College 15 McCormack Boulevard BUTLER\t0.69\t-31.652149\t115.709474\n2\tBrighton\t138207\t15 Kirk Cove MERRIWA WA\t0.8\t-31.663815\t115.706961\n3\tArcadia\t9011837\tBigAir Communications Site - Lakeside Cardinia Road PAKENHAM\t0.24\t-38.072964\t145.436318\n3\tArcadia\t9024391\tToomah Community Centre Golden Dreen Street PAKENHAM\t0.31\t-38.071926\t145.438871\n3\tArcadia\t10017215\t145 Henry Rd PAKENHAM\t0.86\t-38.076774\t145.441983\n3\tArcadia\t9027201\tHenry Road PAKENHAM\t0.93\t-38.077398\t145.44229\n3\tArcadia\t10009872\tSt Francis Xavier College 21 Majestic Drive Officer\t1.02\t-38.061898\t145.43331\n4\tSpringfield Central\t9028115\tHealthcare Drive SPRINGFIELD\t0.41\t-27.686226\t152.910428\n4\tSpringfield Central\t10012806\tB Block 34 Sinnathamby Blvd SPRINGFIELD\t0.47\t-27.68329\t152.907717\n4\tSpringfield Central\t9022336\tNE-cnr Education City Dr \u0026 Sinnathamby Blvd SPRINGFIELD CENTRAL\t0.52\t-27.683388\t152.907208\n4\tSpringfield Central\t9001026\tEducation City Synnathamby Bvd SPRINGFIELD LAKES\t0.54\t-27.682756\t152.906955\n4\tSpringfield Central\t10007285\tCorner of Springfield Central Boulevard and Health Care Drive Springfield\t0.58\t-27.68808\t152.911309\n5\tYarrabilba\t9018674\tSales Office 1548 Waterford Tamborine Rd YARRABILBA\t0.08\t-27.798673\t153.100988\n5\tYarrabilba\t9021976\tDGPS Site via Yarrabilba Dr YARRABILBA\t0.17\t-27.799477\t153.100684\n5\tYarrabilba\t9022554\tNBN Co Test Trailer (Bris 7) within 8 km of 1524-1530 Waterford-Tamborine Road LOGAN VILLAGE\t0.65\t-27.792228\t153.100282\n5\tYarrabilba\t401797\tOptus Site 1512 Waterford Tamborine Rd LOGAN VILLAGE\t0.68\t-27.791948\t153.099956\n5\tYarrabilba\t10010967\tTelstra Site 1623-1629 Waterford Tamborine Road Logan Village\t0.69\t-27.80359\t153.09804\n6\tElliot Springs\t19510\tTelstra Site ROCKY SPRINGS\t2.65\t-19.379488\t146.872532\n6\tElliot Springs\t10014287\tQR ATP via Valley Dr BROOKHILL\t3.21\t-19.396764\t146.832492\n6\tElliot Springs\t9017567\tTelstra Site Lot 1, 1259 Old Flinders Hwy OAK VALLEY\t4.21\t-19.424327\t146.830739\n6\tElliot Springs\t9015496\tOptus Monopole 4 Thuderbolt Drive OAK VALLEY\t4.22\t-19.424057\t146.830429\n6\tElliot Springs\t9019811\tNBN Co Site 1297 Old Flinders Highway OAK VALLEY\t4.27\t-19.425318\t146.83089\n7\tAlkimos Beach\t10010777\tGeorgiou Site Office Alkimos Subdivision Marmion Avenue ALKIMOS\t0.8\t-31.608329\t115.688171\n7\tAlkimos Beach\t142570\t1 Cinnabar Dr AMBERTON\t1.47\t-31.595373\t115.669585\n7\tAlkimos Beach\t9027926\tAdjacent to Alkimos Wastewater Treatment Plant ALKIMOS\t1.55\t-31.616446\t115.674735\n7\tAlkimos Beach\t10008468\tEglinton 23 Beonaddy Road EGLINTON\t1.77\t-31.58814\t115.68482\n7\tAlkimos Beach\t139954\tLot 2 Marmion Avenue EGLINTON\t1.8\t-31.599106\t115.663376\n8\tAlkimos Vista\t139954\tLot 2 Marmion Avenue EGLINTON\t0.8\t-31.599106\t115.663376\n8\tAlkimos Vista\t142570\t1 Cinnabar Dr AMBERTON\t0.88\t-31.595373\t115.669585\n8\tAlkimos Vista\t139017\tWest of Marmion Avenue ALKIMOS\t1.39\t-31.615299\t115.665896\n8\tAlkimos Vista\t9011211\tLot 102 Romeo Road CARABOODA\t1.42\t-31.61502\t115.664245\n8\tAlkimos Vista\t9027926\tAdjacent to Alkimos Wastewater Treatment Plant ALKIMOS\t1.52\t-31.616446\t115.674735\n9\tCalderwood Valley\t9019594\tIllawarra Christian School 234 Calderwood Rd ALBION PARK\t0.19\t-34.557017\t150.755252\n9\tCalderwood Valley\t203013\tOptus Site Lot 1 DP 222288 Terry Street ALBION PARK\t2.58\t-34.572164\t150.774005\n9\tCalderwood Valley\t202679\tOptus Site Woolworths Shopping Centre Terry St ALBION PARK\t2.62\t-34.572658\t150.773927\n9\tCalderwood Valley\t201951\tKiama/Shellharbour Fire Control Centre Tongarra Road ALBION PARK\t2.63\t-34.571374\t150.775661\n9\tCalderwood Valley\t9008906\t3GIS RBS Site 8 Russell Street ALBION PARK\t2.7\t-34.573599\t150.774036\n10\tEynesbury\t9016906\tGreen Hill Water Storage Tank Site Off Mount Mary Road EYNESBURY\t1.01\t-37.800114\t144.536864\n10\tEynesbury\t133953\tGolf Club Eynesbury Road EYNESBURY\t2.74\t-37.790867\t144.56674\n10\tEynesbury\t9028036\tHV Tower Lot S3 Spring Hill Road EYNESBURY\t2.75\t-37.799312\t144.565055\n10\tEynesbury\t9000489\tTelstra Eynesbury Central CMTS SPI HV Tower Eynesbury Rd EYNESBURY\t2.95\t-37.799075\t144.567549\n10\tEynesbury\t9001975\tTelstra Site Eynesbury Station Development Eynesbury Road EYNESBURY\t3.01\t-37.797425\t144.568899\n11\tOran Park\t10012127\tOran Park High School Crnr S Circuit \u0026 Holden Dr Oran Park\t0.9\t-33.998669\t150.735222\n11\tOran Park\t9010561\tRooftop Oran Pk Town Centre 665 - 665a Cobbitty Rd COBBITTY\t1.18\t-33.9997\t150.738007\n11\tOran Park\t10013631\tProject Building cnr Oran Park Dr and Holden Dr ORAN PARK\t1.28\t-34.000171\t150.73895\n11\tOran Park\t9010494\tCommunity Building ORAN PARK\t1.4\t-34.000931\t150.739879\n11\tOran Park\t9023244\tPodium 351 Oran Park Dr ORAN PARK\t1.6\t-34.008348\t150.732796\n12\tSpringfield Rise\t9007494\tTelstra Site Springfield Towers Sinnathamby Blvd SPRINGFIELD\t1.47\t-27.682641\t152.899147\n12\tSpringfield Rise\t9020628\tPolice Site Springfield Towers Sinnathamby Bvd SPRINGFIELD\t1.5\t-27.682317\t152.899035\n12\tSpringfield Rise\t9027521\tLot 750 Sinnathamby Blvd SPRINGFIELD CENTRAL\t1.55\t-27.684323\t152.905276\n12\tSpringfield Rise\t10007285\tCorner of Springfield Central Boulevard and Health Care Drive Springfield\t1.72\t-27.68808\t152.911309\n12\tSpringfield Rise\t9022336\tNE-cnr Education City Dr \u0026 Sinnathamby Blvd SPRINGFIELD CENTRAL\t1.75\t-27.683388\t152.907208\n13\tPart Section 4574 Goode Road Subdivision\t9010218\tOptus Lattice Tower SEC 4393 Goode Road HUMPTY DOO\t2.32\t-12.613388\t131.15162\n13\tPart Section 4574 Goode Road Subdivision\t10007611\tNBN Co Site 530 Freds Pass Road HUMPTY DOO\t4.06\t-12.59711\t131.11661\n13\tPart Section 4574 Goode Road Subdivision\t9011575\tTelstra RBS Site 150 Trippe Rd HUMPTY DOO\t4.11\t-12.592235\t131.145499\n13\tPart Section 4574 Goode Road Subdivision\t9015293\tNBN Co Site 255B Elizabeth Valley Rd NOONAMAH\t4.3\t-12.642388\t131.099636\n13\tPart Section 4574 Goode Road Subdivision\t10009317\tLPON site 290 Fred\u0027s Pass Rd HUMPTY DOO\t4.68\t-12.593464\t131.111848\n14\tAtherstone\t10011131\tCFA Site 29 Exford Road Melton South\t0.69\t-37.70603\t144.57397\n14\tAtherstone\t302885\t57-81 Abey Rd MELTON\t0.83\t-37.706066\t144.590579\n14\tAtherstone\t9026060\t1 Murray St MELTON SOUTH\t0.85\t-37.709085\t144.571949\n14\tAtherstone\t10002743\tAbey Rd Melton\t0.88\t-37.704457\t144.590471\n14\tAtherstone\t10016352\tColes Melton South, 11-17 Station Road MELTON\t0.92\t-37.701748\t144.574435\n15\tSanctuary Cove\t402660\tLions Haven for the Aged 9 Pendraat Pde HOPE ISLAND\t0.32\t-27.870992\t153.359962\n15\tSanctuary Cove\t9000668\tLot 135-136 Pendraat Pde HOPE ISLAND\t0.67\t-27.874412\t153.360644\n15\tSanctuary Cove\t9007655\tTelstra Site 10 Santa Barbara Rd HOPE ISLAND\t0.69\t-27.868651\t153.350597\n15\tSanctuary Cove\t10007687\tShopping Centre 8 Santa Barbara Rd HOPE ISLAND`\t0.75\t-27.867562\t153.350187\n15\tSanctuary Cove\t403702\tHalf Way Clubhouse Pines Golf Course SANCTUARY COVE\t0.78\t-27.864078\t153.363241\n16\tHarpley\t10011093\tWTP Admin New Farm Road Werribee\t1.41\t-37.915232\t144.64142\n16\tHarpley\t42818\tAdmin Bld New Farm Road WERRIBEE\t1.52\t-37.915996\t144.642435\n16\tHarpley\t101228\tCMTS Site Werribee Racing Club Racecourse Rd WERRIBEE\t1.69\t-37.9028\t144.640468\n16\tHarpley\t50909\tOptus Site Werribee Racing Club Bulban Rd WERRIBEE\t1.7\t-37.902665\t144.640461\n16\tHarpley\t55720\tVodafone Site Werribee Racecourse Black Forest Rd WERRIBEE\t1.8\t-37.902463\t144.641616\n17\tWestbrook\t9015995\tSite Office, 270 metres Northeast of Leakes Road and Derrimut Road Intersection TARNEIT\t0.26\t-37.833118\t144.693694\n17\tWestbrook\t10005538\t540 Derrimut Road Tarneit\t0.27\t-37.8364\t144.6929\n17\tWestbrook\t10005626\t540 Derrimut Rd TARNEIT\t0.3\t-37.83704\t144.6913\n17\tWestbrook\t10007002\tTarneit Central shopping Centre 540 Derrimut Rd Tarneit\t0.31\t-37.836417\t144.693582\n17\tWestbrook\t10008716\tTarneit Central Shopping Centre 540 Derrimut Rd TARNEIT\t0.31\t-37.83705\t144.6923\n18\tJordan Springs\t9019365\tTelstra Site Ninth Av LLANDILO\t1.16\t-33.731559\t150.743787\n18\tJordan Springs\t9017031\tBaulderstone Site St Marys Recycling Plant LLANDILO\t1.52\t-33.73807\t150.75389\n18\tJordan Springs\t401962\tSewerage Treatment Plant Links Rd Dunheved ST MARYS\t2.0\t-33.733434\t150.771709\n18\tJordan Springs\t10016865\t73 Links Road St Marys\t2.1\t-33.735999\t150.770913\n18\tJordan Springs\t10011044\t17-19 Dunheved Circuit ST MARYS\t2.14\t-33.7397\t150.7671\n19\tThe Hermitage\t50222\tCamden Valley Way CATHERINE FIELD\t0.6\t-34.004\t150.785699\n19\tThe Hermitage\t142082\tCamden Lakeside Golf Club Raby Rd CATHERINE FIELDS\t0.85\t-34.000233\t150.791751\n19\tThe Hermitage\t10013575\tAldi Emerald Hills 5 Emerald Hills Boulevard LEPPINGTON\t0.96\t-33.99643\t150.7925\n19\tThe Hermitage\t139752\tSydney Assembly Hall of Jehovah Witnesses 100 Raby Road GLEDSWOOD HILLS\t1.19\t-34.005301\t150.79333\n19\tThe Hermitage\t10002411\t148 Raby Rd Lappington\t1.42\t-34.005809\t150.795897\n20\tArmstrong Creek\t9021483\tNarana Creations ambulatory 410 Surf Coast Highway GROVEDALE\t0.17\t-38.218436\t144.338926\n20\tArmstrong Creek\t42918\tGeelong Airport 465 Surf Coast Highway MT DUNEED\t0.57\t-38.224665\t144.336278\n20\tArmstrong Creek\t138766\tMarshall Station Marshalltown Road MARSHALL\t1.0\t-38.210823\t144.339751\n20\tArmstrong Creek\t10007493\tBuilding D 2-38 Burvilles Road Geelong\t1.3\t-38.231258\t144.339978\n20\tArmstrong Creek\t9002566\tGrovedale Plaza 79-81 Heyers Road GROVEDALE\t1.48\t-38.208124\t144.329244\n21\tWaterford County\t9015069\tAusgrid Monopole Thornton Substation, Haussman Road THORNTON\t0.26\t-32.768328\t151.631643\n21\tWaterford County\t9009539\tEnergy Australia Site off Haussman Dr THORNTON\t0.28\t-32.768819\t151.632531\n21\tWaterford County\t142205\tLPON Site 25 Geddes Close THORNTON\t0.45\t-32.770366\t151.632455\n21\tWaterford County\t138684\t17 Gibbon Close THORNTON\t0.94\t-32.774842\t151.633925\n21\tWaterford County\t138687\t17 Gibbon Close THORNTON\t0.96\t-32.77501\t151.633887\n22\tKilgariff\t570846\tArid Zone Rsrch Inst South Stuart Hwy ALICE SPRINGS\t0.34\t-23.767105\t133.874535\n22\tKilgariff\t2467\tBroadcast Site Stuart Hwy 7km SSW of ALICE SPRINGS\t0.39\t-23.767566\t133.872186\n22\tKilgariff\t570849\t8HA and Sun-FM Studios Lot 3697 South Stuart Highway ALICE SPRINGS\t0.41\t-23.766627\t133.873391\n22\tKilgariff\t2466\tT\u0026W HF Transmitter Site Lot 5148 Stuart Highway ALICE SPRINGS\t0.62\t-23.767996\t133.86919\n22\tKilgariff\t2459\tAirservices HF Transmitter Station ALICE SPRINGS\t0.86\t-23.777727\t133.873502\n23\tCoomera Waters\t9007480\tTelstra Site 131 Edwardson Dr COOMERA\t0.54\t-27.842591\t153.343267\n23\tCoomera Waters\t10011055\tAmity Rd COOMERA\t0.86\t-27.838908\t153.342265\n23\tCoomera Waters\t403252\tVillage Resort Site off Coleman Rd COOMERA\t1.25\t-27.842103\t153.360832\n23\tCoomera Waters\t10006087\tDGPS site 20 Oakey Creek Rd COOMERA\t1.31\t-27.85441\t153.3411\n23\tCoomera Waters\t13577\tCountry Club Sanctuary Cove HOPE ISLAND\t1.34\t-27.852581\t153.35848\n24\tBrighton - Ridgewood\t404308\tPTA Nowergup Depot Comms Bldg off Quinns Rd NOWERGUP\t0.42\t-31.667597\t115.730452\n24\tBrighton - Ridgewood\t9003491\t85 Hester Ave MERRIWA\t0.77\t-31.67191\t115.718884\n24\tBrighton - Ridgewood\t31781\tCommunity High School Walyunga Boulevard CLARKSON\t0.93\t-31.677316\t115.726311\n24\tBrighton - Ridgewood\t10013130\tNowerup Depot 3350L Mitchell Freeway NOWERGUP\t1.02\t-31.660037\t115.728761\n24\tBrighton - Ridgewood\t602927\tHinchinbrook Avenue RIDGEWOOD\t1.33\t-31.658131\t115.720349\n25\tJerberra Estate\t9021450\tNBN Co Site Lot 6 Pine Forest Rd TOMERONG\t1.42\t-35.051842\t150.601522\n25\tJerberra Estate\t139026\tLot 3 Pine Forest Rd TOMERONG\t2.16\t-35.050409\t150.593332\n25\tJerberra Estate\t9059\tLot 81 Husskisson Rd HUSKISSON\t2.22\t-35.034475\t150.631983\n25\tJerberra Estate\t9021448\tNBN Co Site Tomerong State Forest off Jervis Bay Rd WOOLLAMIA\t3.46\t-35.021462\t150.602848\n25\tJerberra Estate\t9000991\tShoalhaven City Council Tower, Council Waste Depot Huskisson Rd HUSKISSON\t4.07\t-35.034044\t150.657116\n26\tTulliallan\t10003204\tBerwick Springs Park 30m monopole 22I Ashmore Avenue NARRE WARREN SOUTH\t0.85\t-38.07102\t145.31548\n26\tTulliallan\t9027780\tNE cnr Burford Way \u0026 Sassafras Place CRANBOURNE NORTH\t0.86\t-38.080887\t145.326529\n26\tTulliallan\t304910\tTelstra Site Clyde Rd BERWICK\t0.95\t-38.072036\t145.335414\n26\tTulliallan\t9023209\tMonopole 21, Grices Road, Recreation Reserve BERWICK, VIC, 3806\t1.16\t-38.07418\t145.337896\n26\tTulliallan\t10017416\t73 Ridgemont Dve BERWICK\t1.23\t-38.069713\t145.337985\n27\tDelaray\t10001608\t30 Hardys Rd CLYDE NORTH\t0.96\t-38.104394\t145.333667\n27\tDelaray\t9016940\tOptiComm North Clyde Hardys Road CLYDE NORTH\t1.14\t-38.103544\t145.331699\n27\tDelaray\t304606\t200 Tucker Rd CLYDE\t1.49\t-38.118705\t145.347244\n27\tDelaray\t9020225\tTelstra Site 585 Berwick-Cranbourne Road CLYDE NORTH\t1.75\t-38.095277\t145.32933\n27\tDelaray\t9021968\tCnr Berwick-Cranbourne Rd \u0026 Patterson Rd NORTH CLYDE\t1.99\t-38.118159\t145.328423\n28\tMovida\t9017861\tSpeedDome 84 Eddie Barron Drive MIDDLE SWAN\t0.3\t-31.878948\t116.026387\n28\tMovida\t205857\tHutchison Site Speed Dome Lot 13421 Eddie Barron Drive MIDDLE SWAN\t0.33\t-31.878704\t116.026326\n28\tMovida\t9003774\tSwan Park Leisure Centre Gray Drive MIDVALE\t0.53\t-31.883005\t116.023595\n28\tMovida\t9011555\tVodafone Monopole Truck and Trailer Park 30 Rothschild Place MIDVALE\t0.74\t-31.887555\t116.028749\n28\tMovida\t9009752\tMidland Sports Centre Patterson Drive MIDDLE SWAN\t0.94\t-31.874032\t116.022907\n29\tBenjamin Estate\t10006089\tCB Repeater Site 155 Daniel Circuit Herbert\t2.64\t-12.536919\t131.155492\n29\tBenjamin Estate\t10018565\t155 Daniel CCT Daniel Circuit Herbert\t2.64\t-12.536925\t131.155488\n29\tBenjamin Estate\t9002839\tTelstra CMTS 10 Sunter Road HERBERT\t3.1\t-12.554169\t131.151026\n29\tBenjamin Estate\t10010476\tGirraween 25 Dominick Road HERBERT\t3.13\t-12.528536\t131.155156\n29\tBenjamin Estate\t3184\tSection 3332 (90) Coral Road HUMPTY DOO\t3.16\t-12.537612\t131.150169\n30\tAmber\t48624\tCraigieburn East Rd CRAIGIEBURN\t1.89\t-37.586893\t144.971646\n30\tAmber\t9027378\tAustral Bricks Brick Makers Drive CRAIGIEBURN\t2.14\t-37.579398\t144.972558\n30\tAmber\t52439\t1126 Sydney Rd FAWKNER\t2.32\t-37.598556\t144.968611\n30\tAmber\t9027743\t195 Craigieburn Road EAST WOLLERT\t2.33\t-37.60559\t145.010475\n30\tAmber\t9027344\tVodafone 35m monopole CRAIGIEBURN ROAD WOLLERT VIC 3750\t2.35\t-37.606945\t144.976611\n31\tNorth Harbour\t9027427\t83 - 85 Cobb Road BURPENGARY\t0.85\t-27.129451\t152.996538\n31\tNorth Harbour\t9017962\t2 Nolan Dr MORAYFIELD\t1.59\t-27.114201\t152.98189\n31\tNorth Harbour\t401708\tOptus Site Lot 19 Coach Rd East BURPENGARY\t1.75\t-27.121495\t152.977721\n31\tNorth Harbour\t402350\tOptus Site 35 Farry Rd BURPENGARY\t1.82\t-27.137874\t152.999364\n31\tNorth Harbour\t135589\tOptus Site Morayfield South Lot 19 Old Coach Road MORAYFIELD\t1.89\t-27.121242\t152.976339\n32\tTrinity\t10016810\tAnaconda Butler, 1 Butler Boulevard BUTLER\t0.8\t-31.638324\t115.693713\n32\tTrinity\t10001568\tAldi Butler 77 Butler Boulevard BUTLER\t0.84\t-31.637918\t115.696371\n32\tTrinity\t10014844\tSupercheap Auto Butler 8 Butler Boulevard Butler\t0.94\t-31.63959\t115.694195\n32\tTrinity\t10013945\tBCF Butler 8 Butler Boulevard BUTLER\t0.96\t-31.63986\t115.69329\n32\tTrinity\t9022982\tDGPS reference site Lot 817 Potton Rise ALKIMOS\t1.07\t-31.622529\t115.696982\n33\tGregory Hills\t10016984\tGregory Hills, 82-92 RODEO ROAD GREGORY HILLS\t0.29\t-34.025943\t150.765918\n33\tGregory Hills\t10017140\tVHA Monopole 2 Steer Road GREGORY HILLS\t0.46\t-34.025696\t150.762441\n33\tGregory Hills\t10008189\tOptus Monopole Lot 601 Central Hills Drive GREGORY HILLS\t0.52\t-34.024434\t150.763473\n33\tGregory Hills\t9028389\tInflatable World Narellan 79 - 83 Anderson Road SMEATON GRANGE\t0.74\t-34.03436\t150.76194\n33\tGregory Hills\t10007948\t46 Anzac Ave SMEATON GRANGE\t0.86\t-34.03516\t150.7611\n34\tWaterford Melton\t9007634\tTelstra Site Rees Rd MELTON SOUTH\t1.08\t-37.708785\t144.563349\n34\tWaterford Melton\t9003617\tVICTORIA UNIVERSITY CNR REES \u0026 WATSON ROADS MELTON SOUTH\t1.33\t-37.706894\t144.565987\n34\tWaterford Melton\t305295\tOptus Victoria University cnr Rees \u0026 Wilson Roads MELTON SOUTH\t1.34\t-37.706627\t144.565268\n34\tWaterford Melton\t9026060\t1 Murray St MELTON SOUTH\t1.34\t-37.709085\t144.571949\n34\tWaterford Melton\t10008075\t979fm Building VUT Campus 20-40 Rees Road Melton South\t1.35\t-37.706608\t144.565879\n35\tMt. Atkinson\t9914744\tMobile Spectrum Licensing Site WESTERN FREEWAY\t0.78\t-37.741014\t144.690111\n35\tMt. Atkinson\t130382\tVodafone Site Old Lion Park 1611-1781 Western Hwy ROCKBANK\t0.78\t-37.744201\t144.695936\n35\tMt. Atkinson\t10011541\tcnr of Greigs Rd and Hopkins Rd ROCKBANK\t1.38\t-37.75254\t144.703\n35\tMt. Atkinson\t10009096\tTelstra Site 1385-1463 Western Highway Truganina\t2.31\t-37.74986\t144.71456\n35\tMt. Atkinson\t9012078\tOptus Monopole Lot 4, 502-536 Neal Road ROCKBANK\t2.67\t-37.73725\t144.715671\n36\tSpringwood\t23060\t81 Calton Road GAWLER\t0.2\t-34.602986\t138.760909\n36\tSpringwood\t501790\tTank Site Popham Avenue GAWLER EAST\t0.21\t-34.602938\t138.760769\n36\tSpringwood\t305177\t2 Gozzard Street GAWLER\t0.86\t-34.604571\t138.753966\n36\tSpringwood\t10004517\tTarget 3-5 Calton Rd GAWLER\t1.17\t-34.60132\t138.750415\n36\tSpringwood\t10003986\tFire Station Ayers St GAWLER\t1.19\t-34.603424\t138.750141\n37\tThornhill Park\t9027244\tSaizeriya Australia 2-82 Shogaki Drive MELTON SOUTH\t1.35\t-37.708396\t144.60719\n37\tThornhill Park\t9028479\tNBN Co Site 43-67 Ferris Road MELTON SOUTH\t1.41\t-37.701532\t144.605063\n37\tThornhill Park\t10012454\t69-99 Ferris Rd COBBLEBANK\t1.49\t-37.704475\t144.604187\n37\tThornhill Park\t10006473\tConcrete Plant 133-139 Ferris Rd MELTON\t1.58\t-37.70996\t144.605241\n37\tThornhill Park\t50987\tBurton Cables Industrial Park Service Road MELTON\t1.89\t-37.693199\t144.603482\n38\tBotanical\t9011164\tTelstra RBS Site 1760 Mickleham Rd MICKLEHAM\t1.09\t-37.570686\t144.876971\n38\tBotanical\t10000101\tNBN Co Site 740 Mt Ridley Road Mickleham\t1.38\t-37.55806\t144.86984\n38\tBotanical\t10018277\tTelstra Site, 135 Forest Red Gum Drive Mickleham\t1.84\t-37.55025\t144.89786\n38\tBotanical\t9013408\tTelstra Site Lot B 575 Craigieburn Rd CRAIGIEBURN\t2.62\t-37.586276\t144.887041\n38\tBotanical\t302518\tCrowes Hill Craigieburn West Rd YUROKE\t2.73\t-37.584088\t144.868784\n39\tSt. Germain\t9027520\tCirca Estate Grices Rd BERWICK\t1.56\t-38.079719\t145.360546\n39\tSt. Germain\t9020225\tTelstra Site 585 Berwick-Cranbourne Road CLYDE NORTH\t1.93\t-38.095277\t145.32933\n39\tSt. Germain\t10001608\t30 Hardys Rd CLYDE NORTH\t2.08\t-38.104394\t145.333667\n39\tSt. Germain\t9016940\tOptiComm North Clyde Hardys Road CLYDE NORTH\t2.15\t-38.103544\t145.331699\n39\tSt. Germain\t10016272\tMinta Farm 2/106 Soldiers Rd BERWICK\t2.15\t-38.0735\t145.3596\n40\tRopes Crossing\t201057\tADI Test \u0026 Calibration Centre Forrester Rd ST MARYS\t1.21\t-33.729024\t150.787286\n40\tRopes Crossing\t9015249\tTelstra RBS Site 8 Central Pl ROPES CROSSING\t1.4\t-33.7324\t150.781227\n40\tRopes Crossing\t10209\tAir Services Australia Stony Creek Road SHANES PARK\t1.46\t-33.712771\t150.793541\n40\tRopes Crossing\t9028267\tLot 8 Corner of Roe Circuit \u0026 Dunlop Ave ROPES CROSSING\t1.48\t-33.733152\t150.78004\n40\tRopes Crossing\t39255\tDept of Defence Forrester Road ST MARYS\t1.62\t-33.73426\t150.777548\n41\tMount Gilead\t9002648\tMary Brookes Park Kellerman Drive ST HELENS PARK\t1.5\t-34.108916\t150.806969\n41\tMount Gilead\t134773\tOptus Site Ambarvale Off Greco Place ROSEMEADOW\t1.99\t-34.104251\t150.784575\n41\tMount Gilead\t131350\tOptus site Rosemeadow Water Reservoir off Greco Place ROSEMEADOW\t1.99\t-34.104154\t150.784751\n41\tMount Gilead\t133755\tTelstra Exchange St Helens Park Appin Rd ROSEMEADOW\t2.12\t-34.100904\t150.802665\n41\tMount Gilead\t201864\tCMTS Site Rosalind Park Medhurst Rd GILEAD\t2.59\t-34.109715\t150.77072\n42\tWalgrove Stage 3\t100722\tTelstra Site Mt Manton 255 Lucernvale Rd MANTON\t3.11\t-34.851332\t148.971474\n42\tWalgrove Stage 3\t151009\tNominal Planning Site Mt Manton 255 Lucernvale Rd MANTON\t3.12\t-34.851246\t148.971199\n42\tWalgrove Stage 3\t10010522\tAmateur Tower Mount Manton 5.5 km East of YASS\t3.14\t-34.851109\t148.971656\n42\tWalgrove Stage 3\t9013911\tAxicom Site Mt Manton 255 Lucernvale Rd MANTON\t3.14\t-34.851049\t148.971665\n42\tWalgrove Stage 3\t9529\tCommsite 5.5 km E of Yass MOUNT MANTON\t3.35\t-34.8492\t148.970603\n43\tEcco Ripley\t10004392\t6 Amity Way SOUTH RIPLEY\t1.42\t-27.69179\t152.807334\n43\tEcco Ripley\t9012921\tTelstra Site Lot 4 Wensley Rd SOUTH RIPLEY\t1.69\t-27.697361\t152.777837\n43\tEcco Ripley\t9022563\tNBN Co Test Trailer (Bris 9) within 15 km of Lot 4, Wensley Road SOUTH RIPLEY\t1.7\t-27.69745\t152.777759\n43\tEcco Ripley\t10014461\tRipley Providence School 7001 Parkway Avenue SOUTH RIPLEY\t1.85\t-27.6967\t152.8103\n43\tEcco Ripley\t9027368\tRipley Project cnr Barrams Rd \u0026 Abrahams Rd SWANBANK\t1.97\t-27.694168\t152.812516\n44\tSomerfield\t302411\tOptus Site 270 Hutton Rd KEYSBOROUGH SOUTH\t0.52\t-38.013762\t145.169687\n44\tSomerfield\t302724\tBall Australia 410 Greens Rd KEYSBOROUGH\t0.8\t-38.011457\t145.172718\n44\tSomerfield\t501934\tKeysborough Golf Course Hutton Road KEYSBOROUGH\t0.83\t-38.012036\t145.154353\n44\tSomerfield\t10012342\t 29 INDIAN DR KEYSBOROUGH RPTR 29 Indian Drive KEYSBOROUGH\t1.61\t-38.00803\t145.18095\n44\tSomerfield\t10008595\tTatterson Park 400 Cheltenham Rd Keysborough\t1.74\t-37.999027\t145.155163\n45\tNoosa Waters\t9013858\tOptus Monopole 18 Thomas Street NOOSAVILLE\t0.21\t-26.400964\t153.063157\n45\tNoosa Waters\t199011\tBroadcast Site Gympie Tce NOOSAVILLE\t0.54\t-26.397567\t153.063215\n45\tNoosa Waters\t16104\tEnergex Substn Nannygai St NOOSAVILLE\t0.63\t-26.401989\t153.06793\n45\tNoosa Waters\t9007811\tTelstra Site Cnr Mary St and Gibson Rd NOOSAVILLE\t0.69\t-26.402489\t153.068559\n45\tNoosa Waters\t10001505\tAldi Noosaville 201 Weyba Road NOOSAVILLE\t1.14\t-26.404594\t153.072749\n46\tFernbrooke\t10011212\t32 Greenwood Village Rd GREENWOOD VILLAGE\t0.82\t-27.64289\t152.8392\n46\tFernbrooke\t9013716\tOptus Monopole Greenwood Village Road REDBANK PLAINS\t1.1\t-27.641138\t152.836362\n46\tFernbrooke\t137051\t24 McLean Street REDBANK PLAINS\t1.66\t-27.641963\t152.855558\n46\tFernbrooke\t9023302\tTyrecycle Newhill Dr REDBANK PLAINS\t1.99\t-27.640056\t152.824516\n46\tFernbrooke\t402322\tPatrick St off Redbank Plains Rd BLACKSTONE\t2.1\t-27.642824\t152.821581\n47\tGrandvue\t10017432\t95 Majestic Drive OFFICER\t0.37\t-38.061859\t145.432401\n47\tGrandvue\t10009872\tSt Francis Xavier College 21 Majestic Drive Officer\t0.43\t-38.061898\t145.43331\n47\tGrandvue\t9007498\tTelstra Site Officer Recreation Reserve Princes Hwy OFFICER\t0.92\t-38.062088\t145.41923\n47\tGrandvue\t9011837\tBigAir Communications Site - Lakeside Cardinia Road PAKENHAM\t1.15\t-38.072964\t145.436318\n47\tGrandvue\t9023143\tOptus Monopole Officer Recreation Reserve, Princes Highway OFFICER\t1.15\t-38.061167\t145.416794\n48\tThe Pines\t137366\tKeppal Park Racecourse Racecourse Road BARMARYEE\t1.59\t-23.144027\t150.705281\n48\tThe Pines\t9017802\tNBN Co Site 2901 Yeppoon Road YEPPOON\t1.72\t-23.145147\t150.718373\n48\tThe Pines\t9013193\tTelstra RBS Site Lot 1 Near 2901 Yeppoon Rd YEPPOON\t1.8\t-23.144543\t150.71871\n48\tThe Pines\t142502\t17 Lorikeet Ave YEPPOON\t2.47\t-23.139535\t150.722382\n48\tThe Pines\t403236\tCapricorn Adventist Retirement Village 150 Rockhampton Rd YEPPOON\t2.92\t-23.138056\t150.727513\n49\tMarriott Waters\t9026142\tLost Dogs Home 920 Thompsons Road CRANBOURNE WEST\t0.2\t-38.078795\t145.241499\n49\tMarriott Waters\t10005587\t4 Latchford St CRANBOURNE WEST\t0.53\t-38.080902\t145.244089\n49\tMarriott Waters\t304909\tTelstra Site Lot 14 number 540 Dandenong-Hastings Rd CRANBOURNE WEST\t0.57\t-38.082706\t145.238943\n49\tMarriott Waters\t10001424\tAldi Lyndhurst Marriot Blvd LYNDHURST\t0.96\t-38.0781\t145.250748\n49\tMarriott Waters\t9023653\tOptus 30m Monopole 335 Dandenong Hastings Road DANDENONG SOUTH\t1.32\t-38.065902\t145.237339\n50\tVerdant Hill\t45948\tCFA Site Leak Rd TRUGANINA\t1.62\t-37.831987\t144.677493\n50\tVerdant Hill\t41876\t830 Leakes Rd TARNEIT\t1.63\t-37.832145\t144.676352\n50\tVerdant Hill\t9026763\tTelstra Site 605 Derrimut Road TARNEIT\t1.81\t-37.8309\t144.68721\n50\tVerdant Hill\t9015995\tSite Office, 270 metres Northeast of Leakes Road and Derrimut Road Intersection TARNEIT\t2.36\t-37.833118\t144.693694\n50\tVerdant Hill\t10003393\tCnr of Leakes Rd and Davis Rd TARNEIT\t2.38\t-37.8302\t144.653502\n51\tAlamanda\t9016183\t454-464 Point Cook Road POINT COOK\t0.67\t-37.917759\t144.749394\n51\tAlamanda\t10000475\t42 Parkwood Terrace POINT COOK\t0.81\t-37.908589\t144.74998\n51\tAlamanda\t9007488\t3GIS Site Weigall St BRUNSWICK EAST\t0.95\t-37.912947\t144.732809\n51\tAlamanda\t9009179\tTelstra RBS Pt Cook Wetlands Via Aviation Rd POINT COOK\t0.98\t-37.915356\t144.732479\n51\tAlamanda\t9006934\tCorner Petrie \u0026 Murray Jones Streets POINT COOK\t1.17\t-37.923777\t144.747892\n52\tRathdowne\t9027344\tVodafone 35m monopole CRAIGIEBURN ROAD WOLLERT VIC 3750\t0.56\t-37.606945\t144.976611\n52\tRathdowne\t9007468\tTelstra Site Craigieburn East Rd WOLLERT\t0.61\t-37.607615\t144.976601\n52\tRathdowne\t52439\t1126 Sydney Rd FAWKNER\t1.26\t-37.598556\t144.968611\n52\tRathdowne\t48625\tCraigieburn East Rd CRAIGIEBURN\t1.41\t-37.601208\t144.965594\n52\tRathdowne\t48624\tCraigieburn East Rd CRAIGIEBURN\t2.05\t-37.586893\t144.971646\n53\tGen Fyansford\t34999\tApcl Silo Mccurdys Rd HERNE HILL\t0.07\t-38.135421\t144.317441\n53\tGen Fyansford\t43653\tPTC Tower McCurdy Road HERNE HILL\t0.13\t-38.136706\t144.318866\n53\tGen Fyansford\t135221\tOptus Site Hamlyn Heights McCurdy Rd HERNE HILL\t0.17\t-38.137253\t144.318744\n53\tGen Fyansford\t11680\tMc Curdys Rd Cement Silo HERNE HILL\t0.31\t-38.138802\t144.317546\n53\tGen Fyansford\t48043\tHyland St \u0026 Fellmongers FYANSFORD\t0.58\t-38.141222\t144.317001\n54\tEastland Shopping Centre\t9011577\t4-10 Larissa Ave RINGWOOD\t0.29\t-37.811593\t145.234784\n54\tEastland Shopping Centre\t50950\tOptus/Hutchison Site Bedford Park RINGWOOD\t0.41\t-37.814029\t145.236827\n54\tEastland Shopping Centre\t10006084\tMaroondah Council Mines Rd RINGWOOD\t0.51\t-37.80873\t145.2432\n54\tEastland Shopping Centre\t9016781\tVic Track Monopole Bedford Park, Rosewarne Lane RINGWOOD\t0.52\t-37.814086\t145.23402\n54\tEastland Shopping Centre\t51456\t36-38 Mt Dandenong Rd RINGWOOD EAST\t0.52\t-37.811381\t145.243649\n55\tThe Hermitage (SEKI)\t10014505\tSuper Cheap Auto Gregory Hills 1 Gregory Hills Drive GLEDSWOOD HILLS\t0.28\t-34.019802\t150.762225\n55\tThe Hermitage (SEKI)\t10000734\tOfficeworks Gledswood Lot 811 Gregory Hills Dr GREGORY HILLS\t0.28\t-34.01994\t150.7631\n55\tThe Hermitage (SEKI)\t10010773\tENZOS 1 Gregory Hills Dr GLEDSWOOD HILLS\t0.34\t-34.0204\t150.7639\n55\tThe Hermitage (SEKI)\t10008189\tOptus Monopole Lot 601 Central Hills Drive GREGORY HILLS\t0.79\t-34.024434\t150.763473\n55\tThe Hermitage (SEKI)\t10017140\tVHA Monopole 2 Steer Road GREGORY HILLS\t0.93\t-34.025696\t150.762441\n56\tBrookhaven\t13470\tGCCC Reservoir Wuraga Rd BEENLEIGH\t1.39\t-27.728926\t153.187534\n56\tBrookhaven\t10011049\t38 Menora Rd BAHRS SCRUB\t1.41\t-27.728361\t153.162141\n56\tBrookhaven\t10000126\tThe Vale Ridgevale Blvd Holmview\t1.79\t-27.721064\t153.164475\n56\tBrookhaven\t10017916\tTelstra Street Cell, on road reserve opposite 325 Mount Warren Boulevard Mount Warren Park\t1.83\t-27.731599\t153.193135\n56\tBrookhaven\t10000551\tNBN Co 51 Berzins Court Bahrs Scrub\t1.97\t-27.73094\t153.15514\n57\tBingara Gorge\t10003236\tEastern intersection of Picton Rd and Hume Highway Picton Rd Wilton\t0.63\t-34.230132\t150.668625\n57\tBingara Gorge\t140863\tBingara Gorge 31 Pembroke Parade WILTON\t0.73\t-34.221962\t150.675813\n57\tBingara Gorge\t10003235\tWestern intersection of Picton Rd and Hume Highway Picton Rd Wilton\t0.78\t-34.22898\t150.666743\n57\tBingara Gorge\t9323\tA.G.L. WILTON\t3.24\t-34.233155\t150.710057\n57\tBingara Gorge\t9326\tDouglas Park Rd MT KEIRA\t3.97\t-34.219128\t150.716917\n58\tThe Ridge\t9023475\tRiverside Oaks 74 O\u0027Briens Rd CATTAI\t1.61\t-33.530451\t150.907792\n58\tThe Ridge\t10010838\tRiverside Oaks Golf Club HGR 74 O\u0027Briens Road CATTAI\t1.68\t-33.52988\t150.90751\n58\tThe Ridge\t9027237\tNBN Co Site 110 Threkeld Drive CATTAI\t3.07\t-33.5631\t150.8999\n58\tThe Ridge\t9027239\tNBN Co Site 142 Tizzana Road EBENEZER\t3.15\t-33.524647\t150.892008\n58\tThe Ridge\t49656\tRiverside Oaks Obriens Rd CATTAI\t3.57\t-33.518073\t150.946727\n59\tFlourish\t10017710\tDeebing Springs DEEBING CREEK\t0.42\t-27.6768\t152.7593\n59\tFlourish\t10006085\tDGPS site 56 Bottlebrush Dr DEEBING HEIGHTS\t1.43\t-27.67262\t152.7478\n59\tFlourish\t10000100\tNBN Co Site 46 Hughes Road Purga\t1.91\t-27.69124\t152.74406\n59\tFlourish\t10002262\t204 Monterea Rd RIPLEY\t2.24\t-27.663591\t152.771518\n59\tFlourish\t9012921\tTelstra Site Lot 4 Wensley Rd SOUTH RIPLEY\t2.62\t-27.697361\t152.777837\n60\tUniversity Hill\t10013697\t7 Ormond Boulevard BUNDOORA\t0.13\t-37.6787\t145.0712\n60\tUniversity Hill\t10000588\tVHA Rooftop Site Uni Hill Factory Outlets 2 Janfield Drive BUNDOORA\t0.15\t-37.6801\t145.070292\n60\tUniversity Hill\t10000404\tNike Uni Hill 2 Janefield Dr BUNDOORA\t0.18\t-37.680333\t145.070431\n60\tUniversity Hill\t10018484\tShop T38 Uni Hill Factory Outlets 2 Janefield Drive BUNDOORA\t0.18\t-37.6803\t145.0706\n60\tUniversity Hill\t10018091\tPeter Alexander Uni Hill F/O, 2 Janefield Drive BUNDOORA\t0.25\t-37.68098\t145.07022\n61\tLots 2-3 Golf Links Road Wundowie\t31194\tKing C and IM GABALONG\t1.04\t-31.726056\t116.370139\n61\tLots 2-3 Golf Links Road Wundowie\t141399\tLpon Site 4 Zamia Terrace WUNDOWIE\t3.43\t-31.756212\t116.384022\n61\tLots 2-3 Golf Links Road Wundowie\t500697\tCorner Banksia Avenue and Boronia Ave WUNDOWIE\t3.66\t-31.759499\t116.382901\n61\tLots 2-3 Golf Links Road Wundowie\t9008842\tTransfer Pump Station Balga Terrace WUNDOWIE\t3.72\t-31.757347\t116.387287\n61\tLots 2-3 Golf Links Road Wundowie\t31198\tWandoo Pde WUNDOWIE\t3.87\t-31.76229\t116.381615\n62\tThe Peninsula\t9000122\tCentre for Long Life Learning Everest Parkway SPRINGFIELD LAKES\t0.31\t-27.676934\t152.908227\n62\tThe Peninsula\t10012749\tBCF Springfield 1 Main Street SPRINGFIELD CENTRAL\t0.44\t-27.67874\t152.90541\n62\tThe Peninsula\t9001026\tEducation City Synnathamby Bvd SPRINGFIELD LAKES\t0.47\t-27.682756\t152.906955\n62\tThe Peninsula\t10012806\tB Block 34 Sinnathamby Blvd SPRINGFIELD\t0.49\t-27.68329\t152.907717\n62\tThe Peninsula\t10015350\tSupercheap Auto Springfield 1 Main Street Springfield Central\t0.49\t-27.6788\t152.90484\n63\tBlackmore Subdivision\t38739\tTelstra Customer BERRY SPRINGS\t1.61\t-12.741656\t130.922508\n63\tBlackmore Subdivision\t1469\tTelstra Customer 6 km W of BERRY SPRINGS\t2.36\t-12.706415\t130.921322\n63\tBlackmore Subdivision\t570541\tTelstra Customer Hokin BERRY SPRINGS\t3.23\t-12.756515\t130.917115\n63\tBlackmore Subdivision\t1464\tTelstra Customer 2 km N of TIDY HILL\t3.27\t-12.72653\t130.889249\n63\tBlackmore Subdivision\t10004147\tTelstra Site 430 Mira Road SOUTHPORT\t3.32\t-12.73084\t130.94982\n64\tRidge View Estate\t9020286\tCommunications site 1.8 km north west of MANTON DAM\t6.99\t-12.828707\t131.11494\n64\tRidge View Estate\t570768\tTelstra GSM Site DARWIN RIVER DAM\t7.2\t-12.813642\t130.987588\n64\tRidge View Estate\t1449\tPAWA Repeater Site DARWIN RIVER DAM\t7.23\t-12.813454\t130.987374\n64\tRidge View Estate\t9012291\tOptus Lattice Tower SEC 725 Hundred Of Cavenagh DARWIN RIVER\t7.27\t-12.813419\t130.986938\n64\tRidge View Estate\t1721\tPolice Site MANTON DAM\t7.73\t-12.831413\t131.121207\n65\tBlakes Crossing\t10008660\tPrimary School Maltarra Road Munno Para\t0.15\t-34.669445\t138.700515\n65\tBlakes Crossing\t10001547\tAldi Blakeview Corner Main Tce and Village Tce BLAKEVIEW\t1.15\t-34.680934\t138.702484\n65\tBlakes Crossing\t9028054\tBlakes Crossing Christian College 14 Boucaut Avenue BLAKEVIEW\t1.23\t-34.681081\t138.705797\n65\tBlakes Crossing\t10013333\tCnr Craigmore Road and Park Lake Blvd Blakeview\t1.31\t-34.68234\t138.702835\n65\tBlakes Crossing\t502309\tAAPT Base Station Monopole 16 Palina Court SMITHFIELD\t1.32\t-34.678307\t138.690219\n66\tRoche Creek Road Wandoan\t404799\tErgon Energy Substation WANDOAN\t2.67\t-26.128055\t149.970844\n66\tRoche Creek Road Wandoan\t9000156\tFire Station North St WANDOAN\t3.04\t-26.12194\t149.963704\n66\tRoche Creek Road Wandoan\t14856\tGrainco Wheat Silo WANDOAN\t3.26\t-26.124657\t149.962322\n66\tRoche Creek Road Wandoan\t9020115\tQGC Office 27 Royd Street WANDOAN\t3.26\t-26.122302\t149.961484\n66\tRoche Creek Road Wandoan\t140944\tBroadcast Site - GrainCorp Silo Jerrard St WANDOAN\t3.28\t-26.124518\t149.962079\n67\tMinta Farm\t9027520\tCirca Estate Grices Rd BERWICK\t0.35\t-38.079719\t145.360546\n67\tMinta Farm\t10016272\tMinta Farm 2/106 Soldiers Rd BERWICK\t0.6\t-38.0735\t145.3596\n67\tMinta Farm\t10013020\tVHA Monopole 94 Princes Highway OFFICER\t2.21\t-38.074346\t145.388532\n67\tMinta Farm\t9023209\tMonopole 21, Grices Road, Recreation Reserve BERWICK, VIC, 3806\t2.3\t-38.07418\t145.337896\n67\tMinta Farm\t10009871\tSt Francis Xavier College 75 Ridgemont Drive Berwick\t2.34\t-38.070631\t145.338566\n68\tKinbrook\t141818\tLPON Site 825 Donnybrook Rd DONNYBROOK\t1.03\t-37.542558\t144.970325\n68\tKinbrook\t9026106\tEnd of Norman Road DONNYBROOK\t1.09\t-37.549803\t144.965719\n68\tKinbrook\t9914587\tMobile Spectrum Licensing Site HUME FREEWAY\t1.16\t-37.539306\t144.945932\n68\tKinbrook\t38270\tCMTS Site 1327 Hume Highway KALKALLO\t1.74\t-37.529676\t144.946151\n68\tKinbrook\t10017556\tDGPS Base 14 Cameron Street Kalkallo\t1.94\t-37.525734\t144.950162\n69\tChancellor\t134682\tOptus Site Greensborough North Cnr Western Ring Road \u0026 Greensborough Bypass GREENSBOROUGH\t0.67\t-37.692452\t145.093182\n69\tChancellor\t305704\tVic Roads Reserve Cnr Western Ring Road and Greensborough bypass GREENSBOROUGH\t0.7\t-37.692696\t145.093165\n69\tChancellor\t10006651\t44 Civic Drive Greensborough\t1.63\t-37.689454\t145.111542\n69\tChancellor\t300793\tTAFE 1 Civic Drive GREENSBOROUGH\t1.72\t-37.687616\t145.11296\n69\tChancellor\t10018153\t8 Scholar Drive BUNDOORA\t1.76\t-37.685194\t145.073525\n70\tSeaside\t142197\tLPON Site 15 Paperbark Court FERN BAY\t0.3\t-32.858705\t151.812604\n70\tSeaside\t9010141\tTelstra Site Seaside Blvd WILLIAMTOWN\t0.54\t-32.860951\t151.813311\n70\tSeaside\t9012756\tNewcastle Golf Club Vardon St FERN BAY\t1.5\t-32.866279\t151.79909\n70\tSeaside\t10012664\tTelstra Palm Lake Resort Street Cell cnr Sunrise Pde \u0026 Sand Dune Cres Fern Bay\t1.88\t-32.8634\t151.791908\n70\tSeaside\t9912532\tMobile Spectrum Licensing Site NELSON BAY ROAD\t2.4\t-32.874033\t151.795137\n71\tBerwick Waters\t10016272\tMinta Farm 2/106 Soldiers Rd BERWICK\t0.82\t-38.0735\t145.3596\n71\tBerwick Waters\t9027520\tCirca Estate Grices Rd BERWICK\t0.9\t-38.079719\t145.360546\n71\tBerwick Waters\t9023209\tMonopole 21, Grices Road, Recreation Reserve BERWICK, VIC, 3806\t1.18\t-38.07418\t145.337896\n71\tBerwick Waters\t10009871\tSt Francis Xavier College 75 Ridgemont Drive Berwick\t1.27\t-38.070631\t145.338566\n71\tBerwick Waters\t10017416\t73 Ridgemont Dve BERWICK\t1.37\t-38.069713\t145.337985\n72\tGolf Links Road Wundowie\t31194\tKing C and IM GABALONG\t1.04\t-31.726056\t116.370139\n72\tGolf Links Road Wundowie\t141399\tLpon Site 4 Zamia Terrace WUNDOWIE\t3.44\t-31.756212\t116.384022\n72\tGolf Links Road Wundowie\t500697\tCorner Banksia Avenue and Boronia Ave WUNDOWIE\t3.67\t-31.759499\t116.382901\n72\tGolf Links Road Wundowie\t9008842\tTransfer Pump Station Balga Terrace WUNDOWIE\t3.73\t-31.757347\t116.387287\n72\tGolf Links Road Wundowie\t31198\tWandoo Pde WUNDOWIE\t3.87\t-31.76229\t116.381615\n73\tSussex Inlet\t54615\tBoral Plant Site SUSSEX INLET\t1.47\t-35.157135\t150.580354\n73\tSussex Inlet\t9032\tCnr River\u0026Neilson Rds SUSSEX INLET\t1.55\t-35.154994\t150.599626\n73\tSussex Inlet\t10018022\tSussex Inlet Golf Course Golfcourse Way SUSSEX INLET\t1.6\t-35.152222\t150.571944\n73\tSussex Inlet\t9900231\tMobile Spectrum Licensing Site SUSSEX INLET\t1.65\t-35.159312\t150.593287\n73\tSussex Inlet\t9068\tRVCP Butcher Shop 181 Jacobs Drive SUSSEX INLET\t1.76\t-35.156552\t150.600898\n74\tModeina\t9021877\tModiena Estate (NE-cnr) Westwood Drive \u0026 Rockbank Middle Road BURNSIDE\t0.56\t-37.746916\t144.749214\n74\tModeina\t9028030\tOval Light Pole Off Tentefield Drive BURNSIDE HEIGHTS\t0.8\t-37.737281\t144.756689\n74\tModeina\t306101\tMowbray College SW Cnr Lake St and Caroline Springs Blvd CAROLINE SPRINGS\t1.08\t-37.73442\t144.741797\n74\tModeina\t9020751\t10-20 Lake St CAROLINE SPRINGS\t1.17\t-37.733603\t144.74147\n74\tModeina\t9011247\tRooftop Tower 10 Lake St CAROLINE SPRINGS\t1.18\t-37.733576\t144.74131\n75\tBrentwood Forest\t9024147\tTelstra Site Opposite 60 Jones Road BELLBIRD PARK\t0.46\t-27.646767\t152.878792\n75\tBrentwood Forest\t10009143\tBellbird Park State Secondary College 2 Alesana Drive Bellbird Park\t0.62\t-27.638661\t152.884491\n75\tBrentwood Forest\t10009702\tPig n Whistle Town Square Shopping Centre 383 Redbank Plains Road Redbank Plains\t0.99\t-27.646217\t152.871135\n75\tBrentwood Forest\t9000261\tShopping Centre Redbank Plains Rd REDBANK PLAINS\t0.99\t-27.645668\t152.870906\n75\tBrentwood Forest\t10003111\tAldi Redbank Plains Cnr Argyle \u0026 Redbank Plains Road Redbank Plains\t1.06\t-27.645\t152.87\n76\tEco Village, Currumbin Valley\t9010914\tEcovillage 639 Currumbin Creek Road CURRUMBIN VALLEY\t0.65\t-28.172777\t153.435025\n76\tEco Village, Currumbin Valley\t9013395\tTelstra Site Adj 725 Currumbin Creek Rd CURRUMBIN VALLEY\t1.04\t-28.185331\t153.429496\n76\tEco Village, Currumbin Valley\t48273\tRural Fires Site Lot 3 Piggabeen Rd CURRUMBIN VALLEY\t1.43\t-28.188261\t153.433966\n76\tEco Village, Currumbin Valley\t10008410\tCurrumbin Valley COW Tomwin Mountain Road Currumbin Valley\t1.76\t-28.188102\t153.417886\n76\tEco Village, Currumbin Valley\t10009685\tTomewin Mountain Road 34 Tomewin Mountain Road Currumbin Valley\t1.78\t-28.188528\t153.418099\n77\tJindee\t602805\tLot 980 Marmion Avenue BUTLER\t0.07\t-31.645242\t115.694795\n77\tJindee\t9022503\tLight Pole 6 Jindalee Bvd JINDALEE\t0.27\t-31.647924\t115.69499\n77\tJindee\t9013192\tShopping Centre Light Pole 6 Jindalee Boulevard JINDALEE\t0.33\t-31.648141\t115.695915\n77\tJindee\t9013867\tVividwireless Light Pole LOT 1378, Marmion Avenue JINDALEE\t0.35\t-31.648431\t115.695673\n77\tJindee\t139914\t12 Barmouth Loop BUTLER\t0.37\t-31.642739\t115.696138\n78\tAlira\t140818\tBEACONSFIELD GF-BECA 125 Homestead Road BERWICK\t1.38\t-38.05642\t145.324758\n78\tAlira\t10017522\tNossal High School - Sir Gustav Nossal Boulevarde 100 Clyde Road BERWICK\t1.4\t-38.03906\t145.335566\n78\tAlira\t53288\tBerwick Regional Church BERWICK\t1.4\t-38.048616\t145.336172\n78\tAlira\t303276\tMonash Uni Berwick Campus 100 Clyde Rd BERWICK\t1.56\t-38.03872\t145.337421\n78\tAlira\t303896\tOptus Site Monash University Clyde St BERWICK\t1.69\t-38.040828\t145.339881\n79\tLightsview\t500389\tOptus site Fosters Road NORTHFIELD\t0.42\t-34.855289\t138.632831\n79\tLightsview\t304425\t200 Fosters Road OAKDEN\t0.65\t-34.852469\t138.638489\n79\tLightsview\t9007767\tTelstra Site 246-256 Fosters Rd OAKDEN\t0.73\t-34.851401\t138.636729\n79\tLightsview\t9022948\tJames Nash House 140 Hilltop Drive OAKDEN\t0.91\t-34.84983\t138.637198\n79\tLightsview\t22797\tETSA site cnr Fosters Road \u0026 Grand Junction Road NORTHFIELD\t1.05\t-34.84861\t138.634269\n80\tLakeside, Pakenham\t9011837\tBigAir Communications Site - Lakeside Cardinia Road PAKENHAM\t0.07\t-38.072964\t145.436318\n80\tLakeside, Pakenham\t9024391\tToomah Community Centre Golden Dreen Street PAKENHAM\t0.31\t-38.071926\t145.438871\n80\tLakeside, Pakenham\t10017215\t145 Henry Rd PAKENHAM\t0.71\t-38.076774\t145.441983\n80\tLakeside, Pakenham\t9027201\tHenry Road PAKENHAM\t0.77\t-38.077398\t145.44229\n80\tLakeside, Pakenham\t10009872\tSt Francis Xavier College 21 Majestic Drive Officer\t1.24\t-38.061898\t145.43331\n81\tDrivers Run\t404459\tDistillery Creek Treatment Plant Boomers Rd WAVERLEY\t0.39\t-41.430472\t147.209597\n81\tDrivers Run\t9013567\tWilling Tower 102 Abels Hill Road ST LEONARDS\t1.49\t-41.446029\t147.214113\n81\tDrivers Run\t141754\tnr corner Abels Hill Road \u0026 Hume Highway ST LEONARDS\t1.49\t-41.446047\t147.213909\n81\tDrivers Run\t33654\tDuncan Site ABELS HILL\t1.61\t-41.447035\t147.215157\n81\tDrivers Run\t402694\tCastlemaine Reservoir RAVENSWOOD\t1.77\t-41.422838\t147.196408\n82\tPort Hedland International Airport Precinct 3\t9020077\tGeorgiou DGPS transmitter 1.8km southwest of airport SOUTH HEDLAND\t0.45\t-20.389066\t118.611301\n82\tPort Hedland International Airport Precinct 3\t9016019\tSubdivision off Great Northern Highway 1 km SE of Quarry Road Intersection SOUTH HEDLAND\t0.69\t-20.380057\t118.614454\n82\tPort Hedland International Airport Precinct 3\t49727\tMet Bureau Radar Site PORT HEDLAND\t0.81\t-20.382536\t118.617823\n82\tPort Hedland International Airport Precinct 3\t10014263\tSt John Ambulance 2 Quininup Way Port Hedland\t1.26\t-20.374\t118.613\n82\tPort Hedland International Airport Precinct 3\t45310\tRFDS Remote TX Site Airport PORT HEDLAND\t1.4\t-20.373964\t118.616775\n83\tGreenlea\t27402\tCnr of Baldivis \u0026 Mundijong Rd BALDIVIS\t0.08\t-32.294103\t115.827144\n83\tGreenlea\t10008433\tBaldivis North Lot 800 Kerosene Lane BALDIVIS\t0.8\t-32.29571\t115.81964\n83\tGreenlea\t603274\tLand Fill Facility Millar Road BALDIVIS\t1.36\t-32.28655\t115.816923\n83\tGreenlea\t10002994\tLEARY ROAD optus site 18 Duncraig Rd Applecross 6153 Applecross\t1.84\t-32.31065\t115.8319\n83\tGreenlea\t10008095\t392 Baldivis Road Baldivis\t2.02\t-32.311083\t115.819415\n84\tCaviar Drive\t15186\tErgon Substn Warrego Hwy CHARLEVILLE\t2.26\t-26.401218\t146.281749\n84\tCaviar Drive\t151490\tBroadcast Site Warrego Highway 3 km E of CHARLEVILLE\t3.36\t-26.40696\t146.272748\n84\tCaviar Drive\t15211\tMet Bureau Site CHARLEVILLE\t3.42\t-26.415677\t146.284167\n84\tCaviar Drive\t401170\tSODE Transmit Site Lot 122 Partridge St CHARLEVILLE\t4.0\t-26.394016\t146.259337\n84\tCaviar Drive\t137411\tCharleville Showground \u0026 Racecourse Partridge Street CHARLEVILLE\t4.37\t-26.4\t146.257083\n85\tCanopy\t10009629\t1005 Cranbourne-Frankston Rd CRANBOURNE\t0.13\t-38.109805\t145.258461\n85\tCanopy\t10008756\t1000 Cranbourne-Frankston Rd CRANBOURNE\t0.85\t-38.110306\t145.247888\n85\tCanopy\t9012152\tOptus Site SP-Ausnet Tower 22 Raisell Road CRANBOURNE\t0.92\t-38.103813\t145.263268\n85\tCanopy\t304399\tRanfurlie Golf Course Cranbourne-Frankston Rd CRANBOURNE\t0.94\t-38.116811\t145.2501\n85\tCanopy\t9026115\tVodafone Site Monopole Ranfurlie Golf Course Cranbourne - Frankston Road CRANBOURNE WEST VIC 3977\t1.1\t-38.118785\t145.250178\n86\tGrantham Rebuild Project\t135766\tOptus Site Gatton Bowtells Road GRANTHAM\t0.62\t-27.55883\t152.191622\n86\tGrantham Rebuild Project\t14373\tQFS Site Sandy Creek Rd GRANTHAM\t0.79\t-27.562658\t152.197773\n86\tGrantham Rebuild Project\t55610\tVodafone/Optus/Telstra Site Philips Rd GRANTHAM\t0.93\t-27.556943\t152.185406\n86\tGrantham Rebuild Project\t14376\tQR Site GRANTHAM\t1.74\t-27.575125\t152.202666\n86\tGrantham Rebuild Project\t14377\tRural Fires Site 14 Railway St GRANTHAM\t1.84\t-27.576227\t152.202739\n87\tMaplewood\t9007634\tTelstra Site Rees Rd MELTON SOUTH\t0.58\t-37.708785\t144.563349\n87\tMaplewood\t9003617\tVICTORIA UNIVERSITY CNR REES \u0026 WATSON ROADS MELTON SOUTH\t0.84\t-37.706894\t144.565987\n87\tMaplewood\t305295\tOptus Victoria University cnr Rees \u0026 Wilson Roads MELTON SOUTH\t0.85\t-37.706627\t144.565268\n87\tMaplewood\t301687\tVUT Building N Rees Rd MELTON\t0.86\t-37.706491\t144.565215\n87\tMaplewood\t10008075\t979fm Building VUT Campus 20-40 Rees Road Melton South\t0.87\t-37.706608\t144.565879\n88\tMcMahon Road North Dandalup\t10017115\tNorth Dandalup Lot 9000 Lakes Road North Dandalup\t1.38\t-32.49866\t115.917576\n88\tMcMahon Road North Dandalup\t10004710\t1801 Lakes Rd NORTH DANDALUP\t1.86\t-32.515882\t115.917155\n88\tMcMahon Road North Dandalup\t10016874\t1424 Hopeland Rd NORTH DANDALUP\t3.66\t-32.471408\t115.924373\n88\tMcMahon Road North Dandalup\t10003162\t1391 Hopeland Road North Dandalup\t3.7\t-32.471194\t115.923684\n88\tMcMahon Road North Dandalup\t9022770\tMZI Mandurah 6 km SW of KEYSBROOK\t3.7\t-32.470968\t115.925211\n89\tWoodlands\t10000126\tThe Vale Ridgevale Blvd Holmview\t0.56\t-27.721064\t153.164475\n89\tWoodlands\t10011049\t38 Menora Rd BAHRS SCRUB\t0.93\t-27.728361\t153.162141\n89\tWoodlands\t9007282\tTelstra Site 324 - 328 Logan River Rd WATERFORD\t1.14\t-27.710321\t153.160477\n89\tWoodlands\t9018673\tSales Office 2 Woodlands Blvd WATERFORD\t1.15\t-27.710103\t153.159516\n89\tWoodlands\t10000551\tNBN Co 51 Berzins Court Bahrs Scrub\t1.22\t-27.73094\t153.15514\n90\tKrystal Park Estate\t9002903\tHopetoun Wind Turbine 1 4 km North of HOPETOUN\t0.42\t-33.909724\t120.130076\n90\tKrystal Park Estate\t9002905\tHopetoun Wind Turbine 2 4 km North of HOPETOUN\t0.74\t-33.906225\t120.129642\n90\tKrystal Park Estate\t9002904\tHopetoun Power Station 2 4 km North of HOPETOUN\t0.85\t-33.90505\t120.129908\n90\tKrystal Park Estate\t28628\tBeacon Drive HOPETOUN\t2.31\t-33.932786\t120.133264\n90\tKrystal Park Estate\t152602\tTelstra NTA Site Table Hill HOPETOUN\t2.34\t-33.933026\t120.133515\n91\tRiver Bend\t9015167\tCustomer Site 246 Nicholson-Sarsfield Rd NICHOLSON\t0.47\t-37.796109\t147.739049\n91\tRiver Bend\t9022851\tNBN Co Site 43 Waddells Road NICHOLSON\t1.14\t-37.807403\t147.747266\n91\tRiver Bend\t10007881\tSite 929 Princes Hwy NICHOLSON\t1.73\t-37.815795\t147.73893\n91\tRiver Bend\t45632\tCFA Site 37 Sarsfield Rd NICHOLSON\t1.81\t-37.816547\t147.736372\n91\tRiver Bend\t401991\tEGP2 Pipeline Site 2.8 km NNW of CLAYBANK\t2.36\t-37.781843\t147.751245\n92\tExford Waters\t53505\tMet Bureau Site Toolern Creek MELTON SOUTH\t0.51\t-37.727292\t144.579793\n92\tExford Waters\t10012272\tVHA Monopole 1219 Exford Road EXFORD\t1.68\t-37.742498\t144.566497\n92\tExford Waters\t9026932\tExford CMTS 105 Murphys Road EXFORD\t2.03\t-37.73001\t144.551296\n92\tExford Waters\t9026060\t1 Murray St MELTON SOUTH\t2.19\t-37.709085\t144.571949\n92\tExford Waters\t302541\tExford Primary School Exford Road MELTON SOUTH\t2.2\t-37.748503\t144.574904\n93\tTrue North\t304954\tMelbourne Water Site Patullos Lane ROXBURGH PARK\t0.56\t-37.617868\t144.919437\n93\tTrue North\t10016667\tRoxburgh Park South 6 Kingfisher Lane ROXBURGH PARK\t0.64\t-37.61834\t144.92023\n93\tTrue North\t42867\tPatullos Rd SOMERTON\t0.78\t-37.618469\t144.921844\n93\tTrue North\t42868\tCraigieburn Tank CRAIGIEBURN\t0.82\t-37.60981\t144.91121\n93\tTrue North\t9003058\t2 Meadowbank Court CRAIGIEBURN\t1.14\t-37.609495\t144.921879\n94\tDonnybrae\t141818\tLPON Site 825 Donnybrook Rd DONNYBROOK\t0.65\t-37.542558\t144.970325\n94\tDonnybrae\t9026106\tEnd of Norman Road DONNYBROOK\t1.54\t-37.549803\t144.965719\n94\tDonnybrae\t10015981\tOlivine Grove Donnybrook Rd DONNYBROOK\t1.94\t-37.53358\t144.99627\n94\tDonnybrae\t9914587\tMobile Spectrum Licensing Site HUME FREEWAY\t2.57\t-37.539306\t144.945932\n94\tDonnybrae\t10017556\tDGPS Base 14 Cameron Street Kalkallo\t2.59\t-37.525734\t144.950162\n95\tGreenvale Gardens\t9016620\tOptiComm 1075 Mickleham Road GREENVALE\t0.22\t-37.622213\t144.881519\n95\tGreenvale Gardens\t9022937\tOptus 35m Concrete Monopole 500-600 Somerton Road GREENVALE\t0.63\t-37.619873\t144.890739\n95\tGreenvale Gardens\t9001979\tTelstra Site 965 Mickleham Rd GREENVALE\t1.19\t-37.630905\t144.877001\n95\tGreenvale Gardens\t9011333\tTelstra RBS Site 1240 Mickleham Rd GREENVALE\t1.66\t-37.607509\t144.889538\n95\tGreenvale Gardens\t300776\tTelstra Site BHP Centre Dunhelen Lane YUROKE\t2.09\t-37.605113\t144.894894\n96\tCraigieburn\t10013240\tColes Craigieburn Central 340 Craigieburn Road (Cnr Windrock Ave) CRAIGIEBURN\t0.28\t-37.5923\t144.91523\n96\tCraigieburn\t9002026\tCragieburn Super Clinic Craigieburn Rd CRAGIEBURN\t0.42\t-37.595305\t144.916486\n96\tCraigieburn\t10013762\tCraigieburn Central Shopping Centre 340 Craigieburn Rd Craigieburn\t0.42\t-37.592647\t144.913669\n96\tCraigieburn\t10012354\tJB Hi-Fi Central 330 Craigieburn Rd CRAIGIEBURN\t0.43\t-37.591896\t144.913444\n96\tCraigieburn\t10002483\tTarget Central 340 Craigieburn Rd CRAIGIEBURN\t0.46\t-37.592286\t144.913175\n97\tCurlewis Park\t9013497\tSewer Pump Station SP550 160 Jetty Road DRYSDALE\t0.1\t-38.171108\t144.552226\n97\tCurlewis Park\t10015771\t12-20 Avila Road CURLEWIS\t0.88\t-38.162474\t144.55419\n97\tCurlewis Park\t10007542\tSport Pavilion Community Drive Drysdale\t0.94\t-38.166644\t144.562537\n97\tCurlewis Park\t10011675\tCurlewis Banff Drive (2.5km E of) CURLEWIS\t1.13\t-38.176405\t144.542488\n97\tCurlewis Park\t53518\tBooster Pump Newcombe Street DRYSDALE\t1.4\t-38.177777\t144.565746\n98\tRidgeview\t9015088\tTelstra Site 2 - 54 Raynbird Rd NARANGBA\t0.46\t-27.18229\t152.928428\n98\tRidgeview\t9022203\tNarangba North Raynbirds Rd NARANGBA\t0.55\t-27.180777\t152.929586\n98\tRidgeview\t138235\tTransmitter Site 9 Bee Eater Close Narangba\t1.31\t-27.171868\t152.932458\n98\tRidgeview\t141472\t1001 Oakey Flat Road NARANGBA\t1.34\t-27.188355\t152.93473\n98\tRidgeview\t138967\tLPON Site Jacko Place NARANGBA\t1.71\t-27.168192\t152.914371\n99\tGillkrest\t10654\tTelstra Site TPA BROWNES CREEK\t3.92\t-33.514543\t149.145619\n99\tGillkrest\t10651\tJarman Cres BLAYNEY\t4.17\t-33.522484\t149.229044\n99\tGillkrest\t9007088\tJarman Crescent BLAYNEY\t4.75\t-33.520701\t149.236351\n99\tGillkrest\t9015657\tDewatering Plant Hill St BLAYNEY\t5.98\t-33.524024\t149.249054\n99\tGillkrest\t9018725\tNBN Co Site 84 Marshalls Lane BLAYNEY\t6.08\t-33.516575\t149.252112\n100\tAspire\t9010732\tTelstra Site 11 City Vista Ct PLUMPTON\t0.27\t-37.708406\t144.72203\n100\tAspire\t305623\t2 Zebrina Close HILLSIDE\t1.44\t-37.694622\t144.728557\n100\tAspire\t9015394\tTelstra RBS Site 127 Gourlay Rd TAYLORS HILL\t1.58\t-37.711405\t144.7418\n100\tAspire\t10013237\tColes Taylors Hill Village 127 Gourlay Road TAYLORS HILL\t1.58\t-37.71166\t144.7417\n100\tAspire\t9000224\t30 Gourlay Rd HILLSIDE\t1.75\t-37.699844\t144.742348\n101\tSunbury Fields\t142049\t72 Dunrossil Dr SUNBURY\t0.84\t-37.558975\t144.727907\n101\tSunbury Fields\t9009914\tTelstra RBS Site 204 Racecourse Rd SUNBURY\t1.29\t-37.557505\t144.734601\n101\tSunbury Fields\t140731\tAmateur repeater 10 Doig Place SUNBURY\t1.74\t-37.56846\t144.712719\n101\tSunbury Fields\t152757\tShering Shed Rupertswood SUNBURY\t1.88\t-37.557478\t144.741514\n101\tSunbury Fields\t44033\tWestern Water Tanks Lot 62a Riddell Rd SUNBURY\t2.04\t-37.554195\t144.697467\n102\tGateway Business Park\t9023777\tNBN Co Site 29 Dobbys Rd BONDOOLA\t2.64\t-23.182214\t150.676192\n102\tGateway Business Park\t137366\tKeppal Park Racecourse Racecourse Road BARMARYEE\t2.88\t-23.144027\t150.705281\n102\tGateway Business Park\t9017802\tNBN Co Site 2901 Yeppoon Road YEPPOON\t3.39\t-23.145147\t150.718373\n102\tGateway Business Park\t9013193\tTelstra RBS Site Lot 1 Near 2901 Yeppoon Rd YEPPOON\t3.47\t-23.144543\t150.71871\n102\tGateway Business Park\t461285\tRural Fire Shed BONDOOLA\t3.89\t-23.185882\t150.664204\n103\tHeritage Hills \t27719\tLot 8 South West Highway BRUNSWICK JUNCTION\t0.73\t-33.283791\t115.834158\n103\tHeritage Hills \t10011074\tBreak Pressure Tank 3 Saline Water Disposal Pipeline ROELANDS\t1.67\t-33.303355\t115.843797\n103\tHeritage Hills \t600480\tOptus Site Partridge Rd BRUNSWICK JUNCTION\t3.22\t-33.26989\t115.859349\n103\tHeritage Hills \t27722\tOne Tree Hill BRUNSWICK JUNCTION\t3.22\t-33.271039\t115.860665\n103\tHeritage Hills \t36832\tTelstra Site One Tree Hill BRUNSWICK JUNCTION\t3.26\t-33.27038\t115.860642\n104\tCasiana Grove\t10014471\t825 Cranbourne-Frankston Road Cranbourne\t0.43\t-38.120456\t145.244205\n104\tCasiana Grove\t9027781\tConstruction Site NE cnr Everlasting Blvd \u0026 Atlas Drive CRANBOURNE WEST\t0.52\t-38.112822\t145.239779\n104\tCasiana Grove\t9014734\tOptiComm Site, Casiana Estate 825 Cranbourne-Frankston Road CRANBOURNE\t0.77\t-38.11871\t145.249907\n104\tCasiana Grove\t304399\tRanfurlie Golf Course Cranbourne-Frankston Rd CRANBOURNE\t0.77\t-38.116811\t145.2501\n104\tCasiana Grove\t9026115\tVodafone Site Monopole Ranfurlie Golf Course Cranbourne - Frankston Road CRANBOURNE WEST VIC 3977\t0.79\t-38.118785\t145.250178\n105\tAvon Ridge\t9012193\tWestern Power Site Connemara Drive BRIGADOON\t1.55\t-31.76384\t116.090782\n105\tAvon Ridge\t26461\tWest Australian Government Railways Ch22 Site MILLENDON\t1.65\t-31.762076\t116.08384\n105\tAvon Ridge\t9019950\tLot 146 Connemara Drive (Cnr Flindersia Avenue) BRIGADOON\t2.47\t-31.76876\t116.079888\n105\tAvon Ridge\t602387\tMet Bureau Site WALYUNGA\t2.53\t-31.754916\t116.068147\n105\tAvon Ridge\t138646\t41 Tarbenian Road BRIGADOON\t3.75\t-31.78097\t116.077961\n106\tAlbright\t10017721\tOptus Repeater 2-10 Botero Place TRUGANINA\t1.13\t-37.817024\t144.734624\n106\tAlbright\t10018137\tOptus Repeater M2872 2-10 Botero Place TRUGANINA\t1.24\t-37.815493\t144.73449\n106\tAlbright\t9009781\tTelstra RBS Site Cnr Leakes Rd and Woods Rd TRUGANINA\t1.28\t-37.834206\t144.71997\n106\tAlbright\t9023218\tLot 19, 50 Permas Way TRUGANINA\t1.29\t-37.816985\t144.736738\n106\tAlbright\t9016182\t25-29 Permas Way TRUGANINA\t1.6\t-37.819827\t144.74207\n107\tPasadena\t9021968\tCnr Berwick-Cranbourne Rd \u0026 Patterson Rd NORTH CLYDE\t0.24\t-38.118159\t145.328423\n107\tPasadena\t10010368\tNBN Co Site 1B/369 Casey Fields Blvd Cranbourne East\t1.24\t-38.1236\t145.31349\n107\tPasadena\t9027200\tHaflinger Avenue CLYDE NORTH\t1.38\t-38.108397\t145.321089\n107\tPasadena\t45764\tCFA Site Railway Rd CLYDE\t1.52\t-38.133255\t145.331056\n107\tPasadena\t304606\t200 Tucker Rd CLYDE\t1.79\t-38.118705\t145.347244\n108\tQuay 2\t10011459\t14 - 18 Winki Way TORQUAY\t0.34\t-38.31046\t144.318\n108\tQuay 2\t9001917\tTelstra Site John Pawsey Jnr Lane TORQUAY\t0.9\t-38.300406\t144.316668\n108\tQuay 2\t136976\t25 Grossmans Road TORQUAY\t1.42\t-38.320583\t144.317099\n108\tQuay 2\t43946\tGrossmans Rd TORQUAY\t1.58\t-38.321856\t144.316068\n108\tQuay 2\t42562\tGrossmans Rd (W38) TORQUAY\t1.82\t-38.322159\t144.309653\n109\tAbiwood 660\t10001608\t30 Hardys Rd CLYDE NORTH\t0.29\t-38.104394\t145.333667\n109\tAbiwood 660\t9016940\tOptiComm North Clyde Hardys Road CLYDE NORTH\t0.47\t-38.103544\t145.331699\n109\tAbiwood 660\t9020225\tTelstra Site 585 Berwick-Cranbourne Road CLYDE NORTH\t1.23\t-38.095277\t145.32933\n109\tAbiwood 660\t9027200\tHaflinger Avenue CLYDE NORTH\t1.45\t-38.108397\t145.321089\n109\tAbiwood 660\t10008466\tM8547 Cranbourne East Central 585 BERWICK-CRANBOURNE RD CLYDE NORTH\t1.49\t-38.09486\t145.3251\n110\tHumewood Pl Luddenham\t603252\t366 - 478 Luddenham Road LUDDENHAM\t1.71\t-33.834326\t150.761185\n110\tHumewood Pl Luddenham\t9007704\tTelstra Site 319 Luddenham Rd LUDDENHAM\t2.29\t-33.828489\t150.757786\n110\tHumewood Pl Luddenham\t9002513\tTelstra 319 Luddenham Rd LUDDENHAM\t2.32\t-33.828069\t150.755437\n110\tHumewood Pl Luddenham\t10002627\tNBN Co Site 319-325 Luddenham Road Orchard Hills\t2.38\t-33.82758\t150.75543\n110\tHumewood Pl Luddenham\t202308\tTelstra Site Elizabeth Drive BADGERYS CREEK\t2.41\t-33.869798\t150.762647\n111\tParkBridge\t9010020\tCommunity Pool and Recreational Facility MIDDLETON GRANGE\t0.69\t-33.908331\t150.842767\n111\tParkBridge\t9003976\tMaintenance Facility Thomas Hassall Anglican College, Second Avenue MIDDLETON GRANGE\t0.77\t-33.917556\t150.838738\n111\tParkBridge\t9016177\tThomas Hassall Anglican College 125 Kingsford Smith Avenue MIDDLETON GRANGE\t0.96\t-33.918995\t150.840053\n111\tParkBridge\t10000839\tVHA Monopole Lot 307 DP2475 Off Flynn Ave WEST HOXTON\t0.99\t-33.919705\t150.83337\n111\tParkBridge\t202260\t185 Fifteenth Avenue WEST HOXTON\t1.15\t-33.920889\t150.832412\n112\tAquarevo\t10001424\tAldi Lyndhurst Marriot Blvd LYNDHURST\t0.77\t-38.0781\t145.250748\n112\tAquarevo\t9026142\tLost Dogs Home 920 Thompsons Road CRANBOURNE WEST\t1.09\t-38.078795\t145.241499\n112\tAquarevo\t10005587\t4 Latchford St CRANBOURNE WEST\t1.17\t-38.080902\t145.244089\n112\tAquarevo\t9023653\tOptus 30m Monopole 335 Dandenong Hastings Road DANDENONG SOUTH\t1.22\t-38.065902\t145.237339\n112\tAquarevo\t303938\tRailway Station Endeavour Drive MERINDA PARK\t1.4\t-38.078375\t145.26276\n113\tHarold Circuit\t139483\t100 m North of Cnr Inches Rd and Whistlers Lane VERGES CREEK\t1.55\t-31.082327\t152.874247\n113\tHarold Circuit\t9018259\tNBN Co Site 179 Old Station Rd VERGES CREEK\t1.78\t-31.075684\t152.872809\n113\tHarold Circuit\t7576\t213 South West Rocks Road KEMPSEY\t3.38\t-31.055245\t152.871547\n113\tHarold Circuit\t9015034\tFloodplain Bridge South West Rocks Rd KEMPSEY\t4.25\t-31.042774\t152.888666\n113\tHarold Circuit\t138645\tWestport Park Cnr. Buller and Park Street PORT MACQUARIE\t4.33\t-31.043027\t152.900844\n114\tCentral Hills\t10017140\tVHA Monopole 2 Steer Road GREGORY HILLS\t0.41\t-34.025696\t150.762441\n114\tCentral Hills\t10008189\tOptus Monopole Lot 601 Central Hills Drive GREGORY HILLS\t0.47\t-34.024434\t150.763473\n114\tCentral Hills\t10014505\tSuper Cheap Auto Gregory Hills 1 Gregory Hills Drive GLEDSWOOD HILLS\t0.59\t-34.019802\t150.762225\n114\tCentral Hills\t10000734\tOfficeworks Gledswood Lot 811 Gregory Hills Dr GREGORY HILLS\t0.63\t-34.01994\t150.7631\n114\tCentral Hills\t10010773\tENZOS 1 Gregory Hills Dr GLEDSWOOD HILLS\t0.65\t-34.0204\t150.7639\n115\tStoneleigh\t10018079\tLogan Reserve Rd LOGAN RESERVE\t0.72\t-27.70346\t153.1196\n115\tStoneleigh\t10017896\tLogan Reserve Rd LOGAN RESERVE\t1.03\t-27.717479\t153.120996\n115\tStoneleigh\t135726\tOptus Site Domestic Terminal Airport Drive BRISBANE AIRPORT\t1.43\t-27.697606\t153.122492\n115\tStoneleigh\t9002717\tTELSTRA SITE 306-316 Chambers Flat Rd LOGAN RESERVE\t1.6\t-27.698689\t153.105282\n115\tStoneleigh\t10018522\t410 Chambers Flat Rd LOGAN RESERVE\t1.92\t-27.705569\t153.097308\n116\tMambourin\t9021842\tRRL Radio Site via rail access track off Greens Road WYNDHAM VALE SOUTH\t0.73\t-37.890517\t144.605998\n116\tMambourin\t10001077\tAldi Vale Greens Road Wyndham Vale\t0.89\t-37.887396\t144.607224\n116\tMambourin\t10013387\t383 Black Forest Rd WERRIBEE\t0.91\t-37.898\t144.5947\n116\tMambourin\t9014346\tTelstra Site Lot A 205 Greens Rd WYNDHAM VALE\t0.94\t-37.887575\t144.6079\n116\tMambourin\t10018014\tKmart Manor Lakes, 455 Ballan Road MANOR LAKES\t2.11\t-37.8757\t144.6133\n117\tBrookwater\t142320\tQUU Water Reservoir Springfield College Dr SPRINGFIELD LAKES\t0.59\t-27.657984\t152.907574\n117\tBrookwater\t402001\tOptus/Vodafone Site adj Reservoir cnr Springfield Pky \u0026 Mur Blvd SPRINGFIELD\t0.62\t-27.658336\t152.907888\n117\tBrookwater\t135334\tOptus Site Springfield SPRINGFIELD\t0.68\t-27.656052\t152.90788\n117\tBrookwater\t9001818\tGolf Club Tournament Dr SPRINGFIELD\t0.84\t-27.662461\t152.894247\n117\tBrookwater\t10012577\t44 Fossiker Circuit SPRINGFIELD\t1.11\t-27.653611\t152.911389\n118\tLife\t10000475\t42 Parkwood Terrace POINT COOK\t0.53\t-37.908589\t144.74998\n118\tLife\t9003595\t12 Bouganvillea Dr POINT COOK\t0.81\t-37.901632\t144.749124\n118\tLife\t10010917\tTelstra Exchange 330 Point Cook Road Point Cook\t1.06\t-37.901231\t144.752968\n118\tLife\t9007488\t3GIS Site Weigall St BRUNSWICK EAST\t1.14\t-37.912947\t144.732809\n118\tLife\t9016183\t454-464 Point Cook Road POINT COOK\t1.21\t-37.917759\t144.749394\n119\tEllarook\t10018137\tOptus Repeater M2872 2-10 Botero Place TRUGANINA\t1.11\t-37.815493\t144.73449\n119\tEllarook\t10017721\tOptus Repeater 2-10 Botero Place TRUGANINA\t1.19\t-37.817024\t144.734624\n119\tEllarook\t9023218\tLot 19, 50 Permas Way TRUGANINA\t1.35\t-37.816985\t144.736738\n119\tEllarook\t10016108\tRooftop 52 Dunmore Drive TRUGANINA\t1.52\t-37.814598\t144.73969\n119\tEllarook\t10000095\t1 Doriemus Dr TRUGANINA\t1.58\t-37.801719\t144.735611\n120\tGap Ridge Industrial Area\t9016750\t2-Tonne Crane - Serial Number 63382 Seven Mile DAMPIER\t0.59\t-20.735309\t116.760554\n120\tGap Ridge Industrial Area\t602778\tSeven Mile Workshop Loco Maintenance Area DAMPIER\t0.6\t-20.735345\t116.760448\n120\tGap Ridge Industrial Area\t9016751\t3 Tonne Crane - Serial Number 63383 Seven Mile DAMPIER\t0.61\t-20.738806\t116.760242\n120\tGap Ridge Industrial Area\t36850\tSeven Mile DAMPIER\t0.74\t-20.732553\t116.76075\n120\tGap Ridge Industrial Area\t9003973\tAdministration Building Seven Mile DAMPIER\t0.79\t-20.733898\t116.759164\n121\tFishermans Rd\t602210\tYeardy Road CAPEL\t3.15\t-33.506155\t115.578021\n121\tFishermans Rd\t402725\tIluka Resources Site NORTH CAPEL WEST\t3.34\t-33.498172\t115.551412\n121\tFishermans Rd\t600798\tRGC Mineral Sands Yeardy Road NORTH CAPEL\t3.51\t-33.509274\t115.581102\n121\tFishermans Rd\t138443\tCapel Golf Club Brussell Highway STRATHAM\t3.54\t-33.452439\t115.60103\n121\tFishermans Rd\t601473\tWestralian Sands Process Plant SR2 Yeardy Road CAPEL\t3.68\t-33.510592\t115.572457\n122\tEvergreen Waters\t461600\tSTL 32 Edwards Rd JACKASS FLAT\t0.58\t-36.719428\t144.278843\n122\tEvergreen Waters\t9009947\tTelstra Site - Golf Club 1 Averys Rd EAGLEHAWK\t1.02\t-36.712192\t144.273191\n122\tEvergreen Waters\t142147\tNeangar Park Golf Club Averys Rd EAGLEHAWK\t1.14\t-36.713647\t144.271255\n122\tEvergreen Waters\t10009732\tJackass Flats 7 Averys Road EAGLEHAWK\t1.24\t-36.71431\t144.26991\n122\tEvergreen Waters\t302716\tVahland House Vahland St BENDIGO\t2.08\t-36.731924\t144.271716\n123\tRiverside at Tea Gardens\t139316\tHowlong Auto Electrics 12 Wanya Rd TEA GARDENS\t0.31\t-32.646307\t152.144323\n123\tRiverside at Tea Gardens\t405107\tCouncil Depot Wanya Rd TEA GARDENS\t0.31\t-32.646398\t152.144397\n123\tRiverside at Tea Gardens\t9011928\tMidcoast Water Reservoir Viney Creek Rd TEA GARDENS\t1.17\t-32.634227\t152.149396\n123\tRiverside at Tea Gardens\t250090\tCountry Energy Zone Sub Station TEA GARDENS\t1.48\t-32.631554\t152.150401\n123\tRiverside at Tea Gardens\t10016429\tTelstra Rooftop Site, 50 Spinifex Avenue Tea Gardens\t1.95\t-32.66114\t152.14002\n124\tSwan Bay Estate\t33681\tHighfield (Near) DILSTON\t0.66\t-41.278787\t147.040625\n124\tSwan Bay Estate\t33682\tEast Tamar Highway MOUNT DIRECTION\t1.88\t-41.265367\t147.033573\n124\tSwan Bay Estate\t10006862\tSwan Bay Los Angelos Rd Swan Bay\t2.2\t-41.297226\t147.016973\n124\tSwan Bay Estate\t33680\tDoctors Rise DILSTON\t2.29\t-41.299411\t147.049477\n124\tSwan Bay Estate\t10000226\tNBN Co NBN Co Site, 228 Los Angelos Rd SWAN BAY\t2.9\t-41.30509\t147.017546\n125\tMarshmead\t9021115\tNBN Co Site 671 Wandobah Road GUNNEDAH\t1.67\t-31.03046\t150.22324\n125\tMarshmead\t6694\tGunedah Coal Washery Plant Wandabah Road GUNNEDAH\t2.85\t-31.010096\t150.194508\n125\tMarshmead\t7008\tGunnedah Radio Cabs Office 50 Bando Street GUNNEDAH\t2.91\t-30.993358\t150.240033\n125\tMarshmead\t138133\tMt Blackjack lot 60 on plan 755474 7K8ms SW of Town Hall GUNNEDAH\t3.06\t-31.021761\t150.19253\n125\tMarshmead\t6696\tNSW Police Site Black Jack Mountain GUNNEDAH\t3.18\t-31.024355\t150.19207\n126\tWestwood\t9017407\tOptiComm - Plumpton 57 Beattys Road PLUMPTON\t0.87\t-37.704108\t144.703247\n126\tWestwood\t9010732\tTelstra Site 11 City Vista Ct PLUMPTON\t1.39\t-37.708406\t144.72203\n126\tWestwood\t305623\t2 Zebrina Close HILLSIDE\t1.62\t-37.694622\t144.728557\n126\tWestwood\t302961\tTelstra CMTS 974-1048 Melton Highway HILLSIDE\t1.73\t-37.68837\t144.72496\n126\tWestwood\t9000224\t30 Gourlay Rd HILLSIDE\t2.75\t-37.699844\t144.742348\n127\tFig Tree Fields Estate\t9026239\tByron Central Hospital LOT 100 Ewingsdale Road EWINGSDALE\t1.19\t-28.637811\t153.555335\n127\tFig Tree Fields Estate\t9027972\tByron Hospital IBS 2481, 11 Ewingsdale Rd EWINGSDALE\t1.21\t-28.637327\t153.555831\n127\tFig Tree Fields Estate\t9022798\tByron Bay Central Hospital Ewingsdale Road EWINGSDALE\t1.27\t-28.638526\t153.552801\n127\tFig Tree Fields Estate\t9015184\tPacific Hwy Upgrade Site 1.6 km SSW of EWINGSDALE\t1.3\t-28.650737\t153.548639\n127\tFig Tree Fields Estate\t9027223\tThe Farm 11 Ewingsdale Road EWINGSDALE\t1.38\t-28.635783\t153.555608\n128\tEurama Estate\t130031\tVodafone/Optus Site Lot 4 Badham Track off Henry Parkes Pde FAULCONBRIDGE\t0.96\t-33.704312\t150.534601\n128\tEurama Estate\t10010851\t690A Great Western Hwy FAULCONBRIDGE\t1.29\t-33.706535\t150.526848\n128\tEurama Estate\t10003690\tDTRS Site Faulconbridge 3 Rail Access Track off Great Western Hwy FAULCONBRIDGE\t1.4\t-33.70747\t150.52501\n128\tEurama Estate\t10013897\tTelstra Street Cell 737-746 Great Western Highway Linden\t1.81\t-33.7123\t150.51962\n128\tEurama Estate\t10295\tRFS Site Railway Street FAULCONBRIDGE\t1.86\t-33.69628\t150.532404\n129\tJackson View\t9012536\tDrouin Scout Hall 40m SE of intersection Victoria \u0026 Gulai Streets DROUIN\t0.58\t-38.131364\t145.856562\n129\tJackson View\t137969\tFire Station 3-5 Sinclair Street Drouin\t0.79\t-38.133055\t145.855212\n129\tJackson View\t140642\tGF- DRUA - Drouin 129 Princes Highway DROUIN\t0.95\t-38.134543\t145.855257\n129\tJackson View\t10002507\t33 Young St Drouin\t1.0\t-38.135237\t145.859273\n129\tJackson View\t9011455\tShire Council Customer Service Centre McCray Drive DROUIN\t1.01\t-38.13521\t145.860039\n130\tClydevale\t9020225\tTelstra Site 585 Berwick-Cranbourne Road CLYDE NORTH\t0.25\t-38.095277\t145.32933\n130\tClydevale\t10008466\tM8547 Cranbourne East Central 585 BERWICK-CRANBOURNE RD CLYDE NORTH\t0.61\t-38.09486\t145.3251\n130\tClydevale\t9016940\tOptiComm North Clyde Hardys Road CLYDE NORTH\t0.8\t-38.103544\t145.331699\n130\tClydevale\t10001608\t30 Hardys Rd CLYDE NORTH\t0.91\t-38.104394\t145.333667\n130\tClydevale\t9027200\tHaflinger Avenue CLYDE NORTH\t1.64\t-38.108397\t145.321089\n131\tMeridian\t9020225\tTelstra Site 585 Berwick-Cranbourne Road CLYDE NORTH\t1.42\t-38.095277\t145.32933\n131\tMeridian\t10008466\tM8547 Cranbourne East Central 585 BERWICK-CRANBOURNE RD CLYDE NORTH\t1.76\t-38.09486\t145.3251\n131\tMeridian\t10001608\t30 Hardys Rd CLYDE NORTH\t1.79\t-38.104394\t145.333667\n131\tMeridian\t9016940\tOptiComm North Clyde Hardys Road CLYDE NORTH\t1.81\t-38.103544\t145.331699\n131\tMeridian\t9027520\tCirca Estate Grices Rd BERWICK\t1.86\t-38.079719\t145.360546\n132\tThe Orchard\t10003393\tCnr of Leakes Rd and Davis Rd TARNEIT\t1.59\t-37.8302\t144.653502\n132\tThe Orchard\t10008432\tThe Heartlands 1166 Leakes Road MOUNT COTTRELL\t1.92\t-37.82831\t144.64132\n132\tThe Orchard\t10002003\tNBN Co Site 1491 Boundary Road Mount Cottrell\t2.19\t-37.79964\t144.64326\n132\tThe Orchard\t41876\t830 Leakes Rd TARNEIT\t2.47\t-37.832145\t144.676352\n132\tThe Orchard\t45948\tCFA Site Leak Rd TRUGANINA\t2.53\t-37.831987\t144.677493\n133\tMaddington\t9007367\tTelstra Site Orange Grove Lot 241 Kelvin Rd ORANGE GROVE\t0.38\t-32.026413\t116.005116\n133\tMaddington\t10003150\tLBNCO Maddington Lot 800 Clifford Street MADDINGTON\t0.44\t-32.029969\t116.001356\n133\tMaddington\t9004180\tLot 567 Valencia Way MADDINGTON\t0.9\t-32.034191\t115.998007\n133\tMaddington\t9003639\t123 Kelvin Road MADDINGTON\t0.98\t-32.036438\t115.999235\n133\tMaddington\t26930\tLot 238 Bickley Rd KENWICK\t1.24\t-32.030551\t115.9929\n134\tTea Trees\t10007285\tCorner of Springfield Central Boulevard and Health Care Drive Springfield\t1.1\t-27.68808\t152.911309\n134\tTea Trees\t9028115\tHealthcare Drive SPRINGFIELD\t1.29\t-27.686226\t152.910428\n134\tTea Trees\t9027521\tLot 750 Sinnathamby Blvd SPRINGFIELD CENTRAL\t1.52\t-27.684323\t152.905276\n134\tTea Trees\t9003105\tBalance Tank Spring Mountain Forest Park GREENBANK\t1.56\t-27.711517\t152.906271\n134\tTea Trees\t9022336\tNE-cnr Education City Dr \u0026 Sinnathamby Blvd SPRINGFIELD CENTRAL\t1.59\t-27.683388\t152.907208\n135\tGrand Lakes\t9008542\t3GIS Site 15 McHarry\u0027s Rd LARA\t0.45\t-38.022765\t144.381089\n135\tGrand Lakes\t140202\tRPP Australia Pty Ltd 151 Patullos Rd LARA\t0.76\t-38.020209\t144.379523\n135\tGrand Lakes\t138880\tLPON Site 19 Henderson Drive LARA\t0.98\t-38.017559\t144.388775\n135\tGrand Lakes\t10005849\tVHA Monopole 225 O\u0027Hallorans Road LARA\t1.2\t-38.016361\t144.377803\n135\tGrand Lakes\t302451\tLara Blvd LARA\t1.24\t-38.02978\t144.397853\n136\tTrillium\t9011164\tTelstra RBS Site 1760 Mickleham Rd MICKLEHAM\t1.42\t-37.570686\t144.876971\n136\tTrillium\t10018277\tTelstra Site, 135 Forest Red Gum Drive Mickleham\t1.64\t-37.55025\t144.89786\n136\tTrillium\t10000101\tNBN Co Site 740 Mt Ridley Road Mickleham\t1.93\t-37.55806\t144.86984\n136\tTrillium\t9013408\tTelstra Site Lot B 575 Craigieburn Rd CRAIGIEBURN\t2.51\t-37.586276\t144.887041\n136\tTrillium\t142560\tLot H Huntington Dr CRAIGIEBURN\t2.64\t-37.57327\t144.918063\n137\tOnslow Aerodome Redevelopment\t45094\tAerodrome ONSLOW\t0.45\t-21.667099\t115.11371\n137\tOnslow Aerodome Redevelopment\t32049\tComm Site ONSLOW\t0.51\t-21.660651\t115.112131\n137\tOnslow Aerodome Redevelopment\t9019418\tTerminal Building Onslow Airport ONSLOW\t0.55\t-21.666365\t115.1115\n137\tOnslow Aerodome Redevelopment\t9019784\tWater Tank Control Cubicle Onslow Rd, N of Airport ONSLOW\t0.62\t-21.659413\t115.112051\n137\tOnslow Aerodome Redevelopment\t32057\tSES HF Site ONSLOW\t1.24\t-21.652505\t115.116942\n138\tAurora\t9027743\t195 Craigieburn Road EAST WOLLERT\t0.45\t-37.60559\t145.010475\n138\tAurora\t9013063\tTelstra Site Lot 8 Craigieburn Rd East WOLLERT\t0.94\t-37.606996\t145.01599\n138\tAurora\t10007834\tAurora Development Bellavista Dve WOLLERT\t0.99\t-37.613677\t145.011428\n138\tAurora\t9022363\tHV Tower T19 95 Craigieburn Road WOLLERT\t1.0\t-37.60734\t145.016606\n138\tAurora\t10010332\t108 The Parade WOLLERT\t1.55\t-37.617654\t145.015407\n139\tCalula Estate\t9018431\t41 Montebello Rd MOUNT GAMBIER\t0.63\t-37.808192\t140.762623\n139\tCalula Estate\t206160\tOptus Site Lot 6 Terrensdale Road MOUNT GAMBIER\t1.02\t-37.802896\t140.769092\n139\tCalula Estate\t23888\tHutchison Site Wandilo Road MOUNT GAMBIER\t1.04\t-37.806913\t140.746267\n139\tCalula Estate\t23957\tMcdonnell Industries Suttontown Road MOUNT GAMBIER\t1.07\t-37.805069\t140.769732\n139\tCalula Estate\t302317\tCSR Timberyards Lot 1 Millicent Rd MT GAMBIER\t1.29\t-37.813227\t140.748461\n140\tTannum Blue\t10011506\tTannum Reservoir (New) 75 Tannum Sands Rd TANNUM SANDS\t0.61\t-23.9584\t151.3725\n140\tTannum Blue\t10009678\tTannum Sands Tannum Sand Road, Tannum Sands\t0.62\t-23.958381\t151.372664\n140\tTannum Blue\t461522\tOld Tannum Reservoir Tannum Sands Rd TANNUM SANDS\t0.78\t-23.956747\t151.373405\n140\tTannum Blue\t17088\t85 Cremorne Drive TANNUM SANDS\t0.93\t-23.952499\t151.369223\n140\tTannum Blue\t17087\tRural Fires Site Greenmount Station via TANNUM SANDS\t0.95\t-23.956361\t151.358847\n141\tWarralily Grange\t42918\tGeelong Airport 465 Surf Coast Highway MT DUNEED\t1.15\t-38.224665\t144.336278\n141\tWarralily Grange\t198319\tOptus/Hutchison Site Russell Rd MT DUNEED\t1.37\t-38.239122\t144.315551\n141\tWarralily Grange\t10007493\tBuilding D 2-38 Burvilles Road Geelong\t1.4\t-38.231258\t144.339978\n141\tWarralily Grange\t10014825\tMt Duneed Tank Williams Road Mt Duneed\t1.4\t-38.239576\t144.31595\n141\tWarralily Grange\t51574\tTelstra Site South of water tank, 130 Russells Road MT DUNEED\t1.46\t-38.24017\t144.315894\n142\t324 Tea Tree Rd Brighton - Stages 3\u00264\t9915465\tMobile Spectrum Licensing Site MIDLAND HIGHWAY\t1.97\t-42.682775\t147.26607\n142\t324 Tea Tree Rd Brighton - Stages 3\u00264\t39316\tRifle Range (Mounds) PONTVILLE\t2.05\t-42.677303\t147.275982\n142\t324 Tea Tree Rd Brighton - Stages 3\u00264\t10014309\tBroadcast Site 1 Kimberley Street Pontville\t2.11\t-42.680614\t147.26662\n142\t324 Tea Tree Rd Brighton - Stages 3\u00264\t9019508\tIDC 12 Rifle Range Rd PONTVILLE\t2.22\t-42.675345\t147.277694\n142\t324 Tea Tree Rd Brighton - Stages 3\u00264\t700773\t4 Melinda Court BRIGHTON\t2.58\t-42.705736\t147.255875\n143\tLampada\t10015818\t Calala 9 Whipbird Street CALALA\t0.82\t-31.14386\t150.95212\n143\tLampada\t6467\tHarris Base 132 Calala Lane TAMWORTH\t0.95\t-31.13064\t150.948557\n143\tLampada\t6489\tPacific Power 330 KV Substn Burgmans La CALALA\t1.09\t-31.146056\t150.950794\n143\tLampada\t9020735\t25 Boronia Drive CALALA\t1.67\t-31.129761\t150.93981\n143\tLampada\t6426\tTamworth City Council Water Treatment Plant Calala Lane TAMWORTH\t1.95\t-31.126158\t150.939007\n144\tCasey 3 Estate\t10001379\tAldi Casey Kingsland Parade Casey Market Town CASEY\t0.66\t-35.174342\t149.095434\n144\tCasey 3 Estate\t135215\tOptus Site Ngunnawal Cnr Clarrie Hermes Dr NICHOLLS\t0.82\t-35.176419\t149.095847\n144\tCasey 3 Estate\t205466\tLightpole on Roundabout Cnr Clarrie Hermis Dr and Playing Fields NICHOLLS\t0.83\t-35.176868\t149.095464\n144\tCasey 3 Estate\t54222\tTelstra Exchange HALL\t1.0\t-35.174868\t149.078613\n144\tCasey 3 Estate\t38466\tTelstra Exchange HALL\t1.0\t-35.173633\t149.078098\n145\tSt. Claire\t9022363\tHV Tower T19 95 Craigieburn Road WOLLERT\t0.95\t-37.60734\t145.016606\n145\tSt. Claire\t9013063\tTelstra Site Lot 8 Craigieburn Rd East WOLLERT\t1.01\t-37.606996\t145.01599\n145\tSt. Claire\t10010332\t108 The Parade WOLLERT\t1.48\t-37.617654\t145.015407\n145\tSt. Claire\t9027743\t195 Craigieburn Road EAST WOLLERT\t1.51\t-37.60559\t145.010475\n145\tSt. Claire\t10007834\tAurora Development Bellavista Dve WOLLERT\t1.52\t-37.613677\t145.011428\n146\tCrace\t9028143\tConstruction Site Cnr Hillcrest St \u0026 Langtree Cres CRACE\t0.43\t-35.200454\t149.108199\n146\tCrace\t135327\tOptus Site Crace Off Barton Highway CRACE\t0.58\t-35.207742\t149.113374\n146\tCrace\t205388\tCMTS Site Reservoir on Gungahlin Hill off Barton Hwy CRACE\t0.6\t-35.207832\t149.114207\n146\tCrace\t34903\t14 Freeling Cres PALMERSTON\t0.77\t-35.195908\t149.11403\n146\tCrace\t9001795\tLightpole on the Roundabout Gundaroo Dr \u0026 Ibis St. PALMERSTON\t1.36\t-35.190407\t149.112791\n147\tGermantown Road Two Wells\t10018465\tRooftop 16 Cavallaro Place LEWISTON\t1.03\t-34.607264\t138.563404\n147\tGermantown Road Two Wells\t500637\tAustralian National Level Crossing Dawkins Road TWO WELLS\t2.07\t-34.614515\t138.5337\n147\tGermantown Road Two Wells\t130376\tCMTS Lot 11 Port Gawler Road TWO WELLS\t2.45\t-34.625768\t138.533367\n147\tGermantown Road Two Wells\t10008490\tLewiston West Lot 503 Germantown Rd TWO WELLS\t2.5\t-34.59195\t138.55548\n147\tGermantown Road Two Wells\t10009303\tLewiston West 503 Germantown Lewiston\t2.54\t-34.59199\t138.561555\n148\tThe Vale\t10011162\tDGPS Site Smiths Ln WONGAWILLI\t0.27\t-34.472807\t150.764278\n148\tThe Vale\t10010594\tWongawilli Rd WONGAWILLI\t0.41\t-34.478188\t150.764668\n148\tThe Vale\t10000863\tWongawilli Colliery 1 Wongawilli Road Wongawilli\t0.73\t-34.476944\t150.755083\n148\tThe Vale\t8934\tWest Dapto Rd West DAPTO\t1.0\t-34.476725\t150.75194\n148\tThe Vale\t201492\tMine Entrance General Water Site DAPTO\t1.76\t-34.462984\t150.749914\n149\tLOT 224 ORTON ROAD OAKFORD\t10000167\tNBN Co Site 400 Kargotich Road Oakford\t1.45\t-32.21542\t115.95081\n149\tLOT 224 ORTON ROAD OAKFORD\t10002186\tGeorgiou Group DGPS transmitter Corner Kokoda Blvd and Orton Road BYFORD\t2.46\t-32.235125\t115.978142\n149\tLOT 224 ORTON ROAD OAKFORD\t10000154\tNBN Co Site 264 Gossage Road Oldbury\t2.57\t-32.250277\t115.944768\n149\tLOT 224 ORTON ROAD OAKFORD\t10008489\tCardupWest 9 Cavanagh CARDUP\t2.6\t-32.24465\t115.97308\n149\tLOT 224 ORTON ROAD OAKFORD\t601791\tTelstra/Optus Site Lot 215 Abernathy Rd OAKFORD\t3.35\t-32.210096\t115.924917\n150\tMayfield\t302184\t1591 South Gippsland Hwy CRANBOURNE\t0.29\t-38.127106\t145.291952\n150\tMayfield\t139589\t9 Cameron St CRANBOURNE\t0.7\t-38.119007\t145.288354\n150\tMayfield\t9000461\tWater Tank Racecourse South Gippsland Hwy CRANBOURNE\t0.88\t-38.120221\t145.282006\n150\tMayfield\t142241\tCranbourne WST Grant St CRANBOURNE\t0.95\t-38.11945\t145.28167\n150\tMayfield\t10014692\tTelstra Site 1655 South Gippsland Highway Cranbourne East\t1.03\t-38.132775\t145.29652\n151\tAgar Industrial Park\t137159\tTradeteam Pty Ltd Corner Robinson and Middle Roads TRUGANINA\t0.2\t-37.796866\t144.750992\n151\tAgar Industrial Park\t10008705\tNewCold 1 1027 Christies Road TRUGANINA\t0.33\t-37.798756\t144.748277\n151\tAgar Industrial Park\t9011995\tOptus Monopole 20 Calarco Drive DERRIMUT\t0.39\t-37.801085\t144.754884\n151\tAgar Industrial Park\t9017702\tMetropolitan Remand Centre Off Middle Road RAVENHALL\t0.68\t-37.794167\t144.746542\n151\tAgar Industrial Park\t10002756\tAgar Estate Project 489 - 555 Robinsons Rd TRUGANINA\t0.77\t-37.79775\t144.7433\n152\tKaduna Park \t9011837\tBigAir Communications Site - Lakeside Cardinia Road PAKENHAM\t1.36\t-38.072964\t145.436318\n152\tKaduna Park \t9002507\tTelstra Site CARDINIA RD PAKENHAM\t1.37\t-38.087777\t145.442763\n152\tKaduna Park \t9027201\tHenry Road PAKENHAM\t1.4\t-38.077398\t145.44229\n152\tKaduna Park \t10017215\t145 Henry Rd PAKENHAM\t1.41\t-38.076774\t145.441983\n152\tKaduna Park \t9024391\tToomah Community Centre Golden Dreen Street PAKENHAM\t1.58\t-38.071926\t145.438871\n153\tZeally Sands\t9021363\tZeally Sands Corner of Horse Shoebend Rd and South Beach TORQUAY\t0.71\t-38.302885\t144.341113\n153\tZeally Sands\t602864\tTorquay Sands Golf Club Horshoe Bend Road TORQUAY\t0.87\t-38.312949\t144.348303\n153\tZeally Sands\t9001916\tTelstra Site, Flower Farm Horseshoe Bend Road TORQUAY\t1.7\t-38.296887\t144.351237\n153\tZeally Sands\t10011459\t14 - 18 Winki Way TORQUAY\t1.89\t-38.31046\t144.318\n153\tZeally Sands\t9001917\tTelstra Site John Pawsey Jnr Lane TORQUAY\t2.22\t-38.300406\t144.316668\n154\tCallaway Park\t101857\tHutchison Site Sunshine Golf Club Fitzgerald Rd ARDEER\t0.15\t-37.793976\t144.790188\n154\tCallaway Park\t10014180\t99 Studley Court DERRIMUT\t0.49\t-37.792973\t144.785255\n154\tCallaway Park\t301875\tTelstra Site Sunshine Golf Club Ralph St ARDEER\t0.85\t-37.794052\t144.79951\n154\tCallaway Park\t10006733\t2 Davis Court Derrimut\t0.89\t-37.788276\t144.785063\n154\tCallaway Park\t10013453\t2 Davis Court Derrimut\t0.91\t-37.787969\t144.785245\n155\tGap Ridge Industrial Area\t9026336\t8 Mile OSS Trailer 4 KARRATHA\t0.71\t-20.757456\t116.760817\n155\tGap Ridge Industrial Area\t9026335\t8 Mile OSS Trailer 3 KARRATHA\t1.11\t-20.768437\t116.761913\n155\tGap Ridge Industrial Area\t9026334\t8 Mile OSS Trailer 2 KARRATHA\t1.19\t-20.769278\t116.761998\n155\tGap Ridge Industrial Area\t9020208\tGap Ridge Industrial 102 Exploration Dr GAP RIDGE\t1.43\t-20.7469\t116.766\n155\tGap Ridge Industrial Area\t140048\tDowner EDI Work Site Gap Ridge Industrial Estate DAMPIER\t1.5\t-20.747044\t116.772025\n156\tAureus\t10001259\t38 Flat Rock Rd Skennars Head\t0.48\t-28.84344\t153.603\n156\tAureus\t9023539\tXavier Catholic College 2 Redford Drive SKENNARS HEAD\t1.07\t-28.829955\t153.600088\n156\tAureus\t9022287\t72 Kilarney Crescent SKENARS HEAD\t1.49\t-28.826586\t153.604845\n156\tAureus\t8393\tPolice Site Ballina East Water Reservoir BALLINA\t2.9\t-28.863569\t153.589361\n156\tAureus\t134878\tOptus Site Ballina North (QLD) Suvla Street BALLINA EAST\t2.9\t-28.863382\t153.588765\n157\tSt Eyre Estate\t304295\tOptus Site Section 44 Beluch Rd PORT AUGUSTA WEST\t0.89\t-32.498552\t137.740695\n157\tSt Eyre Estate\t25417\tMonier Concrete Eyre Highway PORT AUGUSTA\t0.96\t-32.499131\t137.743107\n157\tSt Eyre Estate\t25459\tRailway Terminal 1 Railway Parade PORT AUGUSTA\t1.61\t-32.498544\t137.751334\n157\tSt Eyre Estate\t10006164\tTerminal Building Airport Rd PORT AUGUSTA\t1.69\t-32.508478\t137.718744\n157\tSt Eyre Estate\t10007629\tPort Augusta Airport (PUG) 96 Airport Rd Port Augusta\t1.7\t-32.508333\t137.718611\n158\tWorthington Estate\t10012402\tJB Hi-Fi Lifestyle Centre 825 Princes Hwy PAKENHAM\t0.42\t-38.05938\t145.452749\n158\tWorthington Estate\t10013966\tBCF Pakenham 825 Princes Highway PAKENHAM\t0.43\t-38.06005\t145.45184\n158\tWorthington Estate\t10011531\tThe Good Guys Pakenhan 825 Princes Hwy PAKENHAM\t0.56\t-38.05978\t145.4544\n158\tWorthington Estate\t10014865\tSupercheap Auto Pakenham 3 Obrien Parade Pakenham\t0.56\t-38.06002\t145.45417\n158\tWorthington Estate\t140526\tFire Station 780 Princess Highway PAKENHAM\t0.62\t-38.060401\t145.454697\n159\tFishermans Road Stratham Park\t602210\tYeardy Road CAPEL\t2.98\t-33.506155\t115.578021\n159\tFishermans Road Stratham Park\t600798\tRGC Mineral Sands Yeardy Road NORTH CAPEL\t3.31\t-33.509274\t115.581102\n159\tFishermans Road Stratham Park\t402725\tIluka Resources Site NORTH CAPEL WEST\t3.44\t-33.498172\t115.551412\n159\tFishermans Road Stratham Park\t138443\tCapel Golf Club Brussell Highway STRATHAM\t3.54\t-33.452439\t115.60103\n159\tFishermans Road Stratham Park\t601473\tWestralian Sands Process Plant SR2 Yeardy Road CAPEL\t3.55\t-33.510592\t115.572457\n160\tPavilion\t10010368\tNBN Co Site 1B/369 Casey Fields Blvd Cranbourne East\t0.38\t-38.1236\t145.31349\n160\tPavilion\t9021968\tCnr Berwick-Cranbourne Rd \u0026 Patterson Rd NORTH CLYDE\t1.07\t-38.118159\t145.328423\n160\tPavilion\t9027200\tHaflinger Avenue CLYDE NORTH\t1.54\t-38.108397\t145.321089\n160\tPavilion\t45764\tCFA Site Railway Rd CLYDE\t1.75\t-38.133255\t145.331056\n160\tPavilion\t303607\t65 Berwick-Cranbourne Road CRANBOURNE EAST\t2.09\t-38.113413\t145.295884\n161\tLot 9601 Maddern Road Chittering WA\t9022711\tNBN Co Test Trailer (CW_p9) within 10 km of Lot 650, McGlew Road LOWER CHITTERING\t1.65\t-31.529238\t116.083551\n161\tLot 9601 Maddern Road Chittering WA\t132487\tTelstra Radio Terminal Maryville Downs Lot 16 McGlew Rd CHITTERING\t1.74\t-31.5307\t116.083673\n161\tLot 9601 Maddern Road Chittering WA\t9010633\tOptus Gyed Mast adj to Telstra Mast 95 McGlew Road CHITTERING\t1.79\t-31.531294\t116.083888\n161\tLot 9601 Maddern Road Chittering WA\t10000280\tNBNCo 140 Blue Plains Road Chittering\t2.52\t-31.503369\t116.053567\n161\tLot 9601 Maddern Road Chittering WA\t139421\tHidden Valley Tooday Glen Rd CHITTERING\t3.31\t-31.494568\t116.081235\n162\tRendezvous Road Vasse\t9010685\tOptus Lattice Tower Lot 911 (497) Rendezvous Road VASSE\t1.33\t-33.688096\t115.272133\n162\tRendezvous Road Vasse\t600536\tWestern Power Sub Station BUSSELTON\t1.42\t-33.686604\t115.266704\n162\tRendezvous Road Vasse\t9027749\tOther 599 Bussell Highway BROADWATER\t1.97\t-33.659042\t115.274202\n162\tRendezvous Road Vasse\t139122\tLot 31 Bussell Hwy BROADWATER\t1.99\t-33.660703\t115.285999\n162\tRendezvous Road Vasse\t601034\tRay Village 20 Ray Avenue BUSSELTON\t2.15\t-33.65835\t115.26864\n163\tPanorama\t403478\tHurlstone Agricultural High Roy Watts Rd GLENFIELD\t0.62\t-33.969719\t150.887653\n163\tPanorama\t9020489\tRailway Station Railway Pde \u0026 Hosking Cres GLENFIELD\t0.79\t-33.972253\t150.892937\n163\tPanorama\t10003522\tDTRS Site Glenfield Off Railway Pde GLENFIELD\t0.83\t-33.965689\t150.900621\n163\tPanorama\t202777\tOptus Monopole 300 Hume Highway CASULA\t0.85\t-33.957611\t150.89042\n163\tPanorama\t201090\tTelstra Site 678 - 684 Hume Highway CASULA\t0.86\t-33.957551\t150.890584\n164\tEdenvale \t9911473\tMobile Spectrum Licensing Site MOUNT LINDESAY HIGHWAY\t1.87\t-27.887096\t152.978976\n164\tEdenvale \t131939\tTelstra Veresdale Active Repeater Bluff Rd VERESDALE\t3.32\t-27.896738\t152.988993\n164\tEdenvale \t9013390\tTelstra Site Lot 86 Leopardwood Rd CEDAR GROVE\t3.38\t-27.854991\t152.992327\n164\tEdenvale \t10000307\tNBNCo 72 Saville Road Allenview\t3.97\t-27.893003\t152.931526\n164\tEdenvale \t9010357\tWater Tower Old Bluff Rd CEDAR VALE\t4.07\t-27.894528\t153.000953\n165\tSherwin Ridge\t10001515\tservice Station Braidwood Rd Tarago\t0.54\t-35.069136\t149.654677\n165\tSherwin Ridge\t9011250\tTarago Lumley Rd TARAGO NSW 2580\t0.74\t-35.068087\t149.661169\n165\tSherwin Ridge\t133671\tTelstra Site Tarago Roadbase Quarry near cnr Braidwood \u0026 Lumley Roads TARAGO\t1.66\t-35.065015\t149.67274\n165\tSherwin Ridge\t201623\tGoulburn Mulwaree Council Site Cowley Hills CURRAWANG\t5.42\t-35.043959\t149.600431\n165\tSherwin Ridge\t39121\tCommsite TARAGO\t5.49\t-35.043959\t149.599598\n166\tLara Industrial Park\t9023584\t360 Bacchus Marsh Rd CORIO\t0.62\t-38.053519\t144.36049\n166\tLara Industrial Park\t10000491\tCorioWest 340 Bacchus Marsh Rd CORIO\t0.67\t-38.05417\t144.35894\n166\tLara Industrial Park\t9011474\tShell Depot Hendy St LARA\t1.1\t-38.046672\t144.370627\n166\tLara Industrial Park\t304234\tNW Cnr Hendy St \u0026 Heales Rd CORIO\t1.13\t-38.047206\t144.371143\n166\tLara Industrial Park\t301724\tCnr Heales Rd \u0026 Broderick Rd CORIO\t1.16\t-38.051255\t144.370884\n167\tWaterside\t9023209\tMonopole 21, Grices Road, Recreation Reserve BERWICK, VIC, 3806\t0.48\t-38.07418\t145.337896\n167\tWaterside\t304910\tTelstra Site Clyde Rd BERWICK\t0.65\t-38.072036\t145.335414\n167\tWaterside\t9027780\tNE cnr Burford Way \u0026 Sassafras Place CRANBOURNE NORTH\t0.83\t-38.080887\t145.326529\n167\tWaterside\t10009871\tSt Francis Xavier College 75 Ridgemont Drive Berwick\t0.86\t-38.070631\t145.338566\n167\tWaterside\t10017416\t73 Ridgemont Dve BERWICK\t0.94\t-38.069713\t145.337985\n168\tWeemala at the Lake\t10000911\tSmall Cell Site 31 Seventh St Boolaroo\t0.47\t-32.95516\t151.62324\n168\tWeemala at the Lake\t5822\tPasminco Metals Sulphide Works Cockle Creek BOOLAROO\t0.79\t-32.946475\t151.626219\n168\tWeemala at the Lake\t404063\tIncitec Plant Main Rd BOOLAROO\t0.86\t-32.946769\t151.632418\n168\tWeemala at the Lake\t9010594\tLake Macquarie City Council Main Offices 126-138 Main Road SPEERS POINT\t0.87\t-32.9605\t151.623734\n168\tWeemala at the Lake\t202243\tCreek Reserve \u0026 Fourth Street BOOLAROO\t1.01\t-32.951607\t151.61726\n169\tBaywater\t10015771\t12-20 Avila Road CURLEWIS\t0.66\t-38.162474\t144.55419\n169\tBaywater\t9010924\tClifton Springs 86-90 Clearwater Drive CLIFTON SPRINGS VIC 3222\t1.19\t-38.154224\t144.562285\n169\tBaywater\t304905\tTelstra Site Clifton Springs Golf Course CLIFTON SPRINGS\t1.36\t-38.155001\t144.564575\n169\tBaywater\t9013497\tSewer Pump Station SP550 160 Jetty Road DRYSDALE\t1.49\t-38.171108\t144.552226\n169\tBaywater\t10007542\tSport Pavilion Community Drive Drysdale\t1.5\t-38.166644\t144.562537\n170\tDavid Road\t9020818\tKalbarri Express Freight Office 6 Cooper Street WAGGRAKINE\t1.28\t-28.675788\t114.631034\n170\tDavid Road\t9017579\tTelstra Site Lot 4 Dulchev Way GLENFIELD\t1.58\t-28.672521\t114.623045\n170\tDavid Road\t138707\tQuayside Vista DRUMMOND COVE\t1.73\t-28.666863\t114.619584\n170\tDavid Road\t140078\t26 Seacrest Way DRUMMOND COVE\t2.51\t-28.674115\t114.613333\n170\tDavid Road\t10016943\tNode1 Pole, 2km WSW of Mt Sommer White Peak\t2.62\t-28.652527\t114.659505\n171\tLatitude 32 Flinders Precinct\t9000428\tFire Station Cnr Armstrong and Hoyle Roads HOPE VALLEY\t0.22\t-32.201984\t115.791621\n171\tLatitude 32 Flinders Precinct\t27280\tComm Site Rentals Cnr Lee Rd \u0026 Bickley St NAVAL BASE\t0.37\t-32.204365\t115.786072\n171\tLatitude 32 Flinders Precinct\t9019821\t13 Reliance Bend HOPE VALLEY\t0.54\t-32.198759\t115.792141\n171\tLatitude 32 Flinders Precinct\t142466\tLatitude 32 Anketer Rd HOPE VALLEY\t0.55\t-32.207538\t115.792375\n171\tLatitude 32 Flinders Precinct\t27288\tL314 Burlington St NAVAL BASE\t0.67\t-32.200191\t115.783475\n172\tLara Views \t9003656\tMonopole 17-19 School Rd CORIO\t0.69\t-38.038439\t144.381441\n172\tLara Views \t9002391\tMono Pole 170 Forest Rd South LARA\t1.0\t-38.03944\t144.393037\n172\tLara Views \t302451\tLara Blvd LARA\t1.17\t-38.02978\t144.397853\n172\tLara Views \t9008542\t3GIS Site 15 McHarry\u0027s Rd LARA\t1.19\t-38.022765\t144.381089\n172\tLara Views \t9021070\t300 Broderick Road LARA\t1.39\t-38.04525\t144.38238\n173\tGrandevue Estate\t141176\tStandby Mast Broadcast Australia Site Seaspray Rd 3km SSE of LONGFORD\t0.73\t-38.186267\t147.093842\n173\tGrandevue Estate\t141226\tHPON Mast Church Site 42 McColl Drive LONGFORD\t0.74\t-38.177344\t147.094756\n173\tGrandevue Estate\t12062\tMain Mast Broadcast Australia Site Seaspray Rd 3km SSE of LONGFORD\t0.81\t-38.188293\t147.095261\n173\tGrandevue Estate\t51166\tSMR Tower 3GI Site LONGFORD\t0.91\t-38.18788\t147.092873\n173\tGrandevue Estate\t37904\tMicrowave Relay Tower 3 GI Site LONGFORD\t0.92\t-38.188133\t147.093011\n174\tHumpty Doo Industrial Park\t9020639\t7 Spencley Road HUMPTY DOO\t0.73\t-12.585158\t131.096759\n174\tHumpty Doo Industrial Park\t10009317\tLPON site 290 Fred\u0027s Pass Rd HUMPTY DOO\t1.82\t-12.593464\t131.111848\n174\tHumpty Doo Industrial Park\t301181\tSection 2257 (120) Challoner Circuit HUMPTY DOO\t1.84\t-12.577427\t131.104101\n174\tHumpty Doo Industrial Park\t9022119\tBuslink depot 120 Challoner Circuit HUMPTY DOO\t1.86\t-12.577326\t131.104314\n174\tHumpty Doo Industrial Park\t1685\tWater Tower Freds Pass Rd HUMPTY DOO\t2.03\t-12.575142\t131.103394\n175\tLakeside, Devonia\t9024391\tToomah Community Centre Golden Dreen Street PAKENHAM\t0.08\t-38.071926\t145.438871\n175\tLakeside, Devonia\t9011837\tBigAir Communications Site - Lakeside Cardinia Road PAKENHAM\t0.33\t-38.072964\t145.436318\n175\tLakeside, Devonia\t10017215\t145 Henry Rd PAKENHAM\t0.59\t-38.076774\t145.441983\n175\tLakeside, Devonia\t9027201\tHenry Road PAKENHAM\t0.66\t-38.077398\t145.44229\n175\tLakeside, Devonia\t10009872\tSt Francis Xavier College 21 Majestic Drive Officer\t1.24\t-38.061898\t145.43331\n176\tDalyellup\t100350\tNo2 Treatment Plant Minninup Rd BUNBURY\t0.48\t-33.386211\t115.619388\n176\tDalyellup\t9004002\tWater Tank Minninup Road DALYELLUP\t0.65\t-33.389457\t115.612822\n176\tDalyellup\t9011199\tMATV Headend Hutt Drive DALYELLUP\t0.77\t-33.393609\t115.612272\n176\tDalyellup\t9012206\tTelstra RBS Site Lot 2 Maidment Pde DALYELLUP\t0.81\t-33.391342\t115.611043\n176\tDalyellup\t136988\tConcert Stage Ocean Forest Lutheran College 133 Norton Promenade DALYELLUP\t1.3\t-33.400405\t115.627314\n177\tLots 9004 Eastlyn Dr Deepdale\t137364\tGreenough Terminal GERALDTON AIRPORT\t0.63\t-28.796167\t114.685876\n177\tLots 9004 Eastlyn Dr Deepdale\t31019\tEdward Rd GERALDTON\t0.96\t-28.794633\t114.670228\n177\tLots 9004 Eastlyn Dr Deepdale\t138158\tCnr Goulds Road and Meru Road Geraldton\t1.02\t-28.80145\t114.674174\n177\tLots 9004 Eastlyn Dr Deepdale\t9014518\tOptus Lattice Tower 217 Edward Road MERU\t1.03\t-28.790815\t114.670056\n177\tLots 9004 Eastlyn Dr Deepdale\t140236\t142 Stansfield Road GERALDTON WA\t1.3\t-28.792129\t114.666761\n178\tLot 1301 Gull Rock Road Albany WA\t10008721\tNBN Co Site 626 (Lot 3354) Nanarup Road Kalgan\t1.46\t-34.955795\t118.013011\n178\tLot 1301 Gull Rock Road Albany WA\t10009618\tTelstra Site Lot 2051 (on P128625) 654 Nanarup Rd Kalgan\t2.5\t-34.961704\t118.022005\n178\tLot 1301 Gull Rock Road Albany WA\t28402\t18 Morilla Rd Lower KALGAN\t3.56\t-34.94594\t117.960591\n178\tLot 1301 Gull Rock Road Albany WA\t9913570\tMobile Spectrum Licensing Site SOUTH COAST HIGHWAY-HASSELL ROAD\t5.3\t-34.904363\t117.978616\n178\tLot 1301 Gull Rock Road Albany WA\t138097\t505 Lower King Road Lower King ALBANY\t6.17\t-34.955557\t117.932216\n179\tSanctuary\t9023647\tTelstra Site 62-102 Burvilles Road MOUNT DUNEED\t0.58\t-38.233199\t144.341107\n179\tSanctuary\t10007493\tBuilding D 2-38 Burvilles Road Geelong\t0.64\t-38.231258\t144.339978\n179\tSanctuary\t42918\tGeelong Airport 465 Surf Coast Highway MT DUNEED\t1.22\t-38.224665\t144.336278\n179\tSanctuary\t9021483\tNarana Creations ambulatory 410 Surf Coast Highway GROVEDALE\t1.62\t-38.218436\t144.338926\n179\tSanctuary\t10016991\tTelstra Site, 74-92 Carter Road Armstrong Creek\t2.2\t-38.23144\t144.37245\n180\tSouthern Cross - Stage 1 (52L)\t10007001\t70 Dalby-Cecil Plains Rd CECIL PLAINS\t0.95\t-27.216423\t151.282167\n180\tSouthern Cross - Stage 1 (52L)\t9013306\tQGC 7 Site Cnr Warrego Hwy \u0026 Dalby Cecil Plains Rd 4 km SE of DALBY\t1.28\t-27.209619\t151.284604\n180\tSouthern Cross - Stage 1 (52L)\t10007123\t17563 Warrego Hwy DALBY\t1.74\t-27.209562\t151.289589\n180\tSouthern Cross - Stage 1 (52L)\t9004426\tDalby Outdoor \u0026 Machinery 182 Drayton Street DALBY\t1.75\t-27.199219\t151.277102\n180\tSouthern Cross - Stage 1 (52L)\t9014768\tRCS Site 182 Drayton St DALBY\t1.8\t-27.198722\t151.276998\n181\tRobina Town Centre\t13146\tShop 68 Robina Town Centre Robina Pky ROBINA\t0.13\t-28.079998\t153.383557\n181\tRobina Town Centre\t9026880\t138 Robina Town Centre Drive Robina ROBINA QLD 4226\t0.15\t-28.080198\t153.38333\n181\tRobina Town Centre\t9019392\tHQ Building 58 Riverwalk Drive ROBINA\t0.16\t-28.08029\t153.382622\n181\tRobina Town Centre\t10002606\tTarget Robina Town Centre ROBINA\t0.18\t-28.077446\t153.383958\n181\tRobina Town Centre\t10018661\tColes Robina, 19-33 Robina Town Centre Drive ROBINA\t0.19\t-28.07937\t153.38491\n182\tWedgefield\t601036\tWorks Depot Cajurina Rd Wedgefield PORT HEDLAND\t0.08\t-20.379906\t118.593778\n182\tWedgefield\t9027966\tTown of Port Hedland Depot Cajarina Road WEDGEFIELD\t0.17\t-20.378544\t118.595019\n182\tWedgefield\t601519\tTelstra Lines Depot Cajareno Road PORT HEDLAND\t0.36\t-20.380262\t118.591061\n182\tWedgefield\t44678\tCnr Harwell and Munda Way WEDGEFIELD\t0.37\t-20.377533\t118.592096\n182\tWedgefield\t9002232\tLot 3807 Cajarina Road WEDGEFIELD\t0.58\t-20.381175\t118.589068\n183\tTeviot Downs Estate\t138690\tCorner of Pub Lane \u0026 Dungaree Drive NEW BEITH\t1.83\t-27.735467\t152.959293\n183\tTeviot Downs Estate\t400955\tTelstra PMTS Site Pub Lane 150 m E of Sentinel Rd GREENBANK\t1.96\t-27.735142\t152.961494\n183\tTeviot Downs Estate\t10014602\tWater Pump Station Pub Lane GREENBANK\t2.36\t-27.736326\t152.969463\n183\tTeviot Downs Estate\t9020053\tTelstra Site 140-180 Mctaggart Rd NEW BEITH\t2.78\t-27.734201\t152.930107\n183\tTeviot Downs Estate\t9019367\tTelstra Site New Beith Rd NEW BEITH\t3.16\t-27.777674\t152.942356\n184\tAshbury\t9021483\tNarana Creations ambulatory 410 Surf Coast Highway GROVEDALE\t1.13\t-38.218436\t144.338926\n184\tAshbury\t42918\tGeelong Airport 465 Surf Coast Highway MT DUNEED\t1.37\t-38.224665\t144.336278\n184\tAshbury\t10007493\tBuilding D 2-38 Burvilles Road Geelong\t1.49\t-38.231258\t144.339978\n184\tAshbury\t138766\tMarshall Station Marshalltown Road MARSHALL\t1.54\t-38.210823\t144.339751\n184\tAshbury\t9023647\tTelstra Site 62-102 Burvilles Road MOUNT DUNEED\t1.6\t-38.233199\t144.341107\n185\tMundoolun Estate\t370261\tOptus/Vodafone Site Birnam Rg off Mona Dr JIMBOOMBA\t1.82\t-27.847907\t153.074545\n185\tMundoolun Estate\t10000159\tNBN Co 59-67 Pine Forest Way Tamborine\t3.47\t-27.8396\t153.11489\n185\tMundoolun Estate\t9026997\tPlunkett Road (3.3km SE of) YARRABILBA\t3.64\t-27.852484\t153.123861\n185\tMundoolun Estate\t10017408\tCollins Creek Rd MUNDOOLUN\t3.75\t-27.890008\t153.071656\n185\tMundoolun Estate\t10000306\tNBNCo 2-16 Minugh Road Jimboomba\t4.07\t-27.83341\t153.0587\n186\tThe Surrounds\t10002712\tTarget Westfield 29 Millaroo Dr HELENSVALE\t0.28\t-27.927874\t153.336654\n186\tThe Surrounds\t10002378\tLight Rail Station Town Centre Drive Helensvale\t0.32\t-27.925531\t153.339336\n186\tThe Surrounds\t402778\tQR Site Railway Station HELENSVALE\t0.35\t-27.925318\t153.338626\n186\tThe Surrounds\t9020715\tKmart 1-29 Millaroo Dr HELENSVALE\t0.36\t-27.926597\t153.336384\n186\tThe Surrounds\t10001162\tAldi Helensvale 29 Millaroo Dr HELENSVALE\t0.38\t-27.926059\t153.336587\n187\tForest Hills\t9015377\tNBN Co Site Cnr Moore Creek Rd \u0026 Dunoon Rd MOORE CREEK\t1.98\t-31.020124\t150.913758\n187\tForest Hills\t250106\tEasters Site 194 Forest Road TAMWORTH\t2.52\t-31.054904\t150.928181\n187\tForest Hills\t9011428\tTRC Waste Depot Forest Rd TAMWORTH\t2.82\t-31.057003\t150.922383\n187\tForest Hills\t9010934\tAvoca Hill Tintinhull Road TAMWORTH NSW 2340\t3.26\t-31.045559\t150.959429\n187\tForest Hills\t9024795\tWeighbridge 123A Forest Road TAMWORTH\t3.27\t-31.061518\t150.925434\n188\tEdenvale\t9911473\tMobile Spectrum Licensing Site MOUNT LINDESAY HIGHWAY\t1.69\t-27.887096\t152.978976\n188\tEdenvale\t9013390\tTelstra Site Lot 86 Leopardwood Rd CEDAR GROVE\t2.62\t-27.854991\t152.992327\n188\tEdenvale\t131939\tTelstra Veresdale Active Repeater Bluff Rd VERESDALE\t3.06\t-27.896738\t152.988993\n188\tEdenvale\t9027354\tCedar Grove 78-90 OLD BLUFF ROAD CEDAR VALE\t3.55\t-27.892391\t153.002638\n188\tEdenvale\t9010357\tWater Tower Old Bluff Rd CEDAR VALE\t3.58\t-27.894528\t153.000953\n189\tTanby Heights Stage 2\t9017804\tNBN Co Site 1062 Tanby Road TANBY\t1.24\t-23.22052\t150.75121\n189\tTanby Heights Stage 2\t10006205\tTelstra Exchange 1078 Tanby Rd Tanby\t1.3\t-23.227281\t150.74696\n189\tTanby Heights Stage 2\t461288\tRural Fire Shed TANBY\t2.01\t-23.244\t150.749169\n189\tTanby Heights Stage 2\t10011770\t15 Sandcastle Drive MULLAMBIN\t4.78\t-23.194594\t150.788127\n189\tTanby Heights Stage 2\t460746\tTelstra CMTS Site Hawke St EMU PARK\t6.05\t-23.243426\t150.816584\n190\tFletcher Industrial Stage 1\t131360\tLot 9 Purvis Lane DUBBO\t0.38\t-32.213056\t148.629459\n190\tFletcher Industrial Stage 1\t250184\tFletcher Intnl Water Treatment Site North DUBBO\t0.51\t-32.208927\t148.632101\n190\tFletcher Industrial Stage 1\t9025939\tLot 11 Yarrandale Road DUBBO\t0.53\t-32.208602\t148.63362\n190\tFletcher Industrial Stage 1\t10937\tFletcher International Base Site Lot 1 Yarrandale Road DUBBO\t0.95\t-32.204914\t148.634776\n190\tFletcher Industrial Stage 1\t9017666\tNBN Co Site Lot 2 Yarrandale Road DUBBO\t1.04\t-32.222683\t148.634215\n191\tAvoca Dell Stage 1\t10000733\tTelstra Site 65 Loddon Road Murray Bridge East Murray Bridge\t0.63\t-35.09833\t139.31636\n191\tAvoca Dell Stage 1\t23519\tSA Water ( Control ) Kuchel Road MURRAY BRIDGE\t2.81\t-35.095604\t139.286087\n191\tAvoca Dell Stage 1\t23499\tBroadcast Planning Site 1.5 km East of MURRAY BRIDGE\t3.4\t-35.116738\t139.293809\n191\tAvoca Dell Stage 1\t9018462\tVHA Monopole Lot 44 Kennett Road MURRAY BRIDGE\t3.47\t-35.117713\t139.29414\n191\tAvoca Dell Stage 1\t10000881\tMuarry Bridge Raceway 29 Kennett Rd MURRAY BRIDGE EAST\t3.48\t-35.11739\t139.2933\n192\tLot 17 Harbour Rd\t30242\tShire Depot Harbour Rd ESPERANCE\t0.2\t-33.843361\t121.885699\n192\tLot 17 Harbour Rd\t9003662\tWater Corp Depot Harbour Road ESPERANCE\t0.29\t-33.844697\t121.886922\n192\tLot 17 Harbour Rd\t9000845\tSubstation Harbour Road ESPERANCE\t0.5\t-33.848619\t121.88483\n192\tLot 17 Harbour Rd\t601920\tShire of Esperance Depot Brazier Street ESPERANCE\t0.9\t-33.85227\t121.88353\n192\tLot 17 Harbour Rd\t30226\tPower Station ESPERANCE\t0.91\t-33.852372\t121.884825\n193\tTimbertop Estate\t9027694\tNBN Co Site 18 Langlands Road GLEN OAK\t1.85\t-32.61858\t151.7189\n193\tTimbertop Estate\t9027693\tNBN Co Site 86 Warren Street SEAHAM\t3.68\t-32.66565\t151.71739\n193\tTimbertop Estate\t9027705\tNBN Co Site Lot 270 Hinton St CLARENCE TOWN\t7.06\t-32.592095\t151.767015\n193\tTimbertop Estate\t6133\t169-185 Hunter Street NEWCASTLE\t7.32\t-32.656309\t151.782832\n193\tTimbertop Estate\t9026394\tNBN Co Site 503 Butterwick Road DUNS CREEK\t7.94\t-32.63795\t151.62499\n194\tWaterside Pastures\t204450\tRAAF Radar Site Williamtown Duckhole Hill WILLIAMTOWN\t1.81\t-32.773419\t151.82197\n194\tWaterside Pastures\t133778\tWilsons Landscaping Supplies 27 Richardson Rd MEDOWIE\t2.39\t-32.765896\t151.851876\n194\tWaterside Pastures\t139734\tAirfield DCAS Test Site WILLIAMTOWN\t2.57\t-32.780973\t151.825192\n194\tWaterside Pastures\t5938\tDepartment of Bush Fire Service 514 Richardson Road CAMPVALE\t2.64\t-32.768552\t151.853368\n194\tWaterside Pastures\t139716\tAirfield DCAS Test Site WILLIAMTOWN NSW\t2.75\t-32.782497\t151.824168\n195\tRIVERLAND GARDENS\t9023991\tpole Mulwala Mcarthy st 7-15 McCarthy St, NSW 2647 MULWALA\t1.54\t-35.97653\t146.005465\n195\tRIVERLAND GARDENS\t9009100\tTG Substation Melbourne St MULWALA\t1.63\t-35.979178\t146.019331\n195\tRIVERLAND GARDENS\t9008987\tCountry Energy FSC off Barooga Rd MULWALA\t1.68\t-35.973305\t145.999195\n195\tRIVERLAND GARDENS\t34824\t67 Melbourne St MULWALA\t2.69\t-35.988382\t146.007268\n195\tRIVERLAND GARDENS\t47878\tRomney St MULWALA\t2.86\t-35.98636\t145.997199\n196\tJimboomba Woods\t370261\tOptus/Vodafone Site Birnam Rg off Mona Dr JIMBOOMBA\t2.49\t-27.847907\t153.074545\n196\tJimboomba Woods\t10017408\tCollins Creek Rd MUNDOOLUN\t2.89\t-27.890008\t153.071656\n196\tJimboomba Woods\t10017077\t1-23 Mundoolun Road JIMBOOMBA\t3.59\t-27.83706\t153.0442\n196\tJimboomba Woods\t10000306\tNBNCo 2-16 Minugh Road Jimboomba\t3.64\t-27.83341\t153.0587\n196\tJimboomba Woods\t10016773\t11-21 East St JIMBOOMBA\t4.15\t-27.837229\t153.033198\n197\tRavendene Estate\t301509\tFire Station MARYKNOLL\t1.24\t-38.033168\t145.603143\n197\tRavendene Estate\t9014365\tCustomer Site 139 Wheeler Road MARYKNOLL\t1.33\t-38.043018\t145.608428\n197\tRavendene Estate\t134946\tOptus Site Nar Nar Goon 85 Wilson Rd NAR NAR GOON\t2.15\t-38.060448\t145.590359\n197\tRavendene Estate\t305337\tSPI Tower Snells Road NAR NAR GOON\t2.15\t-38.060532\t145.590597\n197\tRavendene Estate\t9021223\tNBN Co Site 50 Mortimer Road TYNONG NORTH\t2.45\t-38.02346\t145.609832\n198\tTeviot Downs Estate\t138690\tCorner of Pub Lane \u0026 Dungaree Drive NEW BEITH\t1.56\t-27.735467\t152.959293\n198\tTeviot Downs Estate\t400955\tTelstra PMTS Site Pub Lane 150 m E of Sentinel Rd GREENBANK\t1.72\t-27.735142\t152.961494\n198\tTeviot Downs Estate\t10014602\tWater Pump Station Pub Lane GREENBANK\t2.23\t-27.736326\t152.969463\n198\tTeviot Downs Estate\t9020053\tTelstra Site 140-180 Mctaggart Rd NEW BEITH\t2.45\t-27.734201\t152.930107\n198\tTeviot Downs Estate\t135066\tOptus Site Greenbank Lot 37 Begley Road GREENBANK\t3.1\t-27.72051\t152.940927\n199\tTeneriffe\t141435\t28 Gourock Ave GOULBURN\t1.25\t-34.730133\t149.724084\n199\tTeneriffe\t204856\t9 William Street GOULBURN\t1.29\t-34.737142\t149.716987\n199\tTeneriffe\t9012372\tTelstra Site Police Academy Off Mcdermott Dr GOULBURN\t1.72\t-34.735207\t149.726724\n199\tTeneriffe\t9011547\tWollondilly Primary School Newton St GOULBURN\t1.83\t-34.743111\t149.709702\n199\tTeneriffe\t9010469\tElectricity Sub-station NW-cnr Middle Arm Road \u0026 Marys Mount Road BRADFORDVILLE\t1.85\t-34.723041\t149.730827\n200\tMulcahys Road\t153001\tRecreation Reserve Falls Rd TRENTHAM\t1.09\t-37.383635\t144.314774\n200\tMulcahys Road\t150831\tSouth St TRENTHAM\t1.39\t-37.392295\t144.3207\n200\tMulcahys Road\t46151\tMarket St Fire Station TRENTHAM\t1.52\t-37.389442\t144.322473\n200\tMulcahys Road\t9022774\tKoppers Arch Wood Protection Station St Office Victoria Street TRENTHAM\t1.65\t-37.384364\t144.322654\n200\tMulcahys Road\t133825\tTelstra Trentham CMTS Station Street TRENTHAM\t1.66\t-37.383148\t144.322106\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175434_-517702077",
+ "id": "20220727-124935_1598537871",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:48:01+0000",
+ "dateFinished": "2022-08-16T04:48:01+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Save NEAREST NEIGHBOR dataframe in a DB table",
+ "text": "%python\n\ncr \u003d oml.cursor()\n\ntry:\n\n oml_df3 \u003d oml.create(NEAREST_NEIGHBOR_DF, table\u003d\u0027NEAREST_NEIGHBOR\u0027)\n print(\"Table Created !!\")\n \nexcept Exception as e:\n print(\"Exception occured and handled:\",e)\n \n query \u003d \"TRUNCATE table NEAREST_NEIGHBOR\"\n cr.execute(query)\n \n try:\n oml_df3 \u003d oml.create(NEAREST_NEIGHBOR_DF, table\u003d\u0027NEAREST_NEIGHBOR\u0027, append\u003dTrue)\n print(\"Records Updated !!\")\n \n except Exception as a:\n \n print(\"Exception occured and handled:\", a)\n oml_df3 \u003d oml.create(NEAREST_NEIGHBOR_DF, table\u003d\u0027NEAREST_NEIGHBOR\u0027)\n print(\"Records Updated !!\")\n \nfinally:\n z.show(oml_df3)",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false
+ },
+ "editorMode": "ace/mode/undefined",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 9.0,
+ "title": true,
+ "results": {
+ "1": {
+ "graph": {
+ "mode": "table",
+ "height": 300.0,
+ "optionOpen": false,
+ "setting": {
+ "table": {
+ "tableGridState": {
+ "columns": [
+ {
+ "name": "DEVELOPMENT_ROLLOUT_ID0",
+ "visible": true,
+ "width": "*",
+ "sort": {},
+ "filters": [
+ {}
+ ],
+ "pinned": ""
+ },
+ {
+ "name": "DEVELOPMENT_NAME1",
+ "visible": true,
+ "width": "*",
+ "sort": {},
+ "filters": [
+ {}
+ ],
+ "pinned": ""
+ },
+ {
+ "name": "NEAREST_SITE_ID2",
+ "visible": true,
+ "width": "*",
+ "sort": {},
+ "filters": [
+ {}
+ ],
+ "pinned": ""
+ },
+ {
+ "name": "NEAREST_SITE_NAME3",
+ "visible": true,
+ "width": "*",
+ "sort": {},
+ "filters": [
+ {}
+ ],
+ "pinned": ""
+ },
+ {
+ "name": "DISTANCE4",
+ "visible": true,
+ "width": "*",
+ "sort": {
+ "priority": 0.0,
+ "direction": "asc"
+ },
+ "filters": [
+ {}
+ ],
+ "pinned": ""
+ },
+ {
+ "name": "LATITUDE5",
+ "visible": true,
+ "width": "*",
+ "sort": {},
+ "filters": [
+ {}
+ ],
+ "pinned": ""
+ },
+ {
+ "name": "LONGITUDE6",
+ "visible": true,
+ "width": "*",
+ "sort": {},
+ "filters": [
+ {}
+ ],
+ "pinned": ""
+ }
+ ],
+ "scrollFocus": {},
+ "selection": [],
+ "grouping": {
+ "grouping": [],
+ "aggregations": [],
+ "rowExpandedStates": {}
+ },
+ "treeView": {},
+ "pagination": {
+ "paginationCurrentPage": 1.0,
+ "paginationPageSize": 250.0
+ }
+ },
+ "tableColumnTypeState": {
+ "names": {
+ "DEVELOPMENT_ROLLOUT_ID": "number",
+ "DEVELOPMENT_NAME": "string",
+ "NEAREST_SITE_ID": "number",
+ "NEAREST_SITE_NAME": "string",
+ "DISTANCE": "number",
+ "LATITUDE": "number",
+ "LONGITUDE": "number"
+ },
+ "updated": false
+ },
+ "tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
+ "tableOptionValue": {
+ "useFilter": false,
+ "showPagination": false,
+ "showAggregationFooter": false
+ },
+ "updated": false,
+ "initialized": false
+ }
+ },
+ "commonSetting": {}
+ }
+ }
+ },
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TEXT",
+ "data": "Exception occured and handled: ORA-00955: name is already used by an existing object\nRecords Updated !!\n"
+ },
+ {
+ "type": "TABLE",
+ "data": "DEVELOPMENT_ROLLOUT_ID\tDEVELOPMENT_NAME\tNEAREST_SITE_ID\tNEAREST_SITE_NAME\tDISTANCE\tLATITUDE\tLONGITUDE\n75\tBrentwood Forest\t10003111\tAldi Redbank Plains Cnr Argyle \u0026 Redbank Plains Road Redbank Plains\t1.06\t-27.645\t152.87\n758\tBrentwood Rise\t10003111\tAldi Redbank Plains Cnr Argyle \u0026 Redbank Plains Road Redbank Plains\t1.59\t-27.645\t152.87\n137\tOnslow Aerodome Redevelopment\t9019418\tTerminal Building Onslow Airport ONSLOW\t0.55\t-21.666365\t115.1115\n288\tWannanup-Port Bouvard North\t10008253\tTelstra Site 3 Duke Street Wannanup Mandurah\t1.09\t-32.5968\t115.6501\n305\tWannanup-Port Bouvard North\t10008253\tTelstra Site 3 Duke Street Wannanup Mandurah\t1.0\t-32.5968\t115.6501\n406\tWannanup-Port Bouvard East\t10008253\tTelstra Site 3 Duke Street Wannanup Mandurah\t0.83\t-32.5968\t115.6501\n438\tWannanup-Port Bouvard East\t10008253\tTelstra Site 3 Duke Street Wannanup Mandurah\t0.62\t-32.5968\t115.6501\n465\tWannanup-Port Bouvard North\t10008253\tTelstra Site 3 Duke Street Wannanup Mandurah\t1.56\t-32.5968\t115.6501\n537\tWannanup-Port Bouvard North\t10008253\tTelstra Site 3 Duke Street Wannanup Mandurah\t0.66\t-32.5968\t115.6501\n547\tFalcon-Pleasant Grove\t10008253\tTelstra Site 3 Duke Street Wannanup Mandurah\t0.16\t-32.5968\t115.6501\n626\tWannanup-Port Bouvard North\t10008253\tTelstra Site 3 Duke Street Wannanup Mandurah\t0.53\t-32.5968\t115.6501\n339\tHalls Head-Port Mandurah\t10010373\tKmart 14 - 18 Guava Way HALLS HEAD\t0.68\t-32.54797\t115.7029\n749\tHalls Head-Port Mandurah\t10010373\tKmart 14 - 18 Guava Way HALLS HEAD\t1.12\t-32.54797\t115.7029\n316\tHalls Head-Port Mandurah\t10000382\t3 Mandurah Terrace Mandurah\t0.86\t-32.5344\t115.7187\n594\tClarkson-Somerly\t10001864\tOcean Keys Shopping Centre 36 Ocean Keys Boulevard Clarkson\t0.49\t-31.69161\t115.719\n594\tClarkson-Somerly\t10006599\tThe Good Guys Clarkson 61 Key Largo Dr CLARKSON\t0.32\t-31.69185\t115.7211\n760\tBurns Beach\t10016224\tOptus site lightpole Marmion Ave Near Burns Beach rd ILUKA\t1.13\t-31.72765\t115.7354\n797\tIluka\t10016224\tOptus site lightpole Marmion Ave Near Burns Beach rd ILUKA\t0.58\t-31.72765\t115.7354\n425\tDudley Park-Mariner\u0027s Cove\t10003149\t303 Pinjarra Road MANDURAH\t1.56\t-32.5372\t115.7374\n533\tDudley Park-Mariner\u0027s Cove\t10003149\t303 Pinjarra Road MANDURAH\t1.7\t-32.5372\t115.7374\n538\tDudley Park-Mariner\u0027s Cove\t10003149\t303 Pinjarra Road MANDURAH\t1.56\t-32.5372\t115.7374\n459\tIluka\t10007087\tAldi Currambine 86 Delamere Ave CURRAMBINE\t0.65\t-31.74132\t115.7411\n222\tSecret Harbour\t10003585\tALDI Town Secret Harbour 420 Secret Harbour Blvd TOWN SECRET HARBOUR\t1.02\t-32.4086\t115.7594\n416\tGolden Bay\t10003585\tALDI Town Secret Harbour 420 Secret Harbour Blvd TOWN SECRET HARBOUR\t1.37\t-32.4086\t115.7594\n428\tSecret Harbour-Anstey Park\t10003585\tALDI Town Secret Harbour 420 Secret Harbour Blvd TOWN SECRET HARBOUR\t1.15\t-32.4086\t115.7594\n482\tSecret Harbour\t10003585\tALDI Town Secret Harbour 420 Secret Harbour Blvd TOWN SECRET HARBOUR\t0.9\t-32.4086\t115.7594\n530\tSecret Harbour\t10003585\tALDI Town Secret Harbour 420 Secret Harbour Blvd TOWN SECRET HARBOUR\t0.96\t-32.4086\t115.7594\n569\tSecret Harbour\t10003585\tALDI Town Secret Harbour 420 Secret Harbour Blvd TOWN SECRET HARBOUR\t0.22\t-32.4086\t115.7594\n625\tSecret Harbour\t10003585\tALDI Town Secret Harbour 420 Secret Harbour Blvd TOWN SECRET HARBOUR\t0.91\t-32.4086\t115.7594\n700\tSecret Harbour\t10003585\tALDI Town Secret Harbour 420 Secret Harbour Blvd TOWN SECRET HARBOUR\t1.11\t-32.4086\t115.7594\n717\tSecret Harbour\t10003585\tALDI Town Secret Harbour 420 Secret Harbour Blvd TOWN SECRET HARBOUR\t0.62\t-32.4086\t115.7594\n810\tGolden Bay\t10003585\tALDI Town Secret Harbour 420 Secret Harbour Blvd TOWN SECRET HARBOUR\t1.11\t-32.4086\t115.7594\n552\tLot 1002 Penson Street, Singleton\t10004443\tKmart Lakelands Centre Mandurah Rd LAKELANDS\t2.14\t-32.47189\t115.7599\n599\tLakelands\t10004443\tKmart Lakelands Centre Mandurah Rd LAKELANDS\t0.99\t-32.47189\t115.7599\n608\tMadora Bay\t10004443\tKmart Lakelands Centre Mandurah Rd LAKELANDS\t0.62\t-32.47189\t115.7599\n685\tLakelands\t10004443\tKmart Lakelands Centre Mandurah Rd LAKELANDS\t1.29\t-32.47189\t115.7599\n552\tLot 1002 Penson Street, Singleton\t10003583\tALDI Lakelands Crn Mandurah Rd and Banksiadale Gate LAKELANDS\t2.13\t-32.4717\t115.7611\n599\tLakelands\t10003583\tALDI Lakelands Crn Mandurah Rd and Banksiadale Gate LAKELANDS\t0.89\t-32.4717\t115.7611\n608\tMadora Bay\t10003583\tALDI Lakelands Crn Mandurah Rd and Banksiadale Gate LAKELANDS\t0.71\t-32.4717\t115.7611\n685\tLakelands\t10003583\tALDI Lakelands Crn Mandurah Rd and Banksiadale Gate LAKELANDS\t1.18\t-32.4717\t115.7611\n794\tMadora Bay\t10013284\tParklands Tunnel Portal 1 Saint Pierre Loop MEADOW SPRINGS\t1.23\t-32.485854\t115.7658\n83\tGreenlea\t10002994\tLEARY ROAD optus site 18 Duncraig Rd Applecross 6153 Applecross\t1.84\t-32.31065\t115.8319\n476\tBaldivis-The Chase\t10002994\tLEARY ROAD optus site 18 Duncraig Rd Applecross 6153 Applecross\t1.14\t-32.31065\t115.8319\n672\tBaldivis East\t10002994\tLEARY ROAD optus site 18 Duncraig Rd Applecross 6153 Applecross\t0.72\t-32.31065\t115.8319\n524\tThe Village at Wellard\t10018058\t170 Bertram Road Wellard\t2.17\t-32.2527\t115.8407\n686\tWellard Glen\t10018058\t170 Bertram Road Wellard\t2.23\t-32.2527\t115.8407\n208\tMurray-Murray River Country Estate\t134128\tPinjarra Football Oval Sir Ross MacLarty Reserve PINJARRA\t2.14\t-32.626591\t115.8651\n521\tDFO Perth\t10012430\tCalvin Klein Shop DFO Dundreath Dr PERTH\t0.14\t-31.93966\t115.949\n522\tDFO Perth\t10012430\tCalvin Klein Shop DFO Dundreath Dr PERTH\t0.14\t-31.93966\t115.949\n521\tDFO Perth\t10012431\tTommy Hilfiger Shop DFO Dundreath Dr PERTH\t0.15\t-31.93948\t115.9493\n522\tDFO Perth\t10012431\tTommy Hilfiger Shop DFO Dundreath Dr PERTH\t0.15\t-31.93948\t115.9493\n133\tMaddington\t26930\tLot 238 Bickley Rd KENWICK\t1.24\t-32.030551\t115.9929\n743\tByford On The Scarp\t10008635\tAldi Byford 845 South Western Hwy BYFORD\t1.48\t-32.22007\t116.0085\n219\tDarling Downs Lot 102 Keenan Street\t10007471\tButcherRoad 49 Butcher Road DARLING DOWNS\t1.54\t-32.19725\t116.0132\n246\tL9001-9003 Wungong Sth Rd Darling Downs\t10007471\tButcherRoad 49 Butcher Road DARLING DOWNS\t1.15\t-32.19725\t116.0132\n278\tNortham Eco Lifestyle Village\t10018151\tARC Infrastructure Pty Ltd 460 Fitzgerald St West 460 Fitzgerald St West Northam\t0.87\t-31.6628\t116.6593\n528\tL107 Exploration Drive Multi-User Site\t600795\tSeven Mile South DAMPIER\t1.29\t-20.746793\t116.7602\n155\tGap Ridge Industrial Area\t9020208\tGap Ridge Industrial 102 Exploration Dr GAP RIDGE\t1.43\t-20.7469\t116.766\n528\tL107 Exploration Drive Multi-User Site\t9020208\tGap Ridge Industrial 102 Exploration Dr GAP RIDGE\t0.97\t-20.7469\t116.766\n82\tPort Hedland International Airport Precinct 3\t10014263\tSt John Ambulance 2 Quininup Way Port Hedland\t1.26\t-20.374\t118.613\n354\tBerrimah Business Park\t10004111\t52 Miles Rd BERRINMAH\t0.14\t-12.42852\t130.9141\n632\tZuccoli\t10002309\tDGPS Site Zuccoli Pde ZUCCOLI\t0.78\t-12.5126\t131.0081\n335\tCoolalinga Sub-Division\t10003123\tKmart Coolalinga Village 425 Stuart Highway COOLALINGA\t0.2\t-12.52136\t131.0422\n147\tGermantown Road Two Wells\t500637\tAustralian National Level Crossing Dawkins Road TWO WELLS\t2.07\t-34.614515\t138.5337\n708\tMunno Para West\t10008491\tAngle Vale East 32 Riverbanks Road ANGLE VALE\t2.29\t-34.63573\t138.6678\n638\tPaech Road Residential Subdivision\t10006388\tNBN Co Site 67 Yunkunga Road Mount Barker\t1.02\t-35.09838\t138.8912\n191\tAvoca Dell Stage 1\t10000881\tMuarry Bridge Raceway 29 Kennett Rd MURRAY BRIDGE EAST\t3.48\t-35.11739\t139.2933\n108\tQuay 2\t10011459\t14 - 18 Winki Way TORQUAY\t0.34\t-38.31046\t144.318\n153\tZeally Sands\t10011459\t14 - 18 Winki Way TORQUAY\t1.89\t-38.31046\t144.318\n200\tMulcahys Road\t150831\tSouth St TRENTHAM\t1.39\t-37.392295\t144.3207\n767\tKingston Downs Estate\t10013698\t122-160 Grubb Road OCEAN GROVE\t0.6\t-38.2454\t144.5405\n812\tOakdene Estate\t10013698\t122-160 Grubb Road OCEAN GROVE\t0.88\t-38.2454\t144.5405\n116\tMambourin\t10013387\t383 Black Forest Rd WERRIBEE\t0.91\t-37.898\t144.5947\n753\tBluestone Green\t10013387\t383 Black Forest Rd WERRIBEE\t1.45\t-37.898\t144.5947\n116\tMambourin\t9014346\tTelstra Site Lot A 205 Greens Rd WYNDHAM VALE\t0.94\t-37.887575\t144.6079\n753\tBluestone Green\t9014346\tTelstra Site Lot A 205 Greens Rd WYNDHAM VALE\t0.21\t-37.887575\t144.6079\n116\tMambourin\t10018014\tKmart Manor Lakes, 455 Ballan Road MANOR LAKES\t2.11\t-37.8757\t144.6133\n588\tBrookhaven Rise Estate\t10005780\tNBN Co Site 250A Reservoir Road SUNBURY\t0.56\t-37.5637\t144.6903\n774\tBrookhaven Rise Estate\t10005780\tNBN Co Site 250A Reservoir Road SUNBURY\t0.35\t-37.5637\t144.6903\n17\tWestbrook\t10005626\t540 Derrimut Rd TARNEIT\t0.3\t-37.83704\t144.6913\n17\tWestbrook\t10008716\tTarneit Central Shopping Centre 540 Derrimut Rd TARNEIT\t0.31\t-37.83705\t144.6923\n17\tWestbrook\t10005538\t540 Derrimut Road Tarneit\t0.27\t-37.8364\t144.6929\n35\tMt. Atkinson\t10011541\tcnr of Greigs Rd and Hopkins Rd ROCKBANK\t1.38\t-37.75254\t144.703\n100\tAspire\t10013237\tColes Taylors Hill Village 127 Gourlay Road TAYLORS HILL\t1.58\t-37.71166\t144.7417\n301\tEncore\t10013237\tColes Taylors Hill Village 127 Gourlay Road TAYLORS HILL\t1.81\t-37.71166\t144.7417\n514\tTaylors Hill Estate\t10013237\tColes Taylors Hill Village 127 Gourlay Road TAYLORS HILL\t0.88\t-37.71166\t144.7417\n100\tAspire\t9015394\tTelstra RBS Site 127 Gourlay Rd TAYLORS HILL\t1.58\t-37.711405\t144.7418\n301\tEncore\t9015394\tTelstra RBS Site 127 Gourlay Rd TAYLORS HILL\t1.82\t-37.711405\t144.7418\n514\tTaylors Hill Estate\t9015394\tTelstra RBS Site 127 Gourlay Rd TAYLORS HILL\t0.91\t-37.711405\t144.7418\n151\tAgar Industrial Park\t10002756\tAgar Estate Project 489 - 555 Robinsons Rd TRUGANINA\t0.77\t-37.79775\t144.7433\n770\tWilliams Landing\t10013904\t2 Overton Road WILLIAMS LANDING\t0.65\t-37.8679\t144.7496\n333\tRCA Beleura Village\t10006717\tThe Good Guys Mornington 1132 Nepean Hwy MORNINGTON\t1.16\t-38.21988\t145.0607\n60\tUniversity Hill\t10018484\tShop T38 Uni Hill Factory Outlets 2 Janefield Drive BUNDOORA\t0.18\t-37.6803\t145.0706\n60\tUniversity Hill\t10013697\t7 Ormond Boulevard BUNDOORA\t0.13\t-37.6787\t145.0712\n249\tBurwood Brickworks\t10017584\tTower crane West Garden 78 Middleborough Road BURWOOD\t0.21\t-37.8501\t145.1348\n249\tBurwood Brickworks\t10017583\tTower crane East Garden 78 Middleborough Road BURWOOD\t0.21\t-37.8501\t145.1351\n585\tBoundary warehouses\t10015507\t2 Boundary Rd CARRUM DOWNS\t0.5\t-38.08434\t145.1786\n54\tEastland Shopping Centre\t10006084\tMaroondah Council Mines Rd RINGWOOD\t0.51\t-37.80873\t145.2432\n85\tCanopy\t304399\tRanfurlie Golf Course Cranbourne-Frankston Rd CRANBOURNE\t0.94\t-38.116811\t145.2501\n104\tCasiana Grove\t304399\tRanfurlie Golf Course Cranbourne-Frankston Rd CRANBOURNE\t0.77\t-38.116811\t145.2501\n817\tThe Grove\t10006712\tThe Good Guys Crandbourne 60 Pepperbush Circuit CRANBOURNE\t0.22\t-38.08849\t145.2807\n109\tAbiwood 660\t10008466\tM8547 Cranbourne East Central 585 BERWICK-CRANBOURNE RD CLYDE NORTH\t1.49\t-38.09486\t145.3251\n130\tClydevale\t10008466\tM8547 Cranbourne East Central 585 BERWICK-CRANBOURNE RD CLYDE NORTH\t0.61\t-38.09486\t145.3251\n131\tMeridian\t10008466\tM8547 Cranbourne East Central 585 BERWICK-CRANBOURNE RD CLYDE NORTH\t1.76\t-38.09486\t145.3251\n241\tSummit Business Park\t10008466\tM8547 Cranbourne East Central 585 BERWICK-CRANBOURNE RD CLYDE NORTH\t1.62\t-38.09486\t145.3251\n39\tSt. Germain\t10016272\tMinta Farm 2/106 Soldiers Rd BERWICK\t2.15\t-38.0735\t145.3596\n67\tMinta Farm\t10016272\tMinta Farm 2/106 Soldiers Rd BERWICK\t0.6\t-38.0735\t145.3596\n71\tBerwick Waters\t10016272\tMinta Farm 2/106 Soldiers Rd BERWICK\t0.82\t-38.0735\t145.3596\n257\tCollege Green\t10016272\tMinta Farm 2/106 Soldiers Rd BERWICK\t0.84\t-38.0735\t145.3596\n732\tAmaroo Park - Stage 5\t10003019\tFilter Nr 3 Kowa Street MAREEBA\t1.33\t-17.00393\t145.4314\n158\tWorthington Estate\t10011531\tThe Good Guys Pakenhan 825 Princes Hwy PAKENHAM\t0.56\t-38.05978\t145.4544\n381\tWorthington Estate\t10011531\tThe Good Guys Pakenhan 825 Princes Hwy PAKENHAM\t0.51\t-38.05978\t145.4544\n258\tGovernors Hill\t10016889\tDSM Nutritional Products, 41 Edison Rd Wagga Wagga\t0.66\t-35.140845\t147.4181\n237\tWoodscott\t10006247\tIGA Temora Cnr Victoria and Baker Street TEMORA\t1.54\t-34.44887\t147.5335\n662\tCurrey Street Roma\t10011872\t197-235 McDowall Street ROMA\t0.35\t-26.5693\t148.774\n330\tMolonglo Valley - Coombs Stage 3\t10014701\tTelstra Street Cell 50 David Fleay Street Wright\t1.21\t-35.32493\t149.0359\n393\tMolonglo Valley - Coombs Stage 1\t10014701\tTelstra Street Cell 50 David Fleay Street Wright\t0.72\t-35.32493\t149.0359\n643\tMolonglo Valley - Coombs Stage 1\t10002288\t12 Kirkpatrick St Weston\t0.64\t-35.321251\t149.0555\n312\tMoncrieff Residential Estate\t133565\tTelstra Site Cnr Mirrabei Dr and Len Waters St MONCRIEFF\t0.93\t-35.16152\t149.113\n364\tMoncrieff Residential Estate\t133565\tTelstra Site Cnr Mirrabei Dr and Len Waters St MONCRIEFF\t0.64\t-35.16152\t149.113\n433\tMoncrieff Residential Estate\t133565\tTelstra Site Cnr Mirrabei Dr and Len Waters St MONCRIEFF\t0.92\t-35.16152\t149.113\n493\tMoncrieff Residential Estate\t133565\tTelstra Site Cnr Mirrabei Dr and Len Waters St MONCRIEFF\t0.16\t-35.16152\t149.113\n558\tMoncrieff Residential Estate\t133565\tTelstra Site Cnr Mirrabei Dr and Len Waters St MONCRIEFF\t0.36\t-35.16152\t149.113\n602\tPatterson Gardens Estate Stage 2\t10004802\tOrange East 181 Icely Road RANGE\t0.5\t-33.28512\t149.1248\n738\tBraemar Homesteads\t10009952\tMoruya Central Evans St MORUYA\t0.49\t-35.91356\t150.0838\n263\tParamount Park\t10004788\t985 - 1005 Yaamba Rd PARKHURST\t2.0\t-23.28907\t150.5095\n297\tParamount Park\t10004788\t985 - 1005 Yaamba Rd PARKHURST\t1.68\t-23.28907\t150.5095\n431\tWoodridge Estate Stage 1B\t9020843\tNBN Co Site 771 Illaroo Road TAPITALLEE\t1.06\t-34.835122\t150.5372\n431\tWoodridge Estate Stage 1B\t9025\t98 Pitt St NORTH NOWRA\t3.0\t-34.858181\t150.5699\n33\tGregory Hills\t10007948\t46 Anzac Ave SMEATON GRANGE\t0.86\t-34.03516\t150.7611\n55\tThe Hermitage (SEKI)\t10000734\tOfficeworks Gledswood Lot 811 Gregory Hills Dr GREGORY HILLS\t0.28\t-34.01994\t150.7631\n114\tCentral Hills\t10000734\tOfficeworks Gledswood Lot 811 Gregory Hills Dr GREGORY HILLS\t0.63\t-34.01994\t150.7631\n212\tHarrington Grove\t10000734\tOfficeworks Gledswood Lot 811 Gregory Hills Dr GREGORY HILLS\t0.75\t-34.01994\t150.7631\n236\tAscot Grove\t10000734\tOfficeworks Gledswood Lot 811 Gregory Hills Dr GREGORY HILLS\t0.9\t-34.01994\t150.7631\n311\tEden\t10000734\tOfficeworks Gledswood Lot 811 Gregory Hills Dr GREGORY HILLS\t0.84\t-34.01994\t150.7631\n432\tHarrington Grove\t10000734\tOfficeworks Gledswood Lot 811 Gregory Hills Dr GREGORY HILLS\t0.91\t-34.01994\t150.7631\n55\tThe Hermitage (SEKI)\t10010773\tENZOS 1 Gregory Hills Dr GLEDSWOOD HILLS\t0.34\t-34.0204\t150.7639\n114\tCentral Hills\t10010773\tENZOS 1 Gregory Hills Dr GLEDSWOOD HILLS\t0.65\t-34.0204\t150.7639\n212\tHarrington Grove\t10010773\tENZOS 1 Gregory Hills Dr GLEDSWOOD HILLS\t0.82\t-34.0204\t150.7639\n236\tAscot Grove\t10010773\tENZOS 1 Gregory Hills Dr GLEDSWOOD HILLS\t0.99\t-34.0204\t150.7639\n311\tEden\t10010773\tENZOS 1 Gregory Hills Dr GLEDSWOOD HILLS\t0.91\t-34.0204\t150.7639\n432\tHarrington Grove\t10010773\tENZOS 1 Gregory Hills Dr GLEDSWOOD HILLS\t0.99\t-34.0204\t150.7639\n699\tHeartland\t10010773\tENZOS 1 Gregory Hills Dr GLEDSWOOD HILLS\t0.76\t-34.0204\t150.7639\n18\tJordan Springs\t10011044\t17-19 Dunheved Circuit ST MARYS\t2.14\t-33.7397\t150.7671\n734\tBeachside Residential - Stage A\t9018443\tWater Reservoir Off Buccaneer Av LAMMERMOOR\t2.67\t-23.168554\t150.7748\n395\tManooka Valley\t502432\tComms Tower NSW Police Force Site Badgelly Hill off Badgally Road GREGORY HILLS\t0.97\t-34.041579\t150.7856\n19\tThe Hermitage\t10013575\tAldi Emerald Hills 5 Emerald Hills Boulevard LEPPINGTON\t0.96\t-33.99643\t150.7925\n451\tMacarthur Gardens\t10006892\tAldi Macarthur Square 200 Gillchrist Dr MACARTHUR SQUARE\t0.28\t-34.07641\t150.7983\n390\tMarsden Park Precinct\t10009165\tSt Lukes Catholic College Northbourne Dr and Fountier Ave MARSDEN PARK\t0.32\t-33.69833\t150.8186\n390\tMarsden Park Precinct\t10007255\tCnr Northbourne Dr and Elar Blvd Marsden\t0.31\t-33.695139\t150.819\n376\tGreenway - 799 Richmond Rd\t10007812\tToys R US 43 Hollinsworth Rd MARSDEN PARK\t0.32\t-33.7218\t150.8421\n587\tGreenway - 799 Richmond Rd\t10007812\tToys R US 43 Hollinsworth Rd MARSDEN PARK\t0.55\t-33.7218\t150.8421\n376\tGreenway - 799 Richmond Rd\t9023026\tIkea cnr Richmond \u0026 Hollingsworth Roads MARSDEN PARK\t0.54\t-33.719237\t150.843\n587\tGreenway - 799 Richmond Rd\t9023026\tIkea cnr Richmond \u0026 Hollingsworth Roads MARSDEN PARK\t0.63\t-33.719237\t150.843\n683\tStonecutters Ridge\t9023026\tIkea cnr Richmond \u0026 Hollingsworth Roads MARSDEN PARK\t0.99\t-33.719237\t150.843\n256\tMinto Renewal\t10011857\tPassfield Park School 53 Guernsey Ave MINTO\t0.61\t-34.02768\t150.8522\n373\tVermont Riverlands\t10015998\t15 Box Ave WILBERFORCE\t2.31\t-33.54514\t150.8576\n405\tVermont Riverlands\t10015998\t15 Box Ave WILBERFORCE\t2.43\t-33.54514\t150.8576\n545\tVermont Riverlands\t10015998\t15 Box Ave WILBERFORCE\t2.69\t-33.54514\t150.8576\n495\tEdmondson Park South P1\t10017976\t1 Soldiers Parade EDMONSON PARK\t0.82\t-33.9729\t150.8581\n373\tVermont Riverlands\t9027235\t59 Cattai Road PITT TOWN\t2.08\t-33.58255\t150.869\n405\tVermont Riverlands\t9027235\t59 Cattai Road PITT TOWN\t2.05\t-33.58255\t150.869\n545\tVermont Riverlands\t9027235\t59 Cattai Road PITT TOWN\t1.61\t-33.58255\t150.869\n806\tVermont, Fernadell\t9027235\t59 Cattai Road PITT TOWN\t0.91\t-33.58255\t150.869\n659\tBungarribee (Bunya)\t10009492\t1 Penelope Cres ARNDELL PARK\t1.07\t-33.787977\t150.8739\n420\tLyn Parade\t10001107\t59 Jedda Rd LURNEA\t0.49\t-33.93317\t150.885\n420\tLyn Parade\t10005554\t12 Enterprise Circuit PRESTONS\t0.46\t-33.93835\t150.8861\n645\tNorthview Estate\t10003221\t20 Hunter Street MUSWELLBROOK\t1.0\t-32.2503\t150.8943\n58\tThe Ridge\t9027237\tNBN Co Site 110 Threkeld Drive CATTAI\t3.07\t-33.5631\t150.8999\n405\tVermont Riverlands\t9027237\tNBN Co Site 110 Threkeld Drive CATTAI\t2.73\t-33.5631\t150.8999\n378\tThe Ponds\t10011532\tThe Ponds School 201 The Ponds Blvd THE PONDS\t0.39\t-33.69799\t150.9117\n510\tThe Ponds\t10011532\tThe Ponds School 201 The Ponds Blvd THE PONDS\t0.65\t-33.69799\t150.9117\n768\tThe Ponds\t10011532\tThe Ponds School 201 The Ponds Blvd THE PONDS\t1.03\t-33.69799\t150.9117\n510\tThe Ponds\t10007745\t822 Windsor Rd ROUSE HILL\t0.69\t-33.68689\t150.9172\n510\tThe Ponds\t10007274\tThe Mean Fiddler Cnr Windsor and Commercial Rds ROUSE HILL\t0.81\t-33.68708\t150.9204\n809\tGracewood Kellyville\t10004842\t2 Hodges Rd KELLYVILLE\t0.38\t-33.72187\t150.9449\n799\tGrey Gum Estate\t10011077\t16-20 Withers Road KELLYVILLE\t1.07\t-33.6866\t150.9501\n716\t22-26 Fairway Drive, Kellyville\t10006818\t47 Spurway Drive BAULKHAM HILLS\t0.39\t-33.72895\t150.9631\n404\tLiving Choice Glenhaven\t10014828\t1 Larapinta Pl GLENHAVEN\t1.09\t-33.69514\t150.9827\n515\tWWP LBNCo\t10011574\t5 Corniche Dr WENTWORTH POINT\t0.25\t-33.82991\t151.0754\n615\tWWP LBNCo\t10011574\t5 Corniche Dr WENTWORTH POINT\t0.32\t-33.82991\t151.0754\n583\tGreenhills Beach Residential\t10016781\t37 - 39 Girrilang Rd CRONULLA\t1.42\t-34.04455\t151.1545\n274\tPagewood Green\t10001007\tCrane 1 Cnr Banks Ave \u0026 Westfield Drive Eastgardens\t0.07\t-33.94311\t151.2234\n786\tChapple Street Business Park\t10000313\tOfficeworks Gladstone 57 Hanson Rd GLADSTONE\t0.15\t-23.84144\t151.2469\n492\tForest Springs\t10011505\tMt Biondello (New) 7 Southern Cross Cl TELINA\t0.8\t-23.8929\t151.2562\n544\tForest Springs\t10011505\tMt Biondello (New) 7 Southern Cross Cl TELINA\t1.1\t-23.8929\t151.2562\n721\tBrook View Estate- Glen Eden\t10011505\tMt Biondello (New) 7 Southern Cross Cl TELINA\t2.6\t-23.8929\t151.2562\n326\tRIVERSTONE RISE\t141342\tRiverstone Rise Reservoir Gladstone Benaraby Rd BENARABY\t1.14\t-23.977503\t151.3125\n532\tRIVERSTONE RISE\t141342\tRiverstone Rise Reservoir Gladstone Benaraby Rd BENARABY\t0.78\t-23.977503\t151.3125\n542\tRIVERSTONE RISE\t141342\tRiverstone Rise Reservoir Gladstone Benaraby Rd BENARABY\t1.28\t-23.977503\t151.3125\n140\tTannum Blue\t10011506\tTannum Reservoir (New) 75 Tannum Sands Rd TANNUM SANDS\t0.61\t-23.9584\t151.3725\n389\tThe Sands\t10011506\tTannum Reservoir (New) 75 Tannum Sands Rd TANNUM SANDS\t3.55\t-23.9584\t151.3725\n565\tAspire at Weston\t10013486\t8 Styles Street KURRI KURRI\t2.14\t-32.8048\t151.4703\n647\tMcKeachies Run\t10012518\tRutherford Public School Weblands Street RUTHERFORD\t2.44\t-32.7111\t151.5284\n811\tSaddlers Ridge\t10008878\tGillieston Heights 18 Gillieston Road Maitland\t1.26\t-32.75007\t151.5369\n193\tTimbertop Estate\t9027694\tNBN Co Site 18 Langlands Road GLEN OAK\t1.85\t-32.61858\t151.7189\n688\tShoesmith Road / Gwenda Drive\t9002982\tJondaryan Shire Council Water Reservoir 6 Skyline Dr GLENVALE\t3.93\t-27.570699\t151.8939\n396\tHighfields Views\t39281\tDefence Depot CABARLAH\t1.06\t-27.446616\t151.9841\n494\tAmorosa Gardens\t39281\tDefence Depot CABARLAH\t3.19\t-27.446616\t151.9841\n201\tParklands\t461058\tJohns Farm 6km South West BUNDABERG\t1.97\t-24.933802\t152.2701\n741\tBelle Eden Estate\t10017550\tWoongarra State School 468 Elliott Heads Rd BUNDABERG\t1.54\t-24.87841\t152.406\n226\tThe Fairways\t10003417\tLockrose 40m monopole LOT 16 Cricket Road BRIGHTVIEW\t2.52\t-27.5165\t152.4604\n298\tThe Fairways\t10003417\tLockrose 40m monopole LOT 16 Cricket Road BRIGHTVIEW\t2.59\t-27.5165\t152.4604\n382\tThe Fairways\t10003417\tLockrose 40m monopole LOT 16 Cricket Road BRIGHTVIEW\t3.26\t-27.5165\t152.4604\n478\tThe Fairways\t10003417\tLockrose 40m monopole LOT 16 Cricket Road BRIGHTVIEW\t3.58\t-27.5165\t152.4604\n507\tThe Fairways\t10003417\tLockrose 40m monopole LOT 16 Cricket Road BRIGHTVIEW\t2.37\t-27.5165\t152.4604\n302\tNEVERWOODS ESTATE\t9012018\tWater Tower 150 Red Head Rd RED HEAD\t3.12\t-32.058359\t152.5313\n59\tFlourish\t10006085\tDGPS site 56 Bottlebrush Dr DEEBING HEIGHTS\t1.43\t-27.67262\t152.7478\n59\tFlourish\t10017710\tDeebing Springs DEEBING CREEK\t0.42\t-27.6768\t152.7593\n43\tEcco Ripley\t10014461\tRipley Providence School 7001 Parkway Avenue SOUTH RIPLEY\t1.85\t-27.6967\t152.8103\n46\tFernbrooke\t10011212\t32 Greenwood Village Rd GREENWOOD VILLAGE\t0.82\t-27.64289\t152.8392\n282\tSix Mile Creek Village\t10011212\t32 Greenwood Village Rd GREENWOOD VILLAGE\t1.25\t-27.64289\t152.8392\n225\tRedbank Motorway Estate\t10017445\t5 Birdwood Crs REDBANK\t0.13\t-27.58482\t152.8726\n534\tRedbank Motorway Estate\t10017445\t5 Birdwood Crs REDBANK\t0.39\t-27.58482\t152.8726\n225\tRedbank Motorway Estate\t10011871\tMILVEHCOE construction site Robert Smith Street REDBANK PLAINS\t0.26\t-27.584\t152.876\n440\tSanctuary on Moggill\t10011871\tMILVEHCOE construction site Robert Smith Street REDBANK PLAINS\t1.11\t-27.584\t152.876\n534\tRedbank Motorway Estate\t10011871\tMILVEHCOE construction site Robert Smith Street REDBANK PLAINS\t0.22\t-27.584\t152.876\n440\tSanctuary on Moggill\t10009537\tMoggill 3366 Moggill Road MOGGILL\t0.52\t-27.57059\t152.8777\n323\tIngenia Hervey Bay\t9024062\tFraser Coast Regional Council 41-47 Ellengowan Street URANGAN\t0.55\t-25.316603\t152.8877\n703\tSamford Retirement Village\t10003363\tSamford Village Cnr Samford and Upper Camp Road Samford\t0.27\t-27.37648\t152.8883\n401\tGemstone Waters\t10006177\tAldi Caboolture 141 - 147 King St CABOOLTURE\t1.48\t-27.08476\t152.941\n336\tMadison Ridge\t10013608\tDrakes Supermarket Pumicestone 1 Ardrossan Road CABOOLTURE\t1.51\t-27.0583\t152.9599\n229\tJimboomba Woods\t10008424\tTelstra Site 9 Trewin Road Mundoolun\t3.43\t-27.89936\t153.0378\n379\tJimboomba Woods\t10008424\tTelstra Site 9 Trewin Road Mundoolun\t3.38\t-27.89936\t153.0378\n413\tJimboomba Woods\t10008424\tTelstra Site 9 Trewin Road Mundoolun\t3.17\t-27.89936\t153.0378\n421\tJimboomba Woods\t10008424\tTelstra Site 9 Trewin Road Mundoolun\t3.33\t-27.89936\t153.0378\n523\tJimboomba Woods\t10008424\tTelstra Site 9 Trewin Road Mundoolun\t3.65\t-27.89936\t153.0378\n196\tJimboomba Woods\t10017077\t1-23 Mundoolun Road JIMBOOMBA\t3.59\t-27.83706\t153.0442\n248\tJimboomba Woods\t10017077\t1-23 Mundoolun Road JIMBOOMBA\t3.02\t-27.83706\t153.0442\n265\tMundoolun\t10017077\t1-23 Mundoolun Road JIMBOOMBA\t4.11\t-27.83706\t153.0442\n309\tJimboomba Woods\t10017077\t1-23 Mundoolun Road JIMBOOMBA\t2.92\t-27.83706\t153.0442\n338\tJimboomba Woods\t10017077\t1-23 Mundoolun Road JIMBOOMBA\t3.66\t-27.83706\t153.0442\n379\tJimboomba Woods\t10017077\t1-23 Mundoolun Road JIMBOOMBA\t3.57\t-27.83706\t153.0442\n413\tJimboomba Woods\t10017077\t1-23 Mundoolun Road JIMBOOMBA\t3.88\t-27.83706\t153.0442\n421\tJimboomba Woods\t10017077\t1-23 Mundoolun Road JIMBOOMBA\t3.72\t-27.83706\t153.0442\n523\tJimboomba Woods\t10017077\t1-23 Mundoolun Road JIMBOOMBA\t3.39\t-27.83706\t153.0442\n185\tMundoolun Estate\t10000306\tNBNCo 2-16 Minugh Road Jimboomba\t4.07\t-27.83341\t153.0587\n196\tJimboomba Woods\t10000306\tNBNCo 2-16 Minugh Road Jimboomba\t3.64\t-27.83341\t153.0587\n248\tJimboomba Woods\t10000306\tNBNCo 2-16 Minugh Road Jimboomba\t3.24\t-27.83341\t153.0587\n265\tMundoolun\t10000306\tNBNCo 2-16 Minugh Road Jimboomba\t3.5\t-27.83341\t153.0587\n309\tJimboomba Woods\t10000306\tNBNCo 2-16 Minugh Road Jimboomba\t3.54\t-27.83341\t153.0587\n338\tJimboomba Woods\t10000306\tNBNCo 2-16 Minugh Road Jimboomba\t3.7\t-27.83341\t153.0587\n789\tPeregian Springs\t10006567\t95 Peregian Springs Dr PEREGIAN SPRINGS\t0.99\t-26.49235\t153.0715\n115\tStoneleigh\t10018079\tLogan Reserve Rd LOGAN RESERVE\t0.72\t-27.70346\t153.1196\n235\tSequana\t10018079\tLogan Reserve Rd LOGAN RESERVE\t1.43\t-27.70346\t153.1196\n446\tArise\t10018166\t694 Rochedale Road ROCHEDALE\t1.15\t-27.58076\t153.1266\n527\tArise\t10018166\t694 Rochedale Road ROCHEDALE\t0.99\t-27.58076\t153.1266\n497\tLogan Hyperdome Shopping Centre\t10014644\tEvent Cinemas Loganholme Pacific Hwy and Bryants Rd LOGANHOLME\t0.13\t-27.65798\t153.1702\n737\tSouth East Thornlands\t10002215\tAldi Victoria Point 11 - 17 Bunker Road VICTORIA POINT\t1.51\t-27.58518\t153.2805\n695\tBig Sky\t10009909\tKerkin Road South COOMERA\t0.93\t-27.83\t153.334\n656\tYamba Waters\t305965\t54 Miles St YAMBA\t0.69\t-29.438196\t153.337\n23\tCoomera Waters\t10006087\tDGPS site 20 Oakey Creek Rd COOMERA\t1.31\t-27.85441\t153.3411\n718\tCoomera 2 Estate\t10006087\tDGPS site 20 Oakey Creek Rd COOMERA\t1.47\t-27.85441\t153.3411\n765\tSage Apartments\t10007143\t31 Bourton Rd MERRIMAC\t0.41\t-28.05429\t153.3641\n468\tHalcyon\t10012433\tALDI Hope Island 99 Broadwater Ave HOPE ISLAND\t0.11\t-27.87756\t153.3646\n468\tHalcyon\t10017920\t1 Grant Ave Hope Island\t0.38\t-27.875\t153.365\n580\tNorth Byron Beach Resort\t10003594\tSupa IGA Crn Bayshore Dr and Sunrise Bvd BYRON BAY\t0.91\t-28.63273\t153.5835\n580\tNorth Byron Beach Resort\t10004839\t54 Bayshore Dr BYRON BAY\t0.55\t-28.62917\t153.5845\n156\tAureus\t10001259\t38 Flat Rock Rd Skennars Head\t0.48\t-28.84344\t153.603\n170\tDavid Road\t140078\t26 Seacrest Way DRUMMOND COVE\t2.51\t-28.674115\t114.613333\n417\tWokarena Road\t140078\t26 Seacrest Way DRUMMOND COVE\t1.83\t-28.674115\t114.613333\n170\tDavid Road\t138707\tQuayside Vista DRUMMOND COVE\t1.73\t-28.666863\t114.619584\n417\tWokarena Road\t138707\tQuayside Vista DRUMMOND COVE\t0.82\t-28.666863\t114.619584\n170\tDavid Road\t9017579\tTelstra Site Lot 4 Dulchev Way GLENFIELD\t1.58\t-28.672521\t114.623045\n417\tWokarena Road\t9017579\tTelstra Site Lot 4 Dulchev Way GLENFIELD\t1.3\t-28.672521\t114.623045\n170\tDavid Road\t9020818\tKalbarri Express Freight Office 6 Cooper Street WAGGRAKINE\t1.28\t-28.675788\t114.631034\n417\tWokarena Road\t9020818\tKalbarri Express Freight Office 6 Cooper Street WAGGRAKINE\t1.77\t-28.675788\t114.631034\n242\tDeepdale North\t30963\tSECWA Depot S10 GERALDTON\t2.39\t-28.770374\t114.647473\n242\tDeepdale North\t9019754\t14 Jenark Road WOORREE\t2.38\t-28.763215\t114.649262\n242\tDeepdale North\t600338\t21 Jenark Rd Woorree GERALDTON\t1.97\t-28.765361\t114.652828\n455\tDeepdale North\t600338\t21 Jenark Rd Woorree GERALDTON\t2.95\t-28.765361\t114.652828\n170\tDavid Road\t10016943\tNode1 Pole, 2km WSW of Mt Sommer White Peak\t2.62\t-28.652527\t114.659505\n417\tWokarena Road\t10016943\tNode1 Pole, 2km WSW of Mt Sommer White Peak\t3.54\t-28.652527\t114.659505\n635\tGeraldton Heights\t441355\t26 Tiltili Rise GERALDTON\t2.67\t-28.711772\t114.663913\n242\tDeepdale North\t600819\tWater Meter At Lot 26 Edward Road GERALDTON\t1.94\t-28.787383\t114.664715\n455\tDeepdale North\t600819\tWater Meter At Lot 26 Edward Road GERALDTON\t2.64\t-28.787383\t114.664715\n177\tLots 9004 Eastlyn Dr Deepdale\t140236\t142 Stansfield Road GERALDTON WA\t1.3\t-28.792129\t114.666761\n177\tLots 9004 Eastlyn Dr Deepdale\t9014518\tOptus Lattice Tower 217 Edward Road MERU\t1.03\t-28.790815\t114.670056\n242\tDeepdale North\t9014518\tOptus Lattice Tower 217 Edward Road MERU\t2.2\t-28.790815\t114.670056\n359\tThe Grove\t9014518\tOptus Lattice Tower 217 Edward Road MERU\t1.7\t-28.790815\t114.670056\n455\tDeepdale North\t9014518\tOptus Lattice Tower 217 Edward Road MERU\t2.66\t-28.790815\t114.670056\n177\tLots 9004 Eastlyn Dr Deepdale\t31019\tEdward Rd GERALDTON\t0.96\t-28.794633\t114.670228\n359\tThe Grove\t31019\tEdward Rd GERALDTON\t1.92\t-28.794633\t114.670228\n177\tLots 9004 Eastlyn Dr Deepdale\t138158\tCnr Goulds Road and Meru Road Geraldton\t1.02\t-28.80145\t114.674174\n635\tGeraldton Heights\t30919\tFlat Topped Range GERALDTON\t2.91\t-28.716279\t114.684118\n177\tLots 9004 Eastlyn Dr Deepdale\t137364\tGreenough Terminal GERALDTON AIRPORT\t0.63\t-28.796167\t114.685876\n359\tThe Grove\t137364\tGreenough Terminal GERALDTON AIRPORT\t1.36\t-28.796167\t114.685876\n394\tDeepdale Industrial Estate\t137364\tGreenough Terminal GERALDTON AIRPORT\t0.72\t-28.796167\t114.685876\n694\tDeepdale North\t137364\tGreenough Terminal GERALDTON AIRPORT\t1.32\t-28.796167\t114.685876\n635\tGeraldton Heights\t35086\tGeraldton TV and Radio Site MOONYOONOOKA\t2.8\t-28.731624\t114.692428\n635\tGeraldton Heights\t31030\tML Comms Group Site 2 Mt Fairfax MOONYOONOOKA\t2.82\t-28.732759\t114.692864\n635\tGeraldton Heights\t10017702\tML Communications GS3 40m Mast, 1.55km North of Mt Fairfax Moonyoonooka\t2.88\t-28.733622\t114.693609\n359\tThe Grove\t9016024\tDeepdale Road Power Station Deepdale Road GERALDTON\t1.39\t-28.79317\t114.695252\n394\tDeepdale Industrial Estate\t9016024\tDeepdale Road Power Station Deepdale Road GERALDTON\t0.4\t-28.79317\t114.695252\n455\tDeepdale North\t9016024\tDeepdale Road Power Station Deepdale Road GERALDTON\t2.9\t-28.79317\t114.695252\n694\tDeepdale North\t9016024\tDeepdale Road Power Station Deepdale Road GERALDTON\t1.1\t-28.79317\t114.695252\n359\tThe Grove\t600618\tFESA Site Airport GERALDTON\t1.14\t-28.786873\t114.696896\n394\tDeepdale Industrial Estate\t600618\tFESA Site Airport GERALDTON\t0.77\t-28.786873\t114.696896\n455\tDeepdale North\t600618\tFESA Site Airport GERALDTON\t2.37\t-28.786873\t114.696896\n694\tDeepdale North\t600618\tFESA Site Airport GERALDTON\t0.76\t-28.786873\t114.696896\n394\tDeepdale Industrial Estate\t603200\tTerminal Building Airport GERALDTON\t1.18\t-28.796375\t114.702344\n394\tDeepdale Industrial Estate\t31004\tTerminal Building Airport GERALDTON\t1.17\t-28.796096\t114.702364\n694\tDeepdale North\t9009979\tAirservices VHF Tower Geraldton SGS Compound GERALDTON\t1.69\t-28.79377\t114.703361\n694\tDeepdale North\t9010668\tAirservices VOR/DME Nav Site Geraldton Airport GERALDTON\t1.74\t-28.790339\t114.706087\n299\tLoc 1017 Redgate Road Witchcliffe\t9009801\tLeeuwin Estate Winery Stevens Road MARGARET RIVER\t1.36\t-34.014297\t115.066101\n503\tLot 1032 Redgate Road\t9009801\tLeeuwin Estate Winery Stevens Road MARGARET RIVER\t2.77\t-34.014297\t115.066101\n299\tLoc 1017 Redgate Road Witchcliffe\t10014657\tNBN Co Site 175 Redgate Road Witchcliffe\t1.56\t-34.034281\t115.086564\n503\tLot 1032 Redgate Road\t10014657\tNBN Co Site 175 Redgate Road Witchcliffe\t0.66\t-34.034281\t115.086564\n299\tLoc 1017 Redgate Road Witchcliffe\t134818\tOptus Site Karridale 1032 Redgate Road WITCHCLIFFE\t2.03\t-34.032447\t115.094523\n503\tLot 1032 Redgate Road\t134818\tOptus Site Karridale 1032 Redgate Road WITCHCLIFFE\t0.53\t-34.032447\t115.094523\n299\tLoc 1017 Redgate Road Witchcliffe\t131874\tTelstra CDMA Location 1032 Redgate Road WITCHCLIFFE\t2.02\t-34.032179\t115.094537\n503\tLot 1032 Redgate Road\t131874\tTelstra CDMA Location 1032 Redgate Road WITCHCLIFFE\t0.52\t-34.032179\t115.094537\n299\tLoc 1017 Redgate Road Witchcliffe\t10014303\tBroadcast Site Cnr Bussell Hwy and Shervington Ave Witchcliffe\t2.38\t-34.025935\t115.100584\n503\tLot 1032 Redgate Road\t10014303\tBroadcast Site Cnr Bussell Hwy and Shervington Ave Witchcliffe\t1.02\t-34.025935\t115.100584\n137\tOnslow Aerodome Redevelopment\t9019784\tWater Tank Control Cubicle Onslow Rd, N of Airport ONSLOW\t0.62\t-21.659413\t115.112051\n137\tOnslow Aerodome Redevelopment\t32049\tComm Site ONSLOW\t0.51\t-21.660651\t115.112131\n137\tOnslow Aerodome Redevelopment\t45094\tAerodrome ONSLOW\t0.45\t-21.667099\t115.11371\n516\tOnslow Townsite Development\t9018953\tMc Grath Street ONSLOW\t0.07\t-21.646515\t115.114315\n516\tOnslow Townsite Development\t141224\tShire Council Site Lot 694 Payne Way ONSLOW\t0.1\t-21.645954\t115.115073\n516\tOnslow Townsite Development\t32035\tHospital ONSLOW\t0.38\t-21.643453\t115.115127\n516\tOnslow Townsite Development\t601668\tSES East of Watson Drive ONSLOW\t0.1\t-21.646056\t115.115277\n516\tOnslow Townsite Development\t151663\tBroadcast Australia Site Lot 598 Payne Way ONSLOW\t0.21\t-21.645084\t115.115589\n137\tOnslow Aerodome Redevelopment\t32057\tSES HF Site ONSLOW\t1.24\t-21.652505\t115.116942\n559\tVasse Newtown\t141246\tStandby Mast Broadcast Australia Site Off Caves Rd KEALY\t1.86\t-33.658978\t115.227617\n351\tVasse Newtown\t141247\tArray Midpoint Broadcast Australia Site Off Caves Rd KEALY\t2.18\t-33.659514\t115.228501\n559\tVasse Newtown\t141247\tArray Midpoint Broadcast Australia Site Off Caves Rd KEALY\t1.77\t-33.659514\t115.228501\n351\tVasse Newtown\t28084\tBroadcast Australia Site off Caves Rd KEALY\t2.09\t-33.66005\t115.229385\n559\tVasse Newtown\t28084\tBroadcast Australia Site off Caves Rd KEALY\t1.68\t-33.66005\t115.229385\n351\tVasse Newtown\t141249\tNominal Planning site Caves Rd KEALY\t2.09\t-33.659925\t115.229495\n559\tVasse Newtown\t141249\tNominal Planning site Caves Rd KEALY\t1.69\t-33.659925\t115.229495\n351\tVasse Newtown\t142042\t220 Caves Road SIESTA PARK\t2.16\t-33.656682\t115.235417\n351\tVasse Newtown\t10000728\tTelstra Exchange 6023 Bussell Hwy Vasse\t0.75\t-33.67649\t115.25078\n559\tVasse Newtown\t10000728\tTelstra Exchange 6023 Bussell Hwy Vasse\t1.27\t-33.67649\t115.25078\n162\tRendezvous Road Vasse\t600536\tWestern Power Sub Station BUSSELTON\t1.42\t-33.686604\t115.266704\n162\tRendezvous Road Vasse\t601034\tRay Village 20 Ray Avenue BUSSELTON\t2.15\t-33.65835\t115.26864\n162\tRendezvous Road Vasse\t9010685\tOptus Lattice Tower Lot 911 (497) Rendezvous Road VASSE\t1.33\t-33.688096\t115.272133\n162\tRendezvous Road Vasse\t9027749\tOther 599 Bussell Highway BROADWATER\t1.97\t-33.659042\t115.274202\n162\tRendezvous Road Vasse\t139122\tLot 31 Bussell Hwy BROADWATER\t1.99\t-33.660703\t115.285999\n816\tOld Broadwater Farm\t30598\tMandalay Holiday Resort 254 Geographe Bay Rd BUSSELTON\t1.73\t-33.658152\t115.295851\n816\tOld Broadwater Farm\t9011966\tWater Board Lot 500 Bussell Hwy BROADWATER\t1.57\t-33.659189\t115.297116\n816\tOld Broadwater Farm\t10002990\tTelstra Site Busselton Health Campus 17 Mill Road West Busselton\t1.77\t-33.654394\t115.320443\n816\tOld Broadwater Farm\t28059\tHospital BUSSELTON\t1.9\t-33.653171\t115.320751\n816\tOld Broadwater Farm\t9014176\tBusselton Leisure Centre Corner Queen Elizabeth Avenue \u0026 Recreation Lane BUSSELTON\t1.39\t-33.666888\t115.325435\n121\tFishermans Rd\t402725\tIluka Resources Site NORTH CAPEL WEST\t3.34\t-33.498172\t115.551412\n159\tFishermans Road Stratham Park\t402725\tIluka Resources Site NORTH CAPEL WEST\t3.44\t-33.498172\t115.551412\n121\tFishermans Rd\t601473\tWestralian Sands Process Plant SR2 Yeardy Road CAPEL\t3.68\t-33.510592\t115.572457\n159\tFishermans Road Stratham Park\t601473\tWestralian Sands Process Plant SR2 Yeardy Road CAPEL\t3.55\t-33.510592\t115.572457\n121\tFishermans Rd\t602210\tYeardy Road CAPEL\t3.15\t-33.506155\t115.578021\n159\tFishermans Road Stratham Park\t602210\tYeardy Road CAPEL\t2.98\t-33.506155\t115.578021\n121\tFishermans Rd\t600798\tRGC Mineral Sands Yeardy Road NORTH CAPEL\t3.51\t-33.509274\t115.581102\n159\tFishermans Road Stratham Park\t600798\tRGC Mineral Sands Yeardy Road NORTH CAPEL\t3.31\t-33.509274\t115.581102\n121\tFishermans Rd\t138443\tCapel Golf Club Brussell Highway STRATHAM\t3.54\t-33.452439\t115.60103\n159\tFishermans Road Stratham Park\t138443\tCapel Golf Club Brussell Highway STRATHAM\t3.54\t-33.452439\t115.60103\n176\tDalyellup\t9012206\tTelstra RBS Site Lot 2 Maidment Pde DALYELLUP\t0.81\t-33.391342\t115.611043\n284\tDalyellup\t9012206\tTelstra RBS Site Lot 2 Maidment Pde DALYELLUP\t1.24\t-33.391342\t115.611043\n313\tDalyellup\t9012206\tTelstra RBS Site Lot 2 Maidment Pde DALYELLUP\t1.1\t-33.391342\t115.611043\n439\tDalyellup\t9012206\tTelstra RBS Site Lot 2 Maidment Pde DALYELLUP\t0.96\t-33.391342\t115.611043\n775\tDalyellup\t9012206\tTelstra RBS Site Lot 2 Maidment Pde DALYELLUP\t1.23\t-33.391342\t115.611043\n793\tDalyellup\t9012206\tTelstra RBS Site Lot 2 Maidment Pde DALYELLUP\t1.41\t-33.391342\t115.611043\n176\tDalyellup\t9011199\tMATV Headend Hutt Drive DALYELLUP\t0.77\t-33.393609\t115.612272\n284\tDalyellup\t9011199\tMATV Headend Hutt Drive DALYELLUP\t1.14\t-33.393609\t115.612272\n313\tDalyellup\t9011199\tMATV Headend Hutt Drive DALYELLUP\t1.02\t-33.393609\t115.612272\n439\tDalyellup\t9011199\tMATV Headend Hutt Drive DALYELLUP\t0.87\t-33.393609\t115.612272\n775\tDalyellup\t9011199\tMATV Headend Hutt Drive DALYELLUP\t0.95\t-33.393609\t115.612272\n793\tDalyellup\t9011199\tMATV Headend Hutt Drive DALYELLUP\t1.14\t-33.393609\t115.612272\n176\tDalyellup\t9004002\tWater Tank Minninup Road DALYELLUP\t0.65\t-33.389457\t115.612822\n284\tDalyellup\t9004002\tWater Tank Minninup Road DALYELLUP\t1.1\t-33.389457\t115.612822\n313\tDalyellup\t9004002\tWater Tank Minninup Road DALYELLUP\t0.95\t-33.389457\t115.612822\n439\tDalyellup\t9004002\tWater Tank Minninup Road DALYELLUP\t0.83\t-33.389457\t115.612822\n775\tDalyellup\t9004002\tWater Tank Minninup Road DALYELLUP\t1.33\t-33.389457\t115.612822\n793\tDalyellup\t9004002\tWater Tank Minninup Road DALYELLUP\t1.59\t-33.389457\t115.612822\n176\tDalyellup\t100350\tNo2 Treatment Plant Minninup Rd BUNBURY\t0.48\t-33.386211\t115.619388\n284\tDalyellup\t100350\tNo2 Treatment Plant Minninup Rd BUNBURY\t0.77\t-33.386211\t115.619388\n313\tDalyellup\t100350\tNo2 Treatment Plant Minninup Rd BUNBURY\t0.63\t-33.386211\t115.619388\n439\tDalyellup\t100350\tNo2 Treatment Plant Minninup Rd BUNBURY\t0.64\t-33.386211\t115.619388\n775\tDalyellup\t100350\tNo2 Treatment Plant Minninup Rd BUNBURY\t1.59\t-33.386211\t115.619388\n793\tDalyellup\t100350\tNo2 Treatment Plant Minninup Rd BUNBURY\t2.01\t-33.386211\t115.619388\n176\tDalyellup\t136988\tConcert Stage Ocean Forest Lutheran College 133 Norton Promenade DALYELLUP\t1.3\t-33.400405\t115.627314\n284\tDalyellup\t136988\tConcert Stage Ocean Forest Lutheran College 133 Norton Promenade DALYELLUP\t1.0\t-33.400405\t115.627314\n313\tDalyellup\t136988\tConcert Stage Ocean Forest Lutheran College 133 Norton Promenade DALYELLUP\t1.12\t-33.400405\t115.627314\n439\tDalyellup\t136988\tConcert Stage Ocean Forest Lutheran College 133 Norton Promenade DALYELLUP\t1.11\t-33.400405\t115.627314\n775\tDalyellup\t136988\tConcert Stage Ocean Forest Lutheran College 133 Norton Promenade DALYELLUP\t0.83\t-33.400405\t115.627314\n793\tDalyellup\t136988\tConcert Stage Ocean Forest Lutheran College 133 Norton Promenade DALYELLUP\t1.29\t-33.400405\t115.627314\n305\tWannanup-Port Bouvard North\t603092\tCountry Club Drive DAWSEVILLE\t1.59\t-32.612877\t115.632278\n465\tWannanup-Port Bouvard North\t603092\tCountry Club Drive DAWSEVILLE\t1.23\t-32.612877\t115.632278\n571\tDawesville-Port Bouvard South\t603092\tCountry Club Drive DAWSEVILLE\t0.88\t-32.612877\t115.632278\n620\tDawesville-Port Bouvard South\t603092\tCountry Club Drive DAWSEVILLE\t0.22\t-32.612877\t115.632278\n628\tWannanup-Port Bouvard East\t603092\tCountry Club Drive DAWSEVILLE\t1.21\t-32.612877\t115.632278\n305\tWannanup-Port Bouvard North\t9003827\tCaddadup Water Tank Old Coast Road DAWESVILLE\t1.71\t-32.615525\t115.638558\n349\tWannanup-Port Bouvard East\t9003827\tCaddadup Water Tank Old Coast Road DAWESVILLE\t1.16\t-32.615525\t115.638558\n465\tWannanup-Port Bouvard North\t9003827\tCaddadup Water Tank Old Coast Road DAWESVILLE\t1.55\t-32.615525\t115.638558\n571\tDawesville-Port Bouvard South\t9003827\tCaddadup Water Tank Old Coast Road DAWESVILLE\t1.26\t-32.615525\t115.638558\n620\tDawesville-Port Bouvard South\t9003827\tCaddadup Water Tank Old Coast Road DAWESVILLE\t0.83\t-32.615525\t115.638558\n628\tWannanup-Port Bouvard East\t9003827\tCaddadup Water Tank Old Coast Road DAWESVILLE\t1.18\t-32.615525\t115.638558\n349\tWannanup-Port Bouvard East\t141904\tLPON Site 945 Old Coast Rd DAWESVILLE\t1.18\t-32.615881\t115.638894\n620\tDawesville-Port Bouvard South\t141904\tLPON Site 945 Old Coast Rd DAWESVILLE\t0.88\t-32.615881\t115.638894\n349\tWannanup-Port Bouvard East\t134397\tOptus Site Dawesville Old Coast Rd FLORIDA\t1.14\t-32.615604\t115.639217\n406\tWannanup-Port Bouvard East\t134397\tOptus Site Dawesville Old Coast Rd FLORIDA\t1.5\t-32.615604\t115.639217\n438\tWannanup-Port Bouvard East\t134397\tOptus Site Dawesville Old Coast Rd FLORIDA\t1.92\t-32.615604\t115.639217\n465\tWannanup-Port Bouvard North\t134397\tOptus Site Dawesville Old Coast Rd FLORIDA\t1.58\t-32.615604\t115.639217\n571\tDawesville-Port Bouvard South\t134397\tOptus Site Dawesville Old Coast Rd FLORIDA\t1.29\t-32.615604\t115.639217\n620\tDawesville-Port Bouvard South\t134397\tOptus Site Dawesville Old Coast Rd FLORIDA\t0.88\t-32.615604\t115.639217\n628\tWannanup-Port Bouvard East\t134397\tOptus Site Dawesville Old Coast Rd FLORIDA\t1.18\t-32.615604\t115.639217\n349\tWannanup-Port Bouvard East\t601099\tWAWA Caddadup Tank Old Coast Road FLORIDA\t1.15\t-32.615721\t115.639226\n406\tWannanup-Port Bouvard East\t601099\tWAWA Caddadup Tank Old Coast Road FLORIDA\t1.51\t-32.615721\t115.639226\n571\tDawesville-Port Bouvard South\t601099\tWAWA Caddadup Tank Old Coast Road FLORIDA\t1.3\t-32.615721\t115.639226\n620\tDawesville-Port Bouvard South\t601099\tWAWA Caddadup Tank Old Coast Road FLORIDA\t0.89\t-32.615721\t115.639226\n628\tWannanup-Port Bouvard East\t601099\tWAWA Caddadup Tank Old Coast Road FLORIDA\t1.19\t-32.615721\t115.639226\n787\tYanchep Golf Estate\t9024196\tSite Compound Welwyn Avenue Yanchep Beach\t1.11\t-31.545021\t115.642734\n787\tYanchep Golf Estate\t600535\tCity Council Site YANCHEP\t1.2\t-31.550884\t115.643436\n288\tWannanup-Port Bouvard North\t153119\tEastport Marina Site Rees Place WANNANUP\t1.71\t-32.607537\t115.645584\n305\tWannanup-Port Bouvard North\t153119\tEastport Marina Site Rees Place WANNANUP\t0.95\t-32.607537\t115.645584\n349\tWannanup-Port Bouvard East\t153119\tEastport Marina Site Rees Place WANNANUP\t0.2\t-32.607537\t115.645584\n406\tWannanup-Port Bouvard East\t153119\tEastport Marina Site Rees Place WANNANUP\t0.46\t-32.607537\t115.645584\n438\tWannanup-Port Bouvard East\t153119\tEastport Marina Site Rees Place WANNANUP\t0.85\t-32.607537\t115.645584\n465\tWannanup-Port Bouvard North\t153119\tEastport Marina Site Rees Place WANNANUP\t1.2\t-32.607537\t115.645584\n571\tDawesville-Port Bouvard South\t153119\tEastport Marina Site Rees Place WANNANUP\t1.16\t-32.607537\t115.645584\n626\tWannanup-Port Bouvard North\t153119\tEastport Marina Site Rees Place WANNANUP\t1.44\t-32.607537\t115.645584\n628\tWannanup-Port Bouvard East\t153119\tEastport Marina Site Rees Place WANNANUP\t0.47\t-32.607537\t115.645584\n787\tYanchep Golf Estate\t9004165\tSun City Country Club St Andrews Drive YANCHEP\t1.15\t-31.535552\t115.65139\n787\tYanchep Golf Estate\t10010474\tUKWA Radio LPON transmiter 144 St Andrews Drive YANCHEP\t1.2\t-31.53502\t115.651756\n787\tYanchep Golf Estate\t600379\tLanding Ground Yanchep Beach Rd YANCHEP\t1.01\t-31.554621\t115.655498\n288\tWannanup-Port Bouvard North\t141908\tLPON Site 17 Signet Court WANNANUP\t1.72\t-32.596677\t115.657246\n305\tWannanup-Port Bouvard North\t141908\tLPON Site 17 Signet Court WANNANUP\t1.64\t-32.596677\t115.657246\n406\tWannanup-Port Bouvard East\t141908\tLPON Site 17 Signet Court WANNANUP\t1.29\t-32.596677\t115.657246\n438\tWannanup-Port Bouvard East\t141908\tLPON Site 17 Signet Court WANNANUP\t0.78\t-32.596677\t115.657246\n537\tWannanup-Port Bouvard North\t141908\tLPON Site 17 Signet Court WANNANUP\t1.19\t-32.596677\t115.657246\n547\tFalcon-Pleasant Grove\t141908\tLPON Site 17 Signet Court WANNANUP\t0.59\t-32.596677\t115.657246\n626\tWannanup-Port Bouvard North\t141908\tLPON Site 17 Signet Court WANNANUP\t1.16\t-32.596677\t115.657246\n288\tWannanup-Port Bouvard North\t27525\tCnr Cobblers \u0026 Flavia Rds FALCON\t1.87\t-32.585791\t115.657365\n438\tWannanup-Port Bouvard East\t27525\tCnr Cobblers \u0026 Flavia Rds FALCON\t1.89\t-32.585791\t115.657365\n537\tWannanup-Port Bouvard North\t27525\tCnr Cobblers \u0026 Flavia Rds FALCON\t1.28\t-32.585791\t115.657365\n547\tFalcon-Pleasant Grove\t27525\tCnr Cobblers \u0026 Flavia Rds FALCON\t1.24\t-32.585791\t115.657365\n626\tWannanup-Port Bouvard North\t27525\tCnr Cobblers \u0026 Flavia Rds FALCON\t1.51\t-32.585791\t115.657365\n288\tWannanup-Port Bouvard North\t9027149\tPylon Signage 651-669 Old Coast Road FALCON WA 6210\t2.04\t-32.58529\t115.659074\n537\tWannanup-Port Bouvard North\t9027149\tPylon Signage 651-669 Old Coast Road FALCON WA 6210\t1.45\t-32.58529\t115.659074\n547\tFalcon-Pleasant Grove\t9027149\tPylon Signage 651-669 Old Coast Road FALCON WA 6210\t1.37\t-32.58529\t115.659074\n626\tWannanup-Port Bouvard North\t9027149\tPylon Signage 651-669 Old Coast Road FALCON WA 6210\t1.67\t-32.58529\t115.659074\n537\tWannanup-Port Bouvard North\t9009858\tTelstra RBS Site 649 Old Coast Rd FALCON\t1.49\t-32.58529\t115.659604\n547\tFalcon-Pleasant Grove\t9009858\tTelstra RBS Site 649 Old Coast Rd FALCON\t1.4\t-32.58529\t115.659604\n7\tAlkimos Beach\t139954\tLot 2 Marmion Avenue EGLINTON\t1.8\t-31.599106\t115.663376\n8\tAlkimos Vista\t139954\tLot 2 Marmion Avenue EGLINTON\t0.8\t-31.599106\t115.663376\n306\tAmberton\t139954\tLot 2 Marmion Avenue EGLINTON\t0.43\t-31.599106\t115.663376\n306\tAmberton\t9027040\tAllara Headland 40K Revolution Avenue EGLINTON\t2.09\t-31.576976\t115.664135\n8\tAlkimos Vista\t9011211\tLot 102 Romeo Road CARABOODA\t1.42\t-31.61502\t115.664245\n8\tAlkimos Vista\t139017\tWest of Marmion Avenue ALKIMOS\t1.39\t-31.615299\t115.665896\n7\tAlkimos Beach\t142570\t1 Cinnabar Dr AMBERTON\t1.47\t-31.595373\t115.669585\n8\tAlkimos Vista\t142570\t1 Cinnabar Dr AMBERTON\t0.88\t-31.595373\t115.669585\n306\tAmberton\t142570\t1 Cinnabar Dr AMBERTON\t0.37\t-31.595373\t115.669585\n7\tAlkimos Beach\t9027926\tAdjacent to Alkimos Wastewater Treatment Plant ALKIMOS\t1.55\t-31.616446\t115.674735\n8\tAlkimos Vista\t9027926\tAdjacent to Alkimos Wastewater Treatment Plant ALKIMOS\t1.52\t-31.616446\t115.674735\n306\tAmberton\t10018262\tEglinton 169 Pipidinny Road EGLINTON\t2.05\t-31.58244\t115.68055\n275\tNLV Bridgewater\t9013411\tTelstra Site 43 Galbraith Loop FALCON\t0.9\t-32.566241\t115.683705\n784\tSeascapes\t9013411\tTelstra Site 43 Galbraith Loop FALCON\t1.05\t-32.566241\t115.683705\n255\tJindalee Beachside\t9009057\tWaste Water Pump Station Maritime Drive JINDALEE\t0.52\t-31.647813\t115.684161\n7\tAlkimos Beach\t10008468\tEglinton 23 Beonaddy Road EGLINTON\t1.77\t-31.58814\t115.68482\n306\tAmberton\t10008468\tEglinton 23 Beonaddy Road EGLINTON\t2.0\t-31.58814\t115.68482\n7\tAlkimos Beach\t10010777\tGeorgiou Site Office Alkimos Subdivision Marmion Avenue ALKIMOS\t0.8\t-31.608329\t115.688171\n275\tNLV Bridgewater\t54612\tLot 747 Alder Court MANDURAH\t1.23\t-32.549783\t115.689852\n784\tSeascapes\t54612\tLot 747 Alder Court MANDURAH\t1.78\t-32.549783\t115.689852\n255\tJindalee Beachside\t9009058\tHigh Level Pump Station Windjammer Parkway JINDALEE\t0.15\t-31.648176\t115.690557\n693\tQuinns Rock-Brighton Beachside\t9009058\tHigh Level Pump Station Windjammer Parkway JINDALEE\t0.74\t-31.648176\t115.690557\n32\tTrinity\t10013945\tBCF Butler 8 Butler Boulevard BUTLER\t0.96\t-31.63986\t115.69329\n32\tTrinity\t10016810\tAnaconda Butler, 1 Butler Boulevard BUTLER\t0.8\t-31.638324\t115.693713\n32\tTrinity\t10014844\tSupercheap Auto Butler 8 Butler Boulevard Butler\t0.94\t-31.63959\t115.694195\n77\tJindee\t602805\tLot 980 Marmion Avenue BUTLER\t0.07\t-31.645242\t115.694795\n77\tJindee\t9022503\tLight Pole 6 Jindalee Bvd JINDALEE\t0.27\t-31.647924\t115.69499\n255\tJindalee Beachside\t9022503\tLight Pole 6 Jindalee Bvd JINDALEE\t0.54\t-31.647924\t115.69499\n570\tJindalee-Jindalee Beach\t9022503\tLight Pole 6 Jindalee Bvd JINDALEE\t0.07\t-31.647924\t115.69499\n665\tJindalee-Jindalee Beach\t9022503\tLight Pole 6 Jindalee Bvd JINDALEE\t0.34\t-31.647924\t115.69499\n670\tJindalee-Eden Beach\t9022503\tLight Pole 6 Jindalee Bvd JINDALEE\t0.34\t-31.647924\t115.69499\n693\tQuinns Rock-Brighton Beachside\t10005049\tPrimary School James Cook Ave QUINNS ROCKS\t0.45\t-31.658097\t115.695312\n255\tJindalee Beachside\t9011562\tTelstra Site Cnr Marmion Rd and Jindalee Bvd JINDALEE\t0.57\t-31.648974\t115.695507\n570\tJindalee-Jindalee Beach\t9011562\tTelstra Site Cnr Marmion Rd and Jindalee Bvd JINDALEE\t0.15\t-31.648974\t115.695507\n665\tJindalee-Jindalee Beach\t9011562\tTelstra Site Cnr Marmion Rd and Jindalee Bvd JINDALEE\t0.26\t-31.648974\t115.695507\n670\tJindalee-Eden Beach\t9011562\tTelstra Site Cnr Marmion Rd and Jindalee Bvd JINDALEE\t0.26\t-31.648974\t115.695507\n693\tQuinns Rock-Brighton Beachside\t9011562\tTelstra Site Cnr Marmion Rd and Jindalee Bvd JINDALEE\t0.65\t-31.648974\t115.695507\n77\tJindee\t9013867\tVividwireless Light Pole LOT 1378, Marmion Avenue JINDALEE\t0.35\t-31.648431\t115.695673\n255\tJindalee Beachside\t9013867\tVividwireless Light Pole LOT 1378, Marmion Avenue JINDALEE\t0.59\t-31.648431\t115.695673\n570\tJindalee-Jindalee Beach\t9013867\tVividwireless Light Pole LOT 1378, Marmion Avenue JINDALEE\t0.13\t-31.648431\t115.695673\n665\tJindalee-Jindalee Beach\t9013867\tVividwireless Light Pole LOT 1378, Marmion Avenue JINDALEE\t0.31\t-31.648431\t115.695673\n670\tJindalee-Eden Beach\t9013867\tVividwireless Light Pole LOT 1378, Marmion Avenue JINDALEE\t0.32\t-31.648431\t115.695673\n693\tQuinns Rock-Brighton Beachside\t9013867\tVividwireless Light Pole LOT 1378, Marmion Avenue JINDALEE\t0.72\t-31.648431\t115.695673\n77\tJindee\t9013192\tShopping Centre Light Pole 6 Jindalee Boulevard JINDALEE\t0.33\t-31.648141\t115.695915\n570\tJindalee-Jindalee Beach\t9013192\tShopping Centre Light Pole 6 Jindalee Boulevard JINDALEE\t0.15\t-31.648141\t115.695915\n665\tJindalee-Jindalee Beach\t9013192\tShopping Centre Light Pole 6 Jindalee Boulevard JINDALEE\t0.35\t-31.648141\t115.695915\n670\tJindalee-Eden Beach\t9013192\tShopping Centre Light Pole 6 Jindalee Boulevard JINDALEE\t0.36\t-31.648141\t115.695915\n77\tJindee\t139914\t12 Barmouth Loop BUTLER\t0.37\t-31.642739\t115.696138\n32\tTrinity\t10001568\tAldi Butler 77 Butler Boulevard BUTLER\t0.84\t-31.637918\t115.696371\n32\tTrinity\t9022982\tDGPS reference site Lot 817 Potton Rise ALKIMOS\t1.07\t-31.622529\t115.696982\n570\tJindalee-Jindalee Beach\t603368\tCnr Kingsbridge Boulevard and Marmion Avenue BUTLER\t0.29\t-31.64928\t115.697059\n665\tJindalee-Jindalee Beach\t603368\tCnr Kingsbridge Boulevard and Marmion Avenue BUTLER\t0.35\t-31.64928\t115.697059\n670\tJindalee-Eden Beach\t603368\tCnr Kingsbridge Boulevard and Marmion Avenue BUTLER\t0.36\t-31.64928\t115.697059\n693\tQuinns Rock-Brighton Beachside\t603368\tCnr Kingsbridge Boulevard and Marmion Avenue BUTLER\t0.69\t-31.64928\t115.697059\n264\tHalls Head-Port Mandurah\t601113\tTelstra/Vodafone Site WAWA Oaklands Ave HALLS HEAD\t0.73\t-32.538071\t115.698158\n576\tHalls Head-Port Mandurah\t601113\tTelstra/Vodafone Site WAWA Oaklands Ave HALLS HEAD\t0.94\t-32.538071\t115.698158\n264\tHalls Head-Port Mandurah\t134667\tOptus Site Halls Head Oaklands Ave HALLS HEAD\t0.71\t-32.537964\t115.698287\n576\tHalls Head-Port Mandurah\t134667\tOptus Site Halls Head Oaklands Ave HALLS HEAD\t0.92\t-32.537964\t115.698287\n576\tHalls Head-Port Mandurah\t600537\tWater Tower Halls Head MANDURAH\t0.94\t-32.527066\t115.699871\n275\tNLV Bridgewater\t602678\tShopping Centre 18 Guava Way HALLS HEAD\t1.73\t-32.547594\t115.700533\n784\tSeascapes\t602678\tShopping Centre 18 Guava Way HALLS HEAD\t2.74\t-32.547594\t115.700533\n264\tHalls Head-Port Mandurah\t480777\tMandurah Country Club 16 Marsh Place HALLS HEAD\t0.49\t-32.53817\t115.70067\n316\tHalls Head-Port Mandurah\t480777\tMandurah Country Club 16 Marsh Place HALLS HEAD\t0.89\t-32.53817\t115.70067\n576\tHalls Head-Port Mandurah\t480777\tMandurah Country Club 16 Marsh Place HALLS HEAD\t0.76\t-32.53817\t115.70067\n264\tHalls Head-Port Mandurah\t10001560\tAldi Halls Head Halls Head Shopping Centre 14 Guava Way HALLS HEAD\t1.04\t-32.54772\t115.702547\n339\tHalls Head-Port Mandurah\t10001560\tAldi Halls Head Halls Head Shopping Centre 14 Guava Way HALLS HEAD\t0.7\t-32.54772\t115.702547\n784\tSeascapes\t10001560\tAldi Halls Head Halls Head Shopping Centre 14 Guava Way HALLS HEAD\t2.9\t-32.54772\t115.702547\n275\tNLV Bridgewater\t9009340\tVodafone Site Centro Halls Head Sign Old Coast Road HALLS HEAD\t1.64\t-32.550142\t115.702855\n339\tHalls Head-Port Mandurah\t9009340\tVodafone Site Centro Halls Head Sign Old Coast Road HALLS HEAD\t0.84\t-32.550142\t115.702855\n784\tSeascapes\t9009340\tVodafone Site Centro Halls Head Sign Old Coast Road HALLS HEAD\t2.81\t-32.550142\t115.702855\n275\tNLV Bridgewater\t10000256\tHalls Head Central Shopping Centre 14 Guava Way Halls Head\t1.79\t-32.548485\t115.703059\n339\tHalls Head-Port Mandurah\t10000256\tHalls Head Central Shopping Centre 14 Guava Way Halls Head\t0.7\t-32.548485\t115.703059\n749\tHalls Head-Port Mandurah\t10000256\tHalls Head Central Shopping Centre 14 Guava Way Halls Head\t1.13\t-32.548485\t115.703059\n2\tBrighton\t9014890\tTelstra Site 10 Hughie Edwards Dr MERRIWA\t0.39\t-31.659905\t115.706697\n2\tBrighton\t138207\t15 Kirk Cove MERRIWA WA\t0.8\t-31.663815\t115.706961\n2\tBrighton\t9013283\tChilli Peppers Cnr Hughie Edwards Drive and Marmion Ave MERRIWA\t0.38\t-31.659598\t115.707108\n264\tHalls Head-Port Mandurah\t601262\tParkland Villas Retirement Village 2 Hungerford Road HALLS HEAD\t0.57\t-32.543479\t115.70826\n316\tHalls Head-Port Mandurah\t601262\tParkland Villas Retirement Village 2 Hungerford Road HALLS HEAD\t0.9\t-32.543479\t115.70826\n339\tHalls Head-Port Mandurah\t601262\tParkland Villas Retirement Village 2 Hungerford Road HALLS HEAD\t0.15\t-32.543479\t115.70826\n749\tHalls Head-Port Mandurah\t601262\tParkland Villas Retirement Village 2 Hungerford Road HALLS HEAD\t0.52\t-32.543479\t115.70826\n2\tBrighton\t600625\tHughie Edwards Drive MERRIWA\t0.4\t-31.656763\t115.708968\n2\tBrighton\t9028046\tButler College 15 McCormack Boulevard BUTLER\t0.69\t-31.652149\t115.709474\n316\tHalls Head-Port Mandurah\t600704\tBack of Peninsula Caravan Park off Ormsby Terrace MANDURAH\t0.99\t-32.527983\t115.715382\n576\tHalls Head-Port Mandurah\t600704\tBack of Peninsula Caravan Park off Ormsby Terrace MANDURAH\t1.03\t-32.527983\t115.715382\n343\tMillbridge\t139934\tApproximately 850m East of Old Coast Road EATON\t1.41\t-33.296177\t115.716402\n756\tMillbridge\t139934\tApproximately 850m East of Old Coast Road EATON\t1.41\t-33.296177\t115.716402\n536\tAustralind-Galway Green\t9009053\tBore 1/97 Elinor Bell Road AUSTRALIND\t1.54\t-33.266677\t115.716512\n343\tMillbridge\t9024240\tWA Watercorp Tank Eastwell Road AUSTRALIND\t1.43\t-33.294999\t115.716789\n316\tHalls Head-Port Mandurah\t9001862\t2 - 20 Ormsby Terrace MANDURAH\t1.0\t-32.528819\t115.716829\n361\tEaton-Millbridge\t9022532\tShire of Dardanup 1 Council Drive EATON\t1.24\t-33.317375\t115.717592\n424\tMillbridge\t9022532\tShire of Dardanup 1 Council Drive EATON\t1.54\t-33.317375\t115.717592\n696\tMillbridge\t9022532\tShire of Dardanup 1 Council Drive EATON\t1.45\t-33.317375\t115.717592\n443\tBurns Beach\t9021570\tJonathan Morrell - LPON Site 1 Cabbots Lane BURNS BEACH\t0.25\t-31.723218\t115.718395\n760\tBurns Beach\t9021570\tJonathan Morrell - LPON Site 1 Cabbots Lane BURNS BEACH\t1.06\t-31.723218\t115.718395\n594\tClarkson-Somerly\t9018006\tCrane Controller Corner Ocean Keys Boulevard and Key Largo Drive CLARKSON\t0.51\t-31.690194\t115.718634\n24\tBrighton - Ridgewood\t9003491\t85 Hester Ave MERRIWA\t0.77\t-31.67191\t115.718884\n321\tBurns Beach\t9009736\tTelstra RBS Site 8790 Ocean Pde BURNS BEACH\t0.56\t-31.730934\t115.719596\n443\tBurns Beach\t9009736\tTelstra RBS Site 8790 Ocean Pde BURNS BEACH\t0.77\t-31.730934\t115.719596\n463\tBurns Beach\t9009736\tTelstra RBS Site 8790 Ocean Pde BURNS BEACH\t0.74\t-31.730934\t115.719596\n603\tBurns Beach\t9009736\tTelstra RBS Site 8790 Ocean Pde BURNS BEACH\t0.56\t-31.730934\t115.719596\n594\tClarkson-Somerly\t10014842\tSupercheap Auto Clarkson 61 Key Largo Drive Clarkson\t0.49\t-31.692794\t115.719679\n24\tBrighton - Ridgewood\t602927\tHinchinbrook Avenue RIDGEWOOD\t1.33\t-31.658131\t115.720349\n425\tDudley Park-Mariner\u0027s Cove\t602849\t7 Leslie Street MANDURAH\t1.64\t-32.53694\t115.721579\n533\tDudley Park-Mariner\u0027s Cove\t602849\t7 Leslie Street MANDURAH\t1.53\t-32.53694\t115.721579\n749\tHalls Head-Port Mandurah\t602849\t7 Leslie Street MANDURAH\t1.06\t-32.53694\t115.721579\n321\tBurns Beach\t10016228\tOptus site lightpole Second Ave Cnr Ocean Pde BURNS BEACH\t0.33\t-31.73025\t115.72182\n443\tBurns Beach\t10016228\tOptus site lightpole Second Ave Cnr Ocean Pde BURNS BEACH\t0.82\t-31.73025\t115.72182\n463\tBurns Beach\t10016228\tOptus site lightpole Second Ave Cnr Ocean Pde BURNS BEACH\t0.51\t-31.73025\t115.72182\n603\tBurns Beach\t10016228\tOptus site lightpole Second Ave Cnr Ocean Pde BURNS BEACH\t0.33\t-31.73025\t115.72182\n797\tIluka\t10016228\tOptus site lightpole Second Ave Cnr Ocean Pde BURNS BEACH\t0.75\t-31.73025\t115.72182\n533\tDudley Park-Mariner\u0027s Cove\t603318\tUnit 12 No 43 Pinjarra Road MANDURAH\t1.67\t-32.535501\t115.721952\n321\tBurns Beach\t138583\t15 Second Ave BURNS BEACH\t0.27\t-31.728921\t115.722154\n443\tBurns Beach\t138583\t15 Second Ave BURNS BEACH\t0.73\t-31.728921\t115.722154\n463\tBurns Beach\t138583\t15 Second Ave BURNS BEACH\t0.45\t-31.728921\t115.722154\n603\tBurns Beach\t138583\t15 Second Ave BURNS BEACH\t0.27\t-31.728921\t115.722154\n797\tIluka\t138583\t15 Second Ave BURNS BEACH\t0.68\t-31.728921\t115.722154\n425\tDudley Park-Mariner\u0027s Cove\t49194\tLeslie St MANDURAH\t1.57\t-32.537397\t115.72219\n533\tDudley Park-Mariner\u0027s Cove\t49194\tLeslie St MANDURAH\t1.46\t-32.537397\t115.72219\n538\tDudley Park-Mariner\u0027s Cove\t49194\tLeslie St MANDURAH\t1.73\t-32.537397\t115.72219\n749\tHalls Head-Port Mandurah\t49194\tLeslie St MANDURAH\t1.06\t-32.537397\t115.72219\n594\tClarkson-Somerly\t9028348\t22 Lower Keys Dr CLARKSON\t0.34\t-31.693414\t115.723388\n782\tAustralind-Treendale\t601132\tGSM site WAWA Milligan Street AUSTRALIND\t1.48\t-33.277616\t115.723503\n536\tAustralind-Galway Green\t9004006\tWater Treatment Plant Old Coast Road AUSTRALIND\t0.45\t-33.258949\t115.72371\n553\tAustralind-Galway Green\t9004006\tWater Treatment Plant Old Coast Road AUSTRALIND\t0.54\t-33.258949\t115.72371\n361\tEaton-Millbridge\t10002363\tLPON Bethanie Fields 111 Eaton Drive EATON\t0.59\t-33.31553\t115.724472\n424\tMillbridge\t10002363\tLPON Bethanie Fields 111 Eaton Drive EATON\t0.97\t-33.31553\t115.724472\n696\tMillbridge\t10002363\tLPON Bethanie Fields 111 Eaton Drive EATON\t0.79\t-33.31553\t115.724472\n536\tAustralind-Galway Green\t9004316\tWater Bore 3/92 Old Coast Road AUSTRALIND\t0.75\t-33.249545\t115.724824\n553\tAustralind-Galway Green\t9004316\tWater Bore 3/92 Old Coast Road AUSTRALIND\t1.08\t-33.249545\t115.724824\n425\tDudley Park-Mariner\u0027s Cove\t27540\tPinjarra Road MANDURAH\t1.72\t-32.534763\t115.725731\n533\tDudley Park-Mariner\u0027s Cove\t27540\tPinjarra Road MANDURAH\t1.68\t-32.534763\t115.725731\n357\tMillbridge\t10000010\tLPON19 Glen Huon Primary School 9 Monash Bvd EATON\t1.28\t-33.315074\t115.726263\n361\tEaton-Millbridge\t10000010\tLPON19 Glen Huon Primary School 9 Monash Bvd EATON\t0.43\t-33.315074\t115.726263\n424\tMillbridge\t10000010\tLPON19 Glen Huon Primary School 9 Monash Bvd EATON\t0.86\t-33.315074\t115.726263\n696\tMillbridge\t10000010\tLPON19 Glen Huon Primary School 9 Monash Bvd EATON\t0.61\t-33.315074\t115.726263\n756\tMillbridge\t10000010\tLPON19 Glen Huon Primary School 9 Monash Bvd EATON\t1.44\t-33.315074\t115.726263\n24\tBrighton - Ridgewood\t31781\tCommunity High School Walyunga Boulevard CLARKSON\t0.93\t-31.677316\t115.726311\n551\tClarkson-Somerly\t31781\tCommunity High School Walyunga Boulevard CLARKSON\t0.91\t-31.677316\t115.726311\n321\tBurns Beach\t10016227\tOptus site lightpole 43 O\u0027Mara Blvd ILUKA\t0.68\t-31.73441\t115.72842\n332\tIluka\t10016227\tOptus site lightpole 43 O\u0027Mara Blvd ILUKA\t0.52\t-31.73441\t115.72842\n370\tIluka\t10016227\tOptus site lightpole 43 O\u0027Mara Blvd ILUKA\t0.41\t-31.73441\t115.72842\n452\tIluka\t10016227\tOptus site lightpole 43 O\u0027Mara Blvd ILUKA\t0.56\t-31.73441\t115.72842\n463\tBurns Beach\t10016227\tOptus site lightpole 43 O\u0027Mara Blvd ILUKA\t0.66\t-31.73441\t115.72842\n603\tBurns Beach\t10016227\tOptus site lightpole 43 O\u0027Mara Blvd ILUKA\t0.69\t-31.73441\t115.72842\n796\tIluka\t10016227\tOptus site lightpole 43 O\u0027Mara Blvd ILUKA\t0.53\t-31.73441\t115.72842\n797\tIluka\t10016227\tOptus site lightpole 43 O\u0027Mara Blvd ILUKA\t0.7\t-31.73441\t115.72842\n332\tIluka\t10016229\tOptus site lightpole 45 Romano Cres ILUKA\t0.17\t-31.73766\t115.72849\n370\tIluka\t10016229\tOptus site lightpole 45 Romano Cres ILUKA\t0.44\t-31.73766\t115.72849\n452\tIluka\t10016229\tOptus site lightpole 45 Romano Cres ILUKA\t0.39\t-31.73766\t115.72849\n459\tIluka\t10016229\tOptus site lightpole 45 Romano Cres ILUKA\t0.66\t-31.73766\t115.72849\n796\tIluka\t10016229\tOptus site lightpole 45 Romano Cres ILUKA\t0.57\t-31.73766\t115.72849\n24\tBrighton - Ridgewood\t10013130\tNowerup Depot 3350L Mitchell Freeway NOWERGUP\t1.02\t-31.660037\t115.728761\n343\tMillbridge\t9019610\tSE Millbridge Lot 141 Gascoyne Circle MILLBRIDGE\t1.0\t-33.309927\t115.730046\n357\tMillbridge\t9019610\tSE Millbridge Lot 141 Gascoyne Circle MILLBRIDGE\t0.66\t-33.309927\t115.730046\n361\tEaton-Millbridge\t9019610\tSE Millbridge Lot 141 Gascoyne Circle MILLBRIDGE\t0.26\t-33.309927\t115.730046\n424\tMillbridge\t9019610\tSE Millbridge Lot 141 Gascoyne Circle MILLBRIDGE\t0.23\t-33.309927\t115.730046\n696\tMillbridge\t9019610\tSE Millbridge Lot 141 Gascoyne Circle MILLBRIDGE\t0.52\t-33.309927\t115.730046\n756\tMillbridge\t9019610\tSE Millbridge Lot 141 Gascoyne Circle MILLBRIDGE\t0.84\t-33.309927\t115.730046\n24\tBrighton - Ridgewood\t404308\tPTA Nowergup Depot Comms Bldg off Quinns Rd NOWERGUP\t0.42\t-31.667597\t115.730452\n443\tBurns Beach\t10016226\tOptus site lightpole Grand Ocean Entrance Cnr Marmion Ave BURNS BEACH\t1.43\t-31.72162\t115.73097\n760\tBurns Beach\t10016226\tOptus site lightpole Grand Ocean Entrance Cnr Marmion Ave BURNS BEACH\t0.35\t-31.72162\t115.73097\n321\tBurns Beach\t10016225\tOptus site lightpole Delgado Pde Cnr Burns Beach Rd ILUKA\t0.6\t-31.72796\t115.73129\n463\tBurns Beach\t10016225\tOptus site lightpole Delgado Pde Cnr Burns Beach Rd ILUKA\t0.42\t-31.72796\t115.73129\n603\tBurns Beach\t10016225\tOptus site lightpole Delgado Pde Cnr Burns Beach Rd ILUKA\t0.6\t-31.72796\t115.73129\n760\tBurns Beach\t10016225\tOptus site lightpole Delgado Pde Cnr Burns Beach Rd ILUKA\t1.0\t-31.72796\t115.73129\n797\tIluka\t10016225\tOptus site lightpole Delgado Pde Cnr Burns Beach Rd ILUKA\t0.19\t-31.72796\t115.73129\n536\tAustralind-Galway Green\t480823\tAged Care Home Lot 7000 Eaton Drive EATON\t0.65\t-33.260242\t115.731947\n553\tAustralind-Galway Green\t480823\tAged Care Home Lot 7000 Eaton Drive EATON\t0.3\t-33.260242\t115.731947\n536\tAustralind-Galway Green\t10001587\tGalwey Green MATV Headend 41 Leschenault Parade Australind\t0.49\t-33.256685\t115.732253\n553\tAustralind-Galway Green\t10001587\tGalwey Green MATV Headend 41 Leschenault Parade Australind\t0.32\t-33.256685\t115.732253\n343\tMillbridge\t10000011\tLPON20 45 Millbridge Bvd MILLBRIDGE\t0.82\t-33.307414\t115.734614\n357\tMillbridge\t10000011\tLPON20 45 Millbridge Bvd MILLBRIDGE\t0.16\t-33.307414\t115.734614\n361\tEaton-Millbridge\t10000011\tLPON20 45 Millbridge Bvd MILLBRIDGE\t0.72\t-33.307414\t115.734614\n424\tMillbridge\t10000011\tLPON20 45 Millbridge Bvd MILLBRIDGE\t0.47\t-33.307414\t115.734614\n696\tMillbridge\t10000011\tLPON20 45 Millbridge Bvd MILLBRIDGE\t0.76\t-33.307414\t115.734614\n756\tMillbridge\t10000011\tLPON20 45 Millbridge Bvd MILLBRIDGE\t0.72\t-33.307414\t115.734614\n711\tTreendale Grand Entrance\t9028221\tRecreation Centre Leisure Drive AUSTRALIND\t1.47\t-33.272309\t115.734761\n760\tBurns Beach\t602848\t71 Kinross Drive KINROSS\t0.58\t-31.718988\t115.734764\n711\tTreendale Grand Entrance\t9019611\tSE Treendale Lot 147 Azurite Drive EATON\t0.76\t-33.282248\t115.735366\n782\tAustralind-Treendale\t9019611\tSE Treendale Lot 147 Azurite Drive EATON\t0.41\t-33.282248\t115.735366\n551\tClarkson-Somerly\t9024026\tGateway Project DGPS Site Hall Road CLARKSON\t0.29\t-31.681228\t115.736667\n551\tClarkson-Somerly\t10000059\tConstruction site Mitchell Freeway extension Clarkson\t0.51\t-31.686222\t115.736681\n551\tClarkson-Somerly\t9024803\t222 Hester Avenue CLARKSON\t0.38\t-31.680075\t115.736981\n332\tIluka\t9011630\tBroadcast Engineering Site 34 Shenandoah Mews CURRAMBINE\t0.95\t-31.734208\t115.737555\n370\tIluka\t9011630\tBroadcast Engineering Site 34 Shenandoah Mews CURRAMBINE\t0.51\t-31.734208\t115.737555\n452\tIluka\t9011630\tBroadcast Engineering Site 34 Shenandoah Mews CURRAMBINE\t0.63\t-31.734208\t115.737555\n796\tIluka\t9011630\tBroadcast Engineering Site 34 Shenandoah Mews CURRAMBINE\t0.37\t-31.734208\t115.737555\n332\tIluka\t502127\tHutchison Site Lot 1020 Marmion Ave CURRAMBINE\t0.84\t-31.737396\t115.737967\n370\tIluka\t502127\tHutchison Site Lot 1020 Marmion Ave CURRAMBINE\t0.55\t-31.737396\t115.737967\n452\tIluka\t502127\tHutchison Site Lot 1020 Marmion Ave CURRAMBINE\t0.52\t-31.737396\t115.737967\n459\tIluka\t502127\tHutchison Site Lot 1020 Marmion Ave CURRAMBINE\t0.53\t-31.737396\t115.737967\n796\tIluka\t502127\tHutchison Site Lot 1020 Marmion Ave CURRAMBINE\t0.44\t-31.737396\t115.737967\n551\tClarkson-Somerly\t9022389\tPublic Transport Authority Railway Station CLARKSON\t1.01\t-31.690712\t115.738091\n363\tSecret Harbour\t138113\tBeachfront 550 Metres W of 30 Pulsano Mews SECRET HARBOUR\t0.73\t-32.395003\t115.739001\n674\tSecret Harbour\t138113\tBeachfront 550 Metres W of 30 Pulsano Mews SECRET HARBOUR\t0.93\t-32.395003\t115.739001\n332\tIluka\t9007795\tTelstra Site 1244 Marmion Ave CURRAMBINE\t0.98\t-31.740754\t115.739477\n370\tIluka\t9007795\tTelstra Site 1244 Marmion Ave CURRAMBINE\t0.87\t-31.740754\t115.739477\n452\tIluka\t9007795\tTelstra Site 1244 Marmion Ave CURRAMBINE\t0.72\t-31.740754\t115.739477\n459\tIluka\t9007795\tTelstra Site 1244 Marmion Ave CURRAMBINE\t0.5\t-31.740754\t115.739477\n796\tIluka\t9007795\tTelstra Site 1244 Marmion Ave CURRAMBINE\t0.79\t-31.740754\t115.739477\n459\tIluka\t9003209\tConnolly Shenton Ave and Marmion Ave CURRAMBINE WA 6028\t0.51\t-31.740733\t115.739653\n343\tMillbridge\t10005431\tTelstra Site 382 Clifton Road Waterloo\t1.2\t-33.2999\t115.74331\n357\tMillbridge\t10005431\tTelstra Site 382 Clifton Road Waterloo\t1.04\t-33.2999\t115.74331\n756\tMillbridge\t10005431\tTelstra Site 382 Clifton Road Waterloo\t1.3\t-33.2999\t115.74331\n711\tTreendale Grand Entrance\t9023400\tMcDonalds Grand Entrance \u0026 Constellation Drive TREENDALE\t0.08\t-33.282566\t115.743775\n782\tAustralind-Treendale\t9023400\tMcDonalds Grand Entrance \u0026 Constellation Drive TREENDALE\t0.81\t-33.282566\t115.743775\n538\tDudley Park-Mariner\u0027s Cove\t601984\tCourt House 333 Pinjarra Road MANDURAH\t1.79\t-32.537805\t115.74378\n538\tDudley Park-Mariner\u0027s Cove\t602633\tPolice Complex Cnr Mandurah Bypass \u0026 Pinjarra Rds MANDURAH\t1.73\t-32.538454\t115.743792\n553\tAustralind-Galway Green\t142004\tLPON Site 87 Macquarie Drive AUSTRALIND\t1.49\t-33.259756\t115.745416\n425\tDudley Park-Mariner\u0027s Cove\t10000730\tTelstra Exchange 12 Broun Road Coodanup Mandurah\t1.69\t-32.55666\t115.746099\n538\tDudley Park-Mariner\u0027s Cove\t10000730\tTelstra Exchange 12 Broun Road Coodanup Mandurah\t1.47\t-32.55666\t115.746099\n222\tSecret Harbour\t10015691\tSecret Harbour Surf Club Secret Harbour Boulevard Secret Harbour\t0.29\t-32.409003\t115.746857\n331\tSecret Harbour\t10015691\tSecret Harbour Surf Club Secret Harbour Boulevard Secret Harbour\t0.89\t-32.409003\t115.746857\n363\tSecret Harbour\t10015691\tSecret Harbour Surf Club Secret Harbour Boulevard Secret Harbour\t1.41\t-32.409003\t115.746857\n416\tGolden Bay\t10015691\tSecret Harbour Surf Club Secret Harbour Boulevard Secret Harbour\t1.52\t-32.409003\t115.746857\n625\tSecret Harbour\t10015691\tSecret Harbour Surf Club Secret Harbour Boulevard Secret Harbour\t0.97\t-32.409003\t115.746857\n674\tSecret Harbour\t10015691\tSecret Harbour Surf Club Secret Harbour Boulevard Secret Harbour\t1.22\t-32.409003\t115.746857\n357\tMillbridge\t305841\tLot15 Clifton Road EATON\t1.17\t-33.303472\t115.748077\n608\tMadora Bay\t9004029\tOptus Site Karinga Road SAN REMO\t1.19\t-32.484877\t115.748465\n794\tMadora Bay\t9004029\tOptus Site Karinga Road SAN REMO\t0.52\t-32.484877\t115.748465\n794\tMadora Bay\t9016975\tOptus Monopole Meadow Springs Shopping Centre 25 Meadow Springs Drive SILVER SANDS\t1.19\t-32.492582\t115.748926\n711\tTreendale Grand Entrance\t9014141\tMJB Industries Lot 102 Ditchingham Place AUSTRALIND\t0.55\t-33.281893\t115.749128\n782\tAustralind-Treendale\t9014141\tMJB Industries Lot 102 Ditchingham Place AUSTRALIND\t1.3\t-33.281893\t115.749128\n711\tTreendale Grand Entrance\t27764\tLot 13 Sweny Drive AUSTRALIND\t0.72\t-33.278888\t115.749169\n782\tAustralind-Treendale\t27764\tLot 13 Sweny Drive AUSTRALIND\t1.45\t-33.278888\t115.749169\n500\tCockburn Coast\t601912\t45 Bennett Avenue HAMILTON HILL\t0.4\t-32.085568\t115.756959\n222\tSecret Harbour\t142005\tLPON Site 7 Oasis Drive SECRET HARBOUR\t0.88\t-32.407712\t115.758017\n331\tSecret Harbour\t142005\tLPON Site 7 Oasis Drive SECRET HARBOUR\t0.96\t-32.407712\t115.758017\n416\tGolden Bay\t142005\tLPON Site 7 Oasis Drive SECRET HARBOUR\t1.44\t-32.407712\t115.758017\n441\tSecret Harbour\t142005\tLPON Site 7 Oasis Drive SECRET HARBOUR\t1.35\t-32.407712\t115.758017\n464\tSecret Harbour\t142005\tLPON Site 7 Oasis Drive SECRET HARBOUR\t1.37\t-32.407712\t115.758017\n482\tSecret Harbour\t142005\tLPON Site 7 Oasis Drive SECRET HARBOUR\t1.05\t-32.407712\t115.758017\n569\tSecret Harbour\t142005\tLPON Site 7 Oasis Drive SECRET HARBOUR\t0.27\t-32.407712\t115.758017\n581\tSecret Harbour\t142005\tLPON Site 7 Oasis Drive SECRET HARBOUR\t0.77\t-32.407712\t115.758017\n600\tSecret Harbour\t142005\tLPON Site 7 Oasis Drive SECRET HARBOUR\t0.85\t-32.407712\t115.758017\n625\tSecret Harbour\t142005\tLPON Site 7 Oasis Drive SECRET HARBOUR\t0.93\t-32.407712\t115.758017\n674\tSecret Harbour\t142005\tLPON Site 7 Oasis Drive SECRET HARBOUR\t1.41\t-32.407712\t115.758017\n700\tSecret Harbour\t142005\tLPON Site 7 Oasis Drive SECRET HARBOUR\t1.27\t-32.407712\t115.758017\n810\tGolden Bay\t142005\tLPON Site 7 Oasis Drive SECRET HARBOUR\t1.25\t-32.407712\t115.758017\n222\tSecret Harbour\t10011722\t Secret Harbour Central 420 Secret Harbour Blvd SECRET HARBOUR\t0.89\t-32.40759\t115.75817\n331\tSecret Harbour\t10011722\t Secret Harbour Central 420 Secret Harbour Blvd SECRET HARBOUR\t0.96\t-32.40759\t115.75817\n363\tSecret Harbour\t10011722\t Secret Harbour Central 420 Secret Harbour Blvd SECRET HARBOUR\t1.66\t-32.40759\t115.75817\n416\tGolden Bay\t10011722\t Secret Harbour Central 420 Secret Harbour Blvd SECRET HARBOUR\t1.46\t-32.40759\t115.75817\n441\tSecret Harbour\t10011722\t Secret Harbour Central 420 Secret Harbour Blvd SECRET HARBOUR\t1.34\t-32.40759\t115.75817\n464\tSecret Harbour\t10011722\t Secret Harbour Central 420 Secret Harbour Blvd SECRET HARBOUR\t1.36\t-32.40759\t115.75817\n482\tSecret Harbour\t10011722\t Secret Harbour Central 420 Secret Harbour Blvd SECRET HARBOUR\t1.04\t-32.40759\t115.75817\n530\tSecret Harbour\t10011722\t Secret Harbour Central 420 Secret Harbour Blvd SECRET HARBOUR\t1.09\t-32.40759\t115.75817\n569\tSecret Harbour\t10011722\t Secret Harbour Central 420 Secret Harbour Blvd SECRET HARBOUR\t0.29\t-32.40759\t115.75817\n581\tSecret Harbour\t10011722\t Secret Harbour Central 420 Secret Harbour Blvd SECRET HARBOUR\t0.75\t-32.40759\t115.75817\n600\tSecret Harbour\t10011722\t Secret Harbour Central 420 Secret Harbour Blvd SECRET HARBOUR\t0.84\t-32.40759\t115.75817\n625\tSecret Harbour\t10011722\t Secret Harbour Central 420 Secret Harbour Blvd SECRET HARBOUR\t0.95\t-32.40759\t115.75817\n674\tSecret Harbour\t10011722\t Secret Harbour Central 420 Secret Harbour Blvd SECRET HARBOUR\t1.41\t-32.40759\t115.75817\n700\tSecret Harbour\t10011722\t Secret Harbour Central 420 Secret Harbour Blvd SECRET HARBOUR\t1.27\t-32.40759\t115.75817\n717\tSecret Harbour\t10011722\t Secret Harbour Central 420 Secret Harbour Blvd SECRET HARBOUR\t0.72\t-32.40759\t115.75817\n810\tGolden Bay\t10011722\t Secret Harbour Central 420 Secret Harbour Blvd SECRET HARBOUR\t1.26\t-32.40759\t115.75817\n222\tSecret Harbour\t9017007\tTelstra Site Shopping Centre Lot 2003, 420 Secret Harbour Bvd SECRET HARBOUR\t0.91\t-32.407611\t115.758356\n331\tSecret Harbour\t9017007\tTelstra Site Shopping Centre Lot 2003, 420 Secret Harbour Bvd SECRET HARBOUR\t0.97\t-32.407611\t115.758356\n416\tGolden Bay\t9017007\tTelstra Site Shopping Centre Lot 2003, 420 Secret Harbour Bvd SECRET HARBOUR\t1.46\t-32.407611\t115.758356\n428\tSecret Harbour-Anstey Park\t9017007\tTelstra Site Shopping Centre Lot 2003, 420 Secret Harbour Bvd SECRET HARBOUR\t1.17\t-32.407611\t115.758356\n441\tSecret Harbour\t9017007\tTelstra Site Shopping Centre Lot 2003, 420 Secret Harbour Bvd SECRET HARBOUR\t1.35\t-32.407611\t115.758356\n464\tSecret Harbour\t9017007\tTelstra Site Shopping Centre Lot 2003, 420 Secret Harbour Bvd SECRET HARBOUR\t1.37\t-32.407611\t115.758356\n482\tSecret Harbour\t9017007\tTelstra Site Shopping Centre Lot 2003, 420 Secret Harbour Bvd SECRET HARBOUR\t1.02\t-32.407611\t115.758356\n530\tSecret Harbour\t9017007\tTelstra Site Shopping Centre Lot 2003, 420 Secret Harbour Bvd SECRET HARBOUR\t1.07\t-32.407611\t115.758356\n569\tSecret Harbour\t9017007\tTelstra Site Shopping Centre Lot 2003, 420 Secret Harbour Bvd SECRET HARBOUR\t0.29\t-32.407611\t115.758356\n581\tSecret Harbour\t9017007\tTelstra Site Shopping Centre Lot 2003, 420 Secret Harbour Bvd SECRET HARBOUR\t0.76\t-32.407611\t115.758356\n600\tSecret Harbour\t9017007\tTelstra Site Shopping Centre Lot 2003, 420 Secret Harbour Bvd SECRET HARBOUR\t0.84\t-32.407611\t115.758356\n625\tSecret Harbour\t9017007\tTelstra Site Shopping Centre Lot 2003, 420 Secret Harbour Bvd SECRET HARBOUR\t0.96\t-32.407611\t115.758356\n700\tSecret Harbour\t9017007\tTelstra Site Shopping Centre Lot 2003, 420 Secret Harbour Bvd SECRET HARBOUR\t1.25\t-32.407611\t115.758356\n717\tSecret Harbour\t9017007\tTelstra Site Shopping Centre Lot 2003, 420 Secret Harbour Bvd SECRET HARBOUR\t0.71\t-32.407611\t115.758356\n810\tGolden Bay\t9017007\tTelstra Site Shopping Centre Lot 2003, 420 Secret Harbour Bvd SECRET HARBOUR\t1.25\t-32.407611\t115.758356\n500\tCockburn Coast\t10014711\t70 Bennett Avenue NORTH COOGEE\t0.32\t-32.088443\t115.758773\n552\tLot 1002 Penson Street, Singleton\t10005537\t5 Barrine road Lakelands\t2.0\t-32.470572\t115.759387\n599\tLakelands\t10005537\t5 Barrine road Lakelands\t0.94\t-32.470572\t115.759387\n608\tMadora Bay\t10005537\t5 Barrine road Lakelands\t0.71\t-32.470572\t115.759387\n685\tLakelands\t10005537\t5 Barrine road Lakelands\t1.26\t-32.470572\t115.759387\n331\tSecret Harbour\t9011161\tBroadcast Engineering Site 7 Bari Lane SECRET HARBOUR\t0.84\t-32.403126\t115.759451\n363\tSecret Harbour\t9011161\tBroadcast Engineering Site 7 Bari Lane SECRET HARBOUR\t1.42\t-32.403126\t115.759451\n428\tSecret Harbour-Anstey Park\t9011161\tBroadcast Engineering Site 7 Bari Lane SECRET HARBOUR\t0.9\t-32.403126\t115.759451\n441\tSecret Harbour\t9011161\tBroadcast Engineering Site 7 Bari Lane SECRET HARBOUR\t0.89\t-32.403126\t115.759451\n464\tSecret Harbour\t9011161\tBroadcast Engineering Site 7 Bari Lane SECRET HARBOUR\t0.91\t-32.403126\t115.759451\n555\tSecret Harbour-Anstey Park\t9011161\tBroadcast Engineering Site 7 Bari Lane SECRET HARBOUR\t1.03\t-32.403126\t115.759451\n569\tSecret Harbour\t9011161\tBroadcast Engineering Site 7 Bari Lane SECRET HARBOUR\t0.79\t-32.403126\t115.759451\n581\tSecret Harbour\t9011161\tBroadcast Engineering Site 7 Bari Lane SECRET HARBOUR\t0.28\t-32.403126\t115.759451\n600\tSecret Harbour\t9011161\tBroadcast Engineering Site 7 Bari Lane SECRET HARBOUR\t0.38\t-32.403126\t115.759451\n674\tSecret Harbour\t9011161\tBroadcast Engineering Site 7 Bari Lane SECRET HARBOUR\t1.19\t-32.403126\t115.759451\n500\tCockburn Coast\t9022489\tMILNE AGRIGROUP 1 Darkan Avenue NORTH COOGEE\t0.39\t-32.082798\t115.761368\n552\tLot 1002 Penson Street, Singleton\t9912381\tMobile Spectrum Licensing Site FREMANTLE ROAD\t0.49\t-32.449724\t115.762206\n599\tLakelands\t9912381\tMobile Spectrum Licensing Site FREMANTLE ROAD\t1.91\t-32.449724\t115.762206\n363\tSecret Harbour\t9021495\tCnr Lavinia Cr \u0026 Lennox Dr SECRET HARBOUR\t1.63\t-32.401976\t115.762668\n428\tSecret Harbour-Anstey Park\t9021495\tCnr Lavinia Cr \u0026 Lennox Dr SECRET HARBOUR\t0.59\t-32.401976\t115.762668\n441\tSecret Harbour\t9021495\tCnr Lavinia Cr \u0026 Lennox Dr SECRET HARBOUR\t0.95\t-32.401976\t115.762668\n464\tSecret Harbour\t9021495\tCnr Lavinia Cr \u0026 Lennox Dr SECRET HARBOUR\t0.97\t-32.401976\t115.762668\n530\tSecret Harbour\t9021495\tCnr Lavinia Cr \u0026 Lennox Dr SECRET HARBOUR\t1.04\t-32.401976\t115.762668\n555\tSecret Harbour-Anstey Park\t9021495\tCnr Lavinia Cr \u0026 Lennox Dr SECRET HARBOUR\t0.7\t-32.401976\t115.762668\n581\tSecret Harbour\t9021495\tCnr Lavinia Cr \u0026 Lennox Dr SECRET HARBOUR\t0.44\t-32.401976\t115.762668\n600\tSecret Harbour\t9021495\tCnr Lavinia Cr \u0026 Lennox Dr SECRET HARBOUR\t0.52\t-32.401976\t115.762668\n717\tSecret Harbour\t9021495\tCnr Lavinia Cr \u0026 Lennox Dr SECRET HARBOUR\t0.71\t-32.401976\t115.762668\n500\tCockburn Coast\t135137\tOptus Site Hamilton Hill Lot 103 Emplacement Crescent HAMILTON HILL\t0.47\t-32.082474\t115.763239\n500\tCockburn Coast\t502107\tOptus/Hutchison Site Emplacement Cres HAMILTON HILL\t0.43\t-32.082942\t115.763342\n608\tMadora Bay\t9000334\tMeadow Springs Substation Fremantle Road MEADOW SPRINGS\t1.36\t-32.485132\t115.765286\n794\tMadora Bay\t9000334\tMeadow Springs Substation Fremantle Road MEADOW SPRINGS\t1.16\t-32.485132\t115.765286\n794\tMadora Bay\t138773\tParklands Rail Tunnel north end PARKLANDS\t1.25\t-32.486905\t115.765565\n552\tLot 1002 Penson Street, Singleton\t601172\tComm Site Crystaluna Drive GOLDEN BAY\t2.47\t-32.431861\t115.767396\n555\tSecret Harbour-Anstey Park\t480713\tOptus/Hutchison Site Lot 4 Mandurah Rd PORT KENNEDY\t1.11\t-32.388497\t115.768794\n428\tSecret Harbour-Anstey Park\t27406\tLand Sales Office Anstey Rd SECRET HARBOUR\t0.47\t-32.40644\t115.769018\n482\tSecret Harbour\t27406\tLand Sales Office Anstey Rd SECRET HARBOUR\t0.44\t-32.40644\t115.769018\n530\tSecret Harbour\t27406\tLand Sales Office Anstey Rd SECRET HARBOUR\t0.32\t-32.40644\t115.769018\n555\tSecret Harbour-Anstey Park\t27406\tLand Sales Office Anstey Rd SECRET HARBOUR\t0.89\t-32.40644\t115.769018\n700\tSecret Harbour\t27406\tLand Sales Office Anstey Rd SECRET HARBOUR\t0.97\t-32.40644\t115.769018\n717\tSecret Harbour\t27406\tLand Sales Office Anstey Rd SECRET HARBOUR\t0.33\t-32.40644\t115.769018\n810\tGolden Bay\t27406\tLand Sales Office Anstey Rd SECRET HARBOUR\t1.45\t-32.40644\t115.769018\n444\tParkland Heights\t480822\tAged Care Home Lot 398 Olivenza Cres PORT KENNEDY\t2.74\t-32.357508\t115.76931\n444\tParkland Heights\t135211\tOptus Site Kwinana South Lot 5 Cnr Patterson Rd/Charles St KWINANA\t2.77\t-32.350887\t115.769312\n599\tLakelands\t9000784\tLakelands Railway Station Argyle Fairway LAKELANDS\t0.87\t-32.473656\t115.770714\n685\tLakelands\t9000784\tLakelands Railway Station Argyle Fairway LAKELANDS\t0.89\t-32.473656\t115.770714\n429\tTapping The Kestrels\t9000418\tFire Station 47 Drovers Place WANNEROO\t0.98\t-31.71817\t115.775756\n555\tSecret Harbour-Anstey Park\t10013285\tStakehill 134 Greenham Place KARNUP\t1.13\t-32.393878\t115.779693\n171\tLatitude 32 Flinders Precinct\t27288\tL314 Burlington St NAVAL BASE\t0.67\t-32.200191\t115.783475\n429\tTapping The Kestrels\t601586\tWestern Power Substation WANNEROO\t0.35\t-31.718594\t115.784225\n655\tTapping The Kestrels\t601586\tWestern Power Substation WANNEROO\t0.62\t-31.718594\t115.784225\n780\tBanksia Grove\t35075\t15 Avery St NEERABUP\t1.36\t-31.681162\t115.784903\n171\tLatitude 32 Flinders Precinct\t27280\tComm Site Rentals Cnr Lee Rd \u0026 Bickley St NAVAL BASE\t0.37\t-32.204365\t115.786072\n429\tTapping The Kestrels\t142568\tCnr Joondalup Dr \u0026 Cheriton Dr CARRAMAR\t1.1\t-31.711999\t115.787984\n596\tTapping-Ashton Heights\t142568\tCnr Joondalup Dr \u0026 Cheriton Dr CARRAMAR\t0.99\t-31.711999\t115.787984\n655\tTapping The Kestrels\t142568\tCnr Joondalup Dr \u0026 Cheriton Dr CARRAMAR\t0.73\t-31.711999\t115.787984\n727\tTapping-Ashton Heights\t142568\tCnr Joondalup Dr \u0026 Cheriton Dr CARRAMAR\t1.33\t-31.711999\t115.787984\n429\tTapping The Kestrels\t9002979\tSt Stephens School 50 St Stephens Crescent TAPPING\t0.7\t-31.715792\t115.788053\n596\tTapping-Ashton Heights\t9002979\tSt Stephens School 50 St Stephens Crescent TAPPING\t0.83\t-31.715792\t115.788053\n655\tTapping The Kestrels\t9002979\tSt Stephens School 50 St Stephens Crescent TAPPING\t0.36\t-31.715792\t115.788053\n671\tTapping-Ashton Heights\t9002979\tSt Stephens School 50 St Stephens Crescent TAPPING\t1.45\t-31.715792\t115.788053\n727\tTapping-Ashton Heights\t9002979\tSt Stephens School 50 St Stephens Crescent TAPPING\t1.09\t-31.715792\t115.788053\n685\tLakelands\t9009739\tTelstra RBS Site 25 Lymon Rd STAKE HILL\t1.63\t-32.469841\t115.788146\n429\tTapping The Kestrels\t9028018\tRoof Top 7 Cheriton Drive Shopping centre CARRAMAR WA 6031\t1.11\t-31.711994\t115.788227\n596\tTapping-Ashton Heights\t9028018\tRoof Top 7 Cheriton Drive Shopping centre CARRAMAR WA 6031\t0.97\t-31.711994\t115.788227\n655\tTapping The Kestrels\t9028018\tRoof Top 7 Cheriton Drive Shopping centre CARRAMAR WA 6031\t0.72\t-31.711994\t115.788227\n671\tTapping-Ashton Heights\t9028018\tRoof Top 7 Cheriton Drive Shopping centre CARRAMAR WA 6031\t1.59\t-31.711994\t115.788227\n727\tTapping-Ashton Heights\t9028018\tRoof Top 7 Cheriton Drive Shopping centre CARRAMAR WA 6031\t1.31\t-31.711994\t115.788227\n444\tParkland Heights\t27401\tCity of Rockingham Lot 660 Mandurah Road BALDIVIS\t0.88\t-32.351699\t115.789835\n757\tBaldivis-The Ridge\t27401\tCity of Rockingham Lot 660 Mandurah Road BALDIVIS\t1.88\t-32.351699\t115.789835\n171\tLatitude 32 Flinders Precinct\t9000428\tFire Station Cnr Armstrong and Hoyle Roads HOPE VALLEY\t0.22\t-32.201984\t115.791621\n171\tLatitude 32 Flinders Precinct\t9019821\t13 Reliance Bend HOPE VALLEY\t0.54\t-32.198759\t115.792141\n171\tLatitude 32 Flinders Precinct\t142466\tLatitude 32 Anketer Rd HOPE VALLEY\t0.55\t-32.207538\t115.792375\n780\tBanksia Grove\t603325\t190 Pederick Road NEERABUP\t1.55\t-31.676404\t115.796886\n596\tTapping-Ashton Heights\t10005000\tAshton Heights Cnr Yandella Pde and Alvarez Pkwy Tapping\t0.03\t-31.716981\t115.797058\n655\tTapping The Kestrels\t10005000\tAshton Heights Cnr Yandella Pde and Alvarez Pkwy Tapping\t0.61\t-31.716981\t115.797058\n671\tTapping-Ashton Heights\t10005000\tAshton Heights Cnr Yandella Pde and Alvarez Pkwy Tapping\t0.6\t-31.716981\t115.797058\n727\tTapping-Ashton Heights\t10005000\tAshton Heights Cnr Yandella Pde and Alvarez Pkwy Tapping\t0.35\t-31.716981\t115.797058\n780\tBanksia Grove\t9010181\tTelstra Site 190 Flynn Dr BANKSIA GROVE\t0.62\t-31.685214\t115.797376\n754\tColes Banksia Grove Shopping Centre\t9018973\tBanksia Grove CCTV/Wireless Site Sir Joseph Banks Boulevard (near Grandis Bvd) BANKSIA GROVE\t1.21\t-31.695488\t115.798202\n780\tBanksia Grove\t9018973\tBanksia Grove CCTV/Wireless Site Sir Joseph Banks Boulevard (near Grandis Bvd) BANKSIA GROVE\t0.68\t-31.695488\t115.798202\n525\tTindal Avenue, Beeliar\t602873\tCockburn South Railway Junction Yangebup Rd YANGEBUP\t1.06\t-32.126643\t115.799378\n754\tColes Banksia Grove Shopping Centre\t9008328\tRadio Mast Cnr Golf Links Drive and Pinjar Road CARRAMAR\t0.43\t-31.704494\t115.799417\n780\tBanksia Grove\t9008328\tRadio Mast Cnr Golf Links Drive and Pinjar Road CARRAMAR\t1.66\t-31.704494\t115.799417\n444\tParkland Heights\t9009676\tEvermore Heights Lot 8003 Numbat Approach BALDIVIS\t0.58\t-32.349918\t115.799858\n757\tBaldivis-The Ridge\t9009676\tEvermore Heights Lot 8003 Numbat Approach BALDIVIS\t0.96\t-32.349918\t115.799858\n769\tSmirk Road\t9009676\tEvermore Heights Lot 8003 Numbat Approach BALDIVIS\t1.18\t-32.349918\t115.799858\n671\tTapping-Ashton Heights\t10018620\tColes Banksia Grove Village, 1001 Joondalup Drive BANKSIA GROVE\t1.47\t-31.70561\t115.80113\n754\tColes Banksia Grove Shopping Centre\t10018620\tColes Banksia Grove Village, 1001 Joondalup Drive BANKSIA GROVE\t0.26\t-31.70561\t115.80113\n754\tColes Banksia Grove Shopping Centre\t10005563\tAldi Banksia Grove 81 Ghost Gum Boulevard Banksia Grove\t0.16\t-31.704211\t115.802617\n217\tSpires\t602464\tStaging Pond Repeater BALDIVIS\t1.77\t-32.28741\t115.804113\n217\tSpires\t601105\tWAWA Tower Tamworth Hill Mandurah Road BALDIVIS\t1.76\t-32.31848\t115.805457\n672\tBaldivis East\t601105\tWAWA Tower Tamworth Hill Mandurah Road BALDIVIS\t1.91\t-32.31848\t115.805457\n596\tTapping-Ashton Heights\t9011451\tTelstra RBS Site 294 Pinjar Rd MARIGINIUP\t0.85\t-31.717584\t115.805677\n671\tTapping-Ashton Heights\t9011451\tTelstra RBS Site 294 Pinjar Rd MARIGINIUP\t0.28\t-31.717584\t115.805677\n727\tTapping-Ashton Heights\t9011451\tTelstra RBS Site 294 Pinjar Rd MARIGINIUP\t0.71\t-31.717584\t115.805677\n754\tColes Banksia Grove Shopping Centre\t9011451\tTelstra RBS Site 294 Pinjar Rd MARIGINIUP\t1.38\t-31.717584\t115.805677\n525\tTindal Avenue, Beeliar\t10016536\tOptus site lightpole 2 Mainsail Terrace YANGEBUP\t0.98\t-32.12373\t115.80808\n666\tStirling-Roselea\t26223\tStirling Shire Office Cedric Street STIRLING\t0.67\t-31.889142\t115.808264\n747\tStirling-Princeton\t600463\t35b Sarich Court OSBORNE PARK\t0.87\t-31.897152\t115.809155\n666\tStirling-Roselea\t9002956\tLot 798 Cnr Cedric Street and Karrinyup Road STIRLING\t0.5\t-31.886616\t115.809195\n709\tThe Village at Wellard\t9023417\tKwinana Bus Station Gilmore Avenue KWINANA\t2.36\t-32.246344\t115.812471\n408\tMurray-Riverland Ramble\t9008321\t300m East of Fiegerts Road off Pinjarra Road SOUTH YUNDERUP\t1.33\t-32.570968\t115.81387\n408\tMurray-Riverland Ramble\t9003503\tMurry River Bridge Site East of Cnr Fiegert \u0026 Pinjarra Roads RAVENSWOOD\t1.37\t-32.570289\t115.813884\n524\tThe Village at Wellard\t10018556\tBig W Marketplace cnr Challenger and Gilmore Ave KWINANA\t2.52\t-32.246819\t115.813913\n709\tThe Village at Wellard\t10018556\tBig W Marketplace cnr Challenger and Gilmore Ave KWINANA\t2.3\t-32.246819\t115.813913\n757\tBaldivis-The Ridge\t9020695\tBaldivis Shopping Centre LOT 26 Safety Bay Rd BALDIVIS\t2.18\t-32.332547\t115.814399\n769\tSmirk Road\t9020695\tBaldivis Shopping Centre LOT 26 Safety Bay Rd BALDIVIS\t2.0\t-32.332547\t115.814399\n444\tParkland Heights\t9020693\tAffinity Village 38 Norwood Avenue BALDIVIS\t2.67\t-32.336088\t115.815893\n526\tBaldivis-Tuart Ridge\t9020693\tAffinity Village 38 Norwood Avenue BALDIVIS\t0.57\t-32.336088\t115.815893\n606\tBaldivis-Rivergums\t9020693\tAffinity Village 38 Norwood Avenue BALDIVIS\t0.93\t-32.336088\t115.815893\n629\tBaldivis-Rivergums\t9020693\tAffinity Village 38 Norwood Avenue BALDIVIS\t0.74\t-32.336088\t115.815893\n677\tBaldivis-Rivergums\t9020693\tAffinity Village 38 Norwood Avenue BALDIVIS\t0.91\t-32.336088\t115.815893\n757\tBaldivis-The Ridge\t9020693\tAffinity Village 38 Norwood Avenue BALDIVIS\t1.84\t-32.336088\t115.815893\n769\tSmirk Road\t9020693\tAffinity Village 38 Norwood Avenue BALDIVIS\t1.63\t-32.336088\t115.815893\n747\tStirling-Princeton\t9000423\tFire Station 47 Collingwood Street OSBORNE PARK\t0.56\t-31.903125\t115.815952\n526\tBaldivis-Tuart Ridge\t9022214\tKmart Lot 26 Safety Bay Rd BALDIVIS\t0.85\t-32.332166\t115.816136\n606\tBaldivis-Rivergums\t9022214\tKmart Lot 26 Safety Bay Rd BALDIVIS\t1.26\t-32.332166\t115.816136\n525\tTindal Avenue, Beeliar\t10016537\tOptus site lightpole 41 Lakefront BEELIAR\t0.76\t-32.13285\t115.81631\n785\tBaldivis-Rivergums\t10007546\tTelstra Site LOT 9094 Safety Bay Rd Baldivis Rockingham\t0.99\t-32.33154\t115.81646\n524\tThe Village at Wellard\t9027469\tTelstra Site Charing Cross Wellard WELLARD\t0.88\t-32.265138\t115.816465\n709\tThe Village at Wellard\t9027469\tTelstra Site Charing Cross Wellard WELLARD\t0.29\t-32.265138\t115.816465\n526\tBaldivis-Tuart Ridge\t10015985\tAldi Baldivis 20 Settlers Avenue BALDIVIS\t0.79\t-32.33251\t115.81658\n606\tBaldivis-Rivergums\t10015985\tAldi Baldivis 20 Settlers Avenue BALDIVIS\t1.2\t-32.33251\t115.81658\n677\tBaldivis-Rivergums\t10015985\tAldi Baldivis 20 Settlers Avenue BALDIVIS\t1.07\t-32.33251\t115.81658\n757\tBaldivis-The Ridge\t10015985\tAldi Baldivis 20 Settlers Avenue BALDIVIS\t2.24\t-32.33251\t115.81658\n769\tSmirk Road\t10015985\tAldi Baldivis 20 Settlers Avenue BALDIVIS\t2.04\t-32.33251\t115.81658\n525\tTindal Avenue, Beeliar\t10016535\tOptus site lightpole 7 Quenda Close BEELIAR\t0.97\t-32.12755\t115.81677\n83\tGreenlea\t603274\tLand Fill Facility Millar Road BALDIVIS\t1.36\t-32.28655\t115.816923\n524\tThe Village at Wellard\t603274\tLand Fill Facility Millar Road BALDIVIS\t2.29\t-32.28655\t115.816923\n709\tThe Village at Wellard\t603274\tLand Fill Facility Millar Road BALDIVIS\t2.13\t-32.28655\t115.816923\n524\tThe Village at Wellard\t9000779\tWellard Railway Station Off Wellard Road WELLARD\t0.86\t-32.263585\t115.817435\n709\tThe Village at Wellard\t9000779\tWellard Railway Station Off Wellard Road WELLARD\t0.48\t-32.263585\t115.817435\n666\tStirling-Roselea\t9020091\tPrinceton 52 Ferentino Road STIRLING\t0.54\t-31.890537\t115.817498\n525\tTindal Avenue, Beeliar\t10016538\tOptus site lightpole 77 Birkett Ave BEELIAR\t0.99\t-32.13658\t115.81766\n526\tBaldivis-Tuart Ridge\t10003599\tBaldivis East Unit 1, 89 Norseman Approach BALDIVIS\t0.69\t-32.33285\t115.81813\n606\tBaldivis-Rivergums\t10003599\tBaldivis East Unit 1, 89 Norseman Approach BALDIVIS\t1.1\t-32.33285\t115.81813\n629\tBaldivis-Rivergums\t10003599\tBaldivis East Unit 1, 89 Norseman Approach BALDIVIS\t0.67\t-32.33285\t115.81813\n677\tBaldivis-Rivergums\t10003599\tBaldivis East Unit 1, 89 Norseman Approach BALDIVIS\t0.94\t-32.33285\t115.81813\n769\tSmirk Road\t10003599\tBaldivis East Unit 1, 89 Norseman Approach BALDIVIS\t2.03\t-32.33285\t115.81813\n785\tBaldivis-Rivergums\t10003599\tBaldivis East Unit 1, 89 Norseman Approach BALDIVIS\t0.9\t-32.33285\t115.81813\n217\tSpires\t602604\tLot 3 Baldivis Road BALDIVIS\t1.25\t-32.31069\t115.818232\n476\tBaldivis-The Chase\t602604\tLot 3 Baldivis Road BALDIVIS\t0.99\t-32.31069\t115.818232\n672\tBaldivis East\t602604\tLot 3 Baldivis Road BALDIVIS\t0.64\t-32.31069\t115.818232\n83\tGreenlea\t10008095\t392 Baldivis Road Baldivis\t2.02\t-32.311083\t115.819415\n217\tSpires\t10008095\t392 Baldivis Road Baldivis\t1.37\t-32.311083\t115.819415\n476\tBaldivis-The Chase\t10008095\t392 Baldivis Road Baldivis\t0.98\t-32.311083\t115.819415\n672\tBaldivis East\t10008095\t392 Baldivis Road Baldivis\t0.52\t-32.311083\t115.819415\n747\tStirling-Princeton\t10008231\t43 Hutton St Osbourne Park North\t0.39\t-31.90182\t115.81958\n83\tGreenlea\t10008433\tBaldivis North Lot 800 Kerosene Lane BALDIVIS\t0.8\t-32.29571\t115.81964\n217\tSpires\t10008433\tBaldivis North Lot 800 Kerosene Lane BALDIVIS\t1.3\t-32.29571\t115.81964\n476\tBaldivis-The Chase\t10008433\tBaldivis North Lot 800 Kerosene Lane BALDIVIS\t0.9\t-32.29571\t115.81964\n672\tBaldivis East\t10008433\tBaldivis North Lot 800 Kerosene Lane BALDIVIS\t1.94\t-32.29571\t115.81964\n747\tStirling-Princeton\t101775\tTelstra/Hutchison Site 43 Hutton St OSBORNE PARK\t0.39\t-31.901762\t115.819776\n629\tBaldivis-Rivergums\t10012596\tBaby Bunting 60 Baldivis Rd BALDIVIS\t0.76\t-32.330261\t115.820587\n677\tBaldivis-Rivergums\t10012596\tBaby Bunting 60 Baldivis Rd BALDIVIS\t1.06\t-32.330261\t115.820587\n785\tBaldivis-Rivergums\t10012596\tBaby Bunting 60 Baldivis Rd BALDIVIS\t0.58\t-32.330261\t115.820587\n408\tMurray-Riverland Ramble\t9018413\tNBN Co Site 1248 Pinjarra Road RAVENSWOOD\t1.33\t-32.588191\t115.820867\n629\tBaldivis-Rivergums\t10014847\tSupercheap Auto Baldivis 600 Baldivis Road Baldivis\t0.77\t-32.33003\t115.820881\n785\tBaldivis-Rivergums\t10014847\tSupercheap Auto Baldivis 600 Baldivis Road Baldivis\t0.54\t-32.33003\t115.820881\n408\tMurray-Riverland Ramble\t10002208\tRavenswood -V Monopole 1248 Pinjarra Road RAVENSWOOD\t1.1\t-32.58599\t115.82096\n666\tStirling-Roselea\t601391\tOptus Site Macedonia Club of WA Albert St BALCATTA\t0.78\t-31.887697\t115.822651\n526\tBaldivis-Tuart Ridge\t9011732\tRivergums Headend Part Lot 5, Baldivis Road BALDIVIS\t0.49\t-32.334212\t115.822665\n606\tBaldivis-Rivergums\t9011732\tRivergums Headend Part Lot 5, Baldivis Road BALDIVIS\t0.85\t-32.334212\t115.822665\n629\tBaldivis-Rivergums\t9011732\tRivergums Headend Part Lot 5, Baldivis Road BALDIVIS\t0.28\t-32.334212\t115.822665\n677\tBaldivis-Rivergums\t9011732\tRivergums Headend Part Lot 5, Baldivis Road BALDIVIS\t0.58\t-32.334212\t115.822665\n785\tBaldivis-Rivergums\t9011732\tRivergums Headend Part Lot 5, Baldivis Road BALDIVIS\t0.7\t-32.334212\t115.822665\n666\tStirling-Roselea\t101650\tHutchison Site Macedonia Park 273 Albert St BALCATTA\t0.89\t-31.888536\t115.823581\n408\tMurray-Riverland Ramble\t9011743\tOld Mandurah Road, 500 m East of Pinjarra Road RAVENSWOOD\t0.45\t-32.573119\t115.824793\n747\tStirling-Princeton\t54219\t171 Albert Street OSBORNE PARK\t0.65\t-31.897751\t115.825009\n83\tGreenlea\t27402\tCnr of Baldivis \u0026 Mundijong Rd BALDIVIS\t0.08\t-32.294103\t115.827144\n476\tBaldivis-The Chase\t27402\tCnr of Baldivis \u0026 Mundijong Rd BALDIVIS\t1.05\t-32.294103\t115.827144\n103\tHeritage Hills \t27719\tLot 8 South West Highway BRUNSWICK JUNCTION\t0.73\t-33.283791\t115.834158\n103\tHeritage Hills \t10011074\tBreak Pressure Tank 3 Saline Water Disposal Pipeline ROELANDS\t1.67\t-33.303355\t115.843797\n269\tLot 10,50 \u0026 700 Ocean Reef Gnangara\t9023588\t35 Prestige Parade WANGARA\t1.08\t-31.794359\t115.845765\n642\tHarvest Lakes\t9014861\t2 Macquarie Boulevard HAMMOND PARK\t1.84\t-32.160463\t115.845945\n269\tLot 10,50 \u0026 700 Ocean Reef Gnangara\t138232\t35 Prestige Parade Wangara\t0.96\t-31.792852\t115.846682\n513\tLot 10,50 \u0026 700 Ocean Reef Gnangara\t138232\t35 Prestige Parade Wangara\t1.27\t-31.792852\t115.846682\n642\tHarvest Lakes\t27257\tBartram Rd JANDAKOT\t2.11\t-32.147853\t115.849062\n208\tMurray-Murray River Country Estate\t27483\tMurray River North Lot 300 Cox Street PINJARRA\t1.33\t-32.616388\t115.850137\n642\tHarvest Lakes\t51046\tWAWA Site Bartram Rd SUCCESS\t2.16\t-32.146035\t115.850526\n269\tLot 10,50 \u0026 700 Ocean Reef Gnangara\t601401\tHamilton Saw Mills 326 Gnangara Road LANDSDALE\t0.78\t-31.797986\t115.852786\n513\tLot 10,50 \u0026 700 Ocean Reef Gnangara\t601401\tHamilton Saw Mills 326 Gnangara Road LANDSDALE\t1.27\t-31.797986\t115.852786\n642\tHarvest Lakes\t9027083\tDGPS reference transmitter Lauderdale Drive AUBIN GROVE\t1.26\t-32.1562\t115.853277\n513\tLot 10,50 \u0026 700 Ocean Reef Gnangara\t602199\tMaintenance Shed Lakelands Country Club GNANGARA\t1.27\t-31.776884\t115.854716\n269\tLot 10,50 \u0026 700 Ocean Reef Gnangara\t600572\tCnr Madeley \u0026 Gnangara Rd LANDSDALE\t0.68\t-31.797901\t115.856379\n513\tLot 10,50 \u0026 700 Ocean Reef Gnangara\t600572\tCnr Madeley \u0026 Gnangara Rd LANDSDALE\t1.15\t-31.797901\t115.856379\n642\tHarvest Lakes\t101091\tCMTS Site Lot 10 Gaebler Rd BANJUP\t1.18\t-32.168593\t115.857169\n474\tWandi Estate\t9018974\tHoneywood SE Headend Litchfield Road, off Lyon Road WANDI\t0.34\t-32.194917\t115.857285\n686\tWellard Glen\t9022686\tNBN Co Test Trailer (CW_P4) within 10 km of 136 St Albans Road BALDIVIS\t1.47\t-32.282211\t115.857381\n269\tLot 10,50 \u0026 700 Ocean Reef Gnangara\t9020079\tGeorgiou DGPS transmitter Sydney Road GNANGARA\t0.16\t-31.79309\t115.857395\n513\tLot 10,50 \u0026 700 Ocean Reef Gnangara\t9020079\tGeorgiou DGPS transmitter Sydney Road GNANGARA\t0.61\t-31.79309\t115.857395\n686\tWellard Glen\t602407\tCMTS Site WA Water Ski Park Lot 101 St Albans Rd BALDIVIS\t1.48\t-32.282212\t115.857508\n474\tWandi Estate\t9000777\tMandogolup Railway Station Rowley Road Overpass Kwinana Freeway HAMMOND PARK\t1.64\t-32.180396\t115.857608\n208\tMurray-Murray River Country Estate\t10003298\t1748 PINJARRA ROAD PINJARRA\t1.41\t-32.62037\t115.85786\n686\tWellard Glen\t27400\tRailway Station WELLARD\t1.06\t-32.27432\t115.858615\n103\tHeritage Hills \t600480\tOptus Site Partridge Rd BRUNSWICK JUNCTION\t3.22\t-33.26989\t115.859349\n208\tMurray-Murray River Country Estate\t27489\tPinjarra Vet Clinic L92 Pinjarra Road PINJARRA\t1.26\t-32.619185\t115.86012\n686\tWellard Glen\t10008128\tWellard 355 Mundijong Road BALDIVIS\t2.59\t-32.29248\t115.86047\n103\tHeritage Hills \t36832\tTelstra Site One Tree Hill BRUNSWICK JUNCTION\t3.26\t-33.27038\t115.860642\n103\tHeritage Hills \t27722\tOne Tree Hill BRUNSWICK JUNCTION\t3.22\t-33.271039\t115.860665\n208\tMurray-Murray River Country Estate\t142604\tMDE Electrical 1774 Pinjarra Rd PINJARRA\t1.38\t-32.620197\t115.861195\n563\tLots 73 and 74 Queensway Rd, Landsdale\t10014197\tTelstra Rooftop Site 131 The Broadview Landsdale\t0.74\t-31.808167\t115.863056\n386\tCalleya\t10014841\tSupercheap Auto Cockburn 49 Armadale Road Jandakot\t0.8\t-32.126273\t115.866262\n474\tWandi Estate\t9009299\tDBNGP Site 2 WANDI\t0.79\t-32.200027\t115.866685\n474\tWandi Estate\t603248\t802 Anketell Road ANKETELL\t1.75\t-32.209323\t115.868235\n386\tCalleya\t9027583\tOfficeworks Jandakot Unit 20 / 87 Armadale Road JANDAKOT\t0.6\t-32.125211\t115.868542\n474\tWandi Estate\t53810\tOptus/Hutchison Site Lot 30 Ankatell Rd near cnr of Battersby Rd WANDI\t1.7\t-32.20857\t115.868796\n386\tCalleya\t9007086\tSouth Central Lot 9501 Armadale Road JANDAKOT\t0.47\t-32.127292\t115.86978\n386\tCalleya\t10006600\tThe Good Guys Cockburn Shop 1 South Central 87 Armadale St JANDACOT\t0.46\t-32.127379\t115.869965\n386\tCalleya\t9020078\tGeorgiou DGPS transmitter Dollier Street BANJUP\t0.58\t-32.12152\t115.876535\n563\tLots 73 and 74 Queensway Rd, Landsdale\t26583\tTelstra HF / Rx / VHF IMM Site 620 Gnangara Road LANDSDALE\t0.96\t-31.809094\t115.878426\n563\tLots 73 and 74 Queensway Rd, Landsdale\t139249\tGalileo Sensor Station 620 Gnangara Rd LANDSDALE\t1.19\t-31.803499\t115.882223\n563\tLots 73 and 74 Queensway Rd, Landsdale\t9016627\tO3b Earth Station 7.3 Metre Antenna 620 Gnangara Rd LANDSDALE WA 6067\t1.22\t-31.803574\t115.882518\n563\tLots 73 and 74 Queensway Rd, Landsdale\t204818\tTelesat 13 Metre Antenna 620 Gnangara Road LANDSDALE\t1.31\t-31.807131\t115.883196\n612\tAspiri\t27256\t502 Hebble Loop BANJUP\t1.83\t-32.14362\t115.890253\n471\tLot 9000 Baile Road Canning Vale\t10011878\tGD Mitchell 25 Enterprise Court CANNING VALE\t0.31\t-32.06444\t115.908426\n471\tLot 9000 Baile Road Canning Vale\t9016412\t39 Baile Road CANNING VALE\t0.07\t-32.067166\t115.908743\n448\tLot 9000 Baile Road Canning Vale\t48789\tSwan Brewery Water Tower 25 Baile Rd CANNING VALE\t0.41\t-32.062747\t115.911083\n448\tLot 9000 Baile Road Canning Vale\t10015759\tVisy Specialties 6 Modal Cres Canning Vale\t0.4\t-32.069123\t115.912582\n471\tLot 9000 Baile Road Canning Vale\t10015759\tVisy Specialties 6 Modal Cres Canning Vale\t0.37\t-32.069123\t115.912582\n448\tLot 9000 Baile Road Canning Vale\t9008646\tStirlings Australia Global Metal Distributors Cnr Modal Crescent and Baile Road CANNING VALE\t0.21\t-32.067379\t115.912607\n471\tLot 9000 Baile Road Canning Vale\t9008646\tStirlings Australia Global Metal Distributors Cnr Modal Crescent and Baile Road CANNING VALE\t0.29\t-32.067379\t115.912607\n448\tLot 9000 Baile Road Canning Vale\t130126\tVodafone Site 24 Baile Rd CANNING VALE\t0.26\t-32.06795\t115.912886\n471\tLot 9000 Baile Road Canning Vale\t130126\tVodafone Site 24 Baile Rd CANNING VALE\t0.33\t-32.06795\t115.912886\n448\tLot 9000 Baile Road Canning Vale\t27107\tTelstra Radio Terminal Baile Road CANNING VALE\t0.23\t-32.067786\t115.91382\n612\tAspiri\t26195\tVodafone Site Lot 10 Forrest Rd FORRESTDALE\t0.6\t-32.142678\t115.915817\n619\tLot 6 Nicholson Road\t26195\tVodafone Site Lot 10 Forrest Rd FORRESTDALE\t0.37\t-32.142678\t115.915817\n300\tCanningvale-Avenues\t10015716\tMonopole, Livingstone Marketplace Cnr Ranford \u0026 Nicholson Roads Canning Vale\t0.74\t-32.08697\t115.91697\n633\tCanningvale-Avenues\t10015716\tMonopole, Livingstone Marketplace Cnr Ranford \u0026 Nicholson Roads Canning Vale\t0.74\t-32.08697\t115.91697\n636\tCanningvale-Avenues\t10015716\tMonopole, Livingstone Marketplace Cnr Ranford \u0026 Nicholson Roads Canning Vale\t0.81\t-32.08697\t115.91697\n88\tMcMahon Road North Dandalup\t10004710\t1801 Lakes Rd NORTH DANDALUP\t1.86\t-32.515882\t115.917155\n300\tCanningvale-Avenues\t603332\tLivingstone Marketplace Cnr Ranford and Nicholson Roads CANNING VALE\t0.65\t-32.0877\t115.917421\n633\tCanningvale-Avenues\t603332\tLivingstone Marketplace Cnr Ranford and Nicholson Roads CANNING VALE\t0.65\t-32.0877\t115.917421\n636\tCanningvale-Avenues\t603332\tLivingstone Marketplace Cnr Ranford and Nicholson Roads CANNING VALE\t0.75\t-32.0877\t115.917421\n88\tMcMahon Road North Dandalup\t10017115\tNorth Dandalup Lot 9000 Lakes Road North Dandalup\t1.38\t-32.49866\t115.917576\n466\tCanningvale-Sanctuary Waters\t602139\tWater Tower Lot 479 Warton Road CANNING VALE\t1.23\t-32.103759\t115.917613\n300\tCanningvale-Avenues\t205073\tHutchison Site Lingstone Marketplace cnr Ranford \u0026 Nicholson Rds CANNING VALE\t0.59\t-32.088351\t115.917656\n380\tCanningvale-Sanctuary Waters\t205073\tHutchison Site Lingstone Marketplace cnr Ranford \u0026 Nicholson Rds CANNING VALE\t1.22\t-32.088351\t115.917656\n633\tCanningvale-Avenues\t205073\tHutchison Site Lingstone Marketplace cnr Ranford \u0026 Nicholson Rds CANNING VALE\t0.59\t-32.088351\t115.917656\n636\tCanningvale-Avenues\t205073\tHutchison Site Lingstone Marketplace cnr Ranford \u0026 Nicholson Rds CANNING VALE\t0.71\t-32.088351\t115.917656\n788\tCanningvale-Sanctuary Waters\t205073\tHutchison Site Lingstone Marketplace cnr Ranford \u0026 Nicholson Rds CANNING VALE\t1.04\t-32.088351\t115.917656\n466\tCanningvale-Sanctuary Waters\t9008780\tHakea Prison 479 Warton Road CANNING VALE\t1.23\t-32.103869\t115.917729\n300\tCanningvale-Avenues\t53909\tRanford Road CANNING VALE\t0.32\t-32.090288\t115.919509\n380\tCanningvale-Sanctuary Waters\t53909\tRanford Road CANNING VALE\t0.95\t-32.090288\t115.919509\n633\tCanningvale-Avenues\t53909\tRanford Road CANNING VALE\t0.32\t-32.090288\t115.919509\n636\tCanningvale-Avenues\t53909\tRanford Road CANNING VALE\t0.55\t-32.090288\t115.919509\n788\tCanningvale-Sanctuary Waters\t53909\tRanford Road CANNING VALE\t0.79\t-32.090288\t115.919509\n380\tCanningvale-Sanctuary Waters\t27097\tLot 479 Warton Road CANNING VALE\t0.9\t-32.1013\t115.920121\n466\tCanningvale-Sanctuary Waters\t27097\tLot 479 Warton Road CANNING VALE\t0.95\t-32.1013\t115.920121\n788\tCanningvale-Sanctuary Waters\t27097\tLot 479 Warton Road CANNING VALE\t1.09\t-32.1013\t115.920121\n300\tCanningvale-Avenues\t9015195\tMATV Headend, Avenues Estate 40 Lexington Avenue CANNING VALE\t0.51\t-32.087369\t115.920974\n380\tCanningvale-Sanctuary Waters\t9015195\tMATV Headend, Avenues Estate 40 Lexington Avenue CANNING VALE\t1.11\t-32.087369\t115.920974\n633\tCanningvale-Avenues\t9015195\tMATV Headend, Avenues Estate 40 Lexington Avenue CANNING VALE\t0.51\t-32.087369\t115.920974\n636\tCanningvale-Avenues\t9015195\tMATV Headend, Avenues Estate 40 Lexington Avenue CANNING VALE\t0.44\t-32.087369\t115.920974\n788\tCanningvale-Sanctuary Waters\t9015195\tMATV Headend, Avenues Estate 40 Lexington Avenue CANNING VALE\t0.88\t-32.087369\t115.920974\n612\tAspiri\t9023518\tVHA Site Nicholson Road FORRESTDALE\t1.5\t-32.150682\t115.921488\n619\tLot 6 Nicholson Road\t9023518\tVHA Site Nicholson Road FORRESTDALE\t0.76\t-32.150682\t115.921488\n612\tAspiri\t26986\tTelstra Site Nicholson Rd FORRESTDALE\t1.49\t-32.150386\t115.92161\n619\tLot 6 Nicholson Road\t26986\tTelstra Site Nicholson Rd FORRESTDALE\t0.73\t-32.150386\t115.92161\n88\tMcMahon Road North Dandalup\t10003162\t1391 Hopeland Road North Dandalup\t3.7\t-32.471194\t115.923684\n612\tAspiri\t10000247\tDGPS Transmitter Nicholson Road PIARA WATERS\t1.56\t-32.135394\t115.92428\n619\tLot 6 Nicholson Road\t10000247\tDGPS Transmitter Nicholson Road PIARA WATERS\t1.07\t-32.135394\t115.92428\n88\tMcMahon Road North Dandalup\t10016874\t1424 Hopeland Rd NORTH DANDALUP\t3.66\t-32.471408\t115.924373\n572\tHeron Park\t142274\tLPON Site 11/314 Wright Rd PIARA WATERS\t0.91\t-32.123468\t115.924759\n702\tHeron Park\t142274\tLPON Site 11/314 Wright Rd PIARA WATERS\t0.91\t-32.123468\t115.924759\n772\tNewhaven\t142274\tLPON Site 11/314 Wright Rd PIARA WATERS\t0.74\t-32.123468\t115.924759\n149\tLOT 224 ORTON ROAD OAKFORD\t601791\tTelstra/Optus Site Lot 215 Abernathy Rd OAKFORD\t3.35\t-32.210096\t115.924917\n88\tMcMahon Road North Dandalup\t9022770\tMZI Mandurah 6 km SW of KEYSBROOK\t3.7\t-32.470968\t115.925211\n572\tHeron Park\t10001562\tAldi Harrisdale Stockland Shopping Centre Nichilson Road HARRISDALE\t0.95\t-32.126589\t115.926653\n702\tHeron Park\t10001562\tAldi Harrisdale Stockland Shopping Centre Nichilson Road HARRISDALE\t0.95\t-32.126589\t115.926653\n728\tHeron Park\t10001562\tAldi Harrisdale Stockland Shopping Centre Nichilson Road HARRISDALE\t1.07\t-32.126589\t115.926653\n772\tNewhaven\t10001562\tAldi Harrisdale Stockland Shopping Centre Nichilson Road HARRISDALE\t0.37\t-32.126589\t115.926653\n572\tHeron Park\t10010152\tPiara Waters -O 120 Yellowwood Avenue HARRISDALE\t0.97\t-32.12698\t115.92687\n619\tLot 6 Nicholson Road\t10010152\tPiara Waters -O 120 Yellowwood Avenue HARRISDALE\t2.02\t-32.12698\t115.92687\n702\tHeron Park\t10010152\tPiara Waters -O 120 Yellowwood Avenue HARRISDALE\t0.97\t-32.12698\t115.92687\n728\tHeron Park\t10010152\tPiara Waters -O 120 Yellowwood Avenue HARRISDALE\t1.08\t-32.12698\t115.92687\n772\tNewhaven\t10010152\tPiara Waters -O 120 Yellowwood Avenue HARRISDALE\t0.33\t-32.12698\t115.92687\n572\tHeron Park\t9028320\tStockland Harrisdale 120 Yellowwood Avenue HARRISDALE\t0.95\t-32.126989\t115.927155\n702\tHeron Park\t9028320\tStockland Harrisdale 120 Yellowwood Avenue HARRISDALE\t0.95\t-32.126989\t115.927155\n728\tHeron Park\t9028320\tStockland Harrisdale 120 Yellowwood Avenue HARRISDALE\t1.06\t-32.126989\t115.927155\n772\tNewhaven\t9028320\tStockland Harrisdale 120 Yellowwood Avenue HARRISDALE\t0.31\t-32.126989\t115.927155\n380\tCanningvale-Sanctuary Waters\t9000715\tMaintenance Shed Gosnells Golf Club Warton Road CANNING VALE\t0.51\t-32.097163\t115.932304\n466\tCanningvale-Sanctuary Waters\t9000715\tMaintenance Shed Gosnells Golf Club Warton Road CANNING VALE\t0.45\t-32.097163\t115.932304\n788\tCanningvale-Sanctuary Waters\t9000715\tMaintenance Shed Gosnells Golf Club Warton Road CANNING VALE\t0.65\t-32.097163\t115.932304\n572\tHeron Park\t10003361\tHarrisdale Senior High School 1 Laverton Crescent Harrisdale\t0.98\t-32.12941\t115.933855\n702\tHeron Park\t10003361\tHarrisdale Senior High School 1 Laverton Crescent Harrisdale\t0.98\t-32.12941\t115.933855\n728\tHeron Park\t10003361\tHarrisdale Senior High School 1 Laverton Crescent Harrisdale\t0.9\t-32.12941\t115.933855\n772\tNewhaven\t10003361\tHarrisdale Senior High School 1 Laverton Crescent Harrisdale\t0.39\t-32.12941\t115.933855\n728\tHeron Park\t10016621\t51 Wright Rd HARRISDALE\t1.11\t-32.111646\t115.935538\n466\tCanningvale-Sanctuary Waters\t9012539\tCarey College 51 Wright Road HARRISDALE\t1.3\t-32.111588\t115.93554\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175434_-703243258",
+ "id": "20220727-124935_956748664",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-16T04:48:02+0000",
+ "dateFinished": "2022-08-16T04:48:04+0000",
+ "status": "FINISHED"
+ },
+ {
+ "text": "%python\nprint(\" %s seconds\" % (time.time() - start_time))",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "language": "text",
+ "editOnDblClick": false
+ },
+ "colWidth": 12.0,
+ "editorMode": "ace/mode/undefined",
+ "fontSize": 9.0,
+ "results": {},
+ "enabled": true
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "results": {
+ "code": "SUCCESS",
+ "msg": [
+ {
+ "type": "TEXT",
+ "data": " 85.95645141601562 seconds\n"
+ }
+ ]
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1659416191998_431319442",
+ "id": "paragraph_1659416191998_431319442",
+ "dateCreated": "2022-08-02T04:56:31+0000",
+ "dateStarted": "2022-08-16T04:48:06+0000",
+ "dateFinished": "2022-08-16T04:48:06+0000",
+ "status": "FINISHED"
+ },
+ {
+ "title": "Table Information",
+ "text": "\n3 Tables - SITE_OPERATION_COST_REVENUE , ESTIMATED_COST_REVENUE , NEAREST_NEIGHBOR \n\nSITE_OPERATION_COST_REVENUE -\u003e has information of established Site.\nESTIMATED_COST_REVENUE -\u003e has Predicted Cost and Predicted Revenue for New Development Sites.\nNEAREST_NEIGHBOR -\u003e has each New Development Site with infomation about their neighbors.\n",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "language": "sql",
+ "editOnDblClick": false
+ },
+ "colWidth": 12.0,
+ "editorMode": "ace/mode/osql",
+ "fontSize": 9.0,
+ "title": true,
+ "results": {},
+ "enabled": false
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1659095122168_1664560712",
+ "id": "paragraph_1659095122168_1664560712",
+ "dateCreated": "2022-07-29T11:45:22+0000",
+ "status": "FINISHED"
+ },
+ {
+ "text": "\nEnd of the Script",
+ "user": "LISA_JONES",
+ "dateUpdated": "2022-08-17T05:43:53+0000",
+ "progress": 0,
+ "config": {
+ "editorSetting": {
+ "editOnDblClick": false,
+ "language": "sql"
+ },
+ "editorMode": "ace/mode/osql",
+ "colWidth": 12.0,
+ "editorHide": false,
+ "fontSize": 20.0,
+ "results": {},
+ "enabled": false
+ },
+ "settings": {
+ "params": {},
+ "forms": {}
+ },
+ "apps": [],
+ "interrupted": false,
+ "runtimeInfos": {},
+ "progressUpdateIntervalMs": 500,
+ "jobName": "paragraph_1658926175434_1243847676",
+ "id": "20220727-124935_1708237480",
+ "dateCreated": "2022-07-27T12:50:52+0000",
+ "dateStarted": "2022-08-02T10:45:02+0000",
+ "dateFinished": "2022-08-02T10:45:04+0000",
+ "status": "FINISHED"
+ }
+ ],
+ "name": "Data Lakehouse Communications-Tower Analytics using OML",
+ "id": "4017815",
+ "defaultInterpreterGroup": "spark",
+ "noteParams": {},
+ "noteForms": {},
+ "angularObjects": {},
+ "config": {
+ "looknfeel": "default"
+ },
+ "info": {
+ "isRunning": false
+ },
+ "path": "/Data Lakehouse Communications-Tower Analytics using oml"
+}
\ No newline at end of file
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/LICENSE b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/LICENSE
new file mode 100644
index 0000000..914eb78
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/LICENSE
@@ -0,0 +1,27 @@
+Copyright © 2024 Oracle and/or its affiliates. All rights reserved.
+
+The Universal Permissive License (UPL), Version 1.0
+
+Subject to the condition set forth below, permission is hereby granted to any person obtaining a copy of this
+software, associated documentation and/or data (collectively the "Software"), free of charge and under any and
+all copyright rights in the Software, and any and all patent rights owned or freely licensable by each licensor
+hereunder covering either (i) the unmodified Software as contributed to or provided by such licensor, or
+(ii) the Larger Works (as defined below), to deal in both
+
+(a) the Software, and
+(b) any piece of software and/or hardware listed in the lrgrwrks.txt file if one is included with the Software
+(each a “Larger Work” to which the Software is contributed by such licensors),
+
+without restriction, including without limitation the rights to copy, create derivative works of, display,
+perform, and distribute the Software and make, use, sell, offer for sale, import, export, have made, and have
+sold the Software and the Larger Work(s), and to sublicense the foregoing rights on either these or other terms.
+
+This license is subject to the following condition:
+The above copyright notice and either this complete permission notice or at a minimum a reference to the UPL must
+be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
+THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
+CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+IN THE SOFTWARE.
\ No newline at end of file
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/README.md b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/README.md
new file mode 100644
index 0000000..68452ae
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/README.md
@@ -0,0 +1,1245 @@
+# Oracle Cloud Foundation Terraform Solution - Deploy Telco Asset Value Maximization - Data Driven, Business-like Management of Tower - Platform to enable Maximizing Fixed Asset Returns to increase - Monetization, Shareholder Value and Operational Effectiveness
+
+## Table of Contents
+1. [Overview](#overview)
+1. [Deliverables](#deliverables)
+1. [Architecture](#Architecture-Diagram)
+1. [Executing Instructions](#instructions)
+ 1. [Deploy Using Oracle Resource Manager](#Deploy-Using-Oracle-Resource-Manager)
+ 1. [What to do after the Deployment via Resource Manager](#What-to-do-after-the-Deployment-via-Resource-Manager)
+ 2. [Deploy Using the Terraform CLI](#Deploy-Using-the-Terraform-CLI)
+ 1. [What to do after the Deployment via Terraform CLI](#What-to-do-after-the-Deployment-via-Terraform-CLI)
+1. [Documentation](#documentation)
+1. [The Team](#team)
+1. [Feedback](#feedback)
+1. [Known Issues](#known-issues)
+1. [Contribute](#CONTRIBUTING.md)
+
+
+## Overview
+
+Lakehouse for Telcos Monetization and Asset Value Maximization Targets for Tower and Telecommunication Companies:
+Telco Data environment complexity and multiple sources make it challenging to adapt quickly to a Data Driven Business Operating Model and rapidly both monetize Fixed Assets and improve their returns.
+
+Telco industry is going through a digital disruption and leveraging advanced technologies such as AI, ML, Big Data, Analytics etc. for digital transformation. Consistent with the Monetization and Asset Value Maximization Targets for Tower and Telecommunication Companies, most of our customers are evaluating strategies and tools to achieve greater Fixed Asset productivity and performance at reduced cost.
+
+Oracle Telco Lakehouse solution demonstrates “Data Platform” approach can with Speed connect to multiple data sources to make sense of the data and present it in a form that can be exploited to Manage the Business.
+
+The What:
+Intent: Consistent with the Monetization and Asset Value Maximization Targets for Tower and Telecommunication Companies, most of our customers are evaluating strategies and tools to achieve greater Fixed Asset productivity and performance at reduced cost.
+
+Oracle Intent: Show how a “Data Platform” approach can with Speed connect to multiple data sources to make sense of the data and present it in a form that can be exploited to Manage the Business
+
+So What: Telco Data environment complexity and multiple sources make it challenging to adapt quickly to a Data Driven Business Operating Model and rapidly both monetize Fixed Assets and improve their returns.
+
+
+
+## Deliverables
+ This repository encloses one deliverable:
+
+- A reference implementation written in Terraform HCL (Hashicorp Language) that provisions fully functional resources in an OCI tenancy.
+
+- On top we will use a script written in bash that will insert inside the Oracle Analytics Cloud a default bar with visuals for the data that's in the Autonomous Database.
+
+
+## Architecture-Diagram
+
+The following diagram shows a mapping of the architecture above to services provided on Oracle Cloud Infrastructure using security best practices and at the end of the deployment you will have in your tenancy the related services.
+
+
+
+
+
+
+## Executing Instructions
+
+## Prerequisites
+
+- Permission to `manage` the following types of resources in your Oracle Cloud Infrastructure tenancy: `vcns`, `nat-gateways`, `route-tables`, `subnets`, `service-gateways`, `security-lists`, `autonomous database`, `Analytics Cloud`, `object storage`, `compute instances`, `Data Catalog`, and `big data service - hive (optional)`.
+- Quota to create the following resources: 1 ADW database instance, 1 Analytics Cloud, 1 object storge, 1 data catalog, and 1 VM instance. Additionaly the Big Data Cluster can be added if needed.
+If you don't have the required permissions and quota, contact your tenancy administrator. See [Policy Reference](https://docs.cloud.oracle.com/en-us/iaas/Content/Identity/Reference/policyreference.htm), [Service Limits](https://docs.cloud.oracle.com/en-us/iaas/Content/General/Concepts/servicelimits.htm), [Compartment Quotas](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcequotas.htm).
+
+# Deploy Using Oracle Resource Manager
+
+1. Click [](https://cloud.oracle.com/resourcemanager/stacks/create?region=home&zipUrl=https://github.com/oracle-devrel/terraform-oci-oracle-cloud-foundation/releases/download/v1.0.0/Telco-Asset_Value_Maximization-RM.zip)
+
+
+If you aren't already signed in, when prompted, enter the tenancy and user credentials.
+
+2. Review and accept the terms and conditions.
+3. Select the region where you want to deploy the stack.
+4. Follow the on-screen prompts and instructions to create the stack.
+
+* note - for the The OCI ociPrivateKeyWrapped - The key that you have created or your own existing private key must be wrapped. You must pass this signing key in the payload for some snapshot APIs. Before you add it to the payload, you must Base64 encode the private key (ociPrivateKeyWrapped). For example, to generate a Base64 encoded string from your private key:
+ - On Mac: cat myprivate-key.pem | base64 -o mywrapped-private-key.pem
+ - On Linux: cat myprivate-key.pem | base64 -w 0 > mywrapped-private-key.pem
+ - Note: Ensure that the private key file that you encode includes -----BEGIN and -----END tags.
+
+5. After creating the stack, click **Terraform Actions**, and select **Plan**.
+6. Wait for the job to be completed, and review the plan.
+ To make any changes, return to the Stack Details page, click **Edit Stack**, and make the required changes. Then, run the **Plan** action again.
+7. If no further changes are necessary, return to the Stack Details page, click **Terraform Actions**, and select **Apply**.
+
+# What-to-do-after-the-Deployment-via-Resource-Manager
+
+After the deployment finished you will need to:
+1. Download the Data-Lakehouse-Communications-Tower-Analytics-using-OML.json locally on your device from the link below:
+https://objectstorage.us-ashburn-1.oraclecloud.com/p/3DKrefhNXRXlUFuua9qooD6XtOMfvhaIv5Q-qBeEs3UAefvgDlP_oHV1Jsirhqk_/n/oradbclouducm/b/DataModelsTelco/o/Data-Lakehouse-Communications-Tower-Analytics-using-OML.json
+
+2. Login into the Oracle Machine Learning instance URL provided in the outputs (example : OML_URL = "https://rddainsuh6u1okc-telcoasset.adb.us-ashburn-1.oraclecloudapps.com/oml"
+) - using the user "DMISHRA" and the Admin password provided for the database ( as the DMISHRA user has the same password as Admin). You can also change the DMISHRA or Admin passwords after.
+3. In OML Home page Click on Hamburger icon and go to Notebooks
+4. Import Data Lakehouse Communications-Tower Analytics using .json file downloaded before.
+5. Once Imported successfully Click on Open.
+6. To run any of the paragraphs, click on the Run button in the right hand side of the paragraph. The second and third buttons next to it can be used to Show/Hide Editor and Show/Hide Output.
+
+* Visualizing Results in OML
+
+1. Click on the Settings icon right corner to avail the different options such as clearing the output, removing a paragraph, shifting the paragraph, changing the font appearance, hide title and to disable a running paragraph.
+2. If required, a new paragraph can be added to the notebook by hovering between two paragraphs or between a paragraph and the Notebook Title section
+3. If the results of a Python code paragraphs needs to be visualized, the paragraph should start with %python and ends with a dataframe. (SQL query needs to start with %sql).
+4. Once the query is rendered the following visualization Table, Bar Chart, Pie Chart, Area Chart, Line Chart, Scatter Chart can be selected to render it in particular visualization.
+5. The rendered Data can be downloaded as a CSV or TSV.
+6. Click the Settings icon to view the Available Fields, which are the tables, returned in the query result. Any of these fields can be selected in the Keys area (which are rendered on the X-axis) or Values area (which are rendered on the Y-axis). If the data needs to be grouped according to some field, that field can be added to the Groups area.
+
+__Next part is the Data Visualization by OCI Analytics - can be monitored visually through Analytics Dashboard :__
+
+After the soltution was deployed successfully from Resource Manager you will need to get the outputs especially the private key that was generated on the fly and also the public IP of the Bastion and to connect to it.
+
+- Go to Outputs - click on "show" at the "generated_ssh_private_key_for_bastion" output and click copy.
+
+- Go inside your terminal and create a file for your private key, paste the key copied inside the file and save the file.
+
+An example is below:
+```
+$ touch private_key_bastion.pem
+$ vi private_key_bastion.pem
+$ cat private_key_bastion.pem
+-----BEGIN RSA PRIVATE KEY-----
+MIIJJwIBAAKCAgEAomiZwto82D6e1+hzm5mjxAQ+LnzBGs40XkbRwJH2us/nQLOW
+DX7eV91X8KQpWSwPSiYZsZ2j7ZknqLUA6k0VP/KNMop203temNunjUC6ZYgTtzcP
+gMQqJ3G3IGb4eIgcvm/WziOheSgKsk7XYufGMdvAE8iDyS+15sSZEILLPtpKlCEc
+..........
+..........
+zM15dhNSSj5sqJJHurrInBVf0J6U5D+glexxo/TA/qz7IhSJ+NY/iCANwg==
+-----END RSA PRIVATE KEY-----
+
+$ chmod 600 private_key_bastion.pem
+
+```
+
+__SSH to the bastion:__
+
+```
+$ ssh -i private_key_bastion.pem opc@ui_data_server_public_ip -o IdentitiesOnly=yes
+
+```
+To interact with the Oracle Analytics API you will need to set up the credentials.
+As the deployment it's getting automated all your credentials from the terraform like , ociUserId ,ociKeyFingerprint ,ociTenancyId and ociRegion you will need to update also your private key.
+For this - edit the /home/opc/.oci/oci_api_key.pem file - and replace the content of the key with your own private key that you used to deploy the solution with terraform, the one that you use for authentificating on the OCI API located into your ~/.oci/config file.
+
+Now you will need to do one manual step to grab the token of the Oracle Analytics Cloud and insert it in a shell script.
+
+- Go inside your Tenancy, click on the Menu, click on Identity & Security and under Identity click on Federation.
+Click on your identity provider and click on the link in the middle called : Oracle Identity Cloud Service Console: https://idcs-abcd.identity.oraclecloud.com/ui/v1/adminconsole
+
+
+
+- Now click on the Menu and Press Oracle Cloud Services.
+
+
+
+- Inside the Oracle Cloud Services search for your Analytics Cloud deployed and click on it.
+
+
+
+- Now go to Configuration ; click Resources.
+Here you need to modify:
+- Access Token Expiration from 100 seconds to the maximum of 604800 seconds.
+- Dezactivate the Is Refresh Token Allowed option
+- Refresh Token Expiration from 86,400 seconds. to 604800 seconds.
+
+- Click Save button in the right top.
+
+
+
+- Now, on the same page click Details and click on Generate Access Token ; and press: Download Token.
+- Open the Token and copy the key - after the app_access_token from " to the end of ".
+
+
+
+
+- Go back to your terminal that it's connected to the Bastion VM Instance and edit the __finalize.sh__ script located in /home/opc/ folder. Here is a line called __Authorization_Token=__ that needs to be filled with the Token that you have copied on the last step.
+
+
+
+
+
+Now from the terminal run the script using the __./finalize.sh__ command.
+
+The script will run and you will see this Output:
+
+```
+[opc@vnc-datamodelsmanufacturing ~]$ ./finalize.sh
+-- Getting Started
+-- Retrive the original bar file from the shared object storage
+-- Fixing the bar file
+-- Modify the links for the picture using the current hostname and tenancy name
+-- Create new bar file for OAC with the custom configuration
+-- Upload the snapshot to the object storage in our tenancy
+-- Get details of an Analytics instance
+HTTP/1.1 200 OK
+-- Create the Register Snapshot New Json File
+-- Register an existing snapshot using the new json file created with all the variables based on your environment
+HTTP/1.1 100 Continue
+HTTP/1.1 202 Accepted
+-- Get all snapshots available for your OAC already registered
+HTTP/1.1 200 OK
+-- Get the ID of your registered snapshoot and use it in the next step
+-- Create the Restore Snapshot New Json File with your registered ID of the snapshot
+-- Restore a snapshot in an Analytics instance
+HTTP/1.1 202 Accepted
+
+
+-- Restore Done!
+```
+
+Next we need to transfer the generated wallet from the Autonomous Database to your local PC. To do this you need to exit the bastion and from your local terminal use this command:
+
+* Note: the key is the the generated private key of the bastion ; the IP is the public ip of the bastion, the wallet it's located in /home/opc AND the name of the wallet it's wallet_DB_NAME.zip , where the DB_NAME is the name of your database.
+
+```
+$ scp -i private_key.pem opc@129.213.104.154:/home/opc/wallet_TelcoAsset.zip .
+wallet_TelcoAsset.zip 100% 21KB 68.7KB/s 00:00
+```
+
+__Now everything it's done and ready ! You will want to connect to Oracle Analytics instance to see the data sets - open a web browser and connect copy paste the URL of the Analytic Cloud and hit enter.__
+
+Here you will see already all the imported dashboards and reports. Last step it's to connect to your existing DB. For this go to : Menu - Data - Connections and connect each of the connections to the DB. (without the Comms_Hive_DB - this connection is used only for the integration with a HIVE cluster. If you already have one you can connect to your data from here. If you don't have one and you have deployed the solution using the Big Data Service - that is optonal - you will find the details below).
+
+Right Click on TowerDataset and select Inspect.
+Use the password of the db for admin that you have provided in the provisioning phase and select your generated wallet that you have transfered from the bastion in the previous step to your local PC - file starting with "wallet_dbname.zip". Click Save.
+
+
+
+Right Click on TowerAnalytics and select Inspect.
+Use the password of the db for admin that you have provided in the provisioning phase and select your generated wallet that you have transfered from the bastion in the previous step to your local PC - file starting with "wallet_dbname.zip". Click Save.
+
+
+
+Now you can go in your workbook called TowerCanvas and in inside there are 5 canvas. Click on each of them to get the info. Note - The 5th canvas it's only used for HIVE. So if the connection for the HIVE it's not done, no data will be displayed there.
+
+
+__SELECT AI__
+
+To use the select ai - you need to connect to the ADW with your credentials provided and wallet file using sql developer and run:
+
+```
+EXEC DBMS_CLOUD_AI.SET_PROFILE('DMISHRA');
+```
+
+After that you can run the select ai, here are some examples:
+
+```
+select ai tell me my estimated cost revenue;
+select ai tell me my estimated cost revenue on The Chapters;
+select ai tell me my nearest neighbor with a revenue more than 22227;
+select ai tell me my nearest neighbor with a revenue more than 29227;
+select ai tell me the site operation cost revenue;
+select ai tell me the site operation cost revenue with the name Telstra Customer NILLIBUBICA ;
+select ai tell me the revenue on CFA Site 118 Sawmill Rd MUCKLEFORD ;
+
+You can use any of the followings attributes for select ai:
+showsql
+narrate
+chat
+runsql
+```
+
+__(OPTIONAL)Data Catalog - To harvest metadata from Autonomous Data Warehouse__
+The solution will deploy also the Data Catalog Service with a Data Catalog and a Data Asset created inside.
+
+1. For this created Data Asset, Add Connection by providing the details of the Communication Tower schemas.
+2. Provide the required database wallet downloaded from the bastion and, schema credentials for Admin and password provided.
+3. Test the connection to make sure it is successful.
+
+
+__(OPTIONAL)BIG DATA SERVICE COMPONENTS:__
+If you deployed the solution with the Big Data Service created you will want to do the followings:
+
+
+1. In the OCI Console after the deployed was got successfully created. Click on BDS Cluster -> More Actions -> Add Cloud SQL and select compute shape and other required details
+2. By default, all the BDS cluster nodes will have private IP address so we can’t access the console directly via external network. Need to map private IP address to reserved public IP address to access it from external network or via to login to physical server
+3. On the Clusters page, click the name of BDS cluster and On the Cluster Information tab of the Cluster Details page, under Network Information, Copy the Subnet OCID to retrieve it later in this process.
+4. On the same page, under List of Cluster Nodes in the IP Address column, copy the private IP address of Master, Utility and Cloud SQL node to retrieve it later in this process.
+5. In the Cloud Console click on Cloud Shell and execute the below steps for each of Master, Utility and Cloud SQL node and note the Reserved Public IPs
+
+```
+export DISPLAY_NAME=
+export SUBNET_OCID=
+export PRIVATE_IP=
+oci network public-ip create --display-name $DISPLAY_NAME --compartment-id `oci network private-ip list --subnet-id $SUBNET_OCID --ip-address $PRIVATE_IP | jq -r '.data[] | ."compartment-id"'` --lifetime "RESERVED" --private-ip-id `oci network private-ip list --subnet-id $SUBNET_OCID --ip-address $PRIVATE_IP | jq -r '.data[] | ."id"'`
+```
+
+__HDFS and HIVE Configuration__
+1. Login to utility node using Reserved Public IP, Create a new directory and download the csv files using wget:
+```
+mkdir comms_telecom_tower
+cd comms_telecom_tower/
+wget https://objectstorage.us-ashburn-1.oraclecloud.com/p/q1Fi0ijG2x5aLO3NoK5DeYR5ks3ZFm4GD2yQ3G0BJNkfPPp3AcukIX-5Ljh73g8u/n/oradbclouducm/b/DataModelsTelco/o/Blackspots.csv/Blackspots.csv
+```
+
+2. Create Hadoop distributed file system directory Ex :
+```
+hdfs dfs –mkdir /warehouse/tablespace/external/hive/View1
+```
+3. Put the csv files to HDFS using below commands Ex :
+```
+hdfs dfs -put BLACKSPOTS.csv /warehouse/tablespace/external/hive/View1
+```
+4. Login to hive via beeline using credentials hive/hive from Utility node and Create Database
+```
+create database COMMS_LAKEHOUSE_TELECOM_TOWER_HIVE;
+```
+5. Use Created Database and create external table for backspots.csv file using sql file ( Please find the below Reference )
+```
+use COMMS_LAKEHOUSE_TELECOM_TOWER_HIVE;
+
+CREATE external TABLE IF NOT EXISTS COMMS_LAKEHOUSE_TELECOM_TOWER_HIVE.BLACKSPOTS_HIVE (
+LOCATIONNAME STRING,
+IDENTIFIER STRING,
+ROAD_SECTION STRING,
+PUBLIC_INTEREST_PREMISES STRING,
+STATE STRING,
+LATITUDE STRING,
+LONGITUDE STRING,
+ELECTORATE STRING,
+LOCAL_GOVERNMENT_AREA STRING,
+POST_CODE STRING,
+REMOTENESS_AREA STRING,
+UPDATED STRING,
+REGIONAL_DEVELOPMENT_AUTHORITY STRING)
+ROW FORMAT DELIMITED
+FIELDS TERMINATED BY ','
+location '/warehouse/tablespace/external/hive/View1';
+```
+
+In Oracle Analytics Cloud - to have the 5th Canvas working you will need to do the followings:
+
+1. Navigate to actions menu (over right side ) of the Comms_Hive_DB connection and click on Inspect and update the below details
+Host : Cloud SQL Public IP address
+Port : 10000
+User name : hive
+Password : hive
+
+2. Synchronizing Hive Databases from Ambari
+- Login to Ambari using https://:7183
+- Select Cloud SQL under Services and Navigate to CONFIGS and make sure you have updated (*) in Synchronized Hive Databases under Advanced metadata-sync option
+- Navigate to Summary, click on “BIG DATA SQL QUERY SERVER“ and click on host
+- Under Summary -> ”BIG DATA SQL QUERY SERVER / Cloud SQL“ -> More Actions , Click on Synchronize Hive Databases
+- Make sure it synchronization is 100% completed
+
+- At this point you can run the select queries on both hive and cloud sql to validate the synchronization
+Ex : In Cloud SQL
+```
+select * from COMMS_LAKEHOUSE_TELECOM_TOWER_HIVE.BLACKSPOTS_HIVE where rownum < 2;
+```
+Ex : In Hive
+```
+select * from COMMS_LAKEHOUSE_TELECOM_TOWER_HIVE.BLACKSPOTS_HIVE limit 2;
+```
+
+
+# Deploy Using the Terraform CLI
+
+## Clone the Module
+Now, you'll want a local copy of this repo. You can make that with the commands:
+
+ git clone https://github.com/oracle-devrel/terraform-oci-oracle-cloud-foundation.git
+ cd terraform-oci-oracle-cloud-foundation/cloud-foundation/solutions/Telco-Asset_Value_Maximization
+ ls
+
+## Deployment
+
+- Follow the instructions from Prerequisites links in order to install terraform.
+- Download the terraform version suitable for your operating system.
+- Unzip the archive.
+- Add the executable to the PATH.
+- You will have to generate an API signing key (public/private keys) and the public key should be uploaded in the OCI console, for the iam user that will be used to create the resources. Also, you should make sure that this user has enough permissions to create resources in OCI. In order to generate the API Signing key, follow the steps from: https://docs.us-phoenix-1.oraclecloud.com/Content/API/Concepts/apisigningkey.htm#How
+ The API signing key will generate a fingerprint in the OCI console, and that fingerprint will be used in a terraform file described below.
+- You will also need to generate an OpenSSH public key pair. Please store those keys in a place accessible like your user home .ssh directory.
+
+## Prerequisites
+
+- Install Terraform v0.13 or greater: https://www.terraform.io/downloads.html
+- Install Python 3.6: https://www.digitalocean.com/community/tutorials/how-to-install-python-3-and-set-up-a-local-programming-environment-on-centos-7
+- Generate an OCI API Key
+- Create your config under \$home*directory/.oci/config (run \_oci setup config* and follow the steps)
+- Gather Tenancy related variables (tenancy_id, user_id, local path to the oci_api_key private key, fingerprint of the oci_api_key_public key, and region)
+
+### Installing Terraform
+
+Go to [terraform.io](https://www.terraform.io/downloads.html) and download the proper package for your operating system and architecture. Terraform is distributed as a single binary.
+Install Terraform by unzipping it and moving it to a directory included in your system's PATH. You will need the latest version available.
+
+### Prepare Terraform Provider Values
+
+**variables.tf** is located in the root directory. This file is used in order to be able to make API calls in OCI, hence it will be needed by all terraform automations.
+
+In order to populate the **variables.tf** file, you will need the following:
+
+- Tenancy OCID
+- User OCID
+- Local Path to your private oci api key
+- Fingerprint of your public oci api key
+- Region
+
+On top of this default variables, for this solution you will need to get also:
+
+- ociPrivateKeyWrapped
+
+#### **Getting the Tenancy and User OCIDs**
+
+You will have to login to the [console](https://console.us-ashburn-1.oraclecloud.com) using your credentials (tenancy name, user name and password). If you do not know those, you will have to contact a tenancy administrator.
+
+In order to obtain the tenancy ocid, after logging in, from the menu, select Administration -> Tenancy Details. The tenancy OCID, will be found under Tenancy information and it will be similar to **ocid1.tenancy.oc1..aaa…**
+
+In order to get the user ocid, after logging in, from the menu, select Identity -> Users. Find your user and click on it (you will need to have this page open for uploading the oci_api_public_key). From this page, you can get the user OCID which will be similar to **ocid1.user.oc1..aaaa…**
+
+#### **Creating the OCI API Key Pair and Upload it to your user page**
+
+Create an oci_api_key pair in order to authenticate to oci as specified in the [documentation](https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#How):
+
+Create the .oci directory in the home of the current user
+
+`$ mkdir ~/.oci`
+
+Generate the oci api private key
+
+`$ openssl genrsa -out ~/.oci/oci_api_key.pem 2048`
+
+Make sure only the current user can access this key
+
+`$ chmod go-rwx ~/.oci/oci_api_key.pem`
+
+Generate the oci api public key from the private key
+
+`$ openssl rsa -pubout -in ~/.oci/oci_api_key.pem -out ~/.oci/oci_api_key_public.pem`
+
+You will have to upload the public key to the oci console for your user (go to your user page -> API Keys -> Add Public Key and paste the contents in there) in order to be able to do make API calls.
+
+After uploading the public key, you can see its fingerprint into the console. You will need that fingerprint for your variables.tf file.
+You can also get the fingerprint from running the following command on your local workstation by using your newly generated oci api private key.
+
+`$ openssl rsa -pubout -outform DER -in ~/.oci/oci_api_key.pem | openssl md5 -c`
+
+#### **Generating an SSH Key Pair on UNIX or UNIX-Like Systems Using ssh-keygen**
+
+- Run the ssh-keygen command.
+
+`ssh-keygen -b 2048 -t rsa`
+
+- The command prompts you to enter the path to the file in which you want to save the key. A default path and file name are suggested in parentheses. For example: /home/user_name/.ssh/id_rsa. To accept the default path and file name, press Enter. Otherwise, enter the required path and file name, and then press Enter.
+- The command prompts you for a passphrase. Enter a passphrase, or press ENTER if you don't want to havea passphrase.
+ Note that the passphrase isn't displayed when you type it in. Remember the passphrase. If you forget the passphrase, you can't recover it. When prompted, enter the passphrase again to confirm it.
+- The command generates an SSH key pair consisting of a public key and a private key, and saves them in the specified path. The file name of the public key is created automatically by appending .pub to the name of the private key file. For example, if the file name of the SSH private key is id_rsa, then the file name of the public key would be id_rsa.pub.
+ Make a note of the path where you've saved the SSH key pair.
+ When you create instances, you must provide the SSH public key. When you log in to an instance, you must specify the corresponding SSH private key and enter the passphrase when prompted.
+
+#### **Getting the Region**
+
+Even though, you may know your region name, you will needs its identifier for the variables.tf file (for example, US East Ashburn has us-ashburn-1 as its identifier).
+In order to obtain your region identifier, you will need to Navigate in the OCI Console to Administration -> Region Management
+Select the region you are interested in, and save the region identifier.
+
+#### **Getting the private key wrapped.**
+
+The key that you have created or your own existing private key must be wrapped.
+ - You must pass this signing key in the payload for some snapshot APIs. Before you add it to the payload, you must Base64 encode the private key (ociPrivateKeyWrapped). For example, to generate a Base64 encoded string from your private key:
+
+ - On Mac: cat myprivate-key.pem | base64 -o mywrapped-private-key.pem
+ - On Linux: cat myprivate-key.pem | base64 -w 0 > mywrapped-private-key.pem
+ - Note: Ensure that the private key file that you encode includes -----BEGIN and -----END tags.
+
+#### **Prepare the variables.tf file**
+
+You will have to modify the **variables.tf** file to reflect the values that you’ve captured.
+
+```
+variable "tenancy_ocid" {
+ type = string
+ default = "" (tenancy ocid, obtained from OCI console - Profile -> Tenancy)
+}
+
+variable "region" {
+ type = string
+ default = "" (the region used for deploying the infrastructure - ex: eu-frankfurt-1)
+}
+
+variable "compartment_id" {
+ type = string
+ default = "" (the compartment OCID used for deploying the solution - ex: ocid1.compartment.oc1..aaaaaa...)
+}
+
+variable "user_ocid" {
+ type = string
+ default = "" (user ocid, obtained from OCI console - Profile -> User Settings)
+}
+
+variable "fingerprint" {
+ type = string
+ default = "" (fingerprint obtained after setting up the API public key in OCI console - Profile -> User Settings -> API Keys -> Add Public Key)
+}
+
+variable "private_key_path" {
+ type = string
+ default = "" (the path of your local oci api key - ex: /root/.ssh/oci_api_key.pem)
+}
+
+variable "ociPrivateKeyWrapped" {
+ default = "LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFcEFJQkFBS0NBUUVBeXBjNmsxWjAwNHhyWGF1ZjlXMGV6OTV6cUk2SU91dnN5aTRrOFUyTDQ1ZlY0QkExCm02N0FUbEtJTy9vYlBTZGp1Z3dHQzkrTzM2Rjk0cWdZV2xLZDNuRmFHYW8kM0Y0U0Mm9lTFcKbVU2Y2c3ei80bzNWZlZ2Kzl6di8yU2kvL0LSGFpeDN1RHMzWUh5QnJURVAveUQzSeFBjMmh0Y1A3eFBoTGdGTmhobXpaaDEKcYOW0rS3I5Y0Z5b0JxaHMxbnJBVXlWalFwNlRyei9UT1ZuCm9UREthbjlmMEVieVFwSGtRVnJ5MC9nYWtUb0hIajA0MjczeU9ROGZCQlRyRnNMRGFlTml1ajlyQW9HQkFONW0KU2xXL095QWVjNE50K2lRM0hCSDU5L2w3U01SU3hnL0tEMVgzamZJL1d5aGl6a1daaFBIa3dvd2dZVzdFUjVEUQpJU0xtZXZGOVdkYVNhWmlHR1RpV1Y5R2dnVTBlaW9RVXQ2OTVyZ2hBN1o3bitaNVpoN0k5dGM2MGkwUHRFVWJsCm1JckFzbU4wdWpnWDVQZDRobTdoaWVKZE1EQlFUVGFQaEZudWVxQnRBb0dCQU53ZkxJo= EXAMPLE"
+}
+
+# This variable needs to be blank for now.
+# It's used to create a couple of files on the bastion that will be run later on after the deployment it's done.
+# This Authorization Token you will get it from the Identity Cloud Service portal on the Oracle Analytics under Oracle Cloud Services.
+
+variable "Authorization_Token" {
+ default = ""
+}
+```
+
+## Repository files
+* **images(folder)** - Contains images to be used inside the README.md file
+* **modules(folder)** - ( this folder will be present only for the Resource Manager zipped files) Contains folders with subsystems and modules for each section of the project: networking, autonomous database, analytics cloud, etc.
+For this solution there is inside the modules folder; another folder called provisioner that contains the configuration files.
+* **CONTRIBUTING.md** - Contributing guidelines, also called Contribution guidelines, the CONTRIBUTING.md file, or software contribution guidelines, is a text file which project managers include in free and open-source software packages or other open media packages for the purpose of describing how others may contribute user-generated content to the project.The file explains how anyone can engage in activities such as formatting code for submission or submitting patches
+* **Data-Lakehouse-Communications-Tower-Analytics-using-OML.json** - It's the notebook json - the file that you will need to use in the Autonomous Database Machine Learning
+* **LICENSE** - The Universal Permissive License (UPL), Version 1.0
+* **local.tf** - Local values can be helpful to avoid repeating the same values or expressions multiple times in a configuration, but if overused they can also make a configuration hard to read by future maintainers by hiding the actual values used.Here is the place where all the resources are defined.
+* **main.tf** - Main Terraform script used for instantiating the Oracle Cloud Infrastructure provider and all subsystems modules
+* **outputs.tf** - Defines project's outputs that you will see after the code runs successfuly
+* **provider.tf** - The terraform provider that will be used (OCI)
+* **README.md** - This file
+* **schema.yaml** - Schema documents are recommended for Terraform configurations when using Resource Manager. Including a schema document allows you to extend pages in the Oracle Cloud Infrastructure Console. Facilitate variable entry in the Create Stack page by surfacing SSH key controls and by naming, grouping, dynamically prepopulating values, and more. Define text in the Application Information tab of the stack detail page displayed for a created stack.
+* **variables.tf** - Project's global variables
+
+
+Secondly, populate the `terraform.tf` file with the disared configuration following the information:
+
+
+# Autonomous Data Warehouse
+
+The ADW subsystem / module is able to create ADW/ATP databases.
+
+* Parameters:
+ * __db_name__ - The database name. The name must begin with an alphabetic character and can contain a maximum of 14 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy.
+ * __db_password__ - The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE".
+ * __db_compute_model__ - The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value.
+ * __db_compute_count__ - The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is on Shared or Dedicated infrastructure. For an Autonomous Database on Shared infrastructure, the 'ECPU' compute model requires values in multiples of two. Required when using the computeModel parameter. When using cpuCoreCount parameter, it is an error to specify computeCount to a non-null value.
+ * __db_size_in_tbs__ - The size, in gigabytes, of the data volume that will be created and attached to the database. This storage can later be scaled up if needed. The maximum storage value is determined by the infrastructure shape. See Characteristics of Infrastructure Shapes for shape details.
+ * __db_workload__ - The Autonomous Database workload type. The following values are valid:
+ - OLTP - indicates an Autonomous Transaction Processing database
+ - DW - indicates an Autonomous Data Warehouse database
+ - AJD - indicates an Autonomous JSON Database
+ - APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type. *Note: db_workload can only be updated from AJD to OLTP or from a free OLTP to AJD.
+ * __db_version__ - A valid Oracle Database version for Autonomous Database.db_workload AJD and APEX are only supported for db_version 19c and above.
+ * __db_enable_auto_scaling__ - Indicates if auto scaling is enabled for the Autonomous Database OCPU core count. The default value is FALSE.
+ * __db_is_free_tier__ - Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled. When db_workload is AJD or APEX it cannot be true.
+ * __db_license_model__ - The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using shared Exadata infrastructure, if a value is not specified, the system will supply the value of BRING_YOUR_OWN_LICENSE. It is a required field when db_workload is AJD and needs to be set to LICENSE_INCLUDED as AJD does not support default license_model value BRING_YOUR_OWN_LICENSE.
+ * __db_data_safe_status__ - (Updatable) Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED.
+ * __db_operations_insights_status__ - (Updatable) Status of Operations Insights for this Autonomous Database. Values supported are ENABLED and NOT_ENABLED
+ * __db_database_management_status__ - Status of Database Management for this Autonomous Database. Values supported are ENABLED and NOT_ENABLED
+ * __llmpw__ - Provide the LLM token provided by your openai account
+
+Below is an example:
+
+```
+variable "db_name" {
+ type = string
+ default = "TelcoAsset"
+}
+
+variable "db_password" {
+ type = string
+ default = ""
+}
+
+variable "db_compute_model" {
+ type = string
+ default = "ECPU"
+}
+
+variable "db_compute_count" {
+ type = number
+ default = 4
+}
+
+variable "db_size_in_tbs" {
+ type = number
+ default = 1
+}
+
+variable "db_workload" {
+ type = string
+ default = "DW"
+}
+
+variable "db_version" {
+ type = string
+ default = "19c"
+}
+
+variable "db_enable_auto_scaling" {
+ type = bool
+ default = true
+}
+
+variable "db_is_free_tier" {
+ type = bool
+ default = false
+}
+
+variable "db_license_model" {
+ type = string
+ default = "BRING_YOUR_OWN_LICENSE"
+}
+
+variable "db_data_safe_status" {
+ type = string
+ default = "NOT_REGISTERED"
+ # default = "REGISTERED"
+}
+
+variable "db_operations_insights_status" {
+ type = string
+ default = "NOT_ENABLED"
+ # default = "ENABLED"
+}
+
+variable "db_database_management_status" {
+ type = string
+ # default = "NOT_ENABLED"
+ # default = "ENABLED"
+ default = "ENABLED"
+}
+
+# LLM token provided by your openai account
+
+variable "llmpw" {
+ default = ""
+}
+
+```
+
+# Oracle Analytics Cloud
+This resource provides the Analytics Instance resource in Oracle Cloud Infrastructure Analytics service.
+Create a new AnalyticsInstance in the specified compartment. The operation is long-running and creates a new WorkRequest.
+
+* Parameters
+ * __Oracle_Analytics_Instance_Name__ - The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.
+ * __analytics_instance_feature_set__ - Analytics feature set: ENTERPRISE_ANALYTICS or SELF_SERVICE_ANALYTICS set
+ * __analytics_instance_license_type__ - The license used for the service: LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE
+ * __analytics_instance_idcs_access_token__ - IDCS access token identifying a stripe and service administrator user. THe IDCS access token can be obtained from OCI console - Menu -> Identity & Security -> Federation -> OracleIdentityCloudService - and now click on the Oracle Identity Cloud Service Console)
+ Access Oracle Identity Cloud Service console, click the avatar icon on the top-right corner, and then click My Access Tokens.
+ You can download an access token in the following ways:
+ Select Invokes Identity Cloud Service APIs to specify the available administrator roles that are assigned to you. The APIs from the specified administrator roles will be included in the token.
+ Select Invokes other APIs to select confidential applications that are assigned to the user account.
+ Click Select an Application to add a configured confidential resource application. On the Select an Application window, the list of assigned confidential applications displays.
+ Click applications to select them, and then click Add. The My Access Tokens page lists the added applications.
+ In the Token Expires in (Mins) field, select or enter how long (in minutes) the access token you're generating can be used before it expires. You can choose to keep the default number or specify between 1 and 527,040.
+ Click Download Token. The access token is generated and downloaded to your local machine as a tokens.tok file.
+ * __analytics_instance_capacity_capacity_type__ - The capacity model to use. Accepted values are: OLPU_COUNT, USER_COUNT . Values are case-insensitive.
+ * __analytics_instance_capacity_value__ - The capacity value selected (OLPU count, number of users, …etc…). This parameter affects the number of CPUs, amount of memory or other resources allocated to the instance.
+
+
+Below is an example:
+```
+
+variable "Oracle_Analytics_Instance_Name" {
+ default = "TelcoAsset"
+}
+
+variable "analytics_instance_feature_set" {
+ type = string
+ default = "ENTERPRISE_ANALYTICS"
+}
+
+variable "analytics_instance_license_type" {
+ type = string
+ default = "LICENSE_INCLUDED"
+}
+
+variable "analytics_instance_idcs_access_token" {
+ type = string
+ default = ""
+}
+
+variable "analytics_instance_capacity_capacity_type" {
+ type = string
+ default = "OLPU_COUNT"
+}
+
+variable "analytics_instance_capacity_value" {
+ type = number
+ default = 1
+}
+
+```
+
+# Object Storage
+This resource provides the Bucket resource in Oracle Cloud Infrastructure Object Storage service.
+Creates a bucket in the given namespace with a bucket name and optional user-defined metadata. Avoid entering confidential information in bucket names.
+
+* Parameters:
+ * __bucket_name__ - The name of the bucket. Valid characters are uppercase or lowercase letters, numbers, hyphens, underscores, and periods. Bucket names must be unique within an Object Storage namespace. Avoid entering confidential information. example: Example: my-new-bucket1
+ * __bucket_access_type__ - The type of public access enabled on this bucket. A bucket is set to NoPublicAccess by default, which only allows an authenticated caller to access the bucket and its contents. When ObjectRead is enabled on the bucket, public access is allowed for the GetObject, HeadObject, and ListObjects operations. When ObjectReadWithoutList is enabled on the bucket, public access is allowed for the GetObject and HeadObject operations.
+ * __bucket_storage_tier__ - The type of storage tier of this bucket. A bucket is set to 'Standard' tier by default, which means the bucket will be put in the standard storage tier. When 'Archive' tier type is set explicitly, the bucket is put in the Archive Storage tier. The 'storageTier' property is immutable after bucket is created.
+ * __bucket_events_enabled__ - Whether or not events are emitted for object state changes in this bucket. By default, objectEventsEnabled is set to false. Set objectEventsEnabled to true to emit events for object state changes. For more information about events, see Overview of Events.
+
+
+Below is an example:
+```
+variable "bucket_name" {
+ type = string
+ default = "TelcoAsset"
+}
+
+variable "bucket_access_type" {
+ type = string
+ default = "NoPublicAccess"
+}
+
+variable "bucket_storage_tier" {
+ type = string
+ default = "Standard"
+}
+
+variable "bucket_events_enabled" {
+ type = bool
+ default = false
+}
+```
+
+# (OPTIONAL) Big Data Service service
+This resource provides the Bds Instance resource in Oracle Cloud Infrastructure Big Data Service service. Creates a Big Data Service cluster.
+
+* Parameters
+ * __create_big_data_cluster__ - (Required) Please provide if you want to create the cluster or no. (variables: yes/no) ; By default it's no.
+ * __big_data_cluster_admin_password__ - (Required) Base-64 encoded password for the cluster (and Cloudera Manager) admin user. e.g.: echo Init01$$ | base64
+ * __big_data_cluster_public_key__ - (Required) The SSH public key used to authenticate the cluster connection.
+ * __big_data_cluster_version__ - (Required) Version of the Hadoop distribution. ODH1 is the new version with Ambari Server - no autoscalling working at the moment. "CDH6" // old version - Cloudera Manager version with autoscalling working.
+ * __big_data_display_name__ - (Required) (Updatable) Name of the Big Data Service cluster.
+ * __big_data_is_high_availability__ - (Required) Boolean flag specifying whether or not the cluster is highly available (HA).
+ * __big_data_is_secure__ - (Required) Boolean flag specifying whether or not the cluster should be set up as secure.
+ * __big_data_master_node_spape__ - (Required) The list of nodes in the Big Data Service cluster. The (Required) (Updatable) Shape of the node MASTER.
+ * __big_data_master_node_block_volume_size_in_gbs__ - (Required) The size of block volume in GB to be attached to a given node. All the details needed for attaching the block volume are managed by service itself. Minimum size is 150 GB
+ * __big_data_master_node_number_of_nodes__ - Number of Master Nodes. Minimum 1 it's needed.
+ * __big_data_util_node_shape__ - (Required) The list of nodes in the Big Data Service cluster. The (Required) (Updatable) Shape of the node UTIL Server.
+ * __big_data_util_node_block_volume_size_in_gbs__ - (Required) The size of block volume in GB to be attached to a given node. All the details needed for attaching the block volume are managed by service itself. Minimum size is 150 GB
+ * __big_data_util_node_number_of_nodes__ - Number of Util Nodes. Minimum 1 it's needed.
+ * __big_data_worker_node_shape__ - (Required) The list of nodes in the Big Data Service cluster. The (Required) (Updatable) Shape of the node WORKERs Servers.
+ * __big_data_worker_node_block_volume_size_in_gbs__ - (Required) The size of block volume in GB to be attached to a given node. All the details needed for attaching the block volume are managed by service itself. Minimum size is 150 GB
+ * __bbig_data_worker_node_number_of_nodes__ - Number of Workers Nodes. Minimum 3 it's needed!
+
+
+Below is an example:
+```
+
+variable "create_big_data_cluster" {
+ default = "no"
+}
+
+variable "big_data_cluster_admin_password" {
+ default = "QWR3RGJPUkNMMTIzNCM=" # Password has to be Base64 encoded, e.g.: echo AdwDbORCL1234# | base64
+}
+
+variable "big_data_cluster_public_key" {
+ default = "/users/user/.ssh/id_rsa.pub" # example : "/root/.ssh/id_rsa.pub"
+}
+
+variable "big_data_cluster_version" {
+ default = "ODH1"
+}
+
+variable "big_data_display_name" {
+ default = "lakehouse"
+ }
+
+variable "big_data_is_high_availability" {
+ default = false
+}
+
+variable "big_data_is_secure" {
+ default = false
+}
+
+variable "big_data_master_node_spape" {
+ default = "VM.Standard2.4"
+}
+
+variable "big_data_master_node_block_volume_size_in_gbs" {
+ default = 150 // minimum size is 150
+}
+
+variable "big_data_master_node_number_of_nodes" {
+ default = 1
+}
+
+variable "big_data_util_node_shape" {
+ default = "VM.Standard2.4"
+}
+
+variable "big_data_util_node_block_volume_size_in_gbs" {
+ default = 150 // minimum size is 150
+}
+
+variable "big_data_util_node_number_of_nodes" {
+ default = 1
+}
+
+variable "big_data_worker_node_shape" {
+ default = "VM.Standard2.1"
+}
+
+variable "big_data_worker_node_block_volume_size_in_gbs" {
+ default = 150 // minimum size is 150
+}
+
+variable "big_data_worker_node_number_of_nodes" {
+ default = 3 // worker_node.0.number_of_nodes to be at least (3)
+}
+```
+
+# Data Catalog
+
+This resource provides the Catalog resource in Oracle Cloud Infrastructure Data Catalog service.
+Creates a new data catalog instance that includes a console and an API URL for managing metadata operations. For more information, please see the documentation.
+
+* Parameters:
+ * __catalog_display_name__ - Data catalog identifier.
+
+
+Below is an example:
+
+```
+variable "catalog_display_name" {
+ type = string
+ default = "TelcoAsset"
+}
+```
+
+
+# KeyGen
+Generates a secure private key and encodes it as PEM. This resource is primarily intended for easily bootstrapping throwaway development environments.
+
+In the main.tf file we are calling the keygen module that will create one public and one private key.
+This keys are neccesary, as the public key will be generated and injected in all the instances, and the private key will be generated.
+Both can be found in the solution folder if you want to use them after the deployment it's done.
+For Resource Manager, the keys can be found in the dashboard under the resource section.
+
+Below is an example:
+```
+module "keygen" {
+ source = "../../../cloud-foundation/modules/cloud-foundation-library/keygen"
+ display_name = "keygen"
+ subnet_domain_name = "keygen"
+}
+```
+
+
+# Compute DataModelsTelco Server VM Configuration
+The compute module will create one VM, acting like a Bastion to provision the solution.
+For the UI Data Server VM we are using the Oracle-Linux-Cloud-Developer-8.5-2022.05.22-0 image as it comes with all the neccesary software installed.
+
+More information about this image and about the OCIDs required to be provided as a variable can be found here:
+
+https://docs.oracle.com/en-us/iaas/images/image/2e439f8e-e98f-489b-82a3-338360b46b82/
+
+Here is the list of all the OCID images for each region.
+
+```
+Image OCIDs
+ Region OCID
+
+ eu-amsterdam-1 = "ocid1.image.oc1.eu-amsterdam-1.aaaaaaaabcomraotpw6apg7xvmc3xxu2avkkqpx4yj7cbdx7ebcm4d52halq"
+ eu-stockholm-1 = "ocid1.image.oc1.eu-stockholm-1.aaaaaaaa52kiqhwcoprmwfiuwureucv7nehqjfofoicwptpixdphzvon2mua"
+ me-abudhabi-1 = "ocid1.image.oc1.me-abudhabi-1.aaaaaaaa7nqsxvp4vp25gvzcrvld6xaiyxaxmzepkb5gz6us5sfkgeeez2zq"
+ ap-mumbai-1 = "ocid1.image.oc1.ap-mumbai-1.aaaaaaaaham2gnbrst3s46jrwchlnl3uqo7yxij7f3pqdzwx7zybu657347q"
+ eu-paris-1 = "ocid1.image.oc1.eu-paris-1.aaaaaaaaab5yi4bbnabymexkvwcdjlcjiue26kf3vz6dvzm6dvpttqcpaj5q"
+ uk-cardiff-1 = "ocid1.image.oc1.uk-cardiff-1.aaaaaaaagvgnze6oq5il7b26onoq4daeaqrghp5hx4yp3q3rvtfpnbzq4zhq"
+ me-dubai-1 = "ocid1.image.oc1.me-dubai-1.aaaaaaaaid5v36623wk7lyoivnqwygyaxppqfbzyo35wifxs7hkqo5caxhqa"
+ eu-frankfurt-1 = "ocid1.image.oc1.eu-frankfurt-1.aaaaaaaa3mdtxzi5rx2ids2tb74wmm77zvsqdaxbjlgvjpr4ytzc5njtksjq"
+ sa-saopaulo-1 = "ocid1.image.oc1.sa-saopaulo-1.aaaaaaaa22wjczcl7udl7w7e347zkwig7mh5p3zfbcemzs46jiaeom5lznyq"
+ ap-hyderabad-1 = "ocid1.image.oc1.ap-hyderabad-1.aaaaaaaaaq6ggb4u6p4fgsdcj7o2p4akt5t7gmyjnvootiytrqc5joe5pmfq"
+ us-ashburn-1 = "ocid1.image.oc1.iad.aaaaaaaas4cu36z32iraul5otar4gl3uy4s5jkupcc4m5shfqlatjiwaoftq"
+ ap-seoul-1 = "ocid1.image.oc1.ap-seoul-1.aaaaaaaakrtvc67c6thtmhrwphecd66omeytl7jmv3zd2bci74j56r4xodwq"
+ me-jeddah-1 = "ocid1.image.oc1.me-jeddah-1.aaaaaaaaghsie5mvgzb6fbfzujidzrg7jnrraqkh6qkyh2vw7rl6cdnbpe6a"
+ af-johannesburg-1 = "ocid1.image.oc1.af-johannesburg-1.aaaaaaaa2sj43nffpmyqlubrj4cikfgoij7qyqhymlnhw3bj7t26lh46euia"
+ ap-osaka-1 = "ocid1.image.oc1.ap-osaka-1.aaaaaaaao3swjyengmcc5rz3ynp2euqskvcscqwgouzs3smaarxofxbwstcq"
+ uk-london-1 = "ocid1.image.oc1.uk-london-1.aaaaaaaaetscnayepwj2lto7mpgiwtom4jwkqafr3axumt3pt32cgwczkexq"
+ eu-milan-1 = "ocid1.image.oc1.eu-milan-1.aaaaaaaavht3nwv7qsue7ljexbqqgofogwvrlgybvtrxylm52eg6b6xrgniq"
+ ap-melbourne-1 = "ocid1.image.oc1.ap-melbourne-1.aaaaaaaafavk2azn6cizxnugwi7izvxsumhiuzthw6g7k2o4vuhg4l3phi3a"
+ eu-marseille-1 = "ocid1.image.oc1.eu-marseille-1.aaaaaaaakpex24z6rmmyvdeop72nomfui5t54lztix7t5mblqii4l7v4iecq"
+ il-jerusalem-1 = "ocid1.image.oc1.il-jerusalem-1.aaaaaaaafgok5gj36cnrsqo6a3p72wqpg45s3q32oxkt45fq573obioliiga"
+ ap-tokyo-1 = "ocid1.image.oc1.ap-tokyo-1.aaaaaaaappsxkscys22g5tha37tksf6rlec3tm776dnq7dcquaofeqqb6rna"
+ us-phoenix-1 = "ocid1.image.oc1.phx.aaaaaaaawmvmgfvthguywgry23pugqqv2plprni37sdr2jrtzq6i6tmwdjwa"
+ sa-santiago-1 = "ocid1.image.oc1.sa-santiago-1.aaaaaaaatqcxvjriek3gdndhk43fdss6hmmd47fw2vmuq7ldedr5f555vx5q"
+ ap-singapore-1 = "ocid1.image.oc1.ap-singapore-1.aaaaaaaaouprplh2bubqudrghr46tofi3bukvtrdgiuvckylpk4kvmxyhzda"
+ us-sanjose-1 = "ocid1.image.oc1.us-sanjose-1.aaaaaaaaqudryedi3l4danxy5kxbwqkz3nonewp3jwb5l3tdcikhftthmtga"
+ ap-sydney-1 = "ocid1.image.oc1.ap-sydney-1.aaaaaaaaogu4pvw4zw2p7kjabyynczopoqipecr2gozdaolh5kem2mkdrloa"
+ sa-vinhedo-1 = "ocid1.image.oc1.sa-vinhedo-1.aaaaaaaa57khlnd4ziajy6wwmud2d6k3wsqkm4yce3mlzbgxeggpbu3yqbpa"
+ ap-chuncheon-1 = "ocid1.image.oc1.ap-chuncheon-1.aaaaaaaanod2kc3bw5l3myyd5okw4c46kapdpsu2fqgyswf4lka2hrordlla"
+ ca-montreal-1 = "ocid1.image.oc1.ca-montreal-1.aaaaaaaaevwlof26wfzcoajtlmykpaev7q5ekqyvkpqo2sjo3gdwzygu7xta"
+ ca-toronto-1 = "ocid1.image.oc1.ca-toronto-1.aaaaaaaanajb7uklrra5eq2ewx35xfi2aulyohweb2ugik7kc6bdfz6swyha"
+ eu-zurich-1 = "ocid1.image.oc1.eu-zurich-1.aaaaaaaameaqzqjwp45epgv2zywkaw2cxutz6gdc6jxnrrbb4ciqpyrnkczq"
+```
+
+More information regarding shapes can be found here:
+
+https://docs.oracle.com/en-us/iaas/Content/Compute/References/computeshapes.htm
+
+* Parameters for the UI Data Server VM Configuration
+ * __bastion_instance_display_name__ - (Required) (Updatable) - Required. The hostname/dns name for the UI Data Server VM.
+ * __bastion_instance_shape__ - (Required) (Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
+
+```
+variable "bastion_instance_display_name" {
+ type = string
+ default = "DataModelsTelco"
+}
+
+variable "bastion_instance_shape" {
+ type = string
+ default = "VM.Standard2.4"
+}
+
+```
+
+# Network
+This resource provides the Vcn resource in Oracle Cloud Infrastructure Core service anso This resource provides the Subnet resource in Oracle Cloud Infrastructure Core service.
+The solution will create 1 VCN in your compartment, 2 subnets ( one public and one private so the analytics cloud instance can be public or private ), 2 route tables for incomming and outoing traffic, 2 Network Security Groups for ingress and egress traffic, 1 internet gateway, 2 route tables for each subnet, dhcp service, NAT Gateway and a Service Gateway.
+
+* Parameters
+ * __vcn_cidr__ - The list of one or more IPv4 CIDR blocks for the VCN that meet the following criteria:
+ The CIDR blocks must be valid.
+ They must not overlap with each other or with the on-premises network CIDR block.
+ The number of CIDR blocks must not exceed the limit of CIDR blocks allowed per VCN. It is an error to set both cidrBlock and cidrBlocks. Note: cidr_blocks update must be restricted to one operation at a time (either add/remove or modify one single cidr_block) or the operation will be declined.
+ * __public_subnet_cidr__ - The CIDR IP address range of the subnet. The CIDR must maintain the following rules - a. The CIDR block is valid and correctly formatted. b. The new range is within one of the parent VCN ranges. This is the cidr for the public subnet.
+ * __private_subnet_cidr__ - The CIDR IP address range of the subnet. The CIDR must maintain the following rules - a. The CIDR block is valid and correctly formatted. b. The new range is within one of the parent VCN ranges. This is the cidr for the private subnet.
+
+
+Below is an example:
+```
+variable "vcn_cidr" {
+ default = "10.0.0.0/16"
+}
+
+variable "public_subnet_cidr" {
+ default = "10.0.1.0/24"
+}
+
+variable "private_subnet_cidr" {
+ default = "10.0.2.0/24"
+}
+```
+
+## Running the code
+
+```
+# Run init to get terraform modules
+$ terraform init
+
+# Create the infrastructure
+$ terraform apply --auto-approve
+
+# If you are done with this infrastructure, take it down
+$ terraform destroy --auto-approve
+```
+
+# What-to-do-after-the-Deployment-via-Terraform-CLI
+
+After the deployment finished you will have to:
+1. Login into the Oracle Machine Learning instance URL provided in the outputs (example : OML_URL = "https://rddainsuh6u1okc-telcoasset.adb.us-ashburn-1.oraclecloudapps.com/oml"
+) - using the user "DMISHRA" and the Admin password provided for the database ( as the DMISHRA user has the same password as Admin). You can also change the DMISHRA or Admin passwords after.
+2. In OML Home page Click on Hamburger icon and go to Notebooks
+3. Import Data Lakehouse Communications-Tower Analytics using .json file called Data-Lakehouse-Communications-Tower-Analytics-using-OML.json that stores in the root of the solution.
+4. Once Imported successfully Click on Open.
+5. To run any of the paragraphs, click on the Run button in the right hand side of the paragraph. The second and third buttons next to it can be used to Show/Hide Editor and Show/Hide Output.
+
+* Visualizing Results in OML
+
+1. Click on the Settings icon right corner to avail the different options such as clearing the output, removing a paragraph, shifting the paragraph, changing the font appearance, hide title and to disable a running paragraph.
+2. If required, a new paragraph can be added to the notebook by hovering between two paragraphs or between a paragraph and the Notebook Title section
+3. If the results of a Python code paragraphs needs to be visualized, the paragraph should start with %python and ends with a dataframe. (SQL query needs to start with %sql).
+4. Once the query is rendered the following visualization Table, Bar Chart, Pie Chart, Area Chart, Line Chart, Scatter Chart can be selected to render it in particular visualization.
+5. The rendered Data can be downloaded as a CSV or TSV.
+6. Click the Settings icon to view the Available Fields, which are the tables, returned in the query result. Any of these fields can be selected in the Keys area (which are rendered on the X-axis) or Values area (which are rendered on the Y-axis). If the data needs to be grouped according to some field, that field can be added to the Groups area.
+
+__Next part is the Data Visualization by OCI Analytics - can be monitored visually through Analytics Dashboard :__
+
+- After the soltution was deployed successfully from Terraform CLI you will have some outputs on the screen.
+- As the private key for the Bastion was created on the fly - we will use it to connect to the Bastion Host.
+
+__SSH to the bastion with the Public IP Adress printed on the output from terraform:__
+
+```
+$ ssh -i private_key_bastion.pem opc@ui_data_server_public_ip -o IdentitiesOnly=yes
+
+```
+To interact with the Oracle Analytics API you will need to set up the credentials.
+As the deployment it's getting automated all your credentials from the terraform like , ociUserId ,ociKeyFingerprint ,ociTenancyId and ociRegion you will need to update also your private key.
+For this - edit the /home/opc/.oci/oci_api_key.pem file - and replace the content of the key with your own private key that you used to deploy the solution with terraform.
+
+Now you will need to do one manual step to grab the token of the Oracle Analytics Cloud and insert it in a shell script.
+
+- Go inside your Tenancy, click on the Menu, click on Identity & Security and under Identity click on Federation.
+Click on your identity provider and click on the link in the middle called : Oracle Identity Cloud Service Console: https://idcs-abcd.identity.oraclecloud.com/ui/v1/adminconsole
+
+
+
+- Now click on the Menu and Press Oracle Cloud Services.
+
+
+
+- Inside the Oracle Cloud Services search for your Analytics Cloud deployed and click on it.
+
+
+
+- Now go to Configuration ; click Resources.
+Here you need to modify:
+- Access Token Expiration from 100 seconds to the maximum of 604800 seconds.
+- Dezactivate the Is Refresh Token Allowed option
+- Refresh Token Expiration from 86,400 seconds. to 604800 seconds.
+
+- Click Save button in the right top.
+
+
+
+- Now, on the same page click Details and click on Generate Access Token ; and press: Download Token.
+- Open the Token and copy the key - after the app_access_token from " to the end of ".
+
+
+
+
+- Go back to your terminal that it's connected to the Bastion VM Instance and edit the __finalize.sh__ script located in /home/opc/ folder. Here is a line called __Authorization_Token=__ that needs to be filled with the Token that you have copied on the last step.
+
+
+
+
+
+Now from the terminal run the script using the __./finalize.sh__ command.
+
+The script will run and you will see this Output:
+
+```
+[opc@vnc-datamodelsmanufacturing ~]$ ./finalize.sh
+-- Getting Started
+-- Retrive the original bar file from the shared object storage
+-- Fixing the bar file
+-- Modify the links for the picture using the current hostname and tenancy name
+-- Create new bar file for OAC with the custom configuration
+-- Upload the snapshot to the object storage in our tenancy
+-- Get details of an Analytics instance
+HTTP/1.1 200 OK
+-- Create the Register Snapshot New Json File
+-- Register an existing snapshot using the new json file created with all the variables based on your environment
+HTTP/1.1 100 Continue
+HTTP/1.1 202 Accepted
+-- Get all snapshots available for your OAC already registered
+HTTP/1.1 200 OK
+-- Get the ID of your registered snapshoot and use it in the next step
+-- Create the Restore Snapshot New Json File with your registered ID of the snapshot
+-- Restore a snapshot in an Analytics instance
+HTTP/1.1 202 Accepted
+
+
+-- Restore Done!
+```
+
+__Now everything it's done and ready ! You will want to connect to Oracle Analytics instance to see the data sets - open a web browser and connect copy paste the URL of the Analytic Cloud and hit enter.__
+
+Here you will see already all the imported dashboards and reports. Last step it's to connect to your existing DB. For this go to : Menu - Data - Connections and connect each of the connections to the DB. (without the Comms_Hive_DB - this connection is used only for the integration with a HIVE cluster. If you already have one you can connect to your data from here. If you don't have one and you have deployed the solution using the Big Data Service - that is optonal - you will find the details below).
+
+Right Click on TowerDataset and select Inspect.
+Use the password of the db for admin that you have provided in the provisioning phase and select your generated wallet that you have transfered from the bastion in the previous step to your local PC - file starting with "wallet_dbname.zip". Click Save.
+
+
+
+Right Click on TowerAnalytics and select Inspect.
+Use the password of the db for admin that you have provided in the provisioning phase and select your generated wallet that you have transfered from the bastion in the previous step to your local PC - file starting with "wallet_dbname.zip". Click Save.
+
+
+
+Now you can go in your workbook called TowerCanvas and in inside there are 5 canvas. Click on each of them to get the info. Note - The 5th canvas it's only used for HIVE. So if the connection for the HIVE it's not done, no data will be displayed there.
+
+
+__SELECT AI__
+
+To use the select ai - you need to connect to the ADW with your credentials provided and wallet file using sql developer and run:
+
+```
+EXEC DBMS_CLOUD_AI.SET_PROFILE('DMISHRA');
+```
+
+After that you can run the select ai, here are some examples:
+
+```
+select ai tell me my estimated cost revenue;
+select ai tell me my estimated cost revenue on The Chapters;
+select ai tell me my nearest neighbor with a revenue more than 22227;
+select ai tell me my nearest neighbor with a revenue more than 29227;
+select ai tell me the site operation cost revenue;
+select ai tell me the site operation cost revenue with the name Telstra Customer NILLIBUBICA ;
+select ai tell me the revenue on CFA Site 118 Sawmill Rd MUCKLEFORD ;
+
+You can use any of the followings attributes for select ai:
+showsql
+narrate
+chat
+runsql
+```
+
+__(OPTIONAL)Data Catalog - To harvest metadata from Autonomous Data Warehouse__
+The solution will deploy also the Data Catalog Service with a Data Catalog and a Data Asset created inside.
+
+1. For this created Data Asset, Add Connection by providing the details of the Communication Tower schemas.
+2. Provide the required database wallet downloaded from the bastion and, schema credentials for Admin and password provided.
+3. Test the connection to make sure it is successful.
+
+
+__(OPTIONAL)BIG DATA SERVICE COMPONENTS:__
+If you deployed the solution with the Big Data Service created you will want to do the followings:
+
+
+1. In the OCI Console after the deployed was got successfully created. Click on BDS Cluster -> More Actions -> Add Cloud SQL and select compute shape and other required details
+2. By default, all the BDS cluster nodes will have private IP address so we can’t access the console directly via external network. Need to map private IP address to reserved public IP address to access it from external network or via to login to physical server
+3. On the Clusters page, click the name of BDS cluster and On the Cluster Information tab of the Cluster Details page, under Network Information, Copy the Subnet OCID to retrieve it later in this process.
+4. On the same page, under List of Cluster Nodes in the IP Address column, copy the private IP address of Master, Utility and Cloud SQL node to retrieve it later in this process.
+5. In the Cloud Console click on Cloud Shell and execute the below steps for each of Master, Utility and Cloud SQL node and note the Reserved Public IPs
+
+```
+export DISPLAY_NAME=
+export SUBNET_OCID=
+export PRIVATE_IP=
+oci network public-ip create --display-name $DISPLAY_NAME --compartment-id `oci network private-ip list --subnet-id $SUBNET_OCID --ip-address $PRIVATE_IP | jq -r '.data[] | ."compartment-id"'` --lifetime "RESERVED" --private-ip-id `oci network private-ip list --subnet-id $SUBNET_OCID --ip-address $PRIVATE_IP | jq -r '.data[] | ."id"'`
+```
+
+__HDFS and HIVE Configuration__
+1. Login to utility node using Reserved Public IP, Create a new directory and use the file called the csv files using wget:
+```
+mkdir comms_telecom_tower
+cd comms_telecom_tower/
+wget https://objectstorage.us-ashburn-1.oraclecloud.com/p/q1Fi0ijG2x5aLO3NoK5DeYR5ks3ZFm4GD2yQ3G0BJNkfPPp3AcukIX-5Ljh73g8u/n/oradbclouducm/b/DataModelsTelco/o/Blackspots.csv/Blackspots.csv
+```
+
+2. Create Hadoop distributed file system directory Ex :
+```
+hdfs dfs –mkdir /warehouse/tablespace/external/hive/View1
+```
+3. Put the csv files to HDFS using below commands Ex :
+```
+hdfs dfs -put BLACKSPOTS.csv /warehouse/tablespace/external/hive/View1
+```
+4. Login to hive via beeline using credentials hive/hive from Utility node and Create Database
+```
+create database COMMS_LAKEHOUSE_TELECOM_TOWER_HIVE;
+```
+5. Use Created Database and create external table for backspots.csv file using sql file ( Please find the below Reference )
+```
+use COMMS_LAKEHOUSE_TELECOM_TOWER_HIVE;
+
+CREATE external TABLE IF NOT EXISTS COMMS_LAKEHOUSE_TELECOM_TOWER_HIVE.BLACKSPOTS_HIVE (
+LOCATIONNAME STRING,
+IDENTIFIER STRING,
+ROAD_SECTION STRING,
+PUBLIC_INTEREST_PREMISES STRING,
+STATE STRING,
+LATITUDE STRING,
+LONGITUDE STRING,
+ELECTORATE STRING,
+LOCAL_GOVERNMENT_AREA STRING,
+POST_CODE STRING,
+REMOTENESS_AREA STRING,
+UPDATED STRING,
+REGIONAL_DEVELOPMENT_AUTHORITY STRING)
+ROW FORMAT DELIMITED
+FIELDS TERMINATED BY ','
+location '/warehouse/tablespace/external/hive/View1';
+```
+
+In Oracle Analytics Cloud - to have the 5th Canvas working you will need to do the followings:
+
+1. Navigate to actions menu (over right side ) of the Comms_Hive_DB connection and click on Inspect and update the below details
+Host : Cloud SQL Public IP address
+Port : 10000
+User name : hive
+Password : hive
+
+2. Synchronizing Hive Databases from Ambari
+- Login to Ambari using https://:7183
+- Select Cloud SQL under Services and Navigate to CONFIGS and make sure you have updated (*) in Synchronized Hive Databases under Advanced metadata-sync option
+- Navigate to Summary, click on “BIG DATA SQL QUERY SERVER“ and click on host
+- Under Summary -> ”BIG DATA SQL QUERY SERVER / Cloud SQL“ -> More Actions , Click on Synchronize Hive Databases
+- Make sure it synchronization is 100% completed
+
+- At this point you can run the select queries on both hive and cloud sql to validate the synchronization
+Ex : In Cloud SQL
+```
+select * from COMMS_LAKEHOUSE_TELECOM_TOWER_HIVE.BLACKSPOTS_HIVE where rownum < 2;
+```
+Ex : In Hive
+```
+select * from COMMS_LAKEHOUSE_TELECOM_TOWER_HIVE.BLACKSPOTS_HIVE limit 2;
+```
+
+
+## Documentation
+
+[Autonomous Databases Overview](https://docs.oracle.com/en-us/iaas/Content/Database/Concepts/adboverview.htm)
+
+[Analytics Cloud Overview](https://docs.oracle.com/en-us/iaas/analytics-cloud/index.html)
+
+[Object Storage Overview](https://docs.oracle.com/en-us/iaas/Content/Object/Concepts/objectstorageoverview.htm)
+
+[Big Data Service Overview](https://docs.oracle.com/en-us/iaas/Content/bigdata/home.htm)
+
+[Data Catalog Overview](https://docs.oracle.com/en-us/iaas/data-catalog/using/overview.htm)
+
+[Certificates](https://docs.oracle.com/en-us/iaas/Content/Compute/Concepts/computeoverview.htm)
+
+[Compute service](https://docs.oracle.com/en-us/iaas/Content/Compute/Concepts/computeoverview.htm)
+
+[Network Overview](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/overview.htm)
+
+[Select AI Overview](https://docs.oracle.com/en-us/iaas/autonomous-database-serverless/doc/sql-generation-ai-autonomous.html)
+
+[Select AI presentation](https://www.oracle.com/autonomous-database/select-ai/)
+
+[Terraform Autonomous Databases Resource](https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/database_autonomous_database)
+
+[Terraform Analytics Cloud Resource](https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/analytics_analytics_instance)
+
+[Terraform Certificates - TLS Provider](https://registry.terraform.io/providers/hashicorp/tls/latest/docs)
+
+[Terraform Oracle Cloud Infrastructure Core Service](https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/core_instance)
+
+[Terraform Object Storage Service Resource](https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/objectstorage_bucket)
+
+[Terraform Big Data Service Resource](https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/bds_bds_instance)
+
+[Terraform Data Catalog Resource](https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/datacatalog_catalog)
+
+[Terraform Vcn resource in Oracle Cloud Infrastructure Core service](https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/core_vcn)
+
+[Terraform Subnet resource in Oracle Cloud Infrastructure Core service](https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/core_subnet)
+
+
+## The Team
+- **Owners**: [Panaitescu Ionel](https://github.com/ionelpanaitescu)
+
+## Feedback
+We welcome your feedback. To post feedback, submit feature ideas or report bugs, please use the Issues section on this repository.
+
+## Known Issues
+**At the moment, there are no known issues**
\ No newline at end of file
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/Telco-Asset_Value_Maximization.png b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/Telco-Asset_Value_Maximization.png
new file mode 100644
index 0000000..9e325b1
Binary files /dev/null and b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/Telco-Asset_Value_Maximization.png differ
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/Telco-Asset_Value_Maximization_arch.png b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/Telco-Asset_Value_Maximization_arch.png
new file mode 100644
index 0000000..d7ca0df
Binary files /dev/null and b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/Telco-Asset_Value_Maximization_arch.png differ
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step1.png b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step1.png
new file mode 100644
index 0000000..db2f557
Binary files /dev/null and b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step1.png differ
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step2.png b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step2.png
new file mode 100644
index 0000000..1661802
Binary files /dev/null and b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step2.png differ
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step3.png b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step3.png
new file mode 100644
index 0000000..aab9105
Binary files /dev/null and b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step3.png differ
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step4.png b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step4.png
new file mode 100644
index 0000000..2cc0cf1
Binary files /dev/null and b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step4.png differ
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step5.png b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step5.png
new file mode 100644
index 0000000..7ba228c
Binary files /dev/null and b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step5.png differ
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step6.png b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step6.png
new file mode 100644
index 0000000..b70fd33
Binary files /dev/null and b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step6.png differ
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step7.png b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step7.png
new file mode 100644
index 0000000..94352dc
Binary files /dev/null and b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step7.png differ
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step8.png b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step8.png
new file mode 100644
index 0000000..96b8117
Binary files /dev/null and b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/images/step8.png differ
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/locals.tf b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/locals.tf
new file mode 100644
index 0000000..0205f22
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/locals.tf
@@ -0,0 +1,523 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+data "oci_identity_availability_domains" "ADs" {
+ compartment_id = var.tenancy_ocid
+}
+
+data "oci_identity_tenancy" "tenancy" {
+ tenancy_id = var.tenancy_ocid
+}
+
+data oci_identity_regions regions {
+}
+
+data "oci_objectstorage_namespace" "os" {
+ compartment_id = var.tenancy_ocid
+}
+
+data "template_file" "ad_names" {
+ count = length(data.oci_identity_availability_domains.ADs.availability_domains)
+ template = lookup(data.oci_identity_availability_domains.ADs.availability_domains[count.index], "name")
+}
+
+data "oci_core_images" "linux_image" {
+ compartment_id = var.compartment_id
+ operating_system = "Oracle Linux"
+ shape = "VM.Standard2.1"
+}
+
+data "oci_core_services" "sgw_services" {
+ filter {
+ name = "cidr_block"
+ values = ["all-.*-services-in-oracle-services-network"]
+ regex = true
+ }
+}
+
+data "oci_identity_region_subscriptions" "home_region_subscriptions" {
+ tenancy_id = var.tenancy_ocid
+
+ filter {
+ name = "is_home_region"
+ values = [true]
+ }
+}
+
+locals{
+ ad_names = compact(data.template_file.ad_names.*.rendered)
+ public_subnet_availability_domain = local.ad_names[0]
+ service_name_prefix = replace(var.service_name, "/[^a-zA-Z0-9]/", "")
+
+ region_map = {
+ for r in data.oci_identity_regions.regions.regions :
+ r.name => r.key
+ }
+
+ home_region_for_oac = lookup(
+ local.region_map, var.region
+ )
+
+
+# Create Autonomous Data Warehouse
+ adw_params = {
+ adw = {
+ compartment_id = var.compartment_id
+ compute_model = var.db_compute_model
+ compute_count = var.db_compute_count
+ size_in_tbs = var.db_size_in_tbs
+ db_name = var.db_name
+ db_workload = var.db_workload
+ db_version = var.db_version
+ enable_auto_scaling = var.db_enable_auto_scaling
+ is_free_tier = var.db_is_free_tier
+ license_model = var.db_license_model
+ create_local_wallet = true
+ database_admin_password = var.db_password
+ database_wallet_password = var.db_password
+ data_safe_status = var.db_data_safe_status
+ operations_insights_status = var.db_operations_insights_status
+ database_management_status = var.db_database_management_status
+ is_mtls_connection_required = true
+ subnet_id = null
+ nsg_ids = null
+ defined_tags = {}
+ },
+}
+
+# Create Oracle Analytics Cloud
+ oac_params = {
+ oac = {
+ compartment_id = var.compartment_id,
+ analytics_instance_feature_set = var.analytics_instance_feature_set
+ analytics_instance_license_type = var.analytics_instance_license_type
+ analytics_instance_hostname = var.Oracle_Analytics_Instance_Name
+ analytics_instance_idcs_access_token = var.analytics_instance_idcs_access_token
+ analytics_instance_capacity_capacity_type = var.analytics_instance_capacity_capacity_type
+ analytics_instance_capacity_value = var.analytics_instance_capacity_value
+ analytics_instance_network_endpoint_details_network_endpoint_type = "public"
+ subnet_id = null
+ vcn_id = null
+ analytics_instance_network_endpoint_details_whitelisted_ips = ["0.0.0.0/0"]
+ analytics_instance_network_endpoint_details_whitelisted_vcns_id = lookup(module.network-vcn.vcns,"vcn").id,
+ whitelisted_ips = ["0.0.0.0/0"]
+ defined_tags = {}
+ }
+}
+
+
+# Create Object Storage Buckets
+ bucket_params = {
+ data_bucket = {
+ compartment_id = var.compartment_id,
+ name = var.bucket_name
+ access_type = var.bucket_access_type
+ storage_tier = var.bucket_storage_tier
+ events_enabled = var.bucket_events_enabled
+ defined_tags = {}
+ }
+}
+
+# # Big Data Service:
+bds_params = {
+ bds_deploy = {
+ compartment_id = var.compartment_id,
+ cluster_admin_password = var.big_data_cluster_admin_password
+ cluster_public_key = var.big_data_cluster_public_key
+ cluster_version = var.big_data_cluster_version
+ display_name = var.big_data_display_name
+ is_cloud_sql_configured = true
+ is_high_availability = var.big_data_is_high_availability
+ is_secure = var.big_data_is_secure
+ master_node = [
+ {
+ shape = var.big_data_master_node_spape
+ subnet_id = lookup(module.network-subnets.subnets,"public-subnet").id,
+ block_volume_size_in_gbs = var.big_data_master_node_block_volume_size_in_gbs
+ number_of_nodes = var.big_data_master_node_number_of_nodes
+ },
+ ]
+ util_node = [
+ {
+ shape = var.big_data_util_node_shape
+ subnet_id = lookup(module.network-subnets.subnets,"public-subnet").id,
+ block_volume_size_in_gbs = var.big_data_util_node_block_volume_size_in_gbs
+ number_of_nodes = var.big_data_util_node_number_of_nodes
+ },
+ ]
+ worker_node = [
+ {
+ shape = var.big_data_worker_node_shape
+ subnet_id = lookup(module.network-subnets.subnets,"public-subnet").id,
+ block_volume_size_in_gbs = var.big_data_worker_node_block_volume_size_in_gbs
+ number_of_nodes = var.big_data_worker_node_number_of_nodes
+ },
+ ]
+ defined_tags = {}
+ }
+}
+
+# Create Data Catalog
+ datacatalog_params = {
+ datacatalog = {
+ compartment_id = var.compartment_id,
+ catalog_display_name = var.catalog_display_name
+ defined_tags = {}
+ }
+}
+
+
+# Create Instance
+ instance_params = {
+ vnc-instance = {
+ availability_domain = 1
+ compartment_id = var.compartment_id
+ display_name = var.bastion_instance_display_name
+ shape = var.bastion_instance_shape
+ defined_tags = {}
+ freeform_tags = {}
+ subnet_id = lookup(module.network-subnets.subnets,"public-subnet").id
+ vnic_display_name = ""
+ assign_public_ip = true
+ hostname_label = ""
+ nsg_ids = [lookup(module.network-security-groups.nsgs,"public-nsgs-list").id]
+ source_type = "image"
+ source_id = var.bastion_instance_image_ocid[var.region]
+ metadata = {
+ ssh_authorized_keys = module.keygen.OPCPrivateKey.public_key_openssh
+ }
+ fault_domain = ""
+ provisioning_timeout_mins = "30"
+ }
+}
+
+
+## Creates the VCN "vcn with the CIDR BLOCK 10.0.0.0/16"
+ vcns-lists = {
+ vcn = {
+ compartment_id = var.compartment_id
+ cidr = var.vcn_cidr
+ dns_label = "vcn"
+ is_create_igw = true
+ is_attach_drg = false // put true if you want to have drg attached !
+ block_nat_traffic = false
+ subnets = {}
+ defined_tags = {}
+ freeform_tags = {}
+ }
+}
+
+#creates the subnet "public-subnet - 10.0.0.0/24 and private-subnet - 10.0.1.0/24"
+ subnet-lists = {
+ "" = {
+ compartment_id = var.compartment_id
+ cidr = var.vcn_cidr
+ dns_label = "vcn"
+ is_create_igw = false
+ is_attach_drg = false
+ block_nat_traffic = false
+
+ subnets = {
+ public-subnet = {
+ compartment_id=var.compartment_id,
+ vcn_id=lookup(module.network-vcn.vcns,"vcn").id,
+ availability_domain=""
+ cidr=var.public_subnet_cidr,
+ dns_label="public",
+ private=false,
+ dhcp_options_id="",
+ security_list_ids=[module.network-security-lists.security_lists["public_security_list"].id],
+ defined_tags = {}
+ freeform_tags = {}
+ }
+ private-subnet = {
+ compartment_id=var.compartment_id,
+ vcn_id=lookup(module.network-vcn.vcns,"vcn").id,
+ availability_domain=""
+ cidr=var.private_subnet_cidr,
+ dns_label="private",
+ private=true,
+ dhcp_options_id="",
+ security_list_ids=[module.network-security-lists.security_lists["private_security_list"].id],
+ defined_tags = {}
+ freeform_tags = {}
+ }
+ }
+ defined_tags = {}
+ freeform_tags = {}
+ }
+ }
+
+#create routing table attached to vcn and subnet to route traffic via IGW
+ subnets_route_tables = {
+ public_route_table-igw = {
+ compartment_id = var.compartment_id,
+ vcn_id=lookup(module.network-vcn.vcns,"vcn").id,
+ subnet_id = lookup(module.network-subnets.subnets,"public-subnet").id,
+ route_table_id = "",
+ route_rules = [{
+ is_create = true,
+ destination = "0.0.0.0/0",
+ destination_type = "CIDR_BLOCK",
+ network_entity_id = lookup(module.network-vcn.internet_gateways, lookup(module.network-vcn.vcns,"vcn").id).id,
+ description = ""
+ }],
+ defined_tags = {}
+ },
+ private_route_table-nat = {
+ compartment_id = var.compartment_id,
+ vcn_id=lookup(module.network-vcn.vcns,"vcn").id,
+ subnet_id = lookup(module.network-subnets.subnets,"private-subnet").id,
+ route_table_id = "",
+ route_rules = [{
+ is_create = true,
+ destination = "0.0.0.0/0",
+ destination_type = "CIDR_BLOCK",
+ network_entity_id = lookup(module.network-vcn.nat_gateways, lookup(module.network-vcn.vcns,"vcn").id).id,
+ description = ""
+ }],
+ defined_tags = {}
+ }
+ }
+
+network-routing-attachment = {
+ "" = {
+ compartment_id = var.compartment_id,
+ vcn_id = lookup(module.network-vcn.vcns,"vcn").id,
+ subnet_id = lookup(module.network-subnets.subnets,"public-subnet").id,
+ route_table_id = lookup(module.network-routing.subnets_route_tables,"public_route_table-igw").id,
+ route_rules = [],
+ defined_tags = {}
+ }
+}
+
+#create security list - opening port 22 ssh and port 80 - http
+ security_lists = {
+ public_security_list = {
+ vcn_id = lookup(module.network-vcn.vcns,"vcn").id,
+ compartment_id = var.compartment_id,
+ defined_tags = {}
+ ingress_rules = concat([{
+ stateless = false
+ protocol = "6" // tcp
+ src = "0.0.0.0/0"
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = {min = 22, max= 22},
+ icmp_type = null,
+ icmp_code = null
+ }],
+ [{
+ stateless = false
+ protocol = "6" // tcp
+ src = "0.0.0.0/0"
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = {min = 443, max=443},
+ icmp_type = null,
+ icmp_code = null
+ }],
+ [{
+ stateless = false
+ protocol = "6" // tcp
+ src = "0.0.0.0/0"
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = {min = 80, max=80},
+ icmp_type = null,
+ icmp_code = null
+ }],
+ [{
+ stateless = false
+ protocol = "all"
+ src = "0.0.0.0/0"
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = null,
+ icmp_type = null,
+ icmp_code = null
+ }]),
+ egress_rules = [{
+ stateless = false,
+ protocol = "all",
+ dst = "0.0.0.0/0",
+ dst_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = null,
+ icmp_type = null,
+ icmp_code = null
+ }],
+ }
+ private_security_list = {
+ vcn_id = lookup(module.network-vcn.vcns,"vcn").id,
+ compartment_id = var.compartment_id,
+ defined_tags = {}
+ ingress_rules = concat([{
+ stateless = false
+ protocol = "all"
+ src = var.vcn_cidr,
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = null,
+ icmp_type = null,
+ icmp_code = null
+ }],
+ [{
+ stateless = false
+ protocol = "6"
+ src = var.vcn_cidr,
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = {min = 22, max=22},
+ icmp_type = null,
+ icmp_code = null
+ }],
+ [{
+ stateless = false
+ protocol = "17"
+ src = var.vcn_cidr,
+ src_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = {min = 3306, max=3306},
+ icmp_type = null,
+ icmp_code = null
+ }]),
+ egress_rules = [{
+ stateless = false,
+ protocol = "all",
+ dst = "0.0.0.0/0",
+ dst_type = "CIDR_BLOCK",
+ src_port = null,
+ dst_port = null,
+ icmp_type = null,
+ icmp_code = null
+ }]
+ }
+ }
+
+# Create Network Security lists - public and private
+ nsgs-lists = {
+ public-nsgs-list = {
+ vcn_id = lookup(module.network-vcn.vcns,"vcn").id,
+ compartment_id = var.compartment_id,
+ defined_tags = {}
+ ingress_rules = {
+ web_ingress = {
+ is_create = true,
+ description = "web security ingress rule",
+ protocol = "6", // tcp
+ stateless = false,
+ src = "0.0.0.0/0",
+ src_type = "CIDR_BLOCK",
+ src_port_min = null,
+ src_port_max = null,
+ dst_port_min = 80,
+ dst_port_max = 80,
+ icmp_type = null,
+ icmp_code = null
+ },
+ all_ingress = {
+ is_create = true,
+ description = "all security ingress rule",
+ protocol = "all",
+ stateless = false,
+ src = "0.0.0.0/0",
+ src_type = "CIDR_BLOCK",
+ src_port_min = null,
+ src_port_max = null,
+ dst_port_min = null,
+ dst_port_max = null,
+ icmp_type = null,
+ icmp_code = null
+ }
+ },
+ egress_rules = {
+ web_igw_egress = {
+ is_create = true,
+ description = "web internet security egress rule",
+ protocol = "all", // tcp
+ stateless = false,
+ dst = "0.0.0.0/0",
+ dst_type = "CIDR_BLOCK",
+ src_port_min = null,
+ src_port_max = null,
+ dst_port_min = null,
+ dst_port_max = null,
+ icmp_type = null,
+ icmp_code = null
+ },
+ }
+ }
+ private-nsgs-list = {
+ vcn_id = lookup(module.network-vcn.vcns,"vcn").id,
+ compartment_id = var.compartment_id,
+ defined_tags = {}
+ ingress_rules = { ingress2 = {
+ is_create = true,
+ description = "Parameters for customizing Network Security Group(s).",
+ protocol = "all",
+ stateless = false,
+ src = var.private_subnet_cidr,
+ src_type = "CIDR_BLOCK",
+ dst_port_min = null,
+ dst_port_max = null,
+ src_port_min = null,
+ src_port_max = null,
+ icmp_type = null,
+ icmp_code = null
+ }},
+ egress_rules = { egress2 = {
+ is_create = true,
+ description = "Parameters for customizing Network Security Group(s).",
+ protocol = "all",
+ stateless = false,
+ dst = "0.0.0.0/0",
+ dst_type = "CIDR_BLOCK",
+ dst_port_min = null,
+ dst_port_max = null,
+ src_port_min = null,
+ src_port_max = null,
+ icmp_type = null,
+ icmp_code = null
+ }}
+ }
+ }
+
+policies = {
+ "${local.service_name_prefix}-TelcoPolicies" = {
+ compartment_id = var.tenancy_ocid,
+ description = "List of Policies Required for the Full Data Lake Solution",
+ statements = [
+ "allow service datacatalog to manage virtual-network-family in compartment id ${var.compartment_id}",
+ "allow service datacatalog to {VNIC_READ, VNIC_ATTACH, VNIC_DETACH, VNIC_CREATE, VNIC_DELETE,VNIC_ATTACHMENT_READ, SUBNET_READ, VCN_READ, SUBNET_ATTACH, SUBNET_DETACH, INSTANCE_ATTACH_SECONDARY_VNIC, INSTANCE_DETACH_SECONDARY_VNIC} in compartment id ${var.compartment_id}",
+ "allow service datacatalog to read object-family in compartment id ${var.compartment_id}",
+ "allow service bdsprod to {VNIC_READ, VNIC_ATTACH, VNIC_DETACH, VNIC_CREATE, VNIC_DELETE,VNIC_ATTACHMENT_READ, SUBNET_READ, VCN_READ, SUBNET_ATTACH, SUBNET_DETACH, INSTANCE_ATTACH_SECONDARY_VNIC, INSTANCE_DETACH_SECONDARY_VNIC} in compartment id ${var.compartment_id}",
+ "allow group Administrators to manage tag-namespaces in compartment id ${var.compartment_id}",
+ "allow group Administrators to use virtual-network-family in compartment id ${var.compartment_id}",
+ "allow group Administrators to use object-family in compartment id ${var.compartment_id}",
+ "allow group Administrators to manage virtual-network-family in compartment id ${var.compartment_id}",
+ "allow group Administrators to manage bds-instance in compartment id ${var.compartment_id}",
+ "allow group Administrators to read instances in compartment id ${var.compartment_id}",
+ "allow group Administrators to manage database-family in compartment id ${var.compartment_id}",
+ "allow group Administrators to manage data-catalog-family in compartment id ${var.compartment_id}",
+ "allow group Administrators to manage dis-family in compartment id ${var.compartment_id}",
+ "allow group Administrators to manage buckets in tenancy",
+ "allow group Administrators to manage objects in tenancy",
+ "allow group Administrators to read buckets in tenancy",
+ "allow group Administrators to read objectstorage-namespaces in tenancy",
+ "allow group Administrators to inspect compartments in tenancy",
+ "allow group Administrators to use virtual-network-family in tenancy",
+ "allow group Administrators to use cloud-shell in tenancy",
+ "allow group Administrators to read metrics in tenancy",
+ ]
+ },
+ }
+
+
+# End
+
+}
+
+
+
+
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/main.tf b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/main.tf
new file mode 100644
index 0000000..4b35e8b
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/main.tf
@@ -0,0 +1,134 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+# Create ADW Database
+module "adb" {
+ source = "../../../cloud-foundation/modules/cloud-foundation-library/database/adb"
+ adw_params = local.adw_params
+}
+
+# Calling the Oracle Analytics Cloud module
+module "oac" {
+ source = "../../../cloud-foundation/modules/cloud-foundation-library/oac"
+ oac_params = local.oac_params
+}
+
+# Calling the Object Storage module
+module "os" {
+ source = "../../../cloud-foundation/modules/cloud-foundation-library/object-storage"
+ tenancy_ocid = var.tenancy_ocid
+ bucket_params = {
+ for k,v in local.bucket_params : k => v if v.compartment_id != ""
+ }
+}
+
+# Calling the Big Data Service module
+module "big-data-service" {
+ source = "../../../cloud-foundation/modules/cloud-foundation-library/big-data-service"
+ depends_on = [module.policies]
+ bds_params = {
+ for k,v in local.bds_params : k => v if v.compartment_id != ""
+ }
+ count = var.create_big_data_cluster == "yes" ? 1 : 0
+}
+
+# Calling the Data Catalog module
+module "datacatalog" {
+ source = "../../../cloud-foundation/modules/cloud-foundation-library/datacatalog_no_connection"
+ datacatalog_params = local.datacatalog_params
+ depends_on = [module.adb, module.provisioner]
+ db_name = var.db_name
+}
+
+# Generate public and private keys
+module "keygen" {
+ source = "../../../cloud-foundation/modules/cloud-foundation-library/keygen"
+}
+
+# Create Web Server - compute instance
+module "web-instance" {
+ source = "../../../cloud-foundation/modules/cloud-foundation-library/instance_with_out_flexible"
+ tenancy_ocid = var.tenancy_ocid
+ instance_params = local.instance_params
+}
+
+# Connect to instance and execute provision of server
+module "provisioner" {
+ source = "./modules/provisioner"
+ depends_on = [module.adb, module.web-instance]
+ host = module.web-instance.InstancePublicIPs[0]
+ private_key = module.keygen.OPCPrivateKey["private_key_pem"]
+ atp_url = module.adb.url
+ db_password = var.db_password
+ db_name = var.db_name
+ conn_db = module.adb.db_connection[0].profiles[1].value
+ Oracle_Analytics_Instance_Name = var.Oracle_Analytics_Instance_Name
+ home_region_for_oac = lower(substr(local.home_region_for_oac, 0, 2))
+ Tenancy_Name = lower(data.oci_identity_tenancy.tenancy.name)
+ bucket = var.bucket_name
+ Authorization_Token = var.Authorization_Token
+ ociRegion = var.region
+ ociTenancyId = var.tenancy_ocid
+ ociUserId = var.user_ocid
+ ociKeyFingerprint = var.fingerprint
+ ociPrivateKeyWrapped = var.ociPrivateKeyWrapped
+ llmpw = var.llmpw
+}
+
+# Networking
+module "network-vcn" {
+ source = "../../../cloud-foundation/modules/oci-cis-landingzone-quickstart/network/vcn-basic"
+ compartment_id = var.compartment_id
+ service_label = ""
+ service_gateway_cidr = lookup(data.oci_core_services.sgw_services.services[0], "cidr_block")
+ vcns = {
+ for k,v in local.vcns-lists : k => v if v.compartment_id != ""
+ }
+}
+
+module "network-subnets" {
+ source = "../../../cloud-foundation/modules/oci-cis-landingzone-quickstart/network/vcn-basic"
+ compartment_id = var.compartment_id
+ service_label = ""
+ service_gateway_cidr = lookup(data.oci_core_services.sgw_services.services[0], "cidr_block")
+ vcns = {
+ for k,v in local.subnet-lists : k => v if v.compartment_id != ""
+ }
+}
+
+module "network-routing" {
+ source = "../../../cloud-foundation/modules/oci-cis-landingzone-quickstart/network/vcn-routing"
+ compartment_id = var.compartment_id
+ subnets_route_tables = {
+ for k,v in local.subnets_route_tables : k => v if v.compartment_id != ""
+ }
+}
+
+module "network-routing-attachment" {
+ source = "../../../cloud-foundation/modules/oci-cis-landingzone-quickstart/network/vcn-routing"
+ compartment_id = var.compartment_id
+ subnets_route_tables = local.network-routing-attachment
+}
+
+module "network-security-lists" {
+ source = "../../../cloud-foundation/modules/oci-cis-landingzone-quickstart/network/security"
+ compartment_id = var.compartment_id
+ ports_not_allowed_from_anywhere_cidr = []
+ security_lists = {
+ for k,v in local.security_lists : k => v if v.compartment_id != ""
+ }
+}
+
+module "network-security-groups" {
+ source = "../../../cloud-foundation/modules/oci-cis-landingzone-quickstart/network/security"
+ compartment_id = var.compartment_id
+ nsgs = local.nsgs-lists
+}
+
+module "policies" {
+ source = "../../../cloud-foundation/modules/oci-cis-landingzone-quickstart/security/policies"
+ providers = {
+ oci = oci.homeregion
+ }
+ policies = local.policies
+}
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/ADW_CREATE_CREDENTIAL.sql.tpl b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/ADW_CREATE_CREDENTIAL.sql.tpl
new file mode 100644
index 0000000..e2634d2
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/ADW_CREATE_CREDENTIAL.sql.tpl
@@ -0,0 +1,11 @@
+BEGIN
+ DBMS_CLOUD.CREATE_CREDENTIAL(
+ credential_name => 'DEF_CRED_NAME',
+ username => 'admin',
+ password => '${db_password}'
+ );
+END;
+/
+
+exit;
+/
\ No newline at end of file
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/COMMS_LAKEHOUSE_TELECOM_TOWER.sql b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/COMMS_LAKEHOUSE_TELECOM_TOWER.sql
new file mode 100644
index 0000000..274bd95
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/COMMS_LAKEHOUSE_TELECOM_TOWER.sql
@@ -0,0 +1,25 @@
+BEGIN
+ FOR obj_name IN (SELECT object_name
+ FROM dba_objects
+ WHERE owner = 'COMMS_LAKEHOUSE_TELECOM_TOWER'
+ AND object_type = 'TABLE')
+ LOOP
+ EXECUTE IMMEDIATE 'GRANT SELECT ON COMMS_LAKEHOUSE_TELECOM_TOWER.' || obj_name.object_name || ' TO lisa_jones';
+ END LOOP;
+END;
+/
+
+
+BEGIN
+ FOR obj_name IN (SELECT object_name
+ FROM dba_objects
+ WHERE owner = 'COMMS_LAKEHOUSE_TELECOM_TOWER'
+ AND object_type = 'TABLE')
+ LOOP
+ EXECUTE IMMEDIATE 'GRANT SELECT ON COMMS_LAKEHOUSE_TELECOM_TOWER.' || obj_name.object_name || ' TO DMISHRA';
+ END LOOP;
+END;
+/
+
+exit;
+/
\ No newline at end of file
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/COMMS_LAKEHOUSE_TELECOM_TOWER_dumps.sh.tpl b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/COMMS_LAKEHOUSE_TELECOM_TOWER_dumps.sh.tpl
new file mode 100644
index 0000000..78bdf24
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/COMMS_LAKEHOUSE_TELECOM_TOWER_dumps.sh.tpl
@@ -0,0 +1 @@
+impdp admin/${db_password}@${db_name}_high directory=data_pump_dir credential=def_cred_name dumpfile= https://objectstorage.us-ashburn-1.oraclecloud.com/p/9Htb-Ow20G0IbIv1DocvOepScBD-uFlxbK0c5rK0cjddM9xgJQIus_q9Xqa4J9If/n/oradbclouducm/b/DataModelsTelco/o/COMMS_LAKEHOUSE_TELECOM_TOWER_25th_Aug_2022.dmp parallel=16 encryption_pwd_prompt=no exclude=cluster,indextype,db_link
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/CREATE_USERS.sql.tpl b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/CREATE_USERS.sql.tpl
new file mode 100644
index 0000000..b4b4c99
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/CREATE_USERS.sql.tpl
@@ -0,0 +1,94 @@
+
+CREATE USER VIVEK_V_RAJ IDENTIFIED BY "${db_password}";
+GRANT CREATE SESSION TO VIVEK_V_RAJ;
+GRANT CREATE TABLE, CREATE VIEW, CREATE PROCEDURE, CREATE SEQUENCE TO VIVEK_V_RAJ;
+grant create any directory to VIVEK_V_RAJ;
+grant connect,resource to VIVEK_V_RAJ;
+GRANT READ, WRITE ON DIRECTORY DATA_PUMP_DIR TO VIVEK_V_RAJ;
+GRANT UNLIMITED TABLESPACE TO VIVEK_V_RAJ ;
+grant execute on dbms_lock to VIVEK_V_RAJ;
+ALTER USER VIVEK_V_RAJ DEFAULT TABLESPACE DATA TEMPORARY TABLESPACE TEMP;
+ALTER USER VIVEK_V_RAJ QUOTA UNLIMITED ON SYSTEM;
+ALTER USER VIVEK_V_RAJ QUOTA UNLIMITED ON DBFS_DATA;
+ALTER USER VIVEK_V_RAJ QUOTA UNLIMITED ON DATA;
+
+
+CREATE ROLE ODI_LINEAGE_USER;
+GRANT CONNECT, RESOURCE TO ODI_LINEAGE_USER;
+CREATE ROLE "INSIGHT$IMPL";
+CREATE ROLE ADP_SERVICE$IMPL;
+CREATE ROLE LINEAGE_ADMIN;
+CREATE ROLE CLOUD_INGEST$IMPL;
+CREATE ROLE CLOUD_INGEST_USER;
+CREATE ROLE CLOUD_INGEST_ADMIN;
+CREATE ROLE INSIGHT_ADMIN;
+CREATE ROLE INGEST_REC_INTERNAL$IMPL;
+CREATE ROLE ODI_LINEAGE_ADMIN;
+
+
+CREATE USER DMISHRA IDENTIFIED BY "${db_password}" DEFAULT TABLESPACE USERS TEMPORARY TABLESPACE TEMP QUOTA UNLIMITED ON USERS;
+GRANT CREATE SESSION TO DMISHRA;
+GRANT CREATE TABLE, CREATE VIEW, CREATE PROCEDURE, CREATE SEQUENCE TO DMISHRA;
+grant create any directory to DMISHRA;
+grant connect,resource to DMISHRA;
+GRANT READ, WRITE ON DIRECTORY DATA_PUMP_DIR TO DMISHRA;
+GRANT UNLIMITED TABLESPACE TO DMISHRA ;
+grant execute ON dbms_lock TO DMISHRA;
+ALTER USER DMISHRA DEFAULT TABLESPACE DATA TEMPORARY TABLESPACE TEMP;
+
+ALTER USER DMISHRA QUOTA UNLIMITED ON SYSTEM;
+ALTER USER DMISHRA QUOTA UNLIMITED ON DBFS_DATA;
+ALTER USER DMISHRA QUOTA UNLIMITED ON DATA;
+ALTER USER DMISHRA quota unlimited on TBS_OML;
+GRANT CREATE VIEW TO DMISHRA;
+GRANT PYQADMIN TO DMISHRA;
+GRANT CREATE MINING MODEL TO DMISHRA;
+GRANT EXECUTE ON CTXSYS.CTX_DDL TO DMISHRA;
+GRANT CREATE MINING MODEL TO DMISHRA;
+GRANT SELECT ANY MINING MODEL TO DMISHRA;
+GRANT oml_developer TO DMISHRA;
+
+GRANT EXECUTE ON DBMS_CLOUD_AI TO DMISHRA;
+GRANT EXECUTE ON DBMS_CLOUD TO DMISHRA;
+
+BEGIN
+ DBMS_NETWORK_ACL_ADMIN.APPEND_HOST_ACE(
+ host => 'api.openai.com',
+ ace => xs$ace_type(privilege_list => xs$name_list('http'),
+ principal_name => 'DMISHRA',
+ principal_type => xs_acl.ptype_db)
+ );
+END;
+/
+
+BEGIN
+ DBMS_CLOUD.CREATE_CREDENTIAL(
+ credential_name => 'DMISHRA',
+ username => 'OPENAI',
+ password => '${llmpw}'
+ );
+END;
+/
+
+BEGIN
+ DBMS_CLOUD_AI.CREATE_PROFILE(
+ profile_name => 'DMISHRA',
+ attributes => '{"provider": "openai",
+ "model": "gpt-4",
+ "credential_name": "DMISHRA",
+ "comments": "true",
+ "object_list":
+ [{"owner": "DMISHRA", "name": "ESTIMATED_COST_REVENUE"},
+ {"owner": "DMISHRA", "name": "NEAREST_NEIGHBOR"},
+ {"owner": "DMISHRA", "name": "SITE_OPERATION_COST_REVENUE"}]
+ }',
+ status => 'ENABLED',
+ description => 'AI profile to use OpenAI for SQL translation'
+ );
+END;
+/
+
+EXEC DBMS_CLOUD_AI.SET_PROFILE('DMISHRA');
+
+exit;
+/
\ No newline at end of file
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/DMISHRA_SELECT_AI.sql b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/DMISHRA_SELECT_AI.sql
new file mode 100644
index 0000000..00c7513
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/DMISHRA_SELECT_AI.sql
@@ -0,0 +1,31 @@
+BEGIN
+ DBMS_CLOUD.CREATE_CREDENTIAL(
+ credential_name => 'DMISHRA',
+ username => 'OPENAI',
+ password => '${llmpw}'
+ );
+END;
+/
+
+BEGIN
+ DBMS_CLOUD_AI.CREATE_PROFILE(
+ profile_name => 'DMISHRA',
+ attributes => '{"provider": "openai",
+ "model": "gpt-4",
+ "credential_name": "DMISHRA",
+ "comments": "true",
+ "object_list":
+ [{"owner": "DMISHRA", "name": "ESTIMATED_COST_REVENUE"},
+ {"owner": "DMISHRA", "name": "NEAREST_NEIGHBOR"},
+ {"owner": "DMISHRA", "name": "SITE_OPERATION_COST_REVENUE"}]
+ }',
+ status => 'ENABLED',
+ description => 'AI profile to use OpenAI for SQL translation'
+ );
+END;
+/
+
+EXEC DBMS_CLOUD_AI.SET_PROFILE('DMISHRA');
+
+exit;
+/
\ No newline at end of file
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/LISA_JONES.sql b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/LISA_JONES.sql
new file mode 100644
index 0000000..608237f
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/LISA_JONES.sql
@@ -0,0 +1,6 @@
+SELECT 'CREATE SYNONYM "' || a.table_name || '" FOR "' || a.owner || '"."' || a.table_name || '";'
+FROM all_tables a
+WHERE a.owner = 'COMMS_LAKEHOUSE_TELECOM_TOWER';
+
+exit;
+/
\ No newline at end of file
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/LISA_JONES_dumps.sh.tpl b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/LISA_JONES_dumps.sh.tpl
new file mode 100644
index 0000000..33f7be6
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/LISA_JONES_dumps.sh.tpl
@@ -0,0 +1 @@
+impdp admin/${db_password}@${db_name}_high directory=data_pump_dir credential=def_cred_name dumpfile= https://objectstorage.us-ashburn-1.oraclecloud.com/p/ik3Htc9z7y8trQKZp-Vq_mQoNIeR9irJtE-GzO-S3w6ElcVyGI-ZaYJgmTMqwnom/n/oradbclouducm/b/DataModelsTelco/o/LISA_JONES_25th_Aug_2022.dmp parallel=16 encryption_pwd_prompt=no exclude=cluster,indextype,db_link
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/OML_USER_GRANTS.sql b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/OML_USER_GRANTS.sql
new file mode 100644
index 0000000..530d1a8
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/OML_USER_GRANTS.sql
@@ -0,0 +1,11 @@
+
+-- BEGIN
+-- FOR obj_name IN (SELECT object_name FROM dba_objects WHERE owner = 'COMMS_LAKEHOUSE_TELECOM_TOWER')
+-- LOOP
+-- EXECUTE IMMEDIATE 'GRANT SELECT ON COMMS_LAKEHOUSE_TELECOM_TOWER.' || obj_name.object_name || ' TO DMISHRA';
+-- END LOOP;
+-- END;
+-- /
+
+-- exit;
+-- /
\ No newline at end of file
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/SYNONYM_DMISHRA.sql b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/SYNONYM_DMISHRA.sql
new file mode 100644
index 0000000..5df10ec
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/SYNONYM_DMISHRA.sql
@@ -0,0 +1,5 @@
+CREATE OR REPLACE SYNONYM DMISHRA.SITE FOR COMMS_LAKEHOUSE_TELECOM_TOWER.SITE;
+CREATE OR REPLACE SYNONYM DMISHRA.NEW_DEVELOPMENT_ROLLOUT FOR COMMS_LAKEHOUSE_TELECOM_TOWER.NEW_DEVELOPMENT_ROLLOUT;
+
+exit;
+/
\ No newline at end of file
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/bastion_environment.sh.tpl b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/bastion_environment.sh.tpl
new file mode 100644
index 0000000..22f92e3
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/bastion_environment.sh.tpl
@@ -0,0 +1,23 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+#!/bin/bash
+db_name=${db_name}
+
+echo "-- Getting Started"
+echo "-- SQLnet.ora inject the wallet location"
+mkdir -p mywalletdir
+unzip wallet_${db_name}.zip -d mywalletdir
+cd /home/opc/mywalletdir/
+ls
+cat /home/opc/mywalletdir/sqlnet.ora
+export LC_CTYPE=en_US.UTF-8
+export LC_ALL=en_US.UTF-8
+perl -pi.back -e 's#\?\/network\/admin#'$//home/opc/mywalletdir'#g' /home/opc/mywalletdir/sqlnet.ora
+export TNS_ADMIN=/home/opc/mywalletdir
+cat /home/opc/mywalletdir/sqlnet.ora
+echo "export TNS_ADMIN=/home/opc/mywalletdir" >> /home/opc/.bashrc
+echo "-bastion_environment.sh.tpl DONE!"
+
+
+
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/config.tpl b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/config.tpl
new file mode 100644
index 0000000..c0fc59b
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/config.tpl
@@ -0,0 +1,6 @@
+[DEFAULT]
+user=${ociUserId}
+fingerprint=${ociKeyFingerprint}
+key_file=/home/opc/.oci/oci_api_key.pem
+tenancy=${ociTenancyId}
+region=${ociRegion}
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/file_envs.sh b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/file_envs.sh
new file mode 100644
index 0000000..2fd01c0
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/file_envs.sh
@@ -0,0 +1,7 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+unset ORACLE_HOME
+export JAVA_HOME=/usr/java/latest
+export PATH=$JAVA_HOME/bin:$PATH
+alias sql=/opt/oracle/sqlcl/bin/sql
\ No newline at end of file
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/finalize.sh.tpl b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/finalize.sh.tpl
new file mode 100755
index 0000000..4738f1f
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/finalize.sh.tpl
@@ -0,0 +1,73 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+#!/bin/bash
+
+# Variables Section
+
+Oracle_Analytics_Instance_Name=${Oracle_Analytics_Instance_Name}
+Tenancy_Name=${Tenancy_Name}
+bucket=${bucket}
+home_region_for_oac=${home_region_for_oac}
+
+# Provide the Authorization Token to access the Analytics Instance API - maximum expiration time in the console it's: 604,800 s
+# Please provide the token without "" -> example: Authorization_Token=eyJ4NXQjUzI1NiI6ImFhN2lZUXFRSEluR
+Authorization_Token=${Authorization_Token}
+
+# OCI CLI Authentification Credentials
+ociRegion=${ociRegion}
+ociTenancyId=${ociTenancyId}
+ociUserId=${ociUserId}
+ociKeyFingerprint=${ociKeyFingerprint}
+
+# You must pass this signing key in the payload for some snapshot APIs. Before you add it to the payload, you must Base64 encode the private key (ociPrivateKeyWrapped). For example, to generate a Base64 encoded string from your private key:
+#
+# On Mac: cat myprivate-key.pem | base64 -o mywrapped-private-key.pem
+# On Linux: cat myprivate-key.pem | base64 -w 0 > mywrapped-private-key.pem
+#
+# Note: Ensure that the private key file that you encode includes -----BEGIN and -----END tags.
+#
+# Please provice the private key wrapped:
+ociPrivateKeyWrapped=${ociPrivateKeyWrapped}
+
+# Finished variables
+
+export LC_CTYPE=en_US.UTF-8
+export LC_ALL=en_US.UTF-8
+
+echo "-- Getting Started"
+
+mkdir TowerAsset
+cd TowerAsset
+echo "-- Retrive the original bar file from the shared object storage"
+wget -q https://objectstorage.us-ashburn-1.oraclecloud.com/p/e5v5yR0V_id-BlUrOERyrh_UqzmF-ZFVZx-EE22y-IGwvuCZBzq2z5x24ZZwclGT/n/oradbclouducm/b/DataModelsTelco/o/TowerAsset.bar
+echo "-- Fixing the bar file"
+unzip -qq TowerAsset.bar
+rm -rf TowerAsset.bar
+echo "-- Modify the links for using the current hostname of OAC, tenancy name and region key"
+echo "-- Create new bar file for OAC with the custom configuration"
+zip -fz TowerAsset_modified.bar -r -qq *
+echo "-- Upload the snapshot to the object storage in our tenancy"
+oci os object put -ns $Tenancy_Name -bn $bucket --force --file TowerAsset_modified.bar > /dev/null
+cd ..
+rm -rf TowerAsset
+echo "-- Get details of an Analytics instance"
+curl -i --header "Authorization: Bearer $Authorization_Token" --request GET https://$Oracle_Analytics_Instance_Name-$Tenancy_Name-$home_region_for_oac.analytics.ocp.oraclecloud.com/api/20210901/system 2>&1 | grep HTTP/1.1
+echo "-- Create the Register Snapshot New Json File"
+cat registermy_snapshot.json | jq --arg bucket $bucket --arg ociRegion $ociRegion --arg ociTenancyId $ociTenancyId --arg ociUserId $ociUserId --arg ociKeyFingerprint $ociKeyFingerprint --arg ociPrivateKeyWrapped $ociPrivateKeyWrapped '{"type":.type, "name":.name, "description":.description,"storage": { "type":"OCI_NATIVE", "bucket":$bucket, "auth": {"type":"OSS_AUTH_OCI_USER_ID", "ociRegion":$ociRegion, "ociTenancyId":$ociTenancyId, "ociUserId":$ociUserId, "ociKeyFingerprint":$ociKeyFingerprint, "ociPrivateKeyWrapped":$ociPrivateKeyWrapped}}, "bar":{"uri":"file:///TowerAsset_modified.bar"}}' > registermy_snapshot_new.json
+echo "-- Register an existing snapshot using the new json file created with all the variables based on your environment"
+curl -i --header "Authorization: Bearer $Authorization_Token" --header "Content-Type: application/json" --request POST https://$Oracle_Analytics_Instance_Name-$Tenancy_Name-$home_region_for_oac.analytics.ocp.oraclecloud.com/api/20210901/snapshots -d @registermy_snapshot_new.json 2>&1 | grep HTTP/1.1
+echo "-- Get all snapshots available for your OAC already registered"
+curl -i --header "Authorization: Bearer $Authorization_Token" --request GET https://$Oracle_Analytics_Instance_Name-$Tenancy_Name-$home_region_for_oac.analytics.ocp.oraclecloud.com/api/20210901/snapshots 2>&1 | grep HTTP/1.1
+echo "-- Get the ID of your registered snapshoot and use it in the next step"
+id=`curl --silent --header "Authorization: Bearer $Authorization_Token" --request GET https://$Oracle_Analytics_Instance_Name-$Tenancy_Name-$home_region_for_oac.analytics.ocp.oraclecloud.com/api/20210901/snapshots | jq -r '.items[0].id'`
+echo "-- Create the Restore Snapshot New Json File with your registered ID of the snapshot"
+cat restore_mysnapshot.json | jq --arg id $id '{"snapshot": { "id":$id, "password":"TowerAssetAdmin123"}}' > restore_mysnapshot_new.json
+echo ""
+echo "-- Restore a snapshot in an Analytics instance"
+curl -i --header "Authorization: Bearer $Authorization_Token" --header "Content-Type: application/json" --request POST https://$Oracle_Analytics_Instance_Name-$Tenancy_Name-$home_region_for_oac.analytics.ocp.oraclecloud.com/api/20210901/system/actions/restoreSnapshot -d @restore_mysnapshot_new.json 2>&1 | grep HTTP/1.1
+sleep 120
+rm -rf registermy_snapshot_new.json
+rm -rf restore_mysnapshot_new.json
+oci os object delete --bucket-name $bucket --force --object-name TowerAsset_modified.bar
+echo "-- Restore Done!"
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/provisioner.tf b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/provisioner.tf
new file mode 100644
index 0000000..c7d27b5
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/provisioner.tf
@@ -0,0 +1,285 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+resource "null_resource" "remote-exec" {
+
+ provisioner "file" {
+ source = "./modules/provisioner/file_envs.sh"
+ destination = "/tmp/file_envs.sh"
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ destination = "/home/opc/bastion_environment.sh"
+ content = templatefile("./modules/provisioner/bastion_environment.sh.tpl", {
+ dbhostname = var.dbhostname
+ db_name = var.db_name
+ })
+
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ destination = "/home/opc/ADW_CREATE_CREDENTIAL.sql"
+ content = templatefile("./modules/provisioner/ADW_CREATE_CREDENTIAL.sql.tpl", {
+ db_password = var.db_password
+ })
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ destination = "/home/opc/CREATE_USERS.sql"
+ content = templatefile("./modules/provisioner/CREATE_USERS.sql.tpl", {
+ db_password = var.db_password
+ llmpw = var.llmpw
+ })
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ destination = "/home/opc/COMMS_LAKEHOUSE_TELECOM_TOWER_dumps.sh"
+ content = templatefile("./modules/provisioner/COMMS_LAKEHOUSE_TELECOM_TOWER_dumps.sh.tpl", {
+ db_name = var.db_name
+ db_password = var.db_password
+ })
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ destination = "/home/opc/LISA_JONES_dumps.sh"
+ content = templatefile("./modules/provisioner/LISA_JONES_dumps.sh.tpl", {
+ db_name = var.db_name
+ db_password = var.db_password
+ })
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ source = "./modules/provisioner/COMMS_LAKEHOUSE_TELECOM_TOWER.sql"
+ destination = "/home/opc/COMMS_LAKEHOUSE_TELECOM_TOWER.sql"
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ source = "./modules/provisioner/LISA_JONES.sql"
+ destination = "/home/opc/LISA_JONES.sql"
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ # provisioner "file" {
+ # source = "./modules/provisioner/OML_USER_GRANTS.sql"
+ # destination = "/home/opc/OML_USER_GRANTS.sql"
+ # connection {
+ # agent = false
+ # timeout = "30m"
+ # host = var.host
+ # user = "opc"
+ # private_key = var.private_key
+ # }
+ # }
+
+ provisioner "file" {
+ source = "./modules/provisioner/SYNONYM_DMISHRA.sql"
+ destination = "/home/opc/SYNONYM_DMISHRA.sql"
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ source = "wallet_${var.db_name}.zip"
+ destination = "/home/opc/wallet_${var.db_name}.zip"
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ source = "./modules/provisioner/registermy_snapshot.json"
+ destination = "/home/opc/registermy_snapshot.json"
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ source = "./modules/provisioner/restore_mysnapshot.json"
+ destination = "/home/opc/restore_mysnapshot.json"
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ destination = "/home/opc/finalize.sh"
+ content = templatefile("./modules/provisioner/finalize.sh.tpl", {
+ Oracle_Analytics_Instance_Name = var.Oracle_Analytics_Instance_Name
+ Tenancy_Name = var.Tenancy_Name
+ bucket = var.bucket
+ Authorization_Token = var.Authorization_Token
+ ociRegion = var.ociRegion
+ ociTenancyId = var.ociTenancyId
+ ociUserId = var.ociUserId
+ ociKeyFingerprint = var.ociKeyFingerprint
+ ociPrivateKeyWrapped = var.ociPrivateKeyWrapped
+ home_region_for_oac = var.home_region_for_oac
+ })
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ destination = "/home/opc/config"
+ content = templatefile("./modules/provisioner/config.tpl", {
+ ociUserId = var.ociUserId
+ ociKeyFingerprint = var.ociKeyFingerprint
+ ociTenancyId = var.ociTenancyId
+ ociRegion = var.ociRegion
+ })
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "file" {
+ source = "./oci_api_key.pem"
+ destination = "/home/opc/oci_api_key.pem"
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ }
+
+ provisioner "remote-exec" {
+ connection {
+ agent = false
+ timeout = "30m"
+ host = var.host
+ user = "opc"
+ private_key = var.private_key
+ }
+ inline = [
+ "sudo chmod 777 /tmp/file_envs.sh",
+ "sudo chmod 777 /home/opc/bastion_environment.sh",
+ "sudo chmod 777 /home/opc/ADW_CREATE_CREDENTIAL.sql",
+ "sudo chmod 777 /home/opc/CREATE_USERS.sql",
+ "sudo chmod 777 /home/opc/COMMS_LAKEHOUSE_TELECOM_TOWER_dumps.sh",
+ "sudo chmod 777 /home/opc/LISA_JONES_dumps.sh",
+ "sudo chmod 777 /home/opc/COMMS_LAKEHOUSE_TELECOM_TOWER.sql",
+ "sudo chmod 777 /home/opc/LISA_JONES.sql",
+ # "sudo chmod 777 /home/opc/OML_USER_GRANTS.sql",
+ "sudo chmod 777 /home/opc/SYNONYM_DMISHRA.sql",
+ "sudo chmod 777 /home/opc/wallet_${var.db_name}.zip",
+ "sudo mkdir /home/opc/.oci",
+ "sudo chmod 777 -R /home/opc/.oci",
+ "sudo chmod 777 -R /home/opc/.oci/*",
+ "sudo chown -R opc:opc /home/opc/.oci",
+ "sudo chown -R opc:opc -R /home/opc/.oci/*",
+ "sudo mv /home/opc/config /home/opc/.oci",
+ "sudo mv /home/opc/oci_api_key.pem /home/opc/.oci",
+ "sudo chmod 777 /home/opc/.oci/oci_api_key.pem",
+ "sudo chmod 777 /home/opc/.oci/config",
+ "sudo chmod +x /home/opc/finalize.sh",
+ "oci setup repair-file-permissions --file /home/opc/.oci/config",
+ "oci setup repair-file-permissions --file /home/opc/.oci/oci_api_key.pem",
+ "sudo systemctl disable firewalld",
+ "sudo systemctl stop firewalld",
+ "sh /tmp/file_envs.sh",
+ "sh /home/opc/bastion_environment.sh",
+ "echo 'Getting connected'",
+ "echo 'Start running ADW_CREATE_CREDENTIAL.sql script'",
+ "sql -cloudconfig wallet_${var.db_name}.zip ADMIN/${var.db_password}@'${var.conn_db}' @/home/opc/ADW_CREATE_CREDENTIAL.sql",
+ "export LC_CTYPE=en_US.UTF-8",
+ "export LC_ALL=en_US.UTF-8",
+ "export TNS_ADMIN=/home/opc/mywalletdir",
+ "echo 'Start creating additional users'",
+ "sql -cloudconfig wallet_${var.db_name}.zip ADMIN/${var.db_password}@'${var.conn_db}' @/home/opc/CREATE_USERS.sql",
+ "echo 'Start importing dumps for LISA_JONES schemas'",
+ "sh /home/opc/LISA_JONES_dumps.sh",
+ "echo 'Start importing dumps for COMMS_LAKEHOUSE_TELECOM_TOWER schema'",
+ "sh /home/opc/COMMS_LAKEHOUSE_TELECOM_TOWER_dumps.sh",
+ "sql -cloudconfig wallet_${var.db_name}.zip ADMIN/${var.db_password}@'${var.conn_db}' @/home/opc/LISA_JONES.sql",
+ "sql -cloudconfig wallet_${var.db_name}.zip ADMIN/${var.db_password}@'${var.conn_db}' @/home/opc/COMMS_LAKEHOUSE_TELECOM_TOWER.sql",
+ # "sql -cloudconfig wallet_${var.db_name}.zip ADMIN/${var.db_password}@'${var.conn_db}' @/home/opc/OML_USER_GRANTS.sql",
+ "sql -cloudconfig wallet_${var.db_name}.zip ADMIN/${var.db_password}@'${var.conn_db}' @/home/opc/SYNONYM_DMISHRA.sql",
+ "echo 'Finished!'",
+ ]
+ }
+}
+
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/registermy_snapshot.json b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/registermy_snapshot.json
new file mode 100644
index 0000000..cef32aa
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/registermy_snapshot.json
@@ -0,0 +1,22 @@
+{
+ "type": "REGISTER",
+ "name": "TowerAsset snapshoot",
+ "description": "TowerAsset snapshoot",
+ "storage": {
+ "type": "OCI_NATIVE",
+ "bucket": "bucket",
+ "auth": {
+ "type": "OSS_AUTH_OCI_USER_ID",
+ "ociRegion": "uk-london-1",
+ "ociTenancyId": "ocid1.tenancy.oc1..aaaaajd24mb6utvkymyo4xwxyv3gfa",
+ "ociUserId": "ocid1.user.oc1..aaaaaa4y3ketha6tqj36f34lbbaddhiq",
+ "ociKeyFingerprint": "12:1d:7d:18:6d:a7:fc:00",
+ "ociPrivateKeyWrapped": "LS0tL1ZjlXMGV6OTV6cUk2SU980M05qL1ZJOUNVckM06di8yU2kvL0pvRVlNY3E5NE9SNUhybm1VWVBac3pmaVRqZmN3RHROaWhLQ2tJWApVWGFESGxGMVF3b21LSGFpeDN1RHMzWUh5QnJURVAveUQzSXBNWVdKUTNWanVreGpnMHhOMkJoazBDM1JaZGY1ClFMcmMxek8rMDBSanlkOWt5YVVyYzdGUkQyTnZUekR3Q1RjRlQxUGpReFBjMmh0Y1A3eFBoTGdGTmhobXpaaDEKcHE0MHhXYnZwQ1pPN3EwSGtZZUpDM0VIMFl0RndKOXdJKzNnandJREFRQUJBb0lCQVFDZ0tkY2hUS1NuNnNlbgpFbHd2eDhrb1JaSGluR3lQU0oyM2FhdkRLYStDaXpPSEpNbDgvemNCdExZSDFMOWNKWnZ1Smp0UmY3aVFqRGZkCnpVOFRlV1ZkeXZlVWVzTGh0cHlGMll4eG0wejFYS0JNYysxODNtMVdxVUVUZDFaaytTb2xnOFhOaFMzaklsQjcKd25ueG5JN210MVFLRlIxd0JHQmxPQlZQOGxlWEMvTHNUaEc0UGpDcTU1elRRNGF4RlJvaHdIeWJtUTJ2T1pSZQpSQ2FIQWtZTHAwNkVGeHQvU3dsVEFxa0lRYUlpRGZmcUc5VjVXTHVJKzJkaUUwaXVaQmdsYTljSDRENXZXQi85ClY3UUcybXo1TDNEUDN4U2xhR3owemQxRlc1ZE1xYkFzdmFkSWNTU0VaazloeGxLa1NsMk0wYk9RaGxUQUtPbC8KZnl2UzlIZmhBb0dCQU9reXk2eEdNNFFvWEkxNk9mNzBtSmFVV0JablJBRlkzL3NTS3djS0NIbldOb0N1TUJvego5UWtvWHVPTy9QanA3TTNiRmhTNG5GbWYwZlhjL3JYOW0rS3I5Y0Z5b0JxaHMxbnJBVXlWalFwNlRyei9UT1ZuCm9UREthbjlmMEVieVFwSGtRVnJ5MC9nYWtUb0hIajA0MjczeU9ROGZCQlRyRnNMRGFlTml1ajlyQW9HQkFONW0KU2xXL095QWVjNE50K2lRM0hCSDU5L2w3U01SU3hnL0tEMVgzamZJL1d5aGl6a1daaFBIa3dvd2dZVzdFUjVEUQpJU0xtZXZGOVdkYVNhWmlHR1RpV1Y5R2dnVTBlaW9RVXQ2OTVyZ2hBN1o3bitaNVpoN0k5dGM2MGkwUHRFVWJsCm1JckFzbU4wdWpnWDVQZDRobTdoaWVKZE1EQlFUVGFQaEZudWVxQnRBb0dCQU53ZkxJNFRQZkdUdjdsMEZHYUwKTDdXRGxacWdJMXM2TDBKcHBkL2hJcHNQRHlkc1JNK1hGOGRyS2hhWEZFZEpXRlFBWjlscllYcGdGK3FDanBQdgpMa1JLbVpIZXh5NGNVSldoOVBuN2VNVFpLcFhRVHgrRU1HMUR4RDh6akFCTUVYWnhCUmY2ZXdlSTNHanY2eVZUCkZHazV5WTV5Y29Ia1h2bTlSNmh4dXVpOUFvR0FkZjdKZzdNQkdLcHZXUlQ1ZVV0djdpMjBuajRGdm51NEw5cGgKeHBlZ1RSM0dMS2czam4vRUpGN2R4V0RNc09zY21UMkR4ek9IbVNhTGlxZUZ0UEc0NGVnS1VlTVpseVFVRTcyMgpNemlZMkRJeW9IT3RZWkZZeUgyclB5OVZFRVh3TzdCRy9aNzlSbjFBNjgvcG9FN203RjluTzUxN21yYVFNTmwyClBBeW1MUVVDZ1lBNVp2NjlGYzdKSEEzSGVqZDVWOW43TTBzQjhka3FPZnNwOE9GbjBHY1J2NlhJOWhObjJnVzIKMks2VEtTazJvVVNJN2ZYQi8xdVhXRWovK2srajJOY0dmaUhMVitIWC9IbktiY2NpTThhTGRJc20zeWhpcXJ0bQprdDRhVVFtYS9vNlkyaWFtaUtRUEx3L2JrUWdCL3ViYTg1MENJWHNTMkxRSnFjb0VRNjcxaHc9PQotLS0tLUVORCBSU0EgUFJJVkFURSBLRVktLS0tLQo="
+ }
+ },
+ "bar": {
+ "uri": "file:///TowerAsset.bar"
+ }
+}
+
+
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/restore_mysnapshot.json b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/restore_mysnapshot.json
new file mode 100644
index 0000000..18af5c5
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/restore_mysnapshot.json
@@ -0,0 +1,7 @@
+{
+ "snapshot": {
+ "id" : "35b34a1d-43c7-4844-bacf",
+ "password" : "TowerAssetAdmin123"
+ }
+}
+
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/variables.tf b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/variables.tf
new file mode 100644
index 0000000..965de4d
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/modules/provisioner/variables.tf
@@ -0,0 +1,74 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+variable "host" {}
+
+variable "private_key" {}
+
+variable "atp_url" {
+ default = ""
+}
+
+variable "db_password" {
+ default = ""
+}
+
+variable "conn_db" {
+ default = ""
+}
+
+variable "db_name" {
+ default = ""
+}
+
+variable "dbhostname" {
+ default = ""
+}
+
+variable "llmpw" {
+ default = ""
+}
+
+# oac automation script variables
+
+variable "Oracle_Analytics_Instance_Name" {
+ default = ""
+}
+
+variable "Tenancy_Name" {
+ default = ""
+}
+
+variable "bucket" {
+ default = ""
+}
+
+variable "Authorization_Token" {
+ default = ""
+}
+
+variable "ociRegion" {
+ default = ""
+}
+
+variable "ociTenancyId" {
+ default = ""
+}
+
+variable "ociUserId" {
+ default = ""
+}
+
+variable "ociKeyFingerprint" {
+ default = ""
+}
+
+variable "ociPrivateKeyWrapped" {
+ default = ""
+}
+
+variable "home_region_for_oac" {
+ default = ""
+}
+
+
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/oci_api_key.pem b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/oci_api_key.pem
new file mode 100644
index 0000000..204d929
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/oci_api_key.pem
@@ -0,0 +1,17 @@
+-----BEGIN RSA PRIVATE KEY-----
+MIIEpAIBAAKCAQEAypc6k1Z004xrXauf9W0ez95zqI6IOuvsyi4k8U2L45fV4BA1
+m67ATlKIO/obPSdjugwGC9+O36F94qgYWlKd3nFaGao43Nj/VI9CUrC4cE42oeLW
+mU6cg7z/4o3VfVv+9zv/2Si//JoEYMcq94OR5HrnmUYPZszfiTjfcwDtNihKCkIX
+UXaDHlF1QwomKHaix3uDs3YHyBrTEP/yD3IpMYWJQ3Vjukxjg0xN2Bhk0C3RZdf5
+QLrc1zO+00Rjyd9kyaUrc7FRD2NvTzDwCTcFT1PjQxPc2htcP7xPhLgFNhhmzZh1
+pq40xWbvpCZO7q0HkYeJC3EH0YtFwJ9wI+3gjwIDAQABAoIBAQCgKdchTKSn6sen
+Elwvx8koRZHinGyPSJ23aavDKa+CizOHJMl8/zcBtLYH1L9cJZvuJjtRf7iQjDfd
+zU8TeWVdyveUesLhtpyF2Yxxm0z1XKBMc+183m1WqUETd1Zk+Solg8XNhS3jIlB7
+.....
+.....
+.....
+MziY2DIyoHOtYZFYyH2rPy9VEEXwO7BG/Z79Rn1A68/poE7m7F9nO517mraQMNl2
+PAymLQUCgYA5Zv69Fc7JHA3Hejd5V9n7M0sB8dkqOfsp8OFn0GcRv6XI9hNn2gW2
+2K6TKSk2oUSI7fXB/1uXWEj/+k+j2NcGfiHLV+HX/HnKbcciM8aLdIsm3yhiqrtm
+kt4aUQma/o6Y2iamiKQPLw/bkQgB/uba850CIXsS2LQJqcoEQ671hw==
+-----END RSA PRIVATE KEY-----
\ No newline at end of file
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/outputs.tf b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/outputs.tf
new file mode 100644
index 0000000..602addb
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/outputs.tf
@@ -0,0 +1,104 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+resource "local_file" "private_key" {
+ content = module.keygen.OPCPrivateKey["private_key_pem"]
+ filename = "private_key.pem"
+ file_permission = 0600
+}
+
+output "generated_ssh_private_key_for_bastion" {
+ value = nonsensitive(module.keygen.OPCPrivateKey["private_key_pem"])
+}
+
+output "Instructions" {
+ value = "Please use the ADW URL to login by using the user admin and the password that you have provided."
+}
+
+
+# Autonomous Database Outputs:
+
+
+output "ADW_Database_db_connection" {
+ value = module.adb.db_connection
+}
+
+output "Adb_ip" {
+ value = module.adb.private_endpoint_ip
+}
+
+output "database_fully_qualified_name" {
+ value = module.adb.database_fully_qualified_name
+}
+
+output "ADW_Database_ip" {
+ value = module.adb.private_endpoint_ip
+}
+
+output "Database_Actions" {
+ value = module.adb.url
+}
+
+output "graph_studio_url" {
+ value = module.adb.graph_studio_url
+}
+
+output "machine_learning_user_management_url" {
+ value = module.adb.machine_learning_user_management_url
+}
+
+output "OML_URL" {
+ value ="https://${module.adb.database_fully_qualified_name}/oml"
+}
+
+
+# Analytics Outputs:
+
+output "Analytics_URL" {
+ value = module.oac.Analytics_URL
+}
+
+
+# Object Storage Outputs:
+
+output "Buckets" {
+ value = module.os.buckets
+}
+
+# Big Data Service Outputs:
+
+output "Big_Data_Service" {
+ value = join(", ", [for s in module.big-data-service : s.big_data_service])
+}
+
+# Data Catalog Outputs:
+
+output "DataCatalog_Name" {
+ value = module.datacatalog.datacatalog
+}
+
+output "datacatalog_data_asset" {
+ value = module.datacatalog.datacatalog_data_asset
+}
+
+# Bastion Instance Outputs:
+
+output "web-instance-all_instances" {
+ value = module.web-instance.all_instances
+}
+
+output "web-instance-all_private_ips" {
+ value = module.web-instance.all_private_ips
+}
+
+output "web-instance-all_public_ips" {
+ value = module.web-instance.all_public_ips
+}
+
+output tenancy_name {
+ value = lower(data.oci_identity_tenancy.tenancy.name)
+}
+
+output home_region_for_oac {
+ value = lower(substr(local.home_region_for_oac, 0, 2))
+}
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/provider.tf b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/provider.tf
new file mode 100644
index 0000000..424e4b9
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/provider.tf
@@ -0,0 +1,31 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+terraform {
+ required_providers {
+ oci = {
+ source = "oracle/oci"
+ version = ">= 5.30.0"
+ }
+ }
+ required_version = ">= 1.2.0"
+}
+
+provider "oci" {
+ tenancy_ocid = var.tenancy_ocid
+ user_ocid = var.user_ocid
+ fingerprint = var.fingerprint
+ private_key_path = var.private_key_path
+ region = var.region
+ disable_auto_retries = false
+}
+
+provider "oci" {
+ alias = "homeregion"
+ tenancy_ocid = var.tenancy_ocid
+ user_ocid = var.user_ocid
+ fingerprint = var.fingerprint
+ private_key_path = var.private_key_path
+ region = data.oci_identity_region_subscriptions.home_region_subscriptions.region_subscriptions[0].region_name
+ disable_auto_retries = false
+}
\ No newline at end of file
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/schema.yaml b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/schema.yaml
new file mode 100644
index 0000000..3f4ea3f
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/schema.yaml
@@ -0,0 +1,720 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+title: "Create the Deploy of Telco Asset Value Maximization - Data Driven, Business-like Management of Tower - Platform to enable Maximizing Fixed Asset Returns to increase - Monetization, Shareholder Value and Operational Effectiveness"
+stackDescription: "Use this solution to launch the Telco Asset Value Maximization - Data Driven, Business-like Management of Tower - Platform to enable Maximizing Fixed Asset Returns to increase - Monetization, Shareholder Value and Operational Effectiveness solution"
+schemaVersion: 1.1.0
+version: "20240612"
+locale: "en"
+groupings:
+ - title: "General Settings"
+ visible: true
+ variables:
+ - tenancy_ocid
+ - region
+ - compartment_id
+ - ociPrivateKeyWrapped
+ - user_ocid
+ - fingerprint
+ - Authorization_Token
+ - service_name
+ - title: "Autonomous Database Configuration"
+ variables:
+ - db_name
+ - db_is_free_tier
+ - db_license_model
+ - db_password
+ - db_version
+ - db_size_in_tbs
+ - db_enable_auto_scaling
+ - db_compute_model
+ - db_compute_count
+ - db_workload
+ - db_data_safe_status
+ - db_operations_insights_status
+ - db_database_management_status
+ - llmpw
+ - title: "Oracle Analytics Cloud Configuration"
+ variables:
+ - Oracle_Analytics_Instance_Name
+ - analytics_instance_feature_set
+ - analytics_instance_license_type
+ - analytics_instance_idcs_access_token
+ - analytics_instance_capacity_capacity_type
+ - analytics_instance_capacity_value
+ - title: "Object Storage"
+ variables:
+ - bucket_name
+ - bucket_access_type
+ - bucket_storage_tier
+ - bucket_events_enabled
+ - title: "Data Catalog"
+ variables:
+ - catalog_display_name
+ - title: "Bastion Instance Details"
+ variables:
+ - bastion_instance_display_name
+ - bastion_instance_shape
+ - title: "Network Configuration"
+ variables:
+ - vcn_cidr
+ - public_subnet_cidr
+ - private_subnet_cidr
+ - show_advanced_options
+ - title: Big Data Service Configuration (OPTIONAL)
+ variables:
+ - show_advanced_options_big_data
+ - create_big_data_cluster
+ - big_data_cluster_admin_password
+ - big_data_cluster_public_key
+ - big_data_cluster_version
+ - big_data_display_name
+ - big_data_is_high_availability
+ - big_data_is_secure
+ - big_data_master_node_spape
+ - big_data_master_node_block_volume_size_in_gbs
+ - big_data_master_node_number_of_nodes
+ - big_data_util_node_shape
+ - big_data_util_node_block_volume_size_in_gbs
+ - big_data_util_node_number_of_nodes
+ - big_data_worker_node_shape
+ - big_data_worker_node_block_volume_size_in_gbs
+ - big_data_worker_node_number_of_nodes
+ - title: "Hidden Variables"
+ visible: false
+ variables:
+ - private_key_path
+ - bastion_instance_image_ocid
+# General Configuration Variables
+variables:
+ tenancy_ocid:
+ title: Tenancy ID
+ description: The Oracle Cloud Identifier (OCID) for your tenancy.
+ type: string
+ required: true
+ visible: false
+ compartment_id:
+ title: Stack Compartment
+ description: Choose the compartment where all resources will be provisioned.
+ type: oci:identity:compartment:id
+ required: true
+ visible: true
+ region:
+ title: Region
+ description: Select Region where all resources will be created.
+ type: oci:identity:region:name
+ required: true
+ visible: true
+ user_ocid:
+ title: "The User Ocid of your username"
+ type: string
+ default: "copy-paste User Ocid of your username"
+ description: Enter The OCID of your user for example ocid1.user.oc1..aaaaaaaa4bjez27pyslznrrk5g24yiev24ld3ketha6tqj36f34lbbaddhib
+ required: true
+ visible: true
+ fingerprint:
+ title: Your fingerprint of your user
+ type: string
+ default: "copy-paste fingerprint Ocid of your username"
+ description: Enter Your fingerprint of your user for Example 12:1d:7d:18:6d:a7:e3:fc:17:4c:30:a9:44:65:7d:12
+ required: true
+ visible: true
+ ociPrivateKeyWrapped:
+ title: The OCI ociPrivateKeyWrapped
+ type: string
+ default: "copy-paste your oci PrivateKey Wrapped"
+ description: "You must pass this signing key in the payload for some snapshot APIs. Before you add it to the payload, you must Base64 encode the private key (ociPrivateKeyWrapped). For example, to generate a Base64 encoded string from your private key: / On Mac: cat myprivate-key.pem | base64 -o mywrapped-private-key.pem / On Linux: cat myprivate-key.pem | base64 -w 0 > mywrapped-private-key.pem / Note: Ensure that the private key file that you encode includes -----BEGIN and -----END tags."
+ required: true
+ visible: true
+ Authorization_Token:
+ title: Authorization_Token
+ type: string
+ default: ""
+ description: Authorization_Token
+ required: false
+ visible: false
+ service_name:
+ type: string
+ default: "TelcoAsset"
+ visible: true
+ required: true
+ title: "A prefix for policies and dynamic groups names - scope: to be unique names not duplicates"
+ description: "A prefix for policies and dynamic groups names - scope: to be unique names not duplicates"
+# Autonomous Database Configuration Variables
+ db_name:
+ title: Database Name
+ description: "Provide Database name. Constraints: 12 alphanumeric characters only. No Spaces."
+ required: true
+ type: string
+ maxLength: 30
+ db_is_free_tier:
+ title: Do do want a always Free Oracle Autonomous Database instance?
+ description: "Provision Always Free Oracle Autonomous Database instance (1 OCPU 20 GB Storage)?"
+ type: enum
+ enum:
+ - "true"
+ - "false"
+ default: "false"
+ required: true
+ visible: true
+ db_license_model:
+ title: "Provision Paid Oracle Autonomous Database instance (2 OCPU 1 TB Storage) - License Included or BYOL?"
+ description: "Note: This configuration can be changed later from the OCI console."
+ type: enum
+ enum:
+ - LICENSE_INCLUDED
+ - BRING_YOUR_OWN_LICENSE
+ default: "BRING_YOUR_OWN_LICENSE"
+ required: true
+ visible:
+ eq:
+ - db_is_free_tier
+ - false
+ db_password:
+ title: Database Admin Password
+ description: "Provide admin password. Constraints: 12 - 30 characters. At least one uppercase letter, one lowercase letter, and one number. No special characters."
+ type: password
+ required: true
+ confirmation: true
+ pattern: ((?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?!.*[%!@^&)(]).{12,20})
+ db_version:
+ title: "A valid Oracle Database version for Autonomous Database"
+ description: "A valid Oracle Database version for Autonomous Database"
+ type: enum
+ enum:
+ - "19c"
+ default: "19c"
+ required: true
+ visible: true
+ db_size_in_tbs:
+ title: "The quantity of data in the database, in terabytes."
+ description: "The quantity of data in the database, in terabytes."
+ type: enum
+ enum:
+ - 1
+ - 2
+ - 4
+ - 6
+ - 8
+ - 10
+ - 12
+ - 16
+ - 24
+ - 36
+ - 52
+ - 128
+ default: 1
+ visible: true
+ required: true
+ db_enable_auto_scaling:
+ title: Indicates if auto scaling is enabled for the Autonomous Database CPU core count.
+ description: "Indicates if auto scaling is enabled for the Autonomous Database CPU core count. "
+ type: enum
+ enum:
+ - "true"
+ - "false"
+ default: "false"
+ required: true
+ visible: true
+ db_compute_model:
+ title: "The compute model of the Autonomous Database ECPUs"
+ description: "The compute model of the Autonomous Database ECPUs"
+ type: enum
+ enum:
+ - "ECPU"
+ default: "ECPU"
+ required: true
+ visible:
+ eq:
+ - db_is_free_tier
+ - false
+ db_compute_count:
+ title: The number of ECPUs cores to be made available to the database
+ description: "The number of ECPU cores to enable. For ECPUs count needs to be minimum 2 and maximum 512 ECPUs"
+ type: string
+ default: 4
+ required: true
+ visible:
+ eq:
+ - db_is_free_tier
+ - false
+ db_workload:
+ title: Autonomous Database Type of workload.
+ description: "Autonomous Database Type of workload."
+ type: enum
+ enum:
+ - "DW"
+ - "OLTP"
+ default: "DW"
+ required: true
+ visible: true
+ db_data_safe_status:
+ title: "Status of the Data Safe registration for this Autonomous Database"
+ description: "Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED."
+ type: enum
+ enum:
+ - "NOT_REGISTERED"
+ - "REGISTERED"
+ default: "NOT_REGISTERED"
+ required: true
+ visible: true
+ db_database_management_status:
+ title: "Status of Database Management for this Autonomous Database"
+ description: "Status of Database Management for this Autonomous Database. Values supported are ENABLED and NOT_ENABLED"
+ type: enum
+ enum:
+ - "NOT_ENABLED"
+ - "ENABLED"
+ default: "NOT_ENABLED"
+ required: true
+ visible: true
+ db_operations_insights_status:
+ title: "Status of Operations Insights for this Autonomous Database"
+ description: "Status of Operations Insights for this Autonomous Database. Values supported are ENABLED and NOT_ENABLED"
+ type: enum
+ enum:
+ - "NOT_ENABLED"
+ - "ENABLED"
+ default: "NOT_ENABLED"
+ required: true
+ visible: true
+ llmpw:
+ title: LLM token provided by your openai account
+ description: "Provide the LLM token provided by your openai account"
+ required: false
+ type: string
+# Oracle Analytics Cloud Configuration
+ Oracle_Analytics_Instance_Name:
+ title: Analytics Instance Name
+ description: "Enter a unique name for this instance. The name provided must start with a letter, contain only alphanumeric characters, no spaces and span up to 30 characters in total."
+ type: string
+ maxLength: 30
+ default: "Crowdcount"
+ required: true
+ visible: true
+ analytics_instance_feature_set:
+ title: Analytics Instance Type
+ description: Choose the Analytics Product Type.
+ type: enum
+ enum:
+ - SELF_SERVICE_ANALYTICS
+ - ENTERPRISE_ANALYTICS
+ default: "ENTERPRISE_ANALYTICS"
+ visible: create_analytics_instance
+ required: true
+ analytics_instance_license_type:
+ title: Analytics License
+ description: Choose your Oracle Analytics Cloud License Type.
+ type: enum
+ enum:
+ - LICENSE_INCLUDED
+ - BRING_YOUR_OWN_LICENSE
+ default: LICENSE_INCLUDED
+ visible: true
+ required: true
+ analytics_instance_idcs_access_token:
+ title: IDCS Access Token
+ description: Provide IDCS Access token. See Pre-req section in the Installation Document.
+ type: string
+ default: "copy-paste your token instead"
+ visible: true
+ required: true
+ analytics_instance_capacity_capacity_type:
+ title: Analytics Instance Capacity Type
+ description: The capacity value selected (OLPU count, number of users, …etc…). This parameter affects the number of CPUs, amount of memory or other resources allocated to the instance.
+ type: enum
+ enum:
+ - "OLPU_COUNT"
+ - "USERS_COUNT"
+ default: "OLPU_COUNT"
+ visible: true
+ required: true
+ analytics_instance_capacity_value:
+ title: Analytics Instance Capacity
+ description: Provide the number of OCPUs for the Oracle Analytics Instance.
+ type: enum
+ enum:
+ - 1
+ - 2
+ - 4
+ - 6
+ - 8
+ - 10
+ - 12
+ - 16
+ - 24
+ - 36
+ - 52
+ default: "1"
+ visible: true
+ required: true
+# Object Storage Configuration
+ bucket_name:
+ title: Object Storage Bucket Name
+ description: "Enter a unique name for this object storage bucket. The name provided must start with a letter, contain only alphanumeric characters, no spaces and span up to 30 characters in total."
+ type: string
+ maxLength: 30
+ default: "CrowdCounting"
+ required: true
+ visible: true
+ bucket_access_type:
+ title: Object Storage Access Type
+ description: "Select the Access Type of the bucket."
+ type: enum
+ enum:
+ - NoPublicAccess
+ - ObjectReadWithoutList
+ - ObjectRead
+ default: "NoPublicAccess"
+ required: true
+ visible: true
+ bucket_storage_tier:
+ title: Object Storage Bucket Name
+ description: "Select the storage Tier of the bucket."
+ type: enum
+ enum:
+ - Standard
+ - Archive
+ default: "Standard"
+ required: true
+ visible: true
+ bucket_events_enabled:
+ title: Indicates if bucket events are enabled or not.
+ description: "Indicates if bucket events are enabled or not "
+ type: enum
+ enum:
+ - "true"
+ - "false"
+ default: "false"
+ required: true
+ visible: true
+# Data Catalog Configuration
+ catalog_display_name:
+ title: Data Catalog Name
+ description: "Enter a unique name for this data catalog. The name provided must start with a letter, contain only alphanumeric characters, no spaces and span up to 30 characters in total."
+ type: string
+ maxLength: 30
+ default: "TelcoAsset"
+ required: true
+ visible: true
+# "Bastion Instance Configuration"
+ bastion_instance_display_name:
+ title: UI Data Server Display Name
+ description: "Enter a name for thhe UI Data Server VM. The name provided must start with a letter, contain only alphanumeric characters, no spaces and span up to 30 characters in total."
+ type: string
+ default: "TelcoAsset"
+ required: true
+ visible: true
+ bastion_instance_shape:
+ title: Provide the shape for UI Data Server VM
+ description: "Provide the shape for UI Data Server VM"
+ type: oci:core:instanceshape:name
+ default: "VM.Standard2.4"
+ required: true
+ visible: true
+ dependsOn:
+ compartmentId: ${compartment_id}
+# Network Configuration
+ vcn_cidr:
+ visible:
+ and:
+ - show_advanced_options
+ type: string
+ default: "10.0.0.0/16"
+ pattern: "^(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\/(3[0-2]|[1-2]?[0-9])$"
+ title: VCN Network CIDR
+ required: true
+ description: The CIDR to assign to the new Virtual Cloud Network (VCN) to create for this service. This field is not required if you want to use an existing VCN. When using VCN peering ensure that the VCNs being peered have non-overlapping CIDR blocks.
+ public_subnet_cidr:
+ visible:
+ and:
+ - show_advanced_options
+ type: string
+ default: "10.0.0.0/24"
+ pattern: "^(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\/(3[0-2]|[1-2]?[0-9])$"
+ required: true
+ title: Public Subnet CIDR
+ description: "The CIDR of the new public subnet."
+ private_subnet_cidr:
+ visible:
+ and:
+ - show_advanced_options
+ type: string
+ default: "10.0.1.0/24"
+ pattern: "^(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]).(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\/(3[0-2]|[1-2]?[0-9])$"
+ required: true
+ title: Private Subnet CIDR
+ description: "The CIDR of the new private subnet."
+ show_advanced_options:
+ title: Show Advanced Options
+ description: Enable advanced options for network.
+ type: boolean
+ default: false
+ visible: true
+# Big Data Service variables
+ create_big_data_cluster:
+ title: "Create Big Data Cluster"
+ type: boolean
+ default: false
+ big_data_cluster_admin_password:
+ type: password
+ default: "SW5pdDAxQA=="
+ visible:
+ eq:
+ - create_big_data_cluster
+ - true
+ required: true
+ confirmation: true
+ title: "Provide the Big Data Cluster Admin Password"
+ description: "Current Password is: SW5pdDAxQA== and the Password has to be Base64 encoded, e.g.: echo Init01$$ | base64"
+ big_data_cluster_public_key:
+ type: oci:core:ssh:publickey
+ title: SSH Public Key
+ description: Provide your public key for the Big Data Cluster.
+ required: true
+ visible:
+ eq:
+ - create_big_data_cluster
+ - true
+ big_data_cluster_version:
+ type: string
+ default: "ODH1"
+ visible:
+ eq:
+ - create_big_data_cluster
+ - true
+ required: true
+ title: "Big Data Cluster Version"
+ description: "Big Data Cluster Version"
+ big_data_display_name:
+ type: string
+ default: "Lakehouse Cluster"
+ visible:
+ eq:
+ - create_big_data_cluster
+ - true
+ required: true
+ title: "Big Data Cluster Display Name"
+ description: "Big Data Cluster Display Name"
+ big_data_is_high_availability:
+ type: bool
+ default: false
+ visible:
+ eq:
+ - create_big_data_cluster
+ - true
+ required: true
+ title: "If the Big Data Cluster is high availability"
+ description: "If the Big Data Cluster is high availability"
+ big_data_is_secure:
+ type: bool
+ default: false
+ visible:
+ eq:
+ - create_big_data_cluster
+ - true
+ required: true
+ title: "If the Big Data Cluster is secure"
+ description: "If the Big Data Cluster is secure"
+ big_data_master_node_spape:
+ title: Provide the shape for the Master Node - Minim shape neede for this solution is VM.Standard2.4
+ description: "Provide the shape for the Master Node"
+ type: enum
+ enum:
+ - VM.Standard2.4
+ - VM.Standard2.8
+ - VM.Standard2.16
+ - VM.Standard2.24
+ - VM.DenselO2.8
+ - VM.DenselO2.16
+ - VM.DenselO2.24
+ default: "VM.Standard2.4"
+ required: true
+ visible:
+ eq:
+ - create_big_data_cluster
+ - true
+ big_data_master_node_block_volume_size_in_gbs:
+ type: string
+ default: "150"
+ visible:
+ eq:
+ - create_big_data_cluster
+ - true
+ required: true
+ title: "The Block Volume size in GBS for the Master Node. Minimum size is 150 GBS."
+ description: "The Block Volume size in GBS for the Master Node. Minimum size is 150 GBS."
+ big_data_master_node_number_of_nodes:
+ type: number
+ default: 1
+ visible:
+ eq:
+ - create_big_data_cluster
+ - true
+ required: true
+ title: "The Number of Master Nodes inside the Cluster. Minimum is 1 Node."
+ description: "The Number of Master Nodes inside the Cluster. Minimum is 1 Node."
+ big_data_util_node_shape:
+ title: Provide the shape for the Util Node - Minim shape neede for this solution is VM.Standard2.4
+ description: "Provide the shape for the Util Node"
+ type: enum
+ enum:
+ - VM.Standard2.4
+ - VM.Standard2.8
+ - VM.Standard2.16
+ - VM.Standard2.24
+ - VM.DenselO2.8
+ - VM.DenselO2.16
+ - VM.DenselO2.24
+ default: "VM.Standard2.4"
+ required: true
+ visible:
+ eq:
+ - create_big_data_cluster
+ - true
+ big_data_util_node_block_volume_size_in_gbs:
+ type: string
+ default: "150"
+ visible:
+ eq:
+ - create_big_data_cluster
+ - true
+ required: true
+ title: "The Block Volume size in GBS for the Util Node. Minimum size is 150 GBS."
+ description: "The Block Volume size in GBS for the Util Node. Minimum size is 150 GBS."
+ big_data_util_node_number_of_nodes:
+ type: number
+ default: 1
+ visible:
+ eq:
+ - create_big_data_cluster
+ - true
+ required: true
+ title: "The Number of Util Nodes inside the Cluster. Minimum is 1 Node."
+ description: "The Number of Util Nodes inside the Cluster. Minimum is 1 Node."
+ big_data_worker_node_shape:
+ title: Provide the shape for the Worker Nodes - Minim shape neede for this solution is VM.Standard2.1
+ description: "Provide the shape for the Worker Nodes"
+ type: enum
+ enum:
+ - VM.Standard2.1
+ - VM.Standard2.2
+ - VM.Standard2.4
+ - VM.Standard2.8
+ - VM.Standard2.16
+ - VM.Standard2.24
+ - VM.DenselO2.8
+ - VM.DenselO2.16
+ - VM.DenselO2.24
+ default: "VM.Standard2.4"
+ required: true
+ visible:
+ eq:
+ - create_big_data_cluster
+ - true
+ big_data_worker_node_block_volume_size_in_gbs:
+ type: string
+ default: "150"
+ visible:
+ eq:
+ - create_big_data_cluster
+ - true
+ required: true
+ title: "The Block Volume size in GBS for the Util Node. Minimum size is 150 GBS."
+ description: "The Block Volume size in GBS for the Util Node. Minimum size is 150 GBS."
+ big_data_worker_node_number_of_nodes:
+ type: number
+ default: 3
+ visible:
+ eq:
+ - create_big_data_cluster
+ - true
+ required: true
+ title: "The Number of Util Nodes inside the Cluster. Minimum is 3 Nodes."
+ description: "The Number of Util Nodes inside the Cluster. Minimum is 3 Nodes."
+ show_advanced_options_big_data:
+ title: Show Advanced Options for Big Data
+ description: Enable advanced options for Big Data Cluster.
+ type: boolean
+ default: false
+ visible: false
+outputs:
+ ADW_Database_db_connection:
+ type: string
+ title: ADW_Database_db_connection
+ Adb_ip:
+ type: string
+ title: Adb_ip
+ Database_Actions:
+ type: link
+ title: url
+ graph_studio_url:
+ type: link
+ title: graph_studio_url
+ machine_learning_user_management_url:
+ type: link
+ title: machine_learning_user_management_url
+ database_fully_qualified_name:
+ type: string
+ title: database_fully_qualified_name
+ OML_URL:
+ type: string
+ title: OML URL DETAILS
+ ADW_LOGIN:
+ type: string
+ title: ADW LOGIN DETAILS
+ Analytics_URL:
+ type: string
+ title: Analytics URL
+ Buckets:
+ type: string
+ title: Buckets
+ DataCatalog_Name:
+ type: string
+ title: DataCatalog_Name
+ datacatalog_data_asset:
+ type: string
+ title: datacatalog_data_asset
+ web-instance-all_instances:
+ type: string
+ title: web-instance-all_instances
+ web-instance-all_private_ips:
+ type: string
+ title: web-instance-all_private_ips
+ web-instance-all_public_ips:
+ type: string
+ title: web-instance-all_public_ips
+ generated_ssh_private_key_for_bastion:
+ type: string
+ title: Generated Ssh Private Key for Bastion
+ tenancy_name:
+ type: string
+ title: tenancy_name
+ home_region_for_oac:
+ type: string
+ title: home_region_for_oac
+ Big_Data_Service:
+ type: string
+ title: Big_Data_Service
+outputGroups:
+ - title: Application
+ outputs:
+ - ADW_Database_db_connection
+ - Adb_ip
+ - Database_Actions
+ - graph_studio_url
+ - machine_learning_user_management_url
+ - database_fully_qualified_name
+ - ADW_LOGIN
+ - OML_URL
+ - Analytics_URL
+ - Buckets
+ - generated_ssh_private_key_for_bastion
+ - Big_Data_Service
+ - DataCatalog_Name
+ - datacatalog_data_asset
+ - web-instance-all_instances
+ - web-instance-all_private_ips
+ - web-instance-all_public_ips
+ - tenancy_name
+ - home_region_for_oac
\ No newline at end of file
diff --git a/cloud-foundation/solutions/Telco-Asset_Value_Maximization/variables.tf b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/variables.tf
new file mode 100644
index 0000000..4e8b1c1
--- /dev/null
+++ b/cloud-foundation/solutions/Telco-Asset_Value_Maximization/variables.tf
@@ -0,0 +1,330 @@
+# Copyright © 2024, Oracle and/or its affiliates.
+# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
+
+
+terraform {
+ required_version = ">= 0.15.0"
+}
+
+variable "tenancy_ocid" {
+ type = string
+ default = ""
+}
+
+variable "region" {
+ type = string
+ default = ""
+}
+
+variable "compartment_id" {
+ type = string
+ default = ""
+}
+
+variable "user_ocid" {
+ type = string
+ default = ""
+}
+
+variable "fingerprint" {
+ type = string
+ default = ""
+}
+
+variable "private_key_path" {
+ type = string
+ default = ""
+}
+
+
+# You must pass this signing key in the payload for some snapshot APIs. Before you add it to the payload, you must Base64 encode the private key (ociPrivateKeyWrapped). For example, to generate a Base64 encoded string from your private key:
+# On Mac: cat myprivate-key.pem | base64 -o mywrapped-private-key.pem
+# On Linux: cat myprivate-key.pem | base64 -w 0 > mywrapped-private-key.pem
+# Note: Ensure that the private key file that you encode includes -----BEGIN and -----END tags.
+
+variable "ociPrivateKeyWrapped" {
+ default = ""
+}
+
+variable "Authorization_Token" {
+ default = ""
+}
+
+# Autonomous Database Configuration Variables
+
+variable "db_name" {
+ type = string
+ default = "TelcoAsset"
+}
+
+variable "db_password" {
+ type = string
+ default = ""
+}
+
+variable "db_compute_model" {
+ type = string
+ default = "ECPU"
+}
+
+variable "db_compute_count" {
+ type = number
+ default = 4
+}
+
+variable "db_size_in_tbs" {
+ type = number
+ default = 1
+}
+
+variable "db_workload" {
+ type = string
+ default = "DW"
+}
+
+variable "db_version" {
+ type = string
+ default = "19c"
+}
+
+variable "db_enable_auto_scaling" {
+ type = bool
+ default = true
+}
+
+variable "db_is_free_tier" {
+ type = bool
+ default = false
+}
+
+variable "db_license_model" {
+ type = string
+ default = "BRING_YOUR_OWN_LICENSE"
+}
+
+variable "db_data_safe_status" {
+ type = string
+ default = "NOT_REGISTERED"
+ # default = "REGISTERED"
+}
+
+variable "db_operations_insights_status" {
+ type = string
+ default = "NOT_ENABLED"
+ # default = "ENABLED"
+}
+
+variable "db_database_management_status" {
+ type = string
+ # default = "NOT_ENABLED"
+ # default = "ENABLED"
+ default = "ENABLED"
+}
+
+# LLM token provided by your openai account
+
+variable "llmpw" {
+ default = ""
+}
+
+# Analytics Cloud Instance Variables:
+
+variable "Oracle_Analytics_Instance_Name" {
+ default = "TelcoAsset"
+}
+
+variable "analytics_instance_feature_set" {
+ type = string
+ default = "ENTERPRISE_ANALYTICS"
+}
+
+variable "analytics_instance_license_type" {
+ type = string
+ default = "LICENSE_INCLUDED"
+}
+
+variable "analytics_instance_idcs_access_token" {
+ type = string
+ default = ""
+}
+
+variable "analytics_instance_capacity_capacity_type" {
+ type = string
+ default = "OLPU_COUNT"
+}
+
+variable "analytics_instance_capacity_value" {
+ type = number
+ default = 1
+}
+
+
+# Object Storage Variables:
+
+variable "bucket_name" {
+ type = string
+ default = "TelcoAsset"
+}
+
+variable "bucket_access_type" {
+ type = string
+ default = "NoPublicAccess"
+}
+
+variable "bucket_storage_tier" {
+ type = string
+ default = "Standard"
+}
+
+variable "bucket_events_enabled" {
+ type = bool
+ default = false
+}
+
+
+# Big Data Service Variables
+
+variable "create_big_data_cluster" {
+ default = "no"
+}
+
+variable "big_data_cluster_admin_password" {
+ default = "QWR3RGJPUkNMMTIzNCM=" # Password has to be Base64 encoded, e.g.: echo AdwDbORCL1234# | base64
+}
+
+variable "big_data_cluster_public_key" {
+ default = "/users/user/.ssh/id_rsa.pub" # example : "/root/.ssh/id_rsa.pub"
+}
+
+variable "big_data_cluster_version" {
+ default = "ODH1"
+}
+
+variable "big_data_display_name" {
+ default = "lakehouse"
+ }
+
+variable "big_data_is_high_availability" {
+ default = false
+}
+
+variable "big_data_is_secure" {
+ default = false
+}
+
+variable "big_data_master_node_spape" {
+ default = "VM.Standard2.4"
+}
+
+variable "big_data_master_node_block_volume_size_in_gbs" {
+ default = 150 // minimum size is 150
+}
+
+variable "big_data_master_node_number_of_nodes" {
+ default = 1
+}
+
+variable "big_data_util_node_shape" {
+ default = "VM.Standard2.4"
+}
+
+variable "big_data_util_node_block_volume_size_in_gbs" {
+ default = 150 // minimum size is 150
+}
+
+variable "big_data_util_node_number_of_nodes" {
+ default = 1
+}
+
+variable "big_data_worker_node_shape" {
+ default = "VM.Standard2.1"
+}
+
+variable "big_data_worker_node_block_volume_size_in_gbs" {
+ default = 150 // minimum size is 150
+}
+
+variable "big_data_worker_node_number_of_nodes" {
+ default = 3 // worker_node.0.number_of_nodes to be at least (3)
+}
+
+
+# # Data Catalog Variables:
+
+variable "catalog_display_name" {
+ type = string
+ default = "TelcoAsset"
+}
+
+
+# Bastion Instance Variables:
+# More information on what Image OCIDs you need to use based on the region can be found here:
+# https://docs.oracle.com/en-us/iaas/images/image/2e439f8e-e98f-489b-82a3-338360b46b82/
+# Oracle-Linux-Cloud-Developer-8.5-2022.05.22-0 image
+
+variable "bastion_instance_image_ocid" {
+ type = map(string)
+ default = {
+ eu-amsterdam-1 = "ocid1.image.oc1.eu-amsterdam-1.aaaaaaaabcomraotpw6apg7xvmc3xxu2avkkqpx4yj7cbdx7ebcm4d52halq"
+ eu-stockholm-1 = "ocid1.image.oc1.eu-stockholm-1.aaaaaaaa52kiqhwcoprmwfiuwureucv7nehqjfofoicwptpixdphzvon2mua"
+ me-abudhabi-1 = "ocid1.image.oc1.me-abudhabi-1.aaaaaaaa7nqsxvp4vp25gvzcrvld6xaiyxaxmzepkb5gz6us5sfkgeeez2zq"
+ ap-mumbai-1 = "ocid1.image.oc1.ap-mumbai-1.aaaaaaaaham2gnbrst3s46jrwchlnl3uqo7yxij7f3pqdzwx7zybu657347q"
+ eu-paris-1 = "ocid1.image.oc1.eu-paris-1.aaaaaaaaab5yi4bbnabymexkvwcdjlcjiue26kf3vz6dvzm6dvpttqcpaj5q"
+ uk-cardiff-1 = "ocid1.image.oc1.uk-cardiff-1.aaaaaaaagvgnze6oq5il7b26onoq4daeaqrghp5hx4yp3q3rvtfpnbzq4zhq"
+ me-dubai-1 = "ocid1.image.oc1.me-dubai-1.aaaaaaaaid5v36623wk7lyoivnqwygyaxppqfbzyo35wifxs7hkqo5caxhqa"
+ eu-frankfurt-1 = "ocid1.image.oc1.eu-frankfurt-1.aaaaaaaa3mdtxzi5rx2ids2tb74wmm77zvsqdaxbjlgvjpr4ytzc5njtksjq"
+ sa-saopaulo-1 = "ocid1.image.oc1.sa-saopaulo-1.aaaaaaaa22wjczcl7udl7w7e347zkwig7mh5p3zfbcemzs46jiaeom5lznyq"
+ ap-hyderabad-1 = "ocid1.image.oc1.ap-hyderabad-1.aaaaaaaaaq6ggb4u6p4fgsdcj7o2p4akt5t7gmyjnvootiytrqc5joe5pmfq"
+ us-ashburn-1 = "ocid1.image.oc1.iad.aaaaaaaas4cu36z32iraul5otar4gl3uy4s5jkupcc4m5shfqlatjiwaoftq"
+ ap-seoul-1 = "ocid1.image.oc1.ap-seoul-1.aaaaaaaakrtvc67c6thtmhrwphecd66omeytl7jmv3zd2bci74j56r4xodwq"
+ me-jeddah-1 = "ocid1.image.oc1.me-jeddah-1.aaaaaaaaghsie5mvgzb6fbfzujidzrg7jnrraqkh6qkyh2vw7rl6cdnbpe6a"
+ af-johannesburg-1 = "ocid1.image.oc1.af-johannesburg-1.aaaaaaaa2sj43nffpmyqlubrj4cikfgoij7qyqhymlnhw3bj7t26lh46euia"
+ ap-osaka-1 = "ocid1.image.oc1.ap-osaka-1.aaaaaaaao3swjyengmcc5rz3ynp2euqskvcscqwgouzs3smaarxofxbwstcq"
+ uk-london-1 = "ocid1.image.oc1.uk-london-1.aaaaaaaaetscnayepwj2lto7mpgiwtom4jwkqafr3axumt3pt32cgwczkexq"
+ eu-milan-1 = "ocid1.image.oc1.eu-milan-1.aaaaaaaavht3nwv7qsue7ljexbqqgofogwvrlgybvtrxylm52eg6b6xrgniq"
+ ap-melbourne-1 = "ocid1.image.oc1.ap-melbourne-1.aaaaaaaafavk2azn6cizxnugwi7izvxsumhiuzthw6g7k2o4vuhg4l3phi3a"
+ eu-marseille-1 = "ocid1.image.oc1.eu-marseille-1.aaaaaaaakpex24z6rmmyvdeop72nomfui5t54lztix7t5mblqii4l7v4iecq"
+ il-jerusalem-1 = "ocid1.image.oc1.il-jerusalem-1.aaaaaaaafgok5gj36cnrsqo6a3p72wqpg45s3q32oxkt45fq573obioliiga"
+ ap-tokyo-1 = "ocid1.image.oc1.ap-tokyo-1.aaaaaaaappsxkscys22g5tha37tksf6rlec3tm776dnq7dcquaofeqqb6rna"
+ us-phoenix-1 = "ocid1.image.oc1.phx.aaaaaaaawmvmgfvthguywgry23pugqqv2plprni37sdr2jrtzq6i6tmwdjwa"
+ sa-santiago-1 = "ocid1.image.oc1.sa-santiago-1.aaaaaaaatqcxvjriek3gdndhk43fdss6hmmd47fw2vmuq7ldedr5f555vx5q"
+ ap-singapore-1 = "ocid1.image.oc1.ap-singapore-1.aaaaaaaaouprplh2bubqudrghr46tofi3bukvtrdgiuvckylpk4kvmxyhzda"
+ us-sanjose-1 = "ocid1.image.oc1.us-sanjose-1.aaaaaaaaqudryedi3l4danxy5kxbwqkz3nonewp3jwb5l3tdcikhftthmtga"
+ ap-sydney-1 = "ocid1.image.oc1.ap-sydney-1.aaaaaaaaogu4pvw4zw2p7kjabyynczopoqipecr2gozdaolh5kem2mkdrloa"
+ sa-vinhedo-1 = "ocid1.image.oc1.sa-vinhedo-1.aaaaaaaa57khlnd4ziajy6wwmud2d6k3wsqkm4yce3mlzbgxeggpbu3yqbpa"
+ ap-chuncheon-1 = "ocid1.image.oc1.ap-chuncheon-1.aaaaaaaanod2kc3bw5l3myyd5okw4c46kapdpsu2fqgyswf4lka2hrordlla"
+ ca-montreal-1 = "ocid1.image.oc1.ca-montreal-1.aaaaaaaaevwlof26wfzcoajtlmykpaev7q5ekqyvkpqo2sjo3gdwzygu7xta"
+ ca-toronto-1 = "ocid1.image.oc1.ca-toronto-1.aaaaaaaanajb7uklrra5eq2ewx35xfi2aulyohweb2ugik7kc6bdfz6swyha"
+ eu-zurich-1 = "ocid1.image.oc1.eu-zurich-1.aaaaaaaameaqzqjwp45epgv2zywkaw2cxutz6gdc6jxnrrbb4ciqpyrnkczq"
+ }
+}
+
+variable "bastion_instance_display_name" {
+ type = string
+ default = "TelcoAsset"
+}
+
+variable "bastion_instance_shape" {
+ type = string
+ default = "VM.Standard2.4"
+}
+
+# VCN and subnet Variables
+
+variable "vcn_cidr" {
+ default = "10.0.0.0/16"
+}
+
+variable "public_subnet_cidr" {
+ default = "10.0.0.0/24"
+}
+
+variable "private_subnet_cidr" {
+ default = "10.0.1.0/24"
+}
+
+variable "service_name" {
+ type = string
+ default = "TelcoAsset"
+ description = "A prefix for policies and dynamic groups names - scope: to be unique names not duplicates"
+}
\ No newline at end of file