Testing facebook imports
Testing facebook imports


Former-commit-id: 26f7cc47bbd4c30bb9dab99a095d0363e52c3766

--- a/.gitmodules
+++ b/.gitmodules
@@ -16,4 +16,7 @@
 [submodule "javascripts/flotr2"]
 	path = javascripts/flotr2
 	url = https://github.com/HumbleSoftware/Flotr2.git
+[submodule "lib/phpquery"]
+	path = lib/phpquery
+	url = https://github.com/TobiaszCudnik/phpquery.git
 

--- /dev/null
+++ b/admin/importAustraliaGovAuGov2.php
@@ -1,1 +1,61 @@
+<?php
 
+require_once '../include/common.inc.php';
+
+$db = $server->get_db('disclosr-agencies');
+$rows = $db->get_view("app", "byName")->rows;
+$nametoid = Array();
+$accounts = Array();
+foreach ($rows as $row) {
+    $nametoid[trim($row->key)] = $row->value;
+}
+
+function extractCSVAccounts($url, $nameField, $accountField, $filter) {
+    global $accounts, $nametoid;
+    $request = Requests::get($url);
+    $Data = str_getcsv($request->body, "\n"); //parse the rows 
+    $headers = Array();
+    foreach ($Data as $num => $line) {
+        $Row = str_getcsv($line, ",");
+        if ($num == 0) {
+            
+        } else if ($num == 1) {
+            $headers = $Row;
+            //print_r($headers);
+        } else {
+            if (isset($Row[array_search($nameField, $headers)])) {
+                $agencyName = $Row[array_search($nameField, $headers)];
+                if (!$filter || $Row[array_search("State", $headers)] == "NAT") {
+                    if (!in_array(trim($agencyName), array_keys($nametoid))) {
+                        echo "$agencyName missing" . PHP_EOL;
+                    } else {
+                        // echo $Row[array_search($nameField, $headers)] . PHP_EOL;
+                    }
+                }
+            } else {
+                //echo "error finding agency" . $line . PHP_EOL;
+            }
+        }
+    }
+}
+
+// http://agimo.govspace.gov.au/page/gov2register/
+// twitter
+//extractCSVAccounts("https://docs.google.com/spreadsheet/pub?key=0Ap1exl80wB8OdHNKVmQ5RVlvQWpibDAxNHkzcU1nV2c&single=true&gid=0&output=csv", "Agency/Body/Event", "", true);
+// RSS
+// https://docs.google.com/spreadsheet/pub?hl=en_GB&hl=en_GB&key=0Ah41IAK0HzSTdGJxandJREhLSGlWWUZfZ2xKOTNHZ0E&output=csv
+// facebook 
+extractCSVAccounts("https://docs.google.com/spreadsheet/pub?hl=en_GB&hl=en_GB&key=0Ah41IAK0HzSTdGtjcW9vOXdyZ3pOV21vQU51VmhzQnc&single=true&gid=0&output=csv","Agency","Name");
+
+/*
+ * http://australia.gov.au/news-and-media/media-release-rss-feeds
+ * http://australia.gov.au/news-and-media/social-media/blogs
+ * http://australia.gov.au/news-and-media/social-media/twitter
+ * http://australia.gov.au/news-and-media/social-media/facebook
+ * http://australia.gov.au/news-and-media/social-media/youtube
+ * http://australia.gov.au/news-and-media/social-media/flickr
+ * http://australia.gov.au/news-and-media/social-media/apps http://www.harmony.gov.au/get-involved/app-downloads.htm http://www.em.gov.au/Resources/Pages/Before-the-Storm-phone-game.aspx
+ * http://australia.gov.au/news-and-media/social-media/podcasts
+ */
+?>
+

--- a/admin/importDirectoryUUIDs.php
+++ b/admin/importDirectoryUUIDs.php
@@ -1,13 +1,37 @@
 <?php
+
 // http://gold.gov.au/reports/department/index.xml
 require_once '../include/common.inc.php';
-try {
-    $server->create_db('disclosr-agencies');
-} catch (SetteeRestClientException $e) {
-    setteErrorHandler($e);
+$db = $server->get_db('disclosr-agencies');
+$rows = $db->get_view("app", "byName")->rows;
+$nametoid = Array();
+$sums = Array();
+foreach ($rows as $row) {
+    $nametoid[trim($row->key)] = $row->value;
 }
-$db = $server->get_db('disclosr-agencies');
-createAgencyDesignDoc();
 
+if (file_exists('index.xml')) {
+    $xml = simplexml_load_file('index.xml');
+
+    foreach ($xml as $agency) {
+        $names = Array();
+        $names[] = "".$agency->name;
+        
+        if (isset($agency->shortName)) {
+             $names[] = "".$agency->shortName;
+        }
+       foreach ($names as $name) {
+           if (!in_array($name, array_keys($nametoid))) {
+               echo "$name missing".PHP_EOL;
+               print_r($names);
+               echo $agency->dn;
+               echo PHP_EOL;
+               echo PHP_EOL;
+           }
+       }
+    }
+} else {
+    exit('Failed to open test.xml.');
+}
 ?>
 

--- a/admin/importGov2RegisterRSSFacebookTwitter.php
+++ b/admin/importGov2RegisterRSSFacebookTwitter.php
@@ -1,16 +1,89 @@
 <?php
 
 require_once '../include/common.inc.php';
-try {
-    $server->create_db('disclosr-agencies');
-} catch (SetteeRestClientException $e) {
-    setteErrorHandler($e);
+require($basePath.'lib/phpquery/phpQuery/phpQuery.php');
+
+$db = $server->get_db('disclosr-agencies');
+$rows = $db->get_view("app", "byName")->rows;
+$nametoid = Array();
+$accounts = Array();
+foreach ($rows as $row) {
+    $nametoid[trim($row->key)] = $row->value;
 }
-$db = $server->get_db('disclosr-agencies');
-createAgencyDesignDoc();
+function extractHTMLAccounts($url, $accountType) {
+    global $accounts, $nametoid;
+    $request = Requests::get($url);
+    $doc = phpQuery::newDocumentHTML($request->body);
+    phpQuery::selectDocument($doc);
+    foreach (pq('tr')->elements as $tr) {
+       //echo $tr->nodeValue.PHP_EOL;
+       $agency = "";
+       $url = "";
+       foreach ($tr->childNodes as $td) {
+           $class = $td->getAttribute("class");
+           //echo "cccc $class ".$td->nodeValue.PHP_EOL;
+           if ($class == "s11" || $class == "s10" || $class == "s7") {
+               $agency = $td->nodeValue;
+           } else if ($class == "s6" || $class == "s9"){
+               $url = $td->nodeValue;
+               foreach($td->childNodes as $a) {
+                   $href = $a->getAttribute("href");
+                   if ($href != "") {
+                       $url = $href;
+                   }
+               }
+           }
+       }
+       if ($agency != "" && $url != "") {
+           if (!in_array(trim($agency), array_keys($nametoid))) {
+                        echo trim($agency)." missing" . PHP_EOL;
+                    } else {
+                     //   echo $agency." = ".$url.PHP_EOL;
+                        $accounts[$nametoid[trim($agency)]][$accountType][] = $url;
+                    }
+       
+       }
+    }
+    
+}
 
-// twitter https://docs.google.com/spreadsheet/fm?id=tsJVd9EYoAjbl014y3qMgWg.03918275400592898296.8568379511161083736&hl=en&fmcmd=5&gid=0
-// RSS https://docs.google.com/spreadsheet/fm?id=tbqjwIDHKHiVYF_glJ93GgA.03918275400592898296.8789688748524615194&authkey=CJDP-uQG&hl=en_GB&fmcmd=5&gid=0
-// facebook https://docs.google.com/spreadsheet/fm?id=tkcqoo9wrgzNWmoANuVhsBw.03918275400592898296.3040387705062056060&authkey=CKzl7r0I&hl=en_GB&fmcmd=5&gid=0
+function extractCSVAccounts($url, $accountType, $nameField, $accountField, $filter) {
+    global $accounts, $nametoid;
+    $request = Requests::get($url);
+    $Data = str_getcsv($request->body, "\n"); //parse the rows 
+    $headers = Array();
+    foreach ($Data as $num => $line) {
+        $Row = str_getcsv($line, ",",'"');
+        if ($num == 0) {
+            
+        } else if ($num == 1) {
+            $headers = $Row;
+            //print_r($headers);
+        } else {
+            if (isset($Row[array_search($nameField, $headers)])) {
+                $agencyName = $Row[array_search($nameField, $headers)];
+                if (!$filter || $Row[array_search("State", $headers)] == "NAT") {
+                    if (!in_array(trim($agencyName), array_keys($nametoid))) {
+                        echo trim($agencyName)." missing" . PHP_EOL;
+                    } else {
+                        // echo $Row[array_search($nameField, $headers)] . PHP_EOL;
+                        $accounts[$nametoid[trim($agencyName)]][$accountType][] = $Row[array_search($accountField, $headers)];
+                    }
+                }
+            } else {
+                //echo "error finding agency" . $line . PHP_EOL;
+            }
+        }
+    }
+}
+
+// http://agimo.govspace.gov.au/page/gov2register/
+// twitter
+extractCSVAccounts("https://docs.google.com/spreadsheet/pub?key=0Ap1exl80wB8OdHNKVmQ5RVlvQWpibDAxNHkzcU1nV2c&single=true&gid=0&output=csv", "Twitter", "Agency/Body/Event", "", true);
+// RSS
+extractHTMLAccounts("https://docs.google.com/spreadsheet/pub?hl=en_GB&hl=en_GB&key=0Ah41IAK0HzSTdGJxandJREhLSGlWWUZfZ2xKOTNHZ0E&output=html", "RSS");
+// facebook 
+extractHTMLAccounts("https://docs.google.com/spreadsheet/pub?hl=en_GB&hl=en_GB&key=0Ah41IAK0HzSTdGtjcW9vOXdyZ3pOV21vQU51VmhzQnc&single=true&gid=0&output=html", "Facebook");
+
 ?>
 

file:b/admin/index.xml (new)
--- /dev/null
+++ b/admin/index.xml
@@ -1,1 +1,2607 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<entryList>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport321.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&a581ffe4-b532-4d81-bae3-9e937c6104e8]]></websiteURI>
+<dn><![CDATA[ou=Aboriginal Hostels Limited (AHL),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Aboriginal Hostels Limited (AHL)]]></name>
+<phone><![CDATA[(02) 6212 2000]]></phone>
+<email><![CDATA[ahlmarketing@ahl.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 30, Woden ACT 2606]]></postalAddress>
+<id><![CDATA[a581ffe4-b532-4d81-bae3-9e937c6104e8]]></id>
+<category>A</category>
+<lastModified><![CDATA[20101119150641.646+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport322.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e4471b59-3866-4e0e-bbca-260114348e3f]]></websiteURI>
+<dn><![CDATA[ou=Aboriginal Studies Press (ASP),ou=Australian Institute of Aboriginal and Torres Strait Islander Studies,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Aboriginal Studies Press (ASP)]]></name>
+<phone><![CDATA[(02) 6246 1186]]></phone>
+<email><![CDATA[asp@aiatsis.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 553, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[e4471b59-3866-4e0e-bbca-260114348e3f]]></id>
+<category>A</category>
+<lastModified><![CDATA[20101007150855.716+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport323.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&2410b559-3606-43f6-ba4d-5819b5d44dd8]]></websiteURI>
+<dn><![CDATA[ou=Administrative Appeals Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Administrative Appeals Tribunal]]></name>
+<shortName><![CDATA[AAT]]></shortName>
+<phone><![CDATA[1300 366 700]]></phone>
+<postalAddress><![CDATA[GPO Box 9955, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[2410b559-3606-43f6-ba4d-5819b5d44dd8]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110322172221.506+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport324.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&9a72269b-2d86-4213-9809-b310d8fb8242]]></websiteURI>
+<dn><![CDATA[ou=Aged Care Standards and Accreditation Agency Ltd,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Health and Ageing,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Aged Care Standards and Accreditation Agency Ltd]]></name>
+<phone><![CDATA[(02) 9633 1711]]></phone>
+<email><![CDATA[national@accreditation.org.au]]></email>
+<postalAddress><![CDATA[PO Box 773, Parramatta NSW 2124]]></postalAddress>
+<id><![CDATA[9a72269b-2d86-4213-9809-b310d8fb8242]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110316162117.955+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport325.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f6c7b75c-199a-4a83-873c-06aa2ff80b79]]></websiteURI>
+<dn><![CDATA[ou=Air Force Headquarters,ou=Department of Defence,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Air Force Headquarters]]></name>
+<id><![CDATA[f6c7b75c-199a-4a83-873c-06aa2ff80b79]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110927141313.630+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport326.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3abaa317-dfc0-4469-a07c-3d69e9bb1c38]]></websiteURI>
+<dn><![CDATA[ou=Airservices Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Airservices Australia]]></name>
+<shortName><![CDATA[Airservices]]></shortName>
+<phone><![CDATA[(02) 6268 4111]]></phone>
+<postalAddress><![CDATA[Airservices Australia, GPO Box 367, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[3abaa317-dfc0-4469-a07c-3d69e9bb1c38]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100624173807.346+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport327.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&0269409f-9ffb-4d37-adfd-d98d4f75c30a]]></websiteURI>
+<dn><![CDATA[ou=Albury-Wodonga Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Albury-Wodonga Corporation]]></name>
+<shortName><![CDATA[AWC]]></shortName>
+<phone><![CDATA[(02) 6023 8000]]></phone>
+<email><![CDATA[awc@awc.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 913, Albury NSW 2640]]></postalAddress>
+<id><![CDATA[0269409f-9ffb-4d37-adfd-d98d4f75c30a]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120118093718.197+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport328.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&47820771-fcb1-4277-9423-96c18c715c7e]]></websiteURI>
+<dn><![CDATA[ou=AMC Search Ltd,ou=Australian Maritime College,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[AMC Search Ltd]]></name>
+<phone><![CDATA[(03) 6335 4850]]></phone>
+<postalAddress><![CDATA[AMC Search Ltd, Australian Maritime College, PO Box 986, Launceston TAS 7250]]></postalAddress>
+<id><![CDATA[47820771-fcb1-4277-9423-96c18c715c7e]]></id>
+<category>A</category>
+<lastModified><![CDATA[20080613122607.525+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport329.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&364e2973-e795-47b2-90f2-76bb9819207b]]></websiteURI>
+<dn><![CDATA[ou=Army Headquarters,ou=Department of Defence,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Army Headquarters]]></name>
+<id><![CDATA[364e2973-e795-47b2-90f2-76bb9819207b]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100624173848.550+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport330.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e4ea2b3c-40ce-4ab5-aead-1b1af78f5035]]></websiteURI>
+<dn><![CDATA[ou=ASC Pty Ltd,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[ASC Pty Ltd]]></name>
+<phone><![CDATA[(08) 8348 7000]]></phone>
+<postalAddress><![CDATA[GPO Box 2472, ADELAIDE, SA 5001]]></postalAddress>
+<id><![CDATA[e4ea2b3c-40ce-4ab5-aead-1b1af78f5035]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110401145040.388+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport331.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d227a935-064f-4089-a469-0614efa1352f]]></websiteURI>
+<dn><![CDATA[ou=Attorney-General's Department,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Attorney-General's Department]]></name>
+<shortName><![CDATA[AGD]]></shortName>
+<phone><![CDATA[(02) 6141 6666]]></phone>
+<id><![CDATA[d227a935-064f-4089-a469-0614efa1352f]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120116101325.717+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport332.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&b79d7f58-1533-4dc4-8fab-d7b83fe6b41f]]></websiteURI>
+<dn><![CDATA[ou=AusIndustry,ou=Central Office,ou=Department of Industry\, Innovation\, Science\, Research and Tertiary Education,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[AusIndustry]]></name>
+<phone><![CDATA[AusIndustry Hotline 13 28 46]]></phone>
+<postalAddress><![CDATA[GPO Box 9839, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[b79d7f58-1533-4dc4-8fab-d7b83fe6b41f]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111219104922.932+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport333.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&1a071feb-53e0-48ba-ad51-6e98c2c48e85]]></websiteURI>
+<dn><![CDATA[ou=AusIndustry Hotline,ou=AusIndustry,ou=Central Office,ou=Department of Industry\, Innovation\, Science\, Research and Tertiary Education,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[AusIndustry Hotline]]></name>
+<phone><![CDATA[13 2846 - 8.00am - 6.00pm (AEST)]]></phone>
+<email><![CDATA[hotline@ausindustry.gov.au]]></email>
+<id><![CDATA[1a071feb-53e0-48ba-ad51-6e98c2c48e85]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111219105059.015+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport334.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&14e9ae65-9958-441c-b1b2-b2c906f8a9e3]]></websiteURI>
+<dn><![CDATA[ou=Australia Telescope National Facility,ou=Information Sciences,ou=Research Groups,ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australia Telescope National Facility]]></name>
+<phone><![CDATA[(02) 9372 4100]]></phone>
+<postalAddress><![CDATA[PO Box 76, Epping NSW 1710]]></postalAddress>
+<id><![CDATA[14e9ae65-9958-441c-b1b2-b2c906f8a9e3]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100222170235.683+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport335.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ed906056-af2b-4d53-bf0e-573c34d71784]]></websiteURI>
+<dn><![CDATA[ou=Australian Agency for International Development (AusAID),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Foreign Affairs and Trade,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Agency for International Development (AusAID)]]></name>
+<shortName><![CDATA[AusAID]]></shortName>
+<phone><![CDATA[(02) 6206 4000]]></phone>
+<postalAddress><![CDATA[GPO Box 887, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[ed906056-af2b-4d53-bf0e-573c34d71784]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110208120656.851+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport336.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&4556722d-45f5-40f5-a039-6a0da1374eb4]]></websiteURI>
+<dn><![CDATA[ou=Australian Astronomical Observatory,ou=Central Office,ou=Department of Industry\, Innovation\, Science\, Research and Tertiary Education,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Astronomical Observatory]]></name>
+<shortName><![CDATA[AAO]]></shortName>
+<phone><![CDATA[(02) 9372 4800]]></phone>
+<postalAddress><![CDATA[PO Box 296, Epping NSW 1710]]></postalAddress>
+<id><![CDATA[4556722d-45f5-40f5-a039-6a0da1374eb4]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110113133740.552+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport337.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&8caaf9d1-17f1-4e68-9bf3-8cfa04503a5a]]></websiteURI>
+<dn><![CDATA[ou=Australian Broadcasting Corporation (ABC),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Broadband\, Communications and the Digital Economy,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Broadcasting Corporation (ABC)]]></name>
+<shortName><![CDATA[ABC]]></shortName>
+<phone><![CDATA[(02) 8333 1500]]></phone>
+<postalAddress><![CDATA[GPO Box 9994, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[8caaf9d1-17f1-4e68-9bf3-8cfa04503a5a]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110317113926.470+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport338.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&269a027d-8d7e-4bfb-acf6-e0052512f162]]></websiteURI>
+<dn><![CDATA[ou=Australian Bureau of Agricultural and Resource Economics and Sciences,ou=Department of Agriculture\, Fisheries and Forestry,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Bureau of Agricultural and Resource Economics and Sciences]]></name>
+<shortName><![CDATA[ABARES]]></shortName>
+<phone><![CDATA[(02) 6272 2000]]></phone>
+<postalAddress><![CDATA[GPO Box 1563, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[269a027d-8d7e-4bfb-acf6-e0052512f162]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111123085639.454+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport339.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&5474218a-dd86-4cfb-9c83-ae92f29bfb56]]></websiteURI>
+<dn><![CDATA[ou=Australian Bureau of Statistics,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Bureau of Statistics]]></name>
+<shortName><![CDATA[ABS]]></shortName>
+<phone><![CDATA[(02) 6252 5000]]></phone>
+<postalAddress><![CDATA[Locked Bag 10, Belconnen ACT 2616]]></postalAddress>
+<id><![CDATA[5474218a-dd86-4cfb-9c83-ae92f29bfb56]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100624173756.051+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport340.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3c6f8fa6-80fd-4652-942a-362290a97cc2]]></websiteURI>
+<dn><![CDATA[ou=Australian Centre for International Agricultural Research (ACIAR),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Foreign Affairs and Trade,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Centre for International Agricultural Research (ACIAR)]]></name>
+<shortName><![CDATA[ACIAR]]></shortName>
+<phone><![CDATA[(02) 6217 0500]]></phone>
+<email><![CDATA[aciar@aciar.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 1571, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[3c6f8fa6-80fd-4652-942a-362290a97cc2]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110330162044.458+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport341.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&9d6e20ab-f0e1-422c-a248-ee031c4bd1a2]]></websiteURI>
+<dn><![CDATA[ou=Australian Commission for Law Enforcement Integrity,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Commission for Law Enforcement Integrity]]></name>
+<shortName><![CDATA[ACLEI]]></shortName>
+<phone><![CDATA[(02) 6229 9300]]></phone>
+<email><![CDATA[contact@aclei.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 305, Canberra, ACT 2601]]></postalAddress>
+<id><![CDATA[9d6e20ab-f0e1-422c-a248-ee031c4bd1a2]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110712095234.680+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport342.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&b3c7ffa9-03a0-4237-84ee-c93e729e8bee]]></websiteURI>
+<dn><![CDATA[ou=Australian Communications and Media Authority (ACMA),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Broadband\, Communications and the Digital Economy,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Communications and Media Authority (ACMA)]]></name>
+<shortName><![CDATA[The ACMA]]></shortName>
+<id><![CDATA[b3c7ffa9-03a0-4237-84ee-c93e729e8bee]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120125153703.506+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport343.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&56183875-7b64-445e-aa3e-386b5469c45c]]></websiteURI>
+<dn><![CDATA[ou=Australian Competition and Consumer Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Competition and Consumer Commission]]></name>
+<shortName><![CDATA[ACCC]]></shortName>
+<phone><![CDATA[(02) 6243 1111]]></phone>
+<postalAddress><![CDATA[GPO Box 3131 Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[56183875-7b64-445e-aa3e-386b5469c45c]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110411160807.618+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport344.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3806e5f1-f0ac-4a93-89e6-c0dc91d9314f]]></websiteURI>
+<dn><![CDATA[ou=Australian Competition Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Competition Tribunal]]></name>
+<shortName><![CDATA[ACT]]></shortName>
+<phone><![CDATA[(03) 8600 3643]]></phone>
+<id><![CDATA[3806e5f1-f0ac-4a93-89e6-c0dc91d9314f]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100810150420.758+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport345.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&531a3a1f-6589-42f6-b1b1-c78cd3a2e1ba]]></websiteURI>
+<dn><![CDATA[ou=Australian Crime Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Crime Commission]]></name>
+<shortName><![CDATA[ACC]]></shortName>
+<phone><![CDATA[(02) 6243 6666]]></phone>
+<id><![CDATA[531a3a1f-6589-42f6-b1b1-c78cd3a2e1ba]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111104133803.096+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport346.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f0119ed8-690e-4203-9678-1d21c80891bf]]></websiteURI>
+<dn><![CDATA[ou=Australian Curriculum\, Assessment and Reporting Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Curriculum, Assessment and Reporting Authority]]></name>
+<shortName><![CDATA[ACARA]]></shortName>
+<phone><![CDATA[1300 895 563]]></phone>
+<email><![CDATA[info@acara.edu.au]]></email>
+<id><![CDATA[f0119ed8-690e-4203-9678-1d21c80891bf]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120206105101.204+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport347.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d655dc2d-2ae8-48a7-b479-5bb3f09a29b7]]></websiteURI>
+<dn><![CDATA[ou=Australian Customs and Border Protection Service,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Customs and Border Protection Service]]></name>
+<shortName><![CDATA[ACS]]></shortName>
+<phone><![CDATA[(02) 6275 6666]]></phone>
+<email><![CDATA[information@customs.gov.au]]></email>
+<postalAddress><![CDATA[5 Constitution Avenue, Canberra ACT 2600]]></postalAddress>
+<id><![CDATA[d655dc2d-2ae8-48a7-b479-5bb3f09a29b7]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120130125616.549+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport348.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&083f1f67-ec52-4f37-bfb8-e5b379744019]]></websiteURI>
+<dn><![CDATA[ou=Australian Electoral Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Electoral Commission]]></name>
+<shortName><![CDATA[AEC]]></shortName>
+<phone><![CDATA[(02) 6271 4411]]></phone>
+<postalAddress><![CDATA[PO Box 6172, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[083f1f67-ec52-4f37-bfb8-e5b379744019]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120202142654.881+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport349.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&9237496e-e929-4a04-99b5-c4fd9394d3d7]]></websiteURI>
+<dn><![CDATA[ou=Australian Energy Regulator,ou=Australian Competition and Consumer Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Energy Regulator]]></name>
+<phone><![CDATA[(03) 9290 1800]]></phone>
+<postalAddress><![CDATA[GPO Box 520 Melbourne VIC 3001]]></postalAddress>
+<id><![CDATA[9237496e-e929-4a04-99b5-c4fd9394d3d7]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100809150734.332+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport350.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&72f1c9fd-b5a8-4087-b21c-42d2eb973936]]></websiteURI>
+<dn><![CDATA[ou=Australian Federal Police,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Federal Police]]></name>
+<shortName><![CDATA[AFP]]></shortName>
+<phone><![CDATA[(02) 6131 3000]]></phone>
+<postalAddress><![CDATA[GPO Box 401, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[72f1c9fd-b5a8-4087-b21c-42d2eb973936]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111031164046.507+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport351.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&121dfbd9-7a44-4acf-b09b-8ff4d22d81fb]]></websiteURI>
+<dn><![CDATA[ou=Australian Film\, Television and Radio School,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Film, Television and Radio School]]></name>
+<shortName><![CDATA[AFTRS]]></shortName>
+<phone><![CDATA[(02) 9805 6611]]></phone>
+<email><![CDATA[infonsw@aftrs.edu.au]]></email>
+<postalAddress><![CDATA[PO Box 2286, Strawberry Hills  NSW 2012]]></postalAddress>
+<id><![CDATA[121dfbd9-7a44-4acf-b09b-8ff4d22d81fb]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110321150216.240+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport352.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&a275d593-2625-4643-8293-03f47520bd47]]></websiteURI>
+<dn><![CDATA[ou=Australian Fisheries Management Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Fisheries Management Authority]]></name>
+<shortName><![CDATA[AFMA]]></shortName>
+<phone><![CDATA[(02) 6225 5555]]></phone>
+<email><![CDATA[info@afma.gov.au]]></email>
+<postalAddress><![CDATA[Box 7051, Canberra Mail Centre ACT 2610]]></postalAddress>
+<id><![CDATA[a275d593-2625-4643-8293-03f47520bd47]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110322134017.575+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport353.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e6458760-2065-459d-9871-dbe3f481d8f5]]></websiteURI>
+<dn><![CDATA[ou=Australian Government Competitive Neutrality Complaints Office,ou=Productivity Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Government Competitive Neutrality Complaints Office]]></name>
+<shortName><![CDATA[AGCNCO]]></shortName>
+<phone><![CDATA[(02) 6240 3317]]></phone>
+<email><![CDATA[cnoffice@pc.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 1428, Canberra City ACT 2601]]></postalAddress>
+<id><![CDATA[e6458760-2065-459d-9871-dbe3f481d8f5]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110921115437.821+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport354.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&dda18f77-2967-4d44-a0f0-fa1289786973]]></websiteURI>
+<dn><![CDATA[ou=Australian Government Employees Superannuation Trust,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Government Employees Superannuation Trust]]></name>
+<shortName><![CDATA[AGEST Super]]></shortName>
+<phone><![CDATA[1300 7AGEST (that's 1300 724 378)]]></phone>
+<email><![CDATA[info@agest.com.au]]></email>
+<postalAddress><![CDATA[AGEST Administration Locked Bag 20,  Wollongong NSW 2500]]></postalAddress>
+<id><![CDATA[dda18f77-2967-4d44-a0f0-fa1289786973]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110317154049.077+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport355.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&fb22afcd-8bec-4c7f-9788-64c8401f88e4]]></websiteURI>
+<dn><![CDATA[ou=Australian Government Information Management Office,ou=Central Office,ou=Department of Finance and Deregulation,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Government Information Management Office]]></name>
+<shortName><![CDATA[AGIMO]]></shortName>
+<id><![CDATA[fb22afcd-8bec-4c7f-9788-64c8401f88e4]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110406113158.657+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport356.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&97c45479-45b3-410d-9f28-2b5992c94166]]></websiteURI>
+<dn><![CDATA[ou=Australian Government Solicitor,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Government Solicitor]]></name>
+<shortName><![CDATA[AGS]]></shortName>
+<phone><![CDATA[(02) 6253 7000]]></phone>
+<email><![CDATA[ags@ags.gov.au]]></email>
+<id><![CDATA[97c45479-45b3-410d-9f28-2b5992c94166]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120223110823.323+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport357.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3c7215cc-1fea-4544-8cf3-90640b90f803]]></websiteURI>
+<dn><![CDATA[ou=Australian Hearing,ou=Other Portfolio Bodies,o=Human Services,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Hearing]]></name>
+<shortName><![CDATA[AH]]></shortName>
+<phone><![CDATA[(02) 9412 6800]]></phone>
+<email><![CDATA[enquiry@hearing.com.au]]></email>
+<id><![CDATA[3c7215cc-1fea-4544-8cf3-90640b90f803]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110318103029.904+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport358.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&68652fdc-5b6b-40d6-94c7-23c54670fa4e]]></websiteURI>
+<dn><![CDATA[ou=Australian Human Rights Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Human Rights Commission]]></name>
+<phone><![CDATA[(02) 9284 9600]]></phone>
+<email><![CDATA[communications@humanrights.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 5218, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[68652fdc-5b6b-40d6-94c7-23c54670fa4e]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110615095903.406+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport359.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ca841194-5f24-4b09-b98d-89dd8a3ed257]]></websiteURI>
+<dn><![CDATA[ou=Australian Institute for Teaching and School Leadership Ltd,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Institute for Teaching and School Leadership Ltd]]></name>
+<phone><![CDATA[(03) 8330 9430]]></phone>
+<id><![CDATA[ca841194-5f24-4b09-b98d-89dd8a3ed257]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110907160446.595+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport360.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&faae7806-65de-4417-a437-af71b991d9a8]]></websiteURI>
+<dn><![CDATA[ou=Australian Institute of Aboriginal and Torres Strait Islander Studies,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Institute of Aboriginal and Torres Strait Islander Studies]]></name>
+<shortName><![CDATA[AIATSIS]]></shortName>
+<phone><![CDATA[(02) 6246 1111]]></phone>
+<email><![CDATA[reception@aiatsis.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 553, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[faae7806-65de-4417-a437-af71b991d9a8]]></id>
+<category>A</category>
+<lastModified><![CDATA[20101007150855.702+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport361.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&cd89f277-ff44-4212-8898-3d506827a93a]]></websiteURI>
+<dn><![CDATA[ou=Australian Institute of Criminology,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Institute of Criminology]]></name>
+<shortName><![CDATA[AIC]]></shortName>
+<phone><![CDATA[(02) 6260 9200]]></phone>
+<postalAddress><![CDATA[GPO Box 2944, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[cd89f277-ff44-4212-8898-3d506827a93a]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110318154010.349+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport362.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7a59e628-d057-4df3-8532-18b99f0b03e3]]></websiteURI>
+<dn><![CDATA[ou=Australian Institute of Family Studies,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Institute of Family Studies]]></name>
+<shortName><![CDATA[AIFS]]></shortName>
+<phone><![CDATA[(03) 9214 7888]]></phone>
+<id><![CDATA[7a59e628-d057-4df3-8532-18b99f0b03e3]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120104104630.383+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport363.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&02318405-2c28-4a6f-a665-0780a4ae8f6b]]></websiteURI>
+<dn><![CDATA[ou=Australian Institute of Health and Welfare,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Health and Ageing,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Institute of Health and Welfare]]></name>
+<shortName><![CDATA[AIHW]]></shortName>
+<phone><![CDATA[(02) 6244 1000]]></phone>
+<email><![CDATA[info@aihw.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 570, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[02318405-2c28-4a6f-a665-0780a4ae8f6b]]></id>
+<category>A</category>
+<lastModified><![CDATA[20120305160223.613+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport364.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&6a7cddf0-9743-4c09-9a57-f3878099ea9a]]></websiteURI>
+<dn><![CDATA[ou=Australian Institute of Marine Science,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Institute of Marine Science]]></name>
+<shortName><![CDATA[AIMS]]></shortName>
+<phone><![CDATA[(07) 4753 4444]]></phone>
+<postalAddress><![CDATA[Private Mail Bag No. 3, Mail Centre, Townsville Qld 4810]]></postalAddress>
+<id><![CDATA[6a7cddf0-9743-4c09-9a57-f3878099ea9a]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100624173757.280+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport365.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&adcf6eb7-cc4d-4a67-a90c-06062132a944]]></websiteURI>
+<dn><![CDATA[ou=Australian Law Reform Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Law Reform Commission]]></name>
+<shortName><![CDATA[ALRC]]></shortName>
+<phone><![CDATA[(02) 8238 6333]]></phone>
+<email><![CDATA[info@alrc.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 3708, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[adcf6eb7-cc4d-4a67-a90c-06062132a944]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110324155842.822+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport366.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&86d0a03e-eaba-4779-90be-7ae3e981d610]]></websiteURI>
+<dn><![CDATA[ou=Australian Maritime College,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Maritime College]]></name>
+<phone><![CDATA[(03) 6335 4711]]></phone>
+<postalAddress><![CDATA[Australian Maritime College, PO Box 986, Launceston TAS 7250]]></postalAddress>
+<id><![CDATA[86d0a03e-eaba-4779-90be-7ae3e981d610]]></id>
+<category>A</category>
+<lastModified><![CDATA[20090630112037.707+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport367.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&87c211d6-3f21-4e22-bcc2-2fb2b17026d8]]></websiteURI>
+<dn><![CDATA[ou=Australian Maritime Safety Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Maritime Safety Authority]]></name>
+<shortName><![CDATA[AMSA]]></shortName>
+<phone><![CDATA[(02) 6279 5000]]></phone>
+<postalAddress><![CDATA[GPO Box 2181, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[87c211d6-3f21-4e22-bcc2-2fb2b17026d8]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110927144238.905+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport368.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&73c8b5d8-2ffb-4e7d-aa27-33dacc59412c]]></websiteURI>
+<dn><![CDATA[ou=Australian Military Forces Relief Trust Fund,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Military Forces Relief Trust Fund]]></name>
+<phone><![CDATA[(02) 6265 6197]]></phone>
+<postalAddress><![CDATA[R1-1-C067, Department of Defence, CANBERRA  ACT  2600]]></postalAddress>
+<id><![CDATA[73c8b5d8-2ffb-4e7d-aa27-33dacc59412c]]></id>
+<category>A</category>
+<lastModified><![CDATA[20090202164003.266+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport369.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&38573a34-7f05-4f52-956d-c2ab90bac74d]]></websiteURI>
+<dn><![CDATA[ou=Australian National Audit Office,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian National Audit Office]]></name>
+<shortName><![CDATA[ANAO]]></shortName>
+<phone><![CDATA[(02) 6203 7300]]></phone>
+<email><![CDATA[ag1@anao.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 707, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[38573a34-7f05-4f52-956d-c2ab90bac74d]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100803101742.786+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport370.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&016aca68-3c13-4aab-a1a4-65ef3fa4f7ee]]></websiteURI>
+<dn><![CDATA[ou=Australian National Maritime Museum,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian National Maritime Museum]]></name>
+<shortName><![CDATA[ANMM]]></shortName>
+<phone><![CDATA[(02) 9298 3777]]></phone>
+<postalAddress><![CDATA[GPO Box 5131, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[016aca68-3c13-4aab-a1a4-65ef3fa4f7ee]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110317152836.306+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport371.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&177f0227-dbd2-4193-bd22-910cf208a48f]]></websiteURI>
+<dn><![CDATA[ou=Australian Nuclear Science and Technology Organisation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Nuclear Science and Technology Organisation]]></name>
+<shortName><![CDATA[ANSTO]]></shortName>
+<id><![CDATA[177f0227-dbd2-4193-bd22-910cf208a48f]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100222170238.439+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport372.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&b4f919de-4a41-4778-8e1f-7db6438ecba9]]></websiteURI>
+<dn><![CDATA[ou=Australian Office of Financial Management,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Office of Financial Management]]></name>
+<shortName><![CDATA[AOFM]]></shortName>
+<phone><![CDATA[(02) 6263 1111]]></phone>
+<email><![CDATA[enquiries@aofm.gov.au]]></email>
+<id><![CDATA[b4f919de-4a41-4778-8e1f-7db6438ecba9]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110418131553.834+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport373.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3877f864-52d3-438d-be68-082401eca040]]></websiteURI>
+<dn><![CDATA[ou=Australian Organ and Tissue Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Health and Ageing,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Organ and Tissue Authority]]></name>
+<phone><![CDATA[(02) 6198 9800]]></phone>
+<postalAddress><![CDATA[Post Office Box 295, CIVIC SQUARE ACT 2608]]></postalAddress>
+<id><![CDATA[3877f864-52d3-438d-be68-082401eca040]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110603104442.951+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport374.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&20caec96-eb5e-470a-84d5-795546e8325a]]></websiteURI>
+<dn><![CDATA[ou=Australian Pesticides and Veterinary Medicines Authority (formerly National Registration Authority for Agricultural and Veterinary Chemicals),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Pesticides and Veterinary Medicines Authority (formerly National Registration Authority for Agricultural and Veterinary Chemicals)]]></name>
+<shortName><![CDATA[APVMA]]></shortName>
+<phone><![CDATA[(02) 6210 4700]]></phone>
+<email><![CDATA[contact@apvma.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 6182, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[20caec96-eb5e-470a-84d5-795546e8325a]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110321165856.985+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport375.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3382d264-da8d-49f0-92d2-f6a653234a0c]]></websiteURI>
+<dn><![CDATA[ou=Australian Postal Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Broadband\, Communications and the Digital Economy,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Postal Corporation]]></name>
+<shortName><![CDATA[APC Australia Post]]></shortName>
+<phone><![CDATA[(03) 9204 7171]]></phone>
+<postalAddress><![CDATA[GPO Box 1777, Melbourne Vic 3001]]></postalAddress>
+<id><![CDATA[3382d264-da8d-49f0-92d2-f6a653234a0c]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110805113827.167+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport376.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7b15f066-60e9-4562-bd25-1af12de7afe9]]></websiteURI>
+<dn><![CDATA[ou=Australian Prudential Regulation Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Prudential Regulation Authority]]></name>
+<shortName><![CDATA[APRA]]></shortName>
+<phone><![CDATA[1300 131 060]]></phone>
+<postalAddress><![CDATA[GPO Box 9836, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[7b15f066-60e9-4562-bd25-1af12de7afe9]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100818113955.325+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport377.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&68c4a1a8-e49b-474c-af11-29144a14220c]]></websiteURI>
+<dn><![CDATA[ou=Australian Public Service Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Public Service Commission]]></name>
+<shortName><![CDATA[APSC]]></shortName>
+<phone><![CDATA[(02) 6202 3500]]></phone>
+<postalAddress><![CDATA[Aviation House, 16 Furzer Street, Phillip ACT 2606]]></postalAddress>
+<id><![CDATA[68c4a1a8-e49b-474c-af11-29144a14220c]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110708140023.718+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport378.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7db7cff3-8d22-491c-a8ec-0e2be4d59df8]]></websiteURI>
+<dn><![CDATA[ou=Australian Radiation Protection and Nuclear Safety Agency,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Health and Ageing,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Radiation Protection and Nuclear Safety Agency]]></name>
+<shortName><![CDATA[ARPANSA]]></shortName>
+<phone><![CDATA[(02) 9541 8333]]></phone>
+<email><![CDATA[carl-magnus.larsson@arpansa.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 655, Miranda NSW 1490]]></postalAddress>
+<id><![CDATA[7db7cff3-8d22-491c-a8ec-0e2be4d59df8]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110322113244.403+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport379.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&c4bd0d42-1bc7-4200-9443-0ccf9b26b35f]]></websiteURI>
+<dn><![CDATA[ou=Australian Rail Track Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Rail Track Corporation]]></name>
+<shortName><![CDATA[ARTC]]></shortName>
+<phone><![CDATA[(08) 8217 4366]]></phone>
+<email><![CDATA[enquiries@artc.com.au]]></email>
+<postalAddress><![CDATA[Australian Rail Track Corporation, PO Box 10343, Gouger Street, Adelaide SA 5000]]></postalAddress>
+<id><![CDATA[c4bd0d42-1bc7-4200-9443-0ccf9b26b35f]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100521142025.392+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport380.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&5b1cccf0-7c57-4fc8-a00d-cec5edaba9e9]]></websiteURI>
+<dn><![CDATA[ou=Australian Reinsurance Pool Corporation,ou=Markets Group,ou=Central Office,ou=The Treasury,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Reinsurance Pool Corporation]]></name>
+<shortName><![CDATA[ARPC]]></shortName>
+<phone><![CDATA[(02) 6279 2103]]></phone>
+<email><![CDATA[arpc@treasury.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 3024, Canberra  ACT 2600]]></postalAddress>
+<id><![CDATA[5b1cccf0-7c57-4fc8-a00d-cec5edaba9e9]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111220173707.552+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport381.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&73375a65-c0e0-4503-b6de-6f4814004b43]]></websiteURI>
+<dn><![CDATA[ou=Australian River Co. Limited,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian River Co. Limited]]></name>
+<shortName><![CDATA[ARC]]></shortName>
+<postalAddress><![CDATA[GPO Box 7663, Melbourne VIC 3004]]></postalAddress>
+<id><![CDATA[73375a65-c0e0-4503-b6de-6f4814004b43]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110829141826.160+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport382.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&4bc312ef-96be-4715-b2ae-c557e22f0bc3]]></websiteURI>
+<dn><![CDATA[ou=Australian Safeguards and Non-Proliferation Office,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Foreign Affairs and Trade,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Safeguards and Non-Proliferation Office]]></name>
+<shortName><![CDATA[ASNO]]></shortName>
+<id><![CDATA[4bc312ef-96be-4715-b2ae-c557e22f0bc3]]></id>
+<category>A</category>
+<lastModified><![CDATA[20091222155630.223+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport383.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f6e1c391-3f4c-4b09-8daa-79b059f58390]]></websiteURI>
+<dn><![CDATA[ou=Australian Secret Intelligence Service,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Foreign Affairs and Trade,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Secret Intelligence Service]]></name>
+<phone><![CDATA[(02) 6261 1088]]></phone>
+<email><![CDATA[asis@asis.gov.au]]></email>
+<id><![CDATA[f6e1c391-3f4c-4b09-8daa-79b059f58390]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110316151901.524+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport384.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7c0bfe50-f550-4b8d-9c70-97bedb0f28c2]]></websiteURI>
+<dn><![CDATA[ou=Australian Securities and Investments Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Securities and Investments Commission]]></name>
+<shortName><![CDATA[ASIC]]></shortName>
+<phone><![CDATA[(02) 9911 2000]]></phone>
+<email><![CDATA[http://www.asic.gov.au/question]]></email>
+<postalAddress><![CDATA[GPO Box 9827, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[7c0bfe50-f550-4b8d-9c70-97bedb0f28c2]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111121130603.330+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport385.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&bce29f59-fb19-4d74-b11a-033e83996bdc]]></websiteURI>
+<dn><![CDATA[ou=Australian Security Intelligence Organisation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Security Intelligence Organisation]]></name>
+<shortName><![CDATA[ASIO]]></shortName>
+<phone><![CDATA[(02) 6249 6299]]></phone>
+<postalAddress><![CDATA[GPO Box 2176, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[bce29f59-fb19-4d74-b11a-033e83996bdc]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110317122037.404+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport386.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&b31c8675-9eb9-44b1-b785-1193cfb8781c]]></websiteURI>
+<dn><![CDATA[ou=Australian Sports Anti-Doping Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Sports Anti-Doping Authority]]></name>
+<shortName><![CDATA[ASADA]]></shortName>
+<phone><![CDATA[(02) 6222 4200]]></phone>
+<email><![CDATA[asada@asada.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 1744, Fyshwick  ACT  2609]]></postalAddress>
+<id><![CDATA[b31c8675-9eb9-44b1-b785-1193cfb8781c]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110324125407.493+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport387.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&c6bb4332-4509-4ca5-bf8c-f4cb52b9cbe4]]></websiteURI>
+<dn><![CDATA[ou=Australian Sports Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Sports Commission]]></name>
+<shortName><![CDATA[ASC]]></shortName>
+<phone><![CDATA[(02) 6214 1111]]></phone>
+<email><![CDATA[asc@ausport.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 176, Belconnen ACT 2617]]></postalAddress>
+<id><![CDATA[c6bb4332-4509-4ca5-bf8c-f4cb52b9cbe4]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110601100440.867+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport388.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&87adfc9c-43a9-4e02-abde-4b5c12cf183a]]></websiteURI>
+<dn><![CDATA[ou=Australian Sports Foundation Ltd,ou=Australian Sports Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Sports Foundation Ltd]]></name>
+<shortName><![CDATA[ASF]]></shortName>
+<phone><![CDATA[(02) 6214 7868]]></phone>
+<email><![CDATA[info@asf.org.au]]></email>
+<postalAddress><![CDATA[PO Box 176 Belconnen ACT 2616]]></postalAddress>
+<id><![CDATA[87adfc9c-43a9-4e02-abde-4b5c12cf183a]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110318102029.484+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport389.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&38e0fed2-f10d-4c69-b4dd-980bc195f4ca]]></websiteURI>
+<dn><![CDATA[ou=Australian Taxation Office,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Taxation Office]]></name>
+<shortName><![CDATA[ATO]]></shortName>
+<phone><![CDATA[(02) 6216 1111]]></phone>
+<postalAddress><![CDATA[PO Box 9977, Civic Sq ACT 2608]]></postalAddress>
+<id><![CDATA[38e0fed2-f10d-4c69-b4dd-980bc195f4ca]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100624173812.146+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport390.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e04ae252-33f9-494f-8817-c41e848322a5]]></websiteURI>
+<dn><![CDATA[ou=Australian Trade Commission (Austrade),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Foreign Affairs and Trade,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Trade Commission (Austrade)]]></name>
+<shortName><![CDATA[AUSTRADE]]></shortName>
+<phone><![CDATA[+61 (2) 9392 2000]]></phone>
+<postalAddress><![CDATA[GPO Box 5301, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[e04ae252-33f9-494f-8817-c41e848322a5]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111006134040.960+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport391.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d25a37a7-1c6c-489e-bc78-3ee93e6c478c]]></websiteURI>
+<dn><![CDATA[ou=Australian Transaction Reports and Analysis Centre,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Transaction Reports and Analysis Centre]]></name>
+<shortName><![CDATA[AUSTRAC]]></shortName>
+<phone><![CDATA[1300 021 037]]></phone>
+<email><![CDATA[help_desk@austrac.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 5516, West Chatswood NSW 1515]]></postalAddress>
+<id><![CDATA[d25a37a7-1c6c-489e-bc78-3ee93e6c478c]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110322134307.511+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport392.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&8c5b2676-714e-4ab3-a7f7-b2f3472e6fe7]]></websiteURI>
+<dn><![CDATA[ou=Australian Transport Safety Bureau,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Transport Safety Bureau]]></name>
+<shortName><![CDATA[ATSB]]></shortName>
+<phone><![CDATA[1800 020 616]]></phone>
+<email><![CDATA[atsbinfo@atsb.gov.au]]></email>
+<postalAddress><![CDATA[Australian Transport Safety Bureau PO Box 967, Civic Square ACT 2608]]></postalAddress>
+<id><![CDATA[8c5b2676-714e-4ab3-a7f7-b2f3472e6fe7]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110317100542.070+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport393.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&5c58ad20-e79e-4b19-9137-649a4a1311a1]]></websiteURI>
+<dn><![CDATA[ou=Australian Valuation Office,ou=Australian Taxation Office,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Valuation Office]]></name>
+<shortName><![CDATA[AVO]]></shortName>
+<phone><![CDATA[(02) 6216 5473]]></phone>
+<email><![CDATA[info@avo.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 707, Civic Square ACT 2608]]></postalAddress>
+<id><![CDATA[5c58ad20-e79e-4b19-9137-649a4a1311a1]]></id>
+<category>A</category>
+<lastModified><![CDATA[20111026174801.545+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport394.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&12227d28-fad1-4a4a-9a46-0ec42d8c5be8]]></websiteURI>
+<dn><![CDATA[ou=Australian War Memorial,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,ou=Department of Veterans' Affairs,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian War Memorial]]></name>
+<shortName><![CDATA[AWM]]></shortName>
+<phone><![CDATA[(02) 6243 4211]]></phone>
+<email><![CDATA[info@awm.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 345, Canberra, ACT 2601]]></postalAddress>
+<id><![CDATA[12227d28-fad1-4a4a-9a46-0ec42d8c5be8]]></id>
+<category>A</category>
+<lastModified><![CDATA[20100803164744.643+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport395.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&25ddabcb-fac2-44ce-9b30-2cdc77b24a3a]]></websiteURI>
+<dn><![CDATA[ou=Australian Wine and Brandy Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Australian Wine and Brandy Corporation]]></name>
+<shortName><![CDATA[AWBC]]></shortName>
+<phone><![CDATA[(08) 8228 2000]]></phone>
+<email><![CDATA[awbc@awbc.com.au]]></email>
+<postalAddress><![CDATA[PO Box 2733, Kent Town SA 5071]]></postalAddress>
+<id><![CDATA[25ddabcb-fac2-44ce-9b30-2cdc77b24a3a]]></id>
+<category>A</category>
+<lastModified><![CDATA[20110330164203.853+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport396.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&b24313c5-4d20-4c6f-908e-3d70506f4184]]></websiteURI>
+<dn><![CDATA[ou=Bundanon Trust,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Bundanon Trust]]></name>
+<shortName><![CDATA[BT]]></shortName>
+<phone><![CDATA[(02) 4422 2100]]></phone>
+<postalAddress><![CDATA[PO Box 3343, Nowra North NSW 2541]]></postalAddress>
+<id><![CDATA[b24313c5-4d20-4c6f-908e-3d70506f4184]]></id>
+<category>B</category>
+<lastModified><![CDATA[20110316164131.032+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport397.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e1e5c5fd-9c29-4c5c-8581-921301b02f05]]></websiteURI>
+<dn><![CDATA[ou=Bureau of Meteorology,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Sustainability\, Environment\, Water\, Population and Communities,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Bureau of Meteorology]]></name>
+<shortName><![CDATA[CBOM]]></shortName>
+<phone><![CDATA[(03) 9669 4000]]></phone>
+<postalAddress><![CDATA[GPO Box 1289, Melbourne Vic 3001]]></postalAddress>
+<id><![CDATA[e1e5c5fd-9c29-4c5c-8581-921301b02f05]]></id>
+<category>B</category>
+<lastModified><![CDATA[20110301162806.189+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport398.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&bc09c118-cb23-4902-88bc-3141e9bb5f10]]></websiteURI>
+<dn><![CDATA[ou=Centre for Environment and Life Sciences,ou=Livestock Industries,ou=Food Health and Life Science Industries,ou=Research Groups,ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Centre for Environment and Life Sciences]]></name>
+<phone><![CDATA[(08) 9333 6000]]></phone>
+<postalAddress><![CDATA[Private Bag 5, Wembley WA 6913]]></postalAddress>
+<id><![CDATA[bc09c118-cb23-4902-88bc-3141e9bb5f10]]></id>
+<category>C</category>
+<lastModified><![CDATA[20100222170238.986+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport399.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f52a23d1-0328-4410-b374-71a2830f0da7]]></websiteURI>
+<dn><![CDATA[ou=Civil Aviation Safety Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Civil Aviation Safety Authority]]></name>
+<shortName><![CDATA[CASA]]></shortName>
+<phone><![CDATA[13 1757]]></phone>
+<postalAddress><![CDATA[Civil Aviation Safety Authority, GPO Box 2005, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[f52a23d1-0328-4410-b374-71a2830f0da7]]></id>
+<category>C</category>
+<lastModified><![CDATA[20100903104540.904+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport400.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&97267cec-7cbf-4cb3-ae75-ac37fdec07ff]]></websiteURI>
+<dn><![CDATA[ou=Coal Mining Industry (Long Service Leave Funding) Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Coal Mining Industry (Long Service Leave Funding) Corporation]]></name>
+<shortName><![CDATA[CMILSLFC]]></shortName>
+<phone><![CDATA[1300 366 212]]></phone>
+<email><![CDATA[lsl@auscoal.net.au]]></email>
+<postalAddress><![CDATA[Locked Bag 1, Warners Bay NSW 2282]]></postalAddress>
+<id><![CDATA[97267cec-7cbf-4cb3-ae75-ac37fdec07ff]]></id>
+<category>C</category>
+<lastModified><![CDATA[20110318154615.336+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport401.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e2d056d3-3999-4c23-a13c-a96099aa1e6b]]></websiteURI>
+<dn><![CDATA[ou=Comcare\, the Safety\, Rehabilitation and Compensation Commission\, and the Seafarers' Safety\, Rehabilitation and Compensation Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Comcare, the Safety, Rehabilitation and Compensation Commission, and the Seafarers' Safety, Rehabilitation and Compensation Authority]]></name>
+<shortName><![CDATA[COMCARE]]></shortName>
+<phone><![CDATA[1300 366 979]]></phone>
+<email><![CDATA[general.enquiries@comcare.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 9905, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[e2d056d3-3999-4c23-a13c-a96099aa1e6b]]></id>
+<category>C</category>
+<lastModified><![CDATA[20110926140445.811+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport402.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&9903fad1-0f1b-4af2-bc2c-3e410384db97]]></websiteURI>
+<dn><![CDATA[ou=Commonwealth Director of Public Prosecutions,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Commonwealth Director of Public Prosecutions]]></name>
+<shortName><![CDATA[CDPP]]></shortName>
+<phone><![CDATA[(02) 6206 5666]]></phone>
+<email><![CDATA[inquiries@cdpp.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 3104, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[9903fad1-0f1b-4af2-bc2c-3e410384db97]]></id>
+<category>C</category>
+<lastModified><![CDATA[20110330164406.786+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport403.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&af9feed9-581d-47d3-ab54-a2db15ad62cb]]></websiteURI>
+<dn><![CDATA[ou=Commonwealth Ombudsman,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Commonwealth Ombudsman]]></name>
+<shortName><![CDATA[CO]]></shortName>
+<phone><![CDATA[1300 362 072]]></phone>
+<email><![CDATA[ombudsman@ombudsman.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 442, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[af9feed9-581d-47d3-ab54-a2db15ad62cb]]></id>
+<category>C</category>
+<lastModified><![CDATA[20110705120131.076+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport404.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&1fe08312-9dbe-4a09-aebd-d8c695ccfb75]]></websiteURI>
+<dn><![CDATA[ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Commonwealth Scientific and Industrial Research Organisation (CSIRO)]]></name>
+<shortName><![CDATA[CSIRO]]></shortName>
+<phone><![CDATA[1300 363 400]]></phone>
+<email><![CDATA[enquiries@csiro.au]]></email>
+<postalAddress><![CDATA[PO Box 225, Dickson ACT 2602]]></postalAddress>
+<id><![CDATA[1fe08312-9dbe-4a09-aebd-d8c695ccfb75]]></id>
+<category>C</category>
+<lastModified><![CDATA[20100624173703.007+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport405.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&91e08fef-67c7-49bf-9861-d6ed368afd2b]]></websiteURI>
+<dn><![CDATA[ou=ComSuper,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[ComSuper]]></name>
+<shortName><![CDATA[ComSuper]]></shortName>
+<phone><![CDATA[1300 000 177]]></phone>
+<email><![CDATA[enquiries@comsuper.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 22, Belconnen ACT 2616]]></postalAddress>
+<id><![CDATA[91e08fef-67c7-49bf-9861-d6ed368afd2b]]></id>
+<category>C</category>
+<lastModified><![CDATA[20120210170933.026+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport406.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&cf4082f0-7cd3-47af-a6a7-e2fca0a5d43a]]></websiteURI>
+<dn><![CDATA[ou=Copyright Tribunal of Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Copyright Tribunal of Australia]]></name>
+<shortName><![CDATA[ACopyT]]></shortName>
+<phone><![CDATA[(02) 9230 8567]]></phone>
+<email><![CDATA[query@fedcourt.gov.au]]></email>
+<id><![CDATA[cf4082f0-7cd3-47af-a6a7-e2fca0a5d43a]]></id>
+<category>C</category>
+<lastModified><![CDATA[20110330135924.529+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport407.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&c90afe15-bebb-4bf3-82aa-d8f2d24aad27]]></websiteURI>
+<dn><![CDATA[ou=Cotton Research and Development Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Cotton Research and Development Corporation]]></name>
+<shortName><![CDATA[CRDC]]></shortName>
+<phone><![CDATA[(02) 6792 4088]]></phone>
+<email><![CDATA[crdc@crdc.com.au]]></email>
+<postalAddress><![CDATA[PO Box 282, Narrabri NSW 2390]]></postalAddress>
+<id><![CDATA[c90afe15-bebb-4bf3-82aa-d8f2d24aad27]]></id>
+<category>C</category>
+<lastModified><![CDATA[20110330163547.587+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport408.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3dafa32d-3a92-4999-ad64-6f04f377d4d1]]></websiteURI>
+<dn><![CDATA[ou=CrimTrac Agency,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[CrimTrac Agency]]></name>
+<phone><![CDATA[(02) 6268 7000]]></phone>
+<email><![CDATA[crimtrac@crimtrac.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 1573, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[3dafa32d-3a92-4999-ad64-6f04f377d4d1]]></id>
+<category>C</category>
+<lastModified><![CDATA[20111110095841.122+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport409.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&6d33a9f9-8b67-4bd1-8645-855600e1b95b]]></websiteURI>
+<dn><![CDATA[ou=Dairy Adjustment Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Dairy Adjustment Authority]]></name>
+<phone><![CDATA[1800 503 603]]></phone>
+<postalAddress><![CDATA[Locked Bag 104, Flinders Lane Vic 8009]]></postalAddress>
+<id><![CDATA[6d33a9f9-8b67-4bd1-8645-855600e1b95b]]></id>
+<category>D</category>
+<lastModified><![CDATA[20060918144538.120+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport410.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&1a49cf93-0843-44fe-a41d-526c1ecad05d]]></websiteURI>
+<dn><![CDATA[ou=Dairy Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Dairy Australia]]></name>
+<phone><![CDATA[(03) 9694 3777]]></phone>
+<email><![CDATA[enquiries@dairyaustralia.com.au]]></email>
+<postalAddress><![CDATA[Locked Bag 104, Flinders Lane Vic 8009]]></postalAddress>
+<id><![CDATA[1a49cf93-0843-44fe-a41d-526c1ecad05d]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110321173005.680+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport411.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d799edaa-6292-4e3a-aad6-7d18ddafd27b]]></websiteURI>
+<dn><![CDATA[ou=Defence Force Discipline Appeal Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Defence Force Discipline Appeal Tribunal]]></name>
+<shortName><![CDATA[DFDAT]]></shortName>
+<phone><![CDATA[(03) 8600 3505]]></phone>
+<id><![CDATA[d799edaa-6292-4e3a-aad6-7d18ddafd27b]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110324165118.374+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport412.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&945de891-8b80-450f-8813-d04a6be80d95]]></websiteURI>
+<dn><![CDATA[ou=Defence Force Remuneration Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Defence Force Remuneration Tribunal]]></name>
+<shortName><![CDATA[DFRT]]></shortName>
+<phone><![CDATA[(02) 6257 3855]]></phone>
+<email><![CDATA[dfrt@dfrt.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 2761, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[945de891-8b80-450f-8813-d04a6be80d95]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110729142834.591+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport413.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&582f06e9-06c2-4798-86dc-212d6fbaccab]]></websiteURI>
+<dn><![CDATA[ou=Defence Housing Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Defence Housing Australia]]></name>
+<shortName><![CDATA[DHA]]></shortName>
+<phone><![CDATA[13 9342]]></phone>
+<email><![CDATA[info@dha.gov.au]]></email>
+<postalAddress><![CDATA[26 Brisbane Ave, Barton ACT 2600]]></postalAddress>
+<id><![CDATA[582f06e9-06c2-4798-86dc-212d6fbaccab]]></id>
+<category>D</category>
+<lastModified><![CDATA[20111025123614.666+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport414.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&262998a8-ba59-48fc-af4f-7bd2d11be29f]]></websiteURI>
+<dn><![CDATA[ou=Defence Science and Technology Organisation,ou=Department of Defence,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Defence Science and Technology Organisation]]></name>
+<shortName><![CDATA[DSTO]]></shortName>
+<id><![CDATA[262998a8-ba59-48fc-af4f-7bd2d11be29f]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110920101124.317+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport415.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&6d3dc345-707c-4a49-89ce-17d250e013c3]]></websiteURI>
+<dn><![CDATA[ou=Department of Agriculture\, Fisheries and Forestry,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Agriculture, Fisheries and Forestry]]></name>
+<shortName><![CDATA[DAFF]]></shortName>
+<phone><![CDATA[(02) 6272 3933]]></phone>
+<email><![CDATA[webmaster@daff.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 858, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[6d3dc345-707c-4a49-89ce-17d250e013c3]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120116100542.535+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport416.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&b51b39ea-0b53-4e43-8562-baab3ea22637]]></websiteURI>
+<dn><![CDATA[ou=Department of Broadband\, Communications and the Digital Economy,o=Broadband\, Communications and the Digital Economy,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Broadband, Communications and the Digital Economy]]></name>
+<shortName><![CDATA[DBCDE]]></shortName>
+<phone><![CDATA[(02) 6271 1000]]></phone>
+<postalAddress><![CDATA[GPO Box 2154, Canberra  ACT  2601]]></postalAddress>
+<id><![CDATA[b51b39ea-0b53-4e43-8562-baab3ea22637]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120116101407.458+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport417.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ab78b045-88ab-4089-bbcf-f28d97951c1d]]></websiteURI>
+<dn><![CDATA[ou=Department of Climate Change and Energy Efficiency,o=Climate Change and Energy Efficiency,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Climate Change and Energy Efficiency]]></name>
+<phone><![CDATA[(02) 6159 7000]]></phone>
+<email><![CDATA[communications@climatechange.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 854, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[ab78b045-88ab-4089-bbcf-f28d97951c1d]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110901105344.971+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport418.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&968c6f8d-84b1-42e7-9119-bbfc56d6d14b]]></websiteURI>
+<dn><![CDATA[ou=Department of Defence,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Defence]]></name>
+<shortName><![CDATA[DEFENCE]]></shortName>
+<phone><![CDATA[(02) 6265 9111]]></phone>
+<postalAddress><![CDATA[Department of Defence, Canberra ACT 2600]]></postalAddress>
+<id><![CDATA[968c6f8d-84b1-42e7-9119-bbfc56d6d14b]]></id>
+<category>D</category>
+<lastModified><![CDATA[20111202144401.477+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport419.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&13e3d0b7-e537-47cd-beec-3f152cf8eb23]]></websiteURI>
+<dn><![CDATA[ou=Department of Education\, Employment and Workplace Relations,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Education, Employment and Workplace Relations]]></name>
+<shortName><![CDATA[DEEWR]]></shortName>
+<phone><![CDATA[(02) 6121 6000]]></phone>
+<postalAddress><![CDATA[GPO Box 9880, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[13e3d0b7-e537-47cd-beec-3f152cf8eb23]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110330160615.467+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport420.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&2860cb08-ef99-4c78-957b-92062eafa5bc]]></websiteURI>
+<dn><![CDATA[ou=Department of Families\, Housing\, Community Services and Indigenous Affairs,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Families, Housing, Community Services and Indigenous Affairs]]></name>
+<shortName><![CDATA[FaHCSIA]]></shortName>
+<phone><![CDATA[1300 653 227]]></phone>
+<postalAddress><![CDATA[PO Box 7576, Canberra Business Centre, ACT 2610]]></postalAddress>
+<id><![CDATA[2860cb08-ef99-4c78-957b-92062eafa5bc]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120116101510.484+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport421.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ce43db83-1978-4d9d-9720-ed87cc592ac7]]></websiteURI>
+<dn><![CDATA[ou=Department of Finance and Deregulation,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Finance and Deregulation]]></name>
+<shortName><![CDATA[Finance]]></shortName>
+<phone><![CDATA[(02) 6215 2222]]></phone>
+<id><![CDATA[ce43db83-1978-4d9d-9720-ed87cc592ac7]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110322141355.019+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport422.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&36c12646-7adc-4d77-8520-d79df2ca3110]]></websiteURI>
+<dn><![CDATA[ou=Department of Foreign Affairs and Trade,o=Foreign Affairs and Trade,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Foreign Affairs and Trade]]></name>
+<shortName><![CDATA[DFAT]]></shortName>
+<phone><![CDATA[(02) 6261 1111]]></phone>
+<id><![CDATA[36c12646-7adc-4d77-8520-d79df2ca3110]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110324162650.584+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport423.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&b83d88c7-b7e0-49e7-bf19-9680d8c72c4e]]></websiteURI>
+<dn><![CDATA[ou=Department of Health and Ageing,o=Health and Ageing,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Health and Ageing]]></name>
+<phone><![CDATA[(02) 6289 1555]]></phone>
+<postalAddress><![CDATA[GPO Box 9848, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[b83d88c7-b7e0-49e7-bf19-9680d8c72c4e]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120116095923.653+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport424.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&25f88ea8-5bea-4778-bfe3-38ecbc0b8551]]></websiteURI>
+<dn><![CDATA[ou=Department of Human Services,o=Human Services,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Human Services]]></name>
+<shortName><![CDATA[DHS]]></shortName>
+<phone><![CDATA[(02) 6223 4000]]></phone>
+<email><![CDATA[enquiries@humanservices.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 3959, Manuka ACT 2603   ]]></postalAddress>
+<id><![CDATA[25f88ea8-5bea-4778-bfe3-38ecbc0b8551]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110715111457.055+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport425.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&54f5b9c4-d6fc-484d-9e5d-6ddb7088f4fd]]></websiteURI>
+<dn><![CDATA[ou=Department of Immigration and Citizenship,o=Immigration and Citizenship,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Immigration and Citizenship]]></name>
+<shortName><![CDATA[DIAC]]></shortName>
+<phone><![CDATA[ 131 881]]></phone>
+<postalAddress><![CDATA[PO Box 25, Belconnen ACT 2616]]></postalAddress>
+<id><![CDATA[54f5b9c4-d6fc-484d-9e5d-6ddb7088f4fd]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120215161612.984+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport426.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&297902c5-c814-4457-aca2-cdeb8fd3bf6b]]></websiteURI>
+<dn><![CDATA[ou=Department of Industry\, Innovation\, Science\, Research and Tertiary Education,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Industry, Innovation, Science, Research and Tertiary Education]]></name>
+<shortName><![CDATA[IISR]]></shortName>
+<phone><![CDATA[(02) 6213 6000]]></phone>
+<postalAddress><![CDATA[GPO Box 9839, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[297902c5-c814-4457-aca2-cdeb8fd3bf6b]]></id>
+<category>D</category>
+<lastModified><![CDATA[20111216155553.526+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport427.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&80bf2b57-8c53-4f03-9a81-8709e5bf18dd]]></websiteURI>
+<dn><![CDATA[ou=Department of Infrastructure and Transport,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Infrastructure and Transport]]></name>
+<shortName><![CDATA[DOIT]]></shortName>
+<phone><![CDATA[(02) 6274 7111]]></phone>
+<email><![CDATA[publicaffairs@infrastructure.gov.au]]></email>
+<postalAddress><![CDATA[Department of Infrastructure and Transport, GPO Box 594, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[80bf2b57-8c53-4f03-9a81-8709e5bf18dd]]></id>
+<category>D</category>
+<lastModified><![CDATA[20100921104123.745+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport428.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&1de747d7-9db8-4929-88a1-7ab1289ac924]]></websiteURI>
+<dn><![CDATA[ou=Department of Parliamentary Services,o=Commonwealth Parliament,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Parliamentary Services]]></name>
+<postalAddress><![CDATA[Parliament House,  PO Box 6000, Canberra  ACT 2600]]></postalAddress>
+<id><![CDATA[1de747d7-9db8-4929-88a1-7ab1289ac924]]></id>
+<category>D</category>
+<lastModified><![CDATA[20100114091854.040+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport429.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&fca299eb-9f91-4e68-b31b-ca4f2259c535]]></websiteURI>
+<dn><![CDATA[ou=Department of Regional Australia\, Local Government\, Arts & Sport,o=Regional Australia\, Local Government\, Arts & Sport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Regional Australia, Local Government, Arts & Sport]]></name>
+<phone><![CDATA[(02) 6274 7977]]></phone>
+<postalAddress><![CDATA[GPO Box 803, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[fca299eb-9f91-4e68-b31b-ca4f2259c535]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120118093434.074+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport430.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&db8b240b-3152-4b89-bf67-e444c6c2332e]]></websiteURI>
+<dn><![CDATA[ou=Department of Resources\, Energy and Tourism,o=Resources\, Energy and Tourism,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Resources, Energy and Tourism]]></name>
+<shortName><![CDATA[RET]]></shortName>
+<phone><![CDATA[(02) 6276 1000]]></phone>
+<postalAddress><![CDATA[GPO Box 1564, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[db8b240b-3152-4b89-bf67-e444c6c2332e]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120116102014.346+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport431.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ac6cced1-72ee-476a-a071-a5035a1277a2]]></websiteURI>
+<dn><![CDATA[ou=Department of Sustainability\, Environment\, Water\, Population and Communities,o=Sustainability\, Environment\, Water\, Population and Communities,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Sustainability, Environment, Water, Population and Communities]]></name>
+<shortName><![CDATA[SEWPaC]]></shortName>
+<phone><![CDATA[(02) 6274 1111]]></phone>
+<postalAddress><![CDATA[GPO Box 787, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[ac6cced1-72ee-476a-a071-a5035a1277a2]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120116102102.102+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport432.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&c79d0a77-9094-4656-9291-6fcb17bca1f0]]></websiteURI>
+<dn><![CDATA[ou=Department of the Prime Minister and Cabinet,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of the Prime Minister and Cabinet]]></name>
+<shortName><![CDATA[DPMC]]></shortName>
+<phone><![CDATA[(02) 6271 5111]]></phone>
+<postalAddress><![CDATA[PO Box 6500 Canberra ACT 2600]]></postalAddress>
+<id><![CDATA[c79d0a77-9094-4656-9291-6fcb17bca1f0]]></id>
+<category>D</category>
+<lastModified><![CDATA[20120116101709.243+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport433.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&a605c6b2-e558-46c5-acf9-8bdb09f11a00]]></websiteURI>
+<dn><![CDATA[ou=Department of Veterans' Affairs,ou=Department of Veterans' Affairs,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Department of Veterans' Affairs]]></name>
+<shortName><![CDATA[DVA]]></shortName>
+<phone><![CDATA[13 3254]]></phone>
+<postalAddress><![CDATA[PO Box 9998, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[a605c6b2-e558-46c5-acf9-8bdb09f11a00]]></id>
+<category>D</category>
+<lastModified><![CDATA[20100804143247.129+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport434.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f2b0ee40-5871-44c5-9a44-428f11d20a05]]></websiteURI>
+<dn><![CDATA[ou=Director of National Parks,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Sustainability\, Environment\, Water\, Population and Communities,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Director of National Parks]]></name>
+<phone><![CDATA[(02) 6274 2221]]></phone>
+<postalAddress><![CDATA[GPO Box 787, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[f2b0ee40-5871-44c5-9a44-428f11d20a05]]></id>
+<category>D</category>
+<lastModified><![CDATA[20110311145744.797+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport435.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&2035df71-ee40-47e6-a169-4c47a1268a16]]></websiteURI>
+<dn><![CDATA[ou=Ecosystems Sciences,ou=Environment,ou=Research Groups,ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Ecosystems Sciences]]></name>
+<phone><![CDATA[(02) 6242 1600]]></phone>
+<postalAddress><![CDATA[GPO Box 1700, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[2035df71-ee40-47e6-a169-4c47a1268a16]]></id>
+<category>E</category>
+<lastModified><![CDATA[20111220150942.018+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport436.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&c33fc9de-d580-4630-a90a-2fa75c76bd17]]></websiteURI>
+<dn><![CDATA[ou=Energy Technology,ou=Energy,ou=Research Groups,ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Energy Technology]]></name>
+<phone><![CDATA[(02) 4960 6000]]></phone>
+<postalAddress><![CDATA[PO Box 330 Newcastle 2300]]></postalAddress>
+<id><![CDATA[c33fc9de-d580-4630-a90a-2fa75c76bd17]]></id>
+<category>E</category>
+<lastModified><![CDATA[20100222170235.796+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport437.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3ae5c888-5594-4f01-acdc-750660c6be71]]></websiteURI>
+<dn><![CDATA[ou=Equal Opportunity for Women in the Workplace Agency,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Equal Opportunity for Women in the Workplace Agency]]></name>
+<shortName><![CDATA[EOWA]]></shortName>
+<phone><![CDATA[(02) 9448 8500]]></phone>
+<email><![CDATA[eowa@eowa.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 712, North Sydney NSW 2059]]></postalAddress>
+<id><![CDATA[3ae5c888-5594-4f01-acdc-750660c6be71]]></id>
+<category>E</category>
+<lastModified><![CDATA[20110330141305.465+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport438.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&2ccc72b1-a562-4fb1-a948-22ec69c8dc62]]></websiteURI>
+<dn><![CDATA[ou=Export Finance and Insurance Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Foreign Affairs and Trade,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Export Finance and Insurance Corporation]]></name>
+<shortName><![CDATA[EFIC]]></shortName>
+<phone><![CDATA[(02) 9201 2111]]></phone>
+<email><![CDATA[info@efic.gov.au]]></email>
+<postalAddress><![CDATA[PO Box R65, Royal Exchange NSW 1223]]></postalAddress>
+<id><![CDATA[2ccc72b1-a562-4fb1-a948-22ec69c8dc62]]></id>
+<category>E</category>
+<lastModified><![CDATA[20100624173819.862+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport439.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&31bb7863-c018-475a-a496-7cd5c8882228]]></websiteURI>
+<dn><![CDATA[ou=Fair Work Australia,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Fair Work Australia]]></name>
+<phone><![CDATA[(03) 8661 7777]]></phone>
+<postalAddress><![CDATA[GPO Box 1994, Melbourne Vic 3001]]></postalAddress>
+<id><![CDATA[31bb7863-c018-475a-a496-7cd5c8882228]]></id>
+<category>F</category>
+<lastModified><![CDATA[20110401142455.528+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport440.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e713f18a-1d62-4295-9de4-36caff88040f]]></websiteURI>
+<dn><![CDATA[ou=Fair Work Ombudsman,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Fair Work Ombudsman]]></name>
+<shortName><![CDATA[FWO]]></shortName>
+<phone><![CDATA[Fair Work Infoline 13 13 94]]></phone>
+<postalAddress><![CDATA[Fair Work Ombudsman, GPO Box 9887, In your capital city]]></postalAddress>
+<id><![CDATA[e713f18a-1d62-4295-9de4-36caff88040f]]></id>
+<category>F</category>
+<lastModified><![CDATA[20110316160734.280+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport441.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ce3d3fd4-ca6a-4558-b97d-8e2d2e9c7158]]></websiteURI>
+<dn><![CDATA[ou=Family Court of Australia,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Family Court of Australia]]></name>
+<phone><![CDATA[(02) 6243 8600]]></phone>
+<postalAddress><![CDATA[GPO Box 9991 Canberra  ACT  2601]]></postalAddress>
+<id><![CDATA[ce3d3fd4-ca6a-4558-b97d-8e2d2e9c7158]]></id>
+<category>F</category>
+<lastModified><![CDATA[20110330142743.374+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport442.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&90ce659d-5b38-4409-8c83-34cd115335eb]]></websiteURI>
+<dn><![CDATA[ou=Federal Court of Australia,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Federal Court of Australia]]></name>
+<phone><![CDATA[(02) 9230 8473]]></phone>
+<email><![CDATA[query@fedcourt.gov.au]]></email>
+<id><![CDATA[90ce659d-5b38-4409-8c83-34cd115335eb]]></id>
+<category>F</category>
+<lastModified><![CDATA[20100624173750.518+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport443.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&763e6e72-5d02-4cf9-8165-db8cbaae67bc]]></websiteURI>
+<dn><![CDATA[ou=Federal Magistrates Court of Australia,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Federal Magistrates Court of Australia]]></name>
+<shortName><![CDATA[FMC]]></shortName>
+<phone><![CDATA[1300 352 000]]></phone>
+<email><![CDATA[customer.service@fmc.gov.au]]></email>
+<id><![CDATA[763e6e72-5d02-4cf9-8165-db8cbaae67bc]]></id>
+<category>F</category>
+<lastModified><![CDATA[20100818165457.809+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport444.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7c0d23c0-8d55-45ce-ae8f-44d416aa74f7]]></websiteURI>
+<dn><![CDATA[ou=Federal Police Disciplinary Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Federal Police Disciplinary Tribunal]]></name>
+<shortName><![CDATA[FPDT]]></shortName>
+<phone><![CDATA[(02) 9230 8567]]></phone>
+<id><![CDATA[7c0d23c0-8d55-45ce-ae8f-44d416aa74f7]]></id>
+<category>F</category>
+<lastModified><![CDATA[20110330170343.651+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport445.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f9c7e1f4-4f6b-4a3a-a51f-a5eaf2229147]]></websiteURI>
+<dn><![CDATA[ou=Fisheries Research and Development Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Fisheries Research and Development Corporation]]></name>
+<shortName><![CDATA[FRDC]]></shortName>
+<phone><![CDATA[(02) 6285 0400]]></phone>
+<email><![CDATA[frdc@frdc.com.au]]></email>
+<postalAddress><![CDATA[PO Box 222, Deakin West ACT 2600]]></postalAddress>
+<id><![CDATA[f9c7e1f4-4f6b-4a3a-a51f-a5eaf2229147]]></id>
+<category>F</category>
+<lastModified><![CDATA[20110321160340.494+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport446.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&fe226117-689f-4655-85b4-33599a6c80d9]]></websiteURI>
+<dn><![CDATA[ou=Food and Nutritional Sciences,ou=Food Health and Life Science Industries,ou=Research Groups,ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Food and Nutritional Sciences]]></name>
+<phone><![CDATA[1300 363 400]]></phone>
+<postalAddress><![CDATA[PO Box 52, North Ryde NSW 1670]]></postalAddress>
+<id><![CDATA[fe226117-689f-4655-85b4-33599a6c80d9]]></id>
+<category>F</category>
+<lastModified><![CDATA[20100429090640.811+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport447.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d5c32b62-fa7e-4d69-a962-4787683cd18f]]></websiteURI>
+<dn><![CDATA[ou=Food Standards Australia New Zealand,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Health and Ageing,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Food Standards Australia New Zealand]]></name>
+<shortName><![CDATA[FSANZ]]></shortName>
+<id><![CDATA[d5c32b62-fa7e-4d69-a962-4787683cd18f]]></id>
+<category>F</category>
+<lastModified><![CDATA[20120220104417.955+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport448.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&2cae7992-8cba-4b10-abe3-7c30c96582b1]]></websiteURI>
+<dn><![CDATA[ou=Forest and Wood Products Australia Limited,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Forest and Wood Products Australia Limited]]></name>
+<shortName><![CDATA[FWPRDC FWPAL]]></shortName>
+<phone><![CDATA[(03) 9614 7544]]></phone>
+<email><![CDATA[info@fwpa.com.au]]></email>
+<postalAddress><![CDATA[Level 4, 10-16 Queen Street Melbourne Vic 3000]]></postalAddress>
+<id><![CDATA[2cae7992-8cba-4b10-abe3-7c30c96582b1]]></id>
+<category>F</category>
+<lastModified><![CDATA[20110317153120.909+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport449.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7bddbdb7-6cd9-43d1-aa5a-f589d26009ea]]></websiteURI>
+<dn><![CDATA[ou=Future Fund Management Agency,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Future Fund Management Agency]]></name>
+<phone><![CDATA[(03) 8656 6400]]></phone>
+<postalAddress><![CDATA[Locked Bag 20010, Melbourne Vic 3000]]></postalAddress>
+<id><![CDATA[7bddbdb7-6cd9-43d1-aa5a-f589d26009ea]]></id>
+<category>F</category>
+<lastModified><![CDATA[20100430112436.365+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport450.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&660ab416-9b1a-4fc1-b5a7-4b6cb871e715]]></websiteURI>
+<dn><![CDATA[ou=Geoscience Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Resources\, Energy and Tourism,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Geoscience Australia]]></name>
+<phone><![CDATA[(02) 6249 9111]]></phone>
+<email><![CDATA[sales@ga.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 378, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[660ab416-9b1a-4fc1-b5a7-4b6cb871e715]]></id>
+<category>G</category>
+<lastModified><![CDATA[20111125153229.952+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport451.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d39c716a-c989-4268-a851-a43fe93526b1]]></websiteURI>
+<dn><![CDATA[ou=Governance and Reporting,ou=Corporate Services,ou=Department of Infrastructure and Transport,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Governance and Reporting]]></name>
+<phone><![CDATA[(02) 6274 7111]]></phone>
+<email><![CDATA[publicaffairs@infrastructure.gov.au]]></email>
+<postalAddress><![CDATA[Governance and Reporting, Corporate Services, GPO Box 594, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[d39c716a-c989-4268-a851-a43fe93526b1]]></id>
+<category>G</category>
+<lastModified><![CDATA[20100923173235.398+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport452.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&615d4375-a1e4-4628-846f-42d73e679eb5]]></websiteURI>
+<dn><![CDATA[ou=Grains Research and Development Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Grains Research and Development Corporation]]></name>
+<shortName><![CDATA[GRDC]]></shortName>
+<phone><![CDATA[(02) 6166 4500]]></phone>
+<email><![CDATA[grdc@grdc.com.au]]></email>
+<postalAddress><![CDATA[PO Box 5367, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[615d4375-a1e4-4628-846f-42d73e679eb5]]></id>
+<category>G</category>
+<lastModified><![CDATA[20110330134555.698+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport453.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&526d1dbd-b5a4-4708-ab6d-7c4127e10f8b]]></websiteURI>
+<dn><![CDATA[ou=Grape and Wine Research and Development Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Grape and Wine Research and Development Corporation]]></name>
+<shortName><![CDATA[GWRDC]]></shortName>
+<phone><![CDATA[(08) 8273 0500]]></phone>
+<email><![CDATA[gwrdc@gwrdc.com.au]]></email>
+<postalAddress><![CDATA[PO Box 221, Goodwood SA 5034]]></postalAddress>
+<id><![CDATA[526d1dbd-b5a4-4708-ab6d-7c4127e10f8b]]></id>
+<category>G</category>
+<lastModified><![CDATA[20110321150730.747+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport454.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&23ce4126-daa8-443f-b357-4af715c92f1b]]></websiteURI>
+<dn><![CDATA[ou=Great Barrier Reef Marine Park Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Sustainability\, Environment\, Water\, Population and Communities,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Great Barrier Reef Marine Park Authority]]></name>
+<shortName><![CDATA[GBRMPA]]></shortName>
+<phone><![CDATA[(07) 4750 0700]]></phone>
+<postalAddress><![CDATA[PO Box 1379, Townsville Qld 4810]]></postalAddress>
+<id><![CDATA[23ce4126-daa8-443f-b357-4af715c92f1b]]></id>
+<category>G</category>
+<lastModified><![CDATA[20110329131735.696+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport455.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&360d3210-ca6e-46e4-ac09-dc4fb8abff88]]></websiteURI>
+<dn><![CDATA[ou=High Court of Australia,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[High Court of Australia]]></name>
+<phone><![CDATA[(02) 6270 6811]]></phone>
+<postalAddress><![CDATA[PO Box 6309, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[360d3210-ca6e-46e4-ac09-dc4fb8abff88]]></id>
+<category>H</category>
+<lastModified><![CDATA[20100624173843.935+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport456.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d9103cac-5d65-47dc-a53e-0dd7900326c1]]></websiteURI>
+<dn><![CDATA[ou=Indigenous Business Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Indigenous Business Australia]]></name>
+<shortName><![CDATA[IBA]]></shortName>
+<phone><![CDATA[1800 107 107]]></phone>
+<postalAddress><![CDATA[PO Box 38, Woden ACT 2606]]></postalAddress>
+<id><![CDATA[d9103cac-5d65-47dc-a53e-0dd7900326c1]]></id>
+<category>I</category>
+<lastModified><![CDATA[20100921120433.699+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport457.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f9d333d8-238b-4528-ab7b-d1849a0ac47d]]></websiteURI>
+<dn><![CDATA[ou=Indigenous Land Corporation (ILC),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Indigenous Land Corporation (ILC)]]></name>
+<shortName><![CDATA[ILC]]></shortName>
+<phone><![CDATA[(08) 8100 7100]]></phone>
+<email><![CDATA[ilcinfo@ilc.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 652, Adelaide SA 5001]]></postalAddress>
+<id><![CDATA[f9d333d8-238b-4528-ab7b-d1849a0ac47d]]></id>
+<category>I</category>
+<lastModified><![CDATA[20110708155919.446+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport458.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&bbb6c0b8-c151-4918-8a44-5e96f64c50a1]]></websiteURI>
+<dn><![CDATA[ou=Industrial Relations Court of Australia,ou=Federal Court of Australia,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Industrial Relations Court of Australia]]></name>
+<shortName><![CDATA[IRCA]]></shortName>
+<phone><![CDATA[(02) 9230 8567]]></phone>
+<id><![CDATA[bbb6c0b8-c151-4918-8a44-5e96f64c50a1]]></id>
+<category>I</category>
+<lastModified><![CDATA[20110330134013.674+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport459.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7dc6ce1e-4899-4419-8333-dcbb51fda65b]]></websiteURI>
+<dn><![CDATA[ou=Insolvency and Trustee Service\, Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Insolvency and Trustee Service, Australia]]></name>
+<shortName><![CDATA[ITSA]]></shortName>
+<phone><![CDATA[(02) 6270 3400]]></phone>
+<email><![CDATA[itsa.national@itsa.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 821, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[7dc6ce1e-4899-4419-8333-dcbb51fda65b]]></id>
+<category>I</category>
+<lastModified><![CDATA[20110316163525.431+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport460.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&2177d11c-8da3-4368-86f4-fc8066b90348]]></websiteURI>
+<dn><![CDATA[ou=Inspector-General of Intelligence and Security,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Inspector-General of Intelligence and Security]]></name>
+<shortName><![CDATA[IGIS]]></shortName>
+<phone><![CDATA[(02) 6271 5692]]></phone>
+<email><![CDATA[info@igis.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 6181, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[2177d11c-8da3-4368-86f4-fc8066b90348]]></id>
+<category>I</category>
+<lastModified><![CDATA[20100624173732.551+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport461.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&8c0e5947-c394-435f-95f4-84fe22c21663]]></websiteURI>
+<dn><![CDATA[ou=Inspector-General of Taxation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Inspector-General of Taxation]]></name>
+<shortName><![CDATA[IGT]]></shortName>
+<phone><![CDATA[(02) 8239 2111]]></phone>
+<email><![CDATA[enquires@igt.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 551, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[8c0e5947-c394-435f-95f4-84fe22c21663]]></id>
+<category>I</category>
+<lastModified><![CDATA[20100624173815.648+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport462.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e62e5f08-db52-4568-b2dc-253097db8ae4]]></websiteURI>
+<dn><![CDATA[ou=Inspector-General of the Australian Defence Force,ou=Department of Defence,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Inspector-General of the Australian Defence Force]]></name>
+<shortName><![CDATA[IGADF]]></shortName>
+<phone><![CDATA[1800 688 042]]></phone>
+<email><![CDATA[ig.adf@defence.gov.au]]></email>
+<postalAddress><![CDATA[Department of Defence, 91NBA-2-44, Canberra ACT 2600]]></postalAddress>
+<id><![CDATA[e62e5f08-db52-4568-b2dc-253097db8ae4]]></id>
+<category>I</category>
+<lastModified><![CDATA[20100920154652.970+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport463.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&57510111-653c-4b5d-bfb6-bbee80fbc8bd]]></websiteURI>
+<dn><![CDATA[ou=International Air Services Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[International Air Services Commission]]></name>
+<shortName><![CDATA[IASC]]></shortName>
+<phone><![CDATA[(02) 6267 1100]]></phone>
+<email><![CDATA[iasc@infrastructure.gov.au]]></email>
+<postalAddress><![CDATA[International Air Services Commission, GPO Box 630, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[57510111-653c-4b5d-bfb6-bbee80fbc8bd]]></id>
+<category>I</category>
+<lastModified><![CDATA[20100624173816.433+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport464.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ebe0c538-e47a-45f5-a02d-66da091950b4]]></websiteURI>
+<dn><![CDATA[ou=Ionospheric Prediction Service (IPS),ou=Research and Systems Division,ou=Bureau of Meteorology,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Sustainability\, Environment\, Water\, Population and Communities,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Ionospheric Prediction Service (IPS)]]></name>
+<phone><![CDATA[(02) 9213 8000]]></phone>
+<postalAddress><![CDATA[PO Box 1386, Haymarket NSW 1240 Australia]]></postalAddress>
+<id><![CDATA[ebe0c538-e47a-45f5-a02d-66da091950b4]]></id>
+<category>I</category>
+<lastModified><![CDATA[20120103144554.048+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport465.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&c64c5c84-9994-4358-b828-eaa690091a4d]]></websiteURI>
+<dn><![CDATA[ou=IP (Intellectual Property) Australia,ou=Central Office,ou=Department of Industry\, Innovation\, Science\, Research and Tertiary Education,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[IP (Intellectual Property) Australia]]></name>
+<shortName><![CDATA[IP IPA]]></shortName>
+<email><![CDATA[assist@ipaustralia.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 200, Woden ACT 2606]]></postalAddress>
+<id><![CDATA[c64c5c84-9994-4358-b828-eaa690091a4d]]></id>
+<category>I</category>
+<lastModified><![CDATA[20110404101954.489+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport466.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d41ce663-adc7-4fda-af62-d3707884fb15]]></websiteURI>
+<dn><![CDATA[ou=Land and Water Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Land and Water Australia]]></name>
+<shortName><![CDATA[Land & Water Australia LWA]]></shortName>
+<phone><![CDATA[(02) 6263 6000]]></phone>
+<email><![CDATA[Land&WaterAustralia@lwa.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 2182, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[d41ce663-adc7-4fda-af62-d3707884fb15]]></id>
+<category>L</category>
+<lastModified><![CDATA[20110317101939.083+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport467.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&a02e9587-54a9-4033-9c75-c1824ad735ec]]></websiteURI>
+<dn><![CDATA[ou=Marine and Atmospheric Research,ou=Environment,ou=Research Groups,ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Marine and Atmospheric Research]]></name>
+<phone><![CDATA[(03) 6232 5222]]></phone>
+<postalAddress><![CDATA[GPO Box 1538]]></postalAddress>
+<id><![CDATA[a02e9587-54a9-4033-9c75-c1824ad735ec]]></id>
+<category>M</category>
+<lastModified><![CDATA[20100222170236.333+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport468.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e0ead54d-4049-410e-9481-bebda8f7a833]]></websiteURI>
+<dn><![CDATA[ou=Maritime Development Branch,ou=Capability Systems,ou=Capability Development Group,ou=Department of Defence,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Maritime Development Branch]]></name>
+<phone><![CDATA[(02) 6265 6606]]></phone>
+<email><![CDATA[robert.elliott6@defence.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 7905, Russell Offices, CANBERRA  BC ACT 2610]]></postalAddress>
+<id><![CDATA[e0ead54d-4049-410e-9481-bebda8f7a833]]></id>
+<category>M</category>
+<lastModified><![CDATA[20111213122105.125+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport469.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&a40fbb78-6586-45c6-a671-17409c6d5c7a]]></websiteURI>
+<dn><![CDATA[ou=Materials Science and Engineering,ou=Manufacturing Materials & Minerals,ou=Research Groups,ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Materials Science and Engineering]]></name>
+<phone><![CDATA[(03) 9545 2777]]></phone>
+<postalAddress><![CDATA[Private Bag 33, Clayton South Vic 3169 ]]></postalAddress>
+<id><![CDATA[a40fbb78-6586-45c6-a671-17409c6d5c7a]]></id>
+<category>M</category>
+<lastModified><![CDATA[20110322172952.638+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport470.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&cd26aeec-5026-4d32-8cea-5fee3bf9f514]]></websiteURI>
+<dn><![CDATA[ou=Mathematics\, Informatics and Statistics,ou=Information Sciences,ou=Research Groups,ou=Commonwealth Scientific and Industrial Research Organisation (CSIRO),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Mathematics, Informatics and Statistics]]></name>
+<phone><![CDATA[(02) 9325 3100]]></phone>
+<postalAddress><![CDATA[Locked Bag 17, North Ryde NSW 1670]]></postalAddress>
+<id><![CDATA[cd26aeec-5026-4d32-8cea-5fee3bf9f514]]></id>
+<category>M</category>
+<lastModified><![CDATA[20110317153226.931+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport471.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&de3cfd8a-56f1-49d3-a1b0-f06df17897c0]]></websiteURI>
+<dn><![CDATA[ou=Meat and Livestock Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Meat and Livestock Australia]]></name>
+<shortName><![CDATA[MLA]]></shortName>
+<phone><![CDATA[(02) 9463 9333]]></phone>
+<postalAddress><![CDATA[Locked Bag 991, North Sydney NSW 2059]]></postalAddress>
+<id><![CDATA[de3cfd8a-56f1-49d3-a1b0-f06df17897c0]]></id>
+<category>M</category>
+<lastModified><![CDATA[20110317161745.155+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport472.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&2f90ff64-79f5-450f-8397-c7662378b3d9]]></websiteURI>
+<dn><![CDATA[ou=Medibank Health Solutions Pty Ltd,ou=Medibank Private Ltd,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Medibank Health Solutions Pty Ltd]]></name>
+<phone><![CDATA[03 8622 5163 (for media inquires)]]></phone>
+<postalAddress><![CDATA[Medibank Health Solutions, GPO Box 9821 in your capital city]]></postalAddress>
+<id><![CDATA[2f90ff64-79f5-450f-8397-c7662378b3d9]]></id>
+<category>M</category>
+<lastModified><![CDATA[20101028150355.399+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport473.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&8b721ff8-a3ff-494d-be55-eec06100b6f5]]></websiteURI>
+<dn><![CDATA[ou=Medibank Private Ltd,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Medibank Private Ltd]]></name>
+<phone><![CDATA[(03) 8622 5163 (for media inquiries)]]></phone>
+<postalAddress><![CDATA[Medibank Private, GPO Box 9999 (your capital city)]]></postalAddress>
+<id><![CDATA[8b721ff8-a3ff-494d-be55-eec06100b6f5]]></id>
+<category>M</category>
+<lastModified><![CDATA[20100430112434.850+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport474.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&bcc045f9-48e9-49ce-9607-b6b3886b4f67]]></websiteURI>
+<dn><![CDATA[ou=Migration Review Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Immigration and Citizenship,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Migration Review Tribunal]]></name>
+<shortName><![CDATA[MRT]]></shortName>
+<phone><![CDATA[(02) 9276 5000]]></phone>
+<email><![CDATA[enquiries@mrt-rrt.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 1333, Sydney  NSW  2001]]></postalAddress>
+<id><![CDATA[bcc045f9-48e9-49ce-9607-b6b3886b4f67]]></id>
+<category>M</category>
+<lastModified><![CDATA[20120106120717.922+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport475.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&c27aedfb-2d8c-492e-9cdd-aa25982c0b05]]></websiteURI>
+<dn><![CDATA[ou=Museum of Australian Democracy at Old Parliament House,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Museum of Australian Democracy at Old Parliament House]]></name>
+<shortName><![CDATA[MOAD]]></shortName>
+<phone><![CDATA[(02) 6270 8222]]></phone>
+<postalAddress><![CDATA[PO Box 7088  Canberra  BC ACT  2610]]></postalAddress>
+<id><![CDATA[c27aedfb-2d8c-492e-9cdd-aa25982c0b05]]></id>
+<category>M</category>
+<lastModified><![CDATA[20110316172145.359+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport476.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&aaf23310-4c92-48c0-9ac9-c0e19be27677]]></websiteURI>
+<dn><![CDATA[ou=National Archives of Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Archives of Australia]]></name>
+<shortName><![CDATA[NAA]]></shortName>
+<phone><![CDATA[(02) 6212 3600]]></phone>
+<email><![CDATA[archives@naa.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 7425, Canberra Business Centre ACT 2610]]></postalAddress>
+<id><![CDATA[aaf23310-4c92-48c0-9ac9-c0e19be27677]]></id>
+<category>N</category>
+<lastModified><![CDATA[20111122153106.267+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport477.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&641a9d13-93bf-4a04-b265-f26a2f096694]]></websiteURI>
+<dn><![CDATA[ou=National Capital Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Capital Authority]]></name>
+<shortName><![CDATA[NCA]]></shortName>
+<phone><![CDATA[(02) 6271 2888]]></phone>
+<email><![CDATA[natcap@natcap.gov.au]]></email>
+<postalAddress><![CDATA[National Capital Authority, GPO Box 373, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[641a9d13-93bf-4a04-b265-f26a2f096694]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110310153612.839+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport478.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&42296340-b8e6-473d-9a62-365b408708d8]]></websiteURI>
+<dn><![CDATA[ou=National Film and Sound Archive,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Film and Sound Archive]]></name>
+<shortName><![CDATA[NFSA]]></shortName>
+<phone><![CDATA[(02) 6248 2000]]></phone>
+<email><![CDATA[enquiries@nfsa.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 2002, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[42296340-b8e6-473d-9a62-365b408708d8]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110614140526.867+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport479.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&5f55f1e0-1baf-44d1-9da8-e1739527b9d7]]></websiteURI>
+<dn><![CDATA[ou=National Gallery of Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Gallery of Australia]]></name>
+<shortName><![CDATA[NGA]]></shortName>
+<phone><![CDATA[(02) 6240 6411]]></phone>
+<postalAddress><![CDATA[GPO Box 1150, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[5f55f1e0-1baf-44d1-9da8-e1739527b9d7]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110330140654.339+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport480.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&759b92c3-579d-4b68-bff5-d7bc78d4a91d]]></websiteURI>
+<dn><![CDATA[ou=National Library of Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Library of Australia]]></name>
+<shortName><![CDATA[NLA]]></shortName>
+<phone><![CDATA[(02) 6262 1111]]></phone>
+<email><![CDATA[info@nla.gov.au]]></email>
+<postalAddress><![CDATA[Parkes Place, Canberra  ACT 2600]]></postalAddress>
+<id><![CDATA[759b92c3-579d-4b68-bff5-d7bc78d4a91d]]></id>
+<category>N</category>
+<lastModified><![CDATA[20111201140057.098+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport481.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&2127322f-2af5-49e8-a925-41dc1542a702]]></websiteURI>
+<dn><![CDATA[ou=National Marine Safety Committee,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Marine Safety Committee]]></name>
+<shortName><![CDATA[NMSC]]></shortName>
+<phone><![CDATA[(02) 9247 2124]]></phone>
+<id><![CDATA[2127322f-2af5-49e8-a925-41dc1542a702]]></id>
+<category>N</category>
+<lastModified><![CDATA[20100521142043.175+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport482.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&66cbe438-db1c-4da6-b3c3-88478520e38b]]></websiteURI>
+<dn><![CDATA[ou=National Measurement Institute,ou=Central Office,ou=Department of Industry\, Innovation\, Science\, Research and Tertiary Education,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Measurement Institute]]></name>
+<shortName><![CDATA[NMI]]></shortName>
+<phone><![CDATA[(02) 8467 3600]]></phone>
+<email><![CDATA[info@measurement.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 264, Lindfield NSW 2070]]></postalAddress>
+<id><![CDATA[66cbe438-db1c-4da6-b3c3-88478520e38b]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110317143507.299+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport483.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f6b2f75f-5792-4f6f-a6a8-04afba107eec]]></websiteURI>
+<dn><![CDATA[ou=National Museum of Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Museum of Australia]]></name>
+<shortName><![CDATA[NMA]]></shortName>
+<phone><![CDATA[(02) 6208 5000]]></phone>
+<email><![CDATA[information@nma.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 1901, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[f6b2f75f-5792-4f6f-a6a8-04afba107eec]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110322113402.079+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport484.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d4466d97-1606-48b9-a34f-87b34e549c06]]></websiteURI>
+<dn><![CDATA[ou=National Native Title Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Native Title Tribunal]]></name>
+<shortName><![CDATA[NNTT]]></shortName>
+<phone><![CDATA[(08) 9425 1000]]></phone>
+<email><![CDATA[enquiries@nntt.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 9973 in your capital city]]></postalAddress>
+<id><![CDATA[d4466d97-1606-48b9-a34f-87b34e549c06]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110905114934.329+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport485.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&39b5513b-5dd0-4766-9189-42f71921bce3]]></websiteURI>
+<dn><![CDATA[ou=National Offshore Petroleum Safety and Environmental Management Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Resources\, Energy and Tourism,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Offshore Petroleum Safety and Environmental Management Authority]]></name>
+<shortName><![CDATA[NOPSEMA]]></shortName>
+<phone><![CDATA[(08) 6188 8700]]></phone>
+<email><![CDATA[communications@nopsema.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 2568, Perth WA 6001]]></postalAddress>
+<id><![CDATA[39b5513b-5dd0-4766-9189-42f71921bce3]]></id>
+<category>N</category>
+<lastModified><![CDATA[20120111164027.621+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport486.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&32764ed3-0e83-48ca-a3d7-f2e5353d9ff8]]></websiteURI>
+<dn><![CDATA[ou=National Transport Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Transport Commission]]></name>
+<shortName><![CDATA[NTC]]></shortName>
+<phone><![CDATA[(03) 9236 5000]]></phone>
+<email><![CDATA[ntc@ntc.gov.au]]></email>
+<postalAddress><![CDATA[L15/628 Bourke Street Melbourne VIC 3000]]></postalAddress>
+<id><![CDATA[32764ed3-0e83-48ca-a3d7-f2e5353d9ff8]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110321172355.125+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport487.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&8bc0eef0-903b-49e3-bed5-8e8365a5595a]]></websiteURI>
+<dn><![CDATA[ou=National Water Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Sustainability\, Environment\, Water\, Population and Communities,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[National Water Commission]]></name>
+<phone><![CDATA[(02) 6102 6000]]></phone>
+<email><![CDATA[enquiries@nwc.gov.au]]></email>
+<postalAddress><![CDATA[95 Northbourne Avenue Canberra  ACT  2600]]></postalAddress>
+<id><![CDATA[8bc0eef0-903b-49e3-bed5-8e8365a5595a]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110330110804.367+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport488.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f8d3e86c-47f5-48f4-91cc-d675abe0dca5]]></websiteURI>
+<dn><![CDATA[ou=Navy,ou=Department of Defence,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Navy]]></name>
+<id><![CDATA[f8d3e86c-47f5-48f4-91cc-d675abe0dca5]]></id>
+<category>N</category>
+<lastModified><![CDATA[20100624173752.656+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport489.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&69c0c10b-8646-4d4e-b062-1f644015bb19]]></websiteURI>
+<dn><![CDATA[ou=Northern Territory Fisheries Joint Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Northern Territory Fisheries Joint Authority]]></name>
+<shortName><![CDATA[NTFJA]]></shortName>
+<phone><![CDATA[(08) 8999 2144]]></phone>
+<postalAddress><![CDATA[GPO Box 3000, Darwin NT 0801]]></postalAddress>
+<id><![CDATA[69c0c10b-8646-4d4e-b062-1f644015bb19]]></id>
+<category>N</category>
+<lastModified><![CDATA[20110330171443.353+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport490.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7db9d29d-5444-45c2-8ed3-795e8324e400]]></websiteURI>
+<dn><![CDATA[ou=Northern Territory Land Councils,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Northern Territory Land Councils]]></name>
+<shortName><![CDATA[ALC]]></shortName>
+<phone><![CDATA[(08) 8981 1799]]></phone>
+<postalAddress><![CDATA[GPO Box 2289, Darwin NT 0801]]></postalAddress>
+<id><![CDATA[7db9d29d-5444-45c2-8ed3-795e8324e400]]></id>
+<category>N</category>
+<lastModified><![CDATA[20090203143546.949+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport491.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&8c49fd67-47de-4add-b7c5-f4a7c596a74f]]></websiteURI>
+<dn><![CDATA[ou=Office of Best Practice Regulation,ou=Deregulation Group,ou=Central Office,ou=Department of Finance and Deregulation,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of Best Practice Regulation]]></name>
+<shortName><![CDATA[OBPR]]></shortName>
+<id><![CDATA[8c49fd67-47de-4add-b7c5-f4a7c596a74f]]></id>
+<category>O</category>
+<lastModified><![CDATA[20100430112435.104+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport492.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&39e54c6f-4929-4df6-b4fc-3d172faf7265]]></websiteURI>
+<dn><![CDATA[ou=Office of National Assessments,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of National Assessments]]></name>
+<shortName><![CDATA[ONA]]></shortName>
+<phone><![CDATA[(02) 6266 0900]]></phone>
+<postalAddress><![CDATA[Locked Bag 6310, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[39e54c6f-4929-4df6-b4fc-3d172faf7265]]></id>
+<category>O</category>
+<lastModified><![CDATA[20110727111504.549+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport493.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f126a1b5-7c88-4875-ae1a-3fe64ab3098e]]></websiteURI>
+<dn><![CDATA[ou=Office of Parliamentary Counsel,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of Parliamentary Counsel]]></name>
+<shortName><![CDATA[OPC]]></shortName>
+<phone><![CDATA[(02) 6270 1400]]></phone>
+<email><![CDATA[first name.last name@opc.gov.au (all lower case)]]></email>
+<postalAddress><![CDATA[Locked Bag 30, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[f126a1b5-7c88-4875-ae1a-3fe64ab3098e]]></id>
+<category>O</category>
+<lastModified><![CDATA[20111220161428.026+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport494.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&383f3e0e-7c64-4c61-902f-2818b923f12c]]></websiteURI>
+<dn><![CDATA[ou=Office of the Australian Information Commissioner,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Attorney-General,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of the Australian Information Commissioner]]></name>
+<shortName><![CDATA[OAIC]]></shortName>
+<phone><![CDATA[1300 363 992]]></phone>
+<email><![CDATA[enquiries@oaic.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 5218, Sydney NSW 2001 or GPO Box 2999, Canberra City, ACT, 2601]]></postalAddress>
+<id><![CDATA[383f3e0e-7c64-4c61-902f-2818b923f12c]]></id>
+<category>O</category>
+<lastModified><![CDATA[20111101133127.647+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport495.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&25178be1-d1b7-4225-9ff4-6681b56996b5]]></websiteURI>
+<dn><![CDATA[ou=Office of the Inspector of Transport Security,ou=Department of Infrastructure and Transport,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of the Inspector of Transport Security]]></name>
+<phone><![CDATA[(02) 6274 7111]]></phone>
+<email><![CDATA[publicaffairs@infrastructure.gov.au]]></email>
+<postalAddress><![CDATA[Office of the Inspector of Transport Security, Department of Infrastructure and Transport, GPO Box 594, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[25178be1-d1b7-4225-9ff4-6681b56996b5]]></id>
+<category>O</category>
+<lastModified><![CDATA[20100922152119.929+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport496.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&492a6640-49e5-44de-9275-62e97b37964e]]></websiteURI>
+<dn><![CDATA[ou=Office of the Productivity Commission,ou=Productivity Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of the Productivity Commission]]></name>
+<id><![CDATA[492a6640-49e5-44de-9275-62e97b37964e]]></id>
+<category>O</category>
+<lastModified><![CDATA[20110921115425.337+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport497.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&90b98793-9b54-4292-9f4e-ee5bd08070d8]]></websiteURI>
+<dn><![CDATA[ou=Office of the Renewable Energy Regulator,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Climate Change and Energy Efficiency,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of the Renewable Energy Regulator]]></name>
+<phone><![CDATA[(02) 6159 7700]]></phone>
+<email><![CDATA[orer@orer.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 621, Canberra  ACT 2601]]></postalAddress>
+<id><![CDATA[90b98793-9b54-4292-9f4e-ee5bd08070d8]]></id>
+<category>O</category>
+<lastModified><![CDATA[20100512163032.525+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport498.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3b0d33a3-2bd5-4986-a68c-c3d5a6098eab]]></websiteURI>
+<dn><![CDATA[ou=Office of the Secretary and Chief of the Defence Force,ou=Department of Defence,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of the Secretary and Chief of the Defence Force]]></name>
+<id><![CDATA[3b0d33a3-2bd5-4986-a68c-c3d5a6098eab]]></id>
+<category>O</category>
+<lastModified><![CDATA[20111209104650.794+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport499.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&19d3d2a8-c025-47f1-a5b6-012c5684ebe8]]></websiteURI>
+<dn><![CDATA[ou=Office of Transport Security,ou=Department of Infrastructure and Transport,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Office of Transport Security]]></name>
+<phone><![CDATA[(02) 6274 7111]]></phone>
+<email><![CDATA[publicaffairs@infrastructure.gov.au]]></email>
+<postalAddress><![CDATA[Office of Transport Security, Department of Infrastructure and Transport, GPO Box 594, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[19d3d2a8-c025-47f1-a5b6-012c5684ebe8]]></id>
+<category>O</category>
+<lastModified><![CDATA[20100922174515.679+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport500.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&a22840c7-cfa3-48a9-8d5a-202c7cae1ea0]]></websiteURI>
+<dn><![CDATA[ou=Official Establishments Trust,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Official Establishments Trust]]></name>
+<shortName><![CDATA[OTE]]></shortName>
+<phone><![CDATA[(02) 6271 6086]]></phone>
+<postalAddress><![CDATA[c/- Department of the Prime Minister and Cabinet, 1 National Circuit, Barton ACT 2600]]></postalAddress>
+<id><![CDATA[a22840c7-cfa3-48a9-8d5a-202c7cae1ea0]]></id>
+<category>O</category>
+<lastModified><![CDATA[20111108143001.958+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport501.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ff3d8352-7e9b-48d2-a79f-68bbaf770cc0]]></websiteURI>
+<dn><![CDATA[ou=Parliamentary Retiring Allowances Trust,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Finance and Deregulation,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Parliamentary Retiring Allowances Trust]]></name>
+<shortName><![CDATA[PRAT]]></shortName>
+<phone><![CDATA[(02) 6215 3656]]></phone>
+<postalAddress><![CDATA[John Gorton Building, King Edward Terrace, PARKES ACT 2600]]></postalAddress>
+<id><![CDATA[ff3d8352-7e9b-48d2-a79f-68bbaf770cc0]]></id>
+<category>P</category>
+<lastModified><![CDATA[20110330152135.849+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport502.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&60f0b281-f841-4bbd-b919-7b364ae1e8b1]]></websiteURI>
+<dn><![CDATA[ou=Policy and Research,ou=Department of Infrastructure and Transport,o=Infrastructure and Transport,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Policy and Research]]></name>
+<phone><![CDATA[(02) 6274 7111]]></phone>
+<email><![CDATA[publicaffairs@infrastructure.gov.au]]></email>
+<postalAddress><![CDATA[Policy and Resarch, Department of Infrastructure and Transport, GPO Box 594, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[60f0b281-f841-4bbd-b919-7b364ae1e8b1]]></id>
+<category>P</category>
+<lastModified><![CDATA[20110228134551.661+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport503.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3fdcbc1e-bfb6-4c52-b03f-88c45ccda555]]></websiteURI>
+<dn><![CDATA[ou=Produce and Grocery Industry Ombudsman,ou=Department of Agriculture\, Fisheries and Forestry,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Produce and Grocery Industry Ombudsman]]></name>
+<phone><![CDATA[1800 206 385]]></phone>
+<email><![CDATA[info@produceandgroceryombudsman.com.au]]></email>
+<id><![CDATA[3fdcbc1e-bfb6-4c52-b03f-88c45ccda555]]></id>
+<category>P</category>
+<lastModified><![CDATA[20111110150457.259+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport504.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&7998598c-6b7b-4978-b39b-c46be1c68ab2]]></websiteURI>
+<dn><![CDATA[ou=Productivity Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Productivity Commission]]></name>
+<phone><![CDATA[(03) 9653 2100]]></phone>
+<email><![CDATA[maps@pc.gov.au]]></email>
+<postalAddress><![CDATA[Locked Bag 2, Collins St East, Melbourne Vic 8003]]></postalAddress>
+<id><![CDATA[7998598c-6b7b-4978-b39b-c46be1c68ab2]]></id>
+<category>P</category>
+<lastModified><![CDATA[20110921133519.211+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport505.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&ed891765-dd6f-4164-8dbd-439045cf5c7b]]></websiteURI>
+<dn><![CDATA[ou=Queensland Fisheries Joint Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Queensland Fisheries Joint Authority]]></name>
+<shortName><![CDATA[QFJA]]></shortName>
+<phone><![CDATA[(07) 3225 1843]]></phone>
+<postalAddress><![CDATA[GPO Box 46, Brisbane QLD 4001]]></postalAddress>
+<id><![CDATA[ed891765-dd6f-4164-8dbd-439045cf5c7b]]></id>
+<category>Q</category>
+<lastModified><![CDATA[20110321172653.326+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport506.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&091508a8-c7d6-42e7-a5f7-8c0765573707]]></websiteURI>
+<dn><![CDATA[ou=Questacon - The National Science and Technology Centre,ou=Central Office,ou=Department of Industry\, Innovation\, Science\, Research and Tertiary Education,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Questacon - The National Science and Technology Centre]]></name>
+<shortName><![CDATA[NSTC]]></shortName>
+<phone><![CDATA[(02) 6270 2800]]></phone>
+<email><![CDATA[info@questacon.edu.au]]></email>
+<postalAddress><![CDATA[PO Box 5322, Kingston  ACT 2604]]></postalAddress>
+<id><![CDATA[091508a8-c7d6-42e7-a5f7-8c0765573707]]></id>
+<category>Q</category>
+<lastModified><![CDATA[20110321145851.549+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport507.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e206ac59-2055-45a5-b183-fbad6fcec1d5]]></websiteURI>
+<dn><![CDATA[ou=RAAF Veterans' Residences Trust,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[RAAF Veterans' Residences Trust]]></name>
+<shortName><![CDATA[RAAFVRT]]></shortName>
+<phone><![CDATA[(03) 9256 0002]]></phone>
+<email><![CDATA[raaf.vrt@defence.gov.au]]></email>
+<postalAddress><![CDATA[Ground Floor Building L474, Thorn Circle, RAAF Williams, LAVERTON VIC 3027]]></postalAddress>
+<id><![CDATA[e206ac59-2055-45a5-b183-fbad6fcec1d5]]></id>
+<category>R</category>
+<lastModified><![CDATA[20110317121810.277+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport508.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&430d4729-6dac-420f-8cad-f0778708ef01]]></websiteURI>
+<dn><![CDATA[ou=RAAF Welfare Trust Fund,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[RAAF Welfare Trust Fund]]></name>
+<shortName><![CDATA[RWTF]]></shortName>
+<phone><![CDATA[(02) 6128 7626]]></phone>
+<postalAddress><![CDATA[RAAF Welfare Trust Fund, F4-2-120, PO Box 7933, Canberra BC ACT 2610]]></postalAddress>
+<id><![CDATA[430d4729-6dac-420f-8cad-f0778708ef01]]></id>
+<category>R</category>
+<lastModified><![CDATA[20111206120036.958+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport509.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e029e21c-6ae5-4e67-856c-543177e9d852]]></websiteURI>
+<dn><![CDATA[ou=Refugee Review Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Immigration and Citizenship,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Refugee Review Tribunal]]></name>
+<shortName><![CDATA[RRT]]></shortName>
+<phone><![CDATA[(02) 9276 5000]]></phone>
+<email><![CDATA[enquiries@mrt-rrt.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 1333, Sydney  NSW  2001]]></postalAddress>
+<id><![CDATA[e029e21c-6ae5-4e67-856c-543177e9d852]]></id>
+<category>R</category>
+<lastModified><![CDATA[20120106120726.830+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport510.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&76d08e18-a876-4b60-a1de-ce349df39a50]]></websiteURI>
+<dn><![CDATA[ou=Remuneration Tribunal Secretariat,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Remuneration Tribunal Secretariat]]></name>
+<shortName><![CDATA[RT]]></shortName>
+<phone><![CDATA[(02) 6202 3930]]></phone>
+<email><![CDATA[enquiry@remtribunal.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 281, Civic Square ACT 2608]]></postalAddress>
+<id><![CDATA[76d08e18-a876-4b60-a1de-ce349df39a50]]></id>
+<category>R</category>
+<lastModified><![CDATA[20110817121735.844+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport511.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&d9f01473-4817-4157-9f7b-ee63fc165ab6]]></websiteURI>
+<dn><![CDATA[ou=Repatriation Medical Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,ou=Department of Veterans' Affairs,o=Defence,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Repatriation Medical Authority]]></name>
+<shortName><![CDATA[RMA]]></shortName>
+<phone><![CDATA[(07) 3815 9404]]></phone>
+<postalAddress><![CDATA[GPO Box 1014, Brisbane, QLD 4001]]></postalAddress>
+<id><![CDATA[d9f01473-4817-4157-9f7b-ee63fc165ab6]]></id>
+<category>R</category>
+<lastModified><![CDATA[20120213163842.651+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport512.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&4af07b1f-a4c8-4e71-b826-f6948434aa40]]></websiteURI>
+<dn><![CDATA[ou=Reserve Bank of Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Reserve Bank of Australia]]></name>
+<shortName><![CDATA[RBA]]></shortName>
+<phone><![CDATA[(02) 9551 8111]]></phone>
+<email><![CDATA[rbainfo@rba.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 3947, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[4af07b1f-a4c8-4e71-b826-f6948434aa40]]></id>
+<category>R</category>
+<lastModified><![CDATA[20120216100529.972+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport513.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&5b1fedf9-5330-4707-ac1a-b28373d5457f]]></websiteURI>
+<dn><![CDATA[ou=Resource Sharing Division,ou=National Library of Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Resource Sharing Division]]></name>
+<id><![CDATA[5b1fedf9-5330-4707-ac1a-b28373d5457f]]></id>
+<category>R</category>
+<lastModified><![CDATA[20110913095847.625+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport514.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&3810c59f-5f10-4eaf-a5a8-e96223f4df08]]></websiteURI>
+<dn><![CDATA[ou=Royal Australian Mint,ou=Markets Group,ou=Central Office,ou=The Treasury,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Royal Australian Mint]]></name>
+<shortName><![CDATA[The Mint]]></shortName>
+<phone><![CDATA[(02) 6202 6999]]></phone>
+<postalAddress><![CDATA[Royal Australian Mint, Locked Bag 31, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[3810c59f-5f10-4eaf-a5a8-e96223f4df08]]></id>
+<category>R</category>
+<lastModified><![CDATA[20111220173712.145+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport515.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&c34f3508-81f4-4fab-a6ff-e82bfe59993e]]></websiteURI>
+<dn><![CDATA[ou=Rural Industries Research and Development Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Rural Industries Research and Development Corporation]]></name>
+<shortName><![CDATA[RIRDC]]></shortName>
+<phone><![CDATA[(02) 6271 4100]]></phone>
+<email><![CDATA[rirdc@rirdc.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 4776, Kingston ACT 2604]]></postalAddress>
+<id><![CDATA[c34f3508-81f4-4fab-a6ff-e82bfe59993e]]></id>
+<category>R</category>
+<lastModified><![CDATA[20110324170739.422+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport516.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&9ff2ad00-6eb4-416d-8cbc-b5235d0e6a09]]></websiteURI>
+<dn><![CDATA[ou=Safe Work Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Safe Work Australia]]></name>
+<phone><![CDATA[(02) 6121 5317]]></phone>
+<email><![CDATA[info@safeworkaustralia.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 641 ACT 2601]]></postalAddress>
+<id><![CDATA[9ff2ad00-6eb4-416d-8cbc-b5235d0e6a09]]></id>
+<category>S</category>
+<lastModified><![CDATA[20110317122818.521+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport517.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&bd040744-02a3-46b7-9fdc-10c6a3a9599f]]></websiteURI>
+<dn><![CDATA[ou=Safety\, Rehabilitation and Compensation Commission,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Safety, Rehabilitation and Compensation Commission]]></name>
+<shortName><![CDATA[SRCC]]></shortName>
+<postalAddress><![CDATA[GPO Box 9905 Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[bd040744-02a3-46b7-9fdc-10c6a3a9599f]]></id>
+<category>S</category>
+<lastModified><![CDATA[20110324164912.121+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport518.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&82c7eb3e-8f72-4999-af08-0b7f20f5efad]]></websiteURI>
+<dn><![CDATA[ou=Screen Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Prime Minister and Cabinet,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Screen Australia]]></name>
+<shortName><![CDATA[SA]]></shortName>
+<phone><![CDATA[(02) 8113 5800]]></phone>
+<email><![CDATA[info@screenaustralia.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 3984, Sydney NSW 2001]]></postalAddress>
+<id><![CDATA[82c7eb3e-8f72-4999-af08-0b7f20f5efad]]></id>
+<category>S</category>
+<lastModified><![CDATA[20101116083929.306+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport519.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&4589c283-170f-42d2-98a1-f9b9ecde0fea]]></websiteURI>
+<dn><![CDATA[ou=Seafarers Safety\, Rehabilitation and Compensation Authority (Seacare Authority),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Seafarers Safety, Rehabilitation and Compensation Authority (Seacare Authority)]]></name>
+<shortName><![CDATA[SSRCA]]></shortName>
+<phone><![CDATA[1300 366 979 or (02) 6275 0070]]></phone>
+<email><![CDATA[seacare@comcare.gov.au]]></email>
+<postalAddress><![CDATA[GPO Box 9905, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[4589c283-170f-42d2-98a1-f9b9ecde0fea]]></id>
+<category>S</category>
+<lastModified><![CDATA[20110317123955.600+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport520.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&8211271a-bd28-446f-a2cf-2b074a928ea7]]></websiteURI>
+<dn><![CDATA[ou=Small Business Support Line,ou=AusIndustry,ou=Central Office,ou=Department of Industry\, Innovation\, Science\, Research and Tertiary Education,o=Innovation And Industry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Small Business Support Line]]></name>
+<phone><![CDATA[1800 777 275 - 8.00am - 8.00pm (ADST)]]></phone>
+<id><![CDATA[8211271a-bd28-446f-a2cf-2b074a928ea7]]></id>
+<category>S</category>
+<lastModified><![CDATA[20110527150917.985+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport521.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e0b429b5-4809-4179-9649-5f138c46a836]]></websiteURI>
+<dn><![CDATA[ou=Social Security Appeals Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Social Security Appeals Tribunal]]></name>
+<shortName><![CDATA[SSAT]]></shortName>
+<phone><![CDATA[1800 011 140]]></phone>
+<email><![CDATA[info@ssat.gov.au]]></email>
+<id><![CDATA[e0b429b5-4809-4179-9649-5f138c46a836]]></id>
+<category>S</category>
+<lastModified><![CDATA[20110509093836.905+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport522.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&204e9024-df48-4336-9e9e-068fef5f271b]]></websiteURI>
+<dn><![CDATA[ou=Special Broadcasting Service Corporation (SBS),ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Broadband\, Communications and the Digital Economy,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Special Broadcasting Service Corporation (SBS)]]></name>
+<shortName><![CDATA[SBS]]></shortName>
+<phone><![CDATA[(02) 9430 2828]]></phone>
+<postalAddress><![CDATA[Locked Bag 028, Crows Nest NSW 1585]]></postalAddress>
+<id><![CDATA[204e9024-df48-4336-9e9e-068fef5f271b]]></id>
+<category>S</category>
+<lastModified><![CDATA[20120104113006.798+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport523.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&524c9f2e-c839-4bc5-9725-b3b248cfb89d]]></websiteURI>
+<dn><![CDATA[ou=Statutory Fishing Rights Allocation Review Panel,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Statutory Fishing Rights Allocation Review Panel]]></name>
+<shortName><![CDATA[SFRARP]]></shortName>
+<phone><![CDATA[(02) 6272 3036]]></phone>
+<postalAddress><![CDATA[GPO Box 858, Canberra ACT 2601]]></postalAddress>
+<id><![CDATA[524c9f2e-c839-4bc5-9725-b3b248cfb89d]]></id>
+<category>S</category>
+<lastModified><![CDATA[20110324171821.833+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport524.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&54c4c38d-7cf1-40ba-8159-168e3a9b531a]]></websiteURI>
+<dn><![CDATA[ou=Sugar Research and Development Corporation,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Sugar Research and Development Corporation]]></name>
+<shortName><![CDATA[SRDC]]></shortName>
+<phone><![CDATA[(07) 3210 0495]]></phone>
+<email><![CDATA[srdc@srdc.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 12050, George St. Brisbane, Qld 4003]]></postalAddress>
+<id><![CDATA[54c4c38d-7cf1-40ba-8159-168e3a9b531a]]></id>
+<category>S</category>
+<lastModified><![CDATA[20110330152718.966+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport525.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&66db96c7-d8c3-478b-a984-61fe68dc46ba]]></websiteURI>
+<dn><![CDATA[ou=Superannuation Complaints Tribunal,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Superannuation Complaints Tribunal]]></name>
+<shortName><![CDATA[SCT]]></shortName>
+<phone><![CDATA[1300 884 114]]></phone>
+<email><![CDATA[info@sct.gov.au]]></email>
+<postalAddress><![CDATA[Locked Bag 3060, Melbourne Vic 3001]]></postalAddress>
+<id><![CDATA[66db96c7-d8c3-478b-a984-61fe68dc46ba]]></id>
+<category>S</category>
+<lastModified><![CDATA[20100921132128.094+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport526.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&089b19d0-b376-4599-aece-d1d5bf954689]]></websiteURI>
+<dn><![CDATA[ou=Supreme Court of Christmas Island,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Supreme Court of Christmas Island]]></name>
+<phone><![CDATA[(08) 9164 7901]]></phone>
+<postalAddress><![CDATA[c/- Department of Infrastructure, Transport, Regional Development and Local Government, PO Box 868, Christmas Island, Indian Ocean 6798]]></postalAddress>
+<id><![CDATA[089b19d0-b376-4599-aece-d1d5bf954689]]></id>
+<category>S</category>
+<lastModified><![CDATA[20100624173841.621+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport527.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&15d33980-af6f-4942-afab-999650bf6ca2]]></websiteURI>
+<dn><![CDATA[ou=Supreme Court of Norfolk Island,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Supreme Court of Norfolk Island]]></name>
+<phone><![CDATA[0011 672 3 23691]]></phone>
+<id><![CDATA[15d33980-af6f-4942-afab-999650bf6ca2]]></id>
+<category>S</category>
+<lastModified><![CDATA[20100624173755.287+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport528.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&f16843a3-204b-4e85-a37b-f42f083cbcd9]]></websiteURI>
+<dn><![CDATA[ou=Supreme Court of the Cocos (Keeling) Islands,o=Courts,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Supreme Court of the Cocos (Keeling) Islands]]></name>
+<phone><![CDATA[(08) 9162 6600]]></phone>
+<email><![CDATA[cocosadmin@afp.gov.au]]></email>
+<postalAddress><![CDATA[c/- Australian Federal Police, Cocos (Keeling) Islands, Indian Ocean 6799]]></postalAddress>
+<id><![CDATA[f16843a3-204b-4e85-a37b-f42f083cbcd9]]></id>
+<category>S</category>
+<lastModified><![CDATA[20100624173839.777+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport529.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&83a79cf2-405c-4a26-a52c-f7823ef866ea]]></websiteURI>
+<dn><![CDATA[ou=Sydney Harbour Federation Trust,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Sustainability\, Environment\, Water\, Population and Communities,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Sydney Harbour Federation Trust]]></name>
+<phone><![CDATA[(02) 8969 2100]]></phone>
+<email><![CDATA[info@harbourtrust.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 607, Mosman  NSW 2088]]></postalAddress>
+<id><![CDATA[83a79cf2-405c-4a26-a52c-f7823ef866ea]]></id>
+<category>S</category>
+<lastModified><![CDATA[20110218132817.959+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport530.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&702cad9b-0d4c-4f38-b8ad-db211c5266bb]]></websiteURI>
+<dn><![CDATA[ou=The Australian Learning and Teaching Council,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Education\, Employment and Workplace Relations,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[The Australian Learning and Teaching Council]]></name>
+<phone><![CDATA[(02) 8667 8500]]></phone>
+<email><![CDATA[info@altc.edu.au]]></email>
+<postalAddress><![CDATA[PO Box 2375, Strawberry Hills NSW  2012]]></postalAddress>
+<id><![CDATA[702cad9b-0d4c-4f38-b8ad-db211c5266bb]]></id>
+<category>T</category>
+<lastModified><![CDATA[20090203123050.033+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport531.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&fe46f534-4361-4d1b-b639-ceeafad155fe]]></websiteURI>
+<dn><![CDATA[ou=The Governor-General,o=Governor-General and Commander-in-Chief,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[The Governor-General]]></name>
+<phone><![CDATA[(02) 6283 3533]]></phone>
+<id><![CDATA[fe46f534-4361-4d1b-b639-ceeafad155fe]]></id>
+<category>T</category>
+<lastModified><![CDATA[20080905135604.767+1000]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport532.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&de8e04a8-969d-4459-9e78-6564673c4769]]></websiteURI>
+<dn><![CDATA[ou=The Treasury,o=Treasury,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[The Treasury]]></name>
+<shortName><![CDATA[Treasury]]></shortName>
+<phone><![CDATA[(02) 6263 2111]]></phone>
+<id><![CDATA[de8e04a8-969d-4459-9e78-6564673c4769]]></id>
+<category>T</category>
+<lastModified><![CDATA[20111220173712.735+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport533.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&8cf41d39-610d-43c9-9472-ed02e1969a27]]></websiteURI>
+<dn><![CDATA[ou=Therapeutic Goods Administration,ou=Department of Health and Ageing,o=Health and Ageing,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Therapeutic Goods Administration]]></name>
+<shortName><![CDATA[TGA]]></shortName>
+<phone><![CDATA[(02) 6232 8444]]></phone>
+<email><![CDATA[info@tga.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 100, Woden ACT 2606]]></postalAddress>
+<id><![CDATA[8cf41d39-610d-43c9-9472-ed02e1969a27]]></id>
+<category>T</category>
+<lastModified><![CDATA[20110317161930.102+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport534.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&fcf60be1-fca7-4b1c-8c1e-80ac8b79b912]]></websiteURI>
+<dn><![CDATA[ou=Torres Strait Protected Zone Joint Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Torres Strait Protected Zone Joint Authority]]></name>
+<shortName><![CDATA[TSPZJA]]></shortName>
+<postalAddress><![CDATA[Box 7051, Canberra Mail Centre ACT 2610]]></postalAddress>
+<id><![CDATA[fcf60be1-fca7-4b1c-8c1e-80ac8b79b912]]></id>
+<category>T</category>
+<lastModified><![CDATA[20110318154457.000+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport535.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&72808844-b6e5-432d-af52-bd40d56f0475]]></websiteURI>
+<dn><![CDATA[ou=Torres Strait Regional Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Families\, Housing\, Community Services and Indigenous Affairs,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Torres Strait Regional Authority]]></name>
+<shortName><![CDATA[TSRA]]></shortName>
+<phone><![CDATA[(07) 4069 0700 or toll free 1800 079 093]]></phone>
+<email><![CDATA[info@tsra.gov.au]]></email>
+<postalAddress><![CDATA[PO Box 261, Thursday Island QLD 4875]]></postalAddress>
+<id><![CDATA[72808844-b6e5-432d-af52-bd40d56f0475]]></id>
+<category>T</category>
+<lastModified><![CDATA[20090203143009.811+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport536.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&e47dbafc-02d4-4b38-8ecc-85742c2853c9]]></websiteURI>
+<dn><![CDATA[ou=Tourism Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Resources\, Energy and Tourism,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Tourism Australia]]></name>
+<shortName><![CDATA[TA]]></shortName>
+<phone><![CDATA[(02) 9360 1111]]></phone>
+<email><![CDATA[ask.us@tourism.australia.com]]></email>
+<postalAddress><![CDATA[GPO Box 2721, Sydney NSW 1006]]></postalAddress>
+<id><![CDATA[e47dbafc-02d4-4b38-8ecc-85742c2853c9]]></id>
+<category>T</category>
+<lastModified><![CDATA[20101208150425.754+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport537.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&989ee65e-1eba-42b9-b49f-11fedcf2e31a]]></websiteURI>
+<dn><![CDATA[ou=Western Australian Fisheries Joint Authority,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Western Australian Fisheries Joint Authority]]></name>
+<shortName><![CDATA[WAFJA]]></shortName>
+<phone><![CDATA[(08) 9482 7333]]></phone>
+<id><![CDATA[989ee65e-1eba-42b9-b49f-11fedcf2e31a]]></id>
+<category>W</category>
+<lastModified><![CDATA[20110316164329.240+1100]]></lastModified>
+</department>
+<department>
+<reportURI><![CDATA[http://www.directory.gov.au/reports/department/subreport538.rtf]]></reportURI>
+<websiteURI><![CDATA[/directory?ea0_lfz99_120.&&18ef3546-236d-4613-a589-bca97c9142ea]]></websiteURI>
+<dn><![CDATA[ou=Wheat Exports Australia,ou=Other Portfolio Bodies\, Committees\, Boards and Councils,o=Agriculture\, Fisheries and Forestry,o=Portfolios,o=Commonwealth of Australia,c=AU]]></dn>
+<name><![CDATA[Wheat Exports Australia]]></name>
+<shortName><![CDATA[WEA]]></shortName>
+<phone><![CDATA[(02) 6202 3400]]></phone>
+<email><![CDATA[secretariat@wea.gov.au]]></email>
+<id><![CDATA[18ef3546-236d-4613-a589-bca97c9142ea]]></id>
+<category>W</category>
+<lastModified><![CDATA[20100624173913.063+1000]]></lastModified>
+</department>
+</entryList>
 

--- a/getAgency.php
+++ b/getAgency.php
@@ -14,10 +14,10 @@
             echo "<ol>";
             foreach ($value as $subkey => $subvalue) {
                 if (isset($schemas['agency']["properties"][$key]['x-property'])) {
-                echo '<li property="' . $schemas['agency']["properties"][$key]['x-property'] . '">';
-            } else {
-                echo "<li>";
-            }
+                    echo '<li property="' . $schemas['agency']["properties"][$key]['x-property'] . '">';
+                } else {
+                    echo "<li>";
+                }
                 echo "$subvalue</li>";
             }
             echo "</ol></td></tr>";
@@ -27,11 +27,11 @@
             } else {
                 echo "<span>";
             }
-              if ((strpos($key, "URL") > 0 || $key == 'website') && $value != "") {
-                    echo "<a href='$value'>view</a></span>";
-                } else {
-            echo "$value</span>";
-                }
+            if ((strpos($key, "URL") > 0 || $key == 'website') && $value != "") {
+                echo "<a href='$value'>view</a></span>";
+            } else {
+                echo "$value</span>";
+            }
         }
         echo "</td></tr>";
     }
@@ -53,12 +53,12 @@
             } else if ($key == "parentOrg") {
                 echo "<label for='$key'>$key</label><select  id='$key' name='$key'><option value=''> Select... </option>";
                 $rows = $db->get_view("app", "byDeptStateName")->rows;
-                //print_r($rows);
+//print_r($rows);
                 foreach ($rows as $row) {
                     echo "<option value='{$row->value}'" . (($row->value == $value) ? "SELECTED" : "") . " >" . str_replace("Department of ", "", $row->key) . "</option>";
                 }
                 echo" </select>";
-              } else {
+            } else {
                 echo "<label>$key</label><input  class='input-text' type='text' id='$key' name='$key' value='$value'/>";
                 if ((strpos($key, "URL") > 0 || $key == 'website') && $value != "") {
                     echo "<a href='$value'>view</a>";
@@ -69,7 +69,7 @@
             }
         }
     }
-    // 
+// 
 }
 
 function addDefaultFields($row) {
@@ -78,13 +78,17 @@
     foreach ($defaultFields as $defaultField) {
         if (!isset($row[$defaultField])) {
             if ($schemas['agency']['properties'][$defaultField]['type'] == "string") {
-               
-                    $row[$defaultField] = "";
-            
+                $row[$defaultField] = "";
             }
             if ($schemas['agency']['properties'][$defaultField]['type'] == "array") {
-
                 $row[$defaultField] = Array("");
+            }
+        } else if ($schemas['agency']['properties'][$defaultField]['type'] == "array") {
+            if (is_array($row[$defaultField])) {
+                $row[$defaultField][] = "";
+            } else {
+                $value = $row[$defaultField];
+                $row[$defaultField] = Array($value);
             }
         }
     }
@@ -94,20 +98,28 @@
 $db = $server->get_db('disclosr-agencies');
 
 if (isset($_REQUEST['id'])) {
-    //get an agency record as json/html, search by name/abn/id
+//get an agency record as json/html, search by name/abn/id
 // by name = startkey="Ham"&endkey="Ham\ufff0"
 // edit?
 
     $row = $db->get($_REQUEST['id']);
-    //print_r($row);
+//print_r($row);
     if (sizeof($_POST) > 0) {
-        //print_r($_POST);
+//print_r($_POST);
         foreach ($_POST as $postkey => $postvalue) {
             if ($postvalue == "") {
                 unset($_POST[$postkey]);
             }
-            if (is_array($postvalue) && count($postvalue) == 1 && $postvalue[0] == "") {
-                unset($_POST[$postkey]);
+            if (is_array($postvalue)) {
+                if (count($postvalue) == 1 && $postvalue[0] == "") {
+                    unset($_POST[$postkey]);
+                } else {
+                    foreach ($_POST[$postkey] as $key => &$value) {
+                        if ($value == "") {
+                            unset($_POST[$postkey][$key]);
+                        }
+                    }
+                }
             }
         }
         if (isset($_POST['_id']) && $db->get_rev($_POST['_id']) == $_POST['_rev']) {
@@ -124,9 +136,9 @@
     if ($mode == "edit") {
         $row = addDefaultFields(object_to_array($row));
     } else {
-         $row = object_to_array($row);
-    }
-    
+        $row = object_to_array($row);
+    }
+
     if ($mode == "view") {
         echo '<div typeof="schema:GovernmentOrganisation" about="#' . $row['_id'] . '"><table width="100%">';
         echo '<tr> <td colspan="2"><h3>' . $row['name'] . "</h3></td></tr>";
@@ -153,44 +165,44 @@
             };
         </script>
         <form id="editform" class="nice" method="post">
-        <?php
-
-    }
-    foreach ($row as $key => $value) {
-        echo displayValue($key, $value, $mode);
-    }
-    if ($mode == "view") {
-        echo "</table></div>";
-    }
-    if ($mode == "edit") {
-        echo '<input id="submitbutton" type="submit"/></form>';
-    }
-} else {
-
-    try {
-        /* $rows = $db->get_view("app", "showNamesABNs")->rows;
-          //print_r($rows);
-          foreach ($rows as $row) {
-          //   print_r($row);
-          echo '<li><a href="getAgency.php?id=' . $row->key . '">' .
-          (isset($row->value->name) && $row->value->name != "" ? $row->value->name : "NO NAME " . $row->value->abn)
-          . '</a></li>';
-          } */
-        $rows = $db->get_view("app", "byName")->rows;
-        //print_r($rows);
-echo '<ul>';
-        foreach ($rows as $row) {
-            //   print_r($row);
-            echo '<li typeof="schema:GovernmentOrganisation foaf:Organization" about="getAgency.php?id=' . $row->value . '">
+            <?php
+
+        }
+        foreach ($row as $key => $value) {
+            echo displayValue($key, $value, $mode);
+        }
+        if ($mode == "view") {
+            echo "</table></div>";
+        }
+        if ($mode == "edit") {
+            echo '<input id="submitbutton" type="submit"/></form>';
+        }
+    } else {
+
+        try {
+            /* $rows = $db->get_view("app", "showNamesABNs")->rows;
+              //print_r($rows);
+              foreach ($rows as $row) {
+              //   print_r($row);
+              echo '<li><a href="getAgency.php?id=' . $row->key . '">' .
+              (isset($row->value->name) && $row->value->name != "" ? $row->value->name : "NO NAME " . $row->value->abn)
+              . '</a></li>';
+              } */
+            $rows = $db->get_view("app", "byName")->rows;
+            //print_r($rows);
+            echo '<ul>';
+            foreach ($rows as $row) {
+                //   print_r($row);
+                echo '<li typeof="schema:GovernmentOrganisation foaf:Organization" about="getAgency.php?id=' . $row->value . '">
 <a href="getAgency.php?id=' . $row->value . '" rel="schema:url foaf:page" property="schema:name foaf:name">' .
-            $row->key
-            . '</a></li>';
-        }
-echo "</ul>";
-    } catch (SetteeRestClientException $e) {
-        setteErrorHandler($e);
-    }
-}
-include_footer();
-?>
-
+                $row->key
+                . '</a></li>';
+            }
+            echo "</ul>";
+        } catch (SetteeRestClientException $e) {
+            setteErrorHandler($e);
+        }
+    }
+    include_footer();
+    ?>
+

directory:b/lib/phpquery (new)
--- /dev/null
+++ b/lib/phpquery

--- a/schemas/agency.json.php
+++ b/schemas/agency.json.php
@@ -17,7 +17,8 @@
         "parentOrg" => Array("type" => "string", "required" => true, "x-title" => "Parent Organisation", "description" => "Parent organisation, usually a department of state"),
         "website" => Array("type" => "string", "required" => true, "x-title" => "Website", "x-property" => "schema:url foaf:homepage", "description" => "Website URL"),
         "abn" => Array("type" => "string", "required" => true, "x-title" => "Australian Business Number", "description" => "ABN from business register"),
-        "contractListURL" => Array("type" => "string", "required" => true, "x-title" => "Contract Listing", "description" => "Departmental and agency contracts, <a href='http://www.aph.gov.au/senate/pubs/standing_orders/d05.htm'>mandated by the Senate</a>"),
+        "contractListURL" => Array("type" => "string", "required" => true,  "x-title" => "Contract Listing", "description" => "Departmental and agency contracts, <a href='http://www.aph.gov.au/senate/pubs/standing_orders/d05.htm'>mandated by the Senate</a>" ),
+        "budgetURL" => Array("type" => "string", "required" => true,"x-title" => "Budget", "description" => "Portfolio Budget Statements and Portfolio Additional Estimates Statements"),
         "grantsReportingURL" => Array("type" => "string", "required" => true, "x-title" => "Grants Awarded",
             "description" => "Departmental and agency grants <a href='http://www.aph.gov.au/senate/pubs/standing_orders/d05.htm'>mandated by the Senate</a> and <a href='http://www.finance.gov.au/publications/fmg-series/23-commonwealth-grant-guidelines.html'>Commonwealth grants guidelines</a> "),
         "annualReportURL" => Array("type" => "string", "required" => true, "x-title" => "Annual Report(s)", "description" => ""),
@@ -32,6 +33,8 @@
         "appointmentsURL" => Array("type" => "string", "required" => true, "x-title" => "Agency Appointments/Boards", "description" => "Departmental and agency appointments and vacancies , <a href='http://www.aph.gov.au/senate/pubs/standing_orders/d05.htm'>mandated by the Senate</a>"),
         "advertisingURL" => Array("type" => "string", "required" => true, "x-title" => "Approved Advertising Campaigns", "description" => " Agency advertising and public information projects, <a href='http://www.aph.gov.au/senate/pubs/standing_orders/d05.htm'>mandated by the Senate</a> "),
         "hasRSS" => Array("type" => "array", "required" => true, "x-title" => "Has RSS", "description" => ""),
+      "hasBlog" => Array("type" => "array", "required" => true, "x-title" => "Has Blog", "description" => ""),
+              "hasMobileApp" => Array("type" => "array", "required" => true, "x-title" => "Has Mobile App", "description" => ""),
         "hasMailingList" => Array("type" => "array", "required" => true, "x-title" => "Has Mailing List", "description" => "",
             "items" => Array("type" => "string")),
         "hasTwitter" => Array("type" => "array", "required" => true, "x-title" => "Has Twitter", "description" => "",

file:a/scrape.py -> file:b/scrape.py
--- a/scrape.py
+++ b/scrape.py
@@ -77,7 +77,7 @@
     print "Fetching %s" % url
     if url.startswith("mailto") or url.startswith("javascript") or url.startswith("#") or url == None or url == "":
 		print "Not a valid HTTP url"
-		return (None,None)
+		return (None,None,None)
     doc = docsdb.get(hash) 
     if doc == None:
 	doc = {'_id': hash, 'agencyID': agencyID, 'url': url, 'fieldName':fieldName}
@@ -86,13 +86,14 @@
 		print "Uh oh, trying to scrape URL again too soon!"
 		last_attachment_fname = doc["_attachments"].keys()[-1]
 		last_attachment = docsdb.get_attachment(doc,last_attachment_fname)
-		return (doc['mime_type'],last_attachment)
+		return (doc['url'],doc['mime_type'],last_attachment)
 	if scrape_again == False:
 		print "Not scraping this URL again as requested"
-		return (None,None)
+		return (None,None,None)
 
     time.sleep(3) # wait 3 seconds to give webserver time to recover
     
+    req.add_header("User-Agent", "Mozilla/4.0 (compatible; Prometheus webspider; owner maxious@lambdacomplex.org)")
     #if there is a previous version stored in couchdb, load caching helper tags
     if doc.has_key('etag'):
         req.add_header("If-None-Match", doc['etag'])
@@ -102,12 +103,14 @@
     opener = urllib2.build_opener(NotModifiedHandler())
     try:
      url_handle = opener.open(req)
+     doc['url'] = url_handle.geturl() # may have followed a redirect to a new url
      headers = url_handle.info() # the addinfourls have the .info() too
      doc['etag'] = headers.getheader("ETag")
      doc['last_modified'] = headers.getheader("Last-Modified") 
      doc['date'] = headers.getheader("Date") 
      doc['page_scraped'] = time.time() 
      doc['web_server'] = headers.getheader("Server") 
+     doc['via'] = headers.getheader("Via") 
      doc['powered_by'] = headers.getheader("X-Powered-By") 
      doc['file_size'] = headers.getheader("Content-Length") 
      content_type = headers.getheader("Content-Type")
@@ -119,13 +122,13 @@
      if hasattr(url_handle, 'code'): 
         if url_handle.code == 304:
             print "the web page has not been modified"
-	    return (None,None)
+	    return (None,None,None)
         else: 
             content = url_handle.read()
 	    docsdb.save(doc)
 	    doc = docsdb.get(hash) # need to get a _rev
 	    docsdb.put_attachment(doc, content, str(time.time())+"-"+os.path.basename(url), doc['mime_type']) 
-	    return (doc['mime_type'], content)
+	    return (doc['url'], doc['mime_type'], content)
 	    #store as attachment epoch-filename
     except urllib2.URLError as e:
     	error = ""
@@ -136,21 +139,22 @@
         print error
 	doc['error'] = error
         docsdb.save(doc)
-        return (None,None)
+        return (None,None,None)
 
 
 
 def scrapeAndStore(docsdb, url, depth, fieldName, agencyID):
-    (mime_type,content) = fetchURL(docsdb, url, fieldName, agencyID)
-    if content != None and depth > 0:
+    (url,mime_type,content) = fetchURL(docsdb, url, fieldName, agencyID)
+    badURLs = ["http://www.ausport.gov.au/supporting/funding/grants_and_scholarships/grant_funding_report"]
+    if content != None and depth > 0 and url != "http://www.ausport.gov.au/supporting/funding/grants_and_scholarships/grant_funding_report":
 	if mime_type == "text/html" or mime_type == "application/xhtml+xml" or mime_type =="application/xml":
             # http://www.crummy.com/software/BeautifulSoup/documentation.html
             soup = BeautifulSoup(content)
-	    navIDs = soup.findAll(id=re.compile('nav|Nav|menu|bar'))
+	    navIDs = soup.findAll(id=re.compile('nav|Nav|menu|bar|left|right|sidebar|more-links|breadcrumb|footer|header'))
 	    for nav in navIDs:
 		print "Removing element", nav['id']
 		nav.extract()
-	    navClasses = soup.findAll(attrs={'class' : re.compile('nav|menu|bar')})
+	    navClasses = soup.findAll(attrs={'class' : re.compile('nav|menu|bar|left|right|sidebar|more-links|breadcrumb|footer|header')})
 	    for nav in navClasses:
 		print "Removing element", nav['class']
 		nav.extract()
@@ -169,7 +173,10 @@
 				# not http
 				None
 			else:
-                		linkurls.add(urljoin(url,link['href'].replace(" ","%20")))
+				# remove anchors and spaces in urls
+				link['href'] = link['href'].replace(" ","%20")
+				link['href'] = re.sub('#.*$','',link['href'])
+                		linkurls.add(urljoin(url,link['href']))
             for linkurl in linkurls:
 		#print linkurl
 		scrapeAndStore(docsdb, linkurl, depth-1, fieldName, agencyID)