From: Maxious Date: Mon, 08 Aug 2011 10:55:08 +0000 Subject: Amendment partial record importer X-Git-Url: http://maxious.lambdacomplex.org/git/?p=contractdashboard.git&a=commitdiff&h=0faa2cf200c634ea12f76f9d1b2ae437d46d2aee --- Amendment partial record importer --- --- /dev/null +++ b/admin/neo4jimporter/.classpath @@ -1,1 +1,11 @@ + + + + + + + + + + --- /dev/null +++ b/admin/neo4jimporter/.project @@ -1,1 +1,24 @@ + + + neo4jimporter + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.m2e.core.maven2Nature + + --- /dev/null +++ b/admin/neo4jimporter/.settings/org.eclipse.jdt.core.prefs @@ -1,1 +1,7 @@ +#Sun Aug 07 18:15:32 EST 2011 +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 +org.eclipse.jdt.core.compiler.compliance=1.5 +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.source=1.5 --- /dev/null +++ b/admin/neo4jimporter/.settings/org.eclipse.m2e.core.prefs @@ -1,1 +1,6 @@ +#Sun Aug 07 18:14:30 EST 2011 +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 --- /dev/null +++ b/admin/neo4jimporter/pom.xml @@ -1,1 +1,18 @@ - + + 4.0.0 + org.lambdacomplex.contractdashboard + neo4jimporter + 0.0.1-SNAPSHOT + + + org.neo4j + neo4j-kernel + 1.4 + + + postgresql + postgresql + 9.0-801.jdbc4 + + + --- /dev/null +++ b/admin/neo4jimporter/src/main/java/Importer.java @@ -1,1 +1,155 @@ +import java.io.ObjectInputStream.GetField; +import java.math.BigInteger; +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; +import java.sql.Connection; +import java.sql.DriverManager; +import java.sql.ResultSet; +import java.sql.SQLException; +import java.sql.SQLWarning; +import java.sql.Statement; +import java.util.HashMap; +import java.util.Map; +import org.neo4j.graphdb.DynamicRelationshipType; +import org.neo4j.kernel.impl.batchinsert.BatchInserter; +import org.neo4j.kernel.impl.batchinsert.BatchInserterImpl; + +public class Importer { + + public static void main(String[] argv) { + + Map props = new HashMap(); + props.put("neostore.nodestore.db.mapped_memory", "22000000"); // + props.put("neostore.relationshipstore.db.mapped_memory", "22000000"); // + // create the batch inserter + BatchInserter inserter = new + BatchInserterImpl("neo4j-db/",props + ); + + + + + + System.out.println("-------- PostgreSQL " + + "JDBC Connection Testing ------------"); + + try { + + Class.forName("org.postgresql.Driver"); + + } catch (ClassNotFoundException e) { + + System.out.println("Where is your PostgreSQL JDBC Driver? " + + "Include in your library path!"); + e.printStackTrace(); + + } + + System.out.println("PostgreSQL JDBC Driver Registered!"); + + Connection conn = null; + + try { + + conn = DriverManager.getConnection( + "jdbc:postgresql://127.0.0.1:5432/contractDashboard", + "postgres", "snmc"); + + } catch (SQLException e) { + + System.out.println("Connection Failed! Check output console"); + e.printStackTrace(); + + } + + if (conn != null) { + System.out.println("You made it, take control your database now!"); + } else { + System.out.println("Failed to make connection!"); + } + try { + // Print all warnings + for (SQLWarning warn = conn.getWarnings(); warn != null; warn = warn + .getNextWarning()) { + System.out.println("SQL Warning:"); + System.out.println("State : " + warn.getSQLState()); + System.out.println("Message: " + warn.getMessage()); + System.out.println("Error : " + warn.getErrorCode()); + } + + // Get a statement from the connection + Statement stmt = conn.createStatement(); + + // Execute the query + ResultSet rs = stmt.executeQuery("SELECT distinct contractnotice.\"agencyName\", contractnotice.\"supplierABN\", contractnotice.\"supplierName\" FROM public.contractnotice limit 300;"); +String previousAgency = ""; + + // Loop through the result set + while (rs.next()) { + long supplier,agency; + agency = doHash(rs.getString("agencyName")); + if (rs.getString("agencyName") != previousAgency) { + if (!inserter.nodeExists(agency)) { + Map properties = new HashMap(); + properties.put("Label", rs.getString("agencyName")); + inserter.createNode(agency, properties); + } + } + if (rs.getString("supplierABN") != "0") { + supplier = doHash(rs.getString("supplierABN")); + } else { + supplier = doHash(rs.getString("supplierName")); + } + // inject some data + if (!inserter.nodeExists(supplier)) { + Map properties = new HashMap(); + + properties.put("Label", rs.getString("supplierName")); + inserter.createNode(supplier, properties); + } + + inserter.createRelationship(agency, supplier, + DynamicRelationshipType.withName("KNOWS"), null); + + } + // Close the result set, statement and the connection + rs.close(); + stmt.close(); + conn.close(); + } catch (SQLException se) { + System.out.println("SQL Exception:"); + + // Loop through the SQL Exceptions + while (se != null) { + System.out.println("State : " + se.getSQLState()); + System.out.println("Message: " + se.getMessage()); + System.out.println("Error : " + se.getErrorCode()); + + se = se.getNextException(); + } + } catch (Exception e) { + System.out.println(e); + } + // shutdown, makes sure all changes are written to disk + inserter.shutdown(); + } + + static long doHash(String input) { + MessageDigest m; + try { + m = MessageDigest.getInstance("MD5"); + m.reset(); + m.update(input.getBytes()); + byte[] digest = m.digest(); + return new BigInteger(1, digest).longValue(); + } catch (NoSuchAlgorithmException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + return 0; + + } + + +} --- /dev/null +++ b/admin/neo4jimporter/src/main/java/JDBCExample.java @@ -1,1 +1,50 @@ - +import java.sql.DriverManager; +import java.sql.Connection; +import java.sql.SQLException; + +public class JDBCExample { + + public static void main(String[] argv) { + + System.out.println("-------- PostgreSQL " + + "JDBC Connection Testing ------------"); + + try { + + Class.forName("org.postgresql.Driver"); + + } catch (ClassNotFoundException e) { + + System.out.println("Where is your PostgreSQL JDBC Driver? " + + "Include in your library path!"); + e.printStackTrace(); + return; + + } + + System.out.println("PostgreSQL JDBC Driver Registered!"); + + Connection connection = null; + + try { + + connection = DriverManager.getConnection( + "jdbc:postgresql://127.0.0.1:5432/contractDashboard", "postgres", + "snmc"); + + } catch (SQLException e) { + + System.out.println("Connection Failed! Check output console"); + e.printStackTrace(); + return; + + } + + if (connection != null) { + System.out.println("You made it, take control your database now!"); + } else { + System.out.println("Failed to make connection!"); + } + } + +} --- /dev/null +++ b/admin/partialdata/01Jan2008to05Jan2008valto.xls @@ -1,1 +1,773 @@ - +Advanced Search + +CN ID Title Agency Publish Date Category Contract Start Date Contract End Date Value (AUD) ATM ID Supplier Name LastUpdated +="CN52633" "Sharepoint Developer" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 02-Jan-08 31-Mar-08 95000.00 ="TRS06/017" ="SME GATEWAY LTD" 02-Jan-08 08:58 AM +="CN52634" "Legal Services Expenditure" ="Department of Transport and Regional Services" 02-Jan-08 ="Legal services" 11-Aug-06 30-Jun-09 19664.70 ="TRS06/175" ="Clayton Utz Canberra" 02-Jan-08 08:58 AM +="CN52635" "Aviation and Airports Funding Review" ="Department of Transport and Regional Services" 02-Jan-08 ="Accounting and auditing" 01-Sep-07 30-Nov-07 102922.47 ="TRS06/037" ="ERNST & YOUNG" 02-Jan-08 08:59 AM +="CN52636" "Server Engineer" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 01-Jan-08 31-Jan-08 17600.00 ="TRS06/017" ="DATA#3 LTD" 02-Jan-08 08:59 AM +="CN52637" "Legal Services Expenditure 6826" ="Department of Transport and Regional Services" 02-Jan-08 ="Legal services" 11-Aug-06 30-Jun-09 148795.59 ="TRS06/175" ="MINTER ELLISON LAWYERS" 02-Jan-08 08:59 AM +="CN52638" "Contract Staff" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 01-Jan-08 30-Jun-08 135300.00 ="T2004/0699" ="Frontier Group" 02-Jan-08 08:59 AM +="CN52639" "2009 Grad recruit advertising" ="Department of Transport and Regional Services" 02-Jan-08 ="Advertising" 31-Oct-07 14-Feb-08 13062.50 ="TRS07/396" ="GRADUATE CAREERS AUSTRALIA LIMITED" 02-Jan-08 08:59 AM +="CN52640" "Contract Admin. & Design Services" ="Department of Transport and Regional Services" 02-Jan-08 ="Environmental management" 23-Nov-07 30-Sep-10 1624740.00 ="TRS06/090" ="GHD Pty Ltd" 02-Jan-08 08:59 AM +="CN52641" "employment for contractor for drafting" ="Department of Transport and Regional Services" 02-Jan-08 ="Graphic design" 03-Dec-07 25-Dec-07 20000.00 ="TRS06/036" ="Morris Walker" 02-Jan-08 08:59 AM +="CN52642" "employment of contractor for editing" ="Department of Transport and Regional Services" 02-Jan-08 ="Graphic design" 03-Dec-07 25-Dec-07 10560.00 ="TRS06/036" ="Cinden Lester Communications" 02-Jan-08 09:00 AM +="CN52643" "Quarterly Airfreight Data Reports" ="Department of Transport and Regional Services" 02-Jan-08 ="Statistics" 18-Dec-07 30-Jun-08 40000.00 ="TRS07/374" ="MARITRADE" 02-Jan-08 09:00 AM +="CN52644" "Cliftons Seminar Arangement" ="Department of Transport and Regional Services" 02-Jan-08 ="Educational facilities" 23-Nov-07 24-Dec-07 11944.90 ="TRS07/107" ="CLIFTONS OPERATIONS PTY LTD" 02-Jan-08 09:00 AM +="CN52645" "Legal Services Expenditure 6887" ="Department of Transport and Regional Services" 02-Jan-08 ="Legal services" 11-Aug-06 30-Jun-09 25740.00 ="TRS06/175" ="PHILLIPS FOX" 02-Jan-08 09:00 AM +="CN52646" "*MARINE - CI DEEP SEA MOORING SYSTEM" ="Department of Transport and Regional Services" 02-Jan-08 ="Prefabricated structures" 18-Dec-07 30-Jun-08 1200000.00 ="TRS07/023" ="THE TRUSTEE FOR BEAVER INDUSTRYUNIT" 02-Jan-08 09:00 AM +="CN52647" "The provision of historic freight rate data to support a review of Tasmanian freight schemes" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 01-Oct-07 28-Feb-08 60995.00 ="TRS07/321" ="Sinclair Knight Merz" 02-Jan-08 09:00 AM +="CN52648" "Software Developer" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 02-Jan-08 30-Jun-08 115000.00 ="T2004/0699" ="Frontier Group" 02-Jan-08 09:00 AM +="CN52649" "Attendendance at Course 15, Australian Rural Leadership Program for sponsored applicant" ="Department of Transport and Regional Services" 02-Jan-08 ="Specialised educational services" 18-Dec-07 31-Dec-09 50600.00 ="TRS06/525" ="Australian Rural Leadership" 02-Jan-08 09:00 AM +="CN52650" "Legal Service Expenditure LG 6340" ="Department of Transport and Regional Services" 02-Jan-08 ="Legal services" 20-Dec-07 30-Jun-09 26586.45 ="TRS06/175" ="AUST GOVT SOLICITOR-CENTRAL OFF" 02-Jan-08 09:01 AM +="CN52651" "Contract Staff" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 01-Jan-08 30-Jun-08 135300.00 ="T2004/0699" ="SMS Management & Technology" 02-Jan-08 09:01 AM +="CN52652" "PROJECT MANAGER" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 01-Jan-08 30-Jun-08 104999.99 ="TRS06/017" ="SME GATEWAY LTD" 02-Jan-08 09:01 AM +="CN52653" ".Net Developer" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 02-Jan-08 30-Jun-08 150000.00 ="T2004/0699" ="SMS Management & Technology" 02-Jan-08 09:01 AM +="CN52654" ".Net Developer" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 02-Jan-08 30-Jun-08 90000.00 ="T2004/0699" ="DIALOG INFORMATION SERVICES" 02-Jan-08 09:01 AM +="CN52655" ".Net Developer" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 02-Jan-08 30-Jun-08 115000.00 ="T2004/0699" ="Rosslogic Pty Ltd" 02-Jan-08 09:01 AM +="CN52656" "Computer based train dynamics simulation" ="Department of Transport and Regional Services" 02-Jan-08 ="Professional engineering services" 01-Jan-08 29-Feb-08 25410.00 ="TRS07/364" ="INTERFLEET TECHNOLOGY PTY LTD" 02-Jan-08 09:01 AM +="CN52657" "Developer" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 01-Jan-08 31-Mar-08 90000.00 ="T2004/0699" ="UNIQUE WORLD PTY LTD" 02-Jan-08 09:02 AM +="CN52658" ".NET DEVELOPER" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 02-Jan-08 30-Jun-08 110000.00 ="T2004/0699" ="SMS Management & Technology" 02-Jan-08 09:02 AM +="CN52659" ".NET DEVELOPER" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 02-Jan-08 30-Jun-08 149999.99 ="T2004/0699" ="OAKTON AA SERVICES PTY LTD" 02-Jan-08 09:02 AM +="CN52660" "Application Developer" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 02-Jan-08 30-Jun-08 120000.00 ="T2004/0699" ="Frontier Group" 02-Jan-08 09:02 AM +="CN52661" "Tester" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 02-Jan-08 31-Jan-08 20000.00 ="T2004/0699" ="SMS Management & Technology" 02-Jan-08 09:02 AM +="CN52662" "TESTER" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 02-Jan-08 31-Mar-08 49999.99 ="T2004/0699" ="SMS Management & Technology" 02-Jan-08 09:02 AM +="CN52663" "System Analyst" ="Department of Transport and Regional Services" 02-Jan-08 ="Management advisory services" 02-Jan-08 31-Mar-08 70000.00 ="T2004/0699" ="SMS Management & Technology" 02-Jan-08 09:02 AM +="CN52665" "Provision of IT service contractor" ="Civil Aviation Safety Authority" 02-Jan-08 ="Temporary information technology systems or database administrators" 02-Jan-08 30-Jun-08 117796.00 ="06/068-03" ="Peoplebank Australia Ltd (ACT)" 02-Jan-08 09:17 AM +="CN52666" "Project Manager Video Conferencing" ="Civil Aviation Safety Authority" 02-Jan-08 ="Recruitment services" 02-Jan-08 31-Jan-08 26400.00 ="06/114-03" ="Verossity Pty Ltd" 02-Jan-08 09:25 AM +="CN52667" " BATTERY, STORAGE, 12V 12AH SEALED ACID LEAD " ="Defence Materiel Organisation" 02-Jan-08 ="Dry or storage battery manufacture services" 21-Dec-07 04-Apr-08 276430.00 ="J8005" ="HBL POWER SYSTEMS" 02-Jan-08 09:28 AM +="CN52668" "Change Management - Non Technical Skills Briefing In a Box" ="Civil Aviation Safety Authority" 02-Jan-08 ="Non technical writing" 02-Dec-07 02-Sep-08 88000.00 ="07/012" ="Safety Wise Solutions Pty Ltd" 02-Jan-08 09:46 AM +="CN52669" "Cost of Maintenance Licence International comparison project" ="Civil Aviation Safety Authority" 02-Jan-08 ="Financial accounting" 02-Oct-07 01-Nov-07 31920.00 ="07/063" ="Apis Consulting Group Pty Ltd" 02-Jan-08 10:13 AM +="CN52670" "Temporary Staff Siebel Architect" ="Civil Aviation Safety Authority" 02-Jan-08 ="Temporary information technology systems or database administrators" 01-Oct-07 01-Apr-08 180000.00 ="07/085" ="Cogent Recruitment" 02-Jan-08 10:27 AM +="CN52672" "Peoplesoft Developer - Reports" ="Civil Aviation Safety Authority" 02-Jan-08 ="Temporary information technology software developers" 10-Dec-07 30-Jun-08 150000.00 ="07/091" ="Oracle Systems (Australia) Pty Ltd" 02-Jan-08 10:33 AM +="CN52673" "Desktop Video Coferencing Solution" ="Civil Aviation Safety Authority" 02-Jan-08 ="Temporary personnel services" 12-Dec-07 01-Dec-08 73669.00 ="07/115" ="Telstra" 02-Jan-08 10:43 AM +="CN52674" "Recruitment Services - Business Intelligence Developer" ="Civil Aviation Safety Authority" 02-Jan-08 ="Recruitment services" 10-Dec-07 10-Apr-08 150000.00 ="07/116" ="Leo Microsystems" 02-Jan-08 10:51 AM +="CN52675" "Audit and Risk Committee member" ="Civil Aviation Safety Authority" 02-Jan-08 ="Legal services" 12-Nov-07 11-Nov-10 30000.00 ="07/121" ="Dale Boucher Solictor & Consultant" 02-Jan-08 11:10 AM +="CN52677" "Development and Support of AOC Survey" ="Civil Aviation Safety Authority" 02-Jan-08 ="Legal services" 29-Nov-07 30-Mar-08 22838.00 ="07/122" ="AussieHQ Pty Ltd" 02-Jan-08 11:28 AM +="CN52678" "Costing Model - Maintenance and analysis" ="Civil Aviation Safety Authority" 02-Jan-08 ="Financial accounting" 01-Oct-07 31-Mar-08 34320.00 ="07/134" ="Total Decision Support Pty Ltd" 02-Jan-08 11:33 AM +="CN52679" "TOP Rates" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Utilities" 14-Dec-07 31-Dec-08 70583.00 ="" ="Tuggeranong Office Park Pty Ltd" 02-Jan-08 11:35 AM +="CN52680" "TOP Land Tax" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Taxation" 14-Dec-07 31-Dec-08 63583.00 ="" ="Tuggeranong Office Park Pty Ltd" 02-Jan-08 11:35 AM +="CN52681" "Development of material and curriculum for Diploma" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Education and Training Services" 14-Dec-07 14-Dec-07 54602.00 ="" ="Swinburne University of Technology" 02-Jan-08 11:35 AM +="CN52682" "Develpoment of a local answers database" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Business administration services" 14-Dec-07 15-Mar-08 14042.00 ="" ="Mirandow Pty Ltd" 02-Jan-08 11:36 AM +="CN52683" "Data Entry Contrcat Staff" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Advertising" 14-Dec-07 28-Feb-08 22000.00 ="" ="Hays Personnel Services" 02-Jan-08 11:36 AM +="CN52684" "Contribution to Reconciliation Place for Paving Work Design" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Public Utilities and Public Sector Related Services" 17-Dec-07 30-Jun-08 165000.00 ="" ="NATIONAL CAPITAL AUTHORITY" 02-Jan-08 11:36 AM +="CN52685" "Fee for selection of NCAC Board members" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Human resources services" 17-Dec-07 17-Dec-07 22500.00 ="" ="HUDSON GLOBAL RESOURCES" 02-Jan-08 11:36 AM +="CN52686" "Laptops" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Computer Equipment and Accessories" 17-Dec-07 31-Jan-08 33999.45 ="" ="DELL AUSTRALIA PTY LIMITED" 02-Jan-08 11:36 AM +="CN52687" "Hardware" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Computer Equipment and Accessories" 13-Dec-07 31-Jan-08 46610.00 ="" ="TIG International Pty Ltd" 02-Jan-08 11:36 AM +="CN52688" "National Accommodation for NTER Darwin" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Hotels and lodging and meeting facilities" 12-Dec-07 31-Dec-08 1419864.60 ="" ="Cullen Bay Holiday Apartments" 02-Jan-08 11:36 AM +="CN52689" "National Accommodation for NTER Darwin" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Hotels and lodging and meeting facilities" 12-Dec-07 31-Dec-08 85228.00 ="" ="MARRAKAI LUXURY ALL SUITES" 02-Jan-08 11:36 AM +="CN52690" "Water & Sewerage Supply" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Water and wastewater treatment supply and disposal" 12-Dec-07 31-Dec-08 137958.00 ="" ="ACTEW Corporation Ltd" 02-Jan-08 11:37 AM +="CN52691" "TOP Electrical Supply" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Electrical Systems and Lighting and Components and Accessories and Supplies" 12-Dec-07 31-Dec-08 1540000.00 ="" ="ACTEWAGL RETAIL" 02-Jan-08 11:37 AM +="CN52692" "ADHOC Painting Services" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Building and Construction and Maintenance Services" 12-Dec-07 31-Dec-08 25667.00 ="" ="Anasson Painting & Maintenance Pty" 02-Jan-08 11:37 AM +="CN52693" "Relocation Services for Moves" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Transportation components and systems" 12-Dec-07 31-Dec-08 32404.00 ="" ="Balfran Removals" 02-Jan-08 11:37 AM +="CN52694" "Plumbing Services" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Building and Construction and Maintenance Services" 12-Dec-07 31-Dec-08 38500.00 ="" ="Macquarie Plumbing Service" 02-Jan-08 11:37 AM +="CN52695" "Technical assessments creche upgrades" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Management advisory services" 13-Dec-07 30-Dec-08 38500.00 ="" ="Th'nc Projects Australia Pty. Ltd" 02-Jan-08 11:37 AM +="CN52696" "IT Contractor" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Computer services" 20-Dec-07 30-Jun-08 108680.00 ="" ="ENCORE IT SERVICES PTY LTD" 02-Jan-08 11:37 AM +="CN52697" "Provision of Financial Services for Activities in the Housing and Disability Group" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Financial and Insurance Services" 21-Dec-07 07-Mar-08 64713.00 ="" ="WALTERTURNBULL" 02-Jan-08 11:37 AM +="CN52698" "Future Planning Provisions Product Testing" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Human resources services" 21-Dec-07 25-Mar-08 170390.00 ="" ="Worthington Di Marzio Pty Ltd" 02-Jan-08 11:38 AM +="CN52699" "Dell OptiPlex 755 Desktop (XP) - no Monitor" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Business administration services" 21-Dec-07 31-Jan-08 27531.00 ="" ="DELL AUSTRALIA PTY LIMITED" 02-Jan-08 11:38 AM +="CN52700" "Steel Head Appliances and 3 Years Support" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Business administration services" 21-Dec-07 31-Jan-08 290052.00 ="" ="Dataflex Pty Ltd" 02-Jan-08 11:38 AM +="CN52701" "Preparation and Delivery of Mentoring Program" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Education and Training Services" 21-Dec-07 30-Jan-08 10010.00 ="" ="THE WORKWISE GROUP PTY. LTD." 02-Jan-08 11:38 AM +="CN52702" "Executive Coaching for staff members" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Education and Training Services" 21-Dec-07 21-Dec-07 28600.00 ="" ="THE WORKWISE GROUP PTY. LTD." 02-Jan-08 11:38 AM +="CN52703" "Implementation of 4 day Personal Efficiency Program" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Vocational training" 24-Dec-07 31-Dec-07 13200.00 ="" ="D'Arcy Consulting Group Pty Ltd" 02-Jan-08 11:38 AM +="CN52704" "Payment of apartment accommodation for members of the Indigenous Programs Investigations Branch" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Hotels and lodging and meeting facilities" 20-Dec-07 30-Apr-08 15000.00 ="" ="ApartmentsPlus.com.au" 02-Jan-08 11:38 AM +="CN52705" "Community Stores Program - IT" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Management advisory services" 18-Dec-07 30-Jun-08 324000.00 ="" ="Deloitte NT" 02-Jan-08 11:38 AM +="CN52706" "Advertising consultations on Disability Supported Accomodation Program for public meetings." ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Advertising" 18-Dec-07 18-Dec-07 79799.13 ="" ="HMA Blaze Pty Limited" 02-Jan-08 11:39 AM +="CN52707" "Fitout of FaCSIA Office Accommodation - Lvls 1 & 2 Corinna Chambers Woden ACT" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="General building construction" 18-Dec-07 25-Dec-07 343156.44 ="" ="ISIS Projects Pty Ltd" 02-Jan-08 11:39 AM +="CN52708" "Cross Cultural Awareness Tranining" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Education and Training Services" 19-Dec-07 30-Jun-08 58960.00 ="" ="Jajirdi Consultants" 02-Jan-08 11:39 AM +="CN52709" "Research assistance 'From birth to first years of school transitionsin early childhood'" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Engineering and Research and Technology Based Services" 19-Dec-07 30-Jun-08 33501.00 ="" ="UNIVERSITY OF NEW BRUNSWICK" 02-Jan-08 11:39 AM +="CN52710" "Perpetual Licence fbi Software" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Software" 20-Dec-07 30-Jan-08 30470.00 ="" ="Nuix Pty Ltd" 02-Jan-08 11:39 AM +="CN52711" "BIA 4.0 + LDRPS 10 Enterprise Package" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Software" 20-Dec-07 31-Jan-08 58538.70 ="" ="Strohl Systems Australia" 02-Jan-08 11:39 AM +="CN52712" "CISCO Routes and maintenance. Replace out of life routes at all SSAT offices & FACSIA Canberra." ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Computer Equipment and Accessories" 20-Dec-07 20-Dec-07 137246.69 ="" ="Getronics (Australia) Pty Ltd" 02-Jan-08 11:39 AM +="CN52713" "Consultancy Services for Property&Secyrity Change Management Project" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Management advisory services" 12-Dec-07 31-Mar-08 72050.00 ="" ="Templeton Galt Pty Ltd" 02-Jan-08 11:39 AM +="CN52714" "Fitout ICC Queanbeyan - Lvls 1 & 2 1 Monaro Street Queanbeyan NSW 2620" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="General building construction" 03-Dec-07 07-Dec-07 314107.09 ="" ="ISIS Projects Pty Ltd" 02-Jan-08 11:40 AM +="CN52715" "Construction Management" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Building and Construction and Maintenance Services" 03-Dec-07 03-Dec-07 1095210.50 ="" ="ISIS Projects Pty Ltd" 02-Jan-08 11:40 AM +="CN52716" "Supply & intallation of workstaitions and loose furniture FaCSIA office - Lvls 1&2, building" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Building construction and support and maintenance and repair services" 03-Dec-07 15-Mar-08 508135.90 ="" ="Cite Office Design Pty Ltd" 02-Jan-08 11:40 AM +="CN52717" "Supply of Workstations & Loose Furniture ICC Queanbeyan" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Furniture and Furnishings" 03-Dec-07 07-Dec-07 53007.29 ="" ="Cite Office Design Pty Ltd" 02-Jan-08 11:40 AM +="CN52718" "Construction Management for the fitout of FaCSIA Ground floor. Lvl 1&2 Biulding 2&5 Darwin N" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Building and Construction and Maintenance Services" 03-Dec-07 14-Feb-08 956777.70 ="" ="ISIS Projects Pty Ltd" 02-Jan-08 11:40 AM +="CN52719" "Construction Management Services for ICC South Hedland WA" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="General building construction" 03-Dec-07 28-Mar-08 1128012.60 ="" ="ISIS Projects Pty Ltd" 02-Jan-08 11:40 AM +="CN52720" "Early General News NTER Communications" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Advertising" 03-Dec-07 07-Dec-07 37133.56 ="" ="HMA Blaze Pty Limited" 02-Jan-08 11:40 AM +="CN52721" "Supply of Temproary Staff" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 04-Dec-07 21-Mar-08 50000.00 ="" ="Wizard Personnel & Office Services" 02-Jan-08 11:40 AM +="CN52722" "IT leasing" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Information Technology Broadcasting and Telecommunications" 03-Dec-07 30-Dec-08 246756.72 ="" ="C'WEALTH BANK - COMPUTER FLEET" 02-Jan-08 11:41 AM +="CN52723" "FACSIA National Office Stores Nov 07" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Office supplies" 03-Dec-07 31-Dec-07 29062.32 ="" ="Corporate Express Australia" 02-Jan-08 11:41 AM +="CN52724" "FACSIA National Office Stores Nov 07" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Office supplies" 03-Dec-07 31-Dec-07 20627.56 ="" ="Corporate Express Australia" 02-Jan-08 11:41 AM +="CN52725" "FACSIA National Office Stores Nov 07" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Office supplies" 03-Dec-07 31-Dec-07 19624.16 ="" ="Corporate Express Australia" 02-Jan-08 11:41 AM +="CN52726" "Invoice 398 Project No.458" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Real estate services" 31-Oct-07 03-Dec-07 31450.16 ="" ="MPA Construction Group Pty Ltd" 02-Jan-08 11:41 AM +="CN52727" "Lafia 2007 Les Blacklow" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Aircraft" 13-Nov-07 06-Dec-07 23100.00 ="" ="AUST PUBLIC SERVICE COMMISSION" 02-Jan-08 11:41 AM +="CN52728" "Monthly Statement 376059690931003 National Office" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Aircraft" 29-Nov-07 17-Dec-07 12523.42 ="" ="American Express" 02-Jan-08 11:41 AM +="CN52729" "Reimbursment to UGS December 2007" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Real estate services" 19-Dec-07 19-Dec-07 92254.85 ="" ="United Group Services" 02-Jan-08 11:41 AM +="CN52730" "Property Lease: QUE02\SOC0 Jan 08" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Real estate services" 01-Jan-07 20-Dec-07 35134.47 ="" ="ARIA Property Group" 02-Jan-08 11:42 AM +="CN52731" "Probity audit of project processes" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 07-Dec-07 30-Jun-08 18590.00 ="" ="SPARKE HELMORE SOLICITORS" 02-Jan-08 11:42 AM +="CN52732" "Pruchase of 15 Davis Court Katerine NT" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Housings and cabinets and casings" 10-Dec-07 10-Dec-07 426310.03 ="" ="Aust Government Solicitor" 02-Jan-08 11:42 AM +="CN52733" "Fee for Permanent lacement of Contrctor" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Accommodation furniture" 10-Dec-07 31-Dec-07 10627.50 ="" ="Adecco Australia Pty Ltd" 02-Jan-08 11:42 AM +="CN52734" "Contract Services for Business Analysis and Project Management" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Business administration services" 10-Dec-07 31-Oct-08 263780.00 ="" ="Inner North Consulting Pty Ltd" 02-Jan-08 11:42 AM +="CN52735" "LAFIA 2007 Asia Programme Fee - Simon Rosenberg" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Education and Training Services" 10-Dec-07 10-Dec-07 26508.69 ="" ="AUST PUBLIC SERVICE COMMISSION" 02-Jan-08 11:42 AM +="CN52736" "Provision of Riverbed WAN Accelerators Hardware, Maintenance and Support" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Computer Equipment and Accessories" 11-Dec-07 09-Dec-08 457503.75 ="" ="Dataflex Pty Ltd" 02-Jan-08 11:42 AM +="CN52737" "Remote Introductory Corporate Governance Workshops" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Education and Training Services" 11-Dec-07 31-Mar-08 16200.00 ="" ="DEBORAH DURNAN" 02-Jan-08 11:42 AM +="CN52738" "Software" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Software" 11-Dec-07 31-Jan-08 16911.30 ="" ="DIMENSION DATA AUSTRALIA PTY LTD" 02-Jan-08 11:43 AM +="CN52739" "Learning & Delevopement Program" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Developmental and professional teaching aids and materials and accessories and supplies" 07-Dec-07 14-Dec-07 22000.00 ="" ="Directions for Change" 02-Jan-08 11:43 AM +="CN52740" "Julianna House ground floor refurbishment - electrical and data" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Electrical equipment and components and supplies" 04-Dec-07 04-Dec-07 10208.00 ="" ="P&D Building Maintenance Pty Ltd" 02-Jan-08 11:43 AM +="CN52741" "Printing of ICC wall and desk calendar" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Printing and publishing equipment" 04-Dec-07 14-Dec-07 20172.96 ="" ="Pirion Pty Limited" 02-Jan-08 11:43 AM +="CN52742" "Advertising Programme Funding Submissions - Funding for services for Indigenous Australians" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Advertising" 04-Dec-07 04-Dec-07 83384.09 ="" ="HMA Blaze Pty Limited" 02-Jan-08 11:43 AM +="CN52743" "Advertising for Tenders" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Advertising" 04-Dec-07 04-Dec-07 46706.76 ="" ="HMA Blaze Pty Limited" 02-Jan-08 11:43 AM +="CN52744" "Member of the Carer Adjustment Payment Expert Pane" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Human resources services" 06-Dec-07 30-Jun-08 20008.00 ="" ="Louise Denley & Paul Tuffin" 02-Jan-08 11:43 AM +="CN52745" "Member of the Carer Adjustment Payment Expert Pane" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Human resources services" 06-Dec-07 30-Jun-08 20008.00 ="" ="MS JUNE MCLOUGHLIN" 02-Jan-08 11:43 AM +="CN52746" "Hyperion Developer" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Computer services" 06-Dec-07 30-Jun-08 73920.00 ="" ="Forge Data Solutions" 02-Jan-08 11:44 AM +="CN52747" "Learning & Development" ="Department of Families, Community Services & Indigenous Affairs" 02-Jan-08 ="Education and Training Services" 07-Dec-07 10-Dec-07 18000.00 ="" ="Interaction Consulting Group PtyLtd" 02-Jan-08 11:44 AM +="CN52748" "Federal Register of Legislative Instruments fees" ="Civil Aviation Safety Authority" 02-Jan-08 ="Financial accounting" 04-Dec-07 31-Dec-07 31137.00 ="07/145" ="Attorney General's Department (ACT)" 02-Jan-08 11:53 AM +="CN52749" "ICON fiber relocation" ="Civil Aviation Safety Authority" 02-Jan-08 ="Fibre optic cable" 05-Dec-07 31-Jan-08 20000.00 ="07/147" ="ICON Management Office - DoFA" 02-Jan-08 12:00 PM +="CN52750" "Temporary Staff - IT Tester" ="Civil Aviation Safety Authority" 02-Jan-08 ="Temporary information technology systems or database administrators" 10-Dec-07 29-Feb-08 44722.00 ="07/149" ="Oakton AA Services Pty Ltd" 02-Jan-08 12:04 PM +="CN49690" "Service contractor - ICAO audit - Training Framework" ="Civil Aviation Safety Authority" 02-Jan-08 ="Business and corporate management consultation services" 12-Nov-07 11-Jan-08 47250.00 ="07/089-01" ="Han-Bry Pty Ltd" 02-Jan-08 12:07 PM +="CN45537" "Additional ICT Cabling Fitout of Head Office" ="Civil Aviation Safety Authority" 02-Jan-08 ="Network cable" 18-Oct-07 18-Nov-07 16500.00 ="07/104" ="Multisystem Communications" 02-Jan-08 12:10 PM +="CN52752" " Threat and Error Management Training courses " ="Civil Aviation Safety Authority" 02-Jan-08 ="Business and corporate management consultation services" 07-Dec-07 07-Feb-08 15000.00 ="07/151" ="Aviation Projects Pty Ltd" 02-Jan-08 12:20 PM +="CN52753" "Threat and Error Management Training Courses" ="Civil Aviation Safety Authority" 02-Jan-08 ="Business and corporate management consultation services" 07-Dec-07 07-Feb-08 15000.00 ="07/152" ="Tanner Menzies Pty Ltd (Brisbane)" 02-Jan-08 12:31 PM +="CN52755" "Review and assessment operations manual" ="Civil Aviation Safety Authority" 02-Jan-08 ="Business and corporate management consultation services" 09-Jul-07 31-Jul-07 50000.00 ="07/153" ="Altara Group Pty Ltd" 02-Jan-08 12:35 PM +="CN52756" "Review and assess foreign operators manuals" ="Civil Aviation Safety Authority" 02-Jan-08 ="Business and corporate management consultation services" 30-Nov-07 30-Nov-09 30000.00 ="07/153-01" ="Altara Group Pty Ltd" 02-Jan-08 12:39 PM +="CN52757" "Post-election Conference" ="Australian Electoral Commission" 02-Jan-08 ="Hotels and lodging and meeting facilities" 11-Mar-08 12-Mar-08 13140.00 ="" ="Hyatt Regency Adelaide" 02-Jan-08 02:22 PM +="CN52758-A1" "Temporary Personnel" ="Australian Electoral Commission" 02-Jan-08 ="Temporary personnel services" 15-Jan-08 30-Jun-08 59279.09 ="AEC06/019" ="Hays Personnel Services" 02-Jan-08 02:37 PM +="CN52759" "Employment Offerings Consultancy" ="Comsuper" 02-Jan-08 ="Human resources services" 02-Oct-07 31-Dec-07 36450.00 ="" ="Mercer (Australia) Pty Ltd" 02-Jan-08 02:39 PM +="CN52762" "Printing" ="Australian Electoral Commission" 02-Jan-08 ="Industrial printing services" 06-Dec-07 06-Jan-08 10406.00 ="" ="Australian Envelopes" 02-Jan-08 02:49 PM +="CN52763-A1" "Probity Order for Administration Platform Modernisation Project" ="Comsuper" 02-Jan-08 ="Human resources services" 01-Oct-07 30-Jun-08 48452.00 ="" ="Australian Government Solicitors" 02-Jan-08 02:55 PM +="CN52764" "Needs and gaps analysis of on-farm irrigation - delivery of National Water Plan for Security" ="Department of the Environment and Water Resources" 02-Jan-08 ="Water resources development and oversight" 07-Nov-07 28-Feb-08 79190.00 ="0708-410" ="Rural Plan Pty Ltd" 02-Jan-08 02:57 PM +="CN52765" "Contribute Economic advice to the Disclosure of Commercial Building Energy Efficiency report" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 07-Nov-07 31-Dec-07 61380.00 ="0708-422" ="ACCESS ECONOMICS" 02-Jan-08 02:57 PM +="CN52766" "SAP ERP STAGE 3 IMPLEMENTATION" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 07-Dec-07 15-Feb-08 1735415.00 ="0708-697" ="SAP Australia" 02-Jan-08 02:58 PM +="CN52767" "PROVISION OF PEP TRAINING FOR JOINT TEAM STAFF" ="Department of the Environment and Water Resources" 02-Jan-08 ="Education and Training Services" 03-Dec-07 03-Dec-07 29700.00 ="0708-643" ="D'Arcy Consulting Group Pty Ltd" 02-Jan-08 02:58 PM +="CN52769" "SAP HR Support Services" ="Department of the Environment and Water Resources" 02-Jan-08 ="Computer services" 22-Nov-07 31-Dec-07 17820.00 ="0708-630" ="Presence of IT" 02-Jan-08 02:59 PM +="CN52770" "Science Writer to Support the Preparation of the National Synthesis Report" ="Department of the Environment and Water Resources" 02-Jan-08 ="Writing and translations" 04-Dec-07 30-Apr-08 55000.00 ="0708-691" ="SHIRLEY AND WERNER ASSOCIATES PTY L" 02-Jan-08 03:00 PM +="CN52772" "The provision of services relating to the validation of Australian Dung beetle data" ="Department of the Environment and Water Resources" 02-Jan-08 ="Engineering and Research and Technology Based Services" 04-Dec-07 05-Dec-07 13200.00 ="0708-463" ="Queensland Museum" 02-Jan-08 03:00 PM +="CN52771-A2" "Temporary Personnel" ="Australian Electoral Commission" 02-Jan-08 ="Temporary personnel services" 01-Aug-06 30-Jun-09 150823.64 ="AEC06/019" ="Tarakan Consulting" 02-Jan-08 03:00 PM +="CN52773" "Venue, accom, meals and assoc services AELERT course" ="Department of the Environment and Water Resources" 02-Jan-08 ="Hotels and lodging and meeting facilities" 05-Dec-07 31-Dec-07 32740.00 ="0708-663" ="Belconnen Hotel/Motel" 02-Jan-08 03:02 PM +="CN52774" "Printing annual reports 06/07 for Heritage" ="Department of the Environment and Water Resources" 02-Jan-08 ="Printed media" 05-Dec-07 15-Dec-07 24035.00 ="0708-670" ="Canprint Communications P/L" 02-Jan-08 03:02 PM +="CN52775" "Delivery of Course Material and Subsequent Assessment - Diploma in Gov. investigation" ="Department of the Environment and Water Resources" 02-Jan-08 ="Education and Training Services" 05-Dec-07 31-Dec-07 16000.00 ="0708-664" ="Investigation Compliance and Enforcem" 02-Jan-08 03:02 PM +="CN52776" "Secretariat services for Australian Environmental Law Enforcement Regulators Network" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 05-Dec-07 31-Dec-07 12500.00 ="0708-665" ="Brisbane City Council" 02-Jan-08 03:03 PM +="CN52777" "To scope the requirements and needs of DEW in relation to data on agricultural pesticides usage" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management advisory services" 05-Dec-07 18-Jan-08 27500.00 ="0708-025" ="Solutions Marketing and Research Pty" 02-Jan-08 03:03 PM +="CN52778" "Provision of removals service for new employee to the Department" ="Department of the Environment and Water Resources" 02-Jan-08 ="Mail and cargo transport" 05-Dec-07 17-Dec-07 12240.03 ="0708-669" ="Grace Removals Group" 02-Jan-08 03:03 PM +="CN52779" "Course Services - Good Health - Great Future Progr" ="Department of the Environment and Water Resources" 02-Jan-08 ="Education and Training Services" 06-Dec-07 31-Dec-07 45105.50 ="0708-687" ="Health Futures Pty Ltd" 02-Jan-08 03:03 PM +="CN52780" "Whales think tank conference Expenses" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 06-Dec-07 17-Dec-07 15517.57 ="0708-680" ="Dr Richard Beamish" 02-Jan-08 03:03 PM +="CN52781" "Measurement Assurance Infrastructure for Non-Urban Water Metering." ="Department of the Environment and Water Resources" 02-Jan-08 ="Water resources development and oversight" 06-Dec-07 30-Jun-08 12500.00 ="0708-682" ="Department Of Industry, Tourism and" 02-Jan-08 03:03 PM +="CN52782" "RECRUITMENT SERVICES" ="Department of the Environment and Water Resources" 02-Jan-08 ="Human resources services" 03-Dec-07 28-Dec-07 11518.10 ="0708-708" ="Professional Careers Australia" 02-Jan-08 03:03 PM +="CN52783" "Supply and Placement of Temporary Administrative Staff" ="Department of the Environment and Water Resources" 02-Jan-08 ="Human resources services" 04-Dec-07 25-Jan-08 30000.00 ="0708-673" ="Vedior Asia Pacific Pty Ltd" 02-Jan-08 03:03 PM +="CN52784" "Red Algae study Great Barrier Reef" ="Department of the Environment and Water Resources" 02-Jan-08 ="Engineering and Research and Technology Based Services" 03-Dec-07 30-May-08 52365.00 ="0708-620" ="MurdochLINK Pty Ltd" 02-Jan-08 03:04 PM +="CN52785-A1" "Audit Services Relating to Community Water Grants" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 03-Dec-07 03-Jun-08 21255.10 ="0708/692" ="Protiviti Pty Ltd" 02-Jan-08 03:04 PM +="CN52786" "Solar Hot Water Rebate Online Application Form Development" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 04-Dec-07 21-Dec-07 33000.00 ="0708-745" ="Toldark Pty Ltd" 02-Jan-08 03:04 PM +="CN52787" "Blackberry Charges Nov 07" ="Department of the Environment and Water Resources" 02-Jan-08 ="Information Technology Broadcasting and Telecommunications" 04-Dec-07 14-Dec-07 24066.76 ="0708-659" ="Telstra Corporation Limited" 02-Jan-08 03:04 PM +="CN52788" "Generator Efficiency Standards and Greenhouse Challenge Plus Independent Verification" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 04-Dec-07 29-Mar-08 42821.00 ="0708-612" ="Denis Cooke and Associates Pty Ltd" 02-Jan-08 03:04 PM +="CN52789" "Greenhouse Challenge Plus Independent Verification of Telstra Corporation Australia" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 04-Dec-07 14-Feb-08 14866.00 ="0708-538" ="DNV Certification Pty Ltd" 02-Jan-08 03:04 PM +="CN52790" "Bathymetric mapping of Australia's nearshore coastal waters" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 04-Dec-07 17-Dec-07 44330.00 ="0708-132" ="CRC-SI" 02-Jan-08 03:04 PM +="CN52791" "Newspaper advertisments" ="Department of the Environment and Water Resources" 02-Jan-08 ="Advertising" 04-Dec-07 04-Dec-07 10071.07 ="0708-701" ="HMA Blaze Pty Ltd" 02-Jan-08 03:04 PM +="CN52792" "Thresholding Update 2006-Thresholding analysis of mapsheets" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 04-Dec-07 14-Dec-07 43505.00 ="0708-667" ="Sinclair Knight Merz" 02-Jan-08 03:05 PM +="CN52793" "maintinance of Photocopier" ="Department of the Environment and Water Resources" 02-Jan-08 ="Office Equipment and Accessories and Supplies" 08-Aug-07 30-Jun-08 16180.00 ="" ="SBA Distributors PTY LTD" 02-Jan-08 03:06 PM +="CN52794" "project management training" ="Department of the Environment and Water Resources" 02-Jan-08 ="Education and Training Services" 19-Nov-07 30-Nov-07 10725.00 ="" ="Innovation Partners Australia" 02-Jan-08 03:06 PM +="CN52795" "Lease Cars" ="Department of the Environment and Water Resources" 02-Jan-08 ="Motor vehicles" 20-Jul-07 30-Jun-08 21600.00 ="" ="Lease Plan Australia Limited" 02-Jan-08 03:06 PM +="CN52796" "Relocation" ="Department of the Environment and Water Resources" 02-Jan-08 ="Transportation services equipment" 28-Nov-07 30-Dec-07 20478.00 ="0708-721" ="Zentner Shipping" 02-Jan-08 03:07 PM +="CN52797" "finalisation of the upgrade of the ERISS Gamma Spectrometry Facilities" ="Department of the Environment and Water Resources" 02-Jan-08 ="Electrical equipment and components and supplies" 21-Nov-07 30-Nov-07 18000.00 ="" ="ICES" 02-Jan-08 03:07 PM +="CN52798" "Phone usage landline and mobile" ="Department of the Environment and Water Resources" 02-Jan-08 ="Telecommunications media services" 18-Jul-07 30-Jun-08 45500.00 ="" ="Telstra Corporation Limited" 02-Jan-08 03:07 PM +="CN52799" "Phone usage landline" ="Department of the Environment and Water Resources" 02-Jan-08 ="Information Technology Broadcasting and Telecommunications" 18-Jul-07 30-Jun-08 30000.00 ="" ="AAPT" 02-Jan-08 03:07 PM +="CN52800" "Recruitment Newspaper and web advertisements" ="Department of the Environment and Water Resources" 02-Jan-08 ="Advertising" 23-Jul-07 31-Jul-07 25493.23 ="" ="HMA Blaze Pty Ltd" 02-Jan-08 03:07 PM +="CN52801" "Store and office requisites" ="Department of the Environment and Water Resources" 02-Jan-08 ="Office Equipment and Accessories and Supplies" 18-Jul-07 30-Jun-08 30000.00 ="" ="Corporate Express" 02-Jan-08 03:07 PM +="CN52802" "refurbishment" ="Department of the Environment and Water Resources" 02-Jan-08 ="Building construction and support and maintenance and repair services" 23-Aug-07 17-Sep-07 54041.00 ="" ="Kyoto Contracting" 02-Jan-08 03:07 PM +="CN52803-A1" "Leased Cars" ="Department of the Environment and Water Resources" 02-Jan-08 ="Motor vehicles" 18-Jul-07 30-Jun-08 180750.00 ="" ="Lease Plan Australia Limited" 02-Jan-08 03:07 PM +="CN52804" "Leased Cars" ="Department of the Environment and Water Resources" 02-Jan-08 ="Motor vehicles" 18-Jul-07 30-Jun-08 21600.00 ="" ="Lease Plan Australia Limited" 02-Jan-08 03:08 PM +="CN52805" "Provide training for PDFC's in Media Communication" ="Department of the Environment and Water Resources" 02-Jan-08 ="Education and Training Services" 20-Nov-07 30-Jun-08 13996.00 ="0708-676" ="Kennedy Communications" 02-Jan-08 03:08 PM +="CN52806" "Leased Cars" ="Department of the Environment and Water Resources" 02-Jan-08 ="Motor vehicles" 18-Jul-07 30-Jun-08 21600.00 ="" ="Lease Plan Australia Limited" 02-Jan-08 03:08 PM +="CN52807" "Leased Cars" ="Department of the Environment and Water Resources" 02-Jan-08 ="Passenger transport" 18-Jul-07 30-Jun-08 21900.00 ="LEASE CARS" ="Lease Plan Australia Limited" 02-Jan-08 03:08 PM +="CN52808" "Landscaping" ="Department of the Environment and Water Resources" 02-Jan-08 ="Roads and landscape" 17-Sep-07 31-Dec-07 13107.11 ="" ="West Arnhem Mowing" 02-Jan-08 03:08 PM +="CN52809" "XHTML mark up services" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 07-Aug-07 27-Jun-08 20000.00 ="" ="Ocean Recording and" 02-Jan-08 03:13 PM +="CN52810" "Information Technology System Analysis" ="Department of the Environment and Water Resources" 02-Jan-08 ="Information services" 26-Nov-07 31-Jan-08 44000.00 ="0708-519" ="Hoffmann Donohue Pty Ltd" 02-Jan-08 03:14 PM +="CN52811" "Web content review and rewrite services" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 07-Aug-07 27-Jun-08 50000.00 ="" ="Maadmob Pty Limited" 02-Jan-08 03:14 PM +="CN52812" "Web site coding and development services" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 07-Aug-07 27-Jun-08 20000.00 ="" ="Unique Ideas Australia Pty Ltd" 02-Jan-08 03:14 PM +="CN52813-A1" "Provison of Remote Monitoring and Maintenance for Information and Technology Services" ="Department of the Environment and Water Resources" 02-Jan-08 ="Computer services" 27-Sep-07 28-Feb-08 185346.75 ="0708-496" ="Phase III Solutions Pty Ltd" 02-Jan-08 03:14 PM +="CN52814" "Temporary Employment Services" ="Department of the Environment and Water Resources" 02-Jan-08 ="Water resources development and oversight" 28-Sep-07 31-Dec-07 30000.00 ="0708-319" ="Staffing and Office Solutions" 02-Jan-08 03:14 PM +="CN52815" "Power and Data Cabling at the Uni" ="Department of the Environment and Water Resources" 02-Jan-08 ="Electrical equipment and components and supplies" 08-Aug-07 22-Aug-07 40389.27 ="0708-091" ="Intravision Pty Ltd" 02-Jan-08 03:14 PM +="CN52816" "Internal courier October" ="Department of the Environment and Water Resources" 02-Jan-08 ="Transportation and Storage and Mail Services" 23-Nov-07 30-Jun-08 58500.00 ="0607-018" ="Australia Post" 02-Jan-08 03:14 PM +="CN52817" "Call Centre Services for AGO" ="Department of the Environment and Water Resources" 02-Jan-08 ="Business administration services" 28-Sep-07 28-Jan-08 1250000.00 ="0708-222" ="Datacom Connect P/L" 02-Jan-08 03:14 PM +="CN52818-A2" "Design and Architectural Services" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 21-Mar-07 30-Oct-07 373322.72 ="0607-117" ="Willemsen Group" 02-Jan-08 03:14 PM +="CN52819" "License for competitive web site analysis services" ="Department of the Environment and Water Resources" 02-Jan-08 ="Software" 06-Aug-07 31-Aug-07 29700.00 ="" ="Hitwise" 02-Jan-08 03:15 PM +="CN52820" "Great Artesian Basin Coord Committee expenses" ="Department of the Environment and Water Resources" 02-Jan-08 ="Water resources development and oversight" 02-Aug-07 31-Jan-08 20000.00 ="0405-197" ="The Trustee for Secretariat Austral" 02-Jan-08 03:15 PM +="CN52821" "Blackberry Charges 2007/08 REF 0708-128" ="Department of the Environment and Water Resources" 02-Jan-08 ="Information Technology Broadcasting and Telecommunications" 16-Aug-07 31-Aug-07 33596.45 ="0708-128" ="Telstra Corporation Limited" 02-Jan-08 03:15 PM +="CN52822" "Building Access cards and pass holders" ="Department of the Environment and Water Resources" 02-Jan-08 ="Office Equipment and Accessories and Supplies" 12-Sep-07 17-Sep-07 10586.51 ="0708-229" ="ID Supplies Pty Ltd" 02-Jan-08 03:15 PM +="CN52823" "Ash Handrails with s/steel for JGB" ="Department of the Environment and Water Resources" 02-Jan-08 ="Office Equipment and Accessories and Supplies" 08-Aug-07 15-Aug-07 30394.00 ="" ="RT and EM Sutton" 02-Jan-08 03:15 PM +="CN52824-A2" "Integrated Fit-out of Office Accommodation" ="Department of the Environment and Water Resources" 02-Jan-08 ="General building construction" 22-Mar-07 30-Oct-07 10389649.01 ="06/07-116" ="Hindmarsh" 02-Jan-08 03:15 PM +="CN52825" "Rent - car accomodation" ="Department of the Environment and Water Resources" 02-Jan-08 ="Transportation services equipment" 08-Aug-07 14-Dec-07 31935.49 ="0607-555" ="Colliers International (ACT)Pty Ltd" 02-Jan-08 03:15 PM +="CN52826" "Profiles of Irrigation Stakeholders Outside the Murray-Darling Basin" ="Department of the Environment and Water Resources" 02-Jan-08 ="Water resources development and oversight" 27-Nov-07 20-Dec-07 39462.50 ="0708-548" ="Hassall and Associates Pty Ltd" 02-Jan-08 03:16 PM +="CN52827-A2" "Laboratory testing of fuel samples" ="Department of the Environment and Water Resources" 02-Jan-08 ="Professional engineering services" 26-Nov-07 31-Dec-10 3370000.00 ="0607-457" ="Intertek Testing Services" 02-Jan-08 03:16 PM +="CN52828" "2007 PDS Training Seminars" ="Department of the Environment and Water Resources" 02-Jan-08 ="Human resources services" 13-Aug-07 17-Aug-07 18155.00 ="0708-109" ="Interaction Consulting Group" 02-Jan-08 03:16 PM +="CN52829" "60 Clerical chairs for JGB" ="Department of the Environment and Water Resources" 02-Jan-08 ="Office Equipment and Accessories and Supplies" 13-Aug-07 17-Aug-07 10032.00 ="0708-110" ="Complete Office Supplies Pty Ltd" 02-Jan-08 03:16 PM +="CN52830" "Fuel Sampling under the Fuel Quality Standards Act 2000 (the Act)." ="Department of the Environment and Water Resources" 02-Jan-08 ="Environmental Services" 08-Aug-07 15-Jun-08 17952.00 ="" ="Attorney General's Department" 02-Jan-08 03:16 PM +="CN52831" "Australia Post Account for October" ="Department of the Environment and Water Resources" 02-Jan-08 ="Transportation and Storage and Mail Services" 26-Nov-07 30-Nov-07 17165.37 ="0708-549" ="Australia Post" 02-Jan-08 03:16 PM +="CN52832" "200 Visitors chairs" ="Department of the Environment and Water Resources" 02-Jan-08 ="Office Equipment and Accessories and Supplies" 13-Aug-07 30-Aug-07 31680.00 ="0708-111" ="Cube Furniture" 02-Jan-08 03:16 PM +="CN52833" "Design and Facilitation of AGNRM Joint Team Day" ="Department of the Environment and Water Resources" 02-Jan-08 ="Education and Training Services" 14-Aug-07 30-Aug-07 21197.00 ="" ="Now for Future Pty Ltd" 02-Jan-08 03:16 PM +="CN52834" "Development of an irrigation engagement plan for delivery through the National Plan Water Security" ="Department of the Environment and Water Resources" 02-Jan-08 ="Water resources development and oversight" 14-Aug-07 30-Sep-07 72600.00 ="" ="Hassall and Associates Pty Ltd" 02-Jan-08 03:17 PM +="CN52835" "Security Services" ="Department of the Environment and Water Resources" 02-Jan-08 ="Security and personal safety" 26-Nov-07 19-Sep-08 218254.56 ="0506-155" ="SNP Security" 02-Jan-08 03:17 PM +="CN52836" "x2 photocopiers for minister's office" ="Department of the Environment and Water Resources" 02-Jan-08 ="Office machines and their supplies and accessories" 08-Aug-07 17-Aug-07 35434.62 ="0607-489" ="Konica Minolta Business Solutions" 02-Jan-08 03:17 PM +="CN52837" "Transport services for Minister Turnbull" ="Department of the Environment and Water Resources" 02-Jan-08 ="Transport operations" 15-Aug-07 17-Aug-07 10287.93 ="0708-121" ="Dofa Comcar" 02-Jan-08 03:17 PM +="CN52838" "Science Writer Services" ="Department of the Environment and Water Resources" 02-Jan-08 ="Environmental Services" 28-Sep-07 30-May-08 49500.00 ="0607-413" ="Personnel and Financial Services" 02-Jan-08 03:17 PM +="CN52839" "Author in Chief-Great Artesian Basin Resource Study Update" ="Department of the Environment and Water Resources" 02-Jan-08 ="Water resources development and oversight" 19-Nov-07 30-Apr-08 78485.00 ="0708-113" ="John R Hillier" 02-Jan-08 03:17 PM +="CN52840" "Cleaning Services for ANU Building" ="Department of the Environment and Water Resources" 02-Jan-08 ="Cleaning Equipment and Supplies" 11-Sep-07 31-Jan-08 12100.00 ="0708-192" ="City Group Pty Ltd" 02-Jan-08 03:17 PM +="CN52842-A1" "Preliminary testing of gas instantaneous water heaters for water wastage" ="Department of the Environment and Water Resources" 02-Jan-08 ="Water resources development and oversight" 08-Nov-07 30-Jun-08 53834.00 ="0708-485" ="Access Product Information Consulta" 02-Jan-08 03:18 PM +="CN52843-A1" "Infrastructure Upgrade" ="Department of the Environment and Water Resources" 02-Jan-08 ="Computer services" 24-Oct-07 31-Mar-08 19999.65 ="0708-507" ="Toldark Pty Ltd" 02-Jan-08 03:18 PM +="CN52844" "Provision of facilitation services for the delivery of National Water Plan for Security" ="Department of the Environment and Water Resources" 02-Jan-08 ="Water resources development and oversight" 15-Nov-07 30-Jun-08 237600.00 ="0708-400" ="Innovation Delivery Partners Pty Lt" 02-Jan-08 03:18 PM +="CN52845" "Accountancy Recruitment Initiative" ="Department of the Environment and Water Resources" 02-Jan-08 ="Accounting and auditing" 10-Sep-07 14-Sep-07 11000.00 ="0708/227" ="Aust Public Service Commission" 02-Jan-08 03:18 PM +="CN52841" "Provision for Business Analyst" ="Comsuper" 02-Jan-08 ="Human resources services" 02-Jan-08 30-Jun-08 94952.00 ="" ="Cordelta Pty Limited" 02-Jan-08 03:18 PM +="CN52846" "Training for Clarity Grants Management System" ="Department of the Environment and Water Resources" 02-Jan-08 ="Specialised educational services" 09-Nov-07 14-Dec-07 55440.00 ="0708-580" ="COMPUTER ASSOCIATES PTY LTD" 02-Jan-08 03:18 PM +="CN52847" "Printing the National Water Quality Management Strategy" ="Department of the Environment and Water Resources" 02-Jan-08 ="Printing and publishing equipment" 03-Sep-07 30-Sep-07 37015.00 ="0708-204" ="Canprint Communications P/L" 02-Jan-08 03:18 PM +="CN52848" "Lite-Pro Projectors and Electronic Whiteboards" ="Department of the Environment and Water Resources" 02-Jan-08 ="Office Equipment and Accessories and Supplies" 03-Sep-07 13-Sep-07 39226.00 ="0708-182" ="Zenith Custom Installation Pty Ltd" 02-Jan-08 03:18 PM +="CN52849" "Australian Government Reception at 31st session of World Heritage Committee meeting, Christchurch." ="Department of the Environment and Water Resources" 02-Jan-08 ="Restaurants and catering" 04-Sep-07 30-Sep-07 20777.40 ="0607-509" ="Vbase Venue Management Group Ltd" 02-Jan-08 03:19 PM +="CN52850" "Enhancements to reporting features of the SPRAT database" ="Department of the Environment and Water Resources" 02-Jan-08 ="Computer services" 05-Sep-07 30-Jun-08 110000.00 ="0708-231" ="Toldark Pty Ltd" 02-Jan-08 03:19 PM +="CN52851" "REPORT ON HIGH CONSERVATION VALUE AQUATIC ECOSYSTEMS" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 10-Sep-07 30-Sep-07 10000.00 ="" ="JON NEVILL" 02-Jan-08 03:19 PM +="CN52852-A1" "Leasing of Office Accomodation - ACT" ="Department of the Environment and Water Resources" 02-Jan-08 ="Real estate services" 12-Nov-07 30-Jun-09 5921183.59 ="0607-556" ="Willemsen Property Corporation" 02-Jan-08 03:19 PM +="CN52853" "Fuel sampling" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 10-Sep-07 15-Jun-08 10972.50 ="0708-190" ="Department Of Justice" 02-Jan-08 03:19 PM +="CN52854" "Production of booklet for National Wetlands Update Issue 16, 2008" ="Department of the Environment and Water Resources" 02-Jan-08 ="Water resources development and oversight" 12-Nov-07 31-Jan-08 27000.00 ="0708-577" ="Wilton Hanford Hanover Pty Ltd" 02-Jan-08 03:19 PM +="CN52855" "Advice metering elements of the National Plan for Water Securityand advice on accrual of water savings" ="Department of the Environment and Water Resources" 02-Jan-08 ="Water resources development and oversight" 13-Nov-07 31-Jan-08 74650.00 ="0708-237" ="Nayar Consulting" 02-Jan-08 03:19 PM +="CN52856" "Cost effectivenss of the Water Efficiency Labelling Standards Scheme" ="Department of the Environment and Water Resources" 02-Jan-08 ="Water resources development and oversight" 12-Nov-07 31-Jan-08 66000.00 ="0708-042" ="University of Technology Sydney" 02-Jan-08 03:20 PM +="CN52857" "Next G cards - Remote connection service" ="Department of the Environment and Water Resources" 02-Jan-08 ="Information Technology Broadcasting and Telecommunications" 16-Aug-07 31-Aug-07 10229.13 ="0708-131" ="Telstra Corporation Limited" 02-Jan-08 03:20 PM +="CN52858" "Scribe Services for 2008 GraduateInterviews" ="Department of the Environment and Water Resources" 02-Jan-08 ="Human resources services" 17-Aug-07 30-Aug-07 12325.00 ="0708-140" ="Goodall, Roderick James" 02-Jan-08 03:20 PM +="CN52859" "Courier services for fuel samples" ="Department of the Environment and Water Resources" 02-Jan-08 ="Transportation and Storage and Mail Services" 23-Nov-07 31-Dec-10 76500.00 ="0708-006" ="DGM Australia Pty Ltd" 02-Jan-08 03:20 PM +="CN52860" "Engineering advice on irrigation delivery systems" ="Department of the Environment and Water Resources" 02-Jan-08 ="Water resources development and oversight" 22-Nov-07 31-Jan-08 74883.00 ="0708-273" ="GHD Pty Ltd" 02-Jan-08 03:20 PM +="CN52861" "EASY development Work Service order" ="Department of the Environment and Water Resources" 02-Jan-08 ="Computer services" 22-Nov-07 30-Jun-08 13375.44 ="0708-320" ="Dialog Information Technology" 02-Jan-08 03:20 PM +="CN52862" "Executive Coaching" ="Department of the Environment and Water Resources" 02-Jan-08 ="Specialised educational services" 21-Nov-07 21-Nov-07 16500.00 ="0708-618" ="Executive Central Group Pty Ltd" 02-Jan-08 03:20 PM +="CN52863" "Fuel sampling" ="Department of the Environment and Water Resources" 02-Jan-08 ="Management and Business Professionals and Administrative Services" 24-Aug-07 15-Jun-08 75000.00 ="0708-160" ="Department of Consumer and Employment" 02-Jan-08 03:20 PM +="CN52864" "The Australian Way avertisement 08/07" ="Department of the Environment and Water Resources" 02-Jan-08 ="Advertising" 20-Nov-07 20-Nov-07 11742.50 ="0607-258" ="ACP Magazines LTd" 02-Jan-08 03:21 PM +="CN52865" "Waste Management for Government Buildings" ="Department of the Environment and Water Resources" 02-Jan-08 ="Environmental Services" 08-Nov-07 14-Mar-08 40256.00 ="0708-526" ="Thiess Services Pty Ltd" 02-Jan-08 03:21 PM +="CN52866" "Accreditation as NRM ILMF professionals" ="Department of the Environment and Water Resources" 02-Jan-08 ="Education and Training Services" 24-Aug-07 31-Dec-07 39000.00 ="" ="NSW Department of Primary" 02-Jan-08 03:21 PM +="CN52867" "Professional service for temporary assistance for the Lower Murray Section" ="Department of the Environment and Water Resources" 02-Jan-08 ="Water resources development and oversight" 20-Nov-07 31-Jan-08 25560.00 ="0708-606" ="Hays Personnel" 02-Jan-08 03:21 PM +="CN52868" "Define and Design phases for an Internet chemicals monitoring database - 2007/147-03(02)" ="Department of the Environment and Water Resources" 02-Jan-08 ="Environmental protection" 27-Aug-07 31-Dec-07 40000.00 ="0607-548" ="SRA Information Technology" 02-Jan-08 03:21 PM +="CN52869" "Advertising position 23305 - APS 6" ="Department of the Environment and Water Resources" 02-Jan-08 ="Advertising" 27-Aug-07 13-Sep-07 11493.21 ="0708-186" ="HMA Blaze Pty Ltd" 02-Jan