Skip to content

Instantly share code, notes, and snippets.

@aveek22
Created February 17, 2021 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aveek22/70df045bd987d58f5e6ff984d43cee87 to your computer and use it in GitHub Desktop.
Save aveek22/70df045bd987d58f5e6ff984d43cee87 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
DROP TABLE IF EXISTS GreaterManchesterCrime;
CREATE TABLE IF NOT EXISTS GreaterManchesterCrime (
CrimeID TEXT PRIMARY KEY ,
CrimeTS TIMESTAMP,
Location TEXT,
LSOA TEXT,
Type TEXT,
Outcome TEXT,
theGeom GEOMETRY
);
CREATE INDEX GreaterManchesterCrime_geom_idx
ON GreaterManchesterCrime
USING GIST (theGeom);
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0F:67:BA:85:59:6E','2018-08-24 22:22:01','On or near Holland Street','Tameside 025A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.125952 53.456924)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:68:4D:92:FB:10','2018-08-23 15:57:24','On or near Back Burnaby Street','Bolton 021E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.445266 53.568947)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F3:AF:79:03:F9:55','2018-08-29 07:47:27','On or near Aldworth Grove','Trafford 019D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.354261 53.419073)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('33:F2:BA:C7:2D:88','2018-08-06 19:33:11','On or near Shrewsbury Close','Wigan 016A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.563494 53.536908)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D2:70:22:5F:62:15','2018-08-13 16:44:27','On or near Pym Street','Manchester 007B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.199558 53.513226)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C0:D2:21:9B:EE:8A','2018-08-26 22:41:09','On or near Debenham Avenue','Manchester 012E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.181146 53.495791)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E8:8B:3A:F9:7F:89','2018-08-25 19:08:15','On or near Parking Area','Manchester 050E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.265998 53.380426)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5E:F0:0E:B9:E1:FB','2018-08-06 14:15:50','On or near Airport/Airfield','Manchester 053D','Shoplifting','Awaiting court outcome',ST_GeomFromText('POINT(-2.270186 53.360552)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0E:B3:34:3A:AE:42','2018-08-21 20:42:30','On or near Redmere Drive','Bury 013C','Public order','Under investigation',ST_GeomFromText('POINT(-2.282882 53.582205)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('75:4F:3B:02:1C:B8','2018-08-13 04:41:40','On or near Derwent Street','Tameside 012C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.167349 53.483021)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CA:C0:2E:6C:9F:46','2018-08-26 09:08:30','On or near Greenside Drive','Trafford 027E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.345409 53.372142)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5C:10:D5:F2:DF:FF','2018-08-02 13:28:42','On or near Supermarket','Tameside 017E','Robbery','Under investigation',ST_GeomFromText('POINT(-2.09299 53.479488)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('01:57:EC:73:F3:FA','2018-08-13 21:18:43','On or near Rutland Street','Manchester 017E','Possession of weapons','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.164636 53.467403)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E2:E4:BE:A8:D3:21','2018-08-08 04:14:04','On or near Cook Street','Wigan 030A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.520473 53.495927)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('79:F8:FD:2A:11:7E','2018-08-19 04:51:17','On or near Bowden Street','Tameside 021C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.115603 53.455802)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('48:CE:F3:1D:C4:79','2018-08-03 05:03:08','On or near Buxton Crescent','Rochdale 012C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.137867 53.601381)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D5:0E:96:30:27:AC','2018-08-14 20:13:59','On or near Kildare Crescent','Rochdale 016D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.152842 53.593094)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('71:4F:EC:4C:E4:AE','2018-08-14 02:45:13','On or near Wellington Road','Salford 005B','Public order','Under investigation',ST_GeomFromText('POINT(-2.336986 53.511929)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('02:41:D9:93:80:EA','2018-08-21 12:12:09','On or near Ash Street','Salford 023A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.292908 53.485637)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1E:BB:F1:C5:21:18','2018-08-15 18:52:19','On or near Parking Area','Manchester 055A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.235852 53.474591)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:A1:55:52:96:41','2018-08-27 13:55:27','On or near Bridge Street','Rochdale 013A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.113897 53.611257)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('30:3B:C1:D4:3F:2F','2018-08-13 20:45:02','On or near Back Piccadilly','Manchester 055B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.234819 53.481316)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('56:76:5C:34:81:7D','2018-08-08 03:29:51','On or near Ryecroft Street','Tameside 013E','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.110143 53.481532)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('52:22:0C:BB:75:CB','2018-08-07 08:02:54','On or near Irwell Street','Salford 022G','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.256987 53.481603)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C2:B2:8D:94:61:8C','2018-08-10 22:58:24','On or near Back Ashford Walk','Bolton 016C','Possession of weapons','Under investigation',ST_GeomFromText('POINT(-2.436716 53.586147)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8F:F1:1D:F9:6E:C5','2018-08-11 05:16:01','On or near Higher Bury Street','Stockport 011D','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.17211 53.41223)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('74:FB:97:C8:AC:06','2018-08-14 00:40:22','On or near Leam Street','Tameside 004E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.079743 53.494077)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:C3:24:85:CA:EC','2018-08-06 17:48:50','On or near Highbank Drive','Manchester 045D','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.228962 53.403873)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DC:9D:E8:09:28:43','2018-08-12 01:33:36','On or near Hood Square','Oldham 021D','Other theft','Under investigation',ST_GeomFromText('POINT(-2.057674 53.536983)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:48:72:51:F4:B7','2018-08-21 09:01:13','On or near Ramsgate Street','Salford 016A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.25517 53.49775)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:D6:8E:4C:97:85','2018-08-01 06:53:10','On or near Scarisbrick Street','Wigan 006A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.628608 53.552646)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('10:D2:91:38:10:2E','2018-08-08 17:33:36','On or near Eyet Street','Wigan 030C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.523142 53.499753)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('18:B9:DB:AB:31:8D','2018-08-09 17:03:51','On or near Dawson Street','Rochdale 018B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.224143 53.593943)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:28:CF:78:D4:C6','2018-08-03 14:46:12','On or near Lower Leigh Road','Bolton 035C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.517419 53.534789)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('72:29:67:1A:CE:78','2018-08-08 01:35:31','On or near Kingsley Street','Bury 010E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.319883 53.593608)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('45:11:F8:9F:6A:8B','2018-08-07 03:28:59','On or near Hesketh Street','Wigan 022B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.485681 53.527425)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FD:F7:AE:98:0F:07','2018-08-29 01:38:49','On or near Winnipeg Quay','Salford 028E','Public order','Under investigation',ST_GeomFromText('POINT(-2.290913 53.471539)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A0:CB:8D:8A:24:AD','2018-08-03 18:43:07','On or near Fernside Grove','Salford 003C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.393209 53.528943)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('43:65:01:13:50:BF','2018-08-11 21:31:27','On or near Greenlees Street','Rochdale 010C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.157634 53.622074)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('25:BE:DF:C1:FF:3D','2018-08-17 13:57:01','On or near Argyll Avenue','Trafford 006D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.3212 53.450482)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D5:75:CC:D4:8B:0A','2018-08-23 02:38:43','On or near Clifton Close','Oldham 022E','Public order','Under investigation',ST_GeomFromText('POINT(-2.092617 53.536098)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D6:13:4C:C2:15:9C','2018-08-05 16:51:23','On or near Fifth Street','Trafford 006B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.310337 53.463985)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D8:4B:8E:C9:5F:E0','2018-08-12 23:38:24','On or near Supermarket','Manchester 054C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238508 53.48343)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('53:37:E8:C6:D4:28','2018-08-14 12:46:48','On or near Sports/Recreation Area','Bolton 013C','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.394406 53.591192)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('26:9F:3E:F9:87:B4','2018-08-29 00:42:13','On or near Platt Street','Tameside 017A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.10102 53.472561)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F2:F3:B2:32:AD:58','2018-08-23 11:19:22','On or near Epsom Avenue','Trafford 019E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.36003 53.41439)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D3:58:B4:35:6D:EB','2018-08-13 10:55:13','On or near Crompton Street','Wigan 006A','Shoplifting','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.629032 53.547619)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('69:0C:D9:3C:84:98','2018-08-10 23:46:07','On or near Chadwick Street','Bolton 017A','Other crime','Under investigation',ST_GeomFromText('POINT(-2.41597 53.576334)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('24:E7:2F:22:5A:80','2018-08-29 10:25:24','On or near Briardale Walk','Trafford 019A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.360817 53.407889)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EB:7A:DF:9D:CF:9F','2018-08-24 18:53:34','On or near Prison','Manchester 058C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.246337 53.492717)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D5:AE:4C:48:D8:C2','2018-08-25 07:49:24','On or near Travis Street','Tameside 028B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.074043 53.449795)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B6:16:BA:82:E6:EC','2018-08-25 22:06:24','On or near Collin Avenue','Manchester 023A','Possession of weapons','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.17503 53.456449)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E0:C9:65:B4:18:DA','2018-08-14 08:08:52','On or near The Mews','Wigan 013A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.580017 53.532578)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('14:79:BF:E0:0C:EB','2018-08-01 14:25:16','On or near Vernon Avenue','Stockport 014A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.142808 53.413266)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DA:2E:DA:93:6D:4D','2018-08-22 07:59:43','On or near Birkinbrook Close','Bury 021B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.28512 53.551172)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:4E:13:AE:A3:4A','2018-08-08 14:41:56','On or near Piccadilly','Manchester 055B','Public order','Under investigation',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BC:F4:B0:BD:FC:D5','2018-08-18 22:09:40','On or near Croft Street','Tameside 009B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.049192 53.483308)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('82:38:DB:F3:F8:5F','2018-08-24 12:14:50','On or near Brierley Avenue','Oldham 033B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.150105 53.507142)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C3:32:5C:4F:0D:62','2018-08-07 17:18:33','On or near Winster Avenue','Salford 011D','Public order','Under investigation',ST_GeomFromText('POINT(-2.278899 53.504996)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0F:54:DE:A0:2E:D3','2018-08-16 17:32:58','On or near Hamer Drive','Trafford 001D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.263542 53.462281)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:66:F6:A1:81:3C','2018-08-01 22:17:04','On or near Stoneacre Court','Salford 012B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.333905 53.509412)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9D:E5:A9:84:0D:FA','2018-08-08 20:43:11','On or near Mackeson Drive','Tameside 007D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.076775 53.494619)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1C:F5:FA:DD:54:5F','2018-08-02 02:39:23','On or near High Bankside','Stockport 014B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.157376 53.410614)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:D3:CC:30:F2:DF','2018-08-08 14:19:08','On or near Parking Area','Oldham 014B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.114062 53.543647)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('03:7E:05:03:57:23','2018-08-13 09:33:08','On or near Shopping Area','Wigan 021A','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.669939 53.521339)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BB:59:C7:55:D8:EE','2018-08-21 08:25:59','On or near Bruce Street','Rochdale 017E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.178624 53.60183)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:E7:3C:E0:CF:89','2018-08-27 13:08:36','On or near Petrol Station','Wigan 024A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.607713 53.525977)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:21:E1:65:C7:F4','2018-08-09 22:19:29','On or near Osborne Street','Rochdale 015B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.159462 53.605839)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2C:94:CA:40:35:6A','2018-08-14 03:33:12','On or near Shopping Area','Rochdale 010C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.158993 53.617615)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:02:46:E2:00:D9','2018-08-06 20:29:58','On or near High Gates','Trafford 014C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.301323 53.426939)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:2A:F2:B6:99:E1','2018-08-18 16:21:34','On or near War Office Road','Rochdale 011B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.208645 53.610114)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7C:D5:98:B5:09:66','2018-08-16 03:14:02','On or near Princess Avenue','Tameside 025B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.117437 53.454659)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('80:BC:8D:28:83:25','2018-08-30 03:25:51','On or near Hunters Hill','Bury 017D','Public order','Under investigation',ST_GeomFromText('POINT(-2.277746 53.565985)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7D:39:F2:13:C5:EF','2018-08-06 06:13:29','On or near Postal Street','Manchester 055D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.231376 53.482671)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('23:03:6F:81:38:E6','2018-08-07 20:58:41','On or near Prison','Manchester 058C','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.246337 53.492717)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('34:C4:1B:C3:CB:F5','2018-08-25 15:02:43','On or near Lancaster Street','Bury 016A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.347761 53.562691)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:C4:BF:46:55:58','2018-08-01 14:06:25','On or near Castle Street','Tameside 015B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.059077 53.482638)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('89:FD:5E:E6:EB:85','2018-08-20 17:30:11','On or near Brooklawn Drive','Manchester 040C','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.228436 53.423505)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B5:CB:64:B8:4A:37','2018-08-12 14:05:59','On or near Etruria Close','Manchester 018C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.211915 53.463184)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('48:56:8E:ED:DB:6A','2018-08-03 06:29:21','On or near West Street','Rochdale 013D','Drugs','Offender given a drugs possession warning',ST_GeomFromText('POINT(-2.124325 53.615903)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:A0:B8:A0:F1:F5','2018-08-06 05:06:38','On or near Wellington Road North','Stockport 014B','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.163377 53.410129)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:75:71:63:74:C2','2018-08-13 23:20:48','On or near Hebble Butt Close','Rochdale 013B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.119203 53.611459)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:DC:17:53:8F:2A','2018-08-14 13:56:54','On or near Tudor Close','Tameside 001D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.025402 53.515188)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DF:5B:E7:8B:E4:BF','2018-08-20 20:31:55','On or near Back Weston Street North','Bolton 022B','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.418898 53.56702)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('78:E0:74:87:32:12','2018-08-28 01:16:24','On or near Malvern Street','Trafford 001E','Possession of weapons','Under investigation',ST_GeomFromText('POINT(-2.26486 53.465838)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('43:9B:91:88:DA:69','2018-08-09 05:52:03','On or near Collingwood Close','Stockport 031B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.110146 53.384133)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5A:6C:0D:F6:B5:3A','2018-08-24 08:36:48','On or near Linden Avenue','Tameside 019B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.128168 53.472607)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:80:D0:80:E9:65','2018-08-16 01:33:07','On or near South View Terrace','Rochdale 003D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.117852 53.636762)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D7:0E:A8:5C:F1:9F','2018-08-15 08:01:32','On or near Regent Street','Salford 020A','Other theft','Under investigation',ST_GeomFromText('POINT(-2.334256 53.483218)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('51:AB:75:BB:E6:43','2018-08-05 20:00:21','On or near Essex Street','Wigan 009E','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.61841 53.54994)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4F:72:88:61:2E:DA','2018-08-30 00:16:21','On or near Chester Street','Manchester 055A','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.242148 53.471657)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:5D:B2:CF:A2:CE','2018-08-17 12:01:12','On or near Petrol Station','Trafford 002E','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.352497 53.467652)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('96:2E:6E:B3:F4:06','2018-08-17 06:10:14','On or near Shopping Area','Rochdale 010C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.158993 53.617615)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('77:75:5A:AD:D1:8D','2018-08-22 20:43:01','On or near Glen Avenue','Manchester 007A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.20217 53.51715)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('96:08:CA:68:C5:4E','2018-08-12 13:43:26','On or near Grundy Street','Bolton 025C','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.440405 53.567545)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:CD:FA:44:E7:36','2018-08-04 00:24:15','On or near Shopping Area','Manchester 031C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.188818 53.44139)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('92:25:64:0C:60:7E','2018-08-01 04:42:06','On or near Whitehead Crescent','Bury 005C','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.314869 53.608129)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D3:78:00:F8:DF:F0','2018-08-01 02:20:28','On or near Parkville Road','Manchester 040E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.22342 53.42551)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0F:15:4F:C8:92:7D','2018-08-20 10:11:14','On or near St Chad''S Street','Manchester 056C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.23916 53.492291)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:EE:47:34:97:10','2018-08-24 18:45:12','On or near Peers Close','Trafford 007A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.394334 53.456852)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E3:53:30:51:D4:E3','2018-08-25 15:39:43','On or near Camp Street','Tameside 013A','Public order','Under investigation',ST_GeomFromText('POINT(-2.092637 53.490338)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0E:FA:BE:A4:52:84','2018-08-14 14:36:29','On or near Shopping Area','Trafford 003B','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.284324 53.461712)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B7:DA:B1:71:AD:7E','2018-08-19 07:07:22','On or near Grace Street','Rochdale 008A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.148039 53.628055)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F0:5E:1C:D8:A9:50','2018-08-23 23:14:46','On or near Boundry Green','Tameside 025A','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.118507 53.460527)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:44:72:CE:A0:58','2018-08-15 20:03:12','On or near Little London','Wigan 006A','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.629108 53.550756)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('20:B9:AA:CB:D5:7B','2018-08-25 00:06:41','On or near St Peter''S Square','Manchester 060A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.243916 53.477837)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:58:73:2D:93:09','2018-08-28 15:14:05','On or near Left Bank','Manchester 060B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.252946 53.481189)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:3C:EE:D6:39:AD','2018-08-13 11:59:09','On or near Shopping Area','Manchester 056C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.233218 53.497076)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F4:D2:41:03:2B:F9','2018-08-09 18:28:28','On or near Taplin Drive','Manchester 023C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.174582 53.461096)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('15:BC:C3:40:EC:EC','2018-08-18 07:57:13','On or near Meal Street','Stockport 007D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.165048 53.41837)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1B:43:E8:05:53:85','2018-08-08 06:01:21','On or near Church Street','Salford 026A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.341732 53.483341)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:3F:74:23:77:20','2018-08-26 19:32:03','On or near Nantwich Road','Manchester 030F','Drugs','Under investigation',ST_GeomFromText('POINT(-2.236362 53.444532)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A8:F9:97:B6:F6:28','2018-08-12 02:16:49','On or near Green Lane','Wigan 019E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.548802 53.530226)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F9:7E:D6:35:D7:F8','2018-08-14 03:31:13','On or near Prinknash Road','Manchester 053A','Public order','Under investigation',ST_GeomFromText('POINT(-2.258414 53.374331)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0C:53:C8:99:23:56','2018-08-18 13:26:52','On or near Parking Area','Rochdale 010C','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.156189 53.619686)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DB:5C:41:D6:53:79','2018-08-29 19:36:49','On or near Long Grain Place','Stockport 024E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.123571 53.389144)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A9:34:C9:33:2B:A1','2018-08-25 12:39:17','On or near Rothesay Avenue','Tameside 018C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.087866 53.471735)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8B:6F:40:A7:60:54','2018-08-09 20:23:37','On or near Manchester Road','Salford 009A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.352726 53.517043)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2C:44:09:46:1E:CD','2018-08-10 14:49:02','On or near Church Road','Trafford 010B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.372715 53.442198)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('84:10:60:D9:17:59','2018-08-25 14:19:17','On or near Georgina Street','Bolton 026A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.457207 53.558853)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('23:46:FD:A2:6A:E0','2018-08-28 20:53:04','On or near Lupin Avenue','Bolton 029C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.417757 53.5508)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E7:B9:A9:89:29:5B','2018-08-11 12:04:40','On or near Hesketh Street','Wigan 015B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.657165 53.542839)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A8:B0:EC:3A:31:CE','2018-08-14 19:58:52','On or near Parkhouse Street','Manchester 015D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.182233 53.474954)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('72:74:19:5C:B3:5E','2018-08-07 09:06:27','On or near Brierfield Avenue','Wigan 017A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.495819 53.528795)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('79:49:2B:1C:BB:F1','2018-08-25 22:49:39','On or near Leaside Drive','Manchester 041D','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.215447 53.425983)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CA:B1:43:07:34:70','2018-08-29 12:37:34','On or near Hayes Street','Wigan 033E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.552077 53.494347)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3E:CD:73:10:2A:92','2018-08-27 04:07:29','On or near Parking Area','Wigan 012B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.607778 53.54106)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('54:B7:FE:E7:E4:0E','2018-08-26 00:08:38','On or near St Bees Close','Manchester 019B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.24017 53.460263)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4B:91:0E:E3:6C:54','2018-08-24 12:44:23','On or near Supermarket','Wigan 027B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.526763 53.499935)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('98:7B:30:CE:B2:84','2018-08-13 07:11:32','On or near Centenary Way','Salford 021C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.327354 53.481152)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D7:4E:68:99:8B:33','2018-08-02 00:51:48','On or near Thorburn Road','Wigan 014E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.672814 53.537143)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8C:42:2E:52:96:84','2018-08-02 14:33:40','On or near Back Deane Church Lane','Bolton 021A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.458424 53.565311)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E7:1E:92:5B:6C:28','2018-08-29 07:15:31','On or near Hampshire Close','Bury 011C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.283696 53.584226)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7A:0F:D9:19:65:13','2018-08-23 13:11:36','On or near International Approach','Manchester 053D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.271671 53.362562)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('ED:7B:BC:59:00:41','2018-08-17 18:22:03','On or near Orchard Close','Wigan 027E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.51549 53.506474)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('62:ED:AA:D7:A8:11','2018-08-04 16:00:31','On or near Hoole Close','Stockport 022E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.195791 53.389542)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:90:09:61:C3:16','2018-08-07 02:27:25','On or near Cutgate Road','Rochdale 007F','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.185997 53.625602)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('79:50:F0:37:EC:1D','2018-08-19 17:50:55','On or near Nansen Street','Salford 023A','Other theft','Under investigation',ST_GeomFromText('POINT(-2.295463 53.484624)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F2:BF:C4:32:B5:1C','2018-08-08 15:14:55','On or near Parking Area','Manchester 053D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.273249 53.362505)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5B:D2:7C:2B:DC:02','2018-08-28 01:12:22','On or near Sussex Drive','Bury 011C','Public order','Under investigation',ST_GeomFromText('POINT(-2.290122 53.583024)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:E8:A1:98:D8:A0','2018-08-07 21:29:48','On or near Thorngrove Avenue','Manchester 047C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.305385 53.399541)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('51:0A:79:F3:6E:27','2018-08-30 16:10:47','On or near Shone Avenue','Manchester 052D','Possession of weapons','Awaiting court outcome',ST_GeomFromText('POINT(-2.24859 53.377956)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6B:A3:12:16:B3:24','2018-08-30 00:27:18','On or near Battersbay Grove','Stockport 031D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.115483 53.378357)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:82:B8:1F:C2:2D','2018-08-24 21:07:43','On or near Tynwald Street','Oldham 019C','Public order','Awaiting court outcome',ST_GeomFromText('POINT(-2.089024 53.542527)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:B2:CE:08:E6:E2','2018-08-21 19:06:01','On or near Sackville Street','Tameside 013A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.094387 53.490885)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('19:8A:D5:D9:8E:B7','2018-08-25 04:30:29','On or near Supermarket','Trafford 016C','Public order','Under investigation',ST_GeomFromText('POINT(-2.350825 53.414777)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('77:08:5A:F7:43:10','2018-08-09 16:14:44','On or near Chippendale Place','Tameside 004C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.072216 53.499646)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('46:2C:0A:69:E6:32','2018-08-06 20:25:18','On or near Haworth Road','Manchester 023C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.173283 53.460074)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6A:95:2B:69:68:9A','2018-08-10 04:42:07','On or near Parking Area','Manchester 050E','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.265998 53.380426)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EC:C4:35:CC:B2:19','2018-08-04 07:06:56','On or near Hawkswick Drive','Manchester 044E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.28445 53.41534)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:AE:92:5A:ED:52','2018-08-22 16:38:39','On or near Back Higher Darcy Street','Bolton 017B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.407964 53.569952)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('89:F4:BE:46:04:B2','2018-08-14 20:15:36','On or near Kevin Street','Manchester 031C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.189132 53.440895)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EE:63:2B:41:48:69','2018-08-17 21:32:30','On or near South Croston Street','Trafford 001D','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.259219 53.459666)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('54:EB:5A:91:43:46','2018-08-28 20:45:26','On or near South Mesnefield Road','Salford 011C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.28409 53.510071)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:21:1E:2B:4F:11','2018-08-24 15:55:32','On or near Kensington Avenue','Manchester 022C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.212603 53.456271)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:F8:3F:25:28:05','2018-08-27 02:19:00','On or near Sports/Recreation Area','Trafford 020A','Other theft','Under investigation',ST_GeomFromText('POINT(-2.346572 53.400498)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3B:1E:2E:1E:96:18','2018-08-03 05:42:21','On or near Police Station','Manchester 022G','Possession of weapons','Awaiting court outcome',ST_GeomFromText('POINT(-2.20838 53.461069)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:69:75:C8:E8:41','2018-08-17 00:40:24','On or near Kellett Street','Rochdale 008F','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.143185 53.619073)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AF:DA:17:6F:1D:F6','2018-08-02 12:21:09','On or near James Street','Bury 018D','Other crime','Under investigation',ST_GeomFromText('POINT(-2.325448 53.554907)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('18:72:F3:FC:B0:6F','2018-08-15 18:52:12','On or near Bridge Hall Drive','Bury 007D','Public order','Under investigation',ST_GeomFromText('POINT(-2.266716 53.593604)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('48:C0:A2:CC:77:96','2018-08-10 10:34:08','On or near Beveridge Street','Manchester 025B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236784 53.452711)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:CF:9B:DA:14:D1','2018-08-15 18:12:14','On or near Walker Road','Salford 019E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.373285 53.495093)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('50:6F:F9:6B:1F:E4','2018-08-12 13:49:38','On or near Heywood Street','Bury 008F','Public order','Under investigation',ST_GeomFromText('POINT(-2.286761 53.590663)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A1:A6:15:08:D6:CB','2018-08-17 10:26:06','On or near Woodley Close','Stockport 021A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.127101 53.398057)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:88:1C:98:F7:2A','2018-08-04 19:52:40','On or near Clifton Avenue','Manchester 036B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.218538 53.438903)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D7:AB:40:D8:6A:72','2018-08-09 21:08:13','On or near Columbia Street','Oldham 024B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.112474 53.5312)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('ED:88:82:34:AF:83','2018-08-22 21:27:20','On or near Pyramid Court','Salford 016F','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.260812 53.50341)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E3:76:E2:E2:C4:51','2018-08-15 12:02:23','On or near Constable Street','Manchester 017E','Burglary','Under investigation',ST_GeomFromText('POINT(-2.165163 53.467339)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FE:1F:62:20:85:16','2018-08-11 05:46:35','On or near Cranshaw Street','Wigan 029D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.442801 53.513669)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E6:4E:C4:E8:D9:64','2018-08-14 03:04:42','On or near Bellshill Crescent','Rochdale 004B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.130498 53.622602)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('17:E1:AC:FC:38:19','2018-08-21 00:04:46','On or near Berwick Place','Wigan 007C','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.61452 53.55227)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C3:3F:31:A4:05:B4','2018-08-03 05:45:57','On or near Pimlott Grove','Bury 025A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.295273 53.522322)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:FD:50:26:87:01','2018-08-27 09:31:09','On or near Highwood Close','Bolton 013A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.384639 53.588663)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B5:2A:69:2A:E8:91','2018-08-10 00:43:47','On or near Petrol Station','Tameside 002A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.077692 53.501872)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E2:DE:C9:F6:20:ED','2018-08-23 15:48:41','On or near Tobermory Close','Manchester 012B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.171624 53.481936)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('14:CE:71:8F:71:AF','2018-08-06 16:27:24','On or near Stirling Road','Oldham 028B','Violence and sexual offences','Offender given a caution',ST_GeomFromText('POINT(-2.154377 53.529212)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('71:D8:A8:3F:7B:79','2018-08-10 21:29:12','On or near Deyne Avenue','Manchester 026C','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.224998 53.456455)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:A1:D1:3A:4F:FD','2018-08-28 07:41:20','On or near Station Road','Stockport 014B','Public order','Under investigation',ST_GeomFromText('POINT(-2.160811 53.407841)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:23:F8:38:A5:DF','2018-08-20 02:54:06','On or near Great Portwood Street','Stockport 014B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.152019 53.414387)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:05:E0:BF:A2:7E','2018-08-16 06:16:36','On or near Market Street','Trafford 025B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.35218 53.387547)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7A:B2:A7:7C:08:B3','2018-08-07 11:39:59','On or near Hannah Street','Manchester 027A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.191193 53.450653)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('08:7F:FE:CB:9A:5D','2018-08-24 23:56:05','On or near Topping Fold Road','Bury 007B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.268536 53.59706)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:B0:7E:7D:9A:D1','2018-08-22 10:22:13','On or near Ravenoak Road','Stockport 027C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.146632 53.387923)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:22:31:B0:FB:24','2018-08-08 17:11:59','On or near Conway Close','Wigan 031A','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.482813 53.504786)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('02:9C:B9:F5:52:74','2018-08-26 19:49:45','On or near Dowson Street','Bolton 017A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.419799 53.578684)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2F:4D:77:ED:EF:C3','2018-08-29 15:59:37','On or near Stockport Road','Manchester 018C','Public order','Under investigation',ST_GeomFromText('POINT(-2.218502 53.467046)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BB:C0:03:C5:A8:B4','2018-08-15 00:53:33','On or near Winster Drive','Wigan 024D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.605276 53.520111)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('47:D4:E0:FC:F0:9B','2018-08-05 17:13:50','On or near Supermarket','Rochdale 010C','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.161102 53.619643)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5A:B3:6F:74:C7:71','2018-08-25 13:57:55','On or near Police Station','Salford 009B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.342229 53.513325)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:5B:7C:C3:02:C6','2018-08-26 15:56:40','On or near Bedford Street','Wigan 014B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.674725 53.534903)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7D:6A:00:E0:F3:DC','2018-08-25 05:57:05','On or near Park Hill Street','Bolton 015C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.443191 53.582779)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('34:DE:D7:2E:79:D6','2018-08-23 16:25:39','On or near Supermarket','Tameside 013A','Public order','Awaiting court outcome',ST_GeomFromText('POINT(-2.105918 53.491423)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('88:BB:7D:FA:E0:FE','2018-08-01 16:44:37','On or near Shopping Area','Rochdale 024E','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.201051 53.548233)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:FA:52:3E:60:42','2018-08-07 23:37:00','On or near Margroy Close','Rochdale 008A','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.147648 53.628649)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:7B:E4:D1:74:76','2018-08-30 16:08:15','On or near Nevill Road','Stockport 032A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.162803 53.378095)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EB:22:44:79:07:AB','2018-08-22 01:42:40','On or near Tweed Close','Oldham 024D','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.117056 53.535007)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AD:C9:FC:1E:B4:8E','2018-08-09 14:34:01','On or near Pedestrian Subway','Bolton 022E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.419182 53.575927)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('80:29:F5:B0:69:36','2018-08-24 04:40:29','On or near Police Station','Manchester 022G','Public order','Awaiting court outcome',ST_GeomFromText('POINT(-2.20838 53.461069)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:33:42:FD:5A:D8','2018-08-24 13:11:07','On or near Park/Open Space','Manchester 055C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.232549 53.479559)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A5:2D:E2:C4:1B:71','2018-08-21 08:22:54','On or near Greyhound Drive','Salford 017F','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.272851 53.49754)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('51:74:52:BF:EC:93','2018-08-16 21:34:03','On or near Theatre/Concert Hall','Manchester 055D','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.235113 53.482736)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('55:78:19:E4:71:86','2018-08-15 07:09:52','On or near Kimberley Street','Salford 016D','Public order','Under investigation',ST_GeomFromText('POINT(-2.252536 53.505962)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BE:BA:00:FB:12:55','2018-08-14 09:17:52','On or near Tonge Street','Manchester 018A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.214852 53.472158)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('88:73:B7:43:8E:C0','2018-08-21 03:29:04','On or near Pingot Avenue','Manchester 044C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.274613 53.41095)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E6:70:2C:EC:C5:69','2018-08-08 22:26:34','On or near Hill Cot Road','Bolton 003D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.427564 53.605819)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E3:EF:21:28:6B:A3','2018-08-17 21:17:36','On or near Mango Place','Salford 024D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.281774 53.486005)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:BE:50:F7:E0:09','2018-08-30 08:00:57','On or near Bank Lane','Salford 001D','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.426623 53.537934)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('38:9C:AF:6B:A4:79','2018-08-06 21:24:28','On or near Rydal Grove','Tameside 005E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.106786 53.494973)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E4:70:47:7F:22:5F','2018-08-06 19:06:48','On or near Hatherop Close','Salford 025B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.367105 53.481189)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('25:2F:A2:4B:AA:CD','2018-08-25 21:12:42','On or near Beatrice Road','Salford 014E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.36946 53.50599)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('35:76:17:A0:BC:3A','2018-08-25 03:26:23','On or near Timperley Fold','Tameside 006A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.087646 53.503743)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FC:E3:E5:EB:B9:B6','2018-08-22 14:53:08','On or near Curzon Road','Bolton 015D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.450543 53.578132)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C8:FD:0A:CC:51:27','2018-08-27 23:52:40','On or near Shopping Area','Bolton 022E','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.428965 53.578526)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1A:B7:87:5C:3B:31','2018-08-16 05:01:11','On or near Supermarket','Bury 022D','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.290006 53.535197)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('99:4C:B3:17:0A:70','2018-08-15 07:19:36','On or near Piccadilly','Manchester 055B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F3:6B:28:9E:6B:56','2018-08-11 12:35:31','On or near Stoneycroft Close','Bolton 007E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.533583 53.603542)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('08:DE:C5:9A:B6:E4','2018-08-23 16:20:31','On or near James Street','Bury 018D','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.325448 53.554907)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('75:3F:8F:C3:6B:D8','2018-08-28 19:15:22','On or near Travis Street','Tameside 028B','Drugs','Awaiting court outcome',ST_GeomFromText('POINT(-2.074043 53.449795)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1A:F0:67:DC:9B:DA','2018-08-17 08:48:53','On or near Parking Area','Stockport 005B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.100293 53.426325)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:EA:98:42:A2:6F','2018-08-12 11:32:57','On or near Burdett Avenue','Rochdale 007F','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.200291 53.623772)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:49:6E:9D:23:64','2018-08-14 14:35:37','On or near Shopping Area','Tameside 010E','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.147298 53.480512)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('35:6D:16:3C:16:7E','2018-08-13 18:23:48','On or near Dixon Avenue','Salford 016E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.257259 53.504172)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F3:66:42:68:10:8B','2018-08-10 22:38:46','On or near Ashton Street','Oldham 028E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.152127 53.52446)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('53:45:73:51:89:88','2018-08-16 13:08:39','On or near Worsley Grove','Salford 004D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.421276 53.522196)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DB:39:72:3C:E6:82','2018-08-12 10:08:52','On or near Hamsell Road','Manchester 018D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.226357 53.471229)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AC:9D:6B:3E:7D:6B','2018-08-22 01:32:24','On or near Ellesmere Road','Stockport 018C','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.194444 53.40078)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:27:40:50:63:20','2018-08-26 16:18:09','On or near Richmond Street','Manchester 055B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236952 53.47733)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('46:D1:12:72:02:C5','2018-08-15 16:58:19','On or near Waterson Avenue','Manchester 009E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.195216 53.506897)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('08:14:0F:85:AE:9A','2018-08-27 14:27:24','On or near Petrol Station','Manchester 002C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.214785 53.524435)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('69:65:C3:AF:3E:16','2018-08-14 07:31:04','On or near Further/Higher Educational Building','Manchester 060B','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.254413 53.479595)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8B:54:F4:39:D5:0B','2018-08-10 12:07:44','On or near Nuneham Avenue','Manchester 040B','Other theft','Under investigation',ST_GeomFromText('POINT(-2.224496 53.435405)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('26:C5:F4:0F:29:DE','2018-08-08 10:42:31','On or near Hughes Close','Bury 008A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.284426 53.596206)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EF:A2:FA:FB:EA:4E','2018-08-09 18:07:03','On or near Burton Road','Manchester 039D','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.243707 53.425767)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B6:0D:BC:A7:3F:87','2018-08-27 23:14:00','On or near Yorkshire Street','Oldham 014D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.107313 53.542197)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5D:9F:A8:BF:FE:20','2018-08-21 13:18:09','On or near Winstanley Road','Wigan 024B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.607051 53.510251)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('17:E2:81:32:53:47','2018-08-29 11:31:59','On or near Fereday Street','Salford 002D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.401069 53.529061)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C0:2B:F3:A1:69:1D','2018-08-29 20:27:16','On or near Nightclub','Manchester 055B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237689 53.477185)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D7:88:04:3F:05:F0','2018-08-08 10:54:01','On or near New Houses','Oldham 013C','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.042929 53.548197)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F6:A3:8A:7C:2D:A7','2018-08-12 05:28:29','On or near Ellesmere Road','Stockport 018C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.194444 53.40078)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9F:CA:10:E3:EE:74','2018-08-07 02:38:36','On or near Hindley Street','Tameside 013E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.109904 53.482575)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('48:92:81:BD:73:AC','2018-08-14 17:38:15','On or near Kingfisher Drive','Bolton 033E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.425268 53.544239)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('12:D2:07:29:50:B4','2018-08-20 16:55:57','On or near Back Bradshawgate','Bolton 016D','Burglary','Under investigation',ST_GeomFromText('POINT(-2.426183 53.57672)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('34:DD:45:D3:F3:2D','2018-08-26 19:32:04','On or near A5185','Salford 021B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.320032 53.489343)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:AF:74:DC:9A:AF','2018-08-04 22:25:26','On or near Tranby Close','Manchester 052A','Criminal damage and arson','Awaiting court outcome',ST_GeomFromText('POINT(-2.248769 53.385371)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2F:E9:2E:50:DF:AA','2018-08-30 14:44:05','On or near Lewis Street','Salford 026C','Public order','Under investigation',ST_GeomFromText('POINT(-2.35304 53.480486)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CC:F4:50:60:CE:1B','2018-08-08 18:33:51','On or near Howard Street','Tameside 006E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.10259 53.492478)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('09:19:CF:DC:9C:78','2018-08-08 01:41:07','On or near Alfreton Avenue','Tameside 029F','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.105475 53.440585)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:AE:04:AF:0E:6F','2018-08-24 14:51:20','On or near Back Acton Street','Manchester 055C','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.232396 53.476341)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1A:03:76:44:BE:E0','2018-08-30 00:33:16','On or near Samuel Street','Wigan 022D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.475463 53.517552)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:B9:66:7B:8D:EF','2018-08-28 14:40:11','On or near Back Piccadilly','Manchester 055B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.234819 53.481316)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A0:36:47:D6:5F:1F','2018-08-05 11:10:38','On or near Kensington Street','Manchester 024D','Drugs','Under investigation',ST_GeomFromText('POINT(-2.23915 53.455663)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:E3:34:F5:A2:7C','2018-08-19 04:06:25','On or near Victoria Street','Manchester 054C','Robbery','Under investigation',ST_GeomFromText('POINT(-2.244836 53.48597)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:11:D0:85:F5:68','2018-08-02 16:59:49','On or near St Pauls Road','Salford 007A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.38641 53.522853)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7C:F4:1D:16:9A:5B','2018-08-09 08:11:41','On or near Whitworth Street East','Manchester 015E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.176589 53.472716)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7E:35:70:C6:01:B6','2018-08-27 17:40:44','On or near Fir Tree Drive','Tameside 020B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.072037 53.465104)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5D:95:24:B9:5F:E7','2018-08-10 09:05:37','On or near Acacia Grove','Stockport 007A','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.15258 53.423995)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('48:8F:76:F8:76:26','2018-08-13 13:46:58','On or near Shopping Area','Manchester 050E','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.261255 53.379322)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A9:73:ED:2B:43:4D','2018-08-19 00:36:56','On or near Beaminster Road','Stockport 008D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.19831 53.417222)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('47:D3:60:23:56:F0','2018-08-30 17:31:49','On or near Bromley Avenue','Oldham 004D','Public order','Under investigation',ST_GeomFromText('POINT(-2.136586 53.574463)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5B:87:59:6B:4B:CC','2018-08-02 16:10:52','On or near Tiviot Dale','Stockport 014D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.158965 53.413075)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F9:E2:55:98:71:3A','2018-08-04 16:21:45','On or near Lea Road','Stockport 036B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.229289 53.372467)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B7:B4:CA:30:F3:98','2018-08-08 00:09:15','On or near Beresford Street','Oldham 032B','Public order','Under investigation',ST_GeomFromText('POINT(-2.165798 53.506564)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2F:01:A6:20:76:D7','2018-08-18 06:27:55','On or near Crabtree Road','Wigan 010B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.667129 53.542118)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:53:BF:72:AD:EF','2018-08-14 03:43:40','On or near Bank Street','Tameside 013A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.097732 53.484087)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4B:53:D3:53:6C:1E','2018-08-14 06:10:38','On or near Fern Bank Drive','Manchester 047C','Public order','Under investigation',ST_GeomFromText('POINT(-2.301779 53.402094)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('ED:B2:8A:45:19:CB','2018-08-19 16:18:59','On or near Eddie Colman Close','Manchester 011A','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.182553 53.50031)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AF:C3:44:F9:D9:2E','2018-08-15 09:59:59','On or near Dene Road','Manchester 043F','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237073 53.4153)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0A:D4:95:CE:75:93','2018-08-01 11:54:34','On or near Walmer Street','Manchester 025D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.226978 53.454878)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('36:1C:9B:37:00:77','2018-08-02 17:42:34','On or near Haig Avenue','Salford 030D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.447383 53.420324)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AC:5F:5C:8D:D3:4A','2018-08-07 14:47:55','On or near Aspin Lane','Manchester 054D','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.236821 53.489042)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:98:05:E6:AB:62','2018-08-14 00:24:10','On or near Hardman Street','Oldham 027A','Robbery','Under investigation',ST_GeomFromText('POINT(-2.139267 53.526498)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B5:4C:8C:CB:B1:29','2018-08-17 22:57:21','On or near Brinsop Hall Lane','Bolton 014A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.555186 53.571867)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:34:4C:D5:60:B3','2018-08-22 12:50:47','On or near Queen Street','Manchester 054C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.247859 53.479627)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('77:D6:DB:0C:84:46','2018-08-01 04:41:25','On or near Fulwood Road','Wigan 040E','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.570947 53.468443)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0D:5A:35:C5:84:E0','2018-08-13 09:41:20','On or near Irwell Street','Bury 011B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.302732 53.593194)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8A:22:6D:F4:72:81','2018-08-28 21:31:18','On or near School Road','Trafford 015B','Public order','Under investigation',ST_GeomFromText('POINT(-2.319606 53.424707)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:35:CF:ED:77:D2','2018-08-06 22:46:56','On or near Sutherland Street','Tameside 007D','Burglary','Under investigation',ST_GeomFromText('POINT(-2.072106 53.488294)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('52:AD:D9:AA:29:B9','2018-08-19 06:33:50','On or near Carrgreen Close','Manchester 041A','Other crime','Under investigation',ST_GeomFromText('POINT(-2.20399 53.425024)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3B:96:E5:E5:55:46','2018-08-26 09:45:02','On or near Darlington Street East','Wigan 009A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.619317 53.543832)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0D:68:21:DB:D7:9C','2018-08-05 23:14:17','On or near Trafford Street','Manchester 060D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.250318 53.475029)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('14:60:10:91:87:FB','2018-08-17 22:19:11','On or near Catesby Road','Manchester 024B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.257791 53.455211)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E6:70:E7:E9:31:C2','2018-08-20 15:38:43','On or near Woodpark Close','Oldham 029C','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.102922 53.523919)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('58:FC:6B:36:CB:8C','2018-08-07 11:53:25','On or near The Coppice','Trafford 028B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.320525 53.368787)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4E:E3:65:4B:C8:3D','2018-08-16 18:28:55','On or near Nangreave Road','Stockport 024A','Possession of weapons','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.139022 53.396588)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F2:D8:54:25:C5:4E','2018-08-22 06:34:17','On or near Selby Road','Trafford 006C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.33124 53.453852)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:3A:5D:F0:F7:2D','2018-08-21 22:44:34','On or near St Michael''S Square','Manchester 054D','Other theft','Under investigation',ST_GeomFromText('POINT(-2.237391 53.488511)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:08:D1:A1:38:9F','2018-08-16 23:42:13','On or near Bexhill Road','Stockport 026D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.164507 53.387261)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:AF:56:CB:1D:88','2018-08-28 03:22:41','On or near Petworth Close','Manchester 049E','Other theft','Under investigation',ST_GeomFromText('POINT(-2.253896 53.392974)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('29:9F:9E:12:EF:22','2018-08-30 19:33:06','On or near Bibby Lane','Manchester 034B','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.202662 53.430626)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3A:62:EA:08:24:66','2018-08-04 20:45:00','On or near Raleigh Close','Oldham 014B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.112733 53.549024)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('77:6D:26:DE:FB:2B','2018-08-21 20:50:46','On or near Normanton Drive','Manchester 002D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.207683 53.528034)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('58:E1:DE:73:8E:0B','2018-08-30 09:56:38','On or near Ashdale Drive','Stockport 036D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.228622 53.37698)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('37:27:8A:75:89:A3','2018-08-13 12:00:17','On or near Pingot Avenue','Manchester 044C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.274613 53.41095)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C0:10:EC:70:3E:2B','2018-08-30 19:07:36','On or near Chapel Close','Bury 017D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.273472 53.565833)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:EF:A0:C3:AD:A9','2018-08-19 16:12:41','On or near Broad Walk','Bolton 031D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.526264 53.544871)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7C:87:9E:C2:BA:94','2018-08-19 21:14:40','On or near Adlington Close','Bury 010A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.333008 53.589186)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4E:FB:35:A8:D6:36','2018-08-11 17:34:43','On or near Morecambe Close','Manchester 011A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.184488 53.501673)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('76:7E:22:4D:6F:78','2018-08-02 17:09:02','On or near Cranwell Drive','Manchester 041E','Public order','Under investigation',ST_GeomFromText('POINT(-2.20784 53.421404)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7A:55:91:BB:26:7D','2018-08-18 22:08:18','On or near Fereday Street','Salford 002D','Drugs','Under investigation',ST_GeomFromText('POINT(-2.401069 53.529061)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:25:21:51:A1:F1','2018-08-04 15:19:27','On or near Highfield Street','Tameside 017E','Burglary','Under investigation',ST_GeomFromText('POINT(-2.094738 53.479622)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('78:5F:14:4F:35:DF','2018-08-27 11:10:18','On or near West Street','Bury 016D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.32686 53.559883)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C5:B4:BF:57:EF:B9','2018-08-20 18:08:15','On or near Buddleia Grove','Salford 016C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.260808 53.505135)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('55:76:EA:AF:13:36','2018-08-07 11:00:15','On or near Kingfisher Drive','Bolton 033E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.425268 53.544239)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4B:9C:E9:6E:20:F5','2018-08-21 10:16:14','On or near Supermarket','Tameside 013A','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.105918 53.491423)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('09:E4:74:28:8F:2D','2018-08-26 14:38:07','On or near Kendrew Road','Bolton 018B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.462401 53.565898)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('12:75:B1:71:8D:A9','2018-08-11 19:50:37','On or near Petrol Station','Manchester 046A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.254568 53.402392)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('03:EE:84:2B:D8:76','2018-08-09 01:36:19','On or near Piccadilly','Manchester 055B','Drugs','Under investigation',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1E:A1:77:A8:84:E7','2018-08-24 20:01:46','On or near Lordsfields Avenue','Tameside 006D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.094744 53.495406)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('16:BD:0B:27:F9:A0','2018-08-19 21:01:38','On or near Leyland Street','Bury 013B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.293759 53.567187)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:B9:73:0D:3A:5C','2018-08-25 22:20:48','On or near Oak Street','Wigan 025B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.468175 53.515819)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8A:14:2A:4A:8F:38','2018-08-24 11:05:36','On or near Gertrude Close','Salford 028G','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.285583 53.476469)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B2:CD:84:4A:CF:F7','2018-08-24 00:13:40','On or near Imperial Drive','Wigan 031B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.485807 53.504226)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('82:7A:96:35:40:9B','2018-08-24 17:14:43','On or near Hadfield Avenue','Oldham 035C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.14081 53.532239)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:71:3C:4F:C2:40','2018-08-18 22:05:19','On or near Oldcastle Avenue','Manchester 035A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237035 53.438167)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8B:94:01:66:DD:C7','2018-08-26 00:08:15','On or near Brookfield Gardens','Manchester 049A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.265483 53.394414)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CE:BA:3E:96:13:08','2018-08-16 08:48:37','On or near Moss Street','Salford 016A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.260837 53.49763)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5A:98:90:20:6F:AF','2018-08-04 13:10:52','On or near Higher Hillgate','Stockport 014B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.153865 53.404812)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('62:54:E0:D3:B7:DF','2018-08-03 17:22:20','On or near Station Approach','Manchester 055C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.231907 53.47787)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:74:90:6E:75:F3','2018-08-18 21:27:21','On or near Pedestrian Subway','Salford 020A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.336579 53.483437)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E0:AE:47:23:6B:6A','2018-08-01 09:40:23','On or near Nightclub','Manchester 054C','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.246399 53.482641)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:44:9F:76:FA:B6','2018-08-27 08:50:43','On or near Morley Street','Bury 011D','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.292502 53.58425)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DF:B5:8C:F7:E4:A9','2018-08-05 04:01:37','On or near Woollam Place','Manchester 060B','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.258223 53.476783)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('76:1B:C9:E4:57:60','2018-08-04 21:38:39','On or near Pilgrims Way','Salford 021C','Other theft','Under investigation',ST_GeomFromText('POINT(-2.325726 53.483134)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AE:07:04:6E:8A:1C','2018-08-10 16:20:42','On or near Union Buildings','Bolton 016D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.425573 53.576147)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:C3:A5:C7:4F:3D','2018-08-02 03:13:24','On or near Wood Street','Tameside 013A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.095373 53.487064)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:BB:44:B6:C9:8D','2018-08-25 18:10:03','On or near Stamford New Road','Trafford 025B','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.348449 53.387351)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E8:6D:B1:BF:29:81','2018-08-28 10:27:46','On or near Supermarket','Bolton 002D','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.41871 53.615199)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:25:7F:7F:A1:AA','2018-08-02 04:43:02','On or near Nightclub','Manchester 055B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237689 53.477185)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:29:32:BC:3C:FD','2018-08-24 14:08:58','On or near King William Street','Salford 019B','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.371024 53.489977)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D3:5D:88:AE:89:2B','2018-08-20 13:54:34','On or near Dean Street','Tameside 015A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.056275 53.483089)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C0:8C:24:97:3A:3E','2018-08-20 00:46:31','On or near South Street','Rochdale 008D','Burglary','Under investigation',ST_GeomFromText('POINT(-2.147182 53.620722)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:97:ED:97:A0:79','2018-08-28 10:48:30','On or near Hamilton Crescent','Stockport 011A','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.183145 53.410334)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('55:80:14:CB:C9:0F','2018-08-30 22:55:56','On or near Sackville Street','Manchester 055A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.235481 53.475697)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('57:BC:0B:BB:4E:57','2018-08-09 19:42:44','On or near Granada Road','Tameside 024C','Possession of weapons','Under investigation',ST_GeomFromText('POINT(-2.151435 53.453218)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('23:00:3C:C9:46:D2','2018-08-16 03:35:43','On or near Providence Street','Manchester 013G','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.218167 53.481015)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F8:4B:40:9E:9D:25','2018-08-22 23:47:26','On or near Walsden Street','Manchester 015A','Public order','Under investigation',ST_GeomFromText('POINT(-2.178879 53.483633)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AF:D6:3F:7E:FA:98','2018-08-20 22:11:58','On or near Evesham Grove','Trafford 014E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.30041 53.423337)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2D:10:FB:E8:B4:78','2018-08-14 09:42:31','On or near Back Fern Street East','Bolton 021C','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.448958 53.572502)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('ED:E0:FB:C1:A7:80','2018-08-25 03:10:57','On or near Devonshire Road','Salford 021C','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.327554 53.487614)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('23:EF:F9:B4:20:47','2018-08-14 01:41:57','On or near Laburnum Grove','Bury 022D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.284026 53.536632)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:F6:11:7F:08:90','2018-08-14 03:28:30','On or near Councillor Lane','Stockport 026A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.183437 53.387476)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D7:4D:0E:A1:33:30','2018-08-15 23:03:57','On or near May Street','Wigan 039B','Drugs','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.594307 53.482136)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BD:8A:AD:52:21:3F','2018-08-02 06:18:24','On or near Harrop Street','Manchester 021B','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.1582 53.466315)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3A:65:BC:7B:12:4F','2018-08-13 18:16:48','On or near East Mount','Wigan 018B','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.698333 53.537401)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5C:FE:BC:12:B5:0A','2018-08-30 17:30:08','On or near Cuckoo Grove','Bury 023A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.276338 53.540011)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('49:06:A5:F8:A7:1E','2018-08-27 08:52:16','On or near Kingsway','Manchester 032D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.204264 53.441436)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DD:09:95:AB:57:B1','2018-08-17 14:15:14','On or near Nightclub','Manchester 055B','Theft from the person','Under investigation',ST_GeomFromText('POINT(-2.238002 53.476636)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:C5:9C:89:F7:99','2018-08-06 20:16:27','On or near Westerdale Drive','Bolton 020B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.4687 53.570251)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C8:B0:E6:13:2C:D2','2018-08-14 01:55:05','On or near Seymour Grove','Manchester 029E','Other crime','Under investigation',ST_GeomFromText('POINT(-2.273377 53.45043)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('38:C6:44:B9:CA:23','2018-08-01 04:22:25','On or near West Street','Oldham 016D','Public order','Under investigation',ST_GeomFromText('POINT(-2.126531 53.540174)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:93:F2:64:07:10','2018-08-16 17:40:36','On or near Short Avenue','Tameside 011B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.154191 53.478104)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2A:F6:25:C0:66:42','2018-08-13 09:20:16','On or near Grafton Street','Oldham 031C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.151875 53.513081)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('10:09:B9:B1:D1:AA','2018-08-18 22:48:21','On or near Weston Street','Wigan 022A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.479048 53.527893)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5E:07:3F:43:1A:E9','2018-08-17 11:22:46','On or near Shopping Area','Manchester 006B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.212736 53.512943)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F2:24:96:72:DB:BD','2018-08-12 07:17:10','On or near Hospital','Manchester 018B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.227711 53.462436)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6B:C4:7E:3B:44:9D','2018-08-02 08:18:11','On or near Kelvin Street','Manchester 054E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236761 53.483703)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('59:2D:F0:B8:6B:49','2018-08-28 05:00:25','On or near New George Street','Manchester 054D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.236454 53.48543)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('47:35:B5:E9:CB:04','2018-08-22 17:50:51','On or near Barracks Road','Wigan 026E','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.574847 53.515084)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A1:6D:42:2C:D0:B7','2018-08-13 04:27:14','On or near Shopping Area','Manchester 054C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.241702 53.483451)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F9:A7:32:81:CF:43','2018-08-30 02:33:43','On or near Pedestrian Subway','Salford 024C','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.285871 53.490274)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('78:2E:BD:9A:96:8B','2018-08-02 00:10:30','On or near Back Park View Road','Bolton 023A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.45362 53.56648)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A3:9E:BA:4E:44:02','2018-08-06 00:33:46','On or near Fram Street','Manchester 007B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.204193 53.511259)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('50:47:C9:6A:98:27','2018-08-03 21:07:39','On or near Car Bank Crescent','Wigan 017E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.489003 53.530351)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0D:99:64:49:FB:CE','2018-08-05 01:38:06','On or near M61','Bolton 034E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.387827 53.534282)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FD:CE:C8:75:63:7E','2018-08-02 03:25:51','On or near The Crescent','Stockport 027C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.149337 53.387587)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('92:21:08:6F:54:D5','2018-08-22 02:30:30','On or near Ripponden Road','Oldham 003B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.059534 53.572063)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('99:03:4B:40:93:DD','2018-08-03 13:01:22','On or near Livsey Court','Bolton 016F','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.42919 53.585805)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1C:55:86:C6:C6:E6','2018-08-04 21:44:36','On or near Pollard Street','Manchester 013F','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.219611 53.480635)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CC:63:0C:0C:75:4F','2018-08-20 08:04:32','On or near Milo Street','Manchester 002C','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.213285 53.526065)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F6:D8:09:7B:30:2B','2018-08-13 08:11:24','On or near Shopping Area','Wigan 008C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.628847 53.54638)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D9:55:08:89:29:F9','2018-08-12 22:29:27','On or near Threshfield Close','Bury 004B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.290595 53.614419)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('35:0F:97:C1:6D:32','2018-08-05 21:03:32','On or near Criccieth Road','Stockport 018B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.192885 53.402059)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('99:CB:74:52:22:BF','2018-08-11 21:08:36','On or near Brunswick Street','Bury 008C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.293242 53.597281)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0C:FE:9A:0B:C7:F3','2018-08-27 12:56:43','On or near Almond Brook Road','Wigan 001B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.683741 53.588774)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:E1:97:AE:5C:FE','2018-08-10 23:07:32','On or near Back Acton Street','Manchester 055C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.232396 53.476341)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3C:8C:B7:06:74:20','2018-08-13 16:48:15','On or near Desmond Road','Manchester 052A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.250592 53.386024)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('52:7F:4B:45:7C:6E','2018-08-06 22:16:12','On or near Fold Street','Wigan 038B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.601959 53.479769)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('33:23:3C:3F:C3:E4','2018-08-24 11:17:28','On or near Wordsworth Avenue','Bolton 033A','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.414919 53.541507)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:84:2C:19:AD:D0','2018-08-10 03:27:02','On or near Austin Street','Wigan 033B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.533887 53.498241)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AC:DF:D4:66:24:66','2018-08-16 23:32:29','On or near Supermarket','Tameside 020C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.075166 53.462801)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B3:EC:04:58:0D:09','2018-08-10 15:40:30','On or near Turnberry','Bolton 030C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.474214 53.559641)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2A:4F:D9:AD:BE:A0','2018-08-19 21:54:15','On or near Fold Street','Wigan 038B','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.601959 53.479769)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:33:5E:40:39:7C','2018-08-19 07:27:47','On or near Howard Street','Salford 028G','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.286166 53.47804)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AC:21:3B:47:60:13','2018-08-28 06:22:29','On or near Petrol Station','Stockport 009B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.120975 53.422494)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DB:60:1D:DC:73:FF','2018-08-12 05:18:24','On or near Glenvale Close','Bury 016E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.32104 53.560852)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('75:A1:6A:ED:14:3E','2018-08-23 21:22:06','On or near Rigby Street','Salford 016C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.259197 53.505489)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('50:A0:4D:24:45:8A','2018-08-22 13:40:20','On or near A5185','Salford 021B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.320032 53.489343)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F8:DA:F4:DA:7D:B8','2018-08-05 14:38:50','On or near Styal Street','Bolton 015E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.456264 53.584878)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5C:E3:81:C9:BB:27','2018-08-29 07:34:40','On or near Conway Close','Trafford 004E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.280252 53.451844)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7E:E4:B9:DC:E6:B4','2018-08-02 22:42:04','On or near Hassall Street','Tameside 015A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.049507 53.481708)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('95:86:CD:A4:75:51','2018-08-23 00:03:03','On or near Newton Road','Oldham 034D','Public order','Local resolution',ST_GeomFromText('POINT(-2.159732 53.497179)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('87:C8:C1:99:2B:53','2018-08-15 09:21:01','On or near Derwent Street','Tameside 012C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.167349 53.483021)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('25:EC:EE:4A:F6:D1','2018-08-20 05:40:55','On or near Lower Hillgate','Stockport 014B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.15543 53.409115)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:6C:F8:15:2F:E5','2018-08-19 04:30:08','On or near Marden Road','Manchester 048B','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.285155 53.392535)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:1F:C5:02:D2:F2','2018-08-15 22:17:29','On or near Hillfield Drive','Bolton 010C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.414992 53.5891)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7F:3F:09:B9:76:B5','2018-08-05 18:23:32','On or near Davies Road','Trafford 017D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.42158 53.419141)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:38:EF:11:F0:F8','2018-08-15 01:44:26','On or near Warrington Road','Wigan 034B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.500749 53.483814)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4A:4C:2C:35:D8:CC','2018-08-21 05:27:43','On or near Chesham Avenue','Bolton 011B','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.433886 53.591505)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A3:6B:92:46:AC:57','2018-08-29 22:44:52','On or near Dakins Road','Wigan 034D','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.50306 53.486797)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D4:C2:16:7E:25:0B','2018-08-11 22:35:38','On or near Nightclub','Manchester 055B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238002 53.476636)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8B:9B:A3:A1:48:A5','2018-08-25 21:41:40','On or near Dermot Murphy Close','Manchester 035B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.244033 53.432643)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('15:A1:05:AC:4D:C4','2018-08-29 01:27:08','On or near Haig Avenue','Salford 030D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.447383 53.420324)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:6E:8F:2E:26:6B','2018-08-17 23:27:15','On or near Craston Road','Manchester 026A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.206558 53.448749)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('16:2A:81:80:54:4A','2018-08-24 04:51:01','On or near Portland Place','Tameside 013D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.100352 53.483195)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2F:94:89:88:55:88','2018-08-10 19:30:40','On or near Salop Street','Salford 017F','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.281191 53.49362)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AA:78:7F:CC:24:18','2018-08-21 18:20:45','On or near Silver Street','Oldham 024B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.114928 53.540213)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0B:2A:0D:48:CF:D0','2018-08-23 07:14:37','On or near Madams Wood Road','Salford 004C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.422048 53.523973)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('61:BB:89:48:B8:34','2018-08-18 01:44:42','On or near Southdene Avenue','Manchester 042C','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.256228 53.420734)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('16:29:10:AD:7E:8B','2018-08-02 21:02:36','On or near Hardman Street','Manchester 054C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.250133 53.479532)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('36:27:25:09:1F:AF','2018-08-29 00:20:45','On or near Woodfield Avenue','Tameside 030E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.07722 53.441101)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('66:D9:64:F6:B8:A9','2018-08-25 03:22:49','On or near Darlington Close','Bury 006B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.321827 53.604811)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('80:E4:09:88:CA:1E','2018-08-23 14:01:50','On or near Bowden Close','Tameside 027C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.025421 53.445699)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F1:C8:3C:9D:2F:FA','2018-08-13 08:30:33','On or near Seymour Avenue','Manchester 012A','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.172154 53.486241)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2A:B0:DC:07:3A:E9','2018-08-28 16:54:00','On or near Hall Avenue','Manchester 026D','Burglary','Under investigation',ST_GeomFromText('POINT(-2.216919 53.452101)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:D9:84:46:E3:E2','2018-08-17 01:50:20','On or near A5185','Salford 021B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.320032 53.489343)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A0:B2:CB:15:AF:28','2018-08-30 21:34:15','On or near Kearsley Drive','Bolton 022B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.410557 53.56171)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DA:1A:8B:46:53:4A','2018-08-16 02:31:19','On or near Wembury Street','Manchester 009A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.209284 53.510064)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9E:D4:3A:29:E3:63','2018-08-18 12:49:56','On or near Hall Green Road','Tameside 017C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.087583 53.480364)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4D:25:79:A3:6B:F5','2018-08-07 18:44:51','On or near Scarisbrick Street','Wigan 006A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.628608 53.552646)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1E:6C:11:75:01:E4','2018-08-16 02:52:38','On or near Cardus Street','Manchester 031C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.190566 53.445099)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4B:3A:4D:3E:12:C2','2018-08-20 05:47:21','On or near Parking Area','Manchester 053D','Possession of weapons','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.273249 53.362505)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B9:57:F3:1B:DF:60','2018-08-19 06:28:34','On or near Mere Drive','Salford 005A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.331017 53.521905)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A1:AE:1D:56:32:85','2018-08-07 04:41:49','On or near Oak Bank','Bury 025B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.288468 53.517503)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('47:87:4D:2F:1D:28','2018-08-29 18:44:35','On or near Victoria Street','Wigan 030C','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.525326 53.504409)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D9:B1:34:D2:7B:01','2018-08-29 05:19:51','On or near Further/Higher Educational Building','Manchester 057A','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237738 53.469769)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:BC:8C:2A:E8:25','2018-08-17 08:07:50','On or near Roe Green','Salford 014D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.378858 53.511597)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('76:5F:71:0F:F0:D2','2018-08-23 06:45:13','On or near Cumberland Road','Rochdale 016D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.15902 53.592681)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('17:15:21:D2:59:92','2018-08-01 16:53:49','On or near Deal Close','Manchester 011C','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.172037 53.498348)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('04:6E:37:3A:60:A9','2018-08-23 07:28:13','On or near Markland Street','Bury 001A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.318917 53.647765)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:BD:27:C4:81:F0','2018-08-05 18:28:24','On or near Bluestone Road','Tameside 024B','Robbery','Under investigation',ST_GeomFromText('POINT(-2.147786 53.447551)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F6:62:8C:79:4D:2E','2018-08-13 17:26:47','On or near John Street','Bury 008E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.292054 53.595926)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4B:93:05:D0:3B:7B','2018-08-07 09:24:50','On or near High Street','Wigan 001D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.664051 53.586476)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('67:12:E8:AC:6E:EC','2018-08-25 02:21:24','On or near Slack Road','Manchester 006C','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.219712 53.517478)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('89:FF:0D:C0:8F:9D','2018-08-10 10:51:07','On or near Woodhall Crescent','Stockport 007A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.150143 53.424196)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:D0:90:3A:00:72','2018-08-12 01:17:24','On or near Musgrave Road','Bolton 015A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.453245 53.583595)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('34:A3:1B:CB:6A:81','2018-08-04 12:48:58','On or near Cedar Road','Trafford 017E','Other crime','Awaiting court outcome',ST_GeomFromText('POINT(-2.432832 53.415829)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D7:3B:F7:E0:9F:FB','2018-08-28 07:07:35','On or near Addison Street','Wigan 015A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.63876 53.544242)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:64:98:71:E6:11','2018-08-28 17:00:13','On or near Fairfield Drive','Bury 007B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.261872 53.599286)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BE:94:11:B7:3A:D0','2018-08-16 23:35:02','On or near Collen Crescent','Bury 005C','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.318498 53.610276)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1C:BD:E6:AC:33:DB','2018-08-27 06:36:52','On or near Delta Close','Oldham 008D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.128943 53.559146)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('76:8A:CF:6E:88:35','2018-08-10 10:15:44','On or near Danesbury Rise','Stockport 028C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.214726 53.390606)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('25:78:76:E4:4D:3F','2018-08-22 13:01:03','On or near Robert Street','Bury 009D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.315282 53.596631)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('98:60:85:09:79:DB','2018-08-29 13:57:38','On or near Coronation Gardens','Bury 016C','Public order','Under investigation',ST_GeomFromText('POINT(-2.344724 53.567886)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('38:01:E9:66:53:52','2018-08-25 21:17:53','On or near New Union Street','Manchester 013D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.224182 53.484366)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('95:58:93:08:9D:29','2018-08-01 17:09:27','On or near Whitegates Road','Rochdale 021F','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.179344 53.568537)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('03:F2:F7:A3:D7:7F','2018-08-02 20:51:49','On or near Rodney Street','Salford 022G','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.260997 53.482008)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:CE:D1:E7:07:C1','2018-08-12 10:38:01','On or near Oakfield Avenue','Manchester 028C','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.262703 53.455686)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1B:4F:7A:93:D8:57','2018-08-04 22:22:30','On or near Conference/Exhibition Centre','Manchester 054C','Robbery','Under investigation',ST_GeomFromText('POINT(-2.244738 53.484631)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DB:DB:FD:8A:24:1C','2018-08-11 02:26:29','On or near Tree Avenue','Tameside 011F','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.15147 53.488408)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1B:3C:AC:00:D0:87','2018-08-27 06:04:17','On or near Petrol Station','Wigan 024A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.607713 53.525977)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9C:A4:B7:F0:F5:3B','2018-08-14 02:01:08','On or near Church Road','Wigan 029E','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.451172 53.503885)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D2:61:89:30:08:8B','2018-08-14 05:36:59','On or near Gristlehurst Lane','Rochdale 006C','Other crime','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.240863 53.606458)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:E6:26:1F:5E:63','2018-08-23 01:10:04','On or near Acre Lane','Oldham 011E','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.099531 53.550518)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:5D:79:AB:DB:50','2018-08-11 09:33:15','On or near Auckland Road','Manchester 034F','Burglary','Under investigation',ST_GeomFromText('POINT(-2.200112 53.441956)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('82:54:BB:29:0E:CE','2018-08-05 16:02:00','On or near Lower House Street','Oldham 011E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.093167 53.546245)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5A:05:D7:E2:9E:BB','2018-08-09 23:16:27','On or near High Street','Stockport 014B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.15611 53.409932)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('37:61:EB:74:D2:24','2018-08-22 11:44:53','On or near Supermarket','Bolton 015B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.448399 53.585349)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EB:75:63:AB:15:24','2018-08-20 01:00:25','On or near Yew Street','Tameside 019C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.114167 53.465142)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EF:07:CE:AD:A5:1A','2018-08-22 13:13:43','On or near Nightclub','Manchester 060A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.248907 53.47851)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:87:51:BE:17:5F','2018-08-19 14:15:02','On or near Queens Road','Manchester 009G','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.215808 53.500237)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CF:D1:6B:C7:95:3B','2018-08-27 00:35:35','On or near Egret Drive','Salford 029A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.42074 53.452932)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('89:E2:79:6D:C3:E4','2018-08-06 00:27:41','On or near Astley Road','Bolton 002A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.393872 53.606897)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('76:21:5B:D7:A1:A2','2018-08-15 22:49:29','On or near Greytown Close','Salford 017C','Other crime','Under investigation',ST_GeomFromText('POINT(-2.288405 53.499337)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F0:57:3B:1E:6F:83','2018-08-24 10:12:51','On or near Hillary Road','Tameside 022C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.054815 53.461697)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D2:D2:E7:B7:76:B2','2018-08-25 22:41:04','On or near Church Road','Tameside 023C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-1.99353 53.460847)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CA:78:55:A7:D1:50','2018-08-18 13:19:10','On or near Foxdenton Drive','Trafford 008A','Vehicle crime','Awaiting court outcome',ST_GeomFromText('POINT(-2.336568 53.451671)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:DA:4E:E8:43:0C','2018-08-12 04:24:47','On or near Holden Lea','Bolton 031A','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.526667 53.560257)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:6E:8C:AD:97:5C','2018-08-30 13:24:43','On or near Doveridge Gardens','Salford 017B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.290667 53.490757)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:30:81:65:CC:3A','2018-08-27 22:18:34','On or near Sandalwood Drive','Wigan 005B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.657099 53.560978)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F1:BE:F7:03:B7:F8','2018-08-30 06:09:20','On or near Ellis Drive','Manchester 008F','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.230712 53.515804)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:5F:77:DA:56:9E','2018-08-25 20:15:00','On or near Turncroft Way','Wigan 029C','Drugs','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.425271 53.50691)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('14:CB:A5:3C:77:54','2018-08-07 05:02:52','On or near Oakville Terrace','Manchester 007A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.198391 53.515188)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('12:CD:85:EA:49:8E','2018-08-02 18:25:30','On or near Old Church Street','Manchester 011A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.181351 53.501274)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:5C:09:B2:AA:14','2018-08-29 08:14:18','On or near Briar Street','Bolton 019A','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.394687 53.580864)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:0F:1F:0C:44:88','2018-08-27 14:03:09','On or near Studland Road','Manchester 052B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.24519 53.382637)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F9:15:A8:53:E8:7D','2018-08-28 11:32:38','On or near Hulme Street','Bury 009D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.309458 53.597698)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5B:CC:88:55:5A:C5','2018-08-27 02:39:44','On or near Goldcrest Close','Salford 013A','Public order','Under investigation',ST_GeomFromText('POINT(-2.410004 53.509166)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A3:12:78:5F:0B:8F','2018-08-15 18:36:57','On or near Petrol Station','Salford 028F','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.282413 53.468872)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('92:34:94:66:A2:0B','2018-08-03 08:33:42','On or near Warrington Lane','Wigan 009C','Drugs','Awaiting court outcome',ST_GeomFromText('POINT(-2.625256 53.545401)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0F:16:A1:2F:C8:80','2018-08-09 08:42:53','On or near Derwent Avenue','Bury 021E','Public order','Under investigation',ST_GeomFromText('POINT(-2.271082 53.548652)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B3:36:70:D1:30:3B','2018-08-28 07:20:05','On or near Parking Area','Trafford 012C','Drugs','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.328199 53.424783)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('14:09:EF:EA:AA:B1','2018-08-28 12:59:43','On or near Cosgate Close','Wigan 018D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.707739 53.53411)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F2:E5:96:5E:9D:2A','2018-08-06 02:11:43','On or near Clementine Close','Salford 024D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.2791 53.485131)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:C7:E6:75:3B:B5','2018-08-16 06:53:29','On or near Victoria Bridge Street','Salford 022I','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.246444 53.485086)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B7:AD:69:7B:E5:3C','2018-08-21 16:03:34','On or near Rydal Avenue','Salford 019A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.366768 53.492795)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A0:0A:C2:D0:09:5E','2018-08-13 16:03:49','On or near Lansdowne Road','Bolton 010D','Public order','Under investigation',ST_GeomFromText('POINT(-2.414974 53.590359)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7E:E4:B9:48:47:54','2018-08-16 22:35:24','On or near Parking Area','Bolton 022B','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.417808 53.566719)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2B:A2:12:8F:E7:A7','2018-08-16 22:11:53','On or near Piccadilly','Manchester 055B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('28:2C:B0:98:75:27','2018-08-02 23:35:02','On or near Burnedge Fold Road','Oldham 013A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.033747 53.539895)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('79:55:D2:B4:5A:09','2018-08-08 10:48:17','On or near Farmer Street','Stockport 007C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.166854 53.418412)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6E:64:9E:F6:D9:3A','2018-08-22 15:01:05','On or near Homer Street','Bury 016B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.342056 53.56296)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:18:DF:07:3D:40','2018-08-10 20:29:17','On or near Parking Area','Manchester 054C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.243949 53.483698)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('09:2E:22:28:DE:87','2018-08-11 14:11:24','On or near Eckersley Street','Wigan 009D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.619019 53.551312)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('02:4D:41:85:F2:59','2018-08-11 08:33:46','On or near Scotland Street','Tameside 007C','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.088696 53.486629)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:69:81:38:2A:63','2018-08-28 07:30:57','On or near Oronsay Grove','Salford 021F','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.302813 53.481963)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F1:C3:60:AD:C1:2C','2018-08-02 09:28:30','On or near Nightclub','Manchester 055B','Other theft','Under investigation',ST_GeomFromText('POINT(-2.237527 53.475073)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D3:DC:F7:40:E2:E1','2018-08-16 02:23:07','On or near Manor Grove','Wigan 004D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.592743 53.567678)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B8:35:A7:DA:F0:65','2018-08-05 23:56:25','On or near Frederick Street','Oldham 035G','Drugs','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.129379 53.533825)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('61:01:06:CF:57:81','2018-08-08 19:03:07','On or near Harold Avenue','Manchester 021E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.15809 53.457066)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('66:6A:55:5F:A1:A9','2018-08-23 15:36:33','On or near School Lane','Wigan 001D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.666979 53.58539)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:F9:49:83:F8:4A','2018-08-05 17:15:52','On or near Uncouth Road','Rochdale 013B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.121029 53.615861)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:B5:D2:EA:AF:90','2018-08-12 05:29:12','On or near Victoria Court','Tameside 013D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.106014 53.481401)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:7D:51:EB:B3:95','2018-08-22 15:38:44','On or near Whitekirk Close','Manchester 018D','Theft from the person','Under investigation',ST_GeomFromText('POINT(-2.228741 53.469149)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('13:36:E8:D2:C0:39','2018-08-09 22:44:56','On or near Nightclub','Manchester 055B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.238002 53.476636)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:6B:C0:A7:D7:07','2018-08-25 23:19:43','On or near King Street','Oldham 032C','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.171324 53.504641)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E9:26:52:50:B3:21','2018-08-07 19:12:25','On or near Assheton Close','Tameside 013A','Shoplifting','Local resolution',ST_GeomFromText('POINT(-2.097941 53.489812)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:C4:EA:67:65:BC','2018-08-22 10:13:21','On or near Brownley Road','Manchester 049C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.256212 53.388043)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BD:6C:3C:6D:D3:73','2018-08-11 00:38:29','On or near Columbus Way','Salford 021F','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.306972 53.475741)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('15:00:B5:07:81:F9','2018-08-01 20:57:08','On or near Simonsway','Manchester 050C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.273425 53.380652)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('28:D2:9A:6E:56:B6','2018-08-08 08:28:17','On or near Holcombe Crescent','Bolton 034F','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.376666 53.538101)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B5:2B:36:AA:78:D8','2018-08-29 13:42:31','On or near Willesden Avenue','Manchester 022D','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.209313 53.45483)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:82:59:A0:BC:6E','2018-08-04 08:30:14','On or near Sports/Recreation Area','Wigan 022D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.477121 53.514804)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B3:88:FC:0E:E6:62','2018-08-10 03:16:57','On or near Oak Grove','Stockport 028D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.209852 53.390021)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('62:5E:D9:2A:79:4E','2018-08-01 04:30:01','On or near Wellfield Close','Bury 013D','Criminal damage and arson','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.296432 53.573804)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FE:93:12:BE:DE:D7','2018-08-18 13:16:41','On or near Canonsway','Salford 009C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.345507 53.510314)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F3:1B:AA:15:51:7A','2018-08-23 12:11:23','On or near Rydal Grove','Bury 021B','Drugs','Offender given a drugs possession warning',ST_GeomFromText('POINT(-2.288002 53.548846)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('19:07:41:ED:96:69','2018-08-08 13:34:06','On or near Hodson Street','Salford 022F','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.254608 53.487019)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:A1:FE:FF:6D:0F','2018-08-13 20:30:57','On or near Granville Gardens','Manchester 043F','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.23877 53.414775)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EE:C4:20:A3:29:9D','2018-08-24 00:22:01','On or near Debenham Avenue','Manchester 012E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.181146 53.495791)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A1:6B:31:2D:81:34','2018-08-22 17:20:04','On or near Hilton Lane','Bury 026C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.276291 53.523554)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:7F:79:D2:BD:84','2018-08-01 17:11:53','On or near Hulmes Road','Oldham 034D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.161824 53.496304)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:48:5D:08:AA:25','2018-08-13 13:42:46','On or near Clarendon Street','Manchester 057A','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.247391 53.469183)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0F:3B:5E:C8:BF:DB','2018-08-21 06:18:53','On or near Hendon Road','Manchester 002A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.220045 53.5323)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EF:AC:25:4B:C0:4F','2018-08-19 22:27:50','On or near Hurst Brook Close','Tameside 007A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.086946 53.493173)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B2:6A:97:CD:56:23','2018-08-13 06:54:15','On or near Supermarket','Manchester 013C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.21094 53.488372)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('02:55:5C:A1:79:FE','2018-08-06 20:32:39','On or near Chester Street','Manchester 055A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.242148 53.471657)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CE:0A:0F:5E:49:5D','2018-08-14 04:54:47','On or near Nightclub','Manchester 060A','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.248907 53.47851)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('39:40:30:7F:D6:D9','2018-08-28 11:55:08','On or near Whitlow Avenue','Wigan 038A','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.605632 53.47842)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0C:C7:F8:C8:99:2E','2018-08-28 17:54:14','On or near School Road','Trafford 015B','Bicycle theft','Under investigation',ST_GeomFromText('POINT(-2.319606 53.424707)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1B:83:BD:67:C1:E5','2018-08-15 13:45:10','On or near Bowstone Hill Road','Bolton 006D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.365201 53.608498)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5D:F2:69:F8:7E:F7','2018-08-24 05:29:46','On or near Stranraer Road','Wigan 010D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.672975 53.549178)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2A:08:0D:43:DB:50','2018-08-08 20:24:59','On or near Wordsworth Avenue','Bury 016C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.344845 53.56616)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:EF:4B:1B:86:71','2018-08-07 06:37:01','On or near Hospital','Stockport 027B','Other theft','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.13202 53.383778)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:69:88:4C:7B:EB','2018-08-29 01:31:04','On or near Dorchester Court','Trafford 015A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.320982 53.413558)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:E8:98:5D:E4:F1','2018-08-30 04:08:08','On or near Hawthorne Street','Bolton 021A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.454286 53.567988)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:86:AE:9C:DA:B7','2018-08-16 18:43:09','On or near Tennyson Avenue','Bury 013C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.29285 53.575602)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:9E:EA:54:8E:20','2018-08-02 17:14:24','On or near Wilton Grove','Tameside 024D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.148076 53.457132)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('37:95:BA:A0:BE:0C','2018-08-25 14:47:35','On or near Gas Street','Wigan 024A','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.596477 53.520722)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2C:92:01:30:E5:90','2018-08-05 08:58:36','On or near Mirfield Drive','Salford 020D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.352307 53.492074)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E7:4F:C4:B5:69:4B','2018-08-02 11:50:03','On or near Gold Street','Manchester 055B','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236975 53.478732)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('62:C7:87:22:07:5E','2018-08-13 08:28:11','On or near Vine Close','Trafford 013D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.357877 53.428536)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('56:3A:74:4B:DB:08','2018-08-01 20:16:35','On or near Simpson Hill Close','Rochdale 020B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.204934 53.595973)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('45:16:42:7F:A8:47','2018-08-21 09:20:47','On or near Middle Hillgate','Stockport 014B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.154715 53.40677)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6E:EC:AE:1B:69:C9','2018-08-15 02:40:03','On or near Arncot Road','Bolton 003D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.425691 53.605916)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B9:AB:EE:62:D4:A8','2018-08-24 14:14:31','On or near Cambridge Street','Manchester 057B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.243416 53.472122)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:A6:CD:1A:32:6B','2018-08-03 02:15:24','On or near Elmbank Road','Rochdale 023G','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.176796 53.547786)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9A:59:25:6C:66:C1','2018-08-21 20:46:38','On or near Edith Avenue','Manchester 024A','Possession of weapons','Under investigation',ST_GeomFromText('POINT(-2.239037 53.451583)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5A:9B:9A:33:52:91','2018-08-22 11:00:01','On or near Petrol Station','Bolton 016D','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.426719 53.572961)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9A:37:21:EB:E0:EF','2018-08-05 07:04:18','On or near Princess Road','Wigan 036A','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.632489 53.486964)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9A:F9:A2:35:32:26','2018-08-24 10:39:34','On or near Phoenix Street','Bolton 032D','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.39619 53.542901)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:DA:6E:37:55:6F','2018-08-13 16:35:59','On or near Portland Street','Manchester 055B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.235357 53.480434)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('86:E6:F6:9C:5C:5F','2018-08-09 04:10:18','On or near Ravendale Close','Rochdale 007F','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.192791 53.623488)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:7A:2F:B1:20:08','2018-08-28 03:16:41','On or near Craven Road','Stockport 003F','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.1564 53.431478)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AC:44:C4:98:5D:2A','2018-08-16 14:22:23','On or near Park Road','Tameside 016A','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.081905 53.48169)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5C:6A:E0:3E:F9:B8','2018-08-06 09:04:13','On or near Nightclub','Manchester 054D','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.240748 53.485169)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:04:BC:6A:40:97','2018-08-18 13:57:20','On or near Burnside Drive','Manchester 034A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.205032 53.435179)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7D:22:8C:8F:48:35','2018-08-28 23:59:01','On or near Dickinson Street','Manchester 055B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.241787 53.477194)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('20:3B:DD:5E:72:89','2018-08-12 01:39:58','On or near Cemetery Street','Rochdale 024B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.196432 53.551279)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:B8:62:A1:AF:AA','2018-08-08 03:16:56','On or near Kendal Avenue','Tameside 029B','Public order','Under investigation',ST_GeomFromText('POINT(-2.101481 53.444939)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:EC:DC:8B:B6:A4','2018-08-01 09:59:38','On or near Alison Street','Oldham 001B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.098926 53.58232)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('20:7B:08:8E:FC:73','2018-08-27 08:26:52','On or near Elliott Street','Wigan 025B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.466857 53.513991)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9D:CE:51:6C:07:5B','2018-08-20 23:57:07','On or near Linwood Close','Wigan 013E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.580551 53.529708)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FE:0E:6E:A7:66:E1','2018-08-23 06:16:21','On or near Whoolden Street','Bolton 027D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.403943 53.55207)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A8:55:05:95:15:34','2018-08-13 23:43:16','On or near Hathershaw Lane','Oldham 029E','Other crime','Formal action is not in the public interest',ST_GeomFromText('POINT(-2.112034 53.524225)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('37:3C:A9:44:9C:0D','2018-08-17 12:26:57','On or near George Street','Oldham 024B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.116255 53.539789)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('80:14:FA:06:30:D6','2018-08-10 21:23:26','On or near Stockport Road','Tameside 027C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.024218 53.449132)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6B:F2:85:2B:FA:9F','2018-08-13 00:41:15','On or near Redshaw Close','Manchester 026B','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.214856 53.446065)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8F:E2:B2:FB:A8:49','2018-08-28 06:34:58','On or near Pedestrian Subway','Salford 020E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.330556 53.484137)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C0:04:22:D0:BC:05','2018-08-24 09:05:42','On or near Stonesteads Drive','Bolton 003E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.420242 53.618744)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FE:08:47:68:03:73','2018-08-27 19:18:05','On or near Pitt Street','Stockport 016D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.167251 53.404434)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('73:03:8C:C0:DE:0A','2018-08-22 07:58:12','On or near Clarendon Street','Tameside 028A','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.079122 53.451967)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8B:5C:3D:B2:78:96','2018-08-14 20:38:15','On or near Broadway','Wigan 016A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.559011 53.534439)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D8:B6:F0:54:EF:45','2018-08-15 20:53:33','On or near Teer Street','Manchester 013G','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.21313 53.483298)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('30:00:63:9F:79:D6','2018-08-07 00:27:43','On or near Barlow Road','Tameside 018A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.082223 53.474912)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2D:3C:46:7D:14:0B','2018-08-20 18:58:13','On or near Ashley Court Drive','Manchester 005F','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.156042 53.518576)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A2:09:D7:1E:24:83','2018-08-09 18:20:00','On or near Winster Drive','Rochdale 022B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.206372 53.556152)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('77:5E:5C:97:8B:D1','2018-08-27 20:27:46','On or near Shopping Area','Bolton 016F','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.425676 53.584865)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('17:DF:85:C3:EA:BF','2018-08-04 05:37:31','On or near Supermarket','Trafford 016C','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.350825 53.414777)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:73:96:EB:B1:64','2018-08-14 05:16:15','On or near Yates Street','Oldham 011E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.098566 53.55087)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A0:75:74:83:1C:B2','2018-08-30 05:48:49','On or near Parbold Avenue','Manchester 038A','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.237217 53.433115)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4D:B5:AF:A9:45:F6','2018-08-11 06:00:17','On or near Waldon Avenue','Stockport 028C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.216395 53.390459)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:BF:2C:64:70:07','2018-08-12 02:06:32','On or near Piccadilly','Manchester 055B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('98:05:E7:8C:C2:C1','2018-08-11 09:01:30','On or near Water Street','Manchester 060B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.255034 53.480214)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:1F:F3:62:35:A9','2018-08-26 04:49:00','On or near Grundey Street','Stockport 031D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.119979 53.378784)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FD:B2:2D:82:34:4F','2018-08-10 19:08:52','On or near Nightclub','Manchester 055B','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.237689 53.477185)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:F9:6B:2D:31:72','2018-08-17 05:33:22','On or near Hollins Grove','Manchester 027D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.192596 53.454597)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2E:E3:32:36:34:71','2018-08-12 02:03:23','On or near Craven Street','Oldham 014A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.116299 53.550629)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('29:70:E3:BA:BC:04','2018-08-04 23:21:28','On or near Parking Area','Manchester 018B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.22922 53.463017)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A3:4F:13:66:7B:AA','2018-08-08 20:00:23','On or near Bridgewater Street','Bolton 032B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.39324 53.547009)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A9:BA:A3:52:2E:51','2018-08-22 03:48:32','On or near Avon Road','Wigan 010C','Public order','Under investigation',ST_GeomFromText('POINT(-2.673488 53.541561)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E6:1D:BF:E7:31:86','2018-08-19 08:36:29','On or near Briery Avenue','Bolton 006D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.395801 53.609488)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('86:19:78:18:55:C5','2018-08-02 16:29:40','On or near Waterson Avenue','Manchester 009E','Other crime','Under investigation',ST_GeomFromText('POINT(-2.195216 53.506897)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6F:6D:59:49:47:EB','2018-08-17 11:02:34','On or near Macdonald Avenue','Bolton 033A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.414911 53.543808)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B2:9C:5F:35:DB:16','2018-08-20 14:39:04','On or near Greenhill Road','Manchester 008C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.240227 53.51032)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CF:82:98:85:E1:3D','2018-08-24 01:02:22','On or near Whittle Street','Manchester 054E','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.234383 53.484157)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('84:F2:DC:D8:90:38','2018-08-16 18:54:30','On or near Nightclub','Stockport 014B','Violence and sexual offences','Offender given a caution',ST_GeomFromText('POINT(-2.15823 53.409561)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:A4:8B:3C:7E:80','2018-08-11 08:37:19','On or near Blackford Road','Stockport 006D','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.182466 53.434641)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('30:74:75:11:62:A3','2018-08-24 16:20:21','On or near Police Station','Salford 009B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.342229 53.513325)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:CB:52:85:B6:8E','2018-08-27 12:28:29','On or near Deansgate','Manchester 054C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.248763 53.479625)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:DF:7A:EE:DD:45','2018-08-22 16:57:50','On or near Lyne Edge Road','Tameside 018D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.061187 53.472246)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:CB:0C:39:EE:0C','2018-08-13 00:07:00','On or near Back Carter Street','Bolton 022A','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.419213 53.563747)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('37:0E:99:46:EB:C8','2018-08-16 06:16:39','On or near Wayland Road South','Manchester 023B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.168587 53.453132)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A9:05:C4:3F:76:EC','2018-08-30 15:07:30','On or near Rifle Road','Trafford 014C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.291744 53.42805)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BB:8D:9F:FF:7E:89','2018-08-19 02:20:27','On or near Petrol Station','Bury 009D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.309389 53.600683)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('30:EA:FF:96:46:F2','2018-08-17 04:07:25','On or near Dalton Drive','Salford 008B','Drugs','Under investigation',ST_GeomFromText('POINT(-2.306448 53.50953)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FC:CE:36:F2:A0:79','2018-08-28 15:16:48','On or near Barbeck Close','Manchester 013C','Drugs','Awaiting court outcome',ST_GeomFromText('POINT(-2.212127 53.487588)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0D:18:CB:96:2F:74','2018-08-29 08:40:23','On or near Shopping Area','Wigan 008C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.628847 53.54638)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('20:23:03:23:92:5E','2018-08-04 01:30:23','On or near Hoyle Street','Bury 018C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.31821 53.553965)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6C:E7:F3:6E:88:07','2018-08-25 09:05:03','On or near Back Drummond Street','Bolton 005A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.435381 53.601791)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BC:31:9C:79:F3:63','2018-08-10 01:41:36','On or near Eastway','Rochdale 024B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.198921 53.551014)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('26:89:3D:8C:57:70','2018-08-29 11:12:52','On or near Stock Lane','Oldham 017B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.140977 53.541587)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3D:52:4B:83:BB:6E','2018-08-22 21:51:48','On or near Jordan Street','Manchester 057B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.250292 53.473249)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:D0:17:7F:FB:98','2018-08-01 18:29:02','On or near Primrose Close','Bolton 006F','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.378316 53.599568)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:26:DE:37:CB:45','2018-08-04 00:56:32','On or near Coleridge Close','Stockport 002A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.162554 53.446867)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('65:BE:A1:B4:F9:93','2018-08-18 14:33:10','On or near Assheton Close','Tameside 013A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.097941 53.489812)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3C:98:37:72:F4:66','2018-08-01 17:04:23','On or near Marbury Road','Stockport 002E','Robbery','Under investigation',ST_GeomFromText('POINT(-2.17282 53.435158)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:5C:2C:D1:0D:90','2018-08-04 16:03:37','On or near Johnson Street','Trafford 001E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.263108 53.46515)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B6:1B:FC:40:D6:36','2018-08-07 15:43:23','On or near Dean Avenue','Trafford 004B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.275458 53.45554)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EC:CF:A5:C5:01:D7','2018-08-11 03:48:58','On or near Shap Avenue','Trafford 022D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.307441 53.390547)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('73:57:DD:1C:34:F7','2018-08-05 04:19:30','On or near Siskin Road','Stockport 031A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.11046 53.389049)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2F:0C:24:E3:C8:57','2018-08-13 21:55:10','On or near Shopping Area','Manchester 050E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.261255 53.379322)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E0:34:46:83:75:CF','2018-08-05 16:22:54','On or near Dewhirst Way','Rochdale 005A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.155922 53.637572)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D7:20:72:08:B5:62','2018-08-10 22:11:21','On or near Lyne Edge Road','Tameside 018D','Robbery','Under investigation',ST_GeomFromText('POINT(-2.061187 53.472246)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F0:FA:7F:77:AF:79','2018-08-28 22:25:15','On or near Myerscroft Close','Manchester 005A','Public order','Awaiting court outcome',ST_GeomFromText('POINT(-2.16719 53.515307)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:BB:76:2A:21:75','2018-08-28 23:02:13','On or near Crosby Road','Manchester 011D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.174129 53.497491)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:EE:3D:C3:41:BD','2018-08-28 08:34:09','On or near Colmore Street','Bolton 010A','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.411269 53.599225)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:46:39:80:C6:EC','2018-08-08 06:00:07','On or near Gordon Street','Tameside 004E','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.078188 53.492703)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:3D:8C:5E:ED:2A','2018-08-17 05:18:53','On or near Market Street','Rochdale 018D','Public order','Under investigation',ST_GeomFromText('POINT(-2.222464 53.59373)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E4:A8:1C:A5:CA:16','2018-08-18 05:15:47','On or near Annecy Close','Bury 009C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.323106 53.602138)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('74:A5:7C:3D:A8:01','2018-08-12 08:57:29','On or near Liverpool Road','Manchester 060C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.255088 53.476574)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('45:46:42:7B:93:1B','2018-08-28 21:14:43','On or near Walker Street','Rochdale 010C','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.147644 53.614537)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D8:D1:C1:20:1A:23','2018-08-04 00:20:56','On or near New Riven Court','Bolton 024B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.378785 53.562534)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:4B:C3:10:9D:5D','2018-08-02 06:01:56','On or near Willow Fold','Tameside 014D','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.140691 53.478381)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0D:0E:39:92:C2:FF','2018-08-17 19:32:33','On or near Sussex Road','Stockport 018F','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.185594 53.402735)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:C6:5D:96:F7:98','2018-08-20 09:28:10','On or near Nightclub','Manchester 060A','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.248907 53.47851)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F1:59:98:D6:36:23','2018-08-14 14:00:22','On or near Bent Hill Street','Bolton 020B','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.469276 53.564937)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('54:17:A4:10:45:28','2018-08-12 15:16:54','On or near Dean Street','Rochdale 008G','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.141346 53.625124)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2B:0A:7A:D0:AF:64','2018-08-11 23:02:09','On or near Range Lane','Oldham 006C','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.037851 53.590606)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E9:3A:D6:99:CD:29','2018-08-26 01:25:07','On or near Dermot Murphy Close','Manchester 035B','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.244033 53.432643)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B2:78:D9:D0:DD:D9','2018-08-08 04:01:20','On or near Granville Road','Bolton 023C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.451148 53.559775)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C6:7C:40:BD:E7:44','2018-08-06 18:42:16','On or near Chell Street','Manchester 027E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.198584 53.456448)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B3:E8:5D:6A:23:1B','2018-08-08 23:21:35','On or near Mersey Close','Bury 021E','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.276695 53.553152)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:8B:46:F7:61:4A','2018-08-05 00:40:08','On or near Nightclub','Manchester 054D','Violence and sexual offences','Offender given a caution',ST_GeomFromText('POINT(-2.240748 53.485169)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:12:AA:9B:BB:F3','2018-08-29 15:38:29','On or near Moordown Close','Manchester 008B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.230894 53.502096)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:9F:3A:31:D8:B0','2018-08-14 23:46:06','On or near Godley Hill Road','Tameside 022A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.051972 53.452)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:87:87:91:4B:E1','2018-08-07 03:43:00','On or near Riley Square','Wigan 009C','Bicycle theft','Under investigation',ST_GeomFromText('POINT(-2.622486 53.548948)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D6:5F:66:DE:40:B9','2018-08-01 12:56:50','On or near Piccadilly','Manchester 055B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CA:BA:33:5B:BE:20','2018-08-29 15:24:39','On or near Towyn Avenue','Salford 024B','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.282918 53.48354)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('64:5D:49:1F:DF:2E','2018-08-22 09:53:17','On or near Hill Street','Trafford 024C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.357432 53.402488)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:60:F2:AD:8B:36','2018-08-08 20:55:15','On or near Eastbourne Street','Rochdale 015D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.158944 53.608572)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('23:FF:D7:9D:90:EF','2018-08-10 07:21:40','On or near Askett Close','Manchester 011A','Criminal damage and arson','Awaiting court outcome',ST_GeomFromText('POINT(-2.172267 53.502896)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4D:86:F8:29:DD:62','2018-08-25 01:18:22','On or near Strathblane Close','Manchester 035C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.229489 53.434685)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CC:BF:16:B8:BE:67','2018-08-05 14:37:42','On or near Church Avenue','Wigan 026E','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.559616 53.512855)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('71:11:FD:F0:16:75','2018-08-07 12:31:44','On or near Nelson Road','Manchester 001B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.215574 53.534294)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('12:9E:A4:53:83:80','2018-08-16 14:23:29','On or near Mill Lane','Tameside 026D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.095209 53.447452)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F3:EA:06:AD:F1:A2','2018-08-04 05:49:13','On or near Turves Road','Stockport 034A','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.20184 53.374692)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5B:A2:67:2A:F6:F9','2018-08-22 13:59:19','On or near Bus/Coach Station','Oldham 024B','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.111234 53.541412)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D8:92:1D:9D:04:3A','2018-08-15 18:41:52','On or near Rosehill Road','Salford 006D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.337486 53.521806)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D8:96:88:4C:81:90','2018-08-12 17:27:02','On or near Silver Street','Bury 019C','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.297021 53.55233)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:5F:B6:12:4A:47','2018-08-13 20:43:52','On or near Brimrod Lane','Rochdale 010A','Drugs','Under investigation',ST_GeomFromText('POINT(-2.173687 53.606646)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F3:7E:A5:8D:00:80','2018-08-04 01:37:50','On or near Whittle Lane','Rochdale 020F','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238061 53.567787)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:39:28:76:5C:90','2018-08-19 22:44:14','On or near Briardene Gardens','Manchester 049D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.253544 53.387024)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:E1:41:7F:CC:5B','2018-08-23 10:28:45','On or near Abden Street','Bury 016D','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.330469 53.562003)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:8F:24:29:FC:5D','2018-08-22 16:21:40','On or near Connaught Avenue','Rochdale 016B','Public order','Under investigation',ST_GeomFromText('POINT(-2.14427 53.595936)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8C:A6:98:D8:D7:77','2018-08-16 00:26:25','On or near Torbay Road','Trafford 009C','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.342983 53.446008)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:6E:C6:D1:34:78','2018-08-27 16:19:46','On or near Further/Higher Educational Building','Manchester 057A','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237738 53.469769)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0E:66:0D:EC:E2:76','2018-08-04 20:22:08','On or near John Shepley Street','Tameside 028A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.072721 53.451387)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('01:72:A5:9D:60:33','2018-08-05 07:42:14','On or near Sharples Hall Street','Oldham 012E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.082233 53.550037)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2E:50:14:8A:62:DC','2018-08-15 01:08:28','On or near Hawthorn Road','Oldham 031D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.139846 53.518965)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FF:76:47:26:8B:48','2018-08-19 18:50:48','On or near Heys Road','Tameside 007B','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.078754 53.489332)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E2:D0:F4:00:15:C6','2018-08-07 18:57:29','On or near Shuttle Street','Salford 020A','Other crime','Under investigation',ST_GeomFromText('POINT(-2.338943 53.483259)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CD:33:21:36:CE:E1','2018-08-09 15:24:45','On or near Church Street','Bolton 028C','Public order','Under investigation',ST_GeomFromText('POINT(-2.523456 53.55451)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8A:FB:B5:5A:21:9F','2018-08-08 13:36:52','On or near Kilburn Avenue','Manchester 001B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.214847 53.53674)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:7D:88:37:8B:AF','2018-08-13 10:27:46','On or near Legh Street','Salford 010C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.259114 53.50922)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DC:54:3C:47:4E:A2','2018-08-07 09:51:00','On or near Faversham Street','Manchester 009E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.188781 53.507545)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('57:D8:58:9A:77:93','2018-08-04 18:47:19','On or near Bridgeman Terrace','Wigan 008E','Public order','Under investigation',ST_GeomFromText('POINT(-2.633826 53.551333)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4A:D2:D5:5C:72:21','2018-08-14 09:51:15','On or near St James'' Court','Salford 021G','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.32093 53.490482)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('36:CC:5E:9D:07:B2','2018-08-11 11:30:42','On or near Sunderland Place','Wigan 010D','Public order','Under investigation',ST_GeomFromText('POINT(-2.671216 53.549637)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('57:9A:B7:EA:80:4F','2018-08-02 01:24:37','On or near Town Fold','Stockport 020E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.053279 53.401421)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:0D:C5:42:C7:5D','2018-08-29 15:29:16','On or near Parkside Crescent','Wigan 018B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.699446 53.536226)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('41:A6:17:AF:DF:47','2018-08-23 04:02:36','On or near Mersey Square','Stockport 014B','Drugs','Offender given a drugs possession warning',ST_GeomFromText('POINT(-2.161509 53.409521)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CA:55:2E:D8:74:D7','2018-08-17 06:36:05','On or near Holland Street','Wigan 023C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.487639 53.521979)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0D:C7:09:96:3B:FD','2018-08-09 14:48:41','On or near Back Willows Lane South','Bolton 018A','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.456687 53.566666)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CC:8A:C9:B8:AC:13','2018-08-28 09:17:14','On or near Rayburn Way','Manchester 056C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.234617 53.49648)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E9:84:05:E7:E8:EB','2018-08-20 04:35:31','On or near Ashurst Close','Tameside 028C','Possession of weapons','Awaiting court outcome',ST_GeomFromText('POINT(-2.060302 53.443169)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DA:95:6D:30:D2:3A','2018-08-01 11:29:57','On or near Petrol Station','Tameside 002A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.077692 53.501872)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('83:EE:C1:98:CB:FA','2018-08-17 12:10:14','On or near Bailey Lane','Manchester 053C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.272466 53.371747)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('70:DE:87:F6:BD:E4','2018-08-13 07:33:34','On or near Shakespeare Road','Stockport 012D','Bicycle theft','Under investigation',ST_GeomFromText('POINT(-2.111899 53.415924)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('15:84:D4:6D:A7:75','2018-08-12 00:08:33','On or near Cotaline Close','Rochdale 017F','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.187249 53.597728)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:ED:24:63:3C:9F','2018-08-05 18:30:42','On or near Selby Road','Trafford 006C','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.33124 53.453852)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:A5:78:83:F7:7A','2018-08-06 14:20:38','On or near Pebworth Close','Rochdale 025E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.197602 53.533543)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E9:90:5D:7A:9F:36','2018-08-12 15:59:34','On or near Cornbrook Court','Trafford 001E','Public order','Under investigation',ST_GeomFromText('POINT(-2.264234 53.466981)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F7:D1:63:2E:B1:E7','2018-08-05 20:41:02','On or near Domestic Approach','Manchester 053D','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.269834 53.361928)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CF:E9:44:75:7F:28','2018-08-24 22:20:11','On or near Abbotsbury Close','Manchester 020A','Public order','Under investigation',ST_GeomFromText('POINT(-2.196826 53.467165)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:27:89:89:0E:7C','2018-08-30 21:42:25','On or near Nightclub','Manchester 055B','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237689 53.477185)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:41:5C:A4:06:49','2018-08-17 12:04:49','On or near Budsworth Avenue','Manchester 035A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.233479 53.437599)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:FD:08:C0:37:45','2018-08-11 16:05:00','On or near Supermarket','Salford 026A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.335079 53.482461)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:EF:17:C5:A8:88','2018-08-14 02:19:01','On or near Coverdale Close','Rochdale 018F','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.224543 53.589646)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DA:3A:AB:48:10:A1','2018-08-08 19:19:41','On or near Great Stone Road','Trafford 003A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.287455 53.452618)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CD:E9:86:8A:93:46','2018-08-09 06:27:31','On or near Brathay Close','Bolton 013A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.385335 53.590485)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('03:7B:44:44:E0:A0','2018-08-30 19:19:15','On or near Back Market Street','Bury 011B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.298087 53.592181)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:45:B2:3E:4C:68','2018-08-06 11:19:34','On or near Kelsall Crescent','Stockport 026B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.172715 53.394422)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1A:3E:25:C9:39:A0','2018-08-22 14:59:41','On or near Thirlmere Drive','Rochdale 022A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.208394 53.559061)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8A:4F:D9:49:B9:F0','2018-08-13 17:47:01','On or near Lower Turf Lane','Oldham 021D','Criminal damage and arson','Awaiting court outcome',ST_GeomFromText('POINT(-2.053945 53.546665)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3F:8B:27:44:6D:1A','2018-08-07 03:33:47','On or near Crompton Street','Tameside 007D','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.072646 53.495772)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('37:7B:49:57:16:00','2018-08-27 21:03:59','On or near Piccadilly','Manchester 055B','Other theft','Under investigation',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EB:2D:8C:C4:E5:9F','2018-08-05 06:31:31','On or near Petrol Station','Rochdale 022F','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.232257 53.566711)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F9:D8:27:A4:6A:C9','2018-08-01 11:43:49','On or near Bower Avenue','Rochdale 004E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.12719 53.638703)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6B:DB:B2:06:D2:F7','2018-08-13 02:21:14','On or near Plumpton Close','Oldham 016E','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.120914 53.554463)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('79:23:52:7E:AA:70','2018-08-21 21:03:55','On or near Park/Open Space','Rochdale 001B','Possession of weapons','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.088953 53.652265)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F2:CE:9B:D2:A5:19','2018-08-22 17:27:32','On or near Renshaw Drive','Bury 007D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.269919 53.598342)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5C:94:A4:A3:52:15','2018-08-29 13:59:56','On or near Supermarket','Salford 012A','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.33513 53.513678)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:84:4D:1A:77:66','2018-08-16 01:37:52','On or near Parrin Lane','Salford 020G','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.356995 53.492051)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F0:2F:01:85:4E:9E','2018-08-11 11:06:16','On or near Beaufort Close','Tameside 027C','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.027078 53.447325)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:2D:D7:71:A1:B9','2018-08-07 02:59:41','On or near Sedan Close','Salford 024B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.281804 53.481547)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B2:80:9D:05:82:0D','2018-08-23 09:30:32','On or near Byron Grove','Stockport 002B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.165597 53.443303)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:2B:D6:F4:2D:33','2018-08-20 04:58:32','On or near Supermarket','Bolton 032B','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.39323 53.547513)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F1:A6:62:B6:CF:9B','2018-08-04 20:30:07','On or near Coghlan Close','Manchester 015A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.185181 53.484316)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('35:61:FA:8C:1D:A2','2018-08-27 10:45:04','On or near Thor Grove','Salford 028J','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.268847 53.474701)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:AE:76:2A:FF:80','2018-08-05 03:13:57','On or near Supermarket','Trafford 009D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.35836 53.448444)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('84:CC:52:CA:62:F8','2018-08-28 14:17:35','On or near Parking Area','Oldham 014B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.114062 53.543647)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EB:A2:9B:80:1E:F3','2018-08-18 05:27:01','On or near Ryeburn Drive','Bolton 002E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.409331 53.606647)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E9:70:EF:92:51:2A','2018-08-14 05:41:14','On or near Longacre','Wigan 026D','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.545517 53.512902)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:39:23:2A:00:9E','2018-08-29 15:14:33','On or near Canada Street','Manchester 011B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.207175 53.49494)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('19:61:BF:09:A5:D6','2018-08-12 15:49:44','On or near Tomlinson Close','Oldham 024B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.116735 53.533623)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3E:4D:16:57:5C:5D','2018-08-16 11:30:50','On or near Aquarius Street','Manchester 019B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.241119 53.462895)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A0:63:CF:ED:B4:BE','2018-08-11 19:26:24','On or near Nelson Road','Manchester 001B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.215574 53.534294)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2F:EB:3A:FA:5D:FC','2018-08-06 12:17:21','On or near Selkirk Grove','Wigan 011A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.680518 53.545198)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('96:D9:A6:D8:E5:80','2018-08-01 06:43:10','On or near Sports/Recreation Area','Manchester 045C','Robbery','Under investigation',ST_GeomFromText('POINT(-2.23195 53.408434)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:6C:A9:61:8E:D9','2018-08-17 14:25:53','On or near Belvedere Road','Manchester 032D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.2058 53.44147)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2C:F5:8E:F4:6C:A2','2018-08-16 22:11:38','On or near Park Lane','Oldham 005D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.120083 53.5704)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4F:94:F1:02:96:F5','2018-08-03 17:28:09','On or near Shopping Area','Manchester 054C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238637 53.482225)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DC:11:23:82:02:84','2018-08-12 14:47:02','On or near Theatre/Concert Hall','Manchester 055A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.239925 53.472848)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('10:0A:32:11:2C:90','2018-08-05 17:56:42','On or near Turner Street','Bolton 035A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.525654 53.532182)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('34:0C:41:8C:16:6F','2018-08-29 22:09:09','On or near Moorway Drive','Manchester 003G','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.190127 53.528684)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D6:00:7F:C5:5C:4B','2018-08-18 10:21:35','On or near Calico Close','Salford 022E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.263087 53.488556)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3E:9C:0A:86:F3:D4','2018-08-21 19:17:21','On or near Parking Area','Trafford 015B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.32564 53.424691)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:B4:A3:38:A9:08','2018-08-27 09:36:41','On or near Wallis Street','Manchester 011C','Possession of weapons','Awaiting court outcome',ST_GeomFromText('POINT(-2.175422 53.500204)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AA:F1:B2:14:64:D6','2018-08-22 05:38:08','On or near Moravian Close','Tameside 017C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.086918 53.47934)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('48:05:31:41:87:D4','2018-08-28 19:47:16','On or near Conference/Exhibition Centre','Manchester 055E','Public order','Under investigation',ST_GeomFromText('POINT(-2.224058 53.475279)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('24:97:40:01:1A:16','2018-08-29 22:27:02','On or near Back Bridge Street','Manchester 054C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.249179 53.481269)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:AE:51:11:66:E4','2018-08-10 23:32:26','On or near Wakefield Street','Manchester 057C','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.240805 53.473916)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('52:02:F5:9C:8E:49','2018-08-21 22:14:53','On or near Demesne Road','Manchester 030B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.252723 53.448768)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D3:1A:E6:6C:10:70','2018-08-26 06:30:35','On or near Hope Street','Manchester 055B','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.235083 53.479976)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6B:42:08:53:4D:E7','2018-08-13 04:51:29','On or near Engine Street','Oldham 027A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.139657 53.530317)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('18:C6:33:12:8E:39','2018-08-26 08:23:27','On or near Back Ashford Walk','Bolton 016C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.436716 53.586147)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('27:BE:B1:CF:66:15','2018-08-20 06:16:49','On or near Ashurst Close','Tameside 028C','Possession of weapons','Awaiting court outcome',ST_GeomFromText('POINT(-2.060302 53.443169)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:BF:C4:B3:D2:A0','2018-08-17 17:24:46','On or near Chew Valley Road','Oldham 020D','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.006148 53.5359)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:77:01:E4:9F:28','2018-08-11 21:31:37','On or near Thelwall Avenue','Bolton 013E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.394335 53.583526)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:ED:D0:E9:CB:8B','2018-08-27 05:54:55','On or near Prince''S Avenue','Wigan 028A','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.461274 53.502525)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8A:2F:0D:A8:32:E7','2018-08-08 00:19:41','On or near Graham Street','Tameside 013B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.11429 53.482697)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C6:D9:D6:0A:88:1F','2018-08-25 10:52:42','On or near Sefton Street','Bury 018C','Public order','Under investigation',ST_GeomFromText('POINT(-2.315827 53.554205)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9E:20:08:27:3B:E2','2018-08-05 06:20:02','On or near Five Quarters','Bury 014D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.34608 53.569438)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6E:9D:50:E4:EB:33','2018-08-30 19:51:55','On or near Avon Road','Wigan 010C','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.673488 53.541561)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7D:F1:D3:1E:ED:C1','2018-08-14 15:27:46','On or near Falmouth Road','Salford 029D','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.41327 53.449651)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C4:1E:5A:D9:C3:33','2018-08-03 23:49:07','On or near Alston Avenue','Trafford 020D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.332972 53.415466)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:BF:07:5C:FF:B4','2018-08-01 10:06:03','On or near Pole Street','Wigan 002E','Bicycle theft','Under investigation',ST_GeomFromText('POINT(-2.663936 53.586881)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DF:57:2F:70:EA:33','2018-08-16 01:14:23','On or near Abingdon Street','Tameside 007C','Public order','Under investigation',ST_GeomFromText('POINT(-2.07872 53.48722)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('05:30:CC:CE:A8:F2','2018-08-17 10:43:33','On or near Petrol Station','Manchester 017D','Public order','Under investigation',ST_GeomFromText('POINT(-2.178474 53.462457)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F3:12:91:CF:35:20','2018-08-16 18:48:06','On or near Lightbowne Road','Manchester 007C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.190527 53.510167)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AA:77:53:77:CF:84','2018-08-22 17:45:53','On or near Delamere Street','Tameside 013A','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.094318 53.487092)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0E:60:33:EC:9E:A8','2018-08-16 04:09:41','On or near Barton Avenue','Wigan 006C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.639855 53.556775)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C6:BF:09:52:89:68','2018-08-04 00:11:50','On or near Sevenoaks Drive','Salford 012C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.327794 53.503038)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('43:45:93:36:75:FA','2018-08-03 05:32:31','On or near Parking Area','Rochdale 015D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.154536 53.610052)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('16:54:6A:01:AA:DE','2018-08-05 03:11:00','On or near St Nicholas Road','Wigan 040A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.553456 53.477532)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D0:90:E1:88:0E:C7','2018-08-27 13:17:05','On or near Sandgate Road','Bury 022B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.273961 53.543477)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9C:1F:B1:F8:8E:CA','2018-08-17 00:15:07','On or near Romiley Drive','Bolton 013E','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.394523 53.58588)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:C3:58:D7:61:70','2018-08-19 02:18:09','On or near School Lane','Wigan 001D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.666979 53.58539)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B6:87:3F:2B:70:DF','2018-08-12 03:25:00','On or near Prestt Grove','Wigan 015E','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.64982 53.53523)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A9:10:BE:D6:BA:A4','2018-08-16 16:48:36','On or near Silverdale Road','Manchester 033E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.271915 53.443252)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DF:85:B3:3E:73:54','2018-08-18 22:49:15','On or near Ainsley Street','Manchester 012E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.176176 53.496814)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0D:80:E8:18:A9:EC','2018-08-23 13:50:44','On or near Greenhill Road','Manchester 008C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.240227 53.51032)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('88:13:3B:13:37:31','2018-08-15 20:15:00','On or near Pedestrian Subway','Manchester 008F','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.235691 53.51085)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('46:3E:F4:7E:DC:90','2018-08-10 05:29:02','On or near Patterdale Close','Rochdale 017E','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.183116 53.599298)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CF:45:20:1D:D8:72','2018-08-25 09:36:55','On or near New Devonshire Square','Salford 016E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.255316 53.504518)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C6:A3:52:16:9B:43','2018-08-23 20:23:02','On or near Hurst Street','Bolton 023C','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.450676 53.559399)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1A:EC:93:61:BE:38','2018-08-06 13:48:58','On or near Oakfield Road','Stockport 023D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.155138 53.390788)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BA:03:B2:20:96:DD','2018-08-20 14:04:39','On or near Cedar Road','Stockport 025D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.235915 53.390916)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('37:78:CE:21:04:F8','2018-08-07 23:59:00','On or near The Link','Stockport 004D','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.134925 53.432385)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('10:B0:42:90:50:61','2018-08-25 06:06:18','On or near Hospital','Stockport 027B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.13202 53.383778)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7F:FF:70:CA:89:E6','2018-08-21 02:09:24','On or near Sutherland Street','Bolton 032A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.407202 53.54876)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('94:96:C1:10:51:5E','2018-08-30 07:03:22','On or near Dunsters Avenue','Bury 005C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.313014 53.606614)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:B0:05:8A:E7:C8','2018-08-04 15:25:30','On or near Newbury Road','Bolton 024B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.383025 53.560615)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:24:5C:46:C4:78','2018-08-21 05:24:50','On or near Sabden Close','Bury 004D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.295692 53.617013)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('98:FC:56:A0:72:F8','2018-08-25 10:50:57','On or near Water Street','Bury 016B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.334162 53.563117)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('58:E4:19:A2:3F:F1','2018-08-04 23:31:33','On or near Hardshaw Close','Manchester 018D','Burglary','Under investigation',ST_GeomFromText('POINT(-2.22895 53.468789)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('30:43:70:86:3E:A7','2018-08-07 10:51:58','On or near Hollins Road','Oldham 030E','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.119669 53.52518)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CA:C4:08:7D:D8:4E','2018-08-24 10:02:46','On or near Holland Street','Rochdale 010C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.164271 53.618156)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('04:2E:11:4D:6C:D4','2018-08-26 05:44:53','On or near Silver Close','Tameside 018C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.092404 53.473242)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D2:63:D1:BC:0E:43','2018-08-30 07:31:57','On or near Falcon Close','Bury 007C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.280938 53.601121)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BD:96:FC:6F:B3:53','2018-08-30 01:23:26','On or near Nightclub','Manchester 055B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238002 53.476636)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:1A:DB:D9:14:E5','2018-08-23 09:59:58','On or near Supermarket','Manchester 057C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.242 53.474767)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B6:05:F1:E7:DE:DB','2018-08-07 08:14:13','On or near Carter Street','Tameside 009B','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.054047 53.485355)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:EB:09:BC:07:79','2018-08-17 15:36:59','On or near Wilderswood Avenue','Bolton 004C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.53923 53.603157)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('79:DD:68:A5:95:6C','2018-08-04 20:32:20','On or near Ladysmith Street','Stockport 023B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.161438 53.398645)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('37:28:10:C0:05:6A','2018-08-12 20:49:48','On or near Hilda Street','Bolton 022E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.421662 53.567128)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:9C:26:B6:01:E9','2018-08-30 01:30:21','On or near Waterworks Road','Oldham 012C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.071792 53.551896)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:CF:CA:C5:96:96','2018-08-06 14:48:30','On or near Brookside Crescent','Salford 003B','Possession of weapons','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.389178 53.523671)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8F:8C:25:9F:3E:93','2018-08-06 22:06:59','On or near Harrison Street','Salford 027C','Violence and sexual offences','Formal action is not in the public interest',ST_GeomFromText('POINT(-2.369475 53.476454)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:30:2D:94:E9:C1','2018-08-26 05:21:34','On or near Trust Road','Manchester 023A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.178231 53.454835)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:9C:07:F2:02:3F','2018-08-19 04:34:11','On or near Supermarket','Rochdale 017E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.173912 53.602529)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4F:F5:A0:E2:2B:C2','2018-08-29 03:43:35','On or near Epsom Avenue','Trafford 019E','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.36003 53.41439)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('39:55:6A:05:89:1F','2018-08-08 22:29:10','On or near Ellen Street','Wigan 012D','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.627203 53.542389)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AF:D1:CE:6A:13:E0','2018-08-13 05:11:23','On or near Echo Street','Manchester 055C','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.231791 53.475947)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F4:BD:80:CE:95:BF','2018-08-07 06:50:37','On or near Hardman Street','Manchester 054C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.250133 53.479532)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('09:E8:70:AC:3A:9A','2018-08-03 09:01:04','On or near Shaw Road','Oldham 009C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.114119 53.564662)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('07:DC:F7:B6:89:AB','2018-08-17 10:04:06','On or near Milnthorpe Road','Bolton 013D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.386228 53.582393)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('51:7E:33:0D:0D:4B','2018-08-17 14:19:04','On or near Back Regent Street','Bury 008C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.292287 53.601211)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E8:EF:94:16:F2:85','2018-08-13 03:36:58','On or near Day Drive','Oldham 034A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.155626 53.503899)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('48:7A:04:31:35:94','2018-08-22 17:15:20','On or near Mount Street','Rochdale 010D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.166329 53.618845)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7E:EE:21:CD:33:F8','2018-08-07 10:59:05','On or near Trafford Boulevard','Trafford 002E','Burglary','Under investigation',ST_GeomFromText('POINT(-2.354175 53.468375)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('25:AD:DB:CF:DF:36','2018-08-20 07:02:49','On or near Barton Road','Rochdale 024B','Public order','Under investigation',ST_GeomFromText('POINT(-2.198515 53.54822)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E3:96:FD:20:A8:75','2018-08-23 04:59:38','On or near Govan Street','Manchester 046C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.254426 53.408748)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0C:37:70:27:3A:EE','2018-08-04 21:30:36','On or near Knowsley Road','Stockport 015B','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.139858 53.403822)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:D4:94:C1:6D:F5','2018-08-25 22:41:26','On or near Redgate Road','Wigan 032E','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.63683 53.501062)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('56:EB:C1:3F:E8:ED','2018-08-21 15:04:09','On or near Westminster Avenue','Tameside 002A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.079832 53.509133)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EF:40:18:5B:99:76','2018-08-09 01:36:05','On or near Arran Road','Tameside 018C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.084775 53.470102)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F3:6E:E5:DC:6E:F7','2018-08-16 02:54:23','On or near Romiley Drive','Bolton 013E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.394523 53.58588)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:0C:17:64:21:18','2018-08-25 16:20:22','On or near Hillview Road','Bolton 005A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.43482 53.600077)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EF:D7:1C:CC:3D:67','2018-08-04 11:22:19','On or near Nightclub','Manchester 055C','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.235556 53.478375)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('47:01:D5:85:70:DD','2018-08-08 10:23:13','On or near Alan Avenue','Oldham 034D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.156489 53.496491)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('57:C9:81:11:16:29','2018-08-02 02:31:16','On or near Parking Area','Oldham 017E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.140039 53.545579)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9A:BA:83:D0:45:A8','2018-08-28 03:02:28','On or near Philip Avenue','Tameside 019D','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.121905 53.463472)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:6C:A2:90:69:3B','2018-08-25 21:26:06','On or near Morrowfield Avenue','Manchester 058B','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.243775 53.505846)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8B:A1:BA:E0:E8:F1','2018-08-04 11:13:19','On or near Wellfield Road','Manchester 048D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.281249 53.399959)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('78:12:8B:E0:85:B7','2018-08-29 09:22:13','On or near Lancaster Drive','Bury 026C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.268921 53.522124)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E0:39:B2:A1:F3:DC','2018-08-02 17:12:51','On or near Watersmead Close','Bolton 016B','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.430354 53.593325)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0C:38:DE:0C:F8:E7','2018-08-04 15:03:04','On or near Laycock Drive','Tameside 016B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.057102 53.470738)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('27:41:E1:E5:7F:54','2018-08-03 14:11:53','On or near Robert Harrison Avenue','Manchester 039E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.247219 53.429185)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BC:CF:BB:25:B2:4B','2018-08-09 01:46:49','On or near Grasmere Avenue','Bolton 033E','Criminal damage and arson','Awaiting court outcome',ST_GeomFromText('POINT(-2.430648 53.54502)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('73:6C:D3:D3:DF:45','2018-08-18 01:49:59','On or near North Downs Road','Stockport 030C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.201191 53.380418)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2D:2A:95:9E:B9:D9','2018-08-07 04:11:50','On or near Church Court','Tameside 017E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.094983 53.480979)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FB:ED:46:7B:79:AA','2018-08-30 16:42:29','On or near Bellingham Mount','Wigan 006D','Robbery','Under investigation',ST_GeomFromText('POINT(-2.627842 53.558025)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:A6:EC:8F:E1:7D','2018-08-14 14:13:44','On or near Prison','Manchester 058C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.246337 53.492717)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('86:12:F4:F5:09:04','2018-08-18 05:01:35','On or near River Place','Manchester 060D','Robbery','Under investigation',ST_GeomFromText('POINT(-2.250044 53.472)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('41:0B:D8:2C:46:97','2018-08-14 21:05:00','On or near Soap Street','Manchester 054D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.238001 53.48451)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:C2:BC:B9:DA:3D','2018-08-15 17:28:19','On or near Cross Road','Manchester 037B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.276416 53.438442)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:71:CC:80:6A:D2','2018-08-24 18:42:22','On or near Church Road','Rochdale 012E','Other crime','Awaiting court outcome',ST_GeomFromText('POINT(-2.142284 53.611658)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('05:52:FD:65:8C:C2','2018-08-04 23:17:34','On or near Holland Avenue','Tameside 008A','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.055753 53.487098)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:D0:B5:93:90:C1','2018-08-10 10:23:51','On or near Brookfield Street','Oldham 024B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.111613 53.536198)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DD:40:F9:7D:8B:3D','2018-08-16 20:59:27','On or near Petrol Station','Rochdale 024B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.197276 53.547871)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9E:3C:85:2E:2F:8E','2018-08-27 13:07:46','On or near Highfield Close','Tameside 020D','Public order','Under investigation',ST_GeomFromText('POINT(-2.066599 53.465457)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CD:70:9B:F7:0C:99','2018-08-18 15:18:13','On or near Grierson Street','Manchester 024C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.250662 53.456853)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F0:3E:BA:55:8B:33','2018-08-01 04:13:07','On or near Jefferson Way','Rochdale 005F','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.155025 53.632055)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E3:A7:21:38:E1:85','2018-08-22 15:33:23','On or near Dartmouth Road','Bury 020B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.287991 53.542761)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('38:E3:CD:57:49:E2','2018-08-02 19:34:03','On or near Hough End Avenue','Manchester 039C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.266219 53.43273)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('05:AF:F5:6A:7B:A9','2018-08-25 19:37:42','On or near Tarvington Close','Manchester 056D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.221423 53.501584)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:4C:9F:3E:DC:F1','2018-08-22 16:34:59','On or near Scott Gate','Tameside 019C','Drugs','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.113992 53.472945)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:2C:C3:C1:CF:CE','2018-08-05 11:29:28','On or near Ashley Road','Trafford 027C','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.349506 53.378683)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('57:1C:44:16:4F:B8','2018-08-08 14:56:26','On or near Vale Street','Rochdale 024A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.189876 53.55004)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5A:99:03:96:93:4E','2018-08-12 07:24:55','On or near Abson Street','Oldham 010B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.132604 53.551772)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0B:3A:7F:A8:EF:9A','2018-08-19 11:29:42','On or near Armitage Road','Trafford 027A','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.349427 53.38369)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2D:E2:77:77:09:7C','2018-08-01 15:46:15','On or near Mount Street','Rochdale 010D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.166329 53.618845)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('09:49:01:F4:5B:CD','2018-08-27 17:03:31','On or near Shopping Area','Rochdale 010C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.158993 53.617615)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E9:0F:62:A0:98:28','2018-08-09 14:16:28','On or near North Road','Trafford 028A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.327842 53.368551)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B5:08:D7:FE:A9:90','2018-08-05 15:14:49','On or near Southern Street','Wigan 014C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.667605 53.531159)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D3:E8:3E:8B:AD:4D','2018-08-04 23:18:59','On or near High Street','Wigan 038C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.597104 53.476297)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:39:F4:D5:45:9F','2018-08-02 14:24:46','On or near Mafeking Road','Bolton 019A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.387411 53.581256)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:30:40:E1:AC:E6','2018-08-12 05:35:10','On or near Petrol Station','Manchester 029D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.277697 53.445603)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7F:73:40:2B:5F:93','2018-08-30 15:01:45','On or near Police Station','Salford 009B','Drugs','Awaiting court outcome',ST_GeomFromText('POINT(-2.342229 53.513325)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2B:E6:E1:25:58:DD','2018-08-15 14:27:07','On or near Rhos Avenue','Manchester 036C','Public order','Under investigation',ST_GeomFromText('POINT(-2.2074 53.439346)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FD:3B:A7:98:EA:D7','2018-08-16 18:15:17','On or near Bentley Street','Bolton 027D','Robbery','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.397869 53.553016)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('29:4B:78:23:EB:48','2018-08-20 23:02:32','On or near Stainer Street','Manchester 027D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.194274 53.455925)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5D:85:3B:E0:A1:27','2018-08-12 15:34:53','On or near Supermarket','Salford 001B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.425043 53.530829)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5D:C0:88:C8:0B:58','2018-08-06 17:52:20','On or near Banbury Road','Manchester 051B','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.288433 53.392527)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CE:1C:C6:57:34:E3','2018-08-24 05:53:18','On or near Levens Drive','Bolton 013A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.390628 53.589452)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('30:93:99:D6:5D:3E','2018-08-30 20:54:21','On or near Collingwood Road','Manchester 032D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.199353 53.447063)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('62:85:40:C0:85:06','2018-08-13 14:22:08','On or near Barchester Avenue','Bolton 013B','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.391739 53.587004)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('56:1E:C8:BF:93:05','2018-08-29 19:21:24','On or near Oscroft Close','Manchester 058B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.242938 53.504436)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:D9:3D:B1:3C:4E','2018-08-14 02:06:01','On or near Supermarket','Stockport 036B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.233697 53.370328)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C4:C4:89:43:50:77','2018-08-19 13:07:49','On or near Stelling Street','Manchester 017D','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.170877 53.464643)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4E:3F:6B:8B:50:8E','2018-08-30 16:47:46','On or near Bus/Coach Station','Trafford 002E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.346267 53.462888)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('ED:58:C8:8B:05:6E','2018-08-25 12:11:30','On or near Parking Area','Trafford 015C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.316792 53.424643)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:E7:6B:CF:03:73','2018-08-27 22:51:07','On or near The Gateway','Manchester 009A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.199023 53.502037)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('65:E5:9E:86:E4:76','2018-08-18 13:32:52','On or near Bryn Street','Wigan 036E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.639013 53.487873)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('61:26:C3:32:07:0E','2018-08-28 01:25:35','On or near Supermarket','Bolton 019A','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.389134 53.581421)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:E4:8B:51:0A:A3','2018-08-27 21:07:05','On or near Kingsway','Bolton 034D','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.380671 53.537145)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('08:50:60:3D:B6:50','2018-08-07 04:09:17','On or near Burn Bank','Oldham 013A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.024433 53.534226)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('46:AC:89:E4:69:4E','2018-08-02 07:07:57','On or near Parking Area','Manchester 035B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.245618 53.436109)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E9:46:AF:0C:86:73','2018-08-04 04:52:29','On or near Back Brigade Street','Bolton 015D','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.450655 53.577331)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:A9:F8:05:00:93','2018-08-04 03:47:43','On or near Eastville Gardens','Manchester 041E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.204926 53.425732)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:16:FB:D6:FE:0B','2018-08-14 09:37:34','On or near Barchester Avenue','Bolton 013B','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.391739 53.587004)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:CB:BA:76:C7:99','2018-08-08 16:06:41','On or near Cranlington Drive','Manchester 058B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.242905 53.501425)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('35:3A:89:C1:B2:F6','2018-08-29 08:32:46','On or near Queens Close','Stockport 013B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.192832 53.413447)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DB:14:88:2D:CA:19','2018-08-05 03:57:27','On or near Park/Open Space','Bolton 031C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.526918 53.551322)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('41:E9:F9:DD:74:2A','2018-08-19 23:46:22','On or near Harold Street','Trafford 001E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.267161 53.467711)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:89:DA:EB:8B:19','2018-08-11 15:30:57','On or near Kendal Grove','Salford 007D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.384684 53.518832)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BA:BC:9A:E7:89:D2','2018-08-05 13:20:18','On or near Featherstall Road South','Oldham 035G','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.129948 53.537393)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('04:C9:88:00:FC:38','2018-08-06 16:10:20','On or near Parking Area','Manchester 060B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.262137 53.47628)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('53:F4:1E:37:91:FC','2018-08-05 01:33:59','On or near Lilford Close','Manchester 020A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.195313 53.469001)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AD:FA:DF:74:21:27','2018-08-23 05:40:17','On or near Acton Street','Oldham 011E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.099498 53.549494)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5E:AD:F1:D7:4A:DC','2018-08-27 23:14:42','On or near Windsor Avenue','Salford 002A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.410278 53.532894)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C8:24:9A:9C:46:60','2018-08-01 01:22:18','On or near Grizedale Close','Tameside 003C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.023814 53.506506)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:A2:10:CA:EB:45','2018-08-16 09:31:12','On or near Claremont Street','Oldham 032A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.156117 53.510325)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('01:E8:59:D3:C7:32','2018-08-16 09:54:12','On or near Octavia Drive','Manchester 012D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.175531 53.493813)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8A:CA:19:C3:FC:62','2018-08-05 17:22:28','On or near Oldham Road','Rochdale 010C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.153146 53.614494)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('47:46:5C:DD:1F:12','2018-08-07 10:15:21','On or near Chapel Hill','Rochdale 001C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.094867 53.644764)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('67:C4:10:9D:7C:7A','2018-08-06 00:07:07','On or near Wastwater Street','Oldham 014C','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.105267 53.550963)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E3:BE:A7:52:2B:69','2018-08-21 08:41:30','On or near Sickle Street','Manchester 054C','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.240549 53.481916)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B5:0E:31:B7:0A:9B','2018-08-23 22:13:28','On or near Yeardsley Close','Stockport 032B','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.161993 53.382536)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BB:19:6B:1C:74:DC','2018-08-05 01:36:06','On or near Sports/Recreation Area','Tameside 026D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.098416 53.447377)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BF:FD:3F:58:72:0E','2018-08-28 06:10:46','On or near Oxford Street','Manchester 060A','Other theft','Under investigation',ST_GeomFromText('POINT(-2.242156 53.475729)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:9B:40:2E:AA:A7','2018-08-08 14:11:04','On or near Neal Avenue','Tameside 007A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.082902 53.491127)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B2:69:0E:F6:78:D4','2018-08-14 20:11:58','On or near Ullswater Terrace','Tameside 008C','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.057358 53.49285)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('28:7B:8D:A6:1C:03','2018-08-04 08:21:22','On or near Trent Walk','Tameside 010E','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.143344 53.478495)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('01:55:9B:C2:2F:E7','2018-08-08 02:05:12','On or near Stockport Road','Tameside 027B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.030162 53.443333)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C0:04:AE:01:77:91','2018-08-28 05:26:12','On or near Alpha Court','Tameside 025D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.131135 53.452838)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FB:20:78:20:21:6A','2018-08-12 18:47:56','On or near Delamere Road','Trafford 005D','Criminal damage and arson','Awaiting court outcome',ST_GeomFromText('POINT(-2.378481 53.448939)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('87:48:95:19:18:40','2018-08-19 20:21:51','On or near Sandhutton Road','Manchester 006B','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.214107 53.515574)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:AF:B6:7B:D3:89','2018-08-20 01:56:35','On or near Marron Place','Manchester 060A','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.247338 53.478199)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('82:A8:A8:A5:72:00','2018-08-28 06:04:50','On or near Hardfield Road','Rochdale 025G','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.18691 53.538028)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('99:B8:A1:C8:9E:D8','2018-08-22 07:36:22','On or near Garden Street','Manchester 054C','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.240835 53.484639)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CE:21:99:91:FC:FD','2018-08-19 20:59:13','On or near Shippey Street','Manchester 036E','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.212928 53.436864)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('35:4C:E2:F3:33:C6','2018-08-28 09:21:13','On or near Ruskin Avenue','Bolton 034C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.383955 53.543292)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2E:DE:5E:70:C4:04','2018-08-26 02:53:14','On or near Ashness Drive','Bolton 013A','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.386911 53.58932)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:96:E1:C1:48:1B','2018-08-30 16:16:49','On or near Parking Area','Rochdale 013A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.11153 53.60806)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('23:C4:B2:B6:1A:95','2018-08-28 00:09:17','On or near Brighton Place','Manchester 018B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.231356 53.465126)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B8:89:C3:27:1F:17','2018-08-17 23:50:16','On or near Jardine Way','Oldham 028A','Robbery','Under investigation',ST_GeomFromText('POINT(-2.153255 53.531955)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8F:05:A7:CA:04:93','2018-08-12 10:18:51','On or near Beech Hill Lane','Wigan 005A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.658438 53.558714)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5D:B2:01:1E:B1:E9','2018-08-21 20:11:50','On or near Binns Place','Manchester 055D','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.228903 53.482487)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:53:14:49:2B:A5','2018-08-24 20:15:50','On or near Rochester Avenue','Bury 026E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.271152 53.519449)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AF:A6:6D:10:E7:93','2018-08-24 20:27:25','On or near Constable Street','Manchester 017E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.165163 53.467339)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('95:34:E5:45:08:3A','2018-08-03 00:31:04','On or near Hodder Bank','Stockport 024D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.118663 53.392034)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('58:98:22:61:2F:16','2018-08-25 20:59:24','On or near Nightclub','Manchester 055B','Other theft','Under investigation',ST_GeomFromText('POINT(-2.238922 53.476724)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E6:79:AE:8C:B5:E3','2018-08-28 16:20:19','On or near French Barn Lane','Manchester 002E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.219996 53.525738)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F7:B4:37:A8:52:12','2018-08-23 18:24:22','On or near Supermarket','Bolton 007B','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.531975 53.581438)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CA:B1:22:D0:2F:F2','2018-08-12 16:07:19','On or near Parking Area','Manchester 054C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.240987 53.487488)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('49:D2:CA:53:26:94','2018-08-08 16:36:42','On or near Leominster Drive','Manchester 052B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.249049 53.379384)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('23:86:9B:09:F8:D7','2018-08-01 05:05:01','On or near Dalesfield Crescent','Tameside 003A','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.029038 53.517066)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:F4:C7:3E:DF:91','2018-08-03 22:25:58','On or near Birch View','Rochdale 004D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.125907 53.639747)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('78:04:6D:74:53:73','2018-08-24 12:34:13','On or near Brixton Avenue','Manchester 038B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237636 53.429968)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BA:BE:36:5A:39:26','2018-08-28 12:06:52','On or near Dawson Lane','Bolton 016C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.437222 53.581004)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('37:67:01:A7:C2:E2','2018-08-29 02:47:25','On or near Flaxpool Close','Manchester 024B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.256476 53.456886)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('36:E0:ED:6C:7B:39','2018-08-16 09:36:03','On or near Devonshire Road','Rochdale 016C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.15672 53.59174)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7D:2C:42:34:7C:E4','2018-08-09 20:42:41','On or near Salop Street','Salford 017F','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.281191 53.49362)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('20:BE:17:90:93:DC','2018-08-04 18:25:14','On or near Parking Area','Salford 022D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.260573 53.4915)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8A:00:C7:A4:0E:42','2018-08-23 07:24:00','On or near Richmond Street','Manchester 055B','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.236952 53.47733)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:D0:0A:98:85:3C','2018-08-22 17:47:58','On or near Richmond Street','Wigan 023A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.498926 53.522373)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:91:7F:48:EC:59','2018-08-23 10:42:05','On or near Starkie Road','Bolton 010C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.411906 53.58557)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:31:1B:29:41:97','2018-08-20 16:47:14','On or near Stamford Street','Tameside 001B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.048554 53.517518)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:FA:10:FE:D4:E2','2018-08-28 17:39:34','On or near Christchurch Road','Trafford 013A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.355671 53.425783)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2B:7B:F0:B5:24:2F','2018-08-04 22:11:18','On or near Hollinhall Street','Oldham 012A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.084771 53.543645)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:81:E4:63:F7:19','2018-08-28 05:10:41','On or near Shopping Area','Manchester 054C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238637 53.482225)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:DF:63:B6:4B:82','2018-08-02 11:07:06','On or near Parking Area','Manchester 043E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.230708 53.418027)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2D:88:82:43:9F:65','2018-08-19 03:36:52','On or near Prison','Salford 008B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.302093 53.514251)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:F0:F7:57:ED:32','2018-08-15 22:31:07','On or near Dencombe Street','Manchester 020C','Theft from the person','Under investigation',ST_GeomFromText('POINT(-2.20101 53.456794)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E9:C4:61:03:32:92','2018-08-25 05:18:56','On or near Parking Area','Manchester 017F','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.160739 53.47263)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('70:13:15:C6:DF:30','2018-08-10 19:49:58','On or near Calverly Road','Stockport 022E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.191657 53.389764)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:2E:9D:67:58:55','2018-08-13 16:26:14','On or near Pilsworth Road','Rochdale 018E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.229911 53.587802)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:B7:D0:66:84:F5','2018-08-14 09:56:51','On or near Humber Place','Wigan 010C','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.675495 53.541559)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CE:57:33:3D:22:8A','2018-08-18 08:46:21','On or near Shakespeare Grove','Wigan 020C','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.64645 53.530889)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F2:32:B3:E7:75:70','2018-08-08 14:58:39','On or near Stockton Avenue','Stockport 018F','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.184243 53.403412)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C3:31:DB:EC:34:FF','2018-08-02 12:37:56','On or near Regatta Close','Oldham 027C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.14844 53.526837)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D9:BB:1F:F7:E8:0A','2018-08-29 08:34:15','On or near Castlemere Road','Manchester 001E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.227141 53.527594)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C6:B9:48:B6:4D:C7','2018-08-07 12:47:57','On or near Manchester Road','Trafford 024B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.352244 53.395286)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E7:A3:15:38:B4:3C','2018-08-09 17:09:14','On or near Eston Street','Manchester 022C','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.214397 53.459539)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:5A:A8:50:24:D8','2018-08-25 17:43:58','On or near Broadhurst Street','Bury 014E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.33659 53.570417)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1E:39:DE:30:28:9F','2018-08-25 16:21:15','On or near Grazing Drive','Salford 029D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.408705 53.452534)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1A:07:39:1A:04:CB','2018-08-29 18:30:41','On or near Greystoke Lane','Oldham 032C','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.168124 53.503792)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EE:21:8B:32:FB:F9','2018-08-11 17:34:34','On or near Coniston Walk','Trafford 022D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.303717 53.391275)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D0:50:11:B4:2C:B9','2018-08-10 02:25:29','On or near Rawson Avenue','Bolton 027B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.392831 53.551757)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('86:2D:B7:9B:42:3E','2018-08-25 22:43:10','On or near Kenmere Grove','Manchester 007E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.189156 53.517378)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FC:28:34:86:69:6C','2018-08-10 11:49:15','On or near Turnberry Road','Stockport 036A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.221554 53.373344)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3D:D2:CE:82:0A:5A','2018-08-18 04:56:02','On or near Newby Road','Stockport 031D','Other theft','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.129447 53.378127)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4E:14:ED:F3:1E:37','2018-08-21 15:07:36','On or near Pedestrian Subway','Rochdale 024B','Shoplifting','Offender given a caution',ST_GeomFromText('POINT(-2.195456 53.549088)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F6:6B:AE:CC:06:67','2018-08-30 20:06:03','On or near Shopping Area','Tameside 028A','Public order','Under investigation',ST_GeomFromText('POINT(-2.077328 53.451096)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('64:9F:17:40:06:3E','2018-08-04 03:27:21','On or near Parker Street','Manchester 055B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237782 53.480277)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3D:8F:A2:51:4A:7A','2018-08-27 23:50:05','On or near Meadow Bank','Stockport 011B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.183363 53.412159)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:8B:E8:6A:48:37','2018-08-29 05:00:58','On or near Garden Vale','Wigan 027C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.537577 53.512264)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EF:7D:5F:5D:ED:C0','2018-08-16 08:40:09','On or near Shopping Area','Wigan 030B','Other crime','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.518365 53.496161)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:AD:2B:D5:38:B7','2018-08-01 01:14:03','On or near Chevassut Street','Manchester 059A','Possession of weapons','Awaiting court outcome',ST_GeomFromText('POINT(-2.255401 53.468573)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('71:01:B6:C6:91:BF','2018-08-18 08:07:59','On or near Venice Street','Manchester 055B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236749 53.476126)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('41:02:5C:78:C1:5B','2018-08-08 10:39:22','On or near Adelaide Street East','Rochdale 020B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.210212 53.593806)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:96:6B:7C:D5:40','2018-08-24 02:47:47','On or near Supermarket','Salford 026A','Public order','Under investigation',ST_GeomFromText('POINT(-2.335079 53.482461)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('52:92:E1:1A:5A:C1','2018-08-04 14:02:16','On or near Neath Avenue','Manchester 046D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.263678 53.399164)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:85:31:35:5D:13','2018-08-26 20:03:19','On or near Parking Area','Wigan 002A','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.661605 53.58559)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:DD:89:20:6B:3E','2018-08-07 01:47:23','On or near Bronington Close','Manchester 046A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.249404 53.401522)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('08:E0:69:48:1D:FE','2018-08-27 08:37:12','On or near Nightclub','Wigan 008C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.633117 53.54527)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:6A:CE:CF:87:C1','2018-08-29 01:54:39','On or near Topp Street','Bolton 032D','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.392105 53.545)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7A:CF:E2:1E:76:98','2018-08-19 08:55:07','On or near Dean Avenue','Manchester 011A','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.184259 53.504424)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1A:EE:28:B5:C0:B1','2018-08-01 20:28:00','On or near Park Road','Bolton 024A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.38037 53.564219)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E8:26:9B:70:53:FB','2018-08-09 09:21:15','On or near Swinside Road','Bolton 013D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.382928 53.584911)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FE:4A:F4:94:61:78','2018-08-24 07:49:38','On or near Devoke Grove','Bolton 033D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.434884 53.546074)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('92:15:6C:AC:F2:52','2018-08-16 18:39:04','On or near Aldercroft Avenue','Bolton 013C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.394327 53.589188)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('51:80:1B:06:52:7E','2018-08-13 09:07:18','On or near Absalom Drive','Manchester 058A','Public order','Under investigation',ST_GeomFromText('POINT(-2.244721 53.510482)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('28:62:E6:D2:2C:CD','2018-08-07 00:18:59','On or near Moss Street','Wigan 024D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.600643 53.522076)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('19:B2:55:A5:D6:DC','2018-08-07 10:53:20','On or near Lamsholme Close','Manchester 027A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.19109 53.447795)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('57:3D:32:28:91:3B','2018-08-17 06:15:56','On or near Findlay Street','Wigan 033D','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.526496 53.497842)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FC:9B:67:87:49:F3','2018-08-14 08:45:14','On or near Wrington Close','Wigan 027B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.534251 53.509151)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2D:50:73:61:2C:1B','2018-08-18 08:09:41','On or near Petrol Station','Stockport 007D','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.170951 53.419386)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:C3:ED:14:34:8A','2018-08-24 07:28:14','On or near Rivers Lane','Trafford 002A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.359086 53.461322)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:D7:E0:D2:20:93','2018-08-02 08:57:02','On or near Brookside Crescent','Salford 003B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.389178 53.523671)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('92:2F:31:B9:B8:25','2018-08-11 08:35:01','On or near Westminster Road','Trafford 002D','Public order','Under investigation',ST_GeomFromText('POINT(-2.344814 53.456537)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:F1:02:E0:ED:67','2018-08-20 11:32:32','On or near Peacock Grove','Manchester 023C','Other theft','Under investigation',ST_GeomFromText('POINT(-2.172546 53.460443)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C2:61:11:60:ED:89','2018-08-24 16:22:31','On or near Shopping Area','Rochdale 010C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.157029 53.61804)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FC:04:29:44:A5:8A','2018-08-12 23:15:31','On or near Hospital','Stockport 027B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.13202 53.383778)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:9C:B6:B8:0C:52','2018-08-28 12:07:37','On or near Tobermory Close','Manchester 012B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.171624 53.481936)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('49:3C:E5:91:4E:09','2018-08-12 17:38:02','On or near New Buildings Place','Rochdale 010C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.156607 53.618238)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6A:26:64:47:D6:1D','2018-08-17 09:03:56','On or near Shaw Road','Oldham 005A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.101921 53.571765)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F0:EF:72:CD:CE:83','2018-08-16 19:48:25','On or near Rushmere Drive','Bury 006B','Shoplifting','Awaiting court outcome',ST_GeomFromText('POINT(-2.31276 53.604871)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D7:FA:42:44:16:57','2018-08-20 21:06:50','On or near York Road East','Rochdale 025B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.179402 53.535954)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D7:A9:BF:64:FC:7F','2018-08-01 21:09:31','On or near Albert Royds Street','Rochdale 008B','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.135523 53.624537)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BC:1A:56:76:8C:80','2018-08-03 02:42:32','On or near Corringham Road','Manchester 034C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.181106 53.436899)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FF:50:95:F4:60:50','2018-08-04 04:07:44','On or near Blackley Park Road','Manchester 006B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.212757 53.51697)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('99:59:94:F1:02:00','2018-08-24 12:04:38','On or near Pewsey Road','Manchester 052B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.247154 53.381806)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:04:1C:50:7F:87','2018-08-28 21:42:24','On or near Hare Street','Manchester 054E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236132 53.484361)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0F:9D:6F:B1:C9:AC','2018-08-09 10:44:13','On or near Jane Street','Rochdale 010D','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.164056 53.621212)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F8:19:E3:BD:3B:B8','2018-08-26 16:19:30','On or near Frances Street','Stockport 016D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.159432 53.405173)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('25:51:F7:8A:96:36','2018-08-12 06:25:35','On or near Belfield Road','Rochdale 008G','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.136453 53.622316)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EB:54:74:8B:6C:5F','2018-08-09 03:01:15','On or near Wordsworth Avenue','Bury 016C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.344845 53.56616)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1C:F7:70:3B:49:50','2018-08-18 00:54:52','On or near Ivy Road','Bury 009B','Possession of weapons','Local resolution',ST_GeomFromText('POINT(-2.319001 53.590779)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:BA:0D:73:B3:E3','2018-08-12 20:14:44','On or near Highfield Drive','Bolton 033E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.423451 53.545145)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('95:E4:E4:28:6C:88','2018-08-13 22:25:24','On or near Blackley Close','Bury 017C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.281459 53.556745)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('43:C0:29:04:5A:49','2018-08-14 07:19:43','On or near Shelford Avenue','Manchester 020D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.18656 53.458544)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FE:8B:CF:8B:F0:C8','2018-08-06 16:12:51','On or near Piccadilly','Manchester 055B','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FD:B9:26:BE:AE:40','2018-08-25 07:14:41','On or near Danesway','Bury 026D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.257976 53.520422)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:D6:D2:23:EB:45','2018-08-01 07:54:19','On or near Back Lever Edge Lane','Bolton 023E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.446934 53.558173)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2A:D2:63:A1:74:AF','2018-08-02 06:40:40','On or near Cawdor Court','Bolton 027C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.408245 53.555148)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('72:FB:99:76:D2:11','2018-08-23 10:38:54','On or near Soho Street','Wigan 015A','Shoplifting','Formal action is not in the public interest',ST_GeomFromText('POINT(-2.650466 53.54195)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B3:70:75:BE:6C:10','2018-08-16 13:02:41','On or near Chepstow Grove','Wigan 031A','Robbery','Under investigation',ST_GeomFromText('POINT(-2.482553 53.505758)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('34:7A:A9:DA:5F:6C','2018-08-10 09:14:15','On or near Stockport Road','Tameside 027C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.024218 53.449132)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('97:A2:76:0B:5C:FD','2018-08-07 23:28:26','On or near Falshaw Way','Manchester 023B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.168626 53.451766)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:E6:AE:19:EA:A7','2018-08-15 23:40:59','On or near Wrigley Street','Tameside 006D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.09361 53.494229)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BB:3E:67:87:BA:D1','2018-08-22 07:48:41','On or near Smith Street','Rochdale 010C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.153777 53.617549)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DC:CE:8D:4E:58:8A','2018-08-01 04:26:08','On or near Aldwyn Close','Bury 018D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.323012 53.554141)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2C:06:5D:E6:50:B4','2018-08-08 10:55:08','On or near Trippier Road','Salford 025D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.380934 53.477434)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:4F:EC:F7:E0:E3','2018-08-07 19:13:54','On or near Melland Road','Manchester 023A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.178061 53.453874)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0D:A8:2E:54:E1:41','2018-08-14 14:47:36','On or near Workesleigh Street','Manchester 011D','Drugs','Under investigation',ST_GeomFromText('POINT(-2.175397 53.498002)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E0:06:E2:2F:35:CE','2018-08-25 05:03:20','On or near Featherstall Road South','Oldham 016D','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.128779 53.539893)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5D:2A:96:9B:3D:C8','2018-08-08 04:38:37','On or near Chatsworth Road','Manchester 023E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.178575 53.461477)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4D:36:00:46:2B:3C','2018-08-09 10:06:53','On or near Birchenall Street','Manchester 007B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.198263 53.513516)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3A:E6:80:96:E1:F2','2018-08-26 16:45:03','On or near Buttermere Road','Oldham 012A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.082678 53.546127)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('26:99:21:B1:94:52','2018-08-28 19:11:29','On or near Heath Road','Stockport 023E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.155075 53.394303)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9D:FA:71:6F:55:6A','2018-08-05 23:39:26','On or near The Clough','Stockport 004B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.140437 53.433403)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('67:35:C8:A6:FA:E7','2018-08-20 14:37:53','On or near Chester Avenue','Tameside 009C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.035966 53.488157)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F9:D8:BB:53:9F:9D','2018-08-26 15:28:41','On or near Clifton Avenue','Manchester 036B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.218538 53.438903)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('70:B9:25:F3:E9:EE','2018-08-19 12:05:19','On or near The Gateway','Manchester 009A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.199023 53.502037)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C5:F0:CC:A4:37:16','2018-08-17 13:01:04','On or near Woolley Lane','Tameside 023A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-1.988709 53.46828)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('78:48:03:9D:FC:EB','2018-08-13 18:14:31','On or near East Gate Street','Rochdale 010C','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.154889 53.61993)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C3:3F:99:09:68:CA','2018-08-29 19:06:23','On or near Park/Open Space','Wigan 017C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.505637 53.531181)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('75:1E:FF:42:B4:85','2018-08-25 11:11:57','On or near Penistone Avenue','Manchester 003C','Drugs','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.194316 53.524291)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('26:A5:38:C4:C9:F7','2018-08-24 04:34:40','On or near Bridge Street','Rochdale 018B','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.229034 53.593313)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BF:6A:DB:63:43:26','2018-08-21 01:31:37','On or near Parking Area','Wigan 015A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.635551 53.542578)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D9:FE:60:38:2A:7C','2018-08-15 16:13:18','On or near Oxford Avenue','Rochdale 011D','Public order','Under investigation',ST_GeomFromText('POINT(-2.192735 53.611237)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('89:42:B5:75:CD:35','2018-08-18 06:36:21','On or near Pedestrian Subway','Bury 008E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.293236 53.59205)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('09:57:55:29:44:E4','2018-08-06 02:52:59','On or near Further/Higher Educational Building','Manchester 057A','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237738 53.469769)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:B5:22:A5:D7:68','2018-08-04 16:57:27','On or near Supermarket','Salford 016C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.254194 53.503478)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7F:FA:25:C7:AF:E7','2018-08-03 20:25:54','On or near Tonge Street','Manchester 018A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.214852 53.472158)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('13:B4:46:C9:52:EB','2018-08-20 16:31:58','On or near Ennismore Avenue','Salford 021C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.330561 53.484721)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:66:F4:94:C2:08','2018-08-10 13:35:25','On or near Eleanor Street','Oldham 016E','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.125652 53.548912)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9A:14:18:E8:92:A6','2018-08-07 20:17:43','On or near Chippendale Place','Tameside 004C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.072216 53.499646)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:4E:1E:23:4F:56','2018-08-15 06:47:46','On or near Tudor Court','Wigan 034C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.494828 53.49556)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:17:EC:88:F7:03','2018-08-09 04:46:51','On or near Supermarket','Salford 026A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.335079 53.482461)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:E1:77:0C:CD:B9','2018-08-13 07:43:12','On or near Keppel Street','Tameside 007C','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.084931 53.488186)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:6C:5B:77:77:1D','2018-08-21 22:42:09','On or near Christie Way','Manchester 042C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.258377 53.425197)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2A:37:E7:4D:01:D0','2018-08-28 17:58:31','On or near Poundswick Lane','Manchester 050E','Robbery','Under investigation',ST_GeomFromText('POINT(-2.261645 53.381577)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:87:98:ED:11:D0','2018-08-15 17:03:45','On or near Further/Higher Educational Building','Manchester 055B','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.23406 53.482962)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('35:2B:D9:E7:90:E8','2018-08-19 19:33:12','On or near Essex Street','Rochdale 015D','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.157956 53.611099)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CF:AC:7F:B9:4E:44','2018-08-19 23:37:42','On or near Alvanley Crescent','Stockport 026B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.176139 53.393348)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('92:06:60:6D:EC:5F','2018-08-02 17:34:36','On or near Fancroft Road','Manchester 050B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.270076 53.3907)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C5:B5:BB:85:28:24','2018-08-11 15:37:02','On or near Riley Court','Bolton 016B','Public order','Under investigation',ST_GeomFromText('POINT(-2.430855 53.589107)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EC:5A:E9:04:04:E3','2018-08-27 17:15:51','On or near Sports/Recreation Area','Manchester 011C','Other crime','Under investigation',ST_GeomFromText('POINT(-2.174373 53.501725)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B2:C6:AB:71:B9:42','2018-08-29 05:47:21','On or near St Ann''S Road North','Stockport 036A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.227417 53.376389)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BA:1B:08:DE:72:D7','2018-08-28 11:06:46','On or near Petrol Station','Manchester 022F','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.222223 53.461323)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('98:D4:C9:5A:90:25','2018-08-30 13:50:43','On or near Sherwood Road','Stockport 005C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.092335 53.427464)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:E6:A8:13:54:2E','2018-08-04 10:36:02','On or near Back Water Street','Tameside 004D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.089327 53.493109)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:58:D2:3B:2F:47','2018-08-04 23:42:42','On or near Petrol Station','Rochdale 018B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.22134 53.59544)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5B:48:FA:7F:D7:A7','2018-08-04 15:05:07','On or near Carisbrooke Drive','Bolton 005B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.425689 53.598186)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A9:D6:1F:38:85:DA','2018-08-20 18:07:48','On or near Gatley Road','Stockport 028B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.226101 53.391951)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('52:77:8A:D5:2B:CF','2018-08-20 23:05:01','On or near Taplin Drive','Manchester 023C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.174582 53.461096)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C5:C9:B0:2D:0A:F3','2018-08-20 02:34:17','On or near Rusholme Place','Manchester 026C','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.225879 53.457828)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:88:04:DB:48:95','2018-08-10 14:23:32','On or near Bury Road','Bury 013A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.307564 53.578217)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('66:CF:62:5B:F8:CF','2018-08-15 18:32:59','On or near Oldham Road','Oldham 003B','Public order','Under investigation',ST_GeomFromText('POINT(-2.0578 53.573583)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CC:54:36:D6:90:BC','2018-08-09 06:22:47','On or near Delamere Road','Trafford 005D','Public order','Awaiting court outcome',ST_GeomFromText('POINT(-2.378481 53.448939)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5D:7E:89:DE:7F:70','2018-08-22 06:25:47','On or near Greymont Road','Bury 004B','Public order','Under investigation',ST_GeomFromText('POINT(-2.28883 53.610612)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5E:C4:7A:21:A1:DE','2018-08-02 23:27:45','On or near Higson Avenue','Stockport 012D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.106901 53.415029)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D8:09:95:8B:B7:71','2018-08-04 19:57:05','On or near St Gregorys Road','Manchester 018D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.221809 53.471588)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0F:A9:C6:58:7B:F8','2018-08-21 07:57:03','On or near Kings Street','Bolton 028C','Robbery','Awaiting court outcome',ST_GeomFromText('POINT(-2.521645 53.550886)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('22:F7:1F:B8:44:C2','2018-08-26 10:48:46','On or near Lord Street','Stockport 014B','Vehicle crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.159277 53.407897)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BE:E5:88:83:97:64','2018-08-26 11:27:34','On or near Back Lenora Street','Bolton 018A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.461122 53.567629)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('15:31:CE:E0:B1:85','2018-08-16 23:12:33','On or near Kirtley Avenue','Salford 020G','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.354614 53.490359)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('27:C7:71:88:D4:B5','2018-08-18 06:01:47','On or near Bridgewater Road','Salford 007F','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.403633 53.517852)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0D:F0:C1:2C:28:D7','2018-08-23 09:25:46','On or near Police Station','Manchester 039D','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.249481 53.424883)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('89:81:6D:27:07:DE','2018-08-23 18:12:36','On or near Saltergate','Bolton 020A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.476549 53.564584)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FC:64:88:4C:1A:CD','2018-08-22 09:29:31','On or near Millbrook Street','Stockport 014B','Bicycle theft','Under investigation',ST_GeomFromText('POINT(-2.157565 53.404798)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C6:09:27:B0:67:F9','2018-08-17 23:02:37','On or near Parking Area','Trafford 003B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.290194 53.46124)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2D:4A:AF:57:81:C2','2018-08-30 16:34:50','On or near Woodstock Street','Rochdale 009B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.177704 53.623853)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D2:8C:94:3C:C2:6A','2018-08-09 17:43:54','On or near Raper Street','Oldham 012A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.086 53.546754)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('88:48:C5:4A:AE:6D','2018-08-11 12:29:59','On or near Langley Avenue','Rochdale 022A','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.208343 53.564067)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C5:94:AB:E8:83:3C','2018-08-22 04:21:00','On or near Grundy Close','Bury 011C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.286478 53.586844)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('71:EE:39:0F:7F:75','2018-08-14 01:10:43','On or near Otley Avenue','Salford 021E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.314084 53.489997)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C6:85:AF:D1:20:CA','2018-08-04 13:42:36','On or near Vine Place','Rochdale 015A','Public order','Awaiting court outcome',ST_GeomFromText('POINT(-2.155377 53.608577)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('15:B2:CE:D2:15:7F','2018-08-22 23:48:00','On or near Belgrave Road','Manchester 005A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.158657 53.515939)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('07:08:E6:11:D0:78','2018-08-10 18:36:19','On or near Cheshire Road','Trafford 017E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.439052 53.413514)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DF:14:C5:A3:FB:DF','2018-08-20 17:37:30','On or near Lindale Avenue','Bury 017B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.284604 53.561969)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FE:96:A8:CD:80:25','2018-08-12 09:18:18','On or near Banff Road','Manchester 026C','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.225621 53.457398)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('89:10:12:17:6E:58','2018-08-05 01:45:38','On or near Lime Street','Oldham 010B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.131987 53.552383)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DF:2A:33:FE:75:F2','2018-08-11 03:38:22','On or near Crescent Road','Trafford 026B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.343565 53.374574)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('74:5C:4E:9C:4C:02','2018-08-26 01:05:32','On or near Ventor Street','Manchester 006B','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.21286 53.510471)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('54:93:B1:7D:61:E0','2018-08-10 07:16:52','On or near Wadeford Close','Manchester 054A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.22361 53.487315)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('83:86:4A:AF:24:9C','2018-08-15 23:33:52','On or near Crompton Street','Salford 001A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.439882 53.536133)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3D:B7:A0:55:70:43','2018-08-13 16:48:09','On or near Nottingham Drive','Bolton 016C','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.436172 53.587596)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('25:E7:C9:0A:88:2A','2018-08-25 18:31:29','On or near Prison','Manchester 058C','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.246337 53.492717)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D2:18:28:B8:A0:29','2018-08-09 20:07:11','On or near Parking Area','Manchester 045E','Drugs','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.221935 53.409064)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5D:A0:3C:AB:DE:CC','2018-08-12 17:40:52','On or near Mulberry Road','Salford 024D','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.285761 53.487362)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:A0:3B:07:61:5A','2018-08-28 17:07:50','On or near Priory Avenue','Salford 010C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.266638 53.504359)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('ED:B6:DA:36:E0:89','2018-08-16 15:43:19','On or near Abingdon Close','Rochdale 015B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.164567 53.604996)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('64:0D:0B:E0:F9:8E','2018-08-30 16:42:10','On or near Shakleton Avenue','Manchester 003B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.19582 53.526715)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('01:10:1C:41:35:25','2018-08-21 05:39:01','On or near Chell Street','Manchester 027E','Theft from the person','Under investigation',ST_GeomFromText('POINT(-2.198584 53.456448)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('45:3D:A0:FB:A2:40','2018-08-30 07:31:17','On or near Barlow Street','Rochdale 010C','Public order','Under investigation',ST_GeomFromText('POINT(-2.150022 53.615658)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:BB:D9:0D:D3:DB','2018-08-06 00:51:12','On or near Kendrew Road','Bolton 018B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.462401 53.565898)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F0:25:20:D9:94:29','2018-08-28 09:17:49','On or near Barley Croft Road','Tameside 020B','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.070832 53.465554)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:41:A4:4C:2A:05','2018-08-11 22:41:11','On or near Hulme Hall Road','Manchester 059B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.263689 53.471422)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('54:D7:FF:AF:50:E9','2018-08-09 18:02:32','On or near Goyt Valley Road','Stockport 012E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.108892 53.416807)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('89:F1:78:75:15:0E','2018-08-18 20:41:06','On or near Countess Grove','Salford 016A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.264777 53.496111)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:D6:90:49:56:0F','2018-08-20 09:59:43','On or near Godley Hill Road','Tameside 022A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.051972 53.452)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('36:70:BA:E6:70:3E','2018-08-12 18:23:58','On or near Worsley Road','Bolton 018B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.462841 53.567416)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('18:F3:67:4D:7C:36','2018-08-29 19:52:10','On or near Doveridge Gardens','Salford 017B','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.290667 53.490757)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('82:48:24:17:DB:F2','2018-08-13 23:56:48','On or near Conference/Exhibition Centre','Tameside 028E','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.080068 53.45087)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3C:8E:CA:06:72:59','2018-08-14 00:15:14','On or near Avens Road','Trafford 017B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.425424 53.415281)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3C:03:39:9E:75:62','2018-08-16 20:14:39','On or near Beadham Drive','Manchester 001A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.241839 53.533839)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7A:83:F5:B6:58:55','2018-08-07 18:06:16','On or near Pine View','Wigan 021B','Other theft','Under investigation',ST_GeomFromText('POINT(-2.682158 53.516749)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('55:DE:ED:8C:FB:0D','2018-08-03 08:51:07','On or near Elgin Drive','Trafford 018B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.300621 53.419121)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('86:EB:B5:71:03:F2','2018-08-26 09:18:37','On or near Park/Open Space','Rochdale 002C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.121016 53.642979)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:68:FE:BF:0B:FF','2018-08-26 23:37:54','On or near Henley Street','Oldham 016E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.123722 53.549453)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3D:08:7A:79:19:D2','2018-08-08 02:37:56','On or near Ansell Close','Manchester 017D','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.173835 53.466068)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2C:2F:AC:FC:1B:61','2018-08-22 20:01:00','On or near Parking Area','Wigan 030B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.51422 53.497428)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:25:B5:49:87:00','2018-08-11 18:01:12','On or near Sickle Street','Manchester 054C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.240549 53.481916)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6D:8E:38:B0:16:65','2018-08-23 13:56:55','On or near Cross Lees','Rochdale 005F','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.152062 53.632319)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('70:10:DD:A7:F9:1F','2018-08-08 23:14:24','On or near West Church Street','Rochdale 018D','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.224707 53.592162)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:59:31:A0:84:E0','2018-08-14 03:24:51','On or near Rowland Street','Rochdale 012E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.140647 53.610483)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2F:6D:7F:06:B2:B8','2018-08-10 12:51:29','On or near The Woodlands','Rochdale 020D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.209716 53.585196)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3D:E1:CC:D5:88:3D','2018-08-22 15:48:33','On or near Chatsworth Grove','Manchester 028F','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.258846 53.450436)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:71:0F:C7:C9:CD','2018-08-21 07:26:13','On or near Wood Lane','Tameside 006B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.094922 53.500924)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('80:B2:32:80:9B:3E','2018-08-14 00:17:42','On or near Haydock Street','Bolton 016F','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.431094 53.584405)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('05:AE:B3:67:55:45','2018-08-06 08:01:38','On or near A5185','Salford 021B','Public order','Under investigation',ST_GeomFromText('POINT(-2.320032 53.489343)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:30:A2:1B:0E:2C','2018-08-15 18:59:03','On or near Romiley Drive','Bolton 013E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.394523 53.58588)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:FD:9D:A5:B7:F4','2018-08-19 09:55:54','On or near Marron Place','Manchester 060A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.247338 53.478199)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('77:12:0C:52:D9:12','2018-08-27 14:01:27','On or near Bus/Coach Station','Manchester 055B','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237557 53.477841)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('75:F6:00:6F:E6:10','2018-08-22 18:43:08','On or near Ashton Street','Rochdale 015B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.163213 53.606652)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('75:9F:19:0F:25:A7','2018-08-09 07:43:09','On or near Chaucer Street','Rochdale 017B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.175769 53.591175)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:80:BF:E4:7E:C9','2018-08-02 21:20:59','On or near Ainsdale Grove','Stockport 002C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.157894 53.440653)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:64:E5:DF:3D:C5','2018-08-09 16:24:43','On or near Richmond Street','Wigan 023A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.498926 53.522373)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AF:34:BD:4C:5E:F9','2018-08-19 18:54:26','On or near Shepherd Street','Oldham 008B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.121879 53.564591)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9E:AA:5D:0A:7F:DF','2018-08-03 14:11:34','On or near Gordon Street','Tameside 004E','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.078188 53.492703)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D4:12:02:D4:A4:AF','2018-08-30 01:11:52','On or near Hill Close','Oldham 019B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.088047 53.536892)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AE:1C:16:32:03:1B','2018-08-23 21:40:44','On or near Cyril Street','Bolton 022E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.417973 53.568147)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B8:1B:FB:5E:71:73','2018-08-14 10:19:09','On or near Windsor Avenue','Oldham 031A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.143732 53.513073)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5A:2C:EA:A8:D8:22','2018-08-14 02:21:34','On or near Hazel Avenue','Tameside 006C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.074706 53.501442)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('58:FA:E3:B8:CB:2E','2018-08-24 04:13:50','On or near Woodvale Avenue','Wigan 017C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.500153 53.534314)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4B:DD:4F:66:A3:09','2018-08-03 13:50:59','On or near Ennerdale Grove','Tameside 005D','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.107997 53.496922)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BE:39:03:D9:C3:B5','2018-08-14 11:06:09','On or near Warren Street','Stockport 014D','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.158361 53.412473)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FF:BD:CA:B5:C4:17','2018-08-28 20:52:39','On or near Manchester Road','Tameside 010E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.146404 53.479066)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:CC:CE:41:31:BD','2018-08-13 15:24:27','On or near Trowtree Avenue','Manchester 018A','Violence and sexual offences','Local resolution',ST_GeomFromText('POINT(-2.204999 53.468922)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('92:DD:E7:F7:77:56','2018-08-18 23:54:17','On or near Brookfield Road','Stockport 022C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.201976 53.390763)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('04:D0:D6:EC:D3:AB','2018-08-04 13:47:46','On or near Charnock Drive','Bolton 016B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.432752 53.587069)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E4:B8:B9:A6:29:5B','2018-08-09 21:09:31','On or near Healey Close','Manchester 044E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.287301 53.414147)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2A:81:A8:DF:72:BD','2018-08-20 01:50:06','On or near Butter Lane','Manchester 054C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.249391 53.481448)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D9:E2:76:DA:06:54','2018-08-04 13:01:21','On or near Duncombe Drive','Manchester 009E','Burglary','Under investigation',ST_GeomFromText('POINT(-2.188239 53.507663)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0C:73:7C:70:DE:00','2018-08-15 09:50:03','On or near The De Traffords','Salford 029C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.414701 53.452864)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CD:EF:68:06:81:F7','2018-08-30 05:53:39','On or near Worsley Place','Rochdale 012E','Other theft','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.14356 53.613562)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('27:2A:2B:74:E0:DA','2018-08-19 16:08:05','On or near Parking Area','Oldham 017E','Shoplifting','Awaiting court outcome',ST_GeomFromText('POINT(-2.141776 53.545955)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('39:29:B4:9A:EA:8E','2018-08-09 08:23:10','On or near Cedar Road','Trafford 017E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.432832 53.415829)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BE:4E:50:AA:96:6E','2018-08-10 08:38:51','On or near Whitehead Crescent','Bury 005C','Public order','Under investigation',ST_GeomFromText('POINT(-2.314869 53.608129)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:08:EE:1A:EC:80','2018-08-02 21:29:18','On or near Faraday Street','Manchester 055B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.232762 53.482686)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0C:F6:9C:91:2C:09','2018-08-05 20:32:30','On or near Supermarket','Salford 001B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.425043 53.530829)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('39:87:7F:DA:94:9D','2018-08-26 12:41:21','On or near Brayshaw Close','Rochdale 018E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.227663 53.588301)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('51:25:7F:9D:02:C4','2018-08-14 20:08:32','On or near Rowbottom Square','Wigan 008C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.631846 53.54507)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F4:BE:9C:87:51:37','2018-08-28 12:30:30','On or near Hawk Close','Bury 007C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.279716 53.601385)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:D3:B8:D2:D3:C3','2018-08-27 08:29:10','On or near Haven Street','Salford 023B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.296187 53.482582)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9D:7E:E6:3E:C9:3F','2018-08-29 15:48:44','On or near Hollinwood Avenue','Manchester 003D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.172263 53.524351)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B9:57:1D:0F:D7:6D','2018-08-28 14:20:07','On or near Wright Robinson Close','Manchester 015C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.205547 53.476408)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('84:BF:CE:BD:C1:66','2018-08-03 21:22:56','On or near Melrose Avenue','Trafford 015D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.321782 53.419875)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D7:6E:58:82:05:68','2018-08-02 04:52:35','On or near Trafford Boulevard','Trafford 002E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.354175 53.468375)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8B:86:8A:1B:CC:D3','2018-08-29 08:02:36','On or near Mason Street','Manchester 054E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.233507 53.486532)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('73:8A:83:6D:27:0F','2018-08-07 00:25:58','On or near Victoria Street','Wigan 030C','Shoplifting','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.525326 53.504409)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('80:32:5A:62:6E:D8','2018-08-12 15:27:17','On or near Sparrow Hill','Rochdale 010E','Possession of weapons','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.15975 53.613955)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:5D:A7:B4:58:3D','2018-08-09 10:29:03','On or near Marron Place','Manchester 060A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.247338 53.478199)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('13:C8:F9:63:6C:41','2018-08-09 19:07:19','On or near Glebe Avenue','Wigan 035E','Possession of weapons','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.633685 53.48427)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2A:37:91:8F:54:DC','2018-08-15 10:32:04','On or near Livingstone Street','Oldham 026E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.072097 53.535959)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EE:F3:D9:83:25:07','2018-08-25 05:14:34','On or near Foster Street','Oldham 019C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.086835 53.541944)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AF:78:8C:02:D5:15','2018-08-30 19:45:12','On or near Police Street','Manchester 054C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.246846 53.48166)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:DC:A3:39:C3:71','2018-08-11 14:53:12','On or near Lingfield Avenue','Trafford 019E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.362624 53.41165)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3F:8F:37:D1:C7:A6','2018-08-21 22:13:46','On or near Johnson''S Square','Manchester 013B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.216455 53.493971)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('71:6B:B7:E3:C6:5A','2018-08-28 12:44:02','On or near Wigshaw Close','Wigan 037E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.517133 53.481614)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('57:04:D5:77:1E:04','2018-08-29 05:16:25','On or near Barnes Avenue','Stockport 013B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.190772 53.413711)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EB:19:C7:79:D4:55','2018-08-19 21:49:54','On or near Back Manchester Road West','Bolton 022B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.415382 53.565666)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('83:62:3D:2B:1A:E5','2018-08-24 02:46:57','On or near Henderson Street','Rochdale 004A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.142011 53.629339)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F9:F9:D7:E8:D4:D0','2018-08-02 11:42:10','On or near Gloucester Street','Stockport 016D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.16924 53.401627)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:02:45:97:1C:F9','2018-08-18 17:51:54','On or near Petrol Station','Stockport 019C','Other theft','Under investigation',ST_GeomFromText('POINT(-2.156821 53.402759)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('35:EF:19:A7:85:4D','2018-08-05 19:48:33','On or near George Street','Manchester 055B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.241041 53.478436)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DA:82:4C:8C:5D:E3','2018-08-29 22:04:07','On or near Colville Drive','Bury 010C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.325437 53.586915)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:A2:4B:D9:CE:06','2018-08-29 11:14:38','On or near Slater Street','Oldham 016D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.120904 53.540522)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('45:B3:72:0A:8A:EE','2018-08-02 22:29:44','On or near Summer Street','Rochdale 010C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.150894 53.614497)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('67:1B:77:8C:FF:AA','2018-08-02 13:30:07','On or near Wilmslow Road','Manchester 032A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.219124 53.447441)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2D:26:91:45:8B:D6','2018-08-19 23:34:05','On or near Mealhouse Brow','Stockport 014B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.156595 53.411028)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('64:F0:43:16:22:91','2018-08-28 15:07:58','On or near Supermarket','Tameside 013A','Public order','Awaiting court outcome',ST_GeomFromText('POINT(-2.105918 53.491423)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3D:4B:4A:2A:15:3F','2018-08-11 03:56:58','On or near Vienna Road East','Stockport 023A','Other theft','Under investigation',ST_GeomFromText('POINT(-2.167087 53.397298)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F8:5F:24:8C:5E:5B','2018-08-29 11:03:35','On or near East Street','Tameside 019C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.111845 53.469927)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3B:F5:7E:97:A3:A1','2018-08-02 00:28:08','On or near St James Street','Bolton 033A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.412843 53.542198)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7D:27:F7:F2:06:5C','2018-08-15 00:54:32','On or near High Street','Stockport 022A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.215469 53.394622)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:C5:E0:6B:35:71','2018-08-20 13:16:55','On or near Trafalgar Street','Tameside 013E','Public order','Under investigation',ST_GeomFromText('POINT(-2.112157 53.479517)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4D:68:97:F6:1E:22','2018-08-24 16:41:47','On or near Wellbank Avenue','Tameside 004A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.073351 53.502369)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A1:7E:EA:E1:D2:A9','2018-08-16 06:22:30','On or near Kings Road','Trafford 004C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.269931 53.455526)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B2:0E:14:71:57:C4','2018-08-13 18:12:29','On or near Lincoln Close','Wigan 040B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.539761 53.475276)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('43:2F:1E:FC:17:B7','2018-08-16 04:23:07','On or near Hope Street','Manchester 055B','Other theft','Under investigation',ST_GeomFromText('POINT(-2.235083 53.479976)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:0C:3A:96:70:CA','2018-08-21 03:42:52','On or near The Link','Stockport 004D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.134925 53.432385)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2B:3D:72:A5:89:FC','2018-08-17 13:42:37','On or near Brock Close','Manchester 017A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.168216 53.473654)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('96:EE:C3:A8:17:ED','2018-08-14 02:08:02','On or near High Street','Manchester 054C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238961 53.483645)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:54:E4:C3:D2:B3','2018-08-17 17:56:52','On or near Waterson Avenue','Manchester 009E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.195216 53.506897)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FD:09:2A:91:6E:79','2018-08-23 01:12:53','On or near Beech Road','Manchester 037B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.278113 53.437916)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:E5:BA:E3:9F:5B','2018-08-10 00:06:32','On or near Central Road','Trafford 017A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.425714 53.417194)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FD:DD:AE:2D:48:C5','2018-08-05 09:21:50','On or near Vernon Street','Tameside 006C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.085173 53.495916)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('40:BB:B5:B2:35:DB','2018-08-28 18:01:05','On or near Wrigley Street','Tameside 006D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.09361 53.494229)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6D:7B:F9:F5:97:67','2018-08-15 09:18:22','On or near Ingleby Avenue','Manchester 002B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.204893 53.531221)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('03:9E:FA:66:E1:1E','2018-08-18 02:31:00','On or near St Ann Street','Manchester 054C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.245897 53.481833)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:6F:6D:2D:87:50','2018-08-03 00:21:30','On or near Sackville Street','Tameside 013A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.094387 53.490885)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('80:F3:D0:F1:B6:70','2018-08-29 03:54:53','On or near Bridgefield Crescent','Oldham 021C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.063817 53.538481)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9C:52:AA:E1:6A:F6','2018-08-28 13:05:32','On or near Parking Area','Rochdale 010C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.160656 53.617765)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('45:98:FB:99:33:F6','2018-08-06 14:57:55','On or near Hospital','Manchester 051B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.29319 53.388821)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('61:D4:A8:59:1D:A0','2018-08-13 10:46:31','On or near Selby Drive','Salford 021B','Public order','Under investigation',ST_GeomFromText('POINT(-2.318436 53.491621)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('94:AA:FC:53:5A:87','2018-08-07 11:01:30','On or near Ashbury Close','Bolton 016D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.436816 53.57092)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4B:B0:AB:F5:CA:83','2018-08-09 06:54:54','On or near Nightclub','Manchester 055B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.239422 53.477226)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FF:0E:77:AC:F7:16','2018-08-12 04:48:55','On or near Burnage Avenue','Manchester 034E','Other crime','Under investigation',ST_GeomFromText('POINT(-2.199133 53.438686)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('75:AF:06:5B:7E:9D','2018-08-29 14:51:44','On or near Parking Area','Oldham 017E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.140039 53.545579)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1A:D8:85:82:EF:61','2018-08-03 22:35:35','On or near Blackpool Street','Manchester 015A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.178351 53.483409)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FF:94:44:81:09:C2','2018-08-11 22:35:47','On or near Marron Place','Manchester 060A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.247338 53.478199)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('43:64:D2:73:62:AE','2018-08-23 23:51:55','On or near Worsley Road North','Salford 003A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.400292 53.534645)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('38:DD:4E:8C:ED:B3','2018-08-11 22:12:35','On or near Pomona Crescent','Salford 028B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.277934 53.470365)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('79:25:D7:BE:7A:FB','2018-08-23 00:54:39','On or near Peveril Road','Oldham 011B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.091055 53.553527)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AD:A6:BC:10:2A:15','2018-08-27 21:11:06','On or near Price Street','Bolton 027D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.39562 53.552916)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:C9:28:D0:75:D1','2018-08-01 08:19:35','On or near Wharf End','Trafford 006B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.285357 53.465341)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('15:E6:84:0F:CC:1A','2018-08-08 00:39:12','On or near Crompton Way','Bolton 010A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.411505 53.597157)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5C:92:3E:29:28:81','2018-08-02 08:50:48','On or near Rostherne Road','Stockport 026C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.165978 53.390531)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('53:8D:FF:24:83:2A','2018-08-18 16:20:30','On or near Eastgrove Avenue','Bolton 003C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.434803 53.610233)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:06:2A:DF:72:FE','2018-08-12 08:17:00','On or near Central Drive','Manchester 008F','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.22971 53.517406)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:D0:8C:6B:22:6D','2018-08-26 16:03:13','On or near Nigher Moss Avenue','Rochdale 012D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.132389 53.613315)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('79:64:5C:DC:16:50','2018-08-28 14:33:49','On or near Bosley Avenue','Manchester 035E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.240203 53.439428)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:BA:EA:F0:76:EA','2018-08-30 10:18:29','On or near Morven Drive','Manchester 051B','Other theft','Under investigation',ST_GeomFromText('POINT(-2.285841 53.389423)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6A:0E:49:37:93:73','2018-08-18 03:58:24','On or near Staveley Close','Rochdale 022E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.211304 53.555352)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('73:4F:98:0A:4B:FA','2018-08-27 19:47:19','On or near Petrol Station','Manchester 029D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.277697 53.445603)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A5:7C:42:86:4B:91','2018-08-28 10:33:28','On or near Glazedale Avenue','Oldham 004A','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.13178 53.568599)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F4:1A:0E:81:6E:ED','2018-08-17 07:37:43','On or near Piccadilly','Manchester 055B','Drugs','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('23:12:3B:1E:1D:E3','2018-08-07 15:17:27','On or near Church Green Gardens','Wigan 038C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.594036 53.479953)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F0:87:B3:DF:44:18','2018-08-24 05:56:06','On or near Matlock Road','Stockport 001B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.149839 53.444744)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D6:2D:64:C9:A2:EC','2018-08-28 21:48:13','On or near Wroxham Close','Bury 005A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.308249 53.606034)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:EE:03:10:0D:63','2018-08-19 02:05:32','On or near Balmain Avenue','Manchester 023A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.179856 53.454374)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6E:9F:4D:D6:6A:B8','2018-08-17 12:23:30','On or near Shrewsbury Road','Bury 024C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.284149 53.525747)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('28:A0:7F:14:F5:0E','2018-08-18 00:12:03','On or near Devonport Crescent','Oldham 005C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.108548 53.564874)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0E:DB:9F:A0:67:88','2018-08-19 20:15:57','On or near Petrol Station','Bolton 019B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.377716 53.57975)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8F:02:C8:40:54:44','2018-08-12 06:51:23','On or near Buxton Lane','Stockport 029C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.072135 53.390292)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:2E:9C:3D:06:64','2018-08-01 15:59:22','On or near Ravendale Close','Rochdale 007F','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.192791 53.623488)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CC:86:69:39:F1:5F','2018-08-25 10:29:41','On or near Shirley Road','Manchester 008A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238483 53.50849)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('77:0E:CF:ED:BF:34','2018-08-08 14:20:17','On or near Parking Area','Bury 008E','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.291657 53.595262)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EC:30:31:16:BF:2C','2018-08-05 21:52:08','On or near Tithe Barn Street','Bolton 031C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.523998 53.550741)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('45:3B:8E:41:42:52','2018-08-04 04:41:38','On or near Shannon Road','Manchester 049D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.25425 53.38429)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:49:BE:8D:DE:F4','2018-08-14 04:55:54','On or near Barncroft Gardens','Manchester 050A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.265704 53.391267)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:69:9B:85:8D:F7','2018-08-22 01:42:52','On or near Thomas Street','Manchester 054E','Burglary','Under investigation',ST_GeomFromText('POINT(-2.236884 53.484161)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BC:B3:9F:10:6F:51','2018-08-12 02:47:34','On or near St Brendan''S Road North','Manchester 035A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.232669 53.435425)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('41:D0:4D:3B:E9:8D','2018-08-24 18:37:33','On or near Moorcroft Street','Oldham 030D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.12981 53.521682)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2A:D8:07:D8:01:06','2018-08-23 21:11:50','On or near Liverpool Road','Manchester 060C','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.255088 53.476574)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F0:DD:E9:B1:23:72','2018-08-20 15:18:36','On or near Whittaker Street','Tameside 004C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.078895 53.499857)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('65:D7:A1:4F:EB:90','2018-08-15 14:38:26','On or near Counthill Drive','Manchester 004D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.251158 53.522863)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4F:FA:F3:D8:57:41','2018-08-27 20:49:30','On or near Grey Street','Tameside 013A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.091275 53.487499)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('07:8F:0B:64:EE:12','2018-08-07 15:33:18','On or near Lobelia Avenue','Bolton 029C','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.419641 53.552106)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7C:54:4D:B5:45:2C','2018-08-26 15:44:09','On or near Greenhill Avenue','Rochdale 010G','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.167326 53.62225)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('78:A8:B9:41:CE:A0','2018-08-25 00:35:42','On or near Todd Street','Rochdale 019B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.237196 53.593828)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('92:C1:8D:94:6C:22','2018-08-27 21:58:17','On or near Copster Place','Oldham 029E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.116274 53.525012)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('16:A1:BC:69:4F:1A','2018-08-09 11:13:35','On or near Dover Street','Manchester 018B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.2305 53.465613)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D0:44:18:2B:9B:78','2018-08-16 21:55:25','On or near Beede Street','Manchester 015D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.189769 53.475662)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:2C:B5:34:81:ED','2018-08-26 04:37:46','On or near Brownley Court Road','Manchester 049C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.257284 53.388814)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('15:EC:1B:9E:34:61','2018-08-06 08:05:53','On or near Neston Road','Rochdale 012C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.134393 53.601807)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1E:8D:4B:0C:80:C6','2018-08-13 02:10:26','On or near Opal Street','Manchester 034D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.186864 53.438535)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('56:09:B9:AA:2C:80','2018-08-22 01:42:34','On or near Falcon Street','Oldham 024B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.114191 53.535504)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('88:A3:66:67:74:9A','2018-08-23 08:53:16','On or near Rutland Crescent','Stockport 004A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.128895 53.429209)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('65:BE:17:99:0E:DA','2018-08-12 14:31:58','On or near Woodsend Circle','Trafford 007B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.393994 53.452682)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('58:B4:F9:8D:74:DD','2018-08-20 05:08:37','On or near Buchanan Street','Wigan 030A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.52205 53.49797)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:E1:58:94:C3:F2','2018-08-20 03:42:27','On or near Kearsley Street','Wigan 033D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.529236 53.497587)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5D:09:75:B1:3A:DD','2018-08-26 10:10:01','On or near Sports/Recreation Area','Bolton 013C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.394406 53.591192)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('33:31:C7:1B:66:E8','2018-08-12 01:14:18','On or near Nightclub','Manchester 055B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237689 53.477185)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6A:0D:62:D7:FE:01','2018-08-16 12:05:20','On or near Adamson Street','Tameside 017A','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.08691 53.468473)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6B:25:27:B9:4F:69','2018-08-18 09:28:59','On or near Taplin Drive','Manchester 023C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.174582 53.461096)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('82:E7:6C:53:E3:6C','2018-08-19 17:30:56','On or near West Way','Salford 002B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.417328 53.533319)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9F:94:92:59:B7:B0','2018-08-14 09:57:35','On or near Sports/Recreation Area','Oldham 027C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.145368 53.528459)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C6:BC:7B:3A:D6:EB','2018-08-07 19:09:51','On or near Victoria Avenue','Manchester 004B','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.243554 53.533018)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:EC:63:2C:21:3C','2018-08-01 21:03:56','On or near Bond Street','Wigan 022D','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.475586 53.516392)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:B6:26:A8:A6:76','2018-08-19 18:18:21','On or near Back Woodfield Street','Bolton 022B','Criminal damage and arson','Local resolution',ST_GeomFromText('POINT(-2.419309 53.562776)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A8:6E:02:FE:B8:A3','2018-08-29 21:17:05','On or near Park View','Manchester 009B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.22027 53.50297)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FB:E1:E0:FA:28:F5','2018-08-12 11:15:11','On or near Cotton Street','Manchester 055D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.229531 53.484293)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6C:B4:F8:1B:97:ED','2018-08-10 09:11:10','On or near Ashness Drive','Bolton 013A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.386911 53.58932)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BD:64:6F:36:9B:CC','2018-08-03 15:49:53','On or near Eli Street','Oldham 027C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.148571 53.525507)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('97:36:15:3C:50:34','2018-08-04 11:53:10','On or near Telfer Road','Manchester 026A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.208699 53.449294)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5B:8B:2C:F5:8C:41','2018-08-20 22:02:27','On or near Croft Lane','Bury 013B','Criminal damage and arson','Offender given a caution',ST_GeomFromText('POINT(-2.28577 53.571484)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5B:ED:AF:A3:FC:93','2018-08-21 08:18:11','On or near Petrol Station','Stockport 042A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.167548 53.357594)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('39:6C:D8:FB:E4:E9','2018-08-06 15:37:37','On or near Carlton Avenue','Manchester 025A','Other crime','Under investigation',ST_GeomFromText('POINT(-2.233575 53.452277)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2C:1D:C3:7E:5F:32','2018-08-23 02:07:54','On or near Keats Way','Wigan 026A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.590256 53.515944)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('62:2A:37:EE:EE:89','2018-08-20 03:12:22','On or near Block Lane','Oldham 017B','Possession of weapons','Awaiting court outcome',ST_GeomFromText('POINT(-2.137933 53.538256)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E6:76:F6:B1:F6:29','2018-08-26 03:18:51','On or near Co-Operative Street','Bury 016B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.332662 53.564433)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('22:C3:79:2A:C1:CB','2018-08-29 08:43:22','On or near Lloyd Street','Manchester 060A','Public order','Under investigation',ST_GeomFromText('POINT(-2.245535 53.479002)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4D:D4:B7:2F:86:31','2018-08-02 07:33:21','On or near Shopping Area','Rochdale 010C','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.158993 53.617615)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8D:86:80:71:2C:2A','2018-08-11 22:05:37','On or near Parking Area','Oldham 014B','Robbery','Under investigation',ST_GeomFromText('POINT(-2.114062 53.543647)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('62:5B:C5:BB:13:08','2018-08-08 19:14:56','On or near Clevedon Road','Oldham 010D','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.144693 53.551605)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:E6:7A:F3:14:A2','2018-08-12 07:35:54','On or near Parking Area','Stockport 014C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.161805 53.400226)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8B:F2:ED:56:DF:44','2018-08-13 08:49:37','On or near Greenroyd Avenue','Bolton 013B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.391288 53.590511)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8D:B0:E3:AE:A6:9B','2018-08-29 07:35:29','On or near Haldon Road','Manchester 041D','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.214392 53.428691)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:45:DE:B9:A5:2C','2018-08-25 11:08:33','On or near Lindale Avenue','Bury 017B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.284604 53.561969)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B7:1A:E5:D6:1B:28','2018-08-18 07:15:07','On or near Supermarket','Manchester 034B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.200987 53.432768)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B9:17:1D:63:78:24','2018-08-21 12:14:00','On or near Lockingate Street','Tameside 002C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.092153 53.503443)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3D:27:98:81:37:78','2018-08-13 21:09:49','On or near Back Deane Road','Bolton 021A','Robbery','Under investigation',ST_GeomFromText('POINT(-2.451071 53.570948)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('77:2F:EA:6B:AC:AF','2018-08-02 18:02:35','On or near Lees Street','Tameside 010C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.140094 53.484683)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:86:B4:1F:06:94','2018-08-13 23:44:54','On or near Sandbach Road','Stockport 002D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.162492 53.450273)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C8:57:D2:F2:89:E5','2018-08-01 15:33:28','On or near Redwood Close','Bolton 019F','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.390029 53.570291)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7C:49:E4:F5:28:98','2018-08-20 02:28:31','On or near New Bridge Street','Manchester 058C','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.247245 53.488032)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('87:4D:61:AB:53:9B','2018-08-28 23:30:43','On or near Hathershaw Lane','Oldham 029E','Other crime','Formal action is not in the public interest',ST_GeomFromText('POINT(-2.112034 53.524225)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FE:17:CF:23:9A:A9','2018-08-25 06:05:42','On or near Supermarket','Manchester 007D','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.196122 53.513726)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:BF:68:83:8F:BB','2018-08-18 04:21:57','On or near Lewis Street','Salford 026C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.35304 53.480486)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F2:1C:3E:52:10:84','2018-08-04 15:30:18','On or near Chapel Street','Manchester 054C','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.244974 53.486338)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F7:03:0D:16:E5:48','2018-08-07 00:22:57','On or near Back Thomasson Close','Bolton 011A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.435616 53.589324)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A2:E0:70:DE:0A:24','2018-08-27 23:01:23','On or near Webdale Drive','Manchester 009E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.194164 53.507527)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C9:6C:D3:57:93:E9','2018-08-04 06:36:28','On or near Jammy Lane','Oldham 017B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.13638 53.538707)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A0:4D:BE:CD:42:42','2018-08-29 16:05:52','On or near East Newton Street','Manchester 013D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.222769 53.488)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:7D:46:4E:09:46','2018-08-24 03:14:19','On or near Pine Street','Rochdale 012E','Drugs','Offender given a drugs possession warning',ST_GeomFromText('POINT(-2.141021 53.613682)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:77:BB:1B:BE:AE','2018-08-30 07:02:09','On or near Firs Road','Trafford 016C','Public order','Awaiting court outcome',ST_GeomFromText('POINT(-2.353 53.422995)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2D:54:50:9A:2F:64','2018-08-12 08:19:12','On or near Gisburn Road','Rochdale 016C','Other crime','Under investigation',ST_GeomFromText('POINT(-2.149488 53.597331)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E0:7D:D7:A3:BC:24','2018-08-09 06:13:42','On or near Assheton Crescent','Manchester 011E','Public order','Under investigation',ST_GeomFromText('POINT(-2.170685 53.495699)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2C:78:6E:71:28:1D','2018-08-24 14:06:47','On or near Windmill Street','Manchester 060A','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.246579 53.477203)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:B6:3B:5F:03:0B','2018-08-04 16:00:11','On or near Prison','Manchester 058C','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.246337 53.492717)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C9:41:87:B8:08:A3','2018-08-28 10:19:11','On or near Ash Tree Road','Manchester 008E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.234854 53.514924)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DF:28:EB:AA:BA:23','2018-08-18 03:31:16','On or near Shopping Area','Manchester 054C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238637 53.482225)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('46:E1:98:87:D9:B8','2018-08-20 01:20:28','On or near Barton Road','Salford 014C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.379447 53.498202)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:A0:D4:1D:27:05','2018-08-27 10:37:55','On or near Rookery Avenue','Wigan 003G','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.710188 53.581249)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:D6:E6:A3:E4:1F','2018-08-20 10:22:41','On or near Crown Gardens','Rochdale 012B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.145361 53.605516)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:B7:49:23:E5:D0','2018-08-26 13:21:21','On or near Edge Lane','Trafford 011B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.300171 53.445)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('ED:13:31:FE:D9:B5','2018-08-28 01:58:21','On or near Yew Street','Salford 016F','Possession of weapons','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.267196 53.501993)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('51:49:44:06:91:F1','2018-08-19 03:32:05','On or near Abbey Hills Road','Oldham 022A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.094013 53.533068)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D7:E5:AB:29:04:A5','2018-08-12 01:08:53','On or near Back Lawn Street','Bolton 015B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.446278 53.586129)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('20:09:D4:9F:FA:DE','2018-08-29 14:49:58','On or near New George Street','Manchester 054D','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.236454 53.48543)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DB:77:04:44:C2:3A','2018-08-28 00:03:14','On or near Mill Bank','Bury 016E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.323782 53.558103)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:03:C6:CF:7B:EE','2018-08-30 10:13:17','On or near Grosvenor Road','Manchester 028A','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.259009 53.447514)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3D:22:4E:0F:7D:F5','2018-08-10 12:55:28','On or near Back Durham Street','Rochdale 015E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.149664 53.608575)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5D:C4:7F:35:59:24','2018-08-12 10:29:59','On or near Franklin Street','Salford 027D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.353882 53.48389)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C2:3D:3C:14:AC:C4','2018-08-20 23:03:28','On or near Coronation Street','Salford 005A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.332048 53.516841)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('59:55:11:CD:8B:68','2018-08-06 01:58:18','On or near Jerusalem Place','Manchester 060A','Burglary','Awaiting court outcome',ST_GeomFromText('POINT(-2.248559 53.47834)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('41:92:63:A1:10:3C','2018-08-27 02:33:02','On or near Castle Avenue','Rochdale 010E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.165466 53.61064)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AD:8B:54:F4:B7:60','2018-08-22 08:38:10','On or near Amblethorn Drive','Bolton 005C','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.441623 53.606227)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9F:E1:1F:F1:33:D0','2018-08-16 16:14:48','On or near Shopping Area','Trafford 005B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.358922 53.463264)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D2:B5:D3:98:68:77','2018-08-23 04:52:34','On or near Whittaker Street','Bury 016E','Bicycle theft','Under investigation',ST_GeomFromText('POINT(-2.325849 53.563922)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('88:56:6E:A1:B4:48','2018-08-13 20:16:54','On or near Church Green Gardens','Wigan 038C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.594036 53.479953)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DF:6A:8E:3E:CD:68','2018-08-07 12:46:03','On or near Shopping Area','Tameside 013A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.094653 53.488799)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('05:76:C9:E3:5E:A2','2018-08-17 05:18:11','On or near Hockley Road','Manchester 051B','Public order','Under investigation',ST_GeomFromText('POINT(-2.287323 53.392853)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('74:DD:ED:86:CA:F0','2018-08-23 23:58:08','On or near Thackeray Close','Manchester 056A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238668 53.50386)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('59:E9:B9:56:71:F6','2018-08-07 00:31:50','On or near Calder Crescent','Bury 021E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.27546 53.555806)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:61:1E:57:00:76','2018-08-11 08:45:20','On or near Norcross Close','Stockport 024E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.124898 53.390302)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6B:BE:DD:A6:63:E5','2018-08-03 06:26:09','On or near St Germain Street','Bolton 032C','Possession of weapons','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.403099 53.547408)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('53:FE:96:F5:FF:87','2018-08-23 12:52:23','On or near Parking Area','Trafford 003B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.290194 53.46124)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F0:82:21:EA:AF:50','2018-08-09 20:24:36','On or near Nursery Road','Trafford 005B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.370021 53.457846)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:5B:02:94:BE:95','2018-08-09 07:51:46','On or near The Grove','Manchester 045C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.228922 53.410444)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E7:72:13:FF:37:82','2018-08-09 11:40:48','On or near King Street','Wigan 030B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.520002 53.494464)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:8B:80:FB:91:33','2018-08-26 15:08:50','On or near Torrax Close','Salford 015A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.3238 53.501215)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('49:85:0A:A7:F8:98','2018-08-28 16:14:59','On or near Saint Lawrence Quay','Salford 028F','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.288477 53.472264)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9A:60:FE:89:BB:48','2018-08-07 20:38:01','On or near Abbotside Close','Manchester 028C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.263858 53.454964)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:A4:A0:CC:2C:3C','2018-08-01 23:38:06','On or near Seymour Grove','Trafford 004A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.273625 53.45398)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F4:11:5C:91:F3:6F','2018-08-25 17:00:09','On or near Sports/Recreation Area','Manchester 035E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.260791 53.438558)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('88:A9:D2:6A:1C:02','2018-08-08 11:33:47','On or near Parking Area','Manchester 055B','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.235726 53.479049)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F3:40:5F:7D:23:26','2018-08-25 20:07:54','On or near Guildford Grove','Rochdale 021F','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.178304 53.561887)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DB:2C:64:CB:B3:77','2018-08-29 09:41:19','On or near Annesley Crescent','Wigan 021G','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.656358 53.524803)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AA:1C:F0:59:F2:EC','2018-08-23 00:31:39','On or near Belsay Drive','Manchester 051C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.280474 53.384986)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('94:52:31:E1:0A:01','2018-08-15 10:47:54','On or near Pedestrian Subway','Rochdale 024B','Drugs','Under investigation',ST_GeomFromText('POINT(-2.195456 53.549088)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0B:9E:9F:CB:AA:44','2018-08-18 14:09:43','On or near Bolton Road','Bolton 027D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.399828 53.554205)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8A:F8:77:79:08:7A','2018-08-17 01:12:45','On or near Ashton New Road','Manchester 015G','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.195011 53.481864)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2E:02:76:99:64:EC','2018-08-15 08:46:11','On or near Whitecroft Street','Oldham 011A','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.085968 53.553288)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F0:63:FF:02:C1:AA','2018-08-29 21:38:06','On or near Middlecot Close','Wigan 018D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.707728 53.533427)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('19:C3:01:47:20:78','2018-08-30 14:21:28','On or near Stern Avenue','Salford 028G','Other crime','Under investigation',ST_GeomFromText('POINT(-2.281178 53.475715)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1C:69:4C:90:5C:C4','2018-08-01 08:28:01','On or near Birchenall Street','Manchester 007B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.198263 53.513516)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BE:86:17:E7:4A:C9','2018-08-26 13:58:11','On or near Featherstall Road','Rochdale 002D','Public order','Under investigation',ST_GeomFromText('POINT(-2.10743 53.642003)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EF:4A:B4:D9:0E:D7','2018-08-08 12:29:45','On or near Petrol Station','Wigan 030C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.518577 53.503683)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:37:25:76:73:E0','2018-08-25 15:04:31','On or near Brown Street South','Wigan 030B','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.513361 53.49496)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('22:C5:53:CC:B7:A2','2018-08-30 23:43:11','On or near Nightclub','Manchester 054D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.240748 53.485169)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EB:BF:FC:96:6F:17','2018-08-16 13:43:55','On or near Portman Close','Manchester 024B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.256113 53.454181)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A2:30:62:07:4E:57','2018-08-28 19:37:00','On or near Deighton Avenue','Manchester 035E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.239515 53.440283)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('82:FC:FC:CD:6B:D7','2018-08-21 12:58:23','On or near Fletcher Close','Oldham 016D','Public order','Under investigation',ST_GeomFromText('POINT(-2.1262 53.540264)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('54:73:48:AE:73:EB','2018-08-20 16:28:59','On or near Gorse Avenue','Oldham 026D','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.088596 53.525468)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('34:08:A5:7E:C6:FB','2018-08-27 00:06:50','On or near Shopping Area','Bury 008E','Public order','Under investigation',ST_GeomFromText('POINT(-2.293486 53.593235)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('29:6A:74:F1:86:80','2018-08-23 02:40:14','On or near Smallshaw Lane','Tameside 006D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.09226 53.497223)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:22:8B:DE:5E:DB','2018-08-23 02:43:19','On or near Hardy Street','Oldham 022B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.10253 53.536215)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('05:16:33:38:C8:B1','2018-08-12 11:43:30','On or near Princess Avenue','Tameside 025B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.117437 53.454659)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EC:75:C1:3F:4D:78','2018-08-13 21:44:26','On or near Swallow Street','Stockport 019C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.152893 53.402081)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C9:CD:16:25:34:24','2018-08-19 13:51:14','On or near Ellis Drive','Manchester 008F','Other theft','Under investigation',ST_GeomFromText('POINT(-2.230712 53.515804)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('72:5A:61:FB:CA:48','2018-08-21 05:18:59','On or near Bradbury''S Lane','Oldham 020D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-1.985148 53.527432)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('98:B5:5D:97:33:C9','2018-08-05 21:29:50','On or near Holcroft Drive','Wigan 026C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.583662 53.504713)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:7E:05:D9:EC:3E','2018-08-05 07:13:55','On or near Hyde Fold Close','Manchester 034B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.202558 53.430959)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0A:84:4A:5B:66:D1','2018-08-05 21:08:32','On or near Fairholme Road','Manchester 040D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.220487 53.431574)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AE:F0:75:93:22:37','2018-08-04 21:08:28','On or near Abbey Road','Trafford 012A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.328692 53.430157)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CF:3B:D9:1B:9A:CC','2018-08-04 01:11:21','On or near First Avenue','Wigan 008A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.64903 53.553607)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:0A:38:DC:A3:BF','2018-08-18 10:52:26','On or near Sheepfoot Lane','Manchester 004B','Drugs','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.246684 53.528985)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1E:FD:AD:98:16:F4','2018-08-24 16:40:42','On or near International Approach','Manchester 053D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.271671 53.362562)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6F:B4:2C:A6:11:20','2018-08-25 14:12:24','On or near Slater Street','Bolton 032B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.394499 53.547644)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:1A:5A:57:03:D0','2018-08-13 18:19:02','On or near Willesden Avenue','Manchester 022D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.209313 53.45483)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A0:67:38:C1:B4:67','2018-08-06 10:11:25','On or near Back Park View Road','Bolton 023A','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.45362 53.56648)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:1A:9E:F6:FE:DD','2018-08-30 17:41:48','On or near Parking Area','Oldham 009A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.100938 53.564836)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('38:30:89:04:6E:6A','2018-08-29 09:45:21','On or near Manchester Road','Manchester 029E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.275115 53.449141)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:24:B7:F3:0B:89','2018-08-29 17:22:10','On or near Chester Street','Manchester 055A','Public order','Under investigation',ST_GeomFromText('POINT(-2.242148 53.471657)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:21:6D:2F:DF:E6','2018-08-10 16:31:53','On or near Marron Place','Manchester 060A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.247338 53.478199)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C2:F9:89:DD:85:08','2018-08-09 19:37:41','On or near Swithin Road','Manchester 052E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.253991 53.366026)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:9A:AF:47:1D:2E','2018-08-02 18:28:46','On or near Fairfax Road','Bury 024C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.284355 53.53397)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('03:F8:A3:0E:A0:97','2018-08-30 05:45:53','On or near Fenella Street','Manchester 022B','Other theft','Under investigation',ST_GeomFromText('POINT(-2.210497 53.459672)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1B:70:D8:D2:E1:B5','2018-08-06 01:19:20','On or near Jennison Close','Manchester 020B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.185584 53.466122)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7C:D3:7D:63:5F:12','2018-08-05 18:05:24','On or near Crow Hill View','Oldham 018C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.067369 53.532924)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('13:6F:0A:7F:A2:00','2018-08-13 14:56:41','On or near Dunbar Drive','Bolton 025B','Violence and sexual offences','Formal action is not in the public interest',ST_GeomFromText('POINT(-2.437717 53.563151)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:BF:C0:5E:AA:28','2018-08-11 18:13:32','On or near Carr Meadow','Rochdale 014D','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.086267 53.603919)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('20:14:96:19:53:B8','2018-08-08 22:54:59','On or near Francis Street','Oldham 032A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.155498 53.509867)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F8:9F:7C:EB:21:E7','2018-08-06 18:10:41','On or near Railway Street','Wigan 017C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.503294 53.530777)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('73:36:A3:8C:A8:08','2018-08-05 13:57:51','On or near Edenbridge Drive','Bolton 034A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.363819 53.54268)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AC:5A:E0:F0:88:AF','2018-08-03 21:43:54','On or near Parking Area','Stockport 014B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.153514 53.40759)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FD:60:57:A1:48:3D','2018-08-01 22:27:05','On or near Ellesmere Road','Stockport 018C','Public order','Under investigation',ST_GeomFromText('POINT(-2.194444 53.40078)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('66:5D:08:02:AF:97','2018-08-12 16:52:19','On or near Kent Road','Salford 030A','Criminal damage and arson','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.448183 53.42779)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:56:75:0E:06:6A','2018-08-11 03:57:32','On or near Prison','Salford 008B','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.302093 53.514251)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('80:D2:8D:6E:AE:D8','2018-08-05 16:22:23','On or near Idonia Street','Bolton 011D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.445602 53.595084)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D0:2B:CB:A4:C4:DC','2018-08-16 10:33:11','On or near Clayton Street','Oldham 028E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.14712 53.524628)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:7A:C1:0F:13:4B','2018-08-26 18:57:32','On or near Haydock Street','Bolton 016F','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.431094 53.584405)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E7:57:A3:98:2A:D1','2018-08-07 12:37:30','On or near Ferry Street','Manchester 015C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.207328 53.476918)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0F:A7:F7:79:D2:D8','2018-08-30 04:57:03','On or near Langham Court','Trafford 006C','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.326456 53.456508)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:60:E5:96:A3:54','2018-08-12 14:27:37','On or near Regents Drive','Tameside 001F','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.033919 53.510332)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('26:35:69:26:20:BB','2018-08-22 16:51:20','On or near Walford Road','Wigan 035D','Drugs','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.629241 53.488456)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:B6:E4:C0:55:D1','2018-08-27 14:18:30','On or near Quebec Street','Tameside 025A','Other theft','Under investigation',ST_GeomFromText('POINT(-2.114907 53.460261)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:5A:51:DD:53:2B','2018-08-29 16:29:17','On or near Alldis Close','Manchester 020E','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.205473 53.460948)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0A:45:CC:99:C6:B0','2018-08-18 17:01:48','On or near Fairbourne Road','Manchester 027C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.178836 53.444794)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('05:4D:3D:EC:EA:37','2018-08-01 03:54:53','On or near Gilroy Street','Wigan 009C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.620381 53.546406)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('33:F0:17:53:41:12','2018-08-06 19:09:23','On or near Heyrod Street','Tameside 003B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.0318 53.50005)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5E:F7:2F:F5:49:12','2018-08-27 04:42:45','On or near Highfield Road','Salford 024A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.291208 53.48601)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D7:E7:1B:37:65:35','2018-08-06 22:43:20','On or near Glynne Street','Bolton 032A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.406064 53.549681)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A8:62:E8:16:50:E7','2018-08-09 02:12:20','On or near Bridgeman Street','Bolton 027D','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.396945 53.552579)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B7:31:D2:75:A4:9A','2018-08-12 08:07:51','On or near Chorley Road','Trafford 018E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.301102 53.412756)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:C1:20:08:A0:55','2018-08-13 12:19:43','On or near Wilkinson Street','Tameside 013B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.104988 53.487263)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FD:42:13:C9:09:FB','2018-08-07 11:40:28','On or near Parking Area','Manchester 060B','Theft from the person','Under investigation',ST_GeomFromText('POINT(-2.262137 53.47628)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BE:60:F9:AE:79:D3','2018-08-10 06:05:28','On or near Central Drive','Manchester 008F','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.22971 53.517406)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4F:7E:51:A3:9E:D1','2018-08-23 08:04:21','On or near Queen Street','Tameside 007A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.084736 53.488645)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('74:E3:50:72:C5:49','2018-08-14 08:39:03','On or near Petrol Station','Bury 013B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.274979 53.577127)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('66:90:8E:51:8D:62','2018-08-29 01:37:33','On or near Spring Street','Oldham 012A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.085199 53.546611)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('18:DF:2C:90:52:CC','2018-08-21 02:28:07','On or near Phipps Street','Salford 002D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.402356 53.529578)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BD:EE:22:E6:65:3C','2018-08-29 19:49:17','On or near Henry Street','Tameside 010E','Robbery','Under investigation',ST_GeomFromText('POINT(-2.144599 53.479922)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B9:DE:AA:F3:15:30','2018-08-01 04:55:13','On or near Arundel Drive','Wigan 030D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.514986 53.503456)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BD:71:A0:FF:5A:07','2018-08-04 18:15:38','On or near Rimmer Close','Manchester 015C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.207502 53.47867)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C3:F3:00:CC:15:DB','2018-08-04 22:55:20','On or near Tulip Avenue','Bolton 034D','Possession of weapons','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.381992 53.536476)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('43:F8:88:2A:64:BB','2018-08-01 21:00:27','On or near Delamere Avenue','Salford 018C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.313521 53.501539)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CC:EA:8C:FF:53:D6','2018-08-25 21:23:30','On or near Castle Avenue','Rochdale 010E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.165466 53.61064)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('41:5D:84:D9:37:0A','2018-08-26 02:25:43','On or near Piccadilly','Manchester 055B','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('25:F7:62:B2:9E:73','2018-08-26 23:51:13','On or near Banks Court','Wigan 033B','Possession of weapons','Formal action is not in the public interest',ST_GeomFromText('POINT(-2.532397 53.498454)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:76:57:BA:E6:8C','2018-08-02 07:57:50','On or near Honor Street','Manchester 022D','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.204424 53.455953)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('09:97:78:D3:5C:5F','2018-08-01 15:12:32','On or near Sports/Recreation Area','Bolton 006E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.392545 53.603872)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:3E:21:30:5D:70','2018-08-25 09:24:50','On or near Fairmount Road','Salford 014A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.362491 53.502048)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6D:08:C6:FE:89:BA','2018-08-18 08:16:57','On or near Coniston Close','Oldham 017A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.150171 53.542789)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('84:2A:DE:D6:39:7B','2018-08-18 18:45:28','On or near Runfield Close','Wigan 030B','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.513673 53.499561)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('52:47:0C:44:5C:63','2018-08-13 01:19:36','On or near Milnthorpe Road','Bolton 013D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.386228 53.582393)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AC:F8:3F:8E:57:4A','2018-08-05 11:36:49','On or near Buttermere Drive','Trafford 028D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.308701 53.361034)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A5:96:36:5B:F2:8D','2018-08-14 14:00:08','On or near Ercall Avenue','Manchester 018A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.206941 53.468676)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BF:47:24:A8:7B:6E','2018-08-06 16:13:17','On or near Hawthorn Crescent','Oldham 029B','Other crime','Under investigation',ST_GeomFromText('POINT(-2.107141 53.522109)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2E:53:CC:C3:3E:5D','2018-08-23 00:11:30','On or near Railway Road','Wigan 030A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.522917 53.497373)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:33:81:63:40:18','2018-08-25 21:39:13','On or near Parking Area','Manchester 035B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.245618 53.436109)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('76:34:73:0E:BB:F1','2018-08-04 17:37:54','On or near Hulton Street','Salford 028G','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.280028 53.47268)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:A2:60:28:11:9A','2018-08-14 02:41:19','On or near Clifton Court','Bolton 027C','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.414748 53.554945)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EF:18:CE:45:C5:0E','2018-08-03 14:32:56','On or near Rosford Avenue','Manchester 025A','Public order','Under investigation',ST_GeomFromText('POINT(-2.231601 53.44926)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FD:18:6F:9A:D3:07','2018-08-15 01:05:26','On or near Back Bolton Street South','Bury 011B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.302735 53.593662)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3C:91:83:B6:08:DC','2018-08-04 00:08:10','On or near Buckley View','Rochdale 004C','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.139259 53.633971)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F0:40:E6:1A:F9:1F','2018-08-30 00:53:38','On or near Portugal Street','Tameside 013C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.109563 53.478926)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('42:D5:1E:E9:CD:34','2018-08-03 20:14:40','On or near Thornham Court','Rochdale 016E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.136011 53.583443)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EE:72:DC:41:B7:4B','2018-08-27 20:27:13','On or near Deansgate','Manchester 054C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.248763 53.479625)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CA:BF:81:61:AE:C7','2018-08-17 21:22:05','On or near Dudley Street','Oldham 019D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.082467 53.538361)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DF:BE:23:6E:16:E5','2018-08-30 03:47:55','On or near Delph Street','Rochdale 013A','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.111312 53.611152)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('83:2B:FE:89:89:D8','2018-08-23 14:44:44','On or near Brinkburn Road','Stockport 021D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.106027 53.384038)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A5:D6:DE:A0:83:4E','2018-08-03 17:43:55','On or near Brimrod Lane','Rochdale 010A','Robbery','Under investigation',ST_GeomFromText('POINT(-2.173687 53.606646)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('10:91:EB:84:91:B2','2018-08-23 14:07:17','On or near Gaskill Street','Rochdale 019C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.236288 53.593695)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('73:8A:24:14:A2:6C','2018-08-05 00:26:25','On or near Weaverham Close','Manchester 027E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.199111 53.453211)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BB:A3:FB:4E:53:8E','2018-08-30 15:14:33','On or near Glenthorn Grove','Trafford 015E','Burglary','Under investigation',ST_GeomFromText('POINT(-2.323696 53.418287)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('98:8E:35:AD:5B:C9','2018-08-26 12:30:35','On or near Washington Street','Oldham 016C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.130691 53.543477)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A9:21:45:D2:3A:C6','2018-08-13 17:15:30','On or near Heber Street','Wigan 012B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.60716 53.542168)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:C5:CE:E8:56:AE','2018-08-01 21:49:07','On or near Hollin Hey Road','Bolton 012B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.47742 53.594926)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6D:79:20:7C:F0:1E','2018-08-23 06:58:37','On or near Park/Open Space','Bolton 010C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.423245 53.592586)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9A:30:88:50:35:29','2018-08-29 05:43:19','On or near Limefield Road','Bury 004D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.294081 53.61361)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E6:D3:82:AB:68:59','2018-08-04 19:06:46','On or near Eagle Drive','Salford 017C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.286219 53.499343)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3A:B5:F1:38:06:DF','2018-08-02 00:13:44','On or near Nightclub','Manchester 057C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.241402 53.475586)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('33:43:E4:6F:BD:CF','2018-08-25 22:57:12','On or near Hollins Street','Tameside 016D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.067101 53.47769)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E8:E7:03:D4:22:99','2018-08-30 19:42:36','On or near Barnston Avenue','Manchester 030C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.231972 53.448289)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('82:16:2F:59:ED:AC','2018-08-28 06:32:36','On or near Alger Mews','Tameside 004D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.081148 53.496054)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('22:AB:34:C8:E2:53','2018-08-21 03:26:34','On or near Knowsley Street','Manchester 056C','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.240947 53.493654)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8D:3A:D1:C6:FB:6E','2018-08-01 17:15:00','On or near Union Buildings','Bolton 016D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.425573 53.576147)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:B5:52:64:98:BB','2018-08-20 00:13:25','On or near Gransmoor Road','Manchester 017F','Burglary','Under investigation',ST_GeomFromText('POINT(-2.158093 53.474027)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('55:FD:BD:4A:F7:47','2018-08-27 19:09:09','On or near Hunters Close','Stockport 012E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.108115 53.419055)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('84:F8:E7:44:33:CB','2018-08-14 13:15:39','On or near Wallis Street','Manchester 011C','Public order','Awaiting court outcome',ST_GeomFromText('POINT(-2.175422 53.500204)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E2:A9:31:2D:B4:0F','2018-08-29 20:52:00','On or near Portland Road','Manchester 027E','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.199433 53.454541)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:3A:47:F2:A3:77','2018-08-30 05:00:20','On or near Northolt Road','Manchester 044A','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.287356 53.408951)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C5:3A:E9:2E:2F:8A','2018-08-15 13:17:54','On or near Dunsfold Drive','Manchester 047B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.305349 53.405033)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('39:9A:38:98:8A:E3','2018-08-27 13:32:33','On or near Larkside Avenue','Salford 003B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.387734 53.524152)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('03:DB:6B:9F:E9:86','2018-08-05 09:35:50','On or near Supermarket','Stockport 008C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.189317 53.418244)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EE:C0:4D:C6:52:C8','2018-08-18 20:57:48','On or near Curlew Drive','Salford 029A','Public order','Under investigation',ST_GeomFromText('POINT(-2.41814 53.45651)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('38:34:4E:3B:4A:30','2018-08-02 00:48:37','On or near Piccadilly','Manchester 055B','Other theft','Under investigation',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AF:14:39:8A:0C:6D','2018-08-23 12:24:53','On or near Wordsworth Avenue','Bolton 033A','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.414919 53.541507)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E7:31:B8:FC:8E:F1','2018-08-22 21:13:45','On or near Terminal Road North','Manchester 053D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.272181 53.364673)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('27:43:6B:18:AC:60','2018-08-24 01:56:33','On or near Water Street','Tameside 013A','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.097729 53.48939)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4A:9B:C1:65:29:40','2018-08-07 11:49:06','On or near Bruntwood Lane','Stockport 034D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.209647 53.372835)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:46:96:FB:43:00','2018-08-02 19:34:34','On or near Nightclub','Manchester 055B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237527 53.475073)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1B:C7:52:5A:BC:D6','2018-08-18 02:22:35','On or near Shopping Area','Manchester 054C','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.243249 53.485065)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('43:84:4D:51:FF:11','2018-08-22 04:28:26','On or near Regent Street','Manchester 011C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.173053 53.499713)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F2:54:6E:36:8F:6E','2018-08-24 20:06:43','On or near Back Albion Place','Bury 008D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.290593 53.603139)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('73:57:1C:90:F5:0C','2018-08-12 18:15:02','On or near Dovecote Mews','Manchester 037B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.283654 53.438074)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('46:4C:48:09:88:06','2018-08-14 08:07:24','On or near St Anne Street','Bolton 011A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.434048 53.589671)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('74:2A:1A:7A:B7:3E','2018-08-08 12:01:55','On or near Falcon Street','Oldham 024B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.114191 53.535504)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:C4:D2:C7:FE:40','2018-08-23 01:42:21','On or near Shopping Area','Salford 002D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.401453 53.52497)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:B8:C3:3F:80:47','2018-08-28 03:06:35','On or near Nightclub','Manchester 055B','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238002 53.476636)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A9:B8:7B:7B:E3:A6','2018-08-13 03:34:38','On or near Supermarket','Bury 022D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.290006 53.535197)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6C:52:E2:A5:96:01','2018-08-19 12:24:11','On or near Fairstead Walk','Manchester 017F','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.153823 53.47228)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:70:64:82:D1:05','2018-08-07 22:54:41','On or near Chatton Close','Bury 010B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.339441 53.590777)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('23:57:55:8A:1E:E7','2018-08-22 04:18:08','On or near Chancery Lane','Bolton 022E','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.427455 53.577111)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:B0:AC:74:28:AF','2018-08-24 23:21:00','On or near Parking Area','Manchester 055B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.240093 53.478672)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0D:14:3D:EA:BF:87','2018-08-10 04:25:15','On or near Mansfield Road','Trafford 010B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.369474 53.44343)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2B:05:8C:11:98:EE','2018-08-08 17:52:13','On or near Arundel Close','Trafford 028B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.314808 53.374078)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:22:CC:C1:C1:C2','2018-08-01 13:57:04','On or near Eafield Road','Rochdale 004B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.133955 53.625842)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8B:EB:4B:5A:95:17','2018-08-25 05:43:26','On or near Taplin Drive','Manchester 023C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.174582 53.461096)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2B:EF:98:0B:0D:85','2018-08-15 16:45:03','On or near Back Tonge Moor Road','Bolton 010D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.412761 53.592676)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('42:1E:54:CD:2E:D6','2018-08-09 01:23:05','On or near Whalley Close','Bury 020D','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.289319 53.553805)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4A:E3:B4:35:F2:EC','2018-08-09 13:41:30','On or near Park View','Manchester 009B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.22027 53.50297)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('14:51:BF:95:D7:D7','2018-08-06 09:38:35','On or near Helmshore Way','Oldham 002A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.092435 53.584176)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0C:C6:EB:1C:08:A8','2018-08-30 08:29:44','On or near Marion Street','Oldham 029A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.11023 53.526735)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BB:F7:06:F7:12:BD','2018-08-17 09:11:14','On or near Onslow Road','Stockport 016C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.178027 53.402432)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B9:A3:02:01:30:38','2018-08-23 06:25:22','On or near Orchard Close','Wigan 027E','Bicycle theft','Under investigation',ST_GeomFromText('POINT(-2.51549 53.506474)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3D:7F:9C:AB:DC:B0','2018-08-07 02:33:44','On or near Johnson''S Square','Manchester 013B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.216455 53.493971)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:93:D9:0D:1B:E2','2018-08-15 10:20:43','On or near Peregrine Street','Manchester 019A','Robbery','Under investigation',ST_GeomFromText('POINT(-2.249618 53.461134)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AF:2A:ED:C1:E1:31','2018-08-21 22:14:01','On or near Crown Street','Tameside 021C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.115018 53.456675)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('05:00:0E:8D:6F:60','2018-08-07 16:46:18','On or near Marshall Street','Manchester 018D','Criminal damage and arson','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.221056 53.468723)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('53:6B:3F:70:35:11','2018-08-17 17:02:59','On or near Elmira Way','Salford 028F','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.281801 53.469664)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CF:CD:AA:B4:71:1E','2018-08-25 16:56:26','On or near Marden Road','Manchester 048B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.285155 53.392535)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F1:C6:71:04:F9:13','2018-08-20 04:35:00','On or near Mountain Street','Salford 003A','Public order','Offender given penalty notice',ST_GeomFromText('POINT(-2.403279 53.529862)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:7B:1B:0B:D9:EA','2018-08-19 11:12:55','On or near Sports/Recreation Area','Trafford 005B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.371434 53.455864)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('43:28:9B:E6:8A:20','2018-08-19 12:29:25','On or near Brownley Court Road','Manchester 049C','Public order','Under investigation',ST_GeomFromText('POINT(-2.257284 53.388814)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7C:FA:5A:33:C8:59','2018-08-15 03:04:27','On or near Ladybower','Stockport 030A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.180478 53.384478)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C3:68:8A:89:8E:54','2018-08-08 08:47:43','On or near Ravendale Close','Rochdale 007F','Other crime','Under investigation',ST_GeomFromText('POINT(-2.192791 53.623488)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DF:70:5A:01:EA:A3','2018-08-05 12:51:31','On or near Back Church Street','Bolton 016C','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.434389 53.581697)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1E:97:F5:42:A9:29','2018-08-22 13:09:32','On or near Redcar Street','Rochdale 010F','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.160611 53.621648)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7E:5F:19:EF:D3:C2','2018-08-22 04:44:57','On or near Lyne Edge Road','Tameside 018D','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.061187 53.472246)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4B:E3:1F:4A:52:28','2018-08-12 12:48:16','On or near Chapel Street','Salford 022G','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.25775 53.483183)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EE:E5:B5:60:B7:5A','2018-08-07 15:39:05','On or near Hirst Avenue','Salford 003A','Public order','Local resolution',ST_GeomFromText('POINT(-2.402054 53.535915)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('52:42:66:AB:D4:0D','2018-08-22 14:22:57','On or near New Street','Bolton 009B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.579791 53.592172)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:42:F4:67:1D:25','2018-08-12 19:59:29','On or near Elm Road','Oldham 030A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.124266 53.518991)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4A:37:2C:90:61:C1','2018-08-07 02:08:52','On or near Upland Drive','Salford 001D','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.42909 53.537197)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A8:CA:BF:14:E9:88','2018-08-24 22:16:10','On or near Parking Area','Oldham 017E','Shoplifting','Awaiting court outcome',ST_GeomFromText('POINT(-2.141776 53.545955)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:32:A8:ED:3F:93','2018-08-03 02:23:28','On or near Sloane Avenue','Oldham 018A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.068844 53.549021)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('39:96:32:0D:DD:65','2018-08-01 00:09:22','On or near Ruskin Avenue','Bolton 034C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.383955 53.543292)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('29:9B:A5:40:4C:79','2018-08-12 07:11:40','On or near Walker Avenue','Oldham 033A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.137696 53.502528)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FB:FA:AB:5C:18:81','2018-08-25 10:30:02','On or near Woburn Drive','Trafford 028B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.319141 53.376718)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:B4:5D:67:89:91','2018-08-13 08:10:21','On or near Isherwood Street','Rochdale 015E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.151238 53.609131)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1C:FF:86:B4:94:1F','2018-08-21 23:46:19','On or near Branch Street','Wigan 012B','Robbery','Under investigation',ST_GeomFromText('POINT(-2.601653 53.542187)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DF:9A:B4:68:4B:2F','2018-08-23 08:06:25','On or near Firbank Road','Manchester 051C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.278871 53.385898)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:61:51:57:E3:EA','2018-08-19 01:08:32','On or near Back Church Street','Bolton 016C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.434389 53.581697)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1A:44:DC:0E:39:CE','2018-08-30 20:31:00','On or near Tavistock Road','Bolton 015D','Other theft','Under investigation',ST_GeomFromText('POINT(-2.445311 53.576057)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:A9:48:6F:8D:92','2018-08-30 17:02:58','On or near Herevale Hall Drive','Bury 003A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.319564 53.639359)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:29:4C:D1:2B:EF','2018-08-23 14:42:11','On or near Providence Street','Bolton 016D','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.425517 53.572039)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:43:C5:ED:60:A0','2018-08-28 20:51:39','On or near St John''S Court','Bury 016E','Public order','Under investigation',ST_GeomFromText('POINT(-2.317942 53.556456)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:16:38:AF:01:1B','2018-08-20 02:29:49','On or near Hospital','Oldham 016E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.121846 53.553248)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:04:45:64:4F:13','2018-08-01 01:30:58','On or near Columbia Street','Oldham 024B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.112474 53.5312)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('82:4B:07:EF:D8:EB','2018-08-20 13:26:24','On or near Regent Drive','Tameside 025C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.122804 53.446285)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('55:F7:E1:33:AF:C6','2018-08-26 18:57:14','On or near Rake Street','Bury 008C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.292327 53.602631)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:42:16:22:8D:CF','2018-08-21 00:34:00','On or near Reservoir Street','Wigan 012B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.602041 53.545089)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D7:B1:22:2F:87:07','2018-08-16 12:17:27','On or near Back Avenue Street','Bolton 011E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.446295 53.584943)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BD:0A:2F:CF:76:5F','2018-08-05 17:04:27','On or near Epsom Avenue','Trafford 019E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.36003 53.41439)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('22:BE:35:75:9A:C4','2018-08-25 09:47:23','On or near Firethorn Avenue','Manchester 034B','Burglary','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.19897 53.432834)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0E:21:2D:D9:DE:6A','2018-08-16 11:28:45','On or near River View','Stockport 003B','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.147069 53.436173)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:06:21:9D:4B:E0','2018-08-02 19:48:22','On or near Market Street','Tameside 028F','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.076374 53.44796)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8B:5F:DE:C3:42:AB','2018-08-03 10:26:00','On or near Crawford Street','Rochdale 012B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.142305 53.609088)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('82:2B:B3:23:A1:BB','2018-08-15 12:56:58','On or near Bosden Hall Road','Stockport 031C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.119209 53.383054)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:7F:D2:46:63:5D','2018-08-30 15:13:09','On or near Bainburgh Clough','Oldham 026D','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.087019 53.528947)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C4:3A:21:0F:31:F3','2018-08-01 22:40:47','On or near County Street','Oldham 031E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.135264 53.519824)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('54:51:54:7B:F7:C2','2018-08-18 15:02:22','On or near Barlow Street','Rochdale 020E','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.209408 53.584127)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:C7:CF:1F:A9:A4','2018-08-28 00:48:22','On or near Waterson Avenue','Manchester 009E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.195216 53.506897)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:25:0E:65:3B:42','2018-08-05 11:20:38','On or near Nursery Lane','Stockport 018C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.195937 53.398548)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('22:F4:D6:8B:EF:5A','2018-08-26 19:39:11','On or near Ashley Court Drive','Manchester 005F','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.156042 53.518576)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('87:3D:B8:FD:BB:46','2018-08-04 05:14:16','On or near Cross Field Close','Oldham 002A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.087215 53.587398)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D0:59:F5:65:A9:43','2018-08-21 00:26:04','On or near Hillside Avenue','Oldham 005D','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.118947 53.56908)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:E7:09:07:FE:88','2018-08-18 11:32:46','On or near Peel Mount','Bury 001F','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.332376 53.637554)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:D6:45:45:87:AC','2018-08-13 12:05:33','On or near Frome Avenue','Stockport 027E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.134687 53.3904)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:91:2B:81:41:3B','2018-08-03 02:01:42','On or near Stash Grove','Manchester 048D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.279279 53.399964)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AA:14:DF:69:BD:A0','2018-08-11 18:59:38','On or near Elmwood Grove','Bolton 015C','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.448145 53.582689)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5D:CF:56:A0:81:E0','2018-08-30 21:39:34','On or near Brownlow Avenue','Wigan 012A','Other theft','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.594283 53.541775)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:F3:7A:D3:11:56','2018-08-21 05:51:35','On or near Apfel Lane','Oldham 017B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.142376 53.544821)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('30:E4:C3:E1:B7:A7','2018-08-01 21:43:30','On or near Kinloch Street','Oldham 024A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.106253 53.528914)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('56:90:E8:80:79:AA','2018-08-06 20:50:17','On or near Moss Street','Tameside 010D','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.140935 53.483729)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:DB:D0:8D:34:03','2018-08-22 10:29:59','On or near Albyns Avenue','Manchester 008A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.241447 53.507459)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:93:04:A1:28:D1','2018-08-04 12:21:05','On or near Redwood Close','Stockport 018E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.188389 53.402174)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('17:06:41:8E:21:6F','2018-08-30 05:06:57','On or near Matlock Avenue','Trafford 010C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.365457 53.43849)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C3:5D:0C:A2:DC:43','2018-08-21 19:46:41','On or near School Lane','Wigan 001D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.666979 53.58539)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FE:0D:95:B0:89:79','2018-08-23 02:17:26','On or near Rushford Grove','Bolton 005B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.429503 53.601849)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BB:E2:83:98:85:FC','2018-08-03 14:35:42','On or near Yeadon Road','Manchester 023A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.171439 53.454701)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F8:7C:38:3E:F1:C1','2018-08-17 22:57:55','On or near West Avenue','Bolton 032A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.41114 53.548666)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('65:B8:47:27:CA:D8','2018-08-05 03:58:58','On or near Parking Area','Manchester 055B','Burglary','Awaiting court outcome',ST_GeomFromText('POINT(-2.236247 53.478023)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3D:FB:24:62:DA:EC','2018-08-25 12:23:36','On or near Berkeley Avenue','Manchester 022D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.210948 53.456481)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:5F:2D:A2:4D:3A','2018-08-13 04:17:39','On or near Grammar School Road','Oldham 031D','Bicycle theft','Under investigation',ST_GeomFromText('POINT(-2.138503 53.52347)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B9:3A:FD:5C:69:CF','2018-08-20 20:44:02','On or near Sports/Recreation Area','Stockport 023A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.164785 53.393112)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CE:18:F9:C7:BC:EC','2018-08-24 00:42:23','On or near Taplin Drive','Manchester 023C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.174582 53.461096)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F9:BD:47:D8:09:04','2018-08-11 22:17:31','On or near Longsight Lane','Stockport 039C','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.197748 53.357674)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:B5:BC:59:4B:56','2018-08-13 10:23:00','On or near M61','Bolton 034E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.387827 53.534282)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3A:FB:AB:49:71:64','2018-08-26 04:49:59','On or near Woodstock Street','Rochdale 009B','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.177704 53.623853)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:27:3B:A2:DB:8A','2018-08-11 07:54:53','On or near Shopping Area','Manchester 054C','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238637 53.482225)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('47:42:EC:3A:CF:5D','2018-08-25 22:41:43','On or near Rowarth Avenue','Tameside 029C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.106156 53.44213)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B8:04:90:CD:D9:F3','2018-08-22 04:41:08','On or near Supermarket','Salford 016C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.254194 53.503478)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('70:3F:8D:15:6A:08','2018-08-12 15:19:19','On or near Newport Street','Rochdale 023F','Burglary','Under investigation',ST_GeomFromText('POINT(-2.180328 53.551565)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('55:22:73:57:9F:98','2018-08-09 09:13:32','On or near Shopping Area','Manchester 029A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.278327 53.442941)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('37:D4:B1:58:31:EC','2018-08-03 01:37:53','On or near Wilmslow Road','Manchester 040B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.226482 53.435374)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('40:E5:91:16:E8:7D','2018-08-16 10:42:12','On or near Woolley Lane','Tameside 023A','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-1.988709 53.46828)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AA:8C:53:BA:84:82','2018-08-15 20:01:34','On or near Dunsfold Drive','Manchester 047B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.305349 53.405033)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:F3:85:73:4C:5A','2018-08-20 01:54:29','On or near Coomassie Street','Rochdale 018D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.22426 53.590374)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A2:D3:4C:24:A5:03','2018-08-10 17:13:20','On or near Shopping Area','Bolton 022E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.428518 53.579094)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:87:BA:60:58:AC','2018-08-13 02:24:28','On or near Whittle Lane','Rochdale 022F','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.22999 53.566293)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('29:9D:F7:1A:6B:90','2018-08-17 06:29:31','On or near Cedar Crescent','Oldham 017E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.138209 53.548781)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('86:9F:6A:15:B6:80','2018-08-20 00:17:05','On or near Hardwick Street','Tameside 013B','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.1083 53.485857)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:19:43:BD:61:FE','2018-08-13 03:25:32','On or near Bosworth Street','Manchester 015D','Public order','Under investigation',ST_GeomFromText('POINT(-2.195118 53.475743)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9E:DA:45:3D:D1:5A','2018-08-12 19:12:05','On or near Trafford Boulevard','Trafford 002E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.353493 53.467963)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A2:89:8A:80:45:8A','2018-08-28 18:29:03','On or near John Shepley Street','Tameside 028A','Shoplifting','Awaiting court outcome',ST_GeomFromText('POINT(-2.072721 53.451387)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('45:34:79:F5:4A:DD','2018-08-20 15:03:16','On or near Petrol Station','Manchester 050E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.261459 53.37818)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('23:A2:91:1E:49:76','2018-08-19 13:20:59','On or near Wakefield Street','Manchester 057C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.240805 53.473916)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:4E:97:E4:A8:97','2018-08-03 07:44:40','On or near Peregrine Street','Manchester 019A','Public order','Awaiting court outcome',ST_GeomFromText('POINT(-2.249618 53.461134)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:2C:21:A5:84:69','2018-08-28 19:59:37','On or near Charter Avenue','Bury 018C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.31372 53.555083)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('71:A7:B8:FA:B3:A5','2018-08-30 18:07:21','On or near Coomassie Street','Rochdale 018D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.22426 53.590374)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EE:F5:7B:15:F5:B8','2018-08-24 04:04:10','On or near Garstang Avenue','Bolton 019B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.386039 53.578196)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C9:D6:BA:57:DE:7B','2018-08-16 20:24:38','On or near Cromford Drive','Wigan 014D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.685053 53.533505)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('05:35:78:37:E3:37','2018-08-30 06:25:47','On or near Booth Street','Bury 006C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.33674 53.608276)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B5:F2:0F:79:61:C5','2018-08-19 23:21:27','On or near Norley Close','Oldham 010C','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.143247 53.557008)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3A:4A:C1:6F:BB:14','2018-08-13 08:33:49','On or near Rosemary Lane','Stockport 019B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.150613 53.408277)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0D:6F:74:21:9C:D3','2018-08-06 10:04:30','On or near Shopping Area','Manchester 013D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.224553 53.486127)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0E:54:5C:0B:EF:BB','2018-08-23 10:20:27','On or near Cambridge Drive','Stockport 005D','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.087349 53.425418)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F7:57:3B:48:97:2C','2018-08-11 15:41:49','On or near Princess Avenue','Tameside 025B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.117437 53.454659)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4B:E4:B2:90:7C:DD','2018-08-08 16:17:23','On or near Shopping Area','Manchester 056C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.233218 53.497076)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:BA:DA:C2:BE:9A','2018-08-07 18:44:28','On or near Nordens Street','Oldham 017A','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.152375 53.547299)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0C:3D:38:B1:9A:A2','2018-08-18 23:18:12','On or near Aragon Drive','Rochdale 018F','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.2265 53.591251)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:7C:A8:C9:6B:8A','2018-08-13 20:41:59','On or near Fir Grove','Oldham 017E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.138358 53.548323)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1A:05:A7:50:DD:BD','2018-08-15 14:46:49','On or near Cornwall Crescent','Stockport 004A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.132013 53.430051)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:90:D3:30:40:44','2018-08-11 02:16:10','On or near Deansgate','Manchester 054C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.248763 53.479625)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7F:BD:6F:54:4D:5E','2018-08-04 14:02:21','On or near Barnclose Road','Manchester 053B','Drugs','Offender given a drugs possession warning',ST_GeomFromText('POINT(-2.264467 53.373544)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D4:9A:2E:C0:80:96','2018-08-05 09:56:30','On or near Birch Polygon','Manchester 026D','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.214722 53.452366)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8F:C5:8C:B7:A0:47','2018-08-12 07:45:17','On or near New Union Street','Manchester 013D','Public order','Under investigation',ST_GeomFromText('POINT(-2.224182 53.484366)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:8D:FB:75:F3:58','2018-08-16 01:54:40','On or near Hulmes Road','Oldham 034D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.161824 53.496304)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DF:5A:0A:54:9E:86','2018-08-01 05:14:02','On or near Horace Barnes Close','Manchester 024D','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238913 53.453749)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('73:1E:FE:86:AF:DF','2018-08-12 12:44:02','On or near Supermarket','Stockport 042A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.166694 53.358297)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:13:3D:A5:6D:B5','2018-08-20 18:38:37','On or near Ashley Court Drive','Manchester 005F','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.156042 53.518576)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('88:88:4E:40:F7:C9','2018-08-14 03:10:29','On or near Rostron Avenue','Manchester 018A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.206637 53.468119)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5B:BB:76:0B:CD:87','2018-08-24 22:50:23','On or near Shopping Area','Salford 017B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.288453 53.488704)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3A:DC:C5:89:79:3E','2018-08-15 22:28:13','On or near Hope Street','Manchester 055B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.235083 53.479976)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CC:B7:03:3D:DC:13','2018-08-10 19:07:31','On or near Finborough Close','Manchester 024B','Public order','Under investigation',ST_GeomFromText('POINT(-2.252886 53.458475)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5B:42:3E:A0:49:D6','2018-08-05 07:52:38','On or near Mayfair Avenue','Trafford 010D','Other theft','Under investigation',ST_GeomFromText('POINT(-2.363361 53.448716)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:96:7E:4F:8E:5A','2018-08-17 00:29:19','On or near Othello Drive','Salford 027D','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.351739 53.483501)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BD:B1:0A:F7:78:97','2018-08-26 19:23:19','On or near Well Street','Manchester 054D','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.240007 53.484793)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9D:D6:3C:D8:ED:3D','2018-08-21 23:40:37','On or near Charles Street','Manchester 055A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.237536 53.474111)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:78:16:12:0F:73','2018-08-13 12:23:15','On or near Parking Area','Stockport 009C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.109765 53.423)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FE:D4:E3:B2:59:E4','2018-08-30 08:58:01','On or near Alison Street','Oldham 001B','Vehicle crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.098926 53.58232)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A1:57:5E:D4:93:EB','2018-08-30 09:37:45','On or near Lords Street','Salford 030A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.446073 53.426063)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:2B:C8:CA:34:B1','2018-08-28 16:49:06','On or near Bob''S Lane','Salford 030D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.440376 53.422255)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E0:3B:79:36:CA:C4','2018-08-21 23:38:55','On or near Gilman Close','Manchester 002E','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.220898 53.522312)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5B:0B:84:BC:19:39','2018-08-16 23:02:49','On or near Alder Road','Wigan 040D','Other crime','Under investigation',ST_GeomFromText('POINT(-2.562116 53.473851)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('33:0A:B8:EE:2E:98','2018-08-06 00:11:44','On or near Parking Area','Bolton 016E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.430279 53.577038)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('17:71:C4:55:A1:A2','2018-08-04 14:42:54','On or near Back Weston Street South','Bolton 022A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.423635 53.565044)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5C:F5:69:6F:BA:A9','2018-08-24 05:42:32','On or near Supermarket','Wigan 027B','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.526763 53.499935)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('36:57:E3:3B:FC:F8','2018-08-01 16:19:34','On or near Washington Street','Oldham 016C','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.130691 53.543477)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A2:EC:03:00:DF:E0','2018-08-18 06:35:29','On or near Railway Street','Bolton 027B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.388262 53.550549)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('67:41:35:11:D7:79','2018-08-21 14:00:17','On or near Southern Street','Manchester 060D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.251948 53.475511)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FB:98:CD:31:86:BF','2018-08-27 18:11:16','On or near Burton Road','Manchester 038C','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.235089 53.432068)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F8:D4:14:0B:32:83','2018-08-22 08:53:27','On or near Salford Road','Bolton 026C','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.454197 53.544187)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B7:A0:E6:0D:C0:8E','2018-08-12 04:25:36','On or near Lea Road','Stockport 008A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.181615 53.422103)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:BE:1E:71:BA:03','2018-08-06 08:56:16','On or near Meal Street','Stockport 007D','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.165048 53.41837)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EB:30:68:7C:32:01','2018-08-04 03:14:16','On or near Market Street','Tameside 028F','Violence and sexual offences','Formal action is not in the public interest',ST_GeomFromText('POINT(-2.076374 53.44796)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('05:0E:AD:D2:A8:83','2018-08-28 13:42:14','On or near Taplin Drive','Manchester 023C','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.174582 53.461096)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8D:4D:5F:D7:21:8F','2018-08-03 02:59:48','On or near Stoneacre Court','Salford 012B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.333905 53.509412)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6A:A2:FF:B0:D2:DD','2018-08-25 23:19:15','On or near Bridgefield Street','Bury 016E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.323282 53.561879)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F9:EA:52:BA:CB:D1','2018-08-09 14:52:31','On or near Fairfax Avenue','Trafford 023C','Other theft','Under investigation',ST_GeomFromText('POINT(-2.325285 53.395928)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:A7:E6:F8:BF:90','2018-08-04 06:25:57','On or near Arkendale Close','Oldham 030C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.135637 53.509334)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('56:74:DB:AD:CE:0E','2018-08-02 20:47:38','On or near Supermarket','Salford 026A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.335079 53.482461)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6E:A5:DF:BC:69:5B','2018-08-20 05:16:36','On or near Flaxcroft Road','Manchester 051E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.278369 53.380308)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:75:7F:8A:6B:4F','2018-08-30 13:45:13','On or near Exeter Avenue','Bolton 029D','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.427769 53.549803)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2D:F9:9A:9C:16:9C','2018-08-14 13:41:31','On or near George Street','Wigan 017A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.490389 53.525015)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:8C:21:EA:5B:85','2018-08-22 23:48:27','On or near Shopping Area','Rochdale 010C','Shoplifting','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.158993 53.617615)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:74:C1:E6:20:BB','2018-08-11 14:41:17','On or near Conrad Close','Wigan 015D','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.642802 53.535079)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('43:E1:6E:CD:7E:12','2018-08-25 19:02:16','On or near Nightclub','Wigan 008C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.630403 53.544421)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('28:4D:4A:E1:88:4D','2018-08-07 05:08:09','On or near Egerton Street','Rochdale 018D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.223906 53.589242)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F9:C2:DA:58:42:48','2018-08-01 21:22:05','On or near Tannery Way','Manchester 021D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.16371 53.461489)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7E:CF:08:5E:AD:EB','2018-08-17 13:27:47','On or near Vermont Street','Bolton 011E','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.445278 53.584434)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('33:09:0C:45:F2:D2','2018-08-10 17:25:06','On or near Further/Higher Educational Building','Wigan 033D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.524285 53.497061)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CF:81:11:86:D9:63','2018-08-15 02:26:07','On or near Osborne Street','Salford 023C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.292798 53.48721)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6F:5C:21:77:8C:17','2018-08-26 18:42:21','On or near South Street','Tameside 013C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.115102 53.476467)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('14:DE:C9:EC:B1:24','2018-08-20 16:34:10','On or near Ancroft Street','Manchester 019D','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.25269 53.466125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DB:10:AC:BE:1E:42','2018-08-05 18:26:20','On or near Parking Area','Manchester 057C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.239337 53.475545)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E3:D4:3C:82:DC:B6','2018-08-10 10:37:45','On or near Park/Open Space','Stockport 029B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.059704 53.393139)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:49:53:4F:1D:73','2018-08-23 22:55:14','On or near Industry Road','Rochdale 010F','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.157809 53.624555)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('01:24:C6:20:FB:BD','2018-08-21 23:12:41','On or near Winning Hill Close','Manchester 023C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.169357 53.457598)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6C:C0:CE:31:59:58','2018-08-26 11:06:03','On or near Berry Street','Salford 006D','Public order','Under investigation',ST_GeomFromText('POINT(-2.335613 53.521389)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9A:2C:64:C5:5C:A0','2018-08-11 16:32:43','On or near Arbroath Street','Tameside 012A','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.166915 53.480037)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('27:EB:67:0C:A7:80','2018-08-30 01:56:56','On or near Wallace Avenue','Manchester 026D','Drugs','Offender given a drugs possession warning',ST_GeomFromText('POINT(-2.218409 53.452009)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('50:68:DC:77:BF:0D','2018-08-19 04:58:52','On or near Anchor Street','Oldham 014B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.113062 53.547981)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('70:73:46:0C:07:25','2018-08-14 03:28:49','On or near Parking Area','Oldham 019C','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.087263 53.544551)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('50:D8:24:A4:C2:00','2018-08-28 04:08:11','On or near Tandlewood Mews','Manchester 011D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.177118 53.498467)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A5:79:FE:D3:93:CF','2018-08-13 14:35:18','On or near Nightclub','Manchester 054E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.234786 53.483509)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('35:52:0A:49:6C:88','2018-08-18 05:23:28','On or near Lanstead Drive','Manchester 013G','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.212104 53.486051)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('14:0E:E2:C1:5A:F0','2018-08-30 12:03:56','On or near Bermondsay Street','Salford 028B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.279035 53.47741)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6A:4E:1C:FA:E2:27','2018-08-21 15:52:03','On or near Criterion Street','Stockport 001C','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.156595 53.447765)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('17:0C:46:EF:40:3D','2018-08-17 09:17:44','On or near King''S Avenue','Wigan 040C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.560042 53.470778)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EF:DE:6E:47:DB:4E','2018-08-10 00:15:00','On or near Parking Area','Manchester 053D','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.288551 53.369992)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('38:02:F1:9A:33:AE','2018-08-16 11:01:40','On or near York Street','Manchester 043E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.232638 53.415866)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:49:11:9C:8C:10','2018-08-10 13:26:03','On or near Buttermere Road','Oldham 012A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.082678 53.546127)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0B:F4:44:8D:11:C7','2018-08-03 19:51:17','On or near Prison','Salford 008B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.302093 53.514251)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('40:9A:D0:34:3D:D4','2018-08-05 06:28:45','On or near Eddisbury Avenue','Manchester 035E','Burglary','Under investigation',ST_GeomFromText('POINT(-2.24243 53.439361)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9A:B3:12:44:94:3A','2018-08-26 01:05:15','On or near Legh Street','Salford 010C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.259114 53.50922)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('33:12:FC:F9:BD:83','2018-08-23 03:24:12','On or near Hazel Lane','Oldham 030D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.128618 53.521539)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9C:B5:58:06:D0:C7','2018-08-20 08:03:15','On or near Netherfield Road','Bolton 025E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.437974 53.557361)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('78:DE:93:73:35:B5','2018-08-30 01:18:36','On or near Busk Road','Oldham 016B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.13042 53.548664)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6B:E2:54:C6:58:D2','2018-08-05 15:54:40','On or near Oxford Street','Manchester 060A','Shoplifting','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.242156 53.475729)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('26:BC:4E:70:AF:B1','2018-08-03 06:18:03','On or near Stonepail Road','Stockport 025B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.240126 53.391124)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('65:0C:5C:B6:AE:CF','2018-08-23 21:17:15','On or near Salisbury Road','Salford 020C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.332501 53.493821)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A3:81:24:B4:D8:30','2018-08-08 17:10:12','On or near Ashley Road','Wigan 019A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.549298 53.525379)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2E:BD:1F:AD:41:8E','2018-08-27 01:27:30','On or near Hockley Road','Manchester 051B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.287323 53.392853)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('45:DD:F5:4D:F4:6C','2018-08-11 11:40:53','On or near Supermarket','Bolton 016D','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.433036 53.573433)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EE:D4:93:D1:51:EE','2018-08-02 20:56:46','On or near Coronation Gardens','Bury 016C','Public order','Under investigation',ST_GeomFromText('POINT(-2.344724 53.567886)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('38:1A:7D:8F:4D:56','2018-08-29 21:54:04','On or near Thirlmere Road','Wigan 011A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.679599 53.540583)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:02:5F:67:95:B1','2018-08-07 20:04:39','On or near Junction Road','Bolton 020B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.469007 53.567949)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('29:9C:67:95:64:CF','2018-08-05 02:41:36','On or near Kelvin Grove','Wigan 021G','Bicycle theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.657266 53.52114)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('72:3D:06:CB:DA:6C','2018-08-15 06:51:42','On or near Parking Area','Oldham 017E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.140039 53.545579)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1C:D7:EF:CA:C8:8B','2018-08-10 04:02:55','On or near Ashdale Road','Wigan 016E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.559845 53.532449)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('08:AB:9D:81:DD:1C','2018-08-07 09:54:43','On or near Parking Area','Wigan 008C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.633928 53.544025)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C5:6A:39:D2:F6:A6','2018-08-20 18:41:52','On or near Albert Royds Street','Rochdale 008B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.135523 53.624537)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A1:ED:18:B5:B5:F4','2018-08-26 17:00:21','On or near Bridge Street','Rochdale 018B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.229034 53.593313)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:B8:9D:75:D2:35','2018-08-16 02:29:42','On or near Springfield Road','Bolton 003C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.434831 53.612957)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('72:69:5E:8F:F3:04','2018-08-01 08:41:08','On or near Stanley Place','Rochdale 010G','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.161638 53.621368)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('58:C2:98:E4:15:AE','2018-08-24 06:52:50','On or near Daffodil Road','Bolton 029C','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.417777 53.551358)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2E:BA:4C:41:B9:34','2018-08-22 16:11:55','On or near Almond Grove','Wigan 010B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.662235 53.537993)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('29:EB:34:C3:A8:18','2018-08-26 12:02:06','On or near Wesley Drive','Salford 014D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.379078 53.512612)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('67:E4:FD:E6:42:9B','2018-08-28 10:23:52','On or near Tomlinson Close','Oldham 024B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.116735 53.533623)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('75:3C:E2:6B:36:F5','2018-08-06 14:41:23','On or near Ruthin Close','Oldham 031D','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.141194 53.520698)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B8:8B:DA:FD:C4:1B','2018-08-21 16:44:35','On or near Sportsmans Drive','Oldham 029D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.101963 53.526275)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('08:65:A8:A5:6F:23','2018-08-20 16:49:19','On or near Prison','Salford 008B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.302093 53.514251)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1B:E1:92:EC:44:E0','2018-08-02 11:17:37','On or near Pedestrian Subway','Manchester 011B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.193609 53.491808)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('82:97:9C:50:42:E1','2018-08-30 10:05:23','On or near Hampton Grove','Trafford 020C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.3388 53.406722)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('56:47:F9:7E:91:28','2018-08-13 06:48:02','On or near Edson Road','Manchester 004B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.246265 53.526972)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B7:AE:FC:3E:A4:33','2018-08-01 13:48:28','On or near Parking Area','Salford 020A','Shoplifting','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.336795 53.484101)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4F:32:F2:1F:58:18','2018-08-21 15:11:06','On or near Back Knight Street','Bury 009A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.315099 53.592219)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:52:89:D7:8F:C0','2018-08-27 23:32:20','On or near Kinlay Road','Bolton 029D','Other theft','Under investigation',ST_GeomFromText('POINT(-2.42762 53.553066)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D2:97:0B:8D:86:EF','2018-08-28 18:26:51','On or near Supermarket','Stockport 036B','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.233697 53.370328)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A2:B8:CF:33:8C:98','2018-08-13 04:39:53','On or near Further/Higher Educational Building','Manchester 060B','Public order','Under investigation',ST_GeomFromText('POINT(-2.254413 53.479595)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FE:F3:2D:C9:2E:BF','2018-08-13 09:02:31','On or near Kingsway','Bolton 034D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.380671 53.537145)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('76:05:77:0D:F2:22','2018-08-01 16:34:13','On or near Taunton Road','Tameside 005C','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.104315 53.495353)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AA:D5:FD:DA:6E:D7','2018-08-15 17:52:23','On or near Pedestrian Subway','Bolton 022E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.4156 53.571023)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:54:28:10:10:57','2018-08-07 22:05:10','On or near Blackwood Drive','Manchester 047B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.306785 53.405937)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:DE:12:0A:A4:4E','2018-08-09 12:02:13','On or near Lockwood Street','Manchester 027A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.188673 53.452743)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0C:1E:94:86:36:34','2018-08-26 22:39:06','On or near Brookstone Close','Manchester 039C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.259475 53.432529)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('52:03:90:70:5D:90','2018-08-12 04:54:16','On or near Mill Lane','Bolton 014A','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.519772 53.577878)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('66:BC:AE:13:D3:E0','2018-08-23 21:35:57','On or near Grecian Street North','Salford 016F','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.26752 53.50086)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('87:94:8A:53:85:09','2018-08-26 06:08:55','On or near Ditton Mead Close','Rochdale 004A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.140108 53.630141)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('88:4A:D0:B7:DB:DB','2018-08-08 00:30:23','On or near Supermarket','Rochdale 012F','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.135544 53.612152)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('50:42:AB:13:12:E3','2018-08-28 06:27:38','On or near Lion Street','Manchester 002E','Burglary','Under investigation',ST_GeomFromText('POINT(-2.219299 53.522216)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FB:8B:81:C8:EC:6F','2018-08-23 23:36:22','On or near Petrol Station','Stockport 027E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.137991 53.389263)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('71:74:59:B5:9F:17','2018-08-20 16:10:18','On or near Lomax Street','Manchester 055D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.226937 53.48108)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D6:FF:CA:1A:DB:42','2018-08-13 04:46:40','On or near Piccadilly','Manchester 055B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('96:C8:82:23:77:51','2018-08-30 05:02:28','On or near Bowes Street','Manchester 024A','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.242532 53.45198)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FC:FE:CE:CB:E4:46','2018-08-05 18:05:26','On or near Shopping Area','Bolton 022E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.428518 53.579094)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:F5:A2:9B:E5:FD','2018-08-20 15:57:54','On or near The Esplanade','Rochdale 010E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.160572 53.615365)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('58:76:FF:BF:B5:69','2018-08-20 19:11:15','On or near Whitefield Road','Stockport 009B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.119022 53.423961)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6D:BF:9F:68:3E:8B','2018-08-22 01:47:58','On or near Regatta Close','Oldham 027C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.14844 53.526837)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('16:02:58:93:B7:54','2018-08-04 21:36:01','On or near Shopping Area','Trafford 015B','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.320946 53.424731)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('94:7A:E8:21:EA:91','2018-08-06 06:23:13','On or near Back Market Street West','Bury 011B','Public order','Under investigation',ST_GeomFromText('POINT(-2.297759 53.592793)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3A:A5:8C:FF:64:07','2018-08-13 21:14:14','On or near Cunliffe Drive','Trafford 014A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.314591 53.416065)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:7E:E9:9F:5A:7C','2018-08-21 01:35:45','On or near Oatlands Road','Manchester 053C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.267749 53.376899)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:33:79:B1:99:6F','2018-08-16 01:16:35','On or near Back Elmwood Grove West','Bolton 015C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.448523 53.582759)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('96:76:13:03:24:9B','2018-08-08 06:26:53','On or near Back Doffcocker Brow','Bolton 012D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.468689 53.588336)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:25:1C:32:A2:0F','2018-08-10 15:36:40','On or near Fletton Close','Rochdale 005E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.161988 53.630077)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('62:4B:80:DF:B0:7D','2018-08-05 20:55:24','On or near Hatton Street','Stockport 007D','Other theft','Under investigation',ST_GeomFromText('POINT(-2.160466 53.412183)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C8:B0:2F:85:C4:F7','2018-08-16 13:53:16','On or near Churnet Street','Manchester 009G','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.218166 53.498372)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0C:1D:E0:00:5F:0D','2018-08-24 17:01:30','On or near Barlow Road','Manchester 027C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.181173 53.445564)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AE:F6:4D:94:99:7A','2018-08-10 08:08:21','On or near Crawford Street','Salford 020G','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.352063 53.489918)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CF:9C:0D:95:C6:9F','2018-08-23 10:14:28','On or near Frost Street','Oldham 035A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.120679 53.530428)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('57:07:29:FB:AF:99','2018-08-06 17:47:46','On or near Blenheim Street','Oldham 012D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.083464 53.554378)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('69:B3:A4:F1:7A:17','2018-08-29 17:07:11','On or near Deansgate','Manchester 054C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.248763 53.479625)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2C:01:56:39:2C:73','2018-08-16 05:52:57','On or near Walford Street','Manchester 024B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.256698 53.456328)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('26:3C:BF:87:D4:C1','2018-08-05 21:30:34','On or near Booth Street','Tameside 013A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.095644 53.486803)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D2:C6:D0:6E:64:68','2018-08-08 13:29:02','On or near Nightclub','Manchester 060A','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.248907 53.47851)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0F:B0:62:0E:34:9D','2018-08-07 05:39:51','On or near Dorchester Avenue','Bolton 013B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.390559 53.586864)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('08:2F:0D:53:47:55','2018-08-17 23:32:56','On or near Lombard Street','Oldham 014B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.115756 53.54512)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:19:D3:C6:8A:4B','2018-08-08 00:00:03','On or near Bank Lane','Salford 001D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.426623 53.537934)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E7:74:3B:68:52:43','2018-08-03 15:51:36','On or near Harris Drive','Bury 017A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.276317 53.557638)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:65:43:44:CC:1F','2018-08-23 21:44:49','On or near Keble Grove','Wigan 027B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.538722 53.509805)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CE:BC:A9:3D:F5:97','2018-08-14 21:30:29','On or near Park/Open Space','Wigan 026D','Burglary','Under investigation',ST_GeomFromText('POINT(-2.555565 53.509827)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:4B:57:22:1E:DD','2018-08-01 04:50:10','On or near Douglas Street','Wigan 022A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.479372 53.525842)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:7D:1F:F8:EB:80','2018-08-02 12:22:16','On or near The Heys','Bury 023C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.280144 53.533666)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AE:02:4F:7A:5E:7B','2018-08-05 22:36:46','On or near Shopping Area','Oldham 024B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.115172 53.541147)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('66:D0:04:7D:9A:9E','2018-08-19 09:48:37','On or near Thomas Street','Manchester 054E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236884 53.484161)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CF:DA:02:67:22:2C','2018-08-27 09:37:08','On or near Claremont Road','Manchester 024A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.241215 53.45334)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3A:A0:B8:CB:1B:9D','2018-08-21 12:01:30','On or near Raper Street','Oldham 012A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.086 53.546754)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C2:22:3D:26:39:65','2018-08-13 11:36:37','On or near Shopping Area','Stockport 014B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.159399 53.412373)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FE:B1:6D:54:90:96','2018-08-30 21:03:10','On or near Lowland Grove','Tameside 005A','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.103714 53.502328)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('99:1D:5E:54:6E:E5','2018-08-06 13:43:17','On or near Shopping Area','Manchester 006B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.212736 53.512943)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:37:0C:06:5B:9F','2018-08-03 00:31:45','On or near Breeze Hill Road','Bolton 030B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.469216 53.536336)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A9:9C:A0:0C:FD:BA','2018-08-15 13:26:15','On or near Lomas Street','Oldham 031A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.146251 53.517744)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BD:AC:88:E1:0E:8D','2018-08-27 13:39:09','On or near Albine Street','Manchester 007B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.200131 53.513252)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A3:A8:F8:AE:BF:AF','2018-08-16 02:28:01','On or near Portland Crescent','Manchester 022G','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.212399 53.460604)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C3:2E:7C:9F:B1:45','2018-08-01 21:01:21','On or near Parking Area','Bury 008E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.291657 53.595262)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3A:29:0D:B9:FD:E5','2018-08-11 12:47:57','On or near Biddulph Avenue','Stockport 024C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.13056 53.39302)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:01:AB:67:3F:1D','2018-08-05 04:16:08','On or near Garden Row','Rochdale 018A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.228104 53.600029)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4F:E9:83:F1:AE:82','2018-08-21 18:26:40','On or near Oakwood Drive','Bolton 018C','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.473922 53.58347)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4E:7A:14:A6:7C:AC','2018-08-19 05:32:02','On or near North Dean Street','Salford 005A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.330549 53.518005)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0B:E8:7D:90:4E:DC','2018-08-06 19:07:15','On or near Spinney Drive','Bury 004A','Public order','Action to be taken by another organisation',ST_GeomFromText('POINT(-2.296366 53.609722)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3D:55:B0:2E:F4:5D','2018-08-09 07:08:20','On or near Fir Tree Avenue','Wigan 040D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.564641 53.474504)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0E:44:2D:33:11:37','2018-08-12 23:43:13','On or near Foxholes Road','Rochdale 008A','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.148672 53.627272)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DB:E4:E1:D4:8C:AB','2018-08-02 08:07:31','On or near Foreland Close','Manchester 009G','Drugs','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.215893 53.499086)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:90:4D:8E:54:B3','2018-08-03 13:32:15','On or near Chelsea Road','Manchester 012E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.181847 53.497345)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('23:41:86:1C:C1:5C','2018-08-07 15:36:02','On or near Briardene Gardens','Manchester 049D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.253544 53.387024)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FE:FB:B7:D8:1F:7F','2018-08-20 09:30:28','On or near Brunswick Road','Manchester 040B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.22345 53.434013)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:91:7E:C8:C4:5D','2018-08-09 05:21:48','On or near Norris Road','Trafford 018A','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.311678 53.412755)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:B2:30:E7:9A:99','2018-08-12 19:05:26','On or near Bus/Coach Station','Trafford 025B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.347179 53.38828)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DB:45:8D:E6:F3:F1','2018-08-07 13:30:12','On or near Reddish Lane','Manchester 021E','Possession of weapons','Under investigation',ST_GeomFromText('POINT(-2.159895 53.456497)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:93:8D:83:E6:32','2018-08-18 04:54:35','On or near Back Brierley Street South','Bury 011A','Public order','Under investigation',ST_GeomFromText('POINT(-2.29658 53.581965)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F8:BE:05:F2:44:AB','2018-08-15 14:25:50','On or near St Ann''S Road','Rochdale 012D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.129879 53.618198)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:51:2C:0D:A7:29','2018-08-07 18:02:22','On or near Scotta Road','Salford 027A','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.363053 53.477813)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0C:54:B0:1D:BE:F4','2018-08-14 15:49:36','On or near Moorland Road','Tameside 003B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.026479 53.500582)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:8C:AC:DC:11:5E','2018-08-17 11:22:54','On or near Richmond Street','Manchester 055B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236952 53.47733)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('13:D9:6B:7B:E7:A5','2018-08-15 17:54:36','On or near Highthorne Green','Oldham 004B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.136384 53.581941)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('42:66:4F:BA:B6:6C','2018-08-12 21:43:05','On or near Police Street','Manchester 054C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.246846 53.48166)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F9:E2:B8:D4:D7:75','2018-08-21 01:32:44','On or near Pym Street','Manchester 007B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.199558 53.513226)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E3:10:8D:44:D1:2B','2018-08-25 04:44:10','On or near Hall Street','Oldham 008B','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.123177 53.564482)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('16:63:6E:FC:78:53','2018-08-28 22:58:01','On or near Cuddington Crescent','Stockport 026B','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.171916 53.39401)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CF:3E:35:EE:72:A6','2018-08-12 20:02:08','On or near Plumpton Close','Oldham 016E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.120914 53.554463)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('35:10:19:2A:D9:06','2018-08-24 11:39:20','On or near Nightclub','Manchester 055B','Violence and sexual offences','Local resolution',ST_GeomFromText('POINT(-2.238922 53.476724)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('87:0C:78:DD:A5:4E','2018-08-04 19:35:07','On or near Diamond Street','Tameside 004E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.082923 53.493967)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1E:A6:B2:16:28:56','2018-08-30 06:26:36','On or near Edmund Street','Oldham 002C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.090871 53.580501)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('34:C1:75:E8:5B:AF','2018-08-23 08:28:08','On or near Prison','Manchester 058C','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.246337 53.492717)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:CF:99:B7:C1:EA','2018-08-14 01:26:15','On or near Victory Street','Bolton 015B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.451908 53.584329)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('39:9C:50:6D:7B:43','2018-08-16 09:26:33','On or near Rochdale Road','Bury 008E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.292493 53.593894)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('ED:77:E2:BA:AF:41','2018-08-11 06:16:45','On or near Laurel Street','Wigan 015B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.657394 53.543952)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DA:4D:EC:E8:C7:67','2018-08-17 14:52:17','On or near Lumb Close','Stockport 042B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.162622 53.358212)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:D6:37:2C:2E:20','2018-08-22 19:12:45','On or near Cowburn Street','Manchester 056B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.243053 53.490405)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E9:78:5A:CA:D4:4B','2018-08-09 11:25:30','On or near Hatter Street','Manchester 054B','Other crime','Under investigation',ST_GeomFromText('POINT(-2.233165 53.487351)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FC:79:42:24:F8:DA','2018-08-21 09:51:46','On or near Regatta Close','Oldham 027C','Violence and sexual offences','Local resolution',ST_GeomFromText('POINT(-2.14844 53.526837)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E9:E2:A3:5A:CB:87','2018-08-22 03:36:12','On or near Dreyfus Avenue','Manchester 012A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.174774 53.485787)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('94:16:9C:7B:21:4B','2018-08-28 08:46:39','On or near Broadbent Avenue','Tameside 006A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.084599 53.502712)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7C:DC:0A:D4:36:F5','2018-08-02 02:04:37','On or near Shepley Street','Oldham 031C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.149349 53.515151)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('88:85:03:1E:B5:FC','2018-08-04 15:48:41','On or near Shopping Area','Wigan 008C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.628832 53.546389)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7D:70:57:E2:22:C5','2018-08-03 16:37:17','On or near Petrol Station','Manchester 032D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.205592 53.442117)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:AE:BA:3F:1B:C2','2018-08-06 05:10:33','On or near Arden Lodge Road','Manchester 047C','Public order','Under investigation',ST_GeomFromText('POINT(-2.302122 53.401751)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('83:34:03:7F:2A:E4','2018-08-11 04:25:55','On or near Argyle Street','Manchester 017D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.173906 53.465043)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:0A:EA:B6:01:21','2018-08-17 10:56:04','On or near Watkin Close','Manchester 018B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.227158 53.466104)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:F3:7E:C9:A4:2B','2018-08-24 16:57:34','On or near Sussex Close','Wigan 016A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.55665 53.535044)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:FC:00:6F:94:A8','2018-08-04 20:29:19','On or near Ainsdale Close','Oldham 035B','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.124551 53.528581)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('44:85:52:14:A0:70','2018-08-16 07:27:30','On or near Miall Street','Rochdale 015E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.154729 53.609144)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EB:FB:DA:63:DD:92','2018-08-02 18:50:22','On or near Catherine Street','Wigan 030C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.517554 53.502609)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('71:F7:C0:E5:54:B0','2018-08-02 19:30:11','On or near Shopping Area','Stockport 014B','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.159379 53.411169)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:E8:7A:D1:C8:C1','2018-08-29 11:14:19','On or near Conrad Close','Oldham 007E','Other theft','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.075006 53.568396)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9D:A6:36:20:86:4F','2018-08-28 17:41:25','On or near Hardman Street','Manchester 054C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.250133 53.479532)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1A:C8:0C:3D:AF:CD','2018-08-30 17:59:03','On or near Petrol Station','Manchester 029D','Possession of weapons','Awaiting court outcome',ST_GeomFromText('POINT(-2.277697 53.445603)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3E:0B:84:3F:FD:5A','2018-08-17 11:01:41','On or near Barton Road','Salford 012C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.326693 53.504919)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('78:B7:22:74:A1:6F','2018-08-03 12:36:15','On or near Camden Close','Bury 012C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.357082 53.588469)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('13:BF:33:A6:42:A9','2018-08-29 07:33:25','On or near Bates Street','Tameside 017C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.086822 53.477048)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F4:1A:B6:DB:2E:0B','2018-08-24 07:20:50','On or near Kay Street','Wigan 022C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.486297 53.521976)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B2:BB:3F:CB:FF:0E','2018-08-30 15:12:29','On or near Demmings Road','Stockport 022C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.200307 53.39073)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:A3:BF:34:8D:BF','2018-08-25 09:28:34','On or near Crowthorn Drive','Manchester 051A','Other crime','Formal action is not in the public interest',ST_GeomFromText('POINT(-2.282525 53.379157)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('34:BC:91:A9:6F:9D','2018-08-26 04:22:48','On or near Thorpe Street','Salford 003C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.399757 53.530638)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('14:AD:13:67:9B:6B','2018-08-06 07:07:46','On or near Oat Street','Stockport 019E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.149218 53.400827)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E8:68:99:F7:22:65','2018-08-23 04:07:04','On or near Gable Street','Manchester 015C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.204544 53.47446)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('29:FA:CE:5D:F7:F7','2018-08-01 00:23:31','On or near Deanway','Manchester 007D','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.194841 53.510645)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DB:C0:CC:A1:6D:53','2018-08-10 08:33:57','On or near Fold Street','Bolton 022E','Other theft','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.426928 53.578731)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:54:B5:70:06:66','2018-08-03 07:50:44','On or near Queen''S Road','Tameside 004C','Public order','Under investigation',ST_GeomFromText('POINT(-2.077728 53.496892)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('39:0E:79:B0:20:9E','2018-08-04 08:27:25','On or near Haymond Close','Salford 017C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.286664 53.500609)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F4:5C:AC:CF:50:9C','2018-08-25 12:02:46','On or near Carr Street','Tameside 004D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.079331 53.499525)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:88:13:59:00:AB','2018-08-02 17:31:58','On or near Lytham Road','Trafford 007B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.400615 53.448921)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FF:EE:27:16:16:E6','2018-08-12 13:25:52','On or near Piccadilly','Manchester 055B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('83:94:30:62:99:41','2018-08-28 03:05:37','On or near Rothwell Street','Rochdale 008G','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.144385 53.624958)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('70:F8:FB:B1:17:90','2018-08-03 16:33:14','On or near Back Abingdon Road','Bolton 017C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.406186 53.586102)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8A:CD:C9:CD:12:BA','2018-08-10 11:32:50','On or near Silver Street','Bury 011B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.298755 53.59271)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:6D:98:0F:B9:D0','2018-08-18 15:16:05','On or near Wallhead Road','Rochdale 012D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.129158 53.61463)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CE:47:1F:AC:B9:41','2018-08-24 05:27:08','On or near Parking Area','Rochdale 024B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.195976 53.550624)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E3:55:EC:96:50:78','2018-08-11 03:36:40','On or near James Leigh Street','Manchester 057C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.241016 53.474059)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('94:47:0B:4B:A9:52','2018-08-20 14:13:38','On or near Polefield Hall Road','Bury 023A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.276547 53.539624)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('09:1A:A3:7B:DF:A7','2018-08-16 20:03:26','On or near Parking Area','Rochdale 015D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.154536 53.610052)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('98:04:40:4C:66:51','2018-08-28 07:33:14','On or near Suffolk Street','Rochdale 015D','Public order','Under investigation',ST_GeomFromText('POINT(-2.159015 53.611359)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7A:16:4A:4A:93:05','2018-08-25 09:13:44','On or near Theatre/Concert Hall','Stockport 010C','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.086497 53.413608)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('45:BF:0C:C0:09:36','2018-08-18 01:48:41','On or near Yorkshire Street','Oldham 014D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.107313 53.542197)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('76:C2:7A:04:7B:64','2018-08-12 22:42:36','On or near Croft Head','Oldham 008B','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.124508 53.565461)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BD:81:10:7A:CA:E6','2018-08-05 08:41:18','On or near Cyril Street','Bolton 022E','Public order','Under investigation',ST_GeomFromText('POINT(-2.417973 53.568147)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('23:E9:22:78:C0:FA','2018-08-19 23:24:38','On or near Parkgate','Oldham 010D','Public order','Under investigation',ST_GeomFromText('POINT(-2.143223 53.554213)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('78:FD:C1:EE:20:71','2018-08-18 02:15:30','On or near Boydell Street','Wigan 030D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.516808 53.503233)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('92:94:F5:CD:48:17','2018-08-11 10:45:38','On or near Baron Fold Grove','Salford 001B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.424396 53.532486)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:DA:0C:08:5C:4E','2018-08-27 14:29:45','On or near Sports/Recreation Area','Wigan 030C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.522481 53.502354)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('99:3D:C3:A8:68:2E','2018-08-09 18:40:00','On or near Plum Tree Close','Salford 020B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.343636 53.484055)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:2D:13:8B:A9:55','2018-08-12 17:21:07','On or near Norman Street','Oldham 016A','Violence and sexual offences','Local resolution',ST_GeomFromText('POINT(-2.12426 53.547763)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C3:F2:CA:A8:00:E9','2018-08-18 05:55:12','On or near Deniston Road','Stockport 008B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.187761 53.42692)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('16:A6:F8:F5:A7:47','2018-08-28 08:23:24','On or near Thomas Street','Manchester 054E','Other theft','Under investigation',ST_GeomFromText('POINT(-2.236884 53.484161)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F4:D9:DA:30:F4:7B','2018-08-30 04:18:46','On or near Chiltern Drive','Salford 012C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.339576 53.502133)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4F:31:49:8C:E6:C6','2018-08-19 16:06:26','On or near Old Hall Street North','Bolton 016E','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.430705 53.578843)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2D:E9:C8:07:1C:CD','2018-08-15 07:43:44','On or near Fir Close','Stockport 031C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.11832 53.382579)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A9:94:D0:0D:70:66','2018-08-25 02:41:27','On or near Tatton Street','Stockport 014B','Public order','Awaiting court outcome',ST_GeomFromText('POINT(-2.158502 53.409902)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D2:4C:B7:B0:3C:08','2018-08-28 12:33:05','On or near Fernside Grove','Salford 003C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.393209 53.528943)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4B:F0:E4:B5:04:25','2018-08-21 14:48:54','On or near Essington Drive','Manchester 009F','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.214263 53.501678)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5C:9B:39:36:8D:C8','2018-08-05 05:26:52','On or near Muirfield Close','Manchester 005B','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.176759 53.510035)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:0F:34:02:08:C7','2018-08-06 07:44:22','On or near Nightclub','Manchester 055B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.238922 53.476724)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('65:0D:E0:DA:7A:55','2018-08-13 22:54:04','On or near Cotefield Road','Manchester 051E','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.271772 53.378391)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:12:92:1B:9D:5F','2018-08-08 09:59:23','On or near Rutland Street','Manchester 017E','Public order','Under investigation',ST_GeomFromText('POINT(-2.164636 53.467403)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('82:D1:C5:A7:DD:99','2018-08-17 11:09:03','On or near Grace Street','Rochdale 008A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.148039 53.628055)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('39:51:20:B5:AF:2A','2018-08-14 00:15:16','On or near Dunsfold Drive','Manchester 047B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.305349 53.405033)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('77:42:E2:DD:4D:0A','2018-08-18 17:21:15','On or near Crocus Street','Bolton 005A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.431432 53.602785)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('56:B6:7B:D2:E2:82','2018-08-29 11:09:26','On or near Nightclub','Manchester 060A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.248907 53.47851)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C9:BA:65:ED:C0:6F','2018-08-14 03:12:03','On or near Henry Street','Rochdale 024E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.202975 53.549785)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('78:5A:FC:D7:CE:F3','2018-08-11 15:09:51','On or near Police Street','Manchester 054C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.246846 53.48166)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:F0:C2:06:02:2C','2018-08-18 09:14:11','On or near Petrol Station','Trafford 005B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.373227 53.459319)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4F:EB:6D:36:FC:C4','2018-08-05 17:36:34','On or near Chariot Street','Manchester 017A','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.167774 53.476279)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:13:1E:6B:7A:E4','2018-08-25 07:06:24','On or near Milo Street','Manchester 002C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.213285 53.526065)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EC:35:A6:FE:97:1E','2018-08-08 22:56:08','On or near Alms Hill Road','Manchester 008A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.235561 53.506464)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('07:03:A7:4F:1A:B6','2018-08-14 13:00:08','On or near Malika Place','Wigan 032C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.657591 53.503134)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FD:1D:59:78:E0:44','2018-08-24 19:25:48','On or near Thomas Street','Manchester 054E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236884 53.484161)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C2:49:BE:94:ED:DB','2018-08-20 12:58:09','On or near Bold Street','Wigan 030B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.514703 53.498721)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C5:FD:C2:DB:8C:46','2018-08-28 04:58:54','On or near Ashford Close','Bolton 006C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.393991 53.603454)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:A6:EE:36:03:34','2018-08-16 06:59:57','On or near Regent Road','Manchester 059D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.262539 53.475452)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('35:B8:12:2E:8A:BA','2018-08-23 18:32:15','On or near Day Grove','Tameside 027D','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.015336 53.453772)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:68:F9:B8:0B:4A','2018-08-12 04:48:07','On or near Plant Hill Road','Manchester 002A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.220964 53.529206)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('54:C0:EE:6F:34:7C','2018-08-06 05:48:45','On or near Petrol Station','Manchester 030E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.245255 53.448811)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:23:05:2C:CC:15','2018-08-25 12:13:15','On or near Lower House Street','Oldham 011E','Robbery','Under investigation',ST_GeomFromText('POINT(-2.093167 53.546245)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('10:50:52:1C:06:51','2018-08-13 03:08:22','On or near Union Street','Manchester 018D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.2204 53.47284)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C5:37:F6:E9:65:E4','2018-08-04 19:40:45','On or near Scotland Street','Tameside 007C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.088696 53.486629)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:C1:3B:7D:A3:44','2018-08-21 07:12:51','On or near Suffolk Street','Rochdale 015D','Public order','Under investigation',ST_GeomFromText('POINT(-2.159015 53.611359)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('62:AB:6C:D7:1A:44','2018-08-25 02:15:11','On or near Spring Street','Tameside 023C','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-1.994584 53.462555)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('94:AD:A0:79:5D:3F','2018-08-22 13:28:17','On or near Queen Street','Salford 002C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.410418 53.527042)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D9:40:A4:89:31:4D','2018-08-26 03:51:21','On or near Ripon Avenue','Bury 020C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.289542 53.557795)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B6:AE:54:B8:46:D6','2018-08-09 03:07:14','On or near Little Pasture','Wigan 027B','Vehicle crime','Awaiting court outcome',ST_GeomFromText('POINT(-2.53489 53.507234)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DC:F1:22:CA:26:2F','2018-08-09 04:08:37','On or near Thornton Road','Manchester 030A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.238118 53.448897)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('67:99:14:5D:9D:82','2018-08-18 19:02:55','On or near Parrbrook Close','Bury 021A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.281425 53.551595)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EC:B6:D0:95:01:CE','2018-08-10 21:51:31','On or near Boringdon Close','Manchester 011A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.187399 53.501947)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FE:45:87:60:EA:DA','2018-08-09 05:53:00','On or near Broad Street','Salford 022D','Theft from the person','Under investigation',ST_GeomFromText('POINT(-2.278178 53.486922)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BE:0F:98:75:35:0F','2018-08-21 14:08:16','On or near Hulton Street','Salford 028G','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.280028 53.47268)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('16:53:3B:23:15:94','2018-08-03 19:54:47','On or near Altcar Walk','Manchester 053D','Possession of weapons','Under investigation',ST_GeomFromText('POINT(-2.27101 53.376739)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A2:A5:8E:56:01:D8','2018-08-25 20:48:28','On or near Back Fern Street East','Bolton 021C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.448958 53.572502)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('15:A7:ED:78:A5:F2','2018-08-16 07:11:12','On or near Dewhurst Road','Bolton 006A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.390183 53.598496)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('57:76:5A:8D:89:2E','2018-08-27 19:38:36','On or near Sports/Recreation Area','Stockport 035D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.112246 53.370828)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('53:C1:1E:BE:0F:50','2018-08-19 08:15:59','On or near Flitcroft Court','Bolton 022A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.430307 53.564948)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('24:A7:D3:2E:89:DE','2018-08-17 14:19:16','On or near Rock Street','Tameside 005C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.10221 53.497548)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:5C:B2:66:15:75','2018-08-25 04:21:58','On or near Victoria Street','Tameside 008D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.063725 53.487418)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E9:73:83:5B:79:75','2018-08-27 08:39:59','On or near Chaucer Place','Wigan 026A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.591241 53.515157)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:85:5A:B3:0E:7C','2018-08-17 12:09:18','On or near Sports/Recreation Area','Salford 026A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.344189 53.481572)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1E:D9:BE:A9:00:CB','2018-08-01 18:49:47','On or near Ayres Road','Trafford 004A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.273257 53.457586)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B9:BD:29:6A:D7:FA','2018-08-25 22:13:04','On or near Thomas Street','Manchester 054E','Other theft','Under investigation',ST_GeomFromText('POINT(-2.236884 53.484161)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('92:13:9A:DB:7C:22','2018-08-20 01:27:16','On or near Haig Avenue','Salford 030D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.447383 53.420324)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('37:1B:0E:55:11:49','2018-08-10 05:49:02','On or near Parking Area','Manchester 018B','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.22922 53.463017)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:40:57:CA:BB:D4','2018-08-29 21:10:27','On or near Gratrix Avenue','Salford 028I','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.273514 53.471769)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('83:28:4E:76:AB:05','2018-08-12 13:58:04','On or near Redbrook Road','Trafford 022C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.304421 53.392909)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('69:6B:94:4E:94:0C','2018-08-23 16:21:23','On or near Sports/Recreation Area','Salford 009B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.346771 53.511829)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A8:35:5B:F5:74:39','2018-08-18 23:04:30','On or near Bus/Coach Station','Trafford 025B','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.347179 53.38828)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:99:32:FB:E9:76','2018-08-03 16:33:18','On or near Brookdale Close','Stockport 012E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.110789 53.417534)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F1:BC:C4:7B:5F:74','2018-08-18 05:51:17','On or near Glengarth','Oldham 020E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.005017 53.543756)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('83:8A:B1:A1:A5:08','2018-08-04 07:21:48','On or near Wimberry Close','Oldham 020D','Public order','Under investigation',ST_GeomFromText('POINT(-2.007807 53.536187)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8C:D0:96:7E:4F:D6','2018-08-25 18:03:55','On or near Oldham Road','Tameside 005D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.104372 53.500287)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:62:93:09:CE:34','2018-08-03 16:25:42','On or near Rudyard Avenue','Rochdale 021F','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.182102 53.560362)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('98:A2:38:6B:39:B3','2018-08-05 21:03:23','On or near Belvoir Street','Wigan 009C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.619969 53.546112)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8D:57:C9:C3:A9:20','2018-08-12 19:35:19','On or near Shopping Area','Trafford 011D','Theft from the person','Under investigation',ST_GeomFromText('POINT(-2.30942 53.445677)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('08:7A:CF:E6:5A:5F','2018-08-22 05:05:46','On or near Crow Hill View','Oldham 018C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.067369 53.532924)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('19:1B:24:7E:36:B9','2018-08-10 23:48:03','On or near Manor Close','Oldham 010B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.13537 53.54829)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4F:9D:1D:8B:D6:7C','2018-08-20 15:28:20','On or near Salisbury Road','Salford 020C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.332501 53.493821)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('51:10:85:76:E0:8B','2018-08-22 00:02:59','On or near Further/Higher Educational Building','Manchester 060B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.254413 53.479595)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:40:A9:3C:2A:35','2018-08-02 02:44:50','On or near Soho Street','Wigan 015A','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.650466 53.54195)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('36:F1:18:54:3C:9C','2018-08-24 20:47:22','On or near Hockerley Close','Trafford 013A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.351766 53.426675)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E7:79:46:BC:93:2E','2018-08-17 21:50:10','On or near Silverwood Avenue','Manchester 029A','Other theft','Under investigation',ST_GeomFromText('POINT(-2.277145 53.441847)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8B:7B:0B:CA:A2:11','2018-08-27 03:53:34','On or near Parking Area','Manchester 055B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.236247 53.478023)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7E:4A:D9:90:B7:DF','2018-08-02 17:38:37','On or near Parking Area','Manchester 043E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.230708 53.418027)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('39:7A:7E:88:A4:A4','2018-08-23 00:35:29','On or near Brocklehurst Street','Manchester 007D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.197131 53.510138)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CA:D9:B6:9E:DA:86','2018-08-02 05:10:06','On or near Shopping Area','Tameside 013A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.094204 53.490121)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('84:B0:55:B3:01:FB','2018-08-27 15:10:11','On or near Pryce Avenue','Wigan 009B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.612262 53.542259)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('19:FE:B4:CC:4D:44','2018-08-28 14:24:01','On or near Lord Street','Oldham 014D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.112656 53.542561)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('99:9D:54:40:BA:FB','2018-08-11 10:51:15','On or near Lowndes Lane','Stockport 019D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.138655 53.399276)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9F:45:99:86:6C:1F','2018-08-02 00:04:24','On or near May Street','Rochdale 020E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.208027 53.585757)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B3:C3:4F:00:7B:83','2018-08-24 21:26:16','On or near Matthew Close','Oldham 026A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.091439 53.528953)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:BE:19:74:DF:D6','2018-08-22 07:38:44','On or near Walsh Street','Bolton 004B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.549523 53.600971)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:75:41:31:9E:3A','2018-08-20 16:52:07','On or near Shadowbrook Avenue','Manchester 051D','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.285614 53.384704)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3C:BA:1F:9A:1E:D9','2018-08-12 12:17:00','On or near Minerva Road','Bolton 029E','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.423017 53.554575)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DA:12:78:79:31:B3','2018-08-24 07:04:59','On or near Coppice Drive','Wigan 018G','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.714723 53.517916)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D4:98:AB:D2:06:CC','2018-08-23 21:31:32','On or near Harold Avenue','Manchester 021E','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.15809 53.457066)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('45:E6:FF:17:C3:4E','2018-08-09 00:00:23','On or near Short Avenue','Tameside 011B','Public order','Under investigation',ST_GeomFromText('POINT(-2.154191 53.478104)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D4:66:66:00:96:EA','2018-08-26 02:41:54','On or near Field Lane','Tameside 004D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.083352 53.497266)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FD:DB:AD:32:7E:E0','2018-08-03 01:28:57','On or near County Road','Salford 001B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.420776 53.529577)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D9:90:DC:C3:84:D2','2018-08-05 12:33:41','On or near Etherow Avenue','Manchester 005F','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.158748 53.520316)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9F:DA:F7:15:3D:67','2018-08-05 17:32:32','On or near Collett Close','Wigan 009C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.619494 53.545593)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E8:0F:3D:EC:0E:FD','2018-08-14 04:43:20','On or near Criccieth Road','Stockport 018B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.192885 53.402059)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:31:C8:85:E7:78','2018-08-21 22:16:09','On or near Eddie Colman Close','Manchester 011A','Theft from the person','Under investigation',ST_GeomFromText('POINT(-2.182553 53.50031)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:6E:F0:C9:DB:FE','2018-08-23 18:12:06','On or near Shopping Area','Manchester 054C','Shoplifting','Local resolution',ST_GeomFromText('POINT(-2.241702 53.483451)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BD:5E:E3:68:72:F9','2018-08-04 08:10:16','On or near Allandale Road','Manchester 031A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.199267 53.444771)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:69:36:76:A1:F4','2018-08-08 20:47:44','On or near Rathen Road','Manchester 040D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.226563 53.427895)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:C8:48:8B:61:A6','2018-08-12 10:31:36','On or near Cecil Street','Salford 002D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.397469 53.526385)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F8:C0:15:A6:90:5D','2018-08-15 22:01:31','On or near Heys Close','Rochdale 014C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.099242 53.607397)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('10:42:91:F0:55:66','2018-08-01 16:13:37','On or near South Street','Tameside 013C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.115102 53.476467)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('56:A1:31:7A:2B:3F','2018-08-01 16:15:43','On or near Gorton Road','Stockport 001C','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.157281 53.445993)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('38:BE:6F:6C:A0:B8','2018-08-26 02:42:43','On or near Lowerfield Drive','Stockport 021E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.110272 53.392249)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:D6:6A:B8:7E:98','2018-08-09 05:20:16','On or near Shield Drive','Salford 009A','Other crime','Under investigation',ST_GeomFromText('POINT(-2.36026 53.51276)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:62:4C:22:0A:3C','2018-08-23 04:21:32','On or near Shortcroft Street','Manchester 060D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.248657 53.471931)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2C:ED:37:C5:DE:9B','2018-08-10 23:23:27','On or near Petrol Station','Wigan 012A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.591245 53.542509)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DB:F4:AD:73:6E:91','2018-08-21 03:21:00','On or near Roundmoor Road','Wigan 002C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.6499 53.576909)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('17:03:06:2D:65:AA','2018-08-21 21:25:50','On or near Watson Street','Oldham 012A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.08632 53.548246)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4F:58:74:BB:C3:65','2018-08-30 09:00:27','On or near Delamere Road','Manchester 031C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.187891 53.442713)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('01:14:55:0E:49:2D','2018-08-05 01:09:22','On or near Supermarket','Rochdale 010C','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.161102 53.619643)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CD:1C:35:33:82:D1','2018-08-16 17:41:42','On or near Brett Street','Manchester 046C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.25617 53.408555)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E4:C8:36:38:52:DF','2018-08-23 18:47:51','On or near Baywood Street','Manchester 009B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.217095 53.51005)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('80:28:64:BE:A3:BB','2018-08-18 21:02:13','On or near Shopping Area','Trafford 002E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.34902 53.466179)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AD:ED:E9:31:E0:BC','2018-08-06 21:43:27','On or near Painswick Road','Manchester 053C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.27667 53.373409)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:60:CE:F5:76:71','2018-08-11 13:43:28','On or near Hopkinson Avenue','Tameside 019D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.122039 53.463139)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:C8:86:78:31:76','2018-08-07 00:18:29','On or near Cleveland Gardens','Bolton 026D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.458534 53.564268)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6C:31:E9:40:7F:CF','2018-08-10 12:32:21','On or near Market Street','Tameside 013A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.092138 53.489556)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:BB:76:EB:3F:3C','2018-08-22 03:53:18','On or near Shopping Area','Manchester 054C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.240176 53.482627)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('45:5D:FC:3D:A7:37','2018-08-23 21:37:04','On or near Whittaker Street','Tameside 004C','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.078895 53.499857)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3C:82:D5:3A:E7:C9','2018-08-13 07:55:06','On or near Egerton Road South','Manchester 033D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.265856 53.439607)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('61:0C:7A:1B:8A:77','2018-08-06 06:16:56','On or near Hampton Road','Bolton 022D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.422074 53.559989)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B9:CA:AC:39:15:EC','2018-08-07 14:02:28','On or near Sole Street','Wigan 007C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.615447 53.551699)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('62:64:A1:84:83:36','2018-08-03 08:18:00','On or near Cyril Street','Bolton 022E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.417973 53.568147)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:FA:83:52:3B:1A','2018-08-26 21:55:44','On or near Cawdor Court','Bolton 027C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.408245 53.555148)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:C6:86:D4:51:A1','2018-08-14 04:37:32','On or near Grisdale Road','Bolton 021E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.448278 53.568181)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F7:86:C7:02:BE:26','2018-08-28 04:08:16','On or near Kendal Close','Trafford 022D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.303115 53.389039)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:1B:0B:7C:87:EC','2018-08-27 04:14:15','On or near Norman Grove','Manchester 020C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.196319 53.458429)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('58:19:65:F4:CE:4C','2018-08-18 03:43:18','On or near Irlam Square','Salford 018A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.307052 53.499327)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('83:79:FA:DD:D2:9F','2018-08-07 02:53:43','On or near Century Lodge','Bolton 033B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.407807 53.545756)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A5:44:66:C9:72:B9','2018-08-13 17:15:05','On or near St George''S Square','Oldham 028D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.166034 53.524495)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C4:16:64:45:72:EC','2018-08-06 17:35:20','On or near Brampton Street','Wigan 022B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.486484 53.525103)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('08:D8:64:DB:1F:2E','2018-08-19 15:24:12','On or near Wellbank Close','Oldham 024A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.105922 53.5293)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F6:AE:B1:92:90:EA','2018-08-17 11:59:27','On or near Somerset Close','Salford 030A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.444387 53.42882)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AF:0C:54:57:C8:10','2018-08-25 18:27:14','On or near Pleasant Way','Stockport 041C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.178775 53.358414)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AE:47:B2:14:73:BA','2018-08-09 09:31:34','On or near Petrol Station','Stockport 009B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.113313 53.421585)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('12:DA:8F:3B:D4:09','2018-08-07 12:49:17','On or near West Crescent','Rochdale 024E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.200385 53.544612)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F9:9F:AE:F4:0E:13','2018-08-17 03:11:06','On or near Denhurst Road','Rochdale 001B','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.099324 53.648841)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('76:7A:D8:5E:18:C8','2018-08-07 06:03:25','On or near Brampton Street','Wigan 022B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.486484 53.525103)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CF:36:9A:48:58:EB','2018-08-04 03:17:32','On or near Town Lane','Tameside 025C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.119937 53.449596)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E4:14:2D:C1:A5:34','2018-08-25 16:03:23','On or near Dymchurch Street','Manchester 012D','Other crime','Under investigation',ST_GeomFromText('POINT(-2.1762 53.495331)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:C1:EF:9E:8C:A2','2018-08-18 02:23:31','On or near Churchill Street','Oldham 022B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.105521 53.537606)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0A:71:77:88:8D:97','2018-08-15 23:34:58','On or near Thurland Road','Oldham 022E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.089861 53.538473)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B8:50:DA:4D:6A:C6','2018-08-16 05:35:24','On or near Ingleton Avenue','Manchester 006A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.23355 53.519034)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C6:C2:EA:AD:A3:38','2018-08-13 16:29:02','On or near Melton Close','Salford 007F','Other crime','Under investigation',ST_GeomFromText('POINT(-2.404211 53.519972)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('12:87:70:A0:94:F5','2018-08-05 21:26:21','On or near Manchester Road','Salford 009A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.352726 53.517043)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('53:70:3F:2C:F8:CB','2018-08-12 04:33:52','On or near Nightclub','Oldham 024B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.109017 53.541809)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('66:82:9B:6D:4F:1F','2018-08-09 13:29:45','On or near Sedan Close','Salford 024B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.281804 53.481547)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6A:21:CB:4A:4E:CB','2018-08-17 07:28:30','On or near Bexley Street','Wigan 019A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.547318 53.523941)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('16:9D:18:2D:17:18','2018-08-19 03:51:38','On or near Melon Place','Salford 024D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.278907 53.485563)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('29:69:FC:11:4F:94','2018-08-09 11:00:17','On or near Cateaton Street','Bury 008D','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.290628 53.599408)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2D:91:D3:6E:A4:27','2018-08-10 21:11:54','On or near Broadway','Salford 007E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.399747 53.515223)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:79:7E:12:0C:94','2018-08-15 22:50:47','On or near Mason Street','Manchester 054E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.233507 53.486532)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9D:EE:E4:8D:54:C4','2018-08-25 04:33:40','On or near May Road','Manchester 028F','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.258573 53.45263)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D4:77:02:CF:CD:DB','2018-08-04 14:29:47','On or near Shopping Area','Tameside 013C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.123712 53.478912)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('30:45:BF:EC:82:6A','2018-08-05 12:04:07','On or near Back George Street','Bolton 004E','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.538909 53.598125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('86:ED:03:79:08:F0','2018-08-02 18:23:17','On or near Gillers Green','Salford 007F','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.402328 53.523403)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E9:E4:91:36:9A:59','2018-08-27 03:01:07','On or near Kelvindale Drive','Trafford 022A','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.313014 53.400087)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('50:60:73:B6:20:04','2018-08-27 15:52:26','On or near Pinetop Close','Manchester 039C','Other theft','Under investigation',ST_GeomFromText('POINT(-2.260987 53.433659)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:BF:5A:7D:E4:04','2018-08-11 04:54:23','On or near Sports/Recreation Area','Salford 019E','Robbery','Under investigation',ST_GeomFromText('POINT(-2.381913 53.494176)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:8C:25:46:4D:F4','2018-08-27 13:24:24','On or near Worths Lane','Tameside 029F','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.102772 53.437136)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('16:EC:DD:FD:E9:65','2018-08-25 22:19:45','On or near Newbreak Close','Oldham 012E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.082622 53.548069)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FD:9C:CB:7D:DC:77','2018-08-29 00:56:23','On or near Piccadilly','Manchester 055B','Robbery','Under investigation',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:73:A8:73:02:0E','2018-08-11 09:25:26','On or near Buckley Street','Tameside 016D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.068441 53.477483)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('96:41:F1:E4:D6:ED','2018-08-13 13:12:34','On or near St Osmund''S Drive','Bolton 019E','Possession of weapons','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.391179 53.578781)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E2:0C:DB:3F:B7:3A','2018-08-30 17:39:36','On or near Hardman Street','Manchester 054C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.250133 53.479532)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:F7:F4:4F:99:FA','2018-08-27 06:04:52','On or near Shopping Area','Wigan 008C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.631254 53.547886)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5D:44:AC:11:84:F1','2018-08-06 17:42:15','On or near Salford Road','Bolton 026C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.454197 53.544187)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:52:5F:3A:8C:0A','2018-08-20 22:17:24','On or near Hope Street','Salford 002B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.422069 53.530651)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D0:75:9F:37:AF:23','2018-08-22 13:12:27','On or near St John''S Street','Bury 016E','Other crime','Awaiting court outcome',ST_GeomFromText('POINT(-2.320774 53.55759)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2F:15:A2:A2:43:59','2018-08-14 16:18:53','On or near Barmeadow','Oldham 013B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.018726 53.557614)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7F:C3:0B:8E:EA:CE','2018-08-07 08:19:43','On or near Ashness Drive','Bolton 013A','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.386911 53.58932)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('75:0A:94:C4:47:FC','2018-08-08 06:12:31','On or near Ashton Road','Tameside 025A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.115644 53.459766)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E8:D0:6F:7F:68:98','2018-08-05 01:36:42','On or near Talbot Road','Trafford 014E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.299586 53.421739)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:A0:04:F4:63:3C','2018-08-22 08:57:23','On or near Glen Avenue','Manchester 007A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.20217 53.51715)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('30:D7:55:4D:7D:56','2018-08-13 15:36:56','On or near Aldwyn Close','Bury 018D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.323012 53.554141)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:38:7F:1F:C7:F9','2018-08-28 10:24:30','On or near Back Pool Fold','Manchester 054C','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.243924 53.481882)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AC:7C:C2:42:25:BD','2018-08-20 01:12:54','On or near Back Dobie Street','Bolton 022A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.417836 53.563429)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F7:AB:48:3D:C6:2A','2018-08-02 08:43:19','On or near Barn Street','Oldham 024B','Public order','Awaiting court outcome',ST_GeomFromText('POINT(-2.116725 53.540616)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7D:1D:18:43:AB:1D','2018-08-12 22:44:23','On or near Pleachway','Stockport 013C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.20198 53.413828)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('14:4E:CC:27:93:76','2018-08-27 12:03:02','On or near Supermarket','Stockport 027F','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.135523 53.388493)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:B8:0D:0C:2F:BD','2018-08-07 00:18:25','On or near Parking Area','Manchester 058C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.249196 53.491902)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:F1:A0:01:4E:11','2018-08-10 20:18:24','On or near Langside Avenue','Manchester 002B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.206144 53.531012)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8B:D9:AF:F8:87:63','2018-08-15 11:02:45','On or near Petrol Station','Bolton 032C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.401335 53.549158)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:8D:A9:93:97:14','2018-08-28 21:28:13','On or near Bury New Road','Rochdale 019E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.253039 53.592905)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('03:68:8D:D2:F9:C0','2018-08-28 16:48:36','On or near Purbeck Close','Manchester 053B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.268043 53.373375)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4D:D3:30:4E:13:E2','2018-08-30 10:43:24','On or near Sackville Street','Manchester 055A','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.235481 53.475697)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D6:B5:A5:10:47:9A','2018-08-19 03:11:35','On or near Timpson Road','Manchester 048E','Other theft','Under investigation',ST_GeomFromText('POINT(-2.296903 53.399616)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('70:79:99:0C:2C:02','2018-08-19 11:43:54','On or near Haddon Street','Salford 017F','Public order','Under investigation',ST_GeomFromText('POINT(-2.274176 53.497375)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7D:92:8D:38:B2:B4','2018-08-15 23:42:50','On or near Balmoral Street','Manchester 023E','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.180513 53.460171)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F1:40:1A:FB:A8:F7','2018-08-16 13:48:59','On or near Epsom Avenue','Manchester 041C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.197622 53.430931)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C2:4B:0D:C5:77:C3','2018-08-16 13:14:38','On or near Lorton Close','Rochdale 022D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.223638 53.555582)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5A:56:02:BA:6D:26','2018-08-26 06:35:17','On or near St Mark''S Square','Bury 008D','Drugs','Offender given a drugs possession warning',ST_GeomFromText('POINT(-2.28961 53.600777)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:4B:02:FD:19:CA','2018-08-08 09:53:28','On or near Priory Grove','Oldham 028A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.149499 53.53213)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:4F:4D:F9:69:3A','2018-08-30 19:12:04','On or near Petrol Station','Salford 026A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.33756 53.481807)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('29:0D:E3:3D:D1:9F','2018-08-25 22:14:37','On or near Acre Street','Tameside 021D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.11626 53.453797)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F6:01:73:18:BE:E3','2018-08-06 23:14:51','On or near Vauze House Close','Bolton 009D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.577074 53.590136)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:75:17:C8:23:6C','2018-08-17 17:01:53','On or near Moss Street','Tameside 023A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-1.988137 53.464469)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BF:D7:94:DA:8A:BC','2018-08-15 11:56:15','On or near Parking Area','Manchester 060A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.250416 53.476377)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F8:CC:41:2F:F3:4F','2018-08-09 18:46:04','On or near Supermarket','Oldham 016A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.125959 53.545559)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2B:87:88:C1:F6:E8','2018-08-09 18:16:18','On or near Wyatt Avenue','Salford 028I','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.272448 53.472391)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C8:66:C1:B2:02:1A','2018-08-22 23:38:52','On or near Petrol Station','Manchester 042A','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.259369 53.420134)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:E8:A3:BC:6A:B7','2018-08-12 04:38:49','On or near Henley Avenue','Trafford 004B','Public order','Awaiting court outcome',ST_GeomFromText('POINT(-2.276122 53.453444)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8B:C5:B7:45:75:95','2018-08-28 20:38:49','On or near Mayfield Avenue','Trafford 014E','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.296654 53.422079)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('01:33:17:09:15:D0','2018-08-16 01:52:10','On or near Dundee Close','Rochdale 019F','Public order','Under investigation',ST_GeomFromText('POINT(-2.243516 53.586822)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('88:F9:3A:5E:4C:ED','2018-08-19 08:31:50','On or near Petrol Station','Trafford 002E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.352497 53.467652)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:C1:D4:2C:DF:59','2018-08-05 01:33:18','On or near Nursery Road','Trafford 005B','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.370021 53.457846)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('56:85:34:61:F4:DA','2018-08-21 08:31:49','On or near Cromdale Avenue','Stockport 031B','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.11044 53.381382)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3A:C3:B7:61:04:03','2018-08-29 01:27:51','On or near Water Street','Manchester 060B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.255034 53.480214)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('50:92:51:F1:E8:C5','2018-08-13 02:21:14','On or near Chester Street','Manchester 055A','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.242148 53.471657)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7A:75:81:A2:A8:04','2018-08-28 04:52:26','On or near Middleton Road','Oldham 016D','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.128863 53.542814)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('04:6E:13:57:2A:C1','2018-08-06 05:57:55','On or near Shopping Area','Manchester 054C','Shoplifting','Awaiting court outcome',ST_GeomFromText('POINT(-2.240176 53.482627)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C5:EB:D8:BC:36:A3','2018-08-19 23:20:36','On or near Johnson Street','Wigan 023B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.510831 53.515168)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F8:9D:A3:E2:86:BE','2018-08-30 17:25:54','On or near Whittington Street','Tameside 013D','Public order','Under investigation',ST_GeomFromText('POINT(-2.101511 53.482708)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('29:38:37:55:68:05','2018-08-10 16:11:00','On or near Marlborough Road','Trafford 011E','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.31412 53.452056)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4B:62:8C:7C:33:81','2018-08-09 01:10:39','On or near Beckton Gardens','Manchester 050C','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.267236 53.383794)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F4:96:87:6A:65:35','2018-08-14 13:52:39','On or near The Pewfist','Bolton 031E','Public order','Under investigation',ST_GeomFromText('POINT(-2.528245 53.540341)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1B:15:78:C1:48:6A','2018-08-13 07:44:26','On or near Railway Street','Wigan 017C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.503294 53.530777)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F7:B1:50:07:9F:BF','2018-08-10 00:41:11','On or near Banksman Way','Salford 008B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.310132 53.510321)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6C:03:86:5B:9C:84','2018-08-16 19:07:50','On or near Eliza Ann Street','Manchester 056D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.223488 53.495665)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DD:36:42:3F:F3:84','2018-08-26 16:37:59','On or near Banky Lane','Trafford 017D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.358799 53.43078)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:0E:2D:E3:F8:20','2018-08-26 19:45:53','On or near Hurst Cross','Tameside 006C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.078263 53.500739)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:80:61:24:4E:25','2018-08-20 16:35:38','On or near Back Wood Street','Bury 009D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.314523 53.59613)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D2:A4:DF:0D:E8:6E','2018-08-20 12:56:45','On or near Piccadilly','Manchester 055B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0C:55:83:42:51:14','2018-08-25 05:31:19','On or near Taberner Street','Wigan 024A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.596963 53.520971)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5D:32:EC:33:69:26','2018-08-18 07:15:44','On or near Walker''S Croft','Manchester 054C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.243605 53.486754)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BB:14:A4:D5:65:3B','2018-08-08 15:30:14','On or near Timberhurst','Bury 007D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.262217 53.594126)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CD:0E:F5:A7:85:07','2018-08-21 18:29:20','On or near Cannon Street','Salford 022E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.261138 53.48767)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('19:22:AD:A7:BF:81','2018-08-29 12:36:38','On or near Dellar Street','Rochdale 009D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.18051 53.622563)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('59:BB:D9:A7:D0:1B','2018-08-26 10:40:15','On or near Partington Park','Rochdale 017D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.175771 53.584442)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:5D:D3:01:3D:3B','2018-08-15 07:24:40','On or near Stretton Avenue','Trafford 006C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.327232 53.455571)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CF:D8:7E:BD:04:2D','2018-08-21 03:40:03','On or near Charnley Close','Manchester 013C','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.210183 53.487636)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:4B:BC:20:9E:96','2018-08-14 18:54:30','On or near Parsons Street','Oldham 035G','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.130842 53.538471)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:75:B5:32:D0:88','2018-08-01 17:05:55','On or near Simpson Street','Oldham 027C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.13899 53.529365)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F6:CF:09:EC:D8:5B','2018-08-16 12:33:25','On or near Cranmer Court','Rochdale 018D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.225478 53.589338)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('13:C1:B7:88:12:5B','2018-08-19 21:55:06','On or near St Mary''S Close','Stockport 014B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.150601 53.409158)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2B:61:7D:47:33:47','2018-08-02 23:33:57','On or near Irving Street','Oldham 031D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.141949 53.521093)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('58:67:45:0C:E5:31','2018-08-26 14:02:41','On or near Cochrane Street','Bolton 016D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.42743 53.570091)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:23:CD:23:69:C4','2018-08-03 04:01:37','On or near Downhall Green','Bolton 016F','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.431524 53.583649)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:49:76:09:34:00','2018-08-24 15:18:19','On or near Langport Avenue','Manchester 020E','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.20986 53.464833)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E3:42:08:D1:9E:FC','2018-08-03 20:49:36','On or near Trafford Boulevard','Trafford 002E','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.354175 53.468375)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5C:ED:19:50:D6:6F','2018-08-17 06:29:13','On or near Swinton Street','Oldham 022E','Public order','Under investigation',ST_GeomFromText('POINT(-2.0907 53.535731)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:90:8B:FF:19:C4','2018-08-14 21:19:33','On or near Anchorage Quay','Salford 028F','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.286094 53.474139)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:7B:29:54:AB:8C','2018-08-04 03:39:10','On or near Sundial Close','Tameside 027A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.037773 53.452877)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3C:C4:CF:D2:68:AC','2018-08-12 23:20:51','On or near Radcliffe Road','Bolton 024G','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.375659 53.565807)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3D:22:E8:6B:1E:BD','2018-08-07 18:12:30','On or near Seddon Close','Wigan 017A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.492767 53.525823)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('77:0B:12:03:52:14','2018-08-17 12:50:50','On or near Ravenscar Crescent','Manchester 052E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.257488 53.367879)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:65:40:FB:A1:F1','2018-08-25 17:23:50','On or near Clarendon Street','Tameside 028A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.079122 53.451967)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0E:E2:E2:0E:23:9B','2018-08-06 07:54:16','On or near Hebble Butt Close','Rochdale 013B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.119203 53.611459)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CC:63:22:C2:85:9A','2018-08-14 10:03:27','On or near Egerton Road North','Manchester 029F','Other theft','Under investigation',ST_GeomFromText('POINT(-2.271139 53.446642)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('26:EE:4F:6C:E9:CE','2018-08-06 11:37:19','On or near Billinge Road','Wigan 014C','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.665361 53.532367)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:C3:07:38:FD:41','2018-08-18 11:45:55','On or near Tiverton Close','Bury 012A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.356162 53.570639)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('18:67:73:E0:1A:E2','2018-08-04 09:36:23','On or near Stock Lane','Oldham 017B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.140977 53.541587)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:66:76:DA:29:83','2018-08-19 00:27:24','On or near Beechcroft Avenue','Bolton 019E','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.392956 53.573373)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:F5:B3:51:B4:FE','2018-08-08 08:43:13','On or near Recreation Street','Bolton 025C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.435586 53.567329)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C3:71:B8:A1:CD:18','2018-08-21 19:49:10','On or near Shopping Area','Rochdale 010C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.158993 53.617615)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('57:E8:C3:5F:60:AD','2018-08-28 11:25:09','On or near Bolton Road','Bolton 030C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.489162 53.557262)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2E:0F:9B:DF:BE:DA','2018-08-06 21:40:30','On or near Irvine Street','Wigan 030B','Public order','Under investigation',ST_GeomFromText('POINT(-2.517415 53.501109)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6E:08:77:54:DF:33','2018-08-07 08:25:12','On or near New Buildings Place','Rochdale 010C','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.156607 53.618238)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BA:8E:B5:CD:D5:88','2018-08-04 00:51:03','On or near Buxton Lane','Stockport 029C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.072135 53.390292)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:33:17:69:0C:39','2018-08-17 17:05:55','On or near Back Hulme Street','Bury 009D','Violence and sexual offences','Formal action is not in the public interest',ST_GeomFromText('POINT(-2.309611 53.597941)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E8:D1:24:38:D2:54','2018-08-23 20:22:05','On or near Tatton Close','Stockport 022E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.194323 53.38745)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B5:E6:C3:21:29:D8','2018-08-20 22:41:33','On or near Craven Terrace','Trafford 015D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.31381 53.422314)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0A:9A:3A:B4:65:52','2018-08-27 04:56:57','On or near Grosvenor Road','Wigan 033B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.534786 53.501392)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B2:37:11:E5:58:E6','2018-08-27 02:01:08','On or near High Street','Rochdale 024B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.194652 53.554832)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B7:FB:07:ED:45:19','2018-08-04 11:53:16','On or near Watkin Street','Tameside 022C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.054229 53.46283)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6A:D0:48:80:53:07','2018-08-24 21:06:26','On or near Johnson Street','Salford 022F','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.253499 53.483013)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('09:2F:D0:DA:54:64','2018-08-18 04:16:24','On or near Ribble Road','Oldham 027D','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.13306 53.524195)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:94:A1:FA:45:08','2018-08-01 00:13:05','On or near Ludlow Avenue','Salford 008C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.328945 53.523142)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3D:D8:7A:8C:96:A3','2018-08-13 22:25:19','On or near Trinity Court','Tameside 013A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.105145 53.489635)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('97:5A:B8:3A:0D:0A','2018-08-30 03:02:51','On or near Supermarket','Salford 018A','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.309534 53.500678)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:1B:96:11:30:6C','2018-08-12 12:05:58','On or near Sussex Road','Stockport 018F','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.185594 53.402735)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:F5:70:52:C6:C7','2018-08-25 23:58:17','On or near Bank Street','Bolton 022E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.426817 53.579666)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('01:24:4C:0D:EB:AE','2018-08-22 18:47:55','On or near Hilton Lane','Bury 026C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.276291 53.523554)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7E:FE:16:22:F8:B0','2018-08-04 00:10:18','On or near Calverly Road','Stockport 022E','Burglary','Under investigation',ST_GeomFromText('POINT(-2.191657 53.389764)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D0:03:25:15:AA:93','2018-08-14 04:22:46','On or near Prestt Grove','Wigan 015E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.64982 53.53523)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CF:1A:2A:14:A3:22','2018-08-02 14:06:12','On or near Heywood Avenue','Wigan 038C','Vehicle crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.590997 53.4803)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FB:34:6F:73:AD:0B','2018-08-16 13:57:30','On or near Bevington Street','Wigan 032D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.651078 53.497228)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('83:43:06:8A:D6:C1','2018-08-10 09:34:33','On or near Corbel Way','Salford 020B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.350301 53.488215)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:75:BB:70:72:7E','2018-08-10 15:47:18','On or near Arlen Way','Rochdale 018B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.230642 53.594533)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B5:76:D8:AF:86:41','2018-08-19 07:09:45','On or near Claude Road','Manchester 037D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.276711 53.435277)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:01:8E:85:7F:E6','2018-08-14 21:51:24','On or near Burdale Drive','Salford 021B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.31903 53.492374)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('78:45:A2:5E:81:1B','2018-08-25 09:31:20','On or near Oldham Street','Manchester 054E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.234919 53.483096)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8C:9E:6E:D1:A6:BC','2018-08-11 23:14:33','On or near Sagar Street','Manchester 058C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.250038 53.494058)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:4B:B5:A5:76:37','2018-08-27 15:59:01','On or near St Mark''S Street','Manchester 027C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.178934 53.446547)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F1:6A:0A:63:95:97','2018-08-20 12:28:01','On or near Polygon Road','Manchester 008D','Robbery','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.246798 53.517524)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('46:DE:94:76:ED:EB','2018-08-09 05:20:55','On or near Mildred Street','Salford 016B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.268962 53.499976)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('33:29:0D:BE:61:86','2018-08-06 02:46:37','On or near Grosvenor Avenue','Bury 019C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.297144 53.55037)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E7:BF:0D:43:2A:EA','2018-08-23 08:44:46','On or near South Avenue','Trafford 002E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.344832 53.467998)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:9D:B6:7F:E9:EB','2018-08-06 05:02:20','On or near Supermarket','Rochdale 012F','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.135544 53.612152)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8A:CF:A5:28:A8:03','2018-08-18 12:22:19','On or near Police Station','Tameside 013B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.108507 53.484042)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('57:61:89:EB:66:82','2018-08-07 06:19:13','On or near Furness Avenue','Rochdale 018A','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.225001 53.599154)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('55:BB:49:A0:FD:F4','2018-08-03 20:55:39','On or near Chapel Street','Wigan 014D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.684091 53.533744)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0A:B5:D6:6C:80:3A','2018-08-04 11:20:37','On or near Earnshaw Street','Bolton 023C','Other theft','Under investigation',ST_GeomFromText('POINT(-2.454523 53.560562)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('16:8E:C0:3D:6A:3A','2018-08-18 00:31:42','On or near Gilda Road','Wigan 029C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.429102 53.505602)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:95:3B:EA:A0:7D','2018-08-18 11:37:47','On or near Holly Road','Wigan 038D','Public order','Under investigation',ST_GeomFromText('POINT(-2.586631 53.474021)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3D:F2:41:70:61:52','2018-08-20 00:24:37','On or near Taplin Drive','Manchester 023C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.174582 53.461096)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('89:E3:41:3E:AC:13','2018-08-22 06:16:16','On or near Hurstbrook Drive','Trafford 008A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.338056 53.45129)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D8:EB:EA:AD:93:B5','2018-08-04 08:28:24','On or near Balcary Grove','Bolton 015E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.458526 53.584492)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:FC:D4:0B:F3:3A','2018-08-16 04:02:37','On or near Queenston Road','Manchester 039A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.241031 53.423598)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1E:FF:05:9F:86:D1','2018-08-12 10:11:11','On or near Rockingham Close','Manchester 018A','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.214269 53.467009)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9E:24:B2:9A:9F:C7','2018-08-07 03:17:27','On or near Sevenoaks Road','Stockport 025C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.233161 53.396063)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:C7:BF:27:3C:81','2018-08-21 01:38:27','On or near Ringley Meadows','Bolton 034B','Public order','Under investigation',ST_GeomFromText('POINT(-2.362698 53.542207)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('35:A1:6B:F7:12:A8','2018-08-05 10:54:57','On or near Panfield Road','Manchester 050A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.264027 53.387523)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8A:01:FC:24:79:FA','2018-08-24 22:03:45','On or near Prince Charlie Street','Oldham 011A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.090278 53.550436)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A9:9A:8A:6E:EC:53','2018-08-12 20:52:03','On or near Aldwyn Park Road','Tameside 014B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.133989 53.474317)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('19:98:77:63:73:F7','2018-08-01 23:16:46','On or near Hillingdon Drive','Manchester 003E','Possession of weapons','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.183854 53.522366)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B8:3D:0B:6A:DA:DD','2018-08-01 06:24:00','On or near Eden Street','Oldham 014B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.116738 53.545577)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:BA:F1:4D:57:A0','2018-08-25 20:08:56','On or near Scot Lane','Wigan 010E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.664466 53.551346)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B2:59:7D:AC:25:7B','2018-08-17 06:49:09','On or near James Hill Street','Rochdale 001C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.096166 53.643676)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('30:C1:08:20:33:94','2018-08-11 15:19:01','On or near Catherine Street','Tameside 028E','Burglary','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.083777 53.452925)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C6:BF:E9:F4:83:6E','2018-08-14 01:14:29','On or near Lyme Grove','Stockport 014C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.157444 53.400394)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('23:2F:48:54:F2:DF','2018-08-30 07:02:20','On or near St Osmund''S Grove','Bolton 019E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.39089 53.578593)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1E:05:2C:33:F9:DC','2018-08-12 08:47:11','On or near Lower Moss Lane','Manchester 059C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.260052 53.470289)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C2:1B:AF:5F:85:67','2018-08-17 10:58:21','On or near St Helens Road','Wigan 037C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.534195 53.483184)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9E:A9:AA:BA:FE:12','2018-08-29 16:18:30','On or near Montrose Avenue','Tameside 018C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.08577 53.47055)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:79:11:A3:B8:C1','2018-08-05 03:08:23','On or near Stationers Entry','Rochdale 010C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.157661 53.61723)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:AF:3A:58:40:CB','2018-08-22 09:24:50','On or near Milford Drive','Manchester 034C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.180236 53.437466)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:76:E9:C9:B3:CC','2018-08-06 19:14:48','On or near Daisy Street','Oldham 016D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.127765 53.543876)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('47:78:6B:EE:A3:D1','2018-08-08 12:07:38','On or near Elliott Street','Oldham 018C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.071814 53.538458)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('41:1B:3B:5D:79:79','2018-08-21 20:48:33','On or near Chelmsford Road','Stockport 018D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.175063 53.402275)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3C:BA:58:92:89:02','2018-08-03 10:47:04','On or near Silver Street','Bury 019C','Violence and sexual offences','Local resolution',ST_GeomFromText('POINT(-2.297021 53.55233)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B6:77:72:4E:B9:DB','2018-08-21 06:20:20','On or near Swan Court','Oldham 005A','Public order','Under investigation',ST_GeomFromText('POINT(-2.098665 53.573934)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('19:B3:C0:6A:D0:BC','2018-08-16 20:43:08','On or near Bury Road','Bury 006B','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.325867 53.605546)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2E:11:76:36:B5:6B','2018-08-06 12:01:16','On or near Stephens Road','Tameside 008B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.061776 53.493863)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('73:B6:C0:95:4B:C2','2018-08-26 02:42:36','On or near Crosby Street','Rochdale 005F','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.152613 53.630099)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C8:7C:72:30:20:35','2018-08-03 19:01:35','On or near Bismarck Street','Oldham 022B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.10102 53.535803)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('59:B4:CE:4B:7A:11','2018-08-29 11:12:02','On or near Bainburgh Clough','Oldham 026D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.087019 53.528947)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F8:57:03:82:5E:3D','2018-08-27 07:13:51','On or near Brownhill Drive','Oldham 021D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.055513 53.546107)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A0:59:A9:58:86:29','2018-08-06 03:36:30','On or near Shaw Street','Oldham 009C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.118484 53.565314)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:16:5C:7F:A9:88','2018-08-27 05:26:11','On or near Tulpen Square','Oldham 017B','Public order','Under investigation',ST_GeomFromText('POINT(-2.143749 53.544721)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:74:14:B5:67:CD','2018-08-21 20:38:53','On or near Park/Open Space','Manchester 060B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.25716 53.475338)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:39:75:39:AF:3A','2018-08-29 23:39:23','On or near Burton Road','Manchester 038C','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.235089 53.432068)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:87:7C:F7:80:32','2018-08-05 10:40:21','On or near Rough Hill Lane','Bury 007A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.258138 53.601631)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('28:4F:CE:A4:0C:33','2018-08-19 13:33:39','On or near Irving Street','Oldham 031D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.141949 53.521093)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('88:9F:49:DD:1B:32','2018-08-07 09:45:32','On or near Aspinall Street','Manchester 025E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.225546 53.454665)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('23:BD:56:66:B3:C1','2018-08-19 05:30:58','On or near Haigh View','Wigan 006A','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.625868 53.556193)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9E:AA:84:55:A4:2D','2018-08-13 01:55:24','On or near Sun View','Oldham 009A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.10378 53.5598)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('02:33:7C:5A:57:F4','2018-08-01 08:44:17','On or near Ainley Wood','Tameside 018A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.078861 53.47398)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D2:0A:1B:E1:12:45','2018-08-08 02:59:17','On or near Plodder Lane','Bolton 029D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.423715 53.54891)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('20:93:F4:2C:55:F9','2018-08-15 20:11:10','On or near Moss Street West','Tameside 013B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.107802 53.485507)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5A:4E:F0:25:02:79','2018-08-21 15:13:44','On or near Gathurst Street','Manchester 021A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.162347 53.467594)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('28:13:6E:0E:61:22','2018-08-05 21:11:09','On or near Cross Street','Wigan 017A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.500716 53.529601)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('14:06:A2:B0:14:AE','2018-08-09 12:54:38','On or near Supermarket','Tameside 013A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.093402 53.488665)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:E2:95:59:8A:C8','2018-08-18 05:05:40','On or near Hughes Close','Bury 008A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.284426 53.596206)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EB:FD:F0:D5:63:22','2018-08-20 18:18:23','On or near Withins Grove','Bolton 013E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.39255 53.584925)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:D3:2B:95:84:BF','2018-08-01 06:41:45','On or near Saint Bartholomew''S Drive','Salford 028J','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.270193 53.475498)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:D1:3F:D9:86:33','2018-08-03 17:38:10','On or near Greenheys Lane West','Manchester 019A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.247911 53.462737)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:2E:5F:E3:24:16','2018-08-29 21:52:14','On or near Firs Road','Bolton 030B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.469496 53.539822)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:BA:CA:67:1E:72','2018-08-28 00:35:39','On or near Moss Vale Road','Trafford 002D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.340005 53.452165)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:10:76:E2:D1:6E','2018-08-03 15:22:08','On or near Shuttle Street','Salford 020A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.338943 53.483259)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('50:79:3D:40:BD:E3','2018-08-07 04:36:45','On or near Hulme Street','Manchester 059A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.250093 53.470121)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('66:AE:48:03:E7:74','2018-08-24 20:58:03','On or near Nightclub','Manchester 060A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.248907 53.47851)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2D:CD:D1:87:9A:28','2018-08-19 05:13:54','On or near Boxtree Avenue','Manchester 023B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.168192 53.456144)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('99:76:25:D8:86:28','2018-08-12 13:11:04','On or near Regatta Close','Oldham 027C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.14844 53.526837)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F4:6E:D4:3F:F6:4F','2018-08-03 18:29:15','On or near Swan Lane','Wigan 019E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.546787 53.528375)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('05:2C:B1:4D:F1:BE','2018-08-06 14:53:03','On or near Longdale Drive','Tameside 027D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.01496 53.454878)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EB:E7:F3:16:ED:A8','2018-08-20 17:00:17','On or near Teesdale Close','Stockport 021B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.118223 53.396116)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FC:D6:81:EB:41:A3','2018-08-22 13:30:24','On or near East Grange','Manchester 012C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.180932 53.487989)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3C:95:D4:DD:DF:55','2018-08-16 01:24:27','On or near Goose Green','Trafford 025B','Robbery','Under investigation',ST_GeomFromText('POINT(-2.350132 53.385359)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:8A:1B:90:43:9B','2018-08-13 05:10:07','On or near Martin Street','Bury 007B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.265514 53.599386)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('65:28:7C:35:82:9F','2018-08-26 20:56:38','On or near Sports/Recreation Area','Stockport 008C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.193722 53.417473)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C4:6F:A8:71:2F:E4','2018-08-26 07:24:11','On or near Ancroft Street','Manchester 019D','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.25269 53.466125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('43:9C:C3:51:07:9A','2018-08-04 19:38:04','On or near Harley Court','Rochdale 024E','Public order','Under investigation',ST_GeomFromText('POINT(-2.202923 53.551529)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A2:AE:24:38:4D:E5','2018-08-21 04:21:52','On or near Bolton Road','Salford 017A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.306436 53.499526)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:91:EB:58:7B:34','2018-08-28 07:31:59','On or near Tollgreen Close','Wigan 013B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.576601 53.543174)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('94:92:A6:FA:40:4F','2018-08-20 01:32:50','On or near Portugal Street','Tameside 013C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.109563 53.478926)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C5:D2:1A:E8:09:86','2018-08-08 21:22:32','On or near Parking Area','Bolton 022E','Public order','Under investigation',ST_GeomFromText('POINT(-2.428651 53.577349)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:46:BA:C1:78:C2','2018-08-08 03:02:59','On or near Cranshaw Street','Wigan 029D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.442801 53.513669)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A3:59:59:6D:47:16','2018-08-26 11:54:13','On or near Petrol Station','Salford 028F','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.282413 53.468872)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('08:95:3E:85:1E:C3','2018-08-05 16:24:41','On or near Stanley Road','Tameside 024D','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.138118 53.456147)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E7:2A:79:F2:CB:FD','2018-08-16 23:03:50','On or near Supermarket','Tameside 013A','Shoplifting','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.105918 53.491423)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:AA:3D:A7:51:2F','2018-08-02 21:18:12','On or near Eileen Grove West','Manchester 025D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.227621 53.451165)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('84:34:88:FC:45:93','2018-08-12 05:07:01','On or near Staley Hall Crescent','Tameside 009A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.043065 53.489171)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DF:D8:F4:B2:94:0F','2018-08-14 06:05:11','On or near Richmond Street','Manchester 055B','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236952 53.47733)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:B1:A3:3B:46:3E','2018-08-22 01:28:09','On or near Great George Street','Salford 022G','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.261838 53.483858)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:17:37:44:A1:64','2018-08-02 20:28:17','On or near Shudehill','Manchester 054D','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237554 53.485418)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('89:8E:32:C8:74:89','2018-08-17 04:59:01','On or near Taplin Drive','Manchester 023C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.174582 53.461096)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:18:52:7D:43:8D','2018-08-14 06:45:42','On or near Valentine Street','Oldham 019B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.086706 53.537819)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0A:2B:E2:7D:FE:66','2018-08-28 05:37:34','On or near Balmer Drive','Manchester 051C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.278001 53.388489)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('79:9D:D4:51:A7:EA','2018-08-09 20:01:18','On or near St Aiden''S Close','Bury 018B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.333433 53.551155)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:9E:5B:3B:FA:EF','2018-08-02 14:42:31','On or near Almond Brook Road','Wigan 001B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.676133 53.587262)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('35:A2:77:EA:00:FD','2018-08-09 04:26:49','On or near Trinity Way','Salford 022J','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.255608 53.485444)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B3:47:44:15:06:14','2018-08-15 04:43:58','On or near Prescott Street','Wigan 030C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.520167 53.500557)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A3:D6:99:C3:7C:E7','2018-08-02 08:39:04','On or near Bedford Terrace','Bury 007C','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.282073 53.603662)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:00:26:8A:B6:E8','2018-08-12 08:36:15','On or near Stanley Close','Bury 020D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.291846 53.552576)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F1:58:0E:3B:63:F7','2018-08-23 04:59:38','On or near Church Road','Salford 020A','Vehicle crime','Awaiting court outcome',ST_GeomFromText('POINT(-2.334361 53.484989)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('59:B6:CC:15:81:05','2018-08-09 15:44:18','On or near Paddington Close','Salford 024D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.283799 53.486962)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AA:93:60:63:E3:F2','2018-08-22 22:30:30','On or near Parking Area','Manchester 055B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.239594 53.47834)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AE:36:3C:C6:43:7D','2018-08-22 11:56:10','On or near Millers Street','Salford 025A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.362312 53.48284)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2A:A5:1E:A6:C5:D5','2018-08-07 17:46:49','On or near Simeon Street','Rochdale 013A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.111071 53.61153)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EE:B9:9F:E3:7C:BB','2018-08-24 18:46:59','On or near Petrol Station','Bolton 015B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.454609 53.585424)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('73:07:09:22:F6:71','2018-08-30 12:17:33','On or near Prison','Manchester 058C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.246337 53.492717)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BB:6C:E1:1A:0B:DF','2018-08-29 14:37:01','On or near Harrop Fold','Oldham 033D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.105694 53.516196)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2C:4E:59:C0:69:B0','2018-08-23 15:44:25','On or near Bankside Road','Manchester 045D','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.230639 53.402522)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:C5:92:28:35:A5','2018-08-01 18:31:12','On or near Wynnstay Grove','Manchester 032C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.220581 53.440985)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A8:36:6B:92:81:11','2018-08-05 05:13:14','On or near Moorfield Mews','Oldham 002D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.096093 53.578466)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B9:C2:4B:54:E1:35','2018-08-24 13:09:27','On or near Lavington Avenue','Stockport 022D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.193226 53.394211)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F8:9E:8E:A5:2E:91','2018-08-13 10:36:18','On or near Lytham Road','Trafford 007B','Public order','Under investigation',ST_GeomFromText('POINT(-2.400615 53.448921)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:3D:93:BA:8F:88','2018-08-09 14:30:51','On or near Werneth Avenue','Manchester 030C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.230222 53.447816)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:6D:A8:E0:13:8C','2018-08-14 19:22:29','On or near Werneth Avenue','Manchester 030C','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.230222 53.447816)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AA:65:67:4B:ED:72','2018-08-03 12:05:43','On or near James Leigh Street','Manchester 057C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.241016 53.474059)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('12:FD:9E:47:27:32','2018-08-15 14:29:31','On or near Park View','Oldham 010D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.144649 53.55191)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('72:01:F0:A1:C6:EF','2018-08-10 08:06:12','On or near Torwood Road','Oldham 010A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.161581 53.551134)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:EF:E7:C7:05:FC','2018-08-01 16:27:21','On or near Chapel Street','Salford 013E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.424399 53.504136)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('33:EB:B2:72:0B:BD','2018-08-26 17:19:56','On or near Westville Gardens','Manchester 041A','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.208255 53.426302)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B6:5D:8F:79:75:B4','2018-08-10 22:12:08','On or near Brecon Avenue','Manchester 034E','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.201065 53.436543)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('05:6F:2C:3F:37:8A','2018-08-11 01:04:37','On or near Crete Street','Oldham 024A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.108548 53.52964)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('67:F0:DB:18:F6:9F','2018-08-01 20:19:00','On or near Ann Street','Tameside 028E','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.087813 53.453174)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F9:72:BE:55:21:C9','2018-08-22 11:06:54','On or near Trinity Street','Tameside 008A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.056547 53.483925)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('72:5C:09:46:87:D7','2018-08-04 06:55:02','On or near Pentland Avenue','Manchester 003E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.178999 53.522769)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9C:CB:AF:22:E9:9A','2018-08-20 16:07:27','On or near Glover Drive','Tameside 028B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.070983 53.447729)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('04:35:EF:43:76:7D','2018-08-30 13:29:45','On or near Carr Street','Wigan 013C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.575831 53.53649)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('67:77:3B:32:43:BE','2018-08-27 17:52:56','On or near Further/Higher Educational Building','Manchester 055A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.235337 53.474106)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F2:46:A8:A5:A5:71','2018-08-16 14:03:23','On or near Ball Walk','Tameside 023D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.022726 53.445438)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:C1:09:DB:BE:E3','2018-08-01 15:08:07','On or near Parkin Close','Tameside 017C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.084472 53.477095)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('26:BE:EA:95:9F:C9','2018-08-13 00:16:30','On or near Mill Street','Tameside 020B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.071698 53.460924)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('57:8B:D5:22:79:58','2018-08-25 16:49:07','On or near Shopping Area','Manchester 054C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238637 53.482225)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BF:9F:16:8E:92:9A','2018-08-10 08:43:28','On or near Petrol Station','Stockport 009B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.121384 53.42884)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A8:68:6B:FB:B8:CE','2018-08-16 04:29:34','On or near Sedbury Close','Manchester 044B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.293456 53.410015)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('41:F5:E3:F4:B7:EB','2018-08-06 23:52:13','On or near Back Bradford Street South','Bolton 017A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.417271 53.576554)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('53:EA:EB:4C:B3:28','2018-08-18 06:16:19','On or near Goodwin Street','Bolton 016F','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.421646 53.58221)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('24:3E:F5:63:31:B1','2018-08-22 14:50:32','On or near Pedestrian Subway','Bury 020A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.289839 53.539368)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C3:C0:67:3B:0E:38','2018-08-03 21:54:25','On or near Heath Street','Rochdale 010E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.168797 53.612217)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C8:99:F2:50:71:D2','2018-08-14 12:02:50','On or near Alston Avenue','Oldham 002C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.095873 53.581738)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:45:E0:17:D4:57','2018-08-21 06:04:27','On or near Waterson Avenue','Manchester 009E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.195216 53.506897)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6C:02:02:85:FD:C1','2018-08-30 15:34:13','On or near Supermarket','Bolton 015B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.448399 53.585349)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DC:4C:68:21:6C:54','2018-08-09 09:32:09','On or near St Simon Street','Salford 022K','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.257368 53.489907)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('01:F1:77:57:FF:40','2018-08-17 10:37:24','On or near Barnfield Close','Bury 018A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.348084 53.561558)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4A:25:B2:1E:2E:07','2018-08-06 22:26:07','On or near Calder Place','Wigan 010C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.674675 53.540287)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7F:E0:89:EE:72:15','2018-08-11 14:48:50','On or near Torcross Road','Manchester 001A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.232573 53.536159)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F7:E3:04:DC:53:6B','2018-08-27 23:31:40','On or near Princes Drive','Trafford 014B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.307203 53.418025)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AC:5B:96:37:B2:E5','2018-08-14 04:50:17','On or near Conference/Exhibition Centre','Manchester 055E','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.224058 53.475279)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E0:CC:8E:87:8B:6A','2018-08-15 03:05:50','On or near William Street','Tameside 013E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.106121 53.482273)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FC:56:AA:E0:CA:93','2018-08-03 21:37:32','On or near Shopping Area','Manchester 054C','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.243249 53.485065)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('36:8A:9D:E9:0A:71','2018-08-14 17:12:18','On or near Chelbourne Drive','Oldham 031D','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.139782 53.522596)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BB:77:71:C0:3A:4E','2018-08-03 08:45:05','On or near Waters Edge Fold','Oldham 007F','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.085211 53.567059)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:23:61:60:25:84','2018-08-22 11:05:43','On or near Houghwood Grange','Wigan 036D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.651354 53.487735)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F3:B2:BC:74:C8:C6','2018-08-09 01:12:43','On or near Green Bridge Close','Rochdale 015C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.156804 53.602077)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('08:A1:C9:DA:35:78','2018-08-11 08:54:07','On or near Boston Street','Manchester 019A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.248933 53.462466)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D2:2E:44:FD:6D:04','2018-08-05 00:02:28','On or near Taplin Drive','Manchester 023C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.174582 53.461096)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3C:7D:7F:A8:4C:0C','2018-08-27 13:31:12','On or near Clydesdale Gardens','Manchester 015D','Public order','Under investigation',ST_GeomFromText('POINT(-2.196462 53.47957)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D3:AF:31:2F:89:CD','2018-08-05 03:18:34','On or near Beswick Street','Manchester 013E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.214896 53.483709)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0D:BD:14:8B:E4:57','2018-08-24 19:53:13','On or near Eden Grove','Wigan 033E','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.541576 53.497119)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('96:58:6F:14:5A:D1','2018-08-30 03:17:00','On or near Ashton New Road','Manchester 015G','Robbery','Under investigation',ST_GeomFromText('POINT(-2.195011 53.481864)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DA:49:D2:12:4E:A2','2018-08-15 05:59:57','On or near Saddlecote Close','Manchester 008F','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.229521 53.513118)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4B:0D:B4:85:EC:4F','2018-08-27 05:50:55','On or near Heywood Street','Bury 008F','Possession of weapons','Under investigation',ST_GeomFromText('POINT(-2.286761 53.590663)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:A2:32:D5:77:2E','2018-08-11 18:03:07','On or near Sports/Recreation Area','Bolton 019F','Burglary','Under investigation',ST_GeomFromText('POINT(-2.401804 53.566863)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:3E:61:88:BB:4E','2018-08-22 08:52:43','On or near Claybank Drive','Bury 003E','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.348999 53.615827)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('70:47:AD:CD:3F:80','2018-08-09 09:02:31','On or near Rouse Close','Manchester 015G','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.19783 53.479019)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1C:7C:72:06:57:E7','2018-08-02 00:45:54','On or near Orford Court','Wigan 034D','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.504758 53.483842)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B2:5B:FA:21:2F:B9','2018-08-07 00:30:18','On or near Bowley Avenue','Manchester 051E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.281862 53.376552)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:12:6A:EA:B9:49','2018-08-15 17:07:40','On or near Shopping Area','Trafford 003B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.284324 53.461712)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('70:A9:9B:68:A7:C9','2018-08-01 16:01:10','On or near Appleton Grove','Wigan 015C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.659874 53.529764)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B9:FA:CC:5F:AB:73','2018-08-28 15:09:24','On or near Turves Road','Stockport 034C','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.204001 53.373879)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:CB:23:A3:EF:CC','2018-08-20 18:48:05','On or near Petrol Station','Stockport 009B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.113313 53.421585)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('25:83:AD:DC:0A:D3','2018-08-16 05:58:27','On or near Kirkdale Avenue','Manchester 003D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.168694 53.52184)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0E:52:27:B1:E7:B0','2018-08-29 08:43:31','On or near Warren Street','Stockport 014D','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.158361 53.412473)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('94:9D:E5:50:D9:6A','2018-08-04 11:32:07','On or near Derby Street','Oldham 035F','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.135351 53.533037)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('01:B4:DF:24:63:9B','2018-08-04 12:08:48','On or near Vale Road','Trafford 023D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.323713 53.392868)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7D:7A:54:FE:0F:65','2018-08-25 19:29:54','On or near Bond Street','Wigan 022D','Public order','Under investigation',ST_GeomFromText('POINT(-2.475586 53.516392)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AE:BF:60:0E:BE:04','2018-08-06 07:00:48','On or near Justin Close','Manchester 018E','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.23264 53.471316)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2F:26:23:8D:D0:96','2018-08-28 04:08:28','On or near Back Mere Gardens','Bolton 016C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.438278 53.58526)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2E:B6:B0:E5:74:35','2018-08-04 20:13:39','On or near Anselms Court','Oldham 035E','Other theft','Under investigation',ST_GeomFromText('POINT(-2.130771 53.530363)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DB:C6:C6:83:CA:28','2018-08-29 09:29:07','On or near Oakes Street','Bolton 034C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.382416 53.543314)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4B:90:70:6A:8E:40','2018-08-22 06:26:56','On or near Lavender Road','Bolton 029C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.418087 53.55364)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CF:6C:B2:F0:95:A4','2018-08-12 08:24:14','On or near Tonbridge Road','Stockport 003B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.15635 53.438363)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B9:EF:8A:98:E6:06','2018-08-01 20:10:53','On or near Hillfield Drive','Bolton 010C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.414992 53.5891)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('76:20:B8:AD:89:6C','2018-08-18 22:13:04','On or near Hitchen Close','Tameside 018D','Possession of weapons','Awaiting court outcome',ST_GeomFromText('POINT(-2.064803 53.473009)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A9:18:50:C2:C2:4C','2018-08-03 21:02:39','On or near Roxholme Walk','Manchester 053E','Drugs','Under investigation',ST_GeomFromText('POINT(-2.266033 53.369181)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6A:56:E9:11:CD:FA','2018-08-13 03:57:55','On or near Peacock Grove','Manchester 023C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.172546 53.460443)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('20:EF:9E:16:AA:77','2018-08-07 08:19:40','On or near Levens Drive','Bolton 013A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.390628 53.589452)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3C:FC:54:32:58:7D','2018-08-15 19:00:12','On or near Victoria Bridge Street','Salford 022I','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.246444 53.485086)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('41:DF:F2:92:9A:97','2018-08-12 17:08:35','On or near Quarry Place','Wigan 009E','Other theft','Under investigation',ST_GeomFromText('POINT(-2.615694 53.547877)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('38:9D:D5:41:C2:76','2018-08-24 01:50:32','On or near Brimscombe Avenue','Manchester 053A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.268328 53.378147)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('41:A3:1B:77:B5:DD','2018-08-10 09:47:39','On or near Ditton Mead Close','Rochdale 004A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.140108 53.630141)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('57:C7:43:7A:D3:0B','2018-08-03 09:56:31','On or near Chapel Street','Salford 022G','Theft from the person','Under investigation',ST_GeomFromText('POINT(-2.25775 53.483183)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:15:A5:D8:16:98','2018-08-20 13:55:06','On or near Shopping Area','Trafford 005B','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.358922 53.463264)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F7:7D:77:6F:D5:64','2018-08-15 08:27:27','On or near Mango Place','Salford 024D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.281774 53.486005)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('42:FE:7A:05:A2:72','2018-08-07 07:56:49','On or near Caroline Street','Tameside 008A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.060238 53.483339)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A8:62:FD:78:FB:39','2018-08-09 14:44:40','On or near Peterborough Close','Tameside 002C','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.095547 53.504295)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:9A:59:AA:E7:E6','2018-08-13 22:58:06','On or near Stamford Street','Trafford 025B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.348163 53.389131)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A1:BD:81:3D:CD:6B','2018-08-06 12:00:12','On or near Curlew Road','Oldham 026F','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.075377 53.531148)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B7:70:14:4C:C9:F1','2018-08-05 06:14:43','On or near Back Holly Place','Bolton 005B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.432222 53.60174)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:1B:B5:10:97:E2','2018-08-13 12:26:43','On or near Winster Drive','Wigan 024D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.605276 53.520111)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:1B:14:7E:AC:21','2018-08-12 08:46:52','On or near Shopping Area','Tameside 010E','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.146245 53.481071)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9C:4C:70:BE:49:98','2018-08-08 16:30:47','On or near Pedestrian Subway','Bolton 022E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.419182 53.575927)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:D2:5D:4E:0E:56','2018-08-22 04:28:05','On or near Beech Avenue','Manchester 046C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.258887 53.405187)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7F:68:AB:3D:1F:C6','2018-08-19 13:03:29','On or near Brindley Avenue','Stockport 020B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.068576 53.393233)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('98:0F:56:FE:94:89','2018-08-12 18:20:24','On or near Supermarket','Manchester 057C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.242 53.474767)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1B:5D:0A:67:1A:77','2018-08-05 04:36:26','On or near Kay Brow','Rochdale 018F','Shoplifting','Local resolution',ST_GeomFromText('POINT(-2.22772 53.593325)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:7A:4A:7A:D1:ED','2018-08-29 05:22:32','On or near Primrose Avenue','Trafford 009A','Public order','Under investigation',ST_GeomFromText('POINT(-2.35227 53.449415)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BA:60:9D:D3:2B:43','2018-08-08 23:34:10','On or near Claremont Road','Manchester 025D','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.226589 53.452641)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('10:BC:8D:23:DC:CE','2018-08-09 07:09:42','On or near Buddleia Grove','Salford 016C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.260808 53.505135)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('08:F4:35:3E:AD:3A','2018-08-12 01:53:50','On or near Manchester Road','Bolton 034B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.363984 53.53557)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CC:51:02:0C:4C:DC','2018-08-30 13:55:03','On or near Cockcroft Street','Manchester 006B','Other crime','Under investigation',ST_GeomFromText('POINT(-2.213472 53.515368)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1E:DD:75:57:DA:B8','2018-08-23 07:13:29','On or near Rye Hill','Bolton 031B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.518911 53.545775)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C3:31:7D:9C:50:1C','2018-08-03 23:11:28','On or near Barnwood Drive','Bolton 011A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.436504 53.58906)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('ED:40:13:50:C5:3E','2018-08-14 08:21:49','On or near Elm Road South','Stockport 018C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.194043 53.398578)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A8:BC:0F:B3:1E:CA','2018-08-20 14:47:09','On or near Lincoln Rise','Stockport 012C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.104134 53.409189)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:2B:6B:AC:95:DA','2018-08-28 22:10:27','On or near Brunswick Street','Bury 008C','Public order','Under investigation',ST_GeomFromText('POINT(-2.293242 53.597281)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('51:D7:D9:18:3E:8E','2018-08-17 06:58:04','On or near Briar Road','Wigan 038D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.590601 53.474595)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:D9:78:D5:7D:DB','2018-08-28 11:05:10','On or near Ashness Drive','Bolton 013A','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.386911 53.58932)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AE:E3:72:B0:75:DA','2018-08-14 05:23:10','On or near Beechwood Avenue','Stockport 007A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.153408 53.423958)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('43:B6:81:2E:9C:20','2018-08-22 03:50:43','On or near Piercy Street','Oldham 034A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.159919 53.506751)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('45:EB:F3:74:83:A7','2018-08-23 04:12:57','On or near Melford Avenue','Manchester 005E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.166732 53.517735)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('07:02:87:29:EC:42','2018-08-06 22:23:09','On or near Shopping Area','Manchester 054C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238637 53.482225)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:12:60:0E:9A:5E','2018-08-16 11:30:40','On or near Shopping Area','Trafford 002E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.32723 53.476766)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D4:0C:02:14:0D:65','2018-08-09 21:37:54','On or near Melton Street','Bury 016B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.334805 53.564256)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FC:BB:53:C4:F5:82','2018-08-18 20:31:26','On or near Heaton Avenue','Bolton 012E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.47408 53.588126)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('54:9C:00:A5:DE:33','2018-08-29 18:18:00','On or near Gateway Road','Manchester 017D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.176538 53.467799)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('64:01:4E:0A:CD:65','2018-08-12 04:21:05','On or near Shortland Place','Wigan 026E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.557999 53.512566)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F1:97:88:E8:D5:90','2018-08-30 19:08:50','On or near Prison','Manchester 058C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.246337 53.492717)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4A:D6:2D:B0:8B:BD','2018-08-19 10:51:28','On or near Holt Street','Stockport 019C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.153756 53.403823)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:DA:73:BD:80:4D','2018-08-22 08:24:29','On or near Assheton Street','Rochdale 024B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.194249 53.555795)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B9:4D:7F:77:FD:BD','2018-08-21 13:15:45','On or near Saxby Street','Salford 018A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.31212 53.499718)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EB:94:47:7B:09:B5','2018-08-24 21:38:11','On or near Perth Street','Bolton 023C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.454148 53.560816)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5B:97:D4:33:C9:7B','2018-08-19 18:47:42','On or near Buxton Close','Wigan 017E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.483244 53.528055)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F3:76:D7:2D:93:0C','2018-08-05 05:05:01','On or near Petrol Station','Salford 022K','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.259032 53.495836)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('27:B6:0A:DC:EC:EF','2018-08-12 20:58:21','On or near Parker Street','Manchester 055B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.237782 53.480277)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A5:63:3E:D5:26:B8','2018-08-25 10:22:26','On or near Mildred Avenue','Oldham 021B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.053721 53.536868)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AC:BD:96:E1:8C:48','2018-08-17 08:51:08','On or near Hunters Close','Stockport 012E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.108115 53.419055)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A5:25:81:58:C5:33','2018-08-15 22:57:33','On or near Tupelo Street','Manchester 018C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.218922 53.463846)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EC:11:5A:67:30:13','2018-08-28 05:14:49','On or near Hampshire Road','Trafford 017B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.43904 53.412373)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C6:24:BE:BE:71:95','2018-08-13 08:48:29','On or near Endon Street','Bolton 015E','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.458261 53.587927)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('39:0B:E2:25:9F:AF','2018-08-14 20:55:50','On or near Lindley Street','Bolton 034B','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.367549 53.537716)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7F:30:A7:30:6D:39','2018-08-07 14:01:50','On or near Loganberry Avenue','Salford 024D','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.286278 53.488071)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D3:73:3B:D4:8F:AD','2018-08-04 03:23:00','On or near Supermarket','Manchester 057C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.242 53.474767)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:A7:80:BD:3E:0D','2018-08-06 11:23:20','On or near Supermarket','Tameside 015A','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.053064 53.482461)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('35:D5:37:7F:BE:C4','2018-08-23 17:57:58','On or near Deerpark Road','Manchester 028E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.253446 53.453926)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4E:3E:21:A3:CE:26','2018-08-19 10:53:50','On or near St Mark''S Square','Bury 008D','Drugs','Under investigation',ST_GeomFromText('POINT(-2.28961 53.600777)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('52:04:BA:AF:8B:43','2018-08-08 16:34:02','On or near Stonie Heyes Avenue','Rochdale 004A','Criminal damage and arson','Local resolution',ST_GeomFromText('POINT(-2.14043 53.63139)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:BC:85:FE:45:73','2018-08-06 12:35:35','On or near Manchester Road','Bolton 027A','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.405453 53.559948)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C2:08:97:FD:F0:47','2018-08-13 06:36:03','On or near Kinross Road','Manchester 022D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.211164 53.454494)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('96:FF:FB:A2:31:FD','2018-08-23 12:00:05','On or near Parking Area','Manchester 055B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.236247 53.478023)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DC:60:7F:A4:D6:F2','2018-08-19 02:43:02','On or near Heber Street','Bury 016E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.327482 53.562299)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('39:C8:C5:EA:D4:5D','2018-08-12 10:34:08','On or near Further/Higher Educational Building','Manchester 018B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.233224 53.467926)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:B0:8A:C5:78:42','2018-08-09 16:20:19','On or near Parkhills Close','Bury 011D','Public order','Under investigation',ST_GeomFromText('POINT(-2.290986 53.585637)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('15:8D:65:59:D5:98','2018-08-24 23:40:02','On or near Pembroke Avenue','Salford 027D','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.350242 53.484755)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D6:6C:F7:96:13:20','2018-08-11 20:02:39','On or near Lyndhurst Street','Salford 023B','Public order','Under investigation',ST_GeomFromText('POINT(-2.300086 53.486239)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B3:3A:72:2E:A7:B8','2018-08-22 23:12:49','On or near Rosebridge Way','Wigan 009B','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.612324 53.544425)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('38:D5:95:40:7C:70','2018-08-02 15:24:16','On or near Parrs Mount Mews','Stockport 013C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.201328 53.412714)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D6:45:D1:2F:47:E2','2018-08-19 00:56:00','On or near Thompson Drive','Bury 007D','Other theft','Under investigation',ST_GeomFromText('POINT(-2.27013 53.595798)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EE:99:11:2A:FA:41','2018-08-18 23:49:40','On or near Lawson Close','Rochdale 021B','Possession of weapons','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.196859 53.565327)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:AB:AD:4A:D2:1A','2018-08-22 23:10:10','On or near Clifton Street','Bolton 034C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.380312 53.544292)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FD:F3:89:C9:DC:95','2018-08-08 16:05:22','On or near Allsopp Street','Bolton 016D','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.428047 53.574385)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:32:92:FE:8F:D0','2018-08-04 12:07:44','On or near Marshall Street','Wigan 037C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.527655 53.491644)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B6:AE:7D:F1:77:A1','2018-08-26 10:42:17','On or near Waterson Avenue','Manchester 009E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.195216 53.506897)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('70:8E:4A:BF:7C:46','2018-08-26 17:16:10','On or near Montagu Street','Stockport 010B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.050422 53.414671)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5A:46:C8:53:B9:03','2018-08-19 20:56:34','On or near Ridgeway Gates','Bolton 016E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.431002 53.579876)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:DC:46:0A:D1:03','2018-08-02 06:35:34','On or near Peaceville Road','Manchester 032D','Drugs','Under investigation',ST_GeomFromText('POINT(-2.202919 53.443497)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5C:15:FF:E1:B0:9F','2018-08-23 03:37:41','On or near Albion Street','Manchester 060A','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.247977 53.474162)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2C:41:89:6E:CD:E4','2018-08-19 04:35:06','On or near Cheshire Road','Trafford 017E','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.439052 53.413514)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2F:31:57:F7:03:57','2018-08-23 17:12:34','On or near Supermarket','Rochdale 004B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.132929 53.621664)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:7A:A8:80:F3:4F','2018-08-29 18:49:12','On or near Clarington Grove','Wigan 009B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.617099 53.543834)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('45:1B:60:41:D1:74','2018-08-09 23:27:19','On or near Elizabeth Street','Rochdale 018B','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.224991 53.594373)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:B7:56:A9:2E:85','2018-08-23 12:55:38','On or near Shaw Hall Bank Road','Oldham 013A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.013753 53.538785)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:17:73:FE:91:17','2018-08-01 15:38:18','On or near Kershaw Street','Tameside 013C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.112373 53.475948)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C9:9C:A8:10:B6:45','2018-08-03 02:26:42','On or near Nightclub','Manchester 057C','Other theft','Under investigation',ST_GeomFromText('POINT(-2.241402 53.475586)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('16:98:47:A6:C9:90','2018-08-07 13:51:19','On or near Further/Higher Educational Building','Manchester 042B','Burglary','Awaiting court outcome',ST_GeomFromText('POINT(-2.247432 53.421841)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:FF:E7:E8:3F:C2','2018-08-22 09:31:22','On or near Shopping Area','Trafford 003B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.284324 53.461712)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('45:8F:63:1C:83:77','2018-08-10 05:04:17','On or near Gatwick Avenue','Manchester 048B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.278095 53.395958)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CA:87:02:FF:FD:CF','2018-08-05 00:09:45','On or near Berkeley Street','Tameside 013A','Shoplifting','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.101784 53.489521)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C2:96:B2:06:CC:C5','2018-08-27 20:15:46','On or near Regent Street','Salford 020A','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.334256 53.483218)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:F6:92:A8:87:2B','2018-08-15 08:58:05','On or near Rochdale Road','Bury 008E','Public order','Under investigation',ST_GeomFromText('POINT(-2.292493 53.593894)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('74:14:DC:64:6B:64','2018-08-02 15:49:01','On or near Fernhill Avenue','Bolton 026D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.46662 53.565055)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:CD:DE:6A:B7:75','2018-08-07 20:56:00','On or near Taylorson Street','Salford 028B','Public order','Under investigation',ST_GeomFromText('POINT(-2.277209 53.470061)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('79:03:9E:B7:70:1D','2018-08-24 22:00:46','On or near Brook Lane','Oldham 022A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.098629 53.532794)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('96:A4:B0:CE:D6:2F','2018-08-18 16:58:04','On or near Shopping Area','Manchester 054C','Shoplifting','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.241702 53.483451)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('09:16:37:D2:19:59','2018-08-07 23:36:14','On or near Jopson Street','Rochdale 023F','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.183352 53.552621)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C0:65:7D:C5:C9:FA','2018-08-08 15:30:57','On or near Grangewood Drive','Manchester 009B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.216502 53.506123)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1C:9B:5E:8E:F9:E2','2018-08-03 23:33:34','On or near Hardcastle Avenue','Manchester 037A','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.269846 53.430268)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A2:FC:32:84:04:E8','2018-08-08 06:05:37','On or near Old Church Street','Manchester 011A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.181351 53.501274)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('12:C9:8E:B0:49:B6','2018-08-10 06:51:12','On or near Theatre/Concert Hall','Manchester 060A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.244594 53.477944)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6F:50:BA:87:5F:8C','2018-08-05 02:03:09','On or near Loganberry Avenue','Salford 024D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.286278 53.488071)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2D:AF:FE:F9:4F:A4','2018-08-29 07:46:05','On or near Driscoll Street','Manchester 027E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.198675 53.453365)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9E:0F:B9:FB:20:1D','2018-08-06 23:28:18','On or near Tobermory Road','Stockport 036A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.225227 53.374407)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E8:1E:5F:6C:28:99','2018-08-23 13:46:09','On or near Cawdor Street','Wigan 030B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.51761 53.494807)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B3:39:33:35:8E:19','2018-08-14 13:30:21','On or near Ellenbrook Road','Salford 013A','Shoplifting','Awaiting court outcome',ST_GeomFromText('POINT(-2.413443 53.510853)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7F:96:9D:46:03:B5','2018-08-26 12:19:11','On or near Greenford Close','Wigan 018A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.71116 53.539285)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('37:9D:11:91:5B:20','2018-08-30 01:38:50','On or near Peter Street','Salford 026C','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.350671 53.478264)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:AB:34:17:8F:6D','2018-08-02 13:34:30','On or near Parking Area','Bolton 011B','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.437887 53.592767)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5C:A0:96:5C:CC:C2','2018-08-06 06:01:46','On or near Nightclub','Manchester 055B','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238002 53.476636)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F4:2D:59:1F:AE:A6','2018-08-25 06:38:03','On or near Lytherton Avenue','Salford 030D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.438313 53.423575)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E0:6A:2F:C1:D8:E7','2018-08-09 03:15:58','On or near Rudyard Avenue','Rochdale 021F','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.182102 53.560362)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('77:63:2B:FE:AB:BB','2018-08-17 21:00:15','On or near Rainforth Street','Manchester 027E','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.200236 53.455654)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:ED:C1:B2:86:D2','2018-08-16 23:16:23','On or near Hospital','Bury 007A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.255336 53.600505)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:21:29:FB:DF:C6','2018-08-27 07:50:03','On or near Radcliffe Street','Oldham 014D','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.112393 53.546022)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('36:A6:A6:E4:8B:ED','2018-08-25 22:25:34','On or near Supermarket','Oldham 010A','Violence and sexual offences','Local resolution',ST_GeomFromText('POINT(-2.166018 53.551002)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('02:0A:63:F0:F8:0E','2018-08-24 13:48:34','On or near Wolsey Street','Bury 016D','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.330151 53.561798)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:1A:AB:BA:6C:1C','2018-08-30 00:46:03','On or near Howard Drive','Trafford 028A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.330883 53.371167)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('ED:55:00:CF:16:FE','2018-08-20 18:07:07','On or near Devonshire Park Road','Stockport 027A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.150025 53.390624)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3E:FE:88:98:76:F5','2018-08-13 14:46:27','On or near Parking Area','Manchester 055B','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.238126 53.479835)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:23:7B:CF:AD:C9','2018-08-15 04:38:47','On or near Huntley Street','Bury 007E','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.27442 53.597928)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3E:7C:04:D3:BB:84','2018-08-05 07:17:02','On or near Powell Avenue','Tameside 020E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.071719 53.455216)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('42:6D:1F:05:CC:72','2018-08-19 21:09:22','On or near Petrol Station','Wigan 021G','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.652941 53.521352)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B9:65:67:01:17:76','2018-08-21 19:30:29','On or near Ordsall Lane','Salford 028J','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.266048 53.475255)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F4:5D:0B:5F:85:CB','2018-08-24 10:46:54','On or near Tonge Hall Close','Rochdale 024A','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.186459 53.548805)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('28:B8:EA:8E:20:8E','2018-08-12 23:30:19','On or near Haysbrook Avenue','Salford 001B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.423657 53.529549)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F3:DD:FA:51:92:5F','2018-08-16 14:21:50','On or near Petrol Station','Tameside 013C','Other theft','Under investigation',ST_GeomFromText('POINT(-2.11191 53.477396)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('54:68:76:16:FD:2A','2018-08-06 15:57:21','On or near Gilnow Gardens','Bolton 015D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.449867 53.575627)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9C:96:A8:00:E2:F5','2018-08-26 03:02:49','On or near Chesham Avenue','Bolton 011B','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.433886 53.591505)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:7E:09:9D:6E:0F','2018-08-29 09:26:27','On or near Shudehill','Manchester 054D','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237554 53.485418)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6E:B6:90:86:DA:94','2018-08-25 20:43:24','On or near Kingfisher Drive','Bolton 033E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.425268 53.544239)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E0:A2:F5:86:2D:73','2018-08-21 12:10:43','On or near Gerald Road','Salford 017F','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.276978 53.497081)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A5:19:48:A8:6D:B5','2018-08-09 10:48:38','On or near Lanchester Drive','Bolton 021C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.446505 53.5719)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9F:06:B1:92:8D:9C','2018-08-02 21:23:19','On or near Penistone Avenue','Manchester 003C','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.194316 53.524291)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0F:86:78:E7:52:54','2018-08-15 01:09:11','On or near Tib Street','Manchester 054E','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.235328 53.483382)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:59:E9:76:45:AF','2018-08-28 08:48:14','On or near Primrose Bank','Salford 004D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.412526 53.520492)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6E:0C:C7:03:F2:26','2018-08-27 08:08:12','On or near Firgrove Avenue','Rochdale 012D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.128416 53.619152)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BC:0C:6B:3E:A1:04','2018-08-29 15:52:48','On or near Sandbrook Gardens','Wigan 018D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.716309 53.531452)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5D:B5:70:EA:99:02','2018-08-12 17:30:02','On or near Parking Area','Oldham 014B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.117381 53.543213)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A0:D7:68:B1:51:49','2018-08-23 17:27:24','On or near Whitworth Road','Rochdale 008A','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.155445 53.622877)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('04:4F:60:72:5B:C0','2018-08-28 03:35:19','On or near Third Avenue','Bolton 018D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.457395 53.57771)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:C6:7F:40:F2:7C','2018-08-03 08:45:04','On or near Walker''S Croft','Manchester 054C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.243605 53.486754)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B8:3C:A0:68:8D:64','2018-08-13 04:22:17','On or near Chapel Street','Salford 013E','Drugs','Offender given a drugs possession warning',ST_GeomFromText('POINT(-2.424399 53.504136)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('92:C4:99:96:83:28','2018-08-16 20:53:41','On or near Grangeforth Road','Salford 010D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.246623 53.510801)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('13:1B:15:A9:D6:6E','2018-08-24 13:56:45','On or near Eltham Avenue','Stockport 027E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.135632 53.389904)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:2B:D4:99:0A:46','2018-08-26 20:16:12','On or near Aldwyn Park Road','Tameside 014B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.133989 53.474317)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EF:1E:06:78:8F:94','2018-08-26 12:43:24','On or near Kingston Drive','Oldham 004D','Other crime','Under investigation',ST_GeomFromText('POINT(-2.13423 53.574294)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7D:3E:71:F6:E1:00','2018-08-29 06:01:12','On or near Union Road','Rochdale 003D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.120142 53.638836)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:21:7A:F3:98:76','2018-08-11 01:01:52','On or near Wellfield Close','Bury 013D','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.296432 53.573804)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9A:5A:09:51:C9:26','2018-08-22 11:02:38','On or near Whitefield Road','Stockport 009B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.119022 53.423961)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('94:F0:D5:68:D9:5D','2018-08-19 09:53:55','On or near Haddington Drive','Manchester 002D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.209787 53.526395)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7D:71:FC:3E:1F:72','2018-08-21 20:25:51','On or near Hillingdon Road','Bury 019B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.310138 53.542023)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E4:48:A2:CB:2D:2A','2018-08-26 08:30:33','On or near Roach Street','Rochdale 019E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.269071 53.590893)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:15:68:82:AB:12','2018-08-30 18:12:20','On or near Cloister Avenue','Wigan 027A','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.53204 53.516882)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8B:17:E1:E4:30:B5','2018-08-05 15:19:11','On or near Bagnall Close','Oldham 006B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.001079 53.552331)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('12:B4:C5:B3:A9:B4','2018-08-14 17:21:11','On or near Lancaster Drive','Bury 004D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.292709 53.62067)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:07:3A:D0:EC:EB','2018-08-21 01:45:12','On or near Barnfield Street','Tameside 025A','Other theft','Under investigation',ST_GeomFromText('POINT(-2.123517 53.458518)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:FE:96:04:E3:37','2018-08-12 11:19:36','On or near Bruntwood Avenue','Stockport 036D','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.237398 53.373826)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('70:F7:94:6F:A8:8F','2018-08-13 16:42:06','On or near Westwood Drive','Oldham 016D','Burglary','Under investigation',ST_GeomFromText('POINT(-2.129167 53.543578)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('30:D1:53:34:C7:37','2018-08-29 03:09:58','On or near Walker''S Road','Oldham 030D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.132279 53.520403)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('66:5B:66:AD:41:B1','2018-08-14 19:55:37','On or near Burlington Street','Tameside 013B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.103618 53.487587)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:17:E8:90:11:C0','2018-08-09 20:57:12','On or near Lynton Avenue','Oldham 031E','Burglary','Under investigation',ST_GeomFromText('POINT(-2.133715 53.521507)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('38:1A:B2:02:D1:EA','2018-08-11 16:40:22','On or near Great Cheetham Street West','Salford 017F','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.272393 53.499087)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:D8:9D:D0:35:3C','2018-08-27 10:57:49','On or near Elsworth Street','Manchester 056B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.241615 53.491972)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C8:87:05:11:D1:66','2018-08-24 10:30:59','On or near Victoria Street','Manchester 054C','Robbery','Under investigation',ST_GeomFromText('POINT(-2.244836 53.48597)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5A:F1:CF:AD:68:98','2018-08-30 01:37:32','On or near Boothcote','Tameside 019B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.122479 53.469224)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('72:C0:EC:BD:D3:4D','2018-08-20 05:39:48','On or near Midgley Crescent','Tameside 007D','Public order','Under investigation',ST_GeomFromText('POINT(-2.07349 53.495555)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:A8:D1:CA:DE:AD','2018-08-06 16:21:03','On or near Pedestrian Subway','Salford 020A','Possession of weapons','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.336579 53.483437)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:72:54:7E:86:C7','2018-08-13 01:47:37','On or near Back Piccadilly','Manchester 055B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.234819 53.481316)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D3:3F:BC:4F:C5:D8','2018-08-25 02:49:44','On or near Golborne Avenue','Manchester 035B','Drugs','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.242654 53.433697)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('79:5B:60:7E:12:47','2018-08-24 05:03:13','On or near Market Street','Tameside 013A','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.092138 53.489556)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('62:69:24:2F:B8:12','2018-08-11 17:38:36','On or near Shopping Area','Manchester 054C','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.238637 53.482225)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FB:B4:7D:AA:90:AE','2018-08-22 09:17:11','On or near Seedley View Road','Salford 023C','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.299566 53.487328)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('18:01:18:22:9A:6F','2018-08-07 22:57:56','On or near Frost Street','Oldham 035A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.120679 53.530428)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('47:80:98:04:84:A5','2018-08-22 10:10:36','On or near Highfield Range','Manchester 021E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.155742 53.45732)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CC:89:7F:C8:E3:6C','2018-08-30 04:24:09','On or near Nightclub','Manchester 054C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.246399 53.482641)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('69:2F:0E:F5:3C:AB','2018-08-15 10:10:16','On or near Crompton Street','Oldham 014A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.116193 53.550387)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('02:FE:CE:D5:61:64','2018-08-20 14:59:49','On or near Ogden Street','Oldham 019D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.081033 53.537868)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('12:9E:D2:38:FF:DE','2018-08-17 04:29:27','On or near Parking Area','Rochdale 013A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.11153 53.60806)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('37:28:D7:9F:5E:B9','2018-08-03 18:24:58','On or near Victoria Street','Manchester 054C','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.244836 53.48597)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('87:64:89:41:95:8C','2018-08-01 08:46:17','On or near Lower Edge Avenue','Oldham 014A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.115541 53.549165)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('75:4E:2C:09:69:06','2018-08-21 08:36:33','On or near Moorby Avenue','Manchester 041E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.208802 53.421357)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('41:2E:2E:CE:31:62','2018-08-08 07:55:20','On or near Lime Close','Salford 024C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.283934 53.489038)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:CF:83:1F:F7:F6','2018-08-27 14:36:45','On or near Lime Close','Salford 024C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.283934 53.489038)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('97:1A:94:4B:56:C6','2018-08-25 10:00:24','On or near Parking Area','Bolton 016E','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.430279 53.577038)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3B:DA:BE:53:C1:25','2018-08-18 11:21:01','On or near Friezland Close','Tameside 003B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.029239 53.5021)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('24:AD:CA:9F:E3:E0','2018-08-29 11:48:08','On or near Foleshill Avenue','Manchester 006B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.214314 53.508778)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:E2:DD:BD:58:1D','2018-08-24 22:03:40','On or near Gathill Close','Stockport 034B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.20232 53.371383)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('35:34:79:72:EB:48','2018-08-25 02:32:16','On or near Phipps Street','Salford 002D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.402356 53.529578)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('15:9F:8C:B4:76:F0','2018-08-04 21:12:10','On or near Range Lane','Oldham 006C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.037851 53.590606)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E2:89:2C:49:01:55','2018-08-09 01:29:33','On or near Kingswood Road','Manchester 036D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.210164 53.4381)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6E:6C:3E:EE:56:90','2018-08-08 23:02:39','On or near Salford Approach','Salford 022I','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.249141 53.485071)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C2:B5:5F:B5:42:98','2018-08-22 22:41:01','On or near Petrol Station','Rochdale 025C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.175808 53.538809)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('87:59:9E:7E:BA:35','2018-08-28 11:58:47','On or near Beresford Street','Rochdale 014E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.097154 53.600145)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A1:32:EB:F4:42:00','2018-08-04 11:51:17','On or near Danefield Road','Trafford 012E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.31302 53.431601)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1C:C6:05:04:38:E9','2018-08-08 20:02:05','On or near Shopping Area','Rochdale 010C','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.157029 53.61804)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BA:55:5C:C5:1A:91','2018-08-25 20:28:53','On or near Cathedral Road','Oldham 015D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.150633 53.553835)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('97:D6:4C:3C:2A:59','2018-08-12 04:30:29','On or near Ingleton Road','Stockport 018D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.177722 53.401543)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('10:89:81:16:75:4F','2018-08-08 01:06:53','On or near Parking Area','Manchester 055B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.238126 53.479835)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('50:34:85:5D:C5:6B','2018-08-23 19:21:12','On or near Sadler Court','Manchester 019D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.255379 53.464807)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2E:42:6A:BE:20:83','2018-08-21 13:54:13','On or near Poplar Avenue','Wigan 014A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.664629 53.538627)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AE:10:7F:53:AD:4A','2018-08-17 01:40:36','On or near Walsingham Avenue','Manchester 042B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.246101 53.423228)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2E:A6:70:6B:CD:ED','2018-08-10 23:49:57','On or near Colonial Road','Stockport 019A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.148734 53.39574)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('26:38:49:62:96:C8','2018-08-18 07:28:45','On or near Hancock Close','Manchester 025D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.227925 53.454517)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('96:AE:D4:32:0A:76','2018-08-02 13:45:23','On or near Camborne Street','Manchester 025D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.229339 53.45153)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4B:63:50:49:A6:D9','2018-08-19 07:48:15','On or near Petrol Station','Bury 015A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.319992 53.566095)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('74:B1:79:05:72:C7','2018-08-01 19:06:46','On or near Stockfield Road','Oldham 017B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.139319 53.542272)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('03:CA:45:7B:25:4B','2018-08-06 15:11:36','On or near Petrol Station','Wigan 006A','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.626565 53.549241)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('25:9A:5F:EF:4F:4B','2018-08-27 03:06:49','On or near Cheltenham Street','Rochdale 010B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.169429 53.603776)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DD:A2:E0:B8:BA:04','2018-08-17 09:35:26','On or near Seymour Street','Tameside 025D','Possession of weapons','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.122953 53.456352)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:A6:BC:64:17:B7','2018-08-25 10:47:01','On or near Heath Road','Stockport 023E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.155075 53.394303)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('83:02:44:04:34:B4','2018-08-06 20:49:06','On or near Trafalgar Road','Salford 021C','Shoplifting','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.32903 53.487466)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2B:50:14:6A:27:CB','2018-08-30 03:34:29','On or near Fontwell Close','Trafford 004C','Robbery','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.268109 53.453256)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('94:1C:34:B0:EB:29','2018-08-29 00:46:08','On or near Grundy Close','Bury 011C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.286478 53.586844)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:30:5F:A8:BC:4C','2018-08-29 21:35:57','On or near Clayton Street','Tameside 026C','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.108779 53.449283)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BC:CF:34:D5:46:C3','2018-08-09 13:31:00','On or near Nightclub','Manchester 055B','Drugs','Under investigation',ST_GeomFromText('POINT(-2.237689 53.477185)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CA:B1:FD:E4:24:4D','2018-08-22 07:25:05','On or near Hazel Grove','Oldham 017E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.137816 53.548791)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CD:41:76:A0:DD:56','2018-08-28 14:06:17','On or near Bermondsay Street','Salford 028B','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.279035 53.47741)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2E:BB:68:D6:D3:F6','2018-08-16 18:48:02','On or near Wilkinson Road','Stockport 014D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.162988 53.414615)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FB:78:F3:C9:2F:6A','2018-08-28 07:43:01','On or near Coppull Lane','Wigan 006A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.625534 53.554001)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('62:DB:F9:B4:0D:ED','2018-08-28 04:25:06','On or near Aldwyn Close','Bury 018D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.323012 53.554141)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:58:B9:D8:69:E3','2018-08-17 23:44:53','On or near Angouleme Way','Bury 011B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.296339 53.590766)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CA:B1:80:37:82:87','2018-08-11 10:35:07','On or near Crowley Lane','Oldham 012C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.078347 53.554408)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2E:76:34:F4:28:AB','2018-08-22 10:12:10','On or near County Road','Salford 001B','Public order','Under investigation',ST_GeomFromText('POINT(-2.420776 53.529577)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2F:A4:CE:30:F6:AE','2018-08-16 08:05:57','On or near Temple Square','Manchester 058B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.234942 53.500839)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('39:80:BC:EA:65:1E','2018-08-09 16:17:08','On or near Plymouth Street','Oldham 024A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.111291 53.528675)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D3:DB:39:31:65:AE','2018-08-26 01:32:28','On or near Fairfield Drive','Bury 007B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.261872 53.599286)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:77:70:91:E1:49','2018-08-15 14:00:53','On or near Princess Road','Wigan 036A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.632489 53.486964)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('79:92:FA:7B:52:3B','2018-08-06 22:25:19','On or near Lorne Way','Rochdale 019D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.244014 53.589275)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3F:67:93:40:22:D1','2018-08-14 07:19:21','On or near Benchill Drive','Manchester 050A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.264494 53.392465)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('43:CF:13:37:C4:62','2018-08-25 20:49:51','On or near Pearson Grove','Oldham 018C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.070003 53.538118)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('71:A7:59:11:96:72','2018-08-17 16:05:03','On or near Shopping Area','Trafford 011D','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.30942 53.445677)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D7:E0:52:38:66:27','2018-08-01 03:36:02','On or near Breightmet Fold','Bolton 013D','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.37944 53.583448)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:08:73:EC:04:D5','2018-08-04 07:48:18','On or near Parking Area','Manchester 055B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.236247 53.478023)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3A:46:C9:23:CF:BE','2018-08-21 09:29:20','On or near Shepton Close','Bolton 001A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.441729 53.614918)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('70:41:05:6B:7C:E7','2018-08-10 10:44:12','On or near Petrol Station','Stockport 027E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.137991 53.389263)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('29:BA:B8:E5:2E:9B','2018-08-28 22:51:48','On or near Goldsmith Road','Stockport 002A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.166844 53.446663)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('18:76:A8:73:6E:1F','2018-08-17 08:40:23','On or near Absalom Drive','Manchester 058A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.244721 53.510482)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('37:37:A9:BF:12:7F','2018-08-02 18:19:12','On or near Kiln Hill Close','Oldham 010C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.154776 53.555969)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A9:2E:C7:F7:DB:EF','2018-08-15 22:42:36','On or near Bus/Coach Station','Stockport 016D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.163461 53.408637)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('68:C1:F9:4B:39:A1','2018-08-18 07:11:27','On or near Taunton Avenue','Trafford 010C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.366761 53.44129)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:12:5A:31:BF:E5','2018-08-03 15:15:33','On or near Old Hall Street North','Bolton 016E','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.430705 53.578843)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('54:9C:D2:E6:CE:4B','2018-08-13 03:50:39','On or near St James Road','Stockport 008B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.187759 53.426417)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0F:9C:EB:3B:5D:82','2018-08-03 19:04:54','On or near St James Street','Manchester 055B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.241188 53.477843)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('59:01:4E:6E:C3:D8','2018-08-10 15:37:12','On or near Clare Street','Tameside 025A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.116745 53.460322)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:F9:1F:17:D9:82','2018-08-07 16:22:35','On or near Lilac Avenue','Rochdale 014E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.10374 53.598962)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5C:51:8B:55:7E:BD','2018-08-07 14:09:33','On or near Melville Street','Rochdale 017B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.173183 53.590612)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('83:B0:1D:4F:AF:11','2018-08-22 19:01:27','On or near Rochdale Road','Bury 008E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.292493 53.593894)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:94:DA:84:07:3B','2018-08-10 10:01:58','On or near Highfield Road','Stockport 035C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.105244 53.377495)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8C:2D:16:B8:9F:00','2018-08-19 10:10:00','On or near Sports/Recreation Area','Tameside 005D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.107341 53.499664)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9F:4E:E8:3F:7B:D9','2018-08-28 07:33:59','On or near Lyndale Avenue','Stockport 002D','Burglary','Under investigation',ST_GeomFromText('POINT(-2.159054 53.452894)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('71:24:E1:ED:F3:28','2018-08-25 21:16:02','On or near Shopping Area','Bolton 016E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.429792 53.581165)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5C:12:18:52:8B:59','2018-08-18 12:33:01','On or near Shopping Area','Manchester 054C','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238637 53.482225)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BE:35:85:6B:F2:6F','2018-08-08 12:42:53','On or near Harrington Street','Manchester 021D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.166317 53.4618)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('04:F4:03:5C:35:2F','2018-08-14 22:30:54','On or near Reeves Street','Wigan 030B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.516898 53.501983)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:84:03:E4:23:DF','2018-08-28 08:25:51','On or near Park/Open Space','Manchester 060B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.25716 53.475338)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:83:6B:81:56:F8','2018-08-21 14:43:28','On or near Jasmine Road','Wigan 010B','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.668622 53.540151)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('25:38:44:31:27:01','2018-08-28 20:22:04','On or near Poplar Street','Wigan 039B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.594038 53.481157)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F3:F2:9F:42:19:33','2018-08-26 10:02:10','On or near Back Eastbank Street','Bolton 005E','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.429974 53.594575)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6C:72:6E:2F:37:98','2018-08-18 01:37:40','On or near Radley Street','Manchester 024C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.248508 53.454107)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:29:D0:56:BA:59','2018-08-08 11:01:42','On or near Cyril Street','Bolton 022E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.417973 53.568147)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5D:59:A9:F2:C8:BC','2018-08-01 07:12:48','On or near Ashton Lane','Trafford 012C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.333372 53.426162)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C4:DD:7B:60:E1:D0','2018-08-25 04:19:12','On or near St Luke''S Drive','Wigan 018E','Other crime','Under investigation',ST_GeomFromText('POINT(-2.710344 53.528369)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('97:6D:F1:F0:09:2B','2018-08-25 19:57:47','On or near Supermarket','Oldham 014B','Shoplifting','Formal action is not in the public interest',ST_GeomFromText('POINT(-2.114586 53.542218)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DD:7D:2F:D3:66:A1','2018-08-04 22:13:34','On or near Sickle Street','Manchester 054C','Public order','Under investigation',ST_GeomFromText('POINT(-2.240549 53.481916)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:67:7E:9F:07:02','2018-08-03 19:22:59','On or near Sheriff Street','Bolton 017C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.412859 53.588802)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F7:71:DE:14:83:CA','2018-08-08 19:14:21','On or near Welland Road','Oldham 001B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.102328 53.583737)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BB:5F:6F:1D:BA:43','2018-08-09 08:40:12','On or near Stockholm Street','Manchester 015A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.187315 53.486335)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B6:63:17:A0:4D:79','2018-08-27 04:59:24','On or near Highwood Close','Bolton 013A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.384639 53.588663)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AE:31:5B:07:4B:9D','2018-08-04 16:59:57','On or near Belgravia Gardens','Manchester 037C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.286069 53.441313)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('22:E9:22:3B:B9:2F','2018-08-19 06:20:19','On or near Aldred Close','Manchester 056D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.233967 53.504508)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('59:42:34:7A:D5:8C','2018-08-26 19:35:18','On or near Theatre/Concert Hall','Manchester 060A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.244594 53.477944)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9C:CD:15:36:C7:48','2018-08-27 15:31:36','On or near Prison','Manchester 058C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.246337 53.492717)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('79:33:5D:21:E7:4A','2018-08-16 15:50:31','On or near Hapton Avenue','Trafford 011B','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.303113 53.445918)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5E:E5:DC:3F:44:87','2018-08-13 05:09:33','On or near Nightclub','Manchester 054C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.242372 53.47927)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AD:4F:30:43:E6:40','2018-08-01 11:50:00','On or near Supermarket','Rochdale 007F','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.180828 53.626167)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7E:C8:0E:39:B8:BB','2018-08-20 01:11:00','On or near Piccadilly','Manchester 055B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EB:E5:74:30:B7:CB','2018-08-17 00:07:13','On or near Hunters Close','Stockport 012E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.108115 53.419055)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D5:E8:28:6C:95:29','2018-08-29 00:09:19','On or near Shopping Area','Wigan 008C','Shoplifting','Awaiting court outcome',ST_GeomFromText('POINT(-2.628847 53.54638)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('36:36:99:25:8F:7A','2018-08-02 04:45:46','On or near Warrington Lane','Wigan 009C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.625256 53.545401)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3C:B0:A4:87:0E:DA','2018-08-09 01:50:28','On or near Back Tonge Moor Road','Bolton 010D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.412761 53.592676)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:C5:65:24:00:3A','2018-08-30 06:49:55','On or near Lambert Street','Tameside 013E','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.112064 53.478609)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A8:70:CA:71:66:12','2018-08-20 19:23:20','On or near Laithwaite Road','Wigan 010A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.663753 53.543396)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C3:81:78:CC:A5:67','2018-08-11 13:01:02','On or near Argosy Drive','Salford 025D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.380908 53.472778)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A2:5E:67:A5:94:B9','2018-08-10 05:56:40','On or near Parking Area','Salford 006A','Other crime','Awaiting court outcome',ST_GeomFromText('POINT(-2.346532 53.515802)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('43:C1:0C:D8:03:67','2018-08-12 16:24:53','On or near Sunningdale Avenue','Bury 018A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.354266 53.567814)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AA:8B:CB:ED:1B:41','2018-08-12 09:49:15','On or near Lynthorpe Road','Manchester 003D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.172182 53.522895)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D4:5A:D1:90:73:3D','2018-08-14 16:19:01','On or near Wellington Road','Oldham 020C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.008744 53.539621)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EC:2D:E6:BC:B3:08','2018-08-06 16:39:53','On or near Gardner Street','Salford 024C','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.283093 53.491755)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D2:24:46:AD:51:BD','2018-08-06 15:52:35','On or near Lowbrook Avenue','Manchester 003F','Violence and sexual offences','Local resolution',ST_GeomFromText('POINT(-2.183198 53.524048)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C6:63:F8:33:03:E0','2018-08-22 04:08:14','On or near Chancery Lane','Bolton 022E','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.427455 53.577111)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('67:D4:01:EC:A8:EE','2018-08-04 07:15:36','On or near Asby Close','Rochdale 022E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.219125 53.555725)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5E:78:4B:8A:E8:FB','2018-08-28 02:09:53','On or near Hamilcar Avenue','Salford 026A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.346943 53.482984)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6E:05:80:2F:1C:85','2018-08-20 13:29:37','On or near Aberdeen Street','Manchester 019B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.229329 53.460887)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:B4:90:E5:49:22','2018-08-07 20:15:47','On or near Trafford Boulevard','Trafford 002E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.354175 53.468375)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4F:C8:EF:6E:77:80','2018-08-14 00:03:19','On or near Sarah Street','Oldham 030D','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.125892 53.522872)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8C:1E:DC:1F:DB:26','2018-08-15 17:36:26','On or near South Avenue','Wigan 033E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.566143 53.494578)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B3:8F:4D:0D:24:52','2018-08-29 02:26:59','On or near Flatley Close','Manchester 019C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.240679 53.464972)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('66:CB:27:C7:80:E8','2018-08-30 01:52:05','On or near Shopping Area','Salford 002D','Robbery','Under investigation',ST_GeomFromText('POINT(-2.401453 53.52497)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5A:31:44:28:7C:C6','2018-08-10 03:51:37','On or near Bridgeman Street','Bolton 023B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.444758 53.563727)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:DA:34:BB:03:19','2018-08-23 13:25:15','On or near Brideoake Street','Wigan 034E','Other theft','Under investigation',ST_GeomFromText('POINT(-2.503493 53.494157)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('87:05:60:74:05:8D','2018-08-17 15:45:22','On or near Morrowfield Avenue','Manchester 058B','Vehicle crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.243775 53.505846)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4E:A7:05:7D:AA:96','2018-08-20 11:37:51','On or near Shopping Area','Manchester 054C','Drugs','Under investigation',ST_GeomFromText('POINT(-2.238637 53.482225)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:06:2E:F2:C4:F1','2018-08-30 04:21:59','On or near Glazedale Avenue','Oldham 004A','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.13178 53.568599)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E4:CA:1D:69:EB:0A','2018-08-09 11:51:37','On or near Laxey Close','Oldham 017C','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.141696 53.535501)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:16:FC:CC:8F:9E','2018-08-25 22:37:43','On or near Parking Area','Stockport 030E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.189727 53.378397)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('95:02:AF:A8:BB:66','2018-08-02 05:31:37','On or near Haigh View','Wigan 006A','Other theft','Awaiting court outcome',ST_GeomFromText('POINT(-2.625868 53.556193)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1E:5B:A3:74:35:FB','2018-08-17 07:18:21','On or near Dryburgh Avenue','Bolton 005A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.440645 53.599327)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8C:29:B9:1F:BE:A0','2018-08-06 14:01:50','On or near Great Cheetham Street West','Salford 017F','Public order','Under investigation',ST_GeomFromText('POINT(-2.272393 53.499087)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D2:B7:E4:26:10:FE','2018-08-01 15:01:29','On or near Green Hall Close','Wigan 022A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.473554 53.531654)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9A:AF:0A:C7:EB:00','2018-08-22 06:18:26','On or near Wildbrook Close','Salford 004B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.431652 53.526545)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:07:DB:42:C9:2B','2018-08-10 15:49:38','On or near Ivygreen Drive','Oldham 018B','Public order','Under investigation',ST_GeomFromText('POINT(-2.069009 53.539044)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:4C:38:C2:12:74','2018-08-20 08:48:02','On or near Old Mill Street','Manchester 055E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.224524 53.480698)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:5E:6A:0B:D7:C0','2018-08-30 02:42:10','On or near Redruth Street','Manchester 025E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.229091 53.450236)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AC:AE:1E:D2:21:21','2018-08-26 20:55:30','On or near Lower Broughton Road','Salford 016B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.270208 53.499173)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('19:43:43:42:8F:5A','2018-08-15 12:07:36','On or near Jackson Street','Trafford 014D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.304707 53.424593)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('50:CD:05:CE:AB:15','2018-08-09 22:19:02','On or near Princess Avenue','Tameside 025B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.117437 53.454659)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:A4:52:3B:45:B4','2018-08-04 23:51:33','On or near Fern Street','Bolton 021C','Public order','Offender given a caution',ST_GeomFromText('POINT(-2.450139 53.572803)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('04:80:F0:0F:C2:85','2018-08-03 20:53:39','On or near William Lister Close','Manchester 012D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.173783 53.494067)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7E:3C:7C:E8:F9:B0','2018-08-18 07:13:22','On or near Ellesmere Road','Stockport 018C','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.194444 53.40078)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:6D:A7:A4:B3:F8','2018-08-09 06:45:46','On or near Bellingham Mount','Wigan 006D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.627842 53.558025)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BF:C9:93:29:C8:6A','2018-08-29 11:25:46','On or near Park/Open Space','Manchester 060A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.245258 53.475524)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:91:D5:FF:E2:DD','2018-08-20 04:42:26','On or near Auden Close','Manchester 012B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.171009 53.482503)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6E:D0:AE:36:9C:67','2018-08-13 12:23:19','On or near Parking Area','Stockport 014B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.15656 53.413572)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D0:68:58:0C:16:38','2018-08-16 10:54:46','On or near Knoll Street','Rochdale 017A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.182721 53.595398)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DC:29:EF:E2:1C:D1','2018-08-15 11:29:21','On or near Morningside Close','Rochdale 012E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.143387 53.611675)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2A:0A:77:3D:07:BF','2018-08-25 06:45:59','On or near Denmark Street','Oldham 016B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.131315 53.550074)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9D:9D:75:ED:BE:FA','2018-08-28 16:55:06','On or near Lloyd Street','Manchester 060A','Public order','Awaiting court outcome',ST_GeomFromText('POINT(-2.245535 53.479002)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8C:44:74:2C:10:F1','2018-08-04 16:32:54','On or near Bold Street','Salford 005A','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.333655 53.519893)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:54:6D:A2:EB:05','2018-08-18 17:01:48','On or near Spotland Road','Rochdale 010G','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.170387 53.620367)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7D:77:2E:C6:2F:7A','2018-08-06 16:56:21','On or near Bishopton Close','Manchester 027C','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.178324 53.444723)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6B:A9:C2:64:9A:78','2018-08-20 08:20:22','On or near Kingsley Road','Oldham 022E','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.090613 53.537663)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0F:EE:77:CB:DE:D8','2018-08-20 01:22:18','On or near Parsons Way','Manchester 009D','Other theft','Under investigation',ST_GeomFromText('POINT(-2.205347 53.509765)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('66:F3:53:12:1F:96','2018-08-05 02:49:10','On or near Wrights Bank North','Stockport 024D','Other crime','Under investigation',ST_GeomFromText('POINT(-2.121311 53.39267)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D5:23:C4:2A:1B:7F','2018-08-01 16:40:55','On or near Ash Road','Tameside 024E','Burglary','Under investigation',ST_GeomFromText('POINT(-2.153823 53.455453)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('54:92:D3:B3:63:C4','2018-08-27 01:28:25','On or near Brotherton Close','Manchester 059C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.262049 53.469332)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D9:E1:6B:BE:48:5D','2018-08-07 23:24:55','On or near Harrow Avenue','Oldham 035B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.121224 53.525843)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AF:83:D3:35:1A:7F','2018-08-26 20:03:54','On or near Lime Green','Oldham 030A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.125658 53.515448)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8D:78:C0:CB:3E:31','2018-08-19 03:06:06','On or near Supermarket','Manchester 048E','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.296622 53.4003)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DF:5C:23:B7:42:0E','2018-08-02 19:39:33','On or near Miller Street','Manchester 054D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237895 53.487)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:1E:D4:14:9A:D7','2018-08-16 14:02:17','On or near Denmark Road','Manchester 019B','Bicycle theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.235532 53.460398)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DB:99:B7:49:39:87','2018-08-24 05:40:04','On or near Alveley Avenue','Manchester 040E','Robbery','Under investigation',ST_GeomFromText('POINT(-2.220444 53.426118)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('07:B9:1C:29:29:EF','2018-08-18 13:43:21','On or near Dale Street','Bolton 035C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.520183 53.535037)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('60:9F:CB:1B:52:79','2018-08-03 06:18:32','On or near Nigher Moss Avenue','Rochdale 012D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.132389 53.613315)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D3:BF:B1:8F:E5:6F','2018-08-24 11:31:01','On or near Reyner Street','Manchester 055B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.239533 53.478179)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8D:EB:29:EF:74:63','2018-08-28 06:10:46','On or near Borrowdale Drive','Bury 017E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.286447 53.559942)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:71:BF:10:DA:CD','2018-08-29 04:59:43','On or near Eton Way','Wigan 018B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.701075 53.547182)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EC:65:E4:DC:69:9D','2018-08-07 02:24:03','On or near Adshead Close','Manchester 050C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.272922 53.381903)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7D:EC:2D:EC:3B:18','2018-08-01 20:15:48','On or near Parking Area','Manchester 055B','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236247 53.478023)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F2:13:EA:7B:AF:B0','2018-08-03 05:24:18','On or near Hawthorne Street','Bolton 021A','Violence and sexual offences','Offender given a caution',ST_GeomFromText('POINT(-2.454286 53.567988)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AA:C0:F9:26:FE:A5','2018-08-29 08:05:28','On or near Jevington Walk','Manchester 018D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.220324 53.467025)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D4:FE:4F:0E:14:26','2018-08-01 11:46:48','On or near Quebec Street','Tameside 025A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.114907 53.460261)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('05:AC:1D:8B:50:4D','2018-08-05 03:09:05','On or near Bury New Road','Salford 016F','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.261636 53.507426)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('64:DE:4C:2D:DF:57','2018-08-11 04:53:18','On or near Castle Hey Close','Bury 017D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.271337 53.562566)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:57:A6:F6:B3:12','2018-08-25 22:31:08','On or near Abbotside Close','Manchester 028C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.263858 53.454964)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('72:54:93:8C:80:33','2018-08-23 02:59:21','On or near Bennetts Lane','Bolton 008E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.451735 53.593569)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EA:BF:E8:EA:E9:1D','2018-08-12 23:38:17','On or near Bonscale Crescent','Rochdale 022A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.207793 53.562693)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('29:AC:F3:93:53:BD','2018-08-17 16:45:33','On or near Eafield Road','Rochdale 004B','Public order','Under investigation',ST_GeomFromText('POINT(-2.133955 53.625842)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:A1:7C:3D:90:B0','2018-08-21 02:52:57','On or near Hollin Bank','Stockport 002E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.173809 53.434096)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:B1:A7:08:7C:AC','2018-08-29 16:15:01','On or near Tomlinson Street','Manchester 003E','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.178144 53.523902)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('54:E1:CB:32:A2:F6','2018-08-27 01:24:28','On or near Tiverton Close','Bury 012A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.356162 53.570639)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C2:E5:87:26:1D:9A','2018-08-18 18:59:44','On or near Summer Street','Rochdale 010C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.150894 53.614497)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A3:63:6F:9B:BF:85','2018-08-08 17:38:29','On or near Parking Area','Oldham 017E','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.141776 53.545955)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9E:E5:80:5A:8A:F2','2018-08-21 16:07:20','On or near Cole Street','Manchester 007B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.200764 53.513053)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4F:26:42:50:43:45','2018-08-24 17:42:09','On or near Ashwood Avenue','Bury 001B','Other crime','Formal action is not in the public interest',ST_GeomFromText('POINT(-2.308322 53.65119)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7A:85:41:57:ED:52','2018-08-16 17:57:11','On or near Ivy Road','Bury 009B','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.319001 53.590779)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:0A:CB:2A:BE:BD','2018-08-07 11:36:57','On or near Park/Open Space','Oldham 003B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.07468 53.580405)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('17:AE:1A:55:7A:18','2018-08-19 23:59:46','On or near Blackford Road','Stockport 006D','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.182466 53.434641)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:6F:8B:FB:27:02','2018-08-24 08:43:29','On or near Heysham Road','Wigan 011D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.68404 53.54276)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('82:E1:ED:37:7F:37','2018-08-05 17:57:42','On or near Mark Street','Oldham 016A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.123707 53.544411)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3B:9A:D2:AD:A5:83','2018-08-14 20:09:04','On or near Warren Road','Stockport 030E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.189182 53.377634)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:B7:8C:D1:D0:D0','2018-08-14 14:01:03','On or near Shopping Area','Bolton 016F','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.425676 53.584865)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:10:E1:BE:FC:1E','2018-08-29 08:17:57','On or near Buxton Road','Stockport 027B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.131849 53.386789)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D6:2B:DD:1F:2E:E8','2018-08-07 20:39:18','On or near Layton Street','Manchester 013C','Public order','Awaiting court outcome',ST_GeomFromText('POINT(-2.214499 53.485849)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F6:61:AF:5C:23:3B','2018-08-07 10:16:00','On or near Parking Area','Manchester 053D','Possession of weapons','Formal action is not in the public interest',ST_GeomFromText('POINT(-2.273249 53.362505)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2C:4F:C8:5C:19:EE','2018-08-19 16:27:30','On or near Temperance Street','Manchester 018D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.218352 53.473132)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2E:6F:1B:67:00:B2','2018-08-02 19:23:29','On or near Holland Street','Rochdale 003D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.124097 53.636073)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('74:A8:79:97:DB:FA','2018-08-06 11:09:59','On or near Omer Avenue','Manchester 026A','Drugs','Offender given a drugs possession warning',ST_GeomFromText('POINT(-2.20444 53.449912)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:86:A5:64:28:F7','2018-08-29 13:43:37','On or near Supermarket','Rochdale 004B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.132929 53.621664)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F6:B6:78:26:EA:CC','2018-08-13 20:34:54','On or near Allsopp Street','Bolton 016D','Burglary','Under investigation',ST_GeomFromText('POINT(-2.428047 53.574385)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9D:37:44:65:AA:F4','2018-08-21 01:00:24','On or near Bank Street','Manchester 011B','Possession of weapons','Under investigation',ST_GeomFromText('POINT(-2.190259 53.490752)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DC:8F:CC:14:32:B2','2018-08-16 01:51:59','On or near Walsingham Avenue','Manchester 042B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.246101 53.423228)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B6:65:BA:E3:BA:16','2018-08-02 11:22:44','On or near Bagslate Moor Lane','Rochdale 007D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.198711 53.622112)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D7:32:4D:EB:F8:CA','2018-08-02 17:19:40','On or near Supermarket','Stockport 015B','Shoplifting','Under investigation',ST_GeomFromText('POINT(-2.140254 53.405359)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:9D:F0:5D:1B:D8','2018-08-28 21:25:52','On or near Spruce Street','Rochdale 012E','Other theft','Under investigation',ST_GeomFromText('POINT(-2.144299 53.613202)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:C4:3F:BB:D4:7B','2018-08-26 18:53:45','On or near Brookbank Close','Rochdale 025A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.18905 53.54428)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EE:D0:D2:8E:9E:8A','2018-08-23 03:51:40','On or near Stockport Road West','Stockport 009B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.117873 53.421976)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('43:10:84:17:C1:A2','2018-08-11 05:19:47','On or near Polygon Street','Manchester 018D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.223291 53.46968)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:6C:9A:2D:F1:F0','2018-08-05 09:59:12','On or near Overton Avenue','Manchester 049C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.261476 53.390773)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AA:67:D9:71:2E:6A','2018-08-16 03:33:47','On or near A6','Manchester 018D','Drugs','Under investigation',ST_GeomFromText('POINT(-2.222962 53.470112)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('67:1D:FC:4F:F9:AC','2018-08-09 22:34:58','On or near Kestrel Close','Stockport 029D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.058517 53.382506)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3A:F4:69:45:68:28','2018-08-10 16:28:08','On or near Back Turner Street','Manchester 054E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237502 53.48407)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:F8:63:26:FC:CF','2018-08-27 16:52:36','On or near Victoria Road','Tameside 017A','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.087928 53.465336)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:E3:4C:83:A8:AA','2018-08-15 07:09:31','On or near Withins Street','Bury 015B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.31361 53.566732)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('13:87:B3:EF:96:36','2018-08-26 16:15:36','On or near Wellington Street','Oldham 017E','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.143421 53.546051)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('02:E2:64:B4:AA:A5','2018-08-20 12:31:56','On or near Supermarket','Bolton 018B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.465415 53.566696)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('04:1A:D8:B6:F3:87','2018-08-26 08:40:14','On or near Wallbrook Avenue','Wigan 018E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.712841 53.513577)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B5:1E:85:69:71:02','2018-08-24 06:30:28','On or near Strong Street','Salford 022K','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.255435 53.494253)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('09:67:7E:44:F4:BF','2018-08-16 17:26:24','On or near Hall Street','Manchester 060A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.243518 53.476777)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BD:D0:1C:15:36:D8','2018-08-26 07:10:04','On or near Primrose Drive','Bury 007A','Other theft','Under investigation',ST_GeomFromText('POINT(-2.259248 53.60029)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:E1:1F:26:96:A3','2018-08-30 15:48:29','On or near Claremont Street','Oldham 032A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.156117 53.510325)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('74:24:E4:7C:1D:1B','2018-08-13 05:18:43','On or near Whitwell Way','Manchester 023E','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.176603 53.461732)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1B:96:09:F6:0F:1B','2018-08-30 06:05:38','On or near Belgrave Avenue','Oldham 024A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.10494 53.528654)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('61:D1:33:BA:77:12','2018-08-23 07:06:20','On or near Magdala Street','Oldham 014B','Drugs','Under investigation',ST_GeomFromText('POINT(-2.118786 53.549395)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A9:A4:05:C8:5A:DF','2018-08-26 13:46:24','On or near Church Avenue','Tameside 029E','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.100021 53.438495)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7D:83:3B:CA:C7:9C','2018-08-21 09:59:51','On or near Shortland Place','Wigan 026E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.557999 53.512566)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:CB:8B:FF:96:9A','2018-08-21 18:43:48','On or near Soap Street','Manchester 054D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238001 53.48451)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D2:B4:F4:53:40:9A','2018-08-27 02:41:26','On or near Heathfield Drive','Salford 015D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.325972 53.505335)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('24:12:09:C4:6D:A7','2018-08-22 17:24:24','On or near Kings Road','Stockport 030D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.196494 53.38235)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:54:6B:4B:44:0B','2018-08-15 14:09:49','On or near Richard Street','Rochdale 010C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.153182 53.611744)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CA:FF:53:8D:C1:F3','2018-08-19 04:50:04','On or near Waltham Gardens','Bury 016C','Criminal damage and arson','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.343113 53.568466)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4E:97:67:DE:81:29','2018-08-12 10:48:58','On or near Circular Road','Tameside 029C','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.113409 53.446501)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('71:B4:E9:D6:5C:47','2018-08-30 04:47:38','On or near Laurel Street','Wigan 015B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.657394 53.543952)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('72:31:F1:3B:3E:F5','2018-08-19 05:59:40','On or near Fairbourne Road','Manchester 027C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.178836 53.444794)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:4E:2B:B4:2F:53','2018-08-14 10:10:04','On or near Chiseldon Avenue','Manchester 052D','Violence and sexual offences','Formal action is not in the public interest',ST_GeomFromText('POINT(-2.251051 53.377205)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B8:27:6B:D6:6D:A0','2018-08-12 09:54:59','On or near Durham Drive','Bury 011C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.285407 53.584815)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7C:48:15:3B:19:BE','2018-08-05 01:47:39','On or near Ribble Road','Oldham 027D','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.13306 53.524195)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FC:79:DF:41:D9:DD','2018-08-09 03:08:49','On or near Elsdon Drive','Manchester 017E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.169316 53.466236)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2D:89:FA:94:A2:29','2018-08-15 01:24:36','On or near Bolton Road','Bolton 034C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.381588 53.541834)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7A:61:10:35:4F:AE','2018-08-17 15:14:39','On or near Surma Close','Rochdale 012B','Other crime','Under investigation',ST_GeomFromText('POINT(-2.142621 53.608764)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('51:6F:8C:4C:11:29','2018-08-01 11:52:35','On or near Hollin Hey Road','Bolton 012B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.47742 53.594926)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5E:9D:4A:F2:84:D0','2018-08-16 12:27:40','On or near Goddard Street','Oldham 024A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.110427 53.532865)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('01:E2:61:72:B8:D7','2018-08-12 02:16:51','On or near Hague Street','Tameside 007A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.084292 53.492456)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8C:18:43:42:08:DC','2018-08-01 03:28:13','On or near Supermarket','Oldham 014D','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.107543 53.543932)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D4:29:B2:4B:5B:92','2018-08-02 03:11:56','On or near Nightclub','Wigan 008C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.630403 53.544421)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:93:F7:CD:3E:A3','2018-08-26 08:14:59','On or near The Quays','Salford 028E','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.290117 53.474148)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:68:34:D7:3E:4A','2018-08-30 09:19:41','On or near Montrose Avenue','Tameside 018C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.08577 53.47055)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A1:FC:51:94:4D:6B','2018-08-03 09:39:55','On or near Moss Bank Way','Bolton 012A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.477669 53.591635)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7C:A9:89:D9:3A:4A','2018-08-21 13:51:53','On or near Fulford Street','Trafford 001F','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.269385 53.459707)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('02:CE:63:B9:A6:35','2018-08-09 08:39:34','On or near Parking Area','Manchester 026C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.226456 53.458762)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('26:FE:6C:DF:07:7F','2018-08-02 08:54:16','On or near Shopping Area','Wigan 008C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.628847 53.54638)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('47:02:57:10:AC:1C','2018-08-17 08:28:46','On or near Shillingford Road','Oldham 028A','Public order','Under investigation',ST_GeomFromText('POINT(-2.146467 53.532116)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('77:2B:48:26:4C:5A','2018-08-06 16:25:32','On or near Morton Street','Oldham 032C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.176195 53.504841)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:67:9E:64:B2:B3','2018-08-04 05:28:53','On or near Tandlewood Park','Oldham 004D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.138321 53.573957)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A3:7F:8C:50:E4:8C','2018-08-15 05:37:48','On or near Pedestrian Subway','Bury 007E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.274857 53.604749)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('04:85:BC:DF:7A:6F','2018-08-04 03:10:54','On or near Sandfield Road','Rochdale 012B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.142327 53.606742)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('ED:C4:90:F3:74:89','2018-08-30 00:04:56','On or near North Street','Rochdale 021E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.191789 53.555898)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('97:47:3F:31:36:1B','2018-08-22 04:28:40','On or near Dorset Avenue','Stockport 026A','Robbery','Under investigation',ST_GeomFromText('POINT(-2.176784 53.389329)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CD:9D:6E:00:03:41','2018-08-06 19:47:22','On or near Grangewood Drive','Manchester 009B','Public order','Under investigation',ST_GeomFromText('POINT(-2.216502 53.506123)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4A:63:DC:62:A9:86','2018-08-11 18:24:27','On or near Sorton Street','Manchester 057B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237136 53.47262)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:6B:30:40:0F:03','2018-08-29 14:02:57','On or near Fairfax Avenue','Trafford 023C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.325285 53.395928)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:CB:EC:C5:F7:62','2018-08-07 05:00:31','On or near Parking Area','Salford 024C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.286957 53.490289)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('34:1E:2D:D7:D3:E6','2018-08-06 05:01:43','On or near Petrol Station','Bolton 032C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.401335 53.549158)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7C:63:D4:88:BD:52','2018-08-14 00:36:02','On or near Piercy Street','Oldham 034A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.159919 53.506751)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E4:C1:C1:46:90:78','2018-08-25 20:40:57','On or near Newport Street','Salford 023B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.296732 53.482958)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2C:79:44:C4:FA:22','2018-08-04 10:55:58','On or near Clock Street','Oldham 031D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.143038 53.521882)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FB:D8:07:3C:E2:90','2018-08-04 03:12:31','On or near Tarnrigg Close','Wigan 021D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.662158 53.523396)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('66:16:92:DD:86:F6','2018-08-16 02:18:05','On or near Pentland Avenue','Manchester 003E','Public order','Under investigation',ST_GeomFromText('POINT(-2.178999 53.522769)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A3:A5:E9:9E:64:00','2018-08-11 03:15:58','On or near Deanway','Manchester 007D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.194841 53.510645)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C3:92:99:41:0C:71','2018-08-24 06:48:29','On or near Parking Area','Manchester 020A','Drugs','Awaiting court outcome',ST_GeomFromText('POINT(-2.193192 53.466281)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('98:23:5E:23:55:02','2018-08-24 03:39:03','On or near Division Street','Rochdale 004A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.141948 53.628692)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('84:BB:8A:EC:81:47','2018-08-26 04:04:40','On or near Short Avenue','Tameside 011B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.154191 53.478104)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9E:40:1C:43:2C:CD','2018-08-05 06:25:56','On or near Fox Street','Rochdale 013B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.116544 53.612145)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('78:12:11:57:8B:47','2018-08-02 00:50:20','On or near Gregory Street','Bolton 035D','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.558079 53.542731)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B4:A5:E0:C5:80:A6','2018-08-18 02:29:06','On or near Dutton Street','Manchester 058C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.244287 53.490088)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0A:5B:A1:67:BA:33','2018-08-28 01:28:11','On or near Barlow Park Avenue','Bolton 005C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.444988 53.604264)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C5:E8:96:96:7A:45','2018-08-19 07:24:33','On or near Theatre/Concert Hall','Rochdale 015D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.156774 53.61049)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:B5:1D:07:D5:99','2018-08-05 08:38:41','On or near Skerry Close','Manchester 018D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.228523 53.470515)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7B:7A:65:E9:D3:7A','2018-08-11 11:37:15','On or near Wood Terrace','Bury 012D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.353222 53.587447)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('69:AF:EF:6D:26:60','2018-08-06 19:35:15','On or near Fletcher Close','Oldham 016D','Possession of weapons','Under investigation',ST_GeomFromText('POINT(-2.1262 53.540264)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AC:37:D6:DE:16:A6','2018-08-21 13:40:24','On or near Whittle Street','Manchester 054E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.234383 53.484157)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E1:0E:03:6B:2D:04','2018-08-12 03:13:14','On or near Hoylake Close','Wigan 037C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.532018 53.484973)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CE:3C:F1:C6:27:76','2018-08-26 03:01:03','On or near Church Lane','Oldham 014D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.112066 53.542346)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:2C:C0:60:D4:A3','2018-08-27 13:30:14','On or near Liza Street','Wigan 027A','Possession of weapons','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.525113 53.511574)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6B:E0:60:71:9B:29','2018-08-26 14:07:23','On or near James Square','Wigan 001C','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.667297 53.590206)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:C6:BD:76:D7:29','2018-08-09 22:49:12','On or near Paley Street','Bolton 022E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.425182 53.579294)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0D:BC:15:9E:38:79','2018-08-27 23:47:48','On or near Parking Area','Bolton 021B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.435024 53.574378)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('28:98:C5:62:1D:B7','2018-08-21 01:10:11','On or near Catherine Street','Salford 019B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.370292 53.490716)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DD:E2:76:55:A6:41','2018-08-01 15:07:46','On or near Harringay Road','Manchester 011A','Public order','Under investigation',ST_GeomFromText('POINT(-2.18375 53.498358)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0A:B3:6B:D7:9C:A4','2018-08-23 23:21:58','On or near Dunton Green','Stockport 004B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.138507 53.432372)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BA:0A:D7:84:45:19','2018-08-11 14:03:24','On or near Petrol Station','Bolton 017A','Public order','Under investigation',ST_GeomFromText('POINT(-2.41353 53.578544)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:A5:DE:AA:DD:F4','2018-08-14 00:39:11','On or near Prison','Manchester 058C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.246337 53.492717)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6F:C3:67:27:FD:4C','2018-08-28 19:58:52','On or near Supermarket','Oldham 012E','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.084056 53.548121)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DB:15:43:84:64:E2','2018-08-08 03:18:57','On or near Firwood Avenue','Bolton 033C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.40215 53.541263)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('34:A3:A9:3F:F3:B4','2018-08-25 04:52:15','On or near Lilian Drive','Wigan 005C','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.64306 53.560057)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CC:ED:A3:A4:42:99','2018-08-09 05:02:21','On or near Newby Road','Stockport 031D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.129447 53.378127)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C3:68:1A:7D:CD:68','2018-08-27 13:11:35','On or near Bamford Grove','Tameside 004A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.064245 53.502329)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F8:88:82:D9:14:53','2018-08-21 19:59:38','On or near Helen Street','Bolton 032D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.398281 53.545375)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:E7:4C:95:80:29','2018-08-02 00:43:14','On or near Cornbrook Grove','Trafford 001D','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.261206 53.46439)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DC:27:49:11:E3:60','2018-08-14 18:36:04','On or near Park Avenue','Oldham 010D','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.14322 53.553404)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C0:D3:B8:C0:5E:E8','2018-08-08 18:03:01','On or near Park/Open Space','Manchester 060A','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.245258 53.475524)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:FF:58:87:AE:16','2018-08-16 01:26:08','On or near Hawkshead Close','Tameside 008B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.062289 53.494276)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F2:5A:E5:42:10:DF','2018-08-03 00:28:55','On or near Sickle Street','Manchester 054C','Shoplifting','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.240549 53.481916)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:DF:D2:D4:65:E3','2018-08-26 10:51:17','On or near Irlam Square','Salford 018A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.307052 53.499327)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('82:36:C0:99:34:8B','2018-08-28 01:37:42','On or near Great Howarth','Rochdale 004C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.139783 53.636963)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F2:00:EF:56:79:02','2018-08-26 14:19:02','On or near Trafford Boulevard','Trafford 002E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.354175 53.468375)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C5:90:43:40:63:19','2018-08-20 09:50:19','On or near Mancunian Way (Elevated Road)','Manchester 057B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.238727 53.471538)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9E:C3:42:C9:65:5B','2018-08-10 07:19:03','On or near Redmere Drive','Bury 013C','Public order','Under investigation',ST_GeomFromText('POINT(-2.282882 53.582205)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EE:80:C9:46:3E:B4','2018-08-24 14:19:30','On or near Tottington Road','Bolton 006D','Burglary','Under investigation',ST_GeomFromText('POINT(-2.381579 53.629614)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('53:43:5B:69:C3:BA','2018-08-11 19:14:59','On or near Granville Avenue','Manchester 028B','Drugs','Under investigation',ST_GeomFromText('POINT(-2.265333 53.447509)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('46:FD:33:B1:5A:21','2018-08-02 13:26:40','On or near Starling Close','Manchester 049E','Burglary','Under investigation',ST_GeomFromText('POINT(-2.256182 53.393023)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('14:F6:96:C1:4B:54','2018-08-16 20:03:17','On or near Hanover Street','Bolton 016E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.435599 53.577441)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('40:D8:8B:19:36:AC','2018-08-29 17:46:17','On or near Paley Street','Bolton 022E','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.425182 53.579294)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('43:F1:2F:30:30:D3','2018-08-09 23:09:36','On or near Hanlith Mews','Manchester 034E','Burglary','Under investigation',ST_GeomFromText('POINT(-2.201406 53.438601)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('96:60:00:D3:6E:0B','2018-08-02 06:42:01','On or near Wigan Street','Wigan 024E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.599758 53.517065)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('ED:5F:A2:39:02:A0','2018-08-20 12:15:35','On or near Wood Street','Rochdale 010C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.150874 53.61323)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('00:0F:A8:EA:28:08','2018-08-01 15:29:08','On or near Camborne Road','Tameside 027A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.02937 53.452547)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C9:65:FE:40:9F:75','2018-08-13 06:36:29','On or near Pedestrian Subway','Manchester 048D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.270598 53.399463)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('27:DE:82:8B:C0:55','2018-08-13 02:40:33','On or near Memorial Road','Salford 007B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.39771 53.521557)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6A:83:98:D3:F7:99','2018-08-17 12:49:07','On or near Back St Helens Road','Bolton 026A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.455196 53.561351)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:8F:D2:F4:0C:D0','2018-08-02 19:49:11','On or near Ryley Street','Bolton 021B','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.446894 53.572995)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8B:DA:1C:DF:14:A0','2018-08-20 21:20:17','On or near Shopping Area','Stockport 014B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.159379 53.411169)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A0:56:DB:DB:38:49','2018-08-10 20:45:45','On or near Whittaker Street','Tameside 004C','Public order','Under investigation',ST_GeomFromText('POINT(-2.078895 53.499857)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9F:61:FF:6B:F6:BC','2018-08-14 03:09:19','On or near Reservoir Street','Salford 023A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.292335 53.485656)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D0:CF:F0:D7:A6:BE','2018-08-30 13:02:42','On or near Overton Avenue','Manchester 049C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.261476 53.390773)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:C1:54:C1:D8:82','2018-08-19 02:55:48','On or near Back Bell Lane','Bury 008A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.28067 53.597167)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2B:8A:F0:45:94:AA','2018-08-28 22:28:50','On or near Park/Open Space','Bolton 027B','Drugs','Under investigation',ST_GeomFromText('POINT(-2.39179 53.556632)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('79:45:4F:A2:B3:28','2018-08-25 00:23:40','On or near Hall Street','Wigan 009A','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.624735 53.543831)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:04:E9:3C:D3:BF','2018-08-27 18:12:19','On or near Exeter Street','Rochdale 015E','Robbery','Under investigation',ST_GeomFromText('POINT(-2.152868 53.608535)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FF:A8:6F:8D:88:C6','2018-08-13 12:51:23','On or near George Street','Oldham 024B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.116255 53.539789)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('52:9A:BD:7E:20:83','2018-08-26 15:26:38','On or near Derwent Way','Wigan 040A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.54681 53.478659)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F0:2D:B9:BB:17:3E','2018-08-04 03:08:10','On or near Marshall Street','Wigan 037C','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.527655 53.491644)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EF:0D:4C:95:E9:A1','2018-08-16 00:56:26','On or near Green Lane','Rochdale 020B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.207775 53.592885)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E8:C2:C2:98:46:B8','2018-08-06 21:19:21','On or near Christy Close','Tameside 020F','Vehicle crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.083887 53.455343)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:1B:B4:50:33:1A','2018-08-23 09:46:23','On or near Glenart','Salford 020F','Burglary','Under investigation',ST_GeomFromText('POINT(-2.343455 53.487803)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:FA:1A:BE:02:24','2018-08-07 17:51:26','On or near Nightclub','Manchester 055B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.237689 53.477185)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0B:59:CC:4A:DC:70','2018-08-11 20:48:20','On or near Hall Street','Oldham 008B','Public order','Under investigation',ST_GeomFromText('POINT(-2.123177 53.564482)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E2:26:24:86:92:98','2018-08-08 04:36:59','On or near Parking Area','Stockport 033D','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.12692 53.372566)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('28:B8:65:5F:90:93','2018-08-09 12:17:20','On or near Dickens Street','Oldham 007F','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.073882 53.564586)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('20:97:8A:20:20:5F','2018-08-21 15:46:12','On or near Moncrieffe Street','Bolton 016D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.424212 53.571406)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('36:4C:F9:85:80:D3','2018-08-02 19:51:22','On or near Bordale Avenue','Manchester 009E','Other theft','Under investigation',ST_GeomFromText('POINT(-2.198885 53.508032)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:6D:BA:13:74:45','2018-08-07 07:35:48','On or near Cowburn Street','Manchester 056B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.243053 53.490405)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:27:69:AA:19:F1','2018-08-08 00:40:41','On or near Ewart Street','Bolton 011A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.436986 53.591871)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:C8:BC:3B:53:88','2018-08-11 06:44:34','On or near Brownlow Avenue','Wigan 012A','Possession of weapons','Under investigation',ST_GeomFromText('POINT(-2.594283 53.541775)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('89:94:28:4F:C7:AB','2018-08-20 09:18:20','On or near Falcon Drive','Rochdale 022A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.212071 53.560744)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1A:A6:BA:D1:81:88','2018-08-04 00:25:44','On or near Nightclub','Manchester 055B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.238922 53.476724)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A0:C1:1E:5E:F8:56','2018-08-21 10:17:11','On or near Thomson Street','Stockport 016D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.161114 53.404434)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('83:22:AF:2A:5E:35','2018-08-12 06:22:44','On or near Hampson Road','Trafford 006E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.31583 53.447135)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3F:84:C4:3E:53:7B','2018-08-16 02:04:52','On or near Meadow View','Rochdale 007F','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.191583 53.623894)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6F:B4:8C:36:2E:55','2018-08-15 13:27:08','On or near Eastgate Street','Tameside 013D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.102731 53.482411)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:D7:79:0D:00:85','2018-08-29 01:40:15','On or near Palatine Road','Manchester 038C','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.232831 53.429223)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:6C:FD:24:52:E1','2018-08-14 23:20:48','On or near Back Mackenzie Street','Bolton 005D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.438648 53.60346)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6C:23:ED:BB:33:C0','2018-08-14 23:20:37','On or near Hospital','Oldham 016E','Other theft','Under investigation',ST_GeomFromText('POINT(-2.121846 53.553248)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8F:AB:B2:1B:0E:5F','2018-08-29 05:14:49','On or near Supermarket','Bolton 032B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.393477 53.548105)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C7:18:A1:DF:48:F5','2018-08-28 11:47:13','On or near Ennerdale Drive','Trafford 021B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.329769 53.402037)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:D8:13:EE:E5:2C','2018-08-19 00:26:48','On or near Pickford Street','Manchester 055D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.228726 53.48309)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3C:8B:93:8B:04:4C','2018-08-25 19:56:55','On or near Sidney Road','Manchester 006C','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.216062 53.517557)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6E:C8:C9:42:25:4A','2018-08-17 12:01:26','On or near Back Somerset Road','Bolton 018E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.457616 53.58135)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B8:16:0F:D0:54:C9','2018-08-02 11:06:35','On or near Prison','Manchester 058C','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.246337 53.492717)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('61:4F:87:25:B9:43','2018-08-25 22:20:34','On or near Curlew Road','Oldham 026F','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.075377 53.531148)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:19:59:59:89:FA','2018-08-08 23:57:51','On or near Latin Street','Rochdale 010E','Possession of weapons','Awaiting court outcome',ST_GeomFromText('POINT(-2.162674 53.611875)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('07:00:8B:55:72:4C','2018-08-10 19:57:18','On or near Oxford Drive','Stockport 005D','Burglary','Under investigation',ST_GeomFromText('POINT(-2.087632 53.424222)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:47:71:EC:FC:CA','2018-08-03 12:02:11','On or near Shopping Area','Stockport 014B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.159498 53.410908)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('78:F1:E1:24:1C:E5','2018-08-06 00:11:55','On or near Arran Close','Bolton 020A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.48114 53.572647)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('47:87:AA:2E:EA:F5','2018-08-05 04:34:08','On or near Carrgreen Close','Manchester 041A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.20399 53.425024)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9F:EB:F5:97:A5:2C','2018-08-02 01:39:25','On or near Shopping Area','Bury 008E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.293486 53.593235)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7D:E4:53:67:0A:74','2018-08-01 03:17:16','On or near Shopping Area','Manchester 006B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.212736 53.512943)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('73:82:E8:15:D0:6E','2018-08-17 00:02:21','On or near Charles Street','Rochdale 020E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.208338 53.584543)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:46:27:9C:29:1D','2018-08-21 07:39:44','On or near Tintern Avenue','Rochdale 018A','Public order','Under investigation',ST_GeomFromText('POINT(-2.227293 53.601092)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:C4:5D:4D:51:1B','2018-08-25 08:14:29','On or near Kinnaird Road','Manchester 040D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.226673 53.428785)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('76:0E:D8:79:9A:DA','2018-08-24 13:09:08','On or near Irwell Street','Bury 011B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.302732 53.593194)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DC:DC:75:99:7B:4B','2018-08-05 03:00:28','On or near Back Melbourne Road','Bolton 021A','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.454076 53.568177)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B6:B3:23:42:33:41','2018-08-15 15:58:02','On or near Chain Street','Manchester 055B','Possession of weapons','Under investigation',ST_GeomFromText('POINT(-2.239073 53.479366)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('01:A3:41:BF:06:69','2018-08-03 00:45:42','On or near Birkinbrook Close','Bury 021B','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.28512 53.551172)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C5:B5:43:2E:59:65','2018-08-20 09:18:16','On or near Shopping Area','Rochdale 010C','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.157029 53.61804)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('72:67:19:D8:E3:86','2018-08-18 13:57:48','On or near Barley Hall Street','Rochdale 020B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.206507 53.596285)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:57:51:77:C5:80','2018-08-14 08:23:14','On or near Monks Lane','Bolton 013C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.39642 53.591743)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('49:B2:D3:F6:A8:AD','2018-08-20 07:08:34','On or near Chamber Road','Oldham 027D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.132824 53.525813)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8C:6A:DE:84:03:BC','2018-08-29 09:03:03','On or near Woolden Street','Salford 019B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.367999 53.488755)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3C:27:5E:54:BA:50','2018-08-05 18:15:46','On or near Carslake Road','Manchester 009G','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.215529 53.498664)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6D:03:76:84:9E:C0','2018-08-18 22:51:46','On or near Isaiah Street','Oldham 024B','Possession of weapons','Awaiting court outcome',ST_GeomFromText('POINT(-2.113742 53.531181)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C5:75:F8:F6:09:F2','2018-08-23 10:11:19','On or near Provis Road','Manchester 037B','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.278318 53.437017)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('75:D6:7C:5B:EB:1C','2018-08-02 23:29:01','On or near Broom Street','Salford 012E','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.334258 53.50835)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C2:F5:33:A4:CE:33','2018-08-06 02:20:35','On or near Ancroft Street','Manchester 019D','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.25269 53.466125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3E:B1:82:BA:BA:74','2018-08-14 08:28:25','On or near Magdala Street','Oldham 014B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.118786 53.549395)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:A5:5E:43:0E:0D','2018-08-08 15:18:09','On or near Broome Street','Oldham 016D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.12685 53.540794)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('18:48:B7:EB:9C:FC','2018-08-29 11:15:59','On or near The Gateway','Manchester 009A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.199023 53.502037)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:E7:44:F5:5C:E8','2018-08-08 08:02:31','On or near Angouleme Way','Bury 011B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.296339 53.590766)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A0:2E:78:F9:65:A2','2018-08-22 16:10:27','On or near Carrhouse Lane','Tameside 023C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-1.998817 53.458051)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F9:35:C4:FC:6E:B1','2018-08-05 01:36:49','On or near Haworth Road','Manchester 023C','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.173283 53.460074)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F8:DF:9E:F9:21:9D','2018-08-15 08:46:34','On or near Holebottom','Tameside 006A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.086271 53.502342)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('29:A6:E2:80:23:23','2018-08-17 13:50:06','On or near West Street','Wigan 012E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.600537 53.547577)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3B:39:BB:FF:0C:BB','2018-08-24 23:55:36','On or near Derby Street','Wigan 017A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.497662 53.529075)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2B:40:BD:8B:21:F8','2018-08-24 09:23:43','On or near Arnold Road','Tameside 030A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.066192 53.436281)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('70:92:3E:5A:65:B5','2018-08-11 13:22:22','On or near Purslow Close','Manchester 013G','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.209369 53.481534)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('42:C7:6A:61:53:4E','2018-08-02 12:10:06','On or near Parbold Avenue','Manchester 038A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.237217 53.433115)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:46:A5:26:6D:25','2018-08-17 02:23:17','On or near Elbe Street','Manchester 055E','Robbery','Under investigation',ST_GeomFromText('POINT(-2.220731 53.475689)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('16:E1:E7:69:3A:3F','2018-08-20 13:34:18','On or near Parking Area','Manchester 053D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.273249 53.362505)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:D0:0C:8D:77:41','2018-08-22 06:03:51','On or near Back Albion Place','Bury 008D','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.290593 53.603139)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5A:B5:6E:F3:22:34','2018-08-22 03:07:08','On or near Green Street','Wigan 022D','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.476688 53.517853)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5E:79:AE:7B:47:8E','2018-08-09 14:55:12','On or near Piccadilly','Manchester 055B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.236341 53.48125)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5E:50:63:6C:C3:F0','2018-08-01 22:53:37','On or near Bishop Street','Rochdale 023B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.172541 53.544332)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FD:41:96:EE:D9:18','2018-08-20 09:33:51','On or near Chancery Lane','Bolton 022E','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.427455 53.577111)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('47:1F:80:02:DB:A2','2018-08-16 11:36:11','On or near Eccles Fold','Salford 020B','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.342075 53.484778)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:5D:2E:BB:D4:60','2018-08-28 09:24:08','On or near Endsley Avenue','Salford 007C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.407476 53.515979)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('ED:31:5C:BE:B3:6A','2018-08-21 21:04:36','On or near Monton Road','Salford 020B','Other crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.348474 53.489605)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:05:12:D6:F1:DF','2018-08-07 00:39:35','On or near Princess Street','Oldham 032D','Burglary','Under investigation',ST_GeomFromText('POINT(-2.16169 53.508681)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('02:56:4A:B9:C9:A1','2018-08-06 03:06:30','On or near Hartley Street','Manchester 007B','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.199002 53.513533)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D3:B9:B2:85:B9:68','2018-08-02 20:21:44','On or near Culmington Close','Manchester 019D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.254006 53.464378)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:EE:1C:7C:6B:22','2018-08-03 02:29:54','On or near Allenby Street','Wigan 023A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.500947 53.519785)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BF:C3:7D:18:7F:42','2018-08-07 10:56:25','On or near Hindley Mill Lane','Wigan 013D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.566829 53.541405)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('72:9C:DA:42:D6:16','2018-08-16 20:27:48','On or near Buxton Crescent','Trafford 018A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.306081 53.410514)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('67:C9:85:30:F2:C6','2018-08-06 18:59:38','On or near Burnedge Fold Road','Oldham 013A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.033747 53.539895)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('77:5A:E9:BA:DF:11','2018-08-16 14:18:17','On or near Talavera Street','Salford 016B','Public order','Under investigation',ST_GeomFromText('POINT(-2.263722 53.498612)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5A:A9:71:79:F0:7B','2018-08-28 06:18:42','On or near Entwisle Road','Rochdale 008F','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.145877 53.619213)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F1:17:52:28:A8:71','2018-08-01 16:23:23','On or near Petrol Station','Wigan 012A','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.591245 53.542509)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('77:55:B9:C7:1C:2C','2018-08-03 17:58:11','On or near Newhey Road','Manchester 050A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.262952 53.388676)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('81:6E:B6:32:C9:3D','2018-08-01 13:03:33','On or near Supermarket','Tameside 013A','Theft from the person','Under investigation',ST_GeomFromText('POINT(-2.093402 53.488665)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6D:D5:55:0C:FE:9D','2018-08-04 07:22:56','On or near Darwin Street','Oldham 022E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.089495 53.536837)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E7:45:A0:02:53:65','2018-08-26 01:49:04','On or near Supermarket','Stockport 029B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.062954 53.393983)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('36:09:3F:E0:8A:4D','2018-08-17 19:25:41','On or near Salford Road','Bolton 026C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.454197 53.544187)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B8:92:A7:33:6C:A7','2018-08-12 12:14:27','On or near Bazaar Street','Salford 017B','Other theft','Under investigation',ST_GeomFromText('POINT(-2.286583 53.492996)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A2:89:C1:A6:0E:8C','2018-08-30 07:00:44','On or near Eskdale Avenue','Oldham 035E','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.12701 53.528669)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3B:94:69:68:DA:B5','2018-08-16 03:37:12','On or near Chippendale Place','Tameside 004C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.072216 53.499646)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('42:ED:D5:93:22:AA','2018-08-12 00:32:04','On or near Supermarket','Manchester 006B','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.210818 53.512218)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('41:FD:92:6C:69:A0','2018-08-24 08:59:48','On or near Old Oake Close','Salford 007B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.391618 53.520112)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('72:10:BB:C3:7A:1A','2018-08-14 01:44:37','On or near Dunkerley Avenue','Oldham 034A','Drugs','Formal action is not in the public interest',ST_GeomFromText('POINT(-2.158227 53.505909)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('61:BA:D7:37:B5:C1','2018-08-26 06:46:15','On or near Woodhouse Knowl','Oldham 013C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.023773 53.566835)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:5F:E1:D6:AA:C1','2018-08-25 00:19:18','On or near Vicarage Road','Bolton 009C','Public order','Under investigation',ST_GeomFromText('POINT(-2.581338 53.591499)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C8:BD:BA:62:7F:EC','2018-08-17 10:43:07','On or near Houldsworth Street','Manchester 055D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.231546 53.483444)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:6E:4F:4C:74:5D','2018-08-06 23:43:01','On or near Ridgeway Gates','Bolton 016E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.431002 53.579876)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:55:EC:79:14:AB','2018-08-14 11:20:22','On or near Smith Street','Rochdale 018B','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.214072 53.59229)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1F:F7:AC:93:D4:61','2018-08-18 19:36:29','On or near Sudbury Drive','Stockport 040C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.219504 53.366517)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('17:6B:1A:41:61:D9','2018-08-19 20:09:28','On or near Moss Street','Rochdale 012E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.143885 53.611486)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F4:00:49:3D:E1:BD','2018-08-02 08:21:38','On or near Parking Area','Manchester 045E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.218666 53.40809)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('74:7C:67:6A:B9:DF','2018-08-08 09:47:47','On or near Geneva Road','Stockport 032B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.166274 53.381596)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('94:7A:94:84:53:B2','2018-08-02 17:38:34','On or near Ryton Avenue','Manchester 023A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.180163 53.455929)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E0:44:AB:F5:24:CE','2018-08-03 02:28:55','On or near Christine Street','Oldham 001B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.098335 53.581583)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:DC:82:1D:35:44','2018-08-01 16:50:09','On or near Parking Area','Stockport 005B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.100293 53.426325)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A2:BD:19:96:6B:0C','2018-08-05 03:21:04','On or near Hope Street','Manchester 055B','Robbery','Under investigation',ST_GeomFromText('POINT(-2.235083 53.479976)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AA:E1:1F:4F:5B:0E','2018-08-28 05:19:14','On or near Hampton Grove','Wigan 031A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.481525 53.505546)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1E:3D:BA:DB:1D:57','2018-08-14 00:01:49','On or near The Parklands','Stockport 007C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.164887 53.423215)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3A:CB:C3:DD:12:81','2018-08-06 08:46:11','On or near Halliwell Road','Bury 025B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.289626 53.51483)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A4:E1:42:32:91:BF','2018-08-11 15:50:24','On or near Turner Street','Rochdale 010F','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.160382 53.625136)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('24:51:CE:B8:06:AC','2018-08-14 18:49:38','On or near Queensway','Trafford 002E','Public order','Under investigation',ST_GeomFromText('POINT(-2.344426 53.458786)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D4:82:FF:BD:7F:1B','2018-08-24 17:55:22','On or near Shepley Road','Tameside 019C','Public order','Under investigation',ST_GeomFromText('POINT(-2.109941 53.467627)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D8:FF:13:F6:90:BC','2018-08-11 22:11:25','On or near Shopping Area','Manchester 056C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.233218 53.497076)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('71:1A:CB:9D:9C:67','2018-08-14 02:45:48','On or near Radcliffe Moor Road','Bury 018A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.35722 53.569045)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:C3:28:61:0C:CC','2018-08-13 21:13:35','On or near Baguley Crescent','Rochdale 024D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.234282 53.542312)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('01:A2:84:34:7D:A7','2018-08-28 04:28:45','On or near Cliff Crescent','Salford 016F','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.262498 53.507792)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E0:0B:22:5D:24:1F','2018-08-17 18:27:56','On or near Blazemoss Bank','Stockport 024D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.122446 53.389999)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('10:FB:12:22:C6:23','2018-08-08 06:32:34','On or near Tib Street','Manchester 054E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.235328 53.483382)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BF:68:F3:60:1D:A8','2018-08-18 09:45:54','On or near Gibsons Road','Stockport 008A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.183089 53.421984)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CB:50:93:09:4F:CF','2018-08-03 18:48:05','On or near Longsight Road','Manchester 023A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.182654 53.453741)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7C:AC:F4:5F:D1:55','2018-08-26 08:19:55','On or near Smalldale Avenue','Manchester 024A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.246526 53.45252)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F0:17:DB:1A:D7:F1','2018-08-03 08:32:22','On or near Slate Lane','Tameside 014B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.131974 53.475659)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('13:D5:7A:78:73:00','2018-08-28 14:07:43','On or near Delamere Street','Tameside 013A','Burglary','Under investigation',ST_GeomFromText('POINT(-2.094318 53.487092)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9F:78:2D:2C:81:B0','2018-08-23 02:53:49','On or near The Close','Tameside 008B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.062557 53.492497)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('13:58:F0:DA:A5:F5','2018-08-29 03:46:54','On or near Shopping Area','Manchester 058B','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237948 53.499179)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:07:35:05:07:5A','2018-08-11 22:51:43','On or near Ullswater Avenue','Tameside 005C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.105807 53.495172)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C5:F0:47:1B:1F:B7','2018-08-27 00:37:53','On or near Aspinall Street','Manchester 025E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.225546 53.454665)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3A:4E:41:4C:AB:DA','2018-08-24 00:01:54','On or near Supermarket','Bury 022D','Shoplifting','Local resolution',ST_GeomFromText('POINT(-2.290006 53.535197)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0B:D7:26:C4:9B:74','2018-08-25 09:08:31','On or near Cow Lane','Oldham 019C','Other crime','Formal action is not in the public interest',ST_GeomFromText('POINT(-2.089011 53.54366)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E5:E5:02:62:5F:95','2018-08-08 08:58:35','On or near Dunstall Road','Manchester 049E','Robbery','Under investigation',ST_GeomFromText('POINT(-2.25074 53.390796)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('63:F0:29:59:F5:84','2018-08-02 05:41:38','On or near Garside Street','Tameside 028F','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.075885 53.444284)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E0:71:FB:77:93:95','2018-08-26 06:33:08','On or near Petrol Station','Manchester 029E','Public order','Under investigation',ST_GeomFromText('POINT(-2.272906 53.44271)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:84:23:CB:DD:8D','2018-08-10 02:22:01','On or near Shortcroft Street','Manchester 060D','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.248657 53.471931)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8D:58:20:C7:C8:02','2018-08-20 05:28:21','On or near Leominster Drive','Manchester 052B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.249049 53.379384)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0A:58:23:E1:65:01','2018-08-08 13:47:13','On or near Back Deane Road','Bolton 021A','Robbery','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.451071 53.570948)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('44:0F:28:D9:41:DC','2018-08-09 18:22:03','On or near Neston Road','Rochdale 012C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.134393 53.601807)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:BA:F7:8F:42:D5','2018-08-05 05:29:41','On or near Minstrel Close','Wigan 026B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.591359 53.50846)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D8:61:13:2A:08:9C','2018-08-04 09:39:58','On or near Ravenswood Drive','Manchester 002D','Robbery','Under investigation',ST_GeomFromText('POINT(-2.211181 53.524621)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('01:FD:C9:95:2F:BA','2018-08-30 16:26:54','On or near Highfield Place','Bury 022D','Vehicle crime','Under investigation',ST_GeomFromText('POINT(-2.285087 53.53511)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('69:D1:EC:51:08:34','2018-08-19 19:30:26','On or near Bowscale Close','Manchester 020C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.204106 53.458596)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B1:E1:1E:21:3F:2A','2018-08-29 16:36:10','On or near Supermarket','Bury 026E','Public order','Under investigation',ST_GeomFromText('POINT(-2.270537 53.517725)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('03:CA:8F:BE:F0:E2','2018-08-06 06:06:23','On or near Kingsbridge Road','Manchester 009B','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.218621 53.507863)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1D:39:5A:75:A4:AA','2018-08-12 08:37:46','On or near Kingmoor Avenue','Bury 016E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.325431 53.564543)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('45:B1:4B:A2:EA:90','2018-08-23 12:52:48','On or near Petrol Station','Salford 028J','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.267575 53.476007)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3C:2F:09:BB:4A:37','2018-08-17 16:57:48','On or near Thorn Well','Bolton 031D','Other theft','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.522204 53.544799)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B0:BD:D9:D9:00:7E','2018-08-20 07:30:01','On or near Jack Street','Bolton 017C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.408648 53.587594)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('90:C4:FE:9B:D8:48','2018-08-16 09:42:43','On or near Sidmouth Drive','Manchester 002E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.217531 53.521536)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('08:AA:59:A7:95:C7','2018-08-17 07:41:48','On or near Supermarket','Manchester 029A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.278743 53.442176)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3A:C4:36:0B:00:50','2018-08-21 15:50:39','On or near Armstrong Street','Wigan 007B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.600727 53.558893)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:72:33:6B:B1:50','2018-08-24 18:41:02','On or near Primrose Grove','Wigan 010A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.663997 53.542549)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C9:C0:FC:B9:15:25','2018-08-09 21:29:28','On or near Limetrees Road','Rochdale 024E','Shoplifting','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.202111 53.548879)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A7:8F:1A:39:E8:D1','2018-08-19 03:56:45','On or near Ogden Street','Oldham 019D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.081033 53.537868)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F6:29:C4:35:84:88','2018-08-11 08:10:26','On or near Prince Street','Bolton 016F','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.432898 53.585037)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B8:0A:2F:D6:54:7F','2018-08-13 08:25:54','On or near White House Avenue','Manchester 004D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.249809 53.524277)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('52:49:C0:6A:1A:6E','2018-08-12 00:35:51','On or near Petrol Station','Tameside 025D','Other theft','Under investigation',ST_GeomFromText('POINT(-2.130361 53.455742)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:52:7F:46:4A:7A','2018-08-28 01:10:26','On or near Arlies Street','Tameside 004C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.079202 53.495228)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DC:D0:CA:38:4B:7F','2018-08-20 10:37:16','On or near Claremont Road','Manchester 024A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.241215 53.45334)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E9:60:29:3F:19:91','2018-08-25 11:01:41','On or near Wellington Road North','Manchester 034C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.184382 53.435653)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3F:1C:18:93:B3:5F','2018-08-14 23:10:50','On or near Nelson Square','Bolton 022E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.426796 53.577608)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C6:B3:D7:63:FF:87','2018-08-18 00:08:28','On or near Boundry Green','Tameside 025A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.118507 53.460527)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9C:F3:01:1A:3E:A9','2018-08-23 18:19:43','On or near Rock Street','Manchester 017A','Public order','Under investigation',ST_GeomFromText('POINT(-2.166681 53.474195)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('87:3E:74:8E:4D:99','2018-08-05 20:57:28','On or near Curzon Road','Bolton 015D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.450543 53.578132)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1E:01:6E:F7:1D:74','2018-08-25 15:04:46','On or near Nightclub','Manchester 055B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.238002 53.476636)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('53:D7:6E:71:A6:AE','2018-08-10 07:20:36','On or near Lincoln Grove','Manchester 022F','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.220105 53.462477)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('94:70:98:AF:AE:74','2018-08-09 16:32:10','On or near Supermarket','Rochdale 017E','Other crime','Awaiting court outcome',ST_GeomFromText('POINT(-2.173912 53.602529)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('1B:41:BD:AC:D7:30','2018-08-17 17:31:48','On or near Glendale','Salford 008D','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.325397 53.518765)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9E:4F:C5:BB:98:F3','2018-08-28 10:00:46','On or near Weymouth Street','Bolton 011C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.438013 53.593297)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BC:00:8C:D0:10:DB','2018-08-16 20:37:34','On or near Sleddale Close','Stockport 024B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.125953 53.391065)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4C:03:56:49:90:C9','2018-08-28 01:02:54','On or near Devon Road','Salford 030C','Burglary','Under investigation',ST_GeomFromText('POINT(-2.441981 53.426142)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('64:1F:D3:A3:C8:A3','2018-08-04 21:55:21','On or near Crowther Street','Manchester 021C','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.167077 53.463723)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('97:EF:6F:17:4A:2A','2018-08-19 21:34:19','On or near Brook Drive','Stockport 029B','Other crime','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.066989 53.388129)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F6:39:27:2C:82:D0','2018-08-12 09:40:55','On or near Coniston Walk','Trafford 022D','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.303717 53.391275)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('80:B5:0E:18:AF:9D','2018-08-26 09:48:05','On or near Cheddleton Road','Trafford 019A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.357348 53.404996)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('2A:A7:9E:42:D8:B0','2018-08-10 23:12:29','On or near Beckford Street','Manchester 011B','Public order','Under investigation',ST_GeomFromText('POINT(-2.207442 53.497321)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CE:7F:71:AD:4F:2E','2018-08-06 02:18:20','On or near Malt Street','Manchester 059C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.264899 53.469676)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('58:A2:46:1E:3C:D2','2018-08-01 11:03:15','On or near Spires Croft','Wigan 031E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.505523 53.496225)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6B:B3:5C:30:FB:BA','2018-08-18 22:34:09','On or near Gloucester Avenue','Manchester 031C','Possession of weapons','Under investigation',ST_GeomFromText('POINT(-2.187374 53.441698)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('77:64:E9:1C:84:17','2018-08-29 06:07:01','On or near St Martin''S Street','Rochdale 017C','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.174555 53.589927)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A5:21:B4:1C:21:B1','2018-08-12 20:37:57','On or near Nightclub','Manchester 055B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.237689 53.477185)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('89:5F:21:AE:B7:BE','2018-08-24 20:15:58','On or near Parrs Wood Road','Manchester 045E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.220723 53.410406)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('20:0A:FA:66:7E:85','2018-08-17 10:38:41','On or near Priory Road','Wigan 032D','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.650694 53.497752)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('98:38:D8:8E:68:2B','2018-08-13 23:14:51','On or near Mellor Road','Tameside 007D','Public order','Awaiting court outcome',ST_GeomFromText('POINT(-2.069111 53.490848)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E3:1A:25:4A:0C:78','2018-08-22 20:12:22','On or near Town Street','Stockport 020E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.053564 53.400917)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EC:CC:D4:74:1E:7D','2018-08-24 08:00:38','On or near Petrol Station','Bolton 016D','Burglary','Under investigation',ST_GeomFromText('POINT(-2.429579 53.573535)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('95:9E:08:33:68:4F','2018-08-13 08:00:05','On or near Barnston Avenue','Manchester 030C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.231972 53.448289)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D1:71:43:03:37:D2','2018-08-07 18:33:58','On or near Alsager Close','Manchester 037A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.276875 53.430333)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4E:B6:8B:A7:55:BD','2018-08-13 11:26:12','On or near Phoenix Street','Bolton 032D','Shoplifting','Awaiting court outcome',ST_GeomFromText('POINT(-2.39619 53.542901)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('66:BB:AE:F9:34:1A','2018-08-08 10:55:51','On or near Shay Lane','Trafford 028E','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.305855 53.372816)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C0:51:64:36:F0:7A','2018-08-02 21:20:40','On or near Crossland Road','Tameside 010D','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.144266 53.483797)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EC:E9:FF:C3:57:CB','2018-08-22 04:49:02','On or near Parking Area','Bolton 016E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.426769 53.580907)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5F:06:A3:6B:1E:43','2018-08-18 16:38:09','On or near Leyburn Close','Bury 019C','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.302178 53.547337)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('88:E0:8B:A9:76:D9','2018-08-18 10:41:20','On or near Old Broadway','Manchester 040C','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.227783 53.425295)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F3:59:A6:E5:15:AE','2018-08-19 03:39:59','On or near Rushford Grove','Bolton 005B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.429503 53.601849)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('79:DF:39:11:02:8E','2018-08-22 19:26:01','On or near Pacific Road','Trafford 025A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.373355 53.394979)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('51:60:C7:5C:A8:F8','2018-08-08 03:58:40','On or near Melville Street','Rochdale 017B','Public order','Local resolution',ST_GeomFromText('POINT(-2.173183 53.590612)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('71:A3:6E:79:2C:C8','2018-08-07 23:05:54','On or near Petrol Station','Manchester 033C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.27388 53.435095)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('34:F1:1B:04:E1:53','2018-08-13 21:33:47','On or near Parking Area','Wigan 015A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.635551 53.542578)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('95:17:65:79:94:9B','2018-08-19 17:30:43','On or near Napier Street West','Oldham 035G','Public order','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.128614 53.535165)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('89:E7:7C:A1:87:74','2018-08-17 18:14:30','On or near Sidebottom Street','Oldham 012B','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.073176 53.548983)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A3:3A:52:31:BA:33','2018-08-26 03:51:36','On or near George Street','Oldham 024B','Theft from the person','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.116255 53.539789)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D5:56:C0:48:25:A9','2018-08-21 03:53:43','On or near Worths Lane','Tameside 029F','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.102772 53.437136)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B8:20:C6:FF:96:A9','2018-08-25 04:05:55','On or near Ivy Street','Manchester 007D','Public order','Under investigation',ST_GeomFromText('POINT(-2.195757 53.513134)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AB:65:A0:5B:D0:BE','2018-08-20 14:06:40','On or near Copthorne Drive','Bolton 019E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.392595 53.575127)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DE:3B:35:C3:BC:D2','2018-08-11 03:16:46','On or near Longsides Road','Trafford 028C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.310676 53.364022)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BF:82:C1:2E:95:0C','2018-08-21 00:13:06','On or near Balmoral Avenue','Tameside 019B','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.12337 53.470185)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:21:CF:5E:F1:DE','2018-08-08 10:17:03','On or near Albert Royds Street','Rochdale 004B','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.134311 53.623757)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A3:3F:F7:92:DE:15','2018-08-16 04:12:50','On or near Tydden Street','Oldham 029E','Public order','Under investigation',ST_GeomFromText('POINT(-2.111646 53.525943)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('57:53:F1:70:F6:39','2018-08-24 20:55:02','On or near Barnwood Drive','Bolton 011A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.436504 53.58906)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E0:83:7C:EA:C9:9A','2018-08-11 17:07:44','On or near Grundey Street','Stockport 031D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.119979 53.378784)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3B:BD:30:5E:DA:3E','2018-08-18 00:12:28','On or near Lytherton Avenue','Salford 030D','Public order','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.438313 53.423575)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8D:A2:E7:DC:0A:FB','2018-08-22 02:50:27','On or near Hollycroft Avenue','Bolton 019E','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.392245 53.571605)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('ED:69:15:1F:CB:DD','2018-08-12 10:07:14','On or near Rusholme Place','Manchester 026C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.225879 53.457828)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('55:9A:F3:CC:4F:9C','2018-08-17 16:30:43','On or near Royal Oak Road','Manchester 048E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.285921 53.39904)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F4:BA:09:43:A6:BE','2018-08-20 01:44:11','On or near Timperley Street','Manchester 015E','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.177705 53.476732)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5B:21:84:92:23:32','2018-08-21 01:35:04','On or near Michael Street','Rochdale 024E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.203831 53.548921)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8E:B4:5D:A6:6A:D6','2018-08-13 17:17:00','On or near Globe Street','Oldham 019A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.095141 53.544734)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('99:A4:02:C6:D8:7D','2018-08-20 00:39:11','On or near Taywood Road','Bolton 030C','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.491437 53.558133)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('10:82:6C:DD:3B:4E','2018-08-12 13:15:55','On or near Masefield Avenue','Bury 016A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.344218 53.565137)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('91:0B:99:E3:36:1B','2018-08-20 13:19:19','On or near Malcolm Avenue','Salford 008C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.330893 53.523424)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0A:F9:3F:75:1D:A3','2018-08-21 23:41:49','On or near Burnside Road','Stockport 025D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.234509 53.389562)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('58:99:FC:AE:5B:99','2018-08-22 01:52:42','On or near Mossack Avenue','Manchester 053B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.261107 53.37472)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8B:7A:8A:13:E6:8C','2018-08-01 06:02:03','On or near Further/Higher Educational Building','Bury 011B','Bicycle theft','Under investigation',ST_GeomFromText('POINT(-2.296471 53.590109)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('03:F8:F1:74:8A:86','2018-08-20 10:10:21','On or near Lanstead Drive','Manchester 013G','Public order','Under investigation',ST_GeomFromText('POINT(-2.212104 53.486051)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('6D:C9:E6:F9:28:06','2018-08-15 23:06:35','On or near Sandgate Road','Oldham 017B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.141105 53.539259)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:F1:11:28:FD:F7','2018-08-07 15:36:26','On or near Byron Grove','Wigan 030D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.521439 53.504705)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('06:75:31:CA:68:07','2018-08-15 19:38:00','On or near Supermarket','Tameside 018D','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.06729 53.473735)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:79:02:8A:FF:65','2018-08-24 21:25:25','On or near Meadow View','Rochdale 007F','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.191583 53.623894)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:AA:53:2E:0D:0B','2018-08-05 02:29:04','On or near Lamorna Close','Salford 011B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.277875 53.509771)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('23:37:EA:6E:E8:8C','2018-08-01 08:43:50','On or near Butcher Lane','Manchester 047C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.302816 53.399916)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:D9:D7:DD:E2:8B','2018-08-26 23:57:38','On or near Butler Street','Wigan 009C','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.624879 53.546428)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('86:E9:7E:F4:A3:CD','2018-08-09 11:53:37','On or near Batley Street','Manchester 009A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.208014 53.512502)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('93:D6:86:CE:93:CE','2018-08-18 23:59:18','On or near Canberra Street','Manchester 015A','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.177675 53.483842)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9D:E1:C5:99:EF:E8','2018-08-12 01:58:12','On or near Whittaker Street','Tameside 004C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.078895 53.499857)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C4:6F:67:26:B0:B2','2018-08-11 17:23:03','On or near Milford Grove','Stockport 024A','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.13299 53.400891)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DF:92:78:D0:8B:28','2018-08-22 10:29:46','On or near Brookside Avenue','Wigan 032A','Public order','Under investigation',ST_GeomFromText('POINT(-2.650527 53.508548)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A5:8E:4B:D9:47:B3','2018-08-08 15:36:47','On or near Acre Lane','Oldham 011E','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.099531 53.550518)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('87:3E:3C:D1:ED:98','2018-08-17 15:30:52','On or near Gainsborough Street','Salford 016D','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.252555 53.506735)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('41:1D:A5:62:3A:24','2018-08-14 22:53:00','On or near Taylor''S Lane','Bury 012C','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.369207 53.579175)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('78:14:9D:68:95:31','2018-08-04 14:14:50','On or near Winstanley Road','Manchester 013B','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.217175 53.490419)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4E:2F:45:EE:10:17','2018-08-24 13:47:41','On or near Windermere Avenue','Tameside 024B','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.142837 53.448798)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('DF:49:1E:F9:C4:30','2018-08-18 02:42:28','On or near Kay Brow','Bury 001A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.317631 53.645818)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('BD:D0:38:8F:28:AF','2018-08-14 15:14:09','On or near Church Street West','Bury 015D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.320038 53.562113)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('33:D9:F9:03:85:5D','2018-08-27 16:18:04','On or near Margate Avenue','Manchester 012E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.182691 53.497488)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EE:BC:B0:BE:77:60','2018-08-20 21:57:51','On or near Darlington Street East','Wigan 009A','Other theft','Under investigation',ST_GeomFromText('POINT(-2.619317 53.543832)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:0A:50:0D:47:38','2018-08-29 22:58:59','On or near Wildman Lane','Bolton 029D','Other crime','Under investigation',ST_GeomFromText('POINT(-2.427583 53.547871)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:01:31:DD:4A:A7','2018-08-03 06:51:01','On or near Morrowfield Avenue','Manchester 058B','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.243775 53.505846)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EE:04:10:58:1D:4B','2018-08-04 00:22:40','On or near Urban Avenue','Trafford 024E','Criminal damage and arson','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.34125 53.385772)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('21:BE:F0:42:CB:5A','2018-08-03 09:32:16','On or near South Avenue','Trafford 002E','Shoplifting','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.344832 53.467998)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8A:AC:7D:3F:E2:A4','2018-08-20 19:36:00','On or near Petrol Station','Rochdale 020F','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.208625 53.581405)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('25:68:61:64:67:F5','2018-08-24 16:25:25','On or near Bunsen Street','Manchester 055B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.23404 53.482064)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3F:26:55:4E:36:63','2018-08-17 16:05:21','On or near Woodhouse Lane','Trafford 019E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.361927 53.411095)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('85:EE:7B:99:9D:A1','2018-08-26 09:08:43','On or near Conference/Exhibition Centre','Manchester 018E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.236856 53.470912)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('D7:A6:6D:E2:EC:05','2018-08-27 02:49:30','On or near Supermarket','Wigan 027B','Other theft','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.526763 53.499935)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F8:F9:77:CF:D2:F4','2018-08-12 19:08:31','On or near Leech Avenue','Tameside 004C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.073737 53.499043)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('A6:18:F5:89:7C:4C','2018-08-15 03:52:07','On or near Styal Avenue','Stockport 003F','Burglary','Under investigation',ST_GeomFromText('POINT(-2.159312 53.429541)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('71:36:BB:B1:BE:90','2018-08-21 22:58:29','On or near Hollingworth Drive','Stockport 029D','Burglary','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.063807 53.381479)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('54:27:59:9D:C3:87','2018-08-03 03:03:49','On or near Gilbert Street','Salford 007E','Violence and sexual offences','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.400923 53.518356)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9B:E4:F3:DF:1C:8B','2018-08-30 01:05:36','On or near Chestnut Road','Salford 019E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.375978 53.4946)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3B:16:14:4D:61:C5','2018-08-02 06:17:04','On or near Queensway','Wigan 031A','Public order','Under investigation',ST_GeomFromText('POINT(-2.488019 53.502509)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EB:5D:B7:12:72:05','2018-08-29 22:15:49','On or near Dunton Green','Stockport 004B','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.138507 53.432372)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('31:B2:D7:3A:91:33','2018-08-09 12:36:08','On or near Leyfield Road','Rochdale 013B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.121923 53.611375)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B8:18:E1:0D:D2:49','2018-08-05 20:19:39','On or near Poplar Street','Stockport 013E','Criminal damage and arson','Under investigation',ST_GeomFromText('POINT(-2.204404 53.414165)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4D:D3:06:B0:40:EC','2018-08-03 16:26:46','On or near Sussex Close','Oldham 017C','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.144586 53.538059)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('B0:30:3C:E0:FA:88','2018-08-16 04:53:11','On or near University Road West','Salford 022H','Burglary','Further investigation is not in the public interest',ST_GeomFromText('POINT(-2.275123 53.48523)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('5E:CD:1F:C2:5F:D0','2018-08-22 11:53:09','On or near Bus/Coach Station','Oldham 024B','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.111234 53.541412)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('32:EA:86:11:0F:BB','2018-08-24 22:39:30','On or near Landseer Drive','Stockport 017B','Burglary','Under investigation',ST_GeomFromText('POINT(-2.049339 53.401863)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('AE:E2:C6:B9:73:FA','2018-08-14 10:54:25','On or near Cemetery Road','Tameside 019C','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.110584 53.466009)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('4F:D8:2B:F6:CF:2B','2018-08-28 09:11:42','On or near Bell Street','Wigan 027A','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.53098 53.517687)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('FA:B7:A2:7A:88:C8','2018-08-29 19:15:14','On or near Trafford Boulevard','Trafford 002E','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.353493 53.467963)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('30:32:FC:99:C1:B6','2018-08-04 11:18:42','On or near Hamer Drive','Trafford 001D','Violence and sexual offences','Local resolution',ST_GeomFromText('POINT(-2.263542 53.462281)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('F5:23:85:76:29:A3','2018-08-03 13:28:01','On or near Lyndhurst Avenue','Trafford 002C','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.361072 53.457541)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('01:9B:C7:4E:9C:64','2018-08-04 19:43:52','On or near Cotefield Road','Manchester 051E','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.271772 53.378391)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('8F:1B:DF:70:97:D9','2018-08-04 18:09:04','On or near Domestic Approach','Manchester 053D','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.269834 53.361928)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('11:64:04:20:49:99','2018-08-21 06:40:46','On or near Priory Avenue','Wigan 027A','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.53148 53.516687)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('48:A8:05:E4:F8:B5','2018-08-28 11:28:18','On or near Staithes Road','Manchester 053E','Violence and sexual offences','Under investigation',ST_GeomFromText('POINT(-2.257433 53.368715)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('0A:15:3C:82:3E:C4','2018-08-18 08:11:53','On or near Cranberry Drive','Bolton 020B','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.472509 53.563755)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C3:74:6E:79:2C:54','2018-08-16 22:22:41','On or near Coghlan Close','Manchester 015A','Violence and sexual offences','Unable to prosecute suspect',ST_GeomFromText('POINT(-2.185181 53.484316)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C4:29:A4:D2:4B:16','2018-08-15 11:25:02','On or near Cleveland Gardens','Bolton 026D','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.458534 53.564268)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('7C:1D:13:06:AC:2F','2018-08-23 00:57:36','On or near Whitley Road','Manchester 054A','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.221808 53.494338)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('9F:40:8E:8C:47:A6','2018-08-21 17:39:07','On or near Morecambe Close','Manchester 011A','Public order','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.184488 53.501673)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('CD:54:39:39:E8:18','2018-08-14 00:53:06','On or near Murray Street','Manchester 055E','Vehicle crime','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.22739 53.484162)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('3D:3E:09:51:03:73','2018-08-03 13:00:23','On or near Addingham Close','Manchester 001E','Violence and sexual offences','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.227936 53.532527)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('E3:8C:96:87:F1:6E','2018-08-03 19:41:55','On or near Gilmerton Drive','Manchester 011D','Robbery','Under investigation',ST_GeomFromText('POINT(-2.179021 53.49939)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('EC:AC:3A:5E:2D:22','2018-08-08 14:53:16','On or near Golborne Dale Road','St. Helens 015D','Criminal damage and arson','Investigation complete; no suspect identified',ST_GeomFromText('POINT(-2.600255 53.459365)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('C1:BF:6A:A3:46:DC','2018-08-28 07:58:38','On or near Plymouth Street','Oldham 024A','Violence and sexual offences','Awaiting court outcome',ST_GeomFromText('POINT(-2.111291 53.528675)',4326));
INSERT INTO GreaterManchesterCrime (CrimeID,CrimeTS,Location,LSOA,Type,Outcome,theGeom) VALUES ('19:19:A8:68:44:0F','2018-08-28 11:36:44','On or near Chipstead Avenue','Manche
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment