Welcome to Tesla Motors Club
Discuss Tesla's Model S, Model 3, Model X, Model Y, Cybertruck, Roadster and More.
Register

TeslaMate [megathread]

This site may earn commission on affiliate links.
Not sure if this is of use to others, but a couple of months back I bulk created geofences for all of the UK Supercharger locations based on data taken from OpenChargeMap.

You can run the SQL below to add these to your existing Teslamate database, however you might need to clean-out any duplicates if you already have some of these defined.

Code:
## To access the Teslamate database (on the default Docker install), from a CLI shell run:
docker exec -it teslamate_database_1 psql -U teslamate

## To check what geofences currently exist run this SQL:
SELECT * FROM geofences;

## To remove a geofence run this SQL, replacing xxx with the Geofence ID found from the output generated above:
DELETE FROM geofences WHERE id = xxx;

## To exit from the Postgres CLI shell type:
\q

Code:
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('North Greenwich Supercharger', 51.502543, -0.000031, 35, '2020-03-21 22:36:34', '2020-03-21 22:36:34', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Park Royal Supercharger', 51.526810, -0.283526, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Eurocentral Supercharger', 55.835905, -3.984377, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Manchester-South Supercharger', 53.430272, -2.179346, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wokingham Supercharger', 51.428333, -0.898835, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Royal Crescent Hotel & Spa', 51.387342, -2.368139, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Liphook Supercharger', 51.076481, -0.831521, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla London-Brent Cross', 51.576293, -0.223638, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('London-Brent Cross Supercharger', 51.577530, -0.223753, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Perth Supercharger', 56.386024, -3.479455, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Membury Eastbound Supercharger', 51.483904, -1.556787, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Burtonwood Supercharger', 53.417576, -2.639682, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Scotch Corner Supercharger', 54.442066, -1.671229, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kent Bluewater', 51.438598, 0.269440, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aviemore Supercharger', 57.189837, -3.836126, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Fleet Supercharger (Eastbound)', 51.296116, -0.857413, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Membury Westbound Supercharger', 51.481232, -1.556154, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Portsmouth Supercharger', 50.847768, -0.991083, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Penrith, UK - Tebay Southbound Supercharger', 54.453346, -2.605861, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Telford Supercharger', 52.677440, -2.399171, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Stoke-on-Trent Northbound Supercharger', 52.992960, -2.290314, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Michaelwood Northbound Supercharger', 51.656236, -2.434815, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lifton Supercharger', 50.643682, -4.284655, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Warwick - Southbound Supercharger', 52.219170, -1.501274, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Newport Pagnell - Southbound Supercharger', 52.084312, -0.748467, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Woodall Southbound Supercharger', 53.314145, -1.281904, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Warwick - Northbound Supercharger', 52.216065, -1.504796, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Grantham Supercharger', 52.948600, -0.678092, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Heathrow Supercharger', 51.478172, -0.515604, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bristol - Cribbs Causeway Supercharger', 51.526694, -2.599806, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Charnock Richard (Northbound) Supercharger', 53.630500, -2.692696, 35, '2020-03-21 22:36:53', '2020-03-21 22:36:53', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sarn Supercharger', 51.535351, -3.577637, 35, '2020-03-21 22:36:54', '2020-03-21 22:36:54', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Thetford Supercharger', 52.386434, 0.664575, 35, '2020-03-21 22:36:54', '2020-03-21 22:36:54', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Doubletree (Hilton) Car Park', 56.466441, -3.062970, 35, '2020-03-21 22:36:54', '2020-03-21 22:36:54', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gordano Services Tesla Supercharger', 51.477207, -2.706308, 35, '2020-03-21 22:36:54', '2020-03-21 22:36:54', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla Leeds Supercharger', 53.732797, -1.585612, 35, '2020-03-21 22:36:54', '2020-03-21 22:36:54', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Washington Supercharger', 54.887620, -1.557413, 35, '2020-03-21 22:36:54', '2020-03-21 22:36:54', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla Barnsley Supercharger', 53.489393, -1.486223, 35, '2020-03-21 22:37:40', '2020-03-21 22:37:40', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla Gretna Green Supercharger', 55.007810, -3.083087, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla London-Westfield London', 51.507888, -0.221972, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla Birchanger Green Supercharger', 51.871093, 0.194248, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla Folkestone - Eurotunnel Terminal Supercharger', 51.097070, 1.120452, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla London Heathrow', 51.510887, -0.460554, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla Stoke-on-Trent Southbound Supercharger', 52.994202, -2.290657, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla London - The Royal Victoria Docks Supercharger', 51.507719, 0.015861, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla Abington Supercharger', 55.507919, -3.694857, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla Supercharger Northampton', 52.186047, -0.891123, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla Warrington Supercharger', 53.339874, -2.571076, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla London Tower Supercharger / Tower Hotel', 51.506599, -0.073374, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla Dartford Supercharger', 51.438103, 0.268898, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla Maidstone Supercharger', 51.286220, 0.546082, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('South Mimms Welcome Break M25 Services Supercharger', 51.687523, -0.223616, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Reading Supercharger', 51.420600, -0.987965, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla Supercharger - Norton Park Hotel', 51.167228, -1.328010, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Exeter Supercharger', 50.685449, -3.448778, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Canary Wharf Tesla Supercharger', 51.504622, -0.016295, 35, '2020-03-21 22:37:41', '2020-03-21 22:37:41', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Oxford Supercharger', 51.737350, -1.094870, 35, '2020-03-21 22:44:09', '2020-03-21 22:44:09', 0.2400, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hopwood Park Services Tesla Supercharger', 52.363145, -1.945500, 35, '2020-03-21 22:37:41', '2020-03-28 11:07:40', 0.2400, NULL);

This is brilliant, do you mind if I share it online (Facebook group and my blog where I’m detailing some of TeslaMate stuff I’ve been up to).

I’d like to reshare two versions, the above and one I’ll edit with 0.00 prices for those of us with either free supercharging or remaining free miles :)
 
Not sure if this is of use to others, but a couple of months back I bulk created geofences for all of the UK Supercharger locations based on data taken from OpenChargeMap.

You can run the SQL below to add these to your existing Teslamate database, however you might need to clean-out any duplicates if you already have some of these defined.

This is brilliant - thank you very much!! Have you seen if a similar list exists for the wider European network anywhere?
 
  • Like
Reactions: Roy W.
Are you sure you are connecting to the container, not something that runs locally on you machine?

Port mapping on a running container cant be changed, you should stop the container and restart using the correct directive in the Docker compose file.
Compose file version 3 reference.

in my case it would be:

Code:
  database:
    image: postgres:12
    restart: always
    environment:
      - POSTGRES_USER=${TM_DB_USER}
      - POSTGRES_PASSWORD=${TM_DB_PASS}
      - POSTGRES_DB=${TM_DB_NAME}
    volumes:
      - teslamate-db:/var/lib/postgresql/data
ports:
      - 5432:5432

this would work assuming you don't have already anything running on this port in your local ubuntu.

You can always map this port to other available port e.g -8890:5432

My setup may be a bit different to yours as my teslamate and grafana is hosted in Azure and available on the internet, but in the instance of Postgres it would be identical (with yours having probably default values in the password and user sections

Sorry I didn't get back to original post - but the above is spot on. The distributed docker-compose.yml will not let you connect to the db running in the container directly. Making the above changes to map the port back to the host will allow it. Obviously be *very* careful if you are going to mess with the db.
 
This is brilliant - thank you very much!! Have you seen if a similar list exists for the wider European network anywhere?

This is all of the european (inc UK) network (from supercharger info). I cannot find a good source for the costing data so its all set to 0.

Code:
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Biberwier (SC), Austria', 47.372431, 10.886093, 35, '2020/02/15 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bregenz (SC), Austria', 47.488536, 9.739797, 35, '2017/12/15 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Flachau (SC), Austria', 47.354626, 13.386021, 35, '2017/09/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Graz  (SC), Austria', 47.037208, 15.478644, 35, '2015/07/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Innsbruck (SC), Austria', 47.264861, 11.428453, 35, '2016/07/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kapfenberg (SC), Austria', 47.450336, 15.317516, 35, '2017/06/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kitzbühel (SC), Austria', 47.459597, 12.385877, 35, '2015/05/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Langkampfen (SC), Austria', 47.534556, 12.09294, 35, '2019/05/07 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Laßnitzhöhe (SC), Austria', 47.071071, 15.577942, 35, '2018/08/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lermoos (SC), Austria', 47.3948, 10.887553, 35, '2015/12/15 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Liezen (SC), Austria', 47.55952, 14.251709, 35, '2016/11/10 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Linz - Bäckerfeldstraße  (SC), Austria', 48.237012, 14.240255, 35, '2015/07/01 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Poysdorf (SC), Austria', 48.676647, 16.622998, 35, '2017/12/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Salzburg (SC), Austria', 47.726937, 13.060702, 35, '2014/09/05 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('St. Anton (SC), Austria', 47.130862, 10.270811, 35, '2013/12/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('St. Georgen (SC), Austria', 47.929013, 13.502143, 35, '2017/11/24 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('St. Pölten (SC), Austria', 48.205756, 15.618428, 35, '2017/07/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('St. Valentin (SC), Austria', 48.19653, 14.527744, 35, '2015/10/09 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vienna - Tech Park Vienna  (SC), Austria', 48.1574455, 16.3345536, 35, '2014/04/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Villach (SC), Austria', 46.604079, 13.86908, 35, '2014/12/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wiener Neustadt (SC), Austria', 47.804883, 16.210756, 35, '2016/12/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aalst (SC), Belgium', 50.921724, 4.032527, 35, '2017/09/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aartselaar  (SC), Belgium', 51.1369638, 4.3773699, 35, '2014/12/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Antwerp (SC), Belgium', 51.268158, 4.402342, 35, '2017/12/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Arlon (SC), Belgium', 49.647975, 5.818863, 35, '2016/12/22 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brugge (SC), Belgium', 51.170127, 3.197162, 35, '2018/09/28 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Edegem (SC), Belgium', 51.1506204, 4.4334085, 35, '2019/04/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Heusden-Zolder (SC), Belgium', 50.993363, 5.242222, 35, '2017/06/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kortrijk (SC), Belgium', 50.805626, 3.274434, 35, '2017/07/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lokeren (SC), Belgium', 51.095118, 4.011868, 35, '2017/10/28 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Machelen (SC), Belgium', 50.887736, 4.453052, 35, '2016/07/04 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nivelles-Sud (SC), Belgium', 50.588397, 4.307388, 35, '2014/07/31 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Remouchamp (SC), Belgium', 50.484271, 5.70141, 35, '2020/02/15 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Verviers (SC), Belgium', 50.592323, 5.848511, 35, '2017/06/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wavre (SC), Belgium', 50.707559, 4.597822, 35, '2019/04/02 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Plovdiv (SC), Bulgaria', 42.144521, 24.768837, 35, '2020/03/11 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dugo Selo (SC), Croatia', 45.766601, 16.233971, 35, '2017/09/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dugopolje (SC), Croatia', 43.587987, 16.577041, 35, '2016/05/31 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Karlovac (SC), Croatia', 45.513107, 15.547314, 35, '2018/09/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Otočac (SC), Croatia', 44.893164, 15.183865, 35, '2017/09/22 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Senj (SC), Croatia', 44.989707, 14.89947, 35, '2015/09/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Slavonski Brod (SC), Croatia', 45.175641, 18.063889, 35, '2019/03/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vrgorac (SC), Croatia', 43.204105, 17.373824, 35, '2017/06/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zadar (SC), Croatia', 44.114082, 15.407112, 35, '2018/02/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brno (SC), CzechRepublic', 49.138336, 16.630748, 35, '2019/12/06 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Humpolec (SC), CzechRepublic', 49.521746, 15.347476, 35, '2016/07/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Olomouc (SC), CzechRepublic', 49.561356, 17.262209, 35, '2017/12/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vestec (SC), CzechRepublic', 49.9898398, 14.4907623, 35, '2017/09/24 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aarhus  (SC), Denmark', 56.178223, 10.139406, 35, '2015/02/06 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Åbenrå (SC), Denmark', 55.068518, 9.361098, 35, '2019/03/02 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Haverslev (SC), Denmark', 56.783428, 9.69082, 35, '2018/05/31 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hedensted (SC), Denmark', 55.786395, 9.667926, 35, '2017/06/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hjørring (SC), Denmark', 57.455791, 10.04227, 35, '2014/07/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Køge (SC), Denmark', 55.489273, 12.162788, 35, '2014/09/05 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Middelfart (SC), Denmark', 55.510639, 9.764306, 35, '2014/05/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nørre Alslev (SC), Denmark', 54.899872, 11.896921, 35, '2015/06/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Randers (SC), Denmark', 56.433685, 10.055412, 35, '2014/05/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rødekro (SC), Denmark', 55.067258, 9.361119, 35, '2014/11/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Slagelse (SC), Denmark', 55.387922, 11.361762, 35, '2016/02/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Äänekoski (SC), Finland', 62.516908, 25.691666, 35, '2016/01/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Huittinen (SC), Finland', 61.16844, 22.680099, 35, '2019/10/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Jalasjärvi (SC), Finland', 62.417805, 22.792112, 35, '2017/09/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kokkola (SC), Finland', 63.830141, 23.148574, 35, '2019/11/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Paimio (SC), Finland', 60.442961, 22.605621, 35, '2015/05/07 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pyhäjärvi (SC), Finland', 63.716298, 25.920103, 35, '2016/01/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pyhtää (SC), Finland', 60.489054, 26.554835, 35, '2017/12/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Toijala (SC), Finland', 61.181106, 23.885075, 35, '2015/05/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vierumäki (SC), Finland', 61.111599, 25.928814, 35, '2015/12/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire de Cambarette (SC), France', 43.424125, 5.989588, 35, '2019/07/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire de Châteauvillain - Orges (SC), France', 48.057681, 4.96061, 35, '2017/06/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire de Châteauvillain - Val Marnay (SC), France', 48.057341, 4.959604, 35, '2017/06/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire de Manissieux (SC), France', 45.69848, 4.977541, 35, '2017/03/09 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire de Reims-Champagne-Nord (SC), France', 49.119348, 4.245689, 35, '2016/07/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire de Reims-Champagne-Sud (SC), France', 49.120781, 4.24261, 35, '2016/07/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire de Saint-Priest (SC), France', 45.698042, 4.975513, 35, '2017/03/09 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire de Vidauban Sud (SC), France', 43.414592, 6.452515, 35, '2019/07/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire du Poulet de Bresse (SC), France', 46.496179, 5.310394, 35, '2017/12/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aix-en-Provence (SC), France', 43.510637, 5.456429, 35, '2015/12/17 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aix-en-Provence - Val de lArc (SC), France', 43.511938, 5.466433, 35, '2017/04/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Albaret-Sainte-Marie (SC), France', 44.870977, 3.252918, 35, '2016/07/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Amiens (SC), France', 49.863492, 2.27814, 35, '2017/10/25 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Archamps (SC), France', 46.136917, 6.124306, 35, '2014/09/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Auxerre (SC), France', 47.85183, 3.542802, 35, '2014/07/04 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bayonne (SC), France', 43.493245, -1.452739, 35, '2016/03/05 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Beaune (SC), France', 47.017089, 4.836543, 35, '2015/12/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bernin (SC), France', 45.265676, 5.876448, 35, '2016/12/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Besançon (SC), France', 47.234539, 5.901153, 35, '2018/07/31 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bordeaux (SC), France', 44.835346, -0.681374, 35, '2015/08/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bourges (SC), France', 47.049393, 2.344843, 35, '2016/06/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brive-la-Gaillarde (SC), France', 45.16724, 1.483119, 35, '2015/01/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Buchelay (SC), France', 48.990167, 1.671528, 35, '2020/02/25 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Caen (SC), France', 49.16398, -0.424802, 35, '2016/07/15 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cagnes-sur-Mer (SC), France', 43.666446, 7.127372, 35, '2017/02/15 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cagnes-sur-Mer – Polygone Riviera P2 (SC), France', 43.666884, 7.124728, 35, '2017/03/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Calais (SC), France', 50.924425, 1.80414, 35, '2015/02/28 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Caudan (SC), France', 47.788035, -3.331263, 35, '2016/10/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Chambéry (SC), France', 45.592227, 5.899842, 35, '2014/07/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Chambéry Barberaz (SC), France', 45.56085, 5.949646, 35, '2016/02/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Chapelle-sur-Erdre (SC), France', 47.282708, -1.549982, 35, '2015/12/02 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Charleville Mézières (SC), France', 49.736827, 4.744083, 35, '2019/06/10 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Chasseneuil-du-Poitou (SC), France', 46.670356, 0.362651, 35, '2016/12/01 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Châteauroux (SC), France', 46.863058, 1.716048, 35, '2016/04/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Clermont-Ferrand (SC), France', 45.785937, 3.141488, 35, '2016/02/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Collégien (SC), France', 48.830877, 2.678019, 35, '2016/11/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Eurotunnel (SC), France', 50.935031, 1.812951, 35, '2015/07/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Eurotunnel - Flexiplus Lounge (SC), France', 50.929973, 1.813182, 35, '2019/07/10 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Fontainebleau (SC), France', 48.3495627, 2.6067816, 35, '2019/03/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('La Léchère-les-Bains (SC), France', 45.51877, 6.482522, 35, '2019/01/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Langon (SC), France', 44.54244, -0.253972, 35, '2017/03/17 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Le Caylar (SC), France', 43.864589, 3.313277, 35, '2016/10/11 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Le Mans (SC), France', 48.041833, 0.175342, 35, '2015/04/17 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lille (SC), France', 50.583875, 3.088602, 35, '2015/08/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Limoges (SC), France', 45.867722, 1.271213, 35, '2019/06/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mâcon (SC), France', 46.346553, 4.850173, 35, '2014/07/11 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Matougues (SC), France', 48.991991, 4.244946, 35, '2014/08/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Metz (SC), France', 49.216495, 6.171078, 35, '2014/09/11 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Montélimar (SC), France', 44.6760522, 4.7963217, 35, '2019/07/05 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mont-Saint-Michel (SC), France', 48.568171, -1.543283, 35, '2018/05/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mougins (SC), France', 43.603659, 7.011155, 35, '2016/06/15 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mulhouse (SC), France', 47.782016, 7.388299, 35, '2015/07/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nancy (SC), France', 48.638215, 6.184349, 35, '2014/12/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Narbonne (SC), France', 43.167693, 2.986012, 35, '2014/08/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nimes (SC), France', 43.816537, 4.345114, 35, '2014/07/11 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Orange (SC), France', 44.112164, 4.851759, 35, '2014/10/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Orgeval (SC), France', 48.925026, 1.996508, 35, '2016/06/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Orléans (SC), France', 47.948869, 1.86831, 35, '2016/11/12 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pau (SC), France', 43.332257, -0.358762, 35, '2017/06/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rennes (SC), France', 48.08208, -1.684395, 35, '2015/07/24 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rouen (SC), France', 49.388964, 1.059818, 35, '2016/06/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rungis (SC), France', 48.754456, 2.351036, 35, '2015/08/01 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sailly-Flibeaucourt (SC), France', 50.167321, 1.755505, 35, '2017/07/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Saint-Brieuc (SC), France', 48.493453, -2.722645, 35, '2017/05/02 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Saintes (SC), France', 45.75, -0.661722, 35, '2014/11/06 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sallanches (SC), France', 45.951545, 6.62879, 35, '2019/12/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Senlis (SC), France', 49.208728, 2.6057883, 35, '2014/09/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sisteron (SC), France', 44.226199, 5.913554, 35, '2017/02/15 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Strasbourg (SC), France', 48.534041, 7.702054, 35, '2016/06/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Thiais (SC), France', 48.754865, 2.373034, 35, '2018/04/17 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Toulon (SC), France', 43.121199, 5.85086, 35, '2017/07/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Toulouse (SC), France', 43.769334, 1.361378, 35, '2014/12/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tours (SC), France', 47.407325, 0.744827, 35, '2014/10/11 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Troyes - Saint-Parres-aux-Tertres (SC), France', 48.293229, 4.130685, 35, '2018/07/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Urvillers (SC), France', 49.787019, 3.335626, 35, '2017/04/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Val-de-Meuse (SC), France', 47.99147, 5.51296, 35, '2017/07/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Valence (SC), France', 44.918953, 4.878081, 35, '2015/12/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Valenciennes (SC), France', 50.336704, 3.455931, 35, '2017/06/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vienne (SC), France', 45.587457, 4.787527, 35, '2015/07/17 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Achern (SC), Germany', 48.641373, 8.03762, 35, '2014/12/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aichstetten (SC), Germany', 47.880483, 10.039783, 35, '2013/12/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bad Rappenau (SC), Germany', 49.211936, 9.077322, 35, '2013/12/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Beelitz (SC), Germany', 52.266782, 12.922582, 35, '2018/03/10 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Berlin  (SC), Germany', 52.394056, 13.542307, 35, '2014/12/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bernau am Chiemsee (SC), Germany', 47.814441, 12.367768, 35, '2016/06/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bersteland (SC), Germany', 51.949095, 13.787957, 35, '2015/06/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bispingen (SC), Germany', 53.104089, 9.981917, 35, '2015/12/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Blankenfelde (SC), Germany', 52.308961, 13.444752, 35, '2015/09/01 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Braak (SC), Germany', 53.617854, 10.239499, 35, '2015/12/09 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brinkum (SC), Germany', 53.0282208, 8.8087104, 35, '2019/07/24 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bruchsal (SC), Germany', 49.138361, 8.562417, 35, '2019/02/15 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Busdorf (SC), Germany', 54.477896, 9.544913, 35, '2014/11/25 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dettelbach (SC), Germany', 49.77884, 10.068646, 35, '2018/12/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ellwangen (SC), Germany', 48.955856, 10.18254, 35, '2015/07/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Emsbüren (SC), Germany', 52.359241, 7.264215, 35, '2014/07/04 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Erftstadt (SC), Germany', 50.796469, 6.780077, 35, '2015/12/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Geiselwind (SC), Germany', 49.769144, 10.470409, 35, '2015/05/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gensingen (SC), Germany', 49.902512, 7.929372, 35, '2019/10/25 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gramschatzer Wald (SC), Germany', 49.912046, 10.001735, 35, '2014/06/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gützkow (SC), Germany', 53.943896, 13.396869, 35, '2019/08/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hamburg - Essener Straße  (SC), Germany', 53.668642, 9.995189, 35, '2014/07/26 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hengersberg (SC), Germany', 48.765472, 13.046667, 35, '2014/10/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Herbolzheim (SC), Germany', 48.227093, 7.753694, 35, '2018/06/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Herzsprung (SC), Germany', 53.06735, 12.53333, 35, '2014/12/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hilden (SC), Germany', 51.191263, 6.937104, 35, '2020/02/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hilpoltstein (SC), Germany', 49.160465, 11.26101, 35, '2015/07/01 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hirschberg (SC), Germany', 49.507337, 8.637361, 35, '2014/11/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hohenwarsleben (SC), Germany', 52.174057, 11.494488, 35, '2014/04/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Irschenberg (SC), Germany', 47.826777, 11.898642, 35, '2014/08/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Jettingen-Scheppach (SC), Germany', 48.411068, 10.440378, 35, '2013/12/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kaiserslautern Eselsfürth (SC), Germany', 49.459902, 7.82134, 35, '2015/12/17 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kamen (SC), Germany', 51.5701759, 7.6751678, 35, '2014/07/12 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kappel-Grafenhausen (SC), Germany', 48.281347, 7.77755, 35, '2019/03/28 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kirchheim bei München  (SC), Germany', 48.150947, 11.74846, 35, '2019/05/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lauenau (SC), Germany', 52.278674, 9.350953, 35, '2014/11/07 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Leonberg-Ost (SC), Germany', 48.785104, 9.017632, 35, '2016/04/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lohne (SC), Germany', 52.657695, 8.169447, 35, '2015/08/07 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lutterberg (SC), Germany', 51.370996, 9.633307, 35, '2014/06/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Malsfeld (SC), Germany', 51.087435, 9.485296, 35, '2014/12/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Moers (SC), Germany', 51.441844, 6.611776, 35, '2015/08/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mogendorf (SC), Germany', 50.482676, 7.75006, 35, '2015/03/10 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Motten (SC), Germany', 50.355562, 9.753987, 35, '2019/08/02 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mücke (SC), Germany', 50.645417, 8.989917, 35, '2014/09/25 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mühldorf (SC), Germany', 48.272557, 12.549892, 35, '2014/08/01 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Münchberg-Nord (SC), Germany', 50.202872, 11.776552, 35, '2014/05/12 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nempitz (SC), Germany', 51.290043, 12.137328, 35, '2015/04/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Neuberg (SC), Germany', 50.1817522, 9.0074826, 35, '2014/08/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nossen (SC), Germany', 51.082468, 13.27406, 35, '2014/12/10 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nürburgring (SC), Germany', 50.3352, 6.949047, 35, '2019/10/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Oberhonnefeld (SC), Germany', 50.562473, 7.525672, 35, '2018/12/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pfaffenhofen (SC), Germany', 48.518159, 11.562124, 35, '2020/01/25 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pfalzfeld (SC), Germany', 50.115761, 7.59807, 35, '2018/12/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rade (SC), Germany', 53.369722, 9.802193, 35, '2015/06/10 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rauenberg (SC), Germany', 49.273806, 8.695444, 35, '2020/01/17 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Regensburg (SC), Germany', 48.994967, 12.150416, 35, '2014/06/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rhüden (SC), Germany', 51.947228, 10.140842, 35, '2014/07/17 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sangerhausen (SC), Germany', 51.450532, 11.304467, 35, '2015/04/01 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Satteldorf (SC), Germany', 49.181658, 10.068557, 35, '2014/08/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Schweitenkirchen (SC), Germany', 48.510724, 11.58227, 35, '2015/01/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sindelsdorf (SC), Germany', 47.728161, 11.362397, 35, '2019/11/22 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Süderholz (SC), Germany', 54.092811, 13.085489, 35, '2015/10/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sulz-Vöhringen (SC), Germany', 48.343115, 8.662612, 35, '2014/12/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Uckerfelde (SC), Germany', 53.23499, 13.98606, 35, '2015/08/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ulm (SC), Germany', 48.457074, 10.030273, 35, '2015/08/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Waldlaubersheim (SC), Germany', 49.923972, 7.825736, 35, '2015/02/25 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Weimar (SC), Germany', 50.933645, 11.289118, 35, '2015/09/11 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wernberg-Köblitz (SC), Germany', 49.532694, 12.134861, 35, '2014/11/07 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wertheim (SC), Germany', 49.770564, 9.576403, 35, '2016/04/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Weyarn (SC), Germany', 47.86533, 11.790203, 35, '2019/02/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wiesbaden (SC), Germany', 50.059472, 8.346059, 35, '2015/10/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wilnsdorf (SC), Germany', 50.816873, 8.08576, 35, '2013/12/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wittenburg (SC), Germany', 53.507389, 11.096827, 35, '2015/11/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wittlich (SC), Germany', 49.97003, 6.86175, 35, '2019/03/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zella-Mehlis (SC), Germany', 50.643912, 10.68499, 35, '2015/07/24 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hamburg (SC), HotelLindtner', 53.460761, 9.939778, 35, '2015/03/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Debrecen (SC), Hungary', 47.541266, 21.583575, 35, '2019/12/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Fót (SC), Hungary', 47.580072, 19.16243, 35, '2019/10/28 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Györ (SC), Hungary', 47.633274, 17.660977, 35, '2017/12/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Miskolc (SC), Hungary', 48.058139, 20.799306, 35, '2019/12/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sormás (SC), Hungary', 46.460543, 16.906756, 35, '2017/12/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Szeged (SC), Hungary', 46.274152, 20.10498, 35, '2019/12/12 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Törökbálint (SC), Hungary', 47.439444, 18.889835, 35, '2019/10/28 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Reykjavík  (SC), Iceland', 64.124411, -21.776826, 35, '2019/12/26 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ballacolla (SC), Ireland', 52.86704, -7.481818, 35, '2017/04/26 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Birdhill (SC), Ireland', 52.757747, -8.40932, 35, '2017/11/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Castlebellingham-Northbound (SC), Ireland', 53.932462, -6.417717, 35, '2018/03/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Castlebellingham-Southbound (SC), Ireland', 53.924106, -6.411373, 35, '2018/03/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Affi (SC), Italy', 45.551296, 10.787143, 35, '2016/02/06 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aosta (SC), Italy', 45.73745, 7.371416, 35, '2015/05/22 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Arezzo (SC), Italy', 43.437399, 11.777607, 35, '2015/06/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Borca di Cadore (SC), Italy', 46.435158, 12.222934, 35, '2019/08/10 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brennero (SC), Italy', 46.99533, 11.502136, 35, '2015/06/26 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brescia (SC), Italy', 45.53224, 10.164969, 35, '2017/09/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Campogalliano (SC), Italy', 44.685971, 10.851913, 35, '2015/09/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Carpiano (SC), Italy', 45.34834, 9.282206, 35, '2015/07/10 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cavaglià (SC), Italy', 45.38967, 8.128911, 35, '2016/02/05 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ceprano (SC), Italy', 41.544226, 13.511958, 35, '2016/08/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cerignola (SC), Italy', 41.306389, 15.899738, 35, '2017/05/31 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dorno Est (SC), Italy', 45.1473468, 8.9912729, 35, '2014/09/12 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dorno Ovest (SC), Italy', 45.147886, 8.990914, 35, '2014/09/12 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Fano (SC), Italy', 43.802874, 13.015345, 35, '2016/07/07 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Firenze (SC), Italy', 43.810011, 11.177737, 35, '2018/03/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Forte dei Marmi (SC), Italy', 43.956416, 10.194539, 35, '2016/06/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Imperia (SC), Italy', 43.89258, 8.039121, 35, '2018/04/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Magliano (SC), Italy', 42.372085, 12.471703, 35, '2016/05/26 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mercato San Severino (SC), Italy', 40.771952, 14.746048, 35, '2017/03/07 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Modena (SC), Italy', 44.574119, 10.981157, 35, '2014/11/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mogliano Veneto (SC), Italy', 45.584722, 12.287137, 35, '2016/12/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Moncalieri (SC), Italy', 44.973333, 7.730113, 35, '2016/12/05 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Morano Calabro (SC), Italy', 39.875989, 16.065094, 35, '2017/07/31 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Occhiobello (SC), Italy', 44.918787, 11.594051, 35, '2017/02/22 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Palmanova (SC), Italy', 45.884158, 13.344976, 35, '2015/12/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Palmi (SC), Italy', 38.366929, 15.869555, 35, '2017/08/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Piacenza (SC), Italy', 45.039461, 9.753871, 35, '2017/12/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('San Giovanni Teatino (SC), Italy', 42.399194, 14.16396, 35, '2017/05/31 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sondrio (SC), Italy', 46.165099, 9.675995, 35, '2018/06/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tarquinia (SC), Italy', 42.1831722, 11.7879767, 35, '2019/07/10 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Trento (SC), Italy', 46.111577, 11.092008, 35, '2017/08/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Varazze (SC), Italy', 44.351747, 8.565401, 35, '2015/07/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Verona (SC), Italy', 45.412326, 10.970212, 35, '2014/12/11 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vicenza (SC), Italy', 45.508412, 11.626038, 35, '2019/10/24 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Krokomsporten (SC), Krokom', 63.328793, 14.43, 35, '2014/11/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Schaan (SC), Liechtenstein', 47.165317, 9.507795, 35, '2017/09/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mënsbech (SC), Luxembourg', 49.640622, 6.271219, 35, '2015/04/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Assen (SC), Netherlands', 52.992932, 6.524337, 35, '2019/12/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Badhoevedorp (SC), Netherlands', 52.328927, 4.78492, 35, '2018/11/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Breda (SC), Netherlands', 51.577507, 4.729798, 35, '2018/06/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Breukelen (SC), Netherlands', 52.167863, 4.988514, 35, '2018/05/25 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bunnik (SC), Netherlands', 52.061418, 5.20582, 35, '2019/03/15 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dordrecht (SC), Netherlands', 51.774425, 4.653024, 35, '2017/01/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Drachten (SC), Netherlands', 53.105883, 6.129539, 35, '2016/07/15 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Duiven (SC), Netherlands', 51.958931, 6.020418, 35, '2019/10/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Eindhoven (SC), Netherlands', 51.407268, 5.479937, 35, '2015/11/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Emmeloord (SC), Netherlands', 52.727421, 5.764693, 35, '2017/12/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gouda (SC), Netherlands', 52.022955, 4.684605, 35, '2019/03/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hoorn (SC), Netherlands', 52.650769, 5.038917, 35, '2017/03/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Horst (SC), Netherlands', 51.470008, 6.056974, 35, '2017/12/15 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Leiderdorp (SC), Netherlands', 52.1601396, 4.5491453, 35, '2019/04/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Naarden (SC), Netherlands', 52.30858, 5.141127, 35, '2019/10/22 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Oosterhout (SC), Netherlands', 51.626423, 4.869517, 35, '2013/12/06 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('s-Hertogenbosch (SC), Netherlands', 51.720551, 5.333622, 35, '2019/03/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tilburg  (SC), Netherlands', 51.606331, 5.005621, 35, '2014/07/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ugchelen (SC), Netherlands', 52.177996, 5.912627, 35, '2017/04/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Urmond (SC), Netherlands', 50.9881005, 5.7805974, 35, '2014/10/01 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vuren (SC), Netherlands', 51.838994, 5.090603, 35, '2018/03/17 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zaltbommel (SC), Netherlands', 51.796286, 5.255085, 35, '2018/03/17 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zevenaar (SC), Netherlands', 51.94066, 6.0818, 35, '2013/12/06 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zwolle (SC), Netherlands', 52.531375, 6.157279, 35, '2014/08/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aksdal (SC), Norway', 59.423006, 5.44306, 35, '2014/12/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Alvdal (SC), Norway', 62.114854, 10.616826, 35, '2014/09/22 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Åndalsnes (SC), Norway', 62.557729, 7.685328, 35, '2018/06/07 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Arna (SC), Norway', 60.421749, 5.467271, 35, '2018/06/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aspøya (SC), Norway', 63.011584, 7.977743, 35, '2014/08/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aurland (SC), Norway', 60.89863, 7.21082, 35, '2013/08/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Berkåk (SC), Norway', 62.832142, 10.010141, 35, '2017/12/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brumunddal (SC), Norway', 60.876807, 10.930353, 35, '2019/03/01 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bygland (SC), Norway', 58.82792, 7.796114, 35, '2015/11/12 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dombås (SC), Norway', 62.073923, 9.125562, 35, '2013/08/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Eidfjord (SC), Norway', 60.467438, 7.068209, 35, '2016/12/17 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Elverum (SC), Norway', 60.884145, 11.540043, 35, '2014/10/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gol (SC), Norway', 60.70232, 8.9862, 35, '2013/08/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gol West (SC), Norway', 60.697433, 8.953477, 35, '2020/02/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Grong (SC), Norway', 64.464913, 12.316532, 35, '2014/11/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gulsvik (SC), Norway', 60.381236, 9.610003, 35, '2018/06/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Haukås (SC), Norway', 60.484297, 5.375426, 35, '2015/02/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hernes (SC), Norway', 60.93304, 11.675945, 35, '2019/06/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hokksund (SC), Norway', 59.761033, 9.905583, 35, '2017/09/28 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Holmestrand (SC), Norway', 59.490174, 10.294565, 35, '2017/11/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hovden (SC), Norway', 59.561243, 7.356849, 35, '2017/09/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Innhavet (SC), Norway', 67.962327, 15.9298, 35, '2014/11/10 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lærdal (SC), Norway', 61.064428, 7.509793, 35, '2019/05/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lampeland (SC), Norway', 59.836224, 9.579221, 35, '2016/12/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lavik (SC), Norway', 61.103869, 5.51268, 35, '2017/07/07 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Leinstrand-Klett (SC), Norway', 63.325319, 10.305137, 35, '2015/02/02 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Levanger (SC), Norway', 63.734453, 11.281124, 35, '2019/07/04 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lier (north) (SC), Norway', 59.770833, 10.262139, 35, '2014/07/31 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lier (south) (SC), Norway', 59.766259, 10.257838, 35, '2013/08/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Liertoppen (SC), Norway', 59.808633, 10.299023, 35, '2020/03/12 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lillehammer (SC), Norway', 61.13045, 10.43491, 35, '2013/08/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lillesand (SC), Norway', 58.236817, 8.299052, 35, '2018/05/22 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lyngdal (SC), Norway', 58.15653, 7.10298, 35, '2013/08/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mo i Rana (SC), Norway', 66.307715, 14.152268, 35, '2019/06/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mosjøen (SC), Norway', 65.83483634, 13.191672563, 35, '2014/11/25 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mosjøen North (SC), Norway', 65.841737, 13.187839, 35, '2020/04/24 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nebbenes (SC), Norway', 60.312269, 11.145104, 35, '2016/08/31 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nes (SC), Norway', 60.58475, 9.985092, 35, '2015/12/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Norheimsund (SC), Norway', 60.372342, 6.141213, 35, '2017/09/22 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ørskog (SC), Norway', 62.520404, 6.915983, 35, '2018/07/10 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Os (SC), Norway', 60.192788, 5.4652, 35, '2018/07/12 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Øyer (SC), Norway', 61.243236, 10.434457, 35, '2018/12/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Porsgrunn (SC), Norway', 59.122098, 9.707564, 35, '2015/07/10 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ringdalskogen (SC), Norway', 59.112393, 10.108783, 35, '2017/12/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Røldal (SC), Norway', 59.816824, 6.752226, 35, '2018/11/02 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rugtvedt (SC), Norway', 59.037422, 9.674266, 35, '2019/06/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rygge (SC), Norway', 59.38753, 10.751039, 35, '2017/12/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sandane (SC), Norway', 61.7780226, 6.2131884, 35, '2014/07/06 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Setermoen (SC), Norway', 68.860147, 18.346723, 35, '2014/10/28 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Skarnes (SC), Norway', 60.248218, 11.74337, 35, '2019/12/11 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Skei (SC), Norway', 61.575568, 6.483719, 35, '2019/12/05 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Skibotn (SC), Norway', 69.392448, 20.268423, 35, '2017/06/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Skjåk - Bismo (SC), Norway', 61.883135, 8.267249, 35, '2016/11/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Solli (SC), Norway', 59.324292, 10.954448, 35, '2014/07/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sørkjosen (SC), Norway', 69.792498, 20.93907, 35, '2017/07/02 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Stjørdal (SC), Norway', 63.466385, 10.918098, 35, '2015/05/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Storjord (SC), Norway', 66.814045, 15.401738, 35, '2014/11/17 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sundebru (SC), Norway', 58.820783, 9.073746, 35, '2013/08/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vikeså (SC), Norway', 58.63192, 6.077767, 35, '2018/06/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vinje (SC), Norway', 59.5701306, 7.992551, 35, '2014/06/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vinstra (SC), Norway', 61.591797, 9.722393, 35, '2017/04/01 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Voss (SC), Norway', 60.658297, 6.436256, 35, '2017/12/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tystberga (SC), Nyköping', 58.918156, 17.367987, 35, '2014/12/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ciechocinek (SC), Poland', 52.874469, 18.773758, 35, '2018/03/01 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Katowice (SC), Poland', 50.254594, 19.046594, 35, '2016/12/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Katowice - Jankego (SC), Poland', 50.220179, 18.990308, 35, '2020/03/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kostomłoty (SC), Poland', 51.036946, 16.583294, 35, '2016/04/26 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Poznań (SC), Poland', 52.400285, 16.893091, 35, '2016/12/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Radom (SC), Poland', 51.379569, 21.125477, 35, '2020/01/15 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Trzebownisko (SC), Poland', 50.089246, 22.045561, 35, '2020/04/25 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Warsaw (SC), Poland', 52.207827, 21.029574, 35, '2020/01/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Alcácer do Sal (SC), Portugal', 38.391941, -8.513867, 35, '2018/08/31 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Alcantarilha (SC), Portugal', 37.150529, -8.364525, 35, '2019/04/06 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Fátima (SC), Portugal', 39.635478, -8.688469, 35, '2018/01/02 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Guarda (SC), Portugal', 40.559107, -7.230415, 35, '2018/05/12 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mealhada (SC), Portugal', 40.37306, -8.4805, 35, '2019/10/22 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Montemor-o-Novo (SC), Portugal', 38.645753, -8.247265, 35, '2018/01/05 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ribeira de Pena (SC), Portugal', 41.503684, -7.801877, 35, '2018/06/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zarechye (SC), Russia', 55.695015, 37.380434, 35, '2018/01/26 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aleksinac (SC), Serbia', 43.528789, 21.709381, 35, '2020/03/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Belgrade (SC), Serbia', 44.711568, 20.562039, 35, '2020/03/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bratislava (SC), Slovakia', 48.132138, 17.108438, 35, '2017/05/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Demänova (SC), Slovakia', 49.054644, 19.578833, 35, '2019/11/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zvolen (SC), Slovakia', 48.627379, 19.103481, 35, '2016/01/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kozina (SC), Slovenia', 45.60492, 13.928521, 35, '2015/04/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ljubljana (SC), Slovenia', 46.0520565, 14.45315, 35, '2014/07/26 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Maribor (SC), Slovenia', 46.533247, 15.699366, 35, '2017/03/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aguadulce (SC), Spain', 37.256871, -4.986068, 35, '2018/01/25 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Albacete (SC), Spain', 39.134675, -2.039013, 35, '2017/03/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Almaraz (SC), Spain', 39.791255, -5.695668, 35, '2018/04/26 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ariza (SC), Spain', 41.313192, -2.002201, 35, '2017/01/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Atalaya del Cañavate (SC), Spain', 39.538687, -2.254555, 35, '2018/07/04 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bembibre (SC), Spain', 42.623851, -6.451837, 35, '2018/02/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Burgos (SC), Spain', 42.312365, -3.704115, 35, '2016/12/26 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Caldes de Malavella (SC), Spain', 41.859029, 2.767237, 35, '2017/06/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cúllar (SC), Spain', 37.5540305, -2.6139444, 35, '2016/11/07 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Girona (SC), Spain', 41.998411, 2.817295, 35, '2015/07/01 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Granada (SC), Spain', 37.181805, -3.928417, 35, '2017/09/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Guarromán (SC), Spain', 38.143021, -3.722848, 35, '2017/12/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Jerez (SC), Spain', 36.692559, -6.160618, 35, '2019/11/22 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('L´Aldea (SC), Spain', 40.753019, 0.606421, 35, '2016/07/05 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('La Seu dUrgell (SC), Spain', 42.359108, 1.462297, 35, '2018/05/24 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lleida (SC), Spain', 41.663959, 0.605371, 35, '2016/09/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Madrid (SC), Spain', 40.443082, -3.691335, 35, '2019/10/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Manzanares (SC), Spain', 39.006855, -3.382999, 35, '2017/10/07 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mérida (SC), Spain', 38.921746, -6.375133, 35, '2017/12/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Murcia (SC), Spain', 38.038172, -1.149343, 35, '2016/09/22 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Reocin (SC), Spain', 43.355686, -4.094038, 35, '2019/06/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rivabellosa (SC), Spain', 42.701171, -2.91951, 35, '2017/11/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sant Cugat (SC), Spain', 41.498135, 2.072674, 35, '2017/09/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Seville (SC), Spain', 37.392573, -6.010369, 35, '2019/12/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tordesillas (SC), Spain', 41.516125, -4.943023, 35, '2017/08/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Valencia (SC), Spain', 39.542965, -0.451521, 35, '2016/07/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zaragoza (SC), Spain', 41.625707, -1.009618, 35, '2017/09/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Jaren (SC), Spydeberg', 59.617809, 11.004422, 35, '2019/07/24 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Arboga (SC), Sweden', 59.426307, 15.827684, 35, '2014/07/06 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Arvidsjaur (SC), Sweden', 65.590494, 19.183823, 35, '2019/06/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Borlänge (SC), Sweden', 60.478749, 15.438795, 35, '2020/02/11 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Edsbruk (SC), Sweden', 57.97985, 16.482407, 35, '2016/10/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Enköping (SC), Sweden', 59.658468, 17.076533, 35, '2018/06/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Falkenberg (SC), Sweden', 56.93167, 12.51805, 35, '2014/07/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gävle (SC), Sweden', 60.648513, 17.120583, 35, '2014/11/11 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Grums (SC), Sweden', 59.367618, 13.144922, 35, '2018/07/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hudiksvall (SC), Sweden', 61.715109, 17.042695, 35, '2019/12/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Jäckvik (SC), Sweden', 66.390131, 16.96506, 35, '2019/10/04 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Jung (SC), Sweden', 58.328002, 13.132237, 35, '2014/09/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kalmar (SC), Sweden', 56.673228, 16.321408, 35, '2016/07/15 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Karlskrona (SC), Sweden', 56.165403, 15.585989, 35, '2015/06/02 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Karlstad (SC), Sweden', 59.381535, 13.467609, 35, '2014/07/06 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kristianstad (SC), Sweden', 56.023216, 14.11831, 35, '2016/07/26 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kungälv (SC), Sweden', 57.8581639, 11.9982719, 35, '2018/06/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lagan (SC), Sweden', 57.028956, 14.014744, 35, '2014/10/11 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Löddeköpinge (SC), Sweden', 55.766399, 12.990671, 35, '2014/07/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Markaryd (SC), Sweden', 56.444823, 13.603767, 35, '2019/11/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mellbystrand (SC), Sweden', 56.500904, 12.9573, 35, '2017/12/10 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mora (SC), Sweden', 61.005921, 14.54418, 35, '2015/10/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Norrköping (SC), Sweden', 58.622192, 16.154991, 35, '2019/06/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ödeshög (SC), Sweden', 58.227173, 14.668821, 35, '2014/11/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Örnsköldsvik (SC), Sweden', 63.291556, 18.706134, 35, '2016/10/05 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Puoltikasvaara (SC), Sweden', 67.440617, 21.114774, 35, '2019/07/11 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Skellefteå (SC), Sweden', 64.76235, 21.002864, 35, '2016/10/05 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sollentuna (SC), Sweden', 59.496093, 17.924441, 35, '2014/11/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Stockholm Infracity  (SC), Sweden', 59.500624, 17.926818, 35, '2014/11/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Storlien (SC), Sweden', 63.31038, 12.109508, 35, '2020/02/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Storuman (SC), Sweden', 65.092773, 17.108301, 35, '2019/02/17 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sundsvall (SC), Sweden', 62.398404, 17.338877, 35, '2014/11/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sveg (SC), Sweden', 62.034603, 14.367991, 35, '2019/12/12 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tanum (SC), Sweden', 58.72117, 11.34538, 35, '2017/06/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Töcksfors (SC), Sweden', 59.509437, 11.822381, 35, '2017/07/01 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Töre (SC), Sweden', 65.911576, 22.657062, 35, '2019/04/18 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Torsby (SC), Sweden', 60.129704, 12.998069, 35, '2018/11/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Uddevalla (SC), Sweden', 58.3516862, 11.8116943, 35, '2014/07/09 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ulricehamn (SC), Sweden', 57.814003, 13.418759, 35, '2017/12/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Umeå (SC), Sweden', 63.811159, 20.250153, 35, '2016/10/05 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Uppsala (SC), Sweden', 59.939144, 17.656107, 35, '2017/10/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Beckenried (SC), Switzerland', 46.971497, 8.459258, 35, '2014/10/17 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bussigny (SC), Switzerland', 46.556706, 6.561566, 35, '2019/06/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dietikon (SC), Switzerland', 47.418041, 8.396577, 35, '2019/05/09 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Egerkingen (SC), Switzerland', 47.326963, 7.805343, 35, '2014/08/08 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Flüelen (SC), Switzerland', 46.913185, 8.623031, 35, '2017/12/15 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kriegstetten (SC), Switzerland', 47.175596, 7.598601, 35, '2017/12/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lully (SC), Switzerland', 46.832137, 6.859096, 35, '2013/12/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Maienfeld (SC), Switzerland', 47.003972, 9.525835, 35, '2014/10/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Martigny (SC), Switzerland', 46.126595, 7.060944, 35, '2014/12/12 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Melide (SC), Switzerland', 45.954229, 8.950579, 35, '2018/04/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Monte Ceneri/Rivera (SC), Switzerland', 46.138926, 8.90781, 35, '2015/02/06 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Oftringen (SC), Switzerland', 47.310788, 7.934951, 35, '2017/09/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pratteln (SC), Switzerland', 47.524843, 7.682486, 35, '2015/11/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Quinto (SC), Switzerland', 46.515263, 8.67061, 35, '2018/09/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rubigen (SC), Switzerland', 46.891778, 7.542771, 35, '2015/10/02 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Schaffhausen (SC), Switzerland', 47.721034, 8.646353, 35, '2017/05/24 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('St. Moritz (SC), Switzerland', 46.496797, 9.84272, 35, '2014/12/05 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Steg-Hohtenn (SC), Switzerland', 46.310323, 7.74971, 35, '2016/12/09 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zurich - Dietlikon (SC), Switzerland', 47.413063, 8.616766, 35, '2015/07/02 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Abington (SC), UK', 55.507944, -3.694786, 35, '2015/08/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aviemore (SC), UK', 57.189774, -3.836206, 35, '2017/09/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Barnsley (SC), UK', 53.489393, -1.486223, 35, '2015/03/04 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Birchanger Green (SC), UK', 51.871619, 0.193886, 35, '2015/08/11 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Birmingham-Hopwood Park (SC), UK', 52.363197, -1.945572, 35, '2015/07/10 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bristol - Cribbs Causeway (SC), UK', 51.526694, -2.599806, 35, '2014/10/28 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bristol - Lysander Road  (SC), UK', 51.522889, -2.609222, 35, '2020/03/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bristol - M5 (SC), UK', 51.477207, -2.706308, 35, '2016/06/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Burtonwood (SC), UK', 53.417605, -2.639522, 35, '2018/07/02 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Canary Wharf (SC), UK', 51.504346, -0.016146, 35, '2014/08/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Charnock Richard Northbound (SC), UK', 53.630562, -2.692578, 35, '2016/12/24 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dartford (SC), UK', 51.438052, 0.26879, 35, '2014/11/25 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dundee (SC), UK', 56.466428, -3.062962, 35, '2016/12/02 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Edinburgh Airport (SC), UK', 55.945361, -3.366667, 35, '2014/09/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Elveden (SC), UK', 52.38641, 0.664606, 35, '2016/07/05 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Eurocentral (SC), UK', 55.8358, -3.9845, 35, '2019/12/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Exeter (SC), UK', 50.685442, -3.448837, 35, '2014/11/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Fleet Northbound (SC), UK', 51.296156, -0.857274, 35, '2018/03/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Folkestone (SC), UK', 51.096752, 1.121336, 35, '2015/10/07 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Grantham (SC), UK', 52.948794, -0.677802, 35, '2017/04/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gretna Green (SC), UK', 55.0078, -3.083018, 35, '2015/08/02 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Heathrow Airport Terminal 5 (SC), UK', 51.478181, -0.515753, 35, '2016/12/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Leeds (SC), UK', 53.732769, -1.585628, 35, '2015/02/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lifton (SC), UK', 50.643377, -4.284553, 35, '2017/08/15 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Liphook (SC), UK', 51.076281, -0.831807, 35, '2018/03/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('London - Brent Cross (SC), UK', 51.57753, -0.223753, 35, '2015/01/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('London - North Greenwich (SC), UK', 51.503454, -0.000312, 35, '2020/01/07 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('London - Westfield (SC), UK', 51.507888, -0.221972, 35, '2014/10/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('London Park Royal  (SC), UK', 51.526668, -0.283421, 35, '2019/12/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('London Tower (SC), UK', 51.506333, -0.072778, 35, '2014/10/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Maidstone (SC), UK', 51.286224, 0.545783, 35, '2014/11/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Manchester South  (SC), UK', 53.430295, -2.179375, 35, '2019/11/06 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Membury Services Eastbound (SC), UK', 51.4839, -1.5568, 35, '2018/06/29 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Membury Services Westbound (SC), UK', 51.4813, -1.5561, 35, '2018/03/14 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Michaelwood Services Northbound (SC), UK', 51.656431, -2.434545, 35, '2017/09/07 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Newport Pagnell Southbound (SC), UK', 52.084312, -0.748467, 35, '2017/03/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Northampton (SC), UK', 52.185729, -0.89127, 35, '2014/12/19 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Oxford (SC), UK', 51.7374, -1.0948, 35, '2015/07/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Penrith-Tebay Southbound (SC), UK', 54.453104, -2.605743, 35, '2017/10/03 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Perth (SC), UK', 56.386, -3.4792, 35, '2019/03/26 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Portsmouth (SC), UK', 50.847773, -0.991137, 35, '2017/12/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Reading (SC), UK', 51.420611, -0.988028, 35, '2014/10/01 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Royal Victoria Docks (SC), UK', 51.507022, 0.015928, 35, '2014/06/09 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sarn (SC), UK', 51.535351, -3.577637, 35, '2016/07/25 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Scotch Corner (SC), UK', 54.4421, -1.6713, 35, '2018/06/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('South Mimms (SC), UK', 51.687536, -0.223548, 35, '2015/06/26 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Stoke-on-Trent Northbound (SC), UK', 52.993, -2.2903, 35, '2017/09/27 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Stoke-on-Trent Southbound (SC), UK', 52.99413, -2.290797, 35, '2015/11/10 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Telford (SC), UK', 52.677334, -2.399552, 35, '2017/09/30 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Warrington (SC), UK', 53.339515, -2.569358, 35, '2014/11/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Warwick Northbound (SC), UK', 52.216831, -1.50513, 35, '2017/04/12 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Warwick Southbound (SC), UK', 52.219105, -1.502085, 35, '2017/05/28 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Washington (SC), UK', 54.88762, -1.557413, 35, '2015/12/23 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('West Drayton (SC), UK', 51.511647, -0.461166, 35, '2015/07/16 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Winchester - Norton Park (SC), UK', 51.16725, -1.328024, 35, '2015/01/20 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wokingham (SC), UK', 51.428346, -0.898911, 35, '2019/09/13 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Woodall Southbound (SC), UK', 53.314145, -1.281904, 35, '2017/03/21 00:00:00', '2020-05-12 10:37:57', 0.000, NULL);
 
This is brilliant - thank you very much!! Have you seen if a similar list exists for the wider European network anywhere?
I've been fiddling with doing another export from OpenChargeMap, that has pricing for the bulk of Supercharger stations... however there remains the issue of currency conversion. Teslamate doesn't understand currency at the moment, and so we would have to convert each station's kWh price back (ideally) into your local currency. There is also the long-term issue of changes in supercharging sites.

A better solution would be to have Teslamate query something like OpenChargeMap to dynamically retrieve (and if necessary convert) the kWh values based on the location of the charging session.

I see the issue of sharing a common dataset of superchargers is already being discussed on the Teslamate Github, so this may be an opportunity where it can be improved in future.
 
I've been fiddling with doing another export from OpenChargeMap, that has pricing for the bulk of Supercharger stations... however there remains the issue of currency conversion. Teslamate doesn't understand currency at the moment, and so we would have to convert each station's kWh price back (ideally) into your local currency. There is also the long-term issue of changes in supercharging sites.

A better solution would be to have Teslamate query something like OpenChargeMap to dynamically retrieve (and if necessary convert) the kWh values based on the location of the charging session.

I see the issue of sharing a common dataset of superchargers is already being discussed on the Teslamate Github, so this may be an opportunity where it can be improved in future.

As always - the devil is in the details. Makes perfect sense. Do you have the link to the issue you mention above? I had a (cursory) glance but couldn't find it.
 
I've managed to find some cost data on the website so included that below. for the ones i've found i've changed them over to GBP

But as mentioned above, it would be good to have this built into the app with an API to the opencharge data if possible. But then it really needs to implement slowly changing dimensions into the DB. That would then allow different tariffs based off time (inc E7, Variable etc..)

Code:
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Biberwier (SC), Austria', 47.372431, 10.886093, 35, '2020/02/15 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bregenz (SC), Austria', 47.488536, 9.739797, 35, '2017/12/15 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Flachau (SC), Austria', 47.354626, 13.386021, 35, '2017/09/30 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Graz  (SC), Austria', 47.037208, 15.478644, 35, '2015/07/30 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Innsbruck (SC), Austria', 47.264861, 11.428453, 35, '2016/07/21 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kapfenberg (SC), Austria', 47.450336, 15.317516, 35, '2017/06/30 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kitzbühel (SC), Austria', 47.459597, 12.385877, 35, '2015/05/08 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Langkampfen (SC), Austria', 47.534556, 12.09294, 35, '2019/05/07 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Laßnitzhöhe (SC), Austria', 47.071071, 15.577942, 35, '2018/08/20 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lermoos (SC), Austria', 47.3948, 10.887553, 35, '2015/12/15 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Liezen (SC), Austria', 47.55952, 14.251709, 35, '2016/11/10 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Linz - Bäckerfeldstraße  (SC), Austria', 48.237012, 14.240255, 35, '2015/07/01 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Poysdorf (SC), Austria', 48.676647, 16.622998, 35, '2017/12/19 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Salzburg (SC), Austria', 47.726937, 13.060702, 35, '2014/09/05 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('St. Anton (SC), Austria', 47.130862, 10.270811, 35, '2013/12/19 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('St. Georgen (SC), Austria', 47.929013, 13.502143, 35, '2017/11/24 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('St. Pölten (SC), Austria', 48.205756, 15.618428, 35, '2017/07/13 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('St. Valentin (SC), Austria', 48.19653, 14.527744, 35, '2015/10/09 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vienna - Tech Park Vienna  (SC), Austria', 48.1574455, 16.3345536, 35, '2014/04/30 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Villach (SC), Austria', 46.604079, 13.86908, 35, '2014/12/19 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wiener Neustadt (SC), Austria', 47.804883, 16.210756, 35, '2016/12/21 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aalst (SC), Belgium', 50.921724, 4.032527, 35, '2017/09/30 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aartselaar  (SC), Belgium', 51.1369638, 4.3773699, 35, '2014/12/19 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Antwerp (SC), Belgium', 51.268158, 4.402342, 35, '2017/12/29 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Arlon (SC), Belgium', 49.647975, 5.818863, 35, '2016/12/22 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brugge (SC), Belgium', 51.170127, 3.197162, 35, '2018/09/28 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Edegem (SC), Belgium', 51.1506204, 4.4334085, 35, '2019/04/18 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Heusden-Zolder (SC), Belgium', 50.993363, 5.242222, 35, '2017/06/08 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kortrijk (SC), Belgium', 50.805626, 3.274434, 35, '2017/07/08 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lokeren (SC), Belgium', 51.095118, 4.011868, 35, '2017/10/28 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Machelen (SC), Belgium', 50.887736, 4.453052, 35, '2016/07/04 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nivelles-Sud (SC), Belgium', 50.588397, 4.307388, 35, '2014/07/31 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Remouchamp (SC), Belgium', 50.484271, 5.70141, 35, '2020/02/15 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Verviers (SC), Belgium', 50.592323, 5.848511, 35, '2017/06/29 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wavre (SC), Belgium', 50.707559, 4.597822, 35, '2019/04/02 00:00:00', '2020-05-12 12:18:59', 0.245614035087719, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Plovdiv (SC), Bulgaria', 42.144521, 24.768837, 35, '2020/03/11 00:00:00', '2020-05-12 12:18:59', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dugo Selo (SC), Croatia', 45.766601, 16.233971, 35, '2017/09/23 00:00:00', '2020-05-12 12:18:59', 0.196055684454756, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dugopolje (SC), Croatia', 43.587987, 16.577041, 35, '2016/05/31 00:00:00', '2020-05-12 12:18:59', 0.196055684454756, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Karlovac (SC), Croatia', 45.513107, 15.547314, 35, '2018/09/23 00:00:00', '2020-05-12 12:18:59', 0.196055684454756, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Otočac (SC), Croatia', 44.893164, 15.183865, 35, '2017/09/22 00:00:00', '2020-05-12 12:18:59', 0.196055684454756, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Senj (SC), Croatia', 44.989707, 14.89947, 35, '2015/09/30 00:00:00', '2020-05-12 12:18:59', 0.196055684454756, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Slavonski Brod (SC), Croatia', 45.175641, 18.063889, 35, '2019/03/29 00:00:00', '2020-05-12 12:18:59', 0.196055684454756, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vrgorac (SC), Croatia', 43.204105, 17.373824, 35, '2017/06/03 00:00:00', '2020-05-12 12:18:59', 0.196055684454756, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zadar (SC), Croatia', 44.114082, 15.407112, 35, '2018/02/27 00:00:00', '2020-05-12 12:18:59', 0.196055684454756, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brno (SC), CzechRepublic', 49.138336, 16.630748, 35, '2019/12/06 00:00:00', '2020-05-12 12:18:59', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Humpolec (SC), CzechRepublic', 49.521746, 15.347476, 35, '2016/07/19 00:00:00', '2020-05-12 12:18:59', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Olomouc (SC), CzechRepublic', 49.561356, 17.262209, 35, '2017/12/08 00:00:00', '2020-05-12 12:18:59', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vestec (SC), CzechRepublic', 49.9898398, 14.4907623, 35, '2017/09/24 00:00:00', '2020-05-12 12:18:59', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aarhus  (SC), Denmark', 56.178223, 10.139406, 35, '2015/02/06 00:00:00', '2020-05-12 12:18:59', 0.341176470588235, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Åbenrå (SC), Denmark', 55.068518, 9.361098, 35, '2019/03/02 00:00:00', '2020-05-12 12:18:59', 0.341176470588235, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Haverslev (SC), Denmark', 56.783428, 9.69082, 35, '2018/05/31 00:00:00', '2020-05-12 12:18:59', 0.341176470588235, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hedensted (SC), Denmark', 55.786395, 9.667926, 35, '2017/06/23 00:00:00', '2020-05-12 12:18:59', 0.341176470588235, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hjørring (SC), Denmark', 57.455791, 10.04227, 35, '2014/07/03 00:00:00', '2020-05-12 12:18:59', 0.341176470588235, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Køge (SC), Denmark', 55.489273, 12.162788, 35, '2014/09/05 00:00:00', '2020-05-12 12:18:59', 0.341176470588235, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Middelfart (SC), Denmark', 55.510639, 9.764306, 35, '2014/05/30 00:00:00', '2020-05-12 12:18:59', 0.341176470588235, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nørre Alslev (SC), Denmark', 54.899872, 11.896921, 35, '2015/06/27 00:00:00', '2020-05-12 12:18:59', 0.341176470588235, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Randers (SC), Denmark', 56.433685, 10.055412, 35, '2014/05/30 00:00:00', '2020-05-12 12:18:59', 0.341176470588235, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rødekro (SC), Denmark', 55.067258, 9.361119, 35, '2014/11/19 00:00:00', '2020-05-12 12:18:59', 0.341176470588235, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Slagelse (SC), Denmark', 55.387922, 11.361762, 35, '2016/02/21 00:00:00', '2020-05-12 12:18:59', 0.341176470588235, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Äänekoski (SC), Finland', 62.516908, 25.691666, 35, '2016/01/13 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Huittinen (SC), Finland', 61.16844, 22.680099, 35, '2019/10/16 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Jalasjärvi (SC), Finland', 62.417805, 22.792112, 35, '2017/09/30 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kokkola (SC), Finland', 63.830141, 23.148574, 35, '2019/11/16 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Paimio (SC), Finland', 60.442961, 22.605621, 35, '2015/05/07 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pyhäjärvi (SC), Finland', 63.716298, 25.920103, 35, '2016/01/13 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pyhtää (SC), Finland', 60.489054, 26.554835, 35, '2017/12/21 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Toijala (SC), Finland', 61.181106, 23.885075, 35, '2015/05/19 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vierumäki (SC), Finland', 61.111599, 25.928814, 35, '2015/12/18 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire de Cambarette (SC), France', 43.424125, 5.989588, 35, '2019/07/20 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire de Châteauvillain - Orges (SC), France', 48.057681, 4.96061, 35, '2017/06/18 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire de Châteauvillain - Val Marnay (SC), France', 48.057341, 4.959604, 35, '2017/06/18 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire de Manissieux (SC), France', 45.69848, 4.977541, 35, '2017/03/09 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire de Reims-Champagne-Nord (SC), France', 49.119348, 4.245689, 35, '2016/07/16 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire de Reims-Champagne-Sud (SC), France', 49.120781, 4.24261, 35, '2016/07/16 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire de Saint-Priest (SC), France', 45.698042, 4.975513, 35, '2017/03/09 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire de Vidauban Sud (SC), France', 43.414592, 6.452515, 35, '2019/07/03 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aire du Poulet de Bresse (SC), France', 46.496179, 5.310394, 35, '2017/12/16 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aix-en-Provence (SC), France', 43.510637, 5.456429, 35, '2015/12/17 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aix-en-Provence - Val de lArc (SC), France', 43.511938, 5.466433, 35, '2017/04/20 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Albaret-Sainte-Marie (SC), France', 44.870977, 3.252918, 35, '2016/07/08 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Amiens (SC), France', 49.863492, 2.27814, 35, '2017/10/25 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Archamps (SC), France', 46.136917, 6.124306, 35, '2014/09/30 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Auxerre (SC), France', 47.85183, 3.542802, 35, '2014/07/04 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bayonne (SC), France', 43.493245, -1.452739, 35, '2016/03/05 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Beaune (SC), France', 47.017089, 4.836543, 35, '2015/12/21 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bernin (SC), France', 45.265676, 5.876448, 35, '2016/12/23 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Besançon (SC), France', 47.234539, 5.901153, 35, '2018/07/31 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bordeaux (SC), France', 44.835346, -0.681374, 35, '2015/08/14 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bourges (SC), France', 47.049393, 2.344843, 35, '2016/06/29 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brive-la-Gaillarde (SC), France', 45.16724, 1.483119, 35, '2015/01/20 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Buchelay (SC), France', 48.990167, 1.671528, 35, '2020/02/25 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Caen (SC), France', 49.16398, -0.424802, 35, '2016/07/15 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cagnes-sur-Mer (SC), France', 43.666446, 7.127372, 35, '2017/02/15 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cagnes-sur-Mer – Polygone Riviera P2 (SC), France', 43.666884, 7.124728, 35, '2017/03/03 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Calais (SC), France', 50.924425, 1.80414, 35, '2015/02/28 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Caudan (SC), France', 47.788035, -3.331263, 35, '2016/10/08 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Chambéry (SC), France', 45.592227, 5.899842, 35, '2014/07/30 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Chambéry Barberaz (SC), France', 45.56085, 5.949646, 35, '2016/02/19 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Chapelle-sur-Erdre (SC), France', 47.282708, -1.549982, 35, '2015/12/02 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Charleville Mézières (SC), France', 49.736827, 4.744083, 35, '2019/06/10 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Chasseneuil-du-Poitou (SC), France', 46.670356, 0.362651, 35, '2016/12/01 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Châteauroux (SC), France', 46.863058, 1.716048, 35, '2016/04/20 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Clermont-Ferrand (SC), France', 45.785937, 3.141488, 35, '2016/02/18 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Collégien (SC), France', 48.830877, 2.678019, 35, '2016/11/18 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Eurotunnel (SC), France', 50.935031, 1.812951, 35, '2015/07/03 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Eurotunnel - Flexiplus Lounge (SC), France', 50.929973, 1.813182, 35, '2019/07/10 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Fontainebleau (SC), France', 48.3495627, 2.6067816, 35, '2019/03/30 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('La Léchère-les-Bains (SC), France', 45.51877, 6.482522, 35, '2019/01/03 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Langon (SC), France', 44.54244, -0.253972, 35, '2017/03/17 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Le Caylar (SC), France', 43.864589, 3.313277, 35, '2016/10/11 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Le Mans (SC), France', 48.041833, 0.175342, 35, '2015/04/17 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lille (SC), France', 50.583875, 3.088602, 35, '2015/08/14 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Limoges (SC), France', 45.867722, 1.271213, 35, '2019/06/20 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mâcon (SC), France', 46.346553, 4.850173, 35, '2014/07/11 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Matougues (SC), France', 48.991991, 4.244946, 35, '2014/08/14 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Metz (SC), France', 49.216495, 6.171078, 35, '2014/09/11 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Montélimar (SC), France', 44.6760522, 4.7963217, 35, '2019/07/05 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mont-Saint-Michel (SC), France', 48.568171, -1.543283, 35, '2018/05/29 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mougins (SC), France', 43.603659, 7.011155, 35, '2016/06/15 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mulhouse (SC), France', 47.782016, 7.388299, 35, '2015/07/23 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nancy (SC), France', 48.638215, 6.184349, 35, '2014/12/18 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Narbonne (SC), France', 43.167693, 2.986012, 35, '2014/08/08 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nimes (SC), France', 43.816537, 4.345114, 35, '2014/07/11 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Orange (SC), France', 44.112164, 4.851759, 35, '2014/10/27 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Orgeval (SC), France', 48.925026, 1.996508, 35, '2016/06/30 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Orléans (SC), France', 47.948869, 1.86831, 35, '2016/11/12 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pau (SC), France', 43.332257, -0.358762, 35, '2017/06/18 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rennes (SC), France', 48.08208, -1.684395, 35, '2015/07/24 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rouen (SC), France', 49.388964, 1.059818, 35, '2016/06/30 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rungis (SC), France', 48.754456, 2.351036, 35, '2015/08/01 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sailly-Flibeaucourt (SC), France', 50.167321, 1.755505, 35, '2017/07/13 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Saint-Brieuc (SC), France', 48.493453, -2.722645, 35, '2017/05/02 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Saintes (SC), France', 45.75, -0.661722, 35, '2014/11/06 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sallanches (SC), France', 45.951545, 6.62879, 35, '2019/12/21 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Senlis (SC), France', 49.208728, 2.6057883, 35, '2014/09/30 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sisteron (SC), France', 44.226199, 5.913554, 35, '2017/02/15 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Strasbourg (SC), France', 48.534041, 7.702054, 35, '2016/06/03 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Thiais (SC), France', 48.754865, 2.373034, 35, '2018/04/17 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Toulon (SC), France', 43.121199, 5.85086, 35, '2017/07/13 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Toulouse (SC), France', 43.769334, 1.361378, 35, '2014/12/18 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tours (SC), France', 47.407325, 0.744827, 35, '2014/10/11 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Troyes - Saint-Parres-aux-Tertres (SC), France', 48.293229, 4.130685, 35, '2018/07/20 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Urvillers (SC), France', 49.787019, 3.335626, 35, '2017/04/13 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Val-de-Meuse (SC), France', 47.99147, 5.51296, 35, '2017/07/08 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Valence (SC), France', 44.918953, 4.878081, 35, '2015/12/23 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Valenciennes (SC), France', 50.336704, 3.455931, 35, '2017/06/21 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vienne (SC), France', 45.587457, 4.787527, 35, '2015/07/17 00:00:00', '2020-05-12 12:18:59', 0.210526315789474, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Achern (SC), Germany', 48.641373, 8.03762, 35, '2014/12/14 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aichstetten (SC), Germany', 47.880483, 10.039783, 35, '2013/12/14 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bad Rappenau (SC), Germany', 49.211936, 9.077322, 35, '2013/12/14 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Beelitz (SC), Germany', 52.266782, 12.922582, 35, '2018/03/10 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Berlin  (SC), Germany', 52.394056, 13.542307, 35, '2014/12/08 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bernau am Chiemsee (SC), Germany', 47.814441, 12.367768, 35, '2016/06/30 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bersteland (SC), Germany', 51.949095, 13.787957, 35, '2015/06/19 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bispingen (SC), Germany', 53.104089, 9.981917, 35, '2015/12/08 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Blankenfelde (SC), Germany', 52.308961, 13.444752, 35, '2015/09/01 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Braak (SC), Germany', 53.617854, 10.239499, 35, '2015/12/09 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brinkum (SC), Germany', 53.0282208, 8.8087104, 35, '2019/07/24 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bruchsal (SC), Germany', 49.138361, 8.562417, 35, '2019/02/15 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Busdorf (SC), Germany', 54.477896, 9.544913, 35, '2014/11/25 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dettelbach (SC), Germany', 49.77884, 10.068646, 35, '2018/12/20 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ellwangen (SC), Germany', 48.955856, 10.18254, 35, '2015/07/16 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Emsbüren (SC), Germany', 52.359241, 7.264215, 35, '2014/07/04 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Erftstadt (SC), Germany', 50.796469, 6.780077, 35, '2015/12/08 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Geiselwind (SC), Germany', 49.769144, 10.470409, 35, '2015/05/13 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gensingen (SC), Germany', 49.902512, 7.929372, 35, '2019/10/25 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gramschatzer Wald (SC), Germany', 49.912046, 10.001735, 35, '2014/06/13 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gützkow (SC), Germany', 53.943896, 13.396869, 35, '2019/08/16 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hamburg - Essener Straße  (SC), Germany', 53.668642, 9.995189, 35, '2014/07/26 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hengersberg (SC), Germany', 48.765472, 13.046667, 35, '2014/10/30 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Herbolzheim (SC), Germany', 48.227093, 7.753694, 35, '2018/06/30 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Herzsprung (SC), Germany', 53.06735, 12.53333, 35, '2014/12/18 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hilden (SC), Germany', 51.191263, 6.937104, 35, '2020/02/14 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hilpoltstein (SC), Germany', 49.160465, 11.26101, 35, '2015/07/01 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hirschberg (SC), Germany', 49.507337, 8.637361, 35, '2014/11/13 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hohenwarsleben (SC), Germany', 52.174057, 11.494488, 35, '2014/04/30 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Irschenberg (SC), Germany', 47.826777, 11.898642, 35, '2014/08/27 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Jettingen-Scheppach (SC), Germany', 48.411068, 10.440378, 35, '2013/12/13 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kaiserslautern Eselsfürth (SC), Germany', 49.459902, 7.82134, 35, '2015/12/17 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kamen (SC), Germany', 51.5701759, 7.6751678, 35, '2014/07/12 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kappel-Grafenhausen (SC), Germany', 48.281347, 7.77755, 35, '2019/03/28 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kirchheim bei München  (SC), Germany', 48.150947, 11.74846, 35, '2019/05/21 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lauenau (SC), Germany', 52.278674, 9.350953, 35, '2014/11/07 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Leonberg-Ost (SC), Germany', 48.785104, 9.017632, 35, '2016/04/23 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lohne (SC), Germany', 52.657695, 8.169447, 35, '2015/08/07 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lutterberg (SC), Germany', 51.370996, 9.633307, 35, '2014/06/14 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Malsfeld (SC), Germany', 51.087435, 9.485296, 35, '2014/12/18 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Moers (SC), Germany', 51.441844, 6.611776, 35, '2015/08/27 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mogendorf (SC), Germany', 50.482676, 7.75006, 35, '2015/03/10 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Motten (SC), Germany', 50.355562, 9.753987, 35, '2019/08/02 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mücke (SC), Germany', 50.645417, 8.989917, 35, '2014/09/25 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mühldorf (SC), Germany', 48.272557, 12.549892, 35, '2014/08/01 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Münchberg-Nord (SC), Germany', 50.202872, 11.776552, 35, '2014/05/12 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nempitz (SC), Germany', 51.290043, 12.137328, 35, '2015/04/08 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Neuberg (SC), Germany', 50.1817522, 9.0074826, 35, '2014/08/13 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nossen (SC), Germany', 51.082468, 13.27406, 35, '2014/12/10 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nürburgring (SC), Germany', 50.3352, 6.949047, 35, '2019/10/14 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Oberhonnefeld (SC), Germany', 50.562473, 7.525672, 35, '2018/12/20 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pfaffenhofen (SC), Germany', 48.518159, 11.562124, 35, '2020/01/25 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pfalzfeld (SC), Germany', 50.115761, 7.59807, 35, '2018/12/21 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rade (SC), Germany', 53.369722, 9.802193, 35, '2015/06/10 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rauenberg (SC), Germany', 49.273806, 8.695444, 35, '2020/01/17 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Regensburg (SC), Germany', 48.994967, 12.150416, 35, '2014/06/18 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rhüden (SC), Germany', 51.947228, 10.140842, 35, '2014/07/17 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sangerhausen (SC), Germany', 51.450532, 11.304467, 35, '2015/04/01 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Satteldorf (SC), Germany', 49.181658, 10.068557, 35, '2014/08/08 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Schweitenkirchen (SC), Germany', 48.510724, 11.58227, 35, '2015/01/20 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sindelsdorf (SC), Germany', 47.728161, 11.362397, 35, '2019/11/22 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Süderholz (SC), Germany', 54.092811, 13.085489, 35, '2015/10/08 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sulz-Vöhringen (SC), Germany', 48.343115, 8.662612, 35, '2014/12/19 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Uckerfelde (SC), Germany', 53.23499, 13.98606, 35, '2015/08/03 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ulm (SC), Germany', 48.457074, 10.030273, 35, '2015/08/13 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Waldlaubersheim (SC), Germany', 49.923972, 7.825736, 35, '2015/02/25 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Weimar (SC), Germany', 50.933645, 11.289118, 35, '2015/09/11 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wernberg-Köblitz (SC), Germany', 49.532694, 12.134861, 35, '2014/11/07 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wertheim (SC), Germany', 49.770564, 9.576403, 35, '2016/04/08 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Weyarn (SC), Germany', 47.86533, 11.790203, 35, '2019/02/16 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wiesbaden (SC), Germany', 50.059472, 8.346059, 35, '2015/10/21 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wilnsdorf (SC), Germany', 50.816873, 8.08576, 35, '2013/12/13 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wittenburg (SC), Germany', 53.507389, 11.096827, 35, '2015/11/20 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wittlich (SC), Germany', 49.97003, 6.86175, 35, '2019/03/29 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zella-Mehlis (SC), Germany', 50.643912, 10.68499, 35, '2015/07/24 00:00:00', '2020-05-12 12:18:59', 0.289473684210526, NULL);
#REF!
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Debrecen (SC), Hungary', 47.541266, 21.583575, 35, '2019/12/13 00:00:00', '2020-05-12 12:18:59', 0.18338424558065, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Fót (SC), Hungary', 47.580072, 19.16243, 35, '2019/10/28 00:00:00', '2020-05-12 12:18:59', 0.18338424558065, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Györ (SC), Hungary', 47.633274, 17.660977, 35, '2017/12/19 00:00:00', '2020-05-12 12:18:59', 0.18338424558065, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Miskolc (SC), Hungary', 48.058139, 20.799306, 35, '2019/12/16 00:00:00', '2020-05-12 12:18:59', 0.18338424558065, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sormás (SC), Hungary', 46.460543, 16.906756, 35, '2017/12/20 00:00:00', '2020-05-12 12:18:59', 0.18338424558065, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Szeged (SC), Hungary', 46.274152, 20.10498, 35, '2019/12/12 00:00:00', '2020-05-12 12:18:59', 0.18338424558065, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Törökbálint (SC), Hungary', 47.439444, 18.889835, 35, '2019/10/28 00:00:00', '2020-05-12 12:18:59', 0.18338424558065, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Reykjavík  (SC), Iceland', 64.124411, -21.776826, 35, '2019/12/26 00:00:00', '2020-05-12 12:18:59', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ballacolla (SC), Ireland', 52.86704, -7.481818, 35, '2017/04/26 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Birdhill (SC), Ireland', 52.757747, -8.40932, 35, '2017/11/14 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Castlebellingham-Northbound (SC), Ireland', 53.932462, -6.417717, 35, '2018/03/29 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Castlebellingham-Southbound (SC), Ireland', 53.924106, -6.411373, 35, '2018/03/29 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Affi (SC), Italy', 45.551296, 10.787143, 35, '2016/02/06 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aosta (SC), Italy', 45.73745, 7.371416, 35, '2015/05/22 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Arezzo (SC), Italy', 43.437399, 11.777607, 35, '2015/06/14 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Borca di Cadore (SC), Italy', 46.435158, 12.222934, 35, '2019/08/10 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brennero (SC), Italy', 46.99533, 11.502136, 35, '2015/06/26 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brescia (SC), Italy', 45.53224, 10.164969, 35, '2017/09/30 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Campogalliano (SC), Italy', 44.685971, 10.851913, 35, '2015/09/23 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Carpiano (SC), Italy', 45.34834, 9.282206, 35, '2015/07/10 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cavaglià (SC), Italy', 45.38967, 8.128911, 35, '2016/02/05 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ceprano (SC), Italy', 41.544226, 13.511958, 35, '2016/08/13 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cerignola (SC), Italy', 41.306389, 15.899738, 35, '2017/05/31 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dorno Est (SC), Italy', 45.1473468, 8.9912729, 35, '2014/09/12 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dorno Ovest (SC), Italy', 45.147886, 8.990914, 35, '2014/09/12 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Fano (SC), Italy', 43.802874, 13.015345, 35, '2016/07/07 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Firenze (SC), Italy', 43.810011, 11.177737, 35, '2018/03/19 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Forte dei Marmi (SC), Italy', 43.956416, 10.194539, 35, '2016/06/29 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Imperia (SC), Italy', 43.89258, 8.039121, 35, '2018/04/13 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Magliano (SC), Italy', 42.372085, 12.471703, 35, '2016/05/26 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mercato San Severino (SC), Italy', 40.771952, 14.746048, 35, '2017/03/07 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Modena (SC), Italy', 44.574119, 10.981157, 35, '2014/11/27 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mogliano Veneto (SC), Italy', 45.584722, 12.287137, 35, '2016/12/23 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Moncalieri (SC), Italy', 44.973333, 7.730113, 35, '2016/12/05 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Morano Calabro (SC), Italy', 39.875989, 16.065094, 35, '2017/07/31 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Occhiobello (SC), Italy', 44.918787, 11.594051, 35, '2017/02/22 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Palmanova (SC), Italy', 45.884158, 13.344976, 35, '2015/12/29 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Palmi (SC), Italy', 38.366929, 15.869555, 35, '2017/08/14 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Piacenza (SC), Italy', 45.039461, 9.753871, 35, '2017/12/19 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('San Giovanni Teatino (SC), Italy', 42.399194, 14.16396, 35, '2017/05/31 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sondrio (SC), Italy', 46.165099, 9.675995, 35, '2018/06/20 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tarquinia (SC), Italy', 42.1831722, 11.7879767, 35, '2019/07/10 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Trento (SC), Italy', 46.111577, 11.092008, 35, '2017/08/08 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Varazze (SC), Italy', 44.351747, 8.565401, 35, '2015/07/29 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Verona (SC), Italy', 45.412326, 10.970212, 35, '2014/12/11 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vicenza (SC), Italy', 45.508412, 11.626038, 35, '2019/10/24 00:00:00', '2020-05-12 12:18:59', 0.263157894736842, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Krokomsporten (SC), Sweden', 63.328793, 14.43, 35, '2014/11/18 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Schaan (SC), Liechtenstein', 47.165317, 9.507795, 35, '2017/09/23 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mënsbech (SC), Luxembourg', 49.640622, 6.271219, 35, '2015/04/13 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Assen (SC), Netherlands', 52.992932, 6.524337, 35, '2019/12/20 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Badhoevedorp (SC), Netherlands', 52.328927, 4.78492, 35, '2018/11/21 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Breda (SC), Netherlands', 51.577507, 4.729798, 35, '2018/06/29 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Breukelen (SC), Netherlands', 52.167863, 4.988514, 35, '2018/05/25 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bunnik (SC), Netherlands', 52.061418, 5.20582, 35, '2019/03/15 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dordrecht (SC), Netherlands', 51.774425, 4.653024, 35, '2017/01/20 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Drachten (SC), Netherlands', 53.105883, 6.129539, 35, '2016/07/15 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Duiven (SC), Netherlands', 51.958931, 6.020418, 35, '2019/10/16 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Eindhoven (SC), Netherlands', 51.407268, 5.479937, 35, '2015/11/20 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Emmeloord (SC), Netherlands', 52.727421, 5.764693, 35, '2017/12/23 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gouda (SC), Netherlands', 52.022955, 4.684605, 35, '2019/03/13 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hoorn (SC), Netherlands', 52.650769, 5.038917, 35, '2017/03/03 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Horst (SC), Netherlands', 51.470008, 6.056974, 35, '2017/12/15 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Leiderdorp (SC), Netherlands', 52.1601396, 4.5491453, 35, '2019/04/18 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Naarden (SC), Netherlands', 52.30858, 5.141127, 35, '2019/10/22 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Oosterhout (SC), Netherlands', 51.626423, 4.869517, 35, '2013/12/06 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('s-Hertogenbosch (SC), Netherlands', 51.720551, 5.333622, 35, '2019/03/30 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tilburg  (SC), Netherlands', 51.606331, 5.005621, 35, '2014/07/03 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ugchelen (SC), Netherlands', 52.177996, 5.912627, 35, '2017/04/27 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Urmond (SC), Netherlands', 50.9881005, 5.7805974, 35, '2014/10/01 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vuren (SC), Netherlands', 51.838994, 5.090603, 35, '2018/03/17 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zaltbommel (SC), Netherlands', 51.796286, 5.255085, 35, '2018/03/17 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zevenaar (SC), Netherlands', 51.94066, 6.0818, 35, '2013/12/06 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zwolle (SC), Netherlands', 52.531375, 6.157279, 35, '2014/08/21 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aksdal (SC), Norway', 59.423006, 5.44306, 35, '2014/12/19 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Alvdal (SC), Norway', 62.114854, 10.616826, 35, '2014/09/22 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Åndalsnes (SC), Norway', 62.557729, 7.685328, 35, '2018/06/07 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Arna (SC), Norway', 60.421749, 5.467271, 35, '2018/06/21 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aspøya (SC), Norway', 63.011584, 7.977743, 35, '2014/08/08 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aurland (SC), Norway', 60.89863, 7.21082, 35, '2013/08/30 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Berkåk (SC), Norway', 62.832142, 10.010141, 35, '2017/12/16 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brumunddal (SC), Norway', 60.876807, 10.930353, 35, '2019/03/01 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bygland (SC), Norway', 58.82792, 7.796114, 35, '2015/11/12 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dombås (SC), Norway', 62.073923, 9.125562, 35, '2013/08/30 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Eidfjord (SC), Norway', 60.467438, 7.068209, 35, '2016/12/17 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Elverum (SC), Norway', 60.884145, 11.540043, 35, '2014/10/30 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gol (SC), Norway', 60.70232, 8.9862, 35, '2013/08/30 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gol West (SC), Norway', 60.697433, 8.953477, 35, '2020/02/21 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Grong (SC), Norway', 64.464913, 12.316532, 35, '2014/11/19 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gulsvik (SC), Norway', 60.381236, 9.610003, 35, '2018/06/21 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Haukås (SC), Norway', 60.484297, 5.375426, 35, '2015/02/27 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hernes (SC), Norway', 60.93304, 11.675945, 35, '2019/06/21 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hokksund (SC), Norway', 59.761033, 9.905583, 35, '2017/09/28 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Holmestrand (SC), Norway', 59.490174, 10.294565, 35, '2017/11/23 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hovden (SC), Norway', 59.561243, 7.356849, 35, '2017/09/30 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Innhavet (SC), Norway', 67.962327, 15.9298, 35, '2014/11/10 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lærdal (SC), Norway', 61.064428, 7.509793, 35, '2019/05/30 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lampeland (SC), Norway', 59.836224, 9.579221, 35, '2016/12/21 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lavik (SC), Norway', 61.103869, 5.51268, 35, '2017/07/07 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Leinstrand-Klett (SC), Norway', 63.325319, 10.305137, 35, '2015/02/02 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Levanger (SC), Norway', 63.734453, 11.281124, 35, '2019/07/04 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lier (north) (SC), Norway', 59.770833, 10.262139, 35, '2014/07/31 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lier (south) (SC), Norway', 59.766259, 10.257838, 35, '2013/08/13 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Liertoppen (SC), Norway', 59.808633, 10.299023, 35, '2020/03/12 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lillehammer (SC), Norway', 61.13045, 10.43491, 35, '2013/08/30 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lillesand (SC), Norway', 58.236817, 8.299052, 35, '2018/05/22 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lyngdal (SC), Norway', 58.15653, 7.10298, 35, '2013/08/30 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mo i Rana (SC), Norway', 66.307715, 14.152268, 35, '2019/06/19 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mosjøen (SC), Norway', 65.83483634, 13.191672563, 35, '2014/11/25 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mosjøen North (SC), Norway', 65.841737, 13.187839, 35, '2020/04/24 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nebbenes (SC), Norway', 60.312269, 11.145104, 35, '2016/08/31 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nes (SC), Norway', 60.58475, 9.985092, 35, '2015/12/18 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Norheimsund (SC), Norway', 60.372342, 6.141213, 35, '2017/09/22 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ørskog (SC), Norway', 62.520404, 6.915983, 35, '2018/07/10 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Os (SC), Norway', 60.192788, 5.4652, 35, '2018/07/12 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Øyer (SC), Norway', 61.243236, 10.434457, 35, '2018/12/19 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Porsgrunn (SC), Norway', 59.122098, 9.707564, 35, '2015/07/10 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ringdalskogen (SC), Norway', 59.112393, 10.108783, 35, '2017/12/18 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Røldal (SC), Norway', 59.816824, 6.752226, 35, '2018/11/02 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rugtvedt (SC), Norway', 59.037422, 9.674266, 35, '2019/06/27 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rygge (SC), Norway', 59.38753, 10.751039, 35, '2017/12/20 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sandane (SC), Norway', 61.7780226, 6.2131884, 35, '2014/07/06 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Setermoen (SC), Norway', 68.860147, 18.346723, 35, '2014/10/28 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Skarnes (SC), Norway', 60.248218, 11.74337, 35, '2019/12/11 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Skei (SC), Norway', 61.575568, 6.483719, 35, '2019/12/05 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Skibotn (SC), Norway', 69.392448, 20.268423, 35, '2017/06/30 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Skjåk - Bismo (SC), Norway', 61.883135, 8.267249, 35, '2016/11/16 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Solli (SC), Norway', 59.324292, 10.954448, 35, '2014/07/03 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sørkjosen (SC), Norway', 69.792498, 20.93907, 35, '2017/07/02 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Stjørdal (SC), Norway', 63.466385, 10.918098, 35, '2015/05/21 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Storjord (SC), Norway', 66.814045, 15.401738, 35, '2014/11/17 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sundebru (SC), Norway', 58.820783, 9.073746, 35, '2013/08/13 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vikeså (SC), Norway', 58.63192, 6.077767, 35, '2018/06/21 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vinje (SC), Norway', 59.5701306, 7.992551, 35, '2014/06/27 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Vinstra (SC), Norway', 61.591797, 9.722393, 35, '2017/04/01 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Voss (SC), Norway', 60.658297, 6.436256, 35, '2017/12/08 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tystberga (SC), Sweden', 58.918156, 17.367987, 35, '2014/12/03 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ciechocinek (SC), Poland', 52.874469, 18.773758, 35, '2018/03/01 00:00:00', '2020-05-12 12:18:59', 0.238921001926782, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Katowice (SC), Poland', 50.254594, 19.046594, 35, '2016/12/14 00:00:00', '2020-05-12 12:18:59', 0.238921001926782, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Katowice - Jankego (SC), Poland', 50.220179, 18.990308, 35, '2020/03/30 00:00:00', '2020-05-12 12:18:59', 0.238921001926782, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kostomłoty (SC), Poland', 51.036946, 16.583294, 35, '2016/04/26 00:00:00', '2020-05-12 12:18:59', 0.238921001926782, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Poznań (SC), Poland', 52.400285, 16.893091, 35, '2016/12/19 00:00:00', '2020-05-12 12:18:59', 0.238921001926782, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Radom (SC), Poland', 51.379569, 21.125477, 35, '2020/01/15 00:00:00', '2020-05-12 12:18:59', 0.238921001926782, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Trzebownisko (SC), Poland', 50.089246, 22.045561, 35, '2020/04/25 00:00:00', '2020-05-12 12:18:59', 0.238921001926782, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Warsaw (SC), Poland', 52.207827, 21.029574, 35, '2020/01/16 00:00:00', '2020-05-12 12:18:59', 0.238921001926782, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Alcácer do Sal (SC), Portugal', 38.391941, -8.513867, 35, '2018/08/31 00:00:00', '2020-05-12 12:18:59', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Alcantarilha (SC), Portugal', 37.150529, -8.364525, 35, '2019/04/06 00:00:00', '2020-05-12 12:18:59', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Fátima (SC), Portugal', 39.635478, -8.688469, 35, '2018/01/02 00:00:00', '2020-05-12 12:18:59', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Guarda (SC), Portugal', 40.559107, -7.230415, 35, '2018/05/12 00:00:00', '2020-05-12 12:18:59', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mealhada (SC), Portugal', 40.37306, -8.4805, 35, '2019/10/22 00:00:00', '2020-05-12 12:18:59', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Montemor-o-Novo (SC), Portugal', 38.645753, -8.247265, 35, '2018/01/05 00:00:00', '2020-05-12 12:18:59', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ribeira de Pena (SC), Portugal', 41.503684, -7.801877, 35, '2018/06/14 00:00:00', '2020-05-12 12:18:59', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zarechye (SC), Russia', 55.695015, 37.380434, 35, '2018/01/26 00:00:00', '2020-05-12 12:18:59', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aleksinac (SC), Serbia', 43.528789, 21.709381, 35, '2020/03/13 00:00:00', '2020-05-12 12:18:59', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Belgrade (SC), Serbia', 44.711568, 20.562039, 35, '2020/03/13 00:00:00', '2020-05-12 12:18:59', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bratislava (SC), Slovakia', 48.132138, 17.108438, 35, '2017/05/20 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Demänova (SC), Slovakia', 49.054644, 19.578833, 35, '2019/11/29 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zvolen (SC), Slovakia', 48.627379, 19.103481, 35, '2016/01/13 00:00:00', '2020-05-12 12:18:59', 0.219298245614035, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kozina (SC), Slovenia', 45.60492, 13.928521, 35, '2015/04/13 00:00:00', '2020-05-12 12:18:59', 0.228070175438597, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ljubljana (SC), Slovenia', 46.0520565, 14.45315, 35, '2014/07/26 00:00:00', '2020-05-12 12:18:59', 0.228070175438597, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Maribor (SC), Slovenia', 46.533247, 15.699366, 35, '2017/03/18 00:00:00', '2020-05-12 12:18:59', 0.228070175438597, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aguadulce (SC), Spain', 37.256871, -4.986068, 35, '2018/01/25 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Albacete (SC), Spain', 39.134675, -2.039013, 35, '2017/03/29 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Almaraz (SC), Spain', 39.791255, -5.695668, 35, '2018/04/26 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ariza (SC), Spain', 41.313192, -2.002201, 35, '2017/01/18 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Atalaya del Cañavate (SC), Spain', 39.538687, -2.254555, 35, '2018/07/04 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bembibre (SC), Spain', 42.623851, -6.451837, 35, '2018/02/18 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Burgos (SC), Spain', 42.312365, -3.704115, 35, '2016/12/26 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Caldes de Malavella (SC), Spain', 41.859029, 2.767237, 35, '2017/06/21 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cúllar (SC), Spain', 37.5540305, -2.6139444, 35, '2016/11/07 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Girona (SC), Spain', 41.998411, 2.817295, 35, '2015/07/01 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Granada (SC), Spain', 37.181805, -3.928417, 35, '2017/09/08 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Guarromán (SC), Spain', 38.143021, -3.722848, 35, '2017/12/30 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Jerez (SC), Spain', 36.692559, -6.160618, 35, '2019/11/22 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('L´Aldea (SC), Spain', 40.753019, 0.606421, 35, '2016/07/05 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('La Seu dUrgell (SC), Spain', 42.359108, 1.462297, 35, '2018/05/24 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lleida (SC), Spain', 41.663959, 0.605371, 35, '2016/09/08 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Madrid (SC), Spain', 40.443082, -3.691335, 35, '2019/10/03 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Manzanares (SC), Spain', 39.006855, -3.382999, 35, '2017/10/07 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mérida (SC), Spain', 38.921746, -6.375133, 35, '2017/12/27 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Murcia (SC), Spain', 38.038172, -1.149343, 35, '2016/09/22 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Reocin (SC), Spain', 43.355686, -4.094038, 35, '2019/06/13 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rivabellosa (SC), Spain', 42.701171, -2.91951, 35, '2017/11/30 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sant Cugat (SC), Spain', 41.498135, 2.072674, 35, '2017/09/20 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Seville (SC), Spain', 37.392573, -6.010369, 35, '2019/12/23 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tordesillas (SC), Spain', 41.516125, -4.943023, 35, '2017/08/20 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Valencia (SC), Spain', 39.542965, -0.451521, 35, '2016/07/20 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zaragoza (SC), Spain', 41.625707, -1.009618, 35, '2017/09/27 00:00:00', '2020-05-12 12:18:59', 0.254385964912281, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Jaren (SC), Norway', 59.617809, 11.004422, 35, '2019/07/24 00:00:00', '2020-05-12 12:18:59', 0.134600158353127, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Arboga (SC), Sweden', 59.426307, 15.827684, 35, '2014/07/06 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Arvidsjaur (SC), Sweden', 65.590494, 19.183823, 35, '2019/06/30 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Borlänge (SC), Sweden', 60.478749, 15.438795, 35, '2020/02/11 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Edsbruk (SC), Sweden', 57.97985, 16.482407, 35, '2016/10/13 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Enköping (SC), Sweden', 59.658468, 17.076533, 35, '2018/06/29 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Falkenberg (SC), Sweden', 56.93167, 12.51805, 35, '2014/07/18 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gävle (SC), Sweden', 60.648513, 17.120583, 35, '2014/11/11 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Grums (SC), Sweden', 59.367618, 13.144922, 35, '2018/07/19 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hudiksvall (SC), Sweden', 61.715109, 17.042695, 35, '2019/12/20 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Jäckvik (SC), Sweden', 66.390131, 16.96506, 35, '2019/10/04 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Jung (SC), Sweden', 58.328002, 13.132237, 35, '2014/09/23 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kalmar (SC), Sweden', 56.673228, 16.321408, 35, '2016/07/15 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Karlskrona (SC), Sweden', 56.165403, 15.585989, 35, '2015/06/02 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Karlstad (SC), Sweden', 59.381535, 13.467609, 35, '2014/07/06 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kristianstad (SC), Sweden', 56.023216, 14.11831, 35, '2016/07/26 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kungälv (SC), Sweden', 57.8581639, 11.9982719, 35, '2018/06/21 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lagan (SC), Sweden', 57.028956, 14.014744, 35, '2014/10/11 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Löddeköpinge (SC), Sweden', 55.766399, 12.990671, 35, '2014/07/29 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Markaryd (SC), Sweden', 56.444823, 13.603767, 35, '2019/11/08 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mellbystrand (SC), Sweden', 56.500904, 12.9573, 35, '2017/12/10 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mora (SC), Sweden', 61.005921, 14.54418, 35, '2015/10/16 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Norrköping (SC), Sweden', 58.622192, 16.154991, 35, '2019/06/29 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ödeshög (SC), Sweden', 58.227173, 14.668821, 35, '2014/11/21 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Örnsköldsvik (SC), Sweden', 63.291556, 18.706134, 35, '2016/10/05 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Puoltikasvaara (SC), Sweden', 67.440617, 21.114774, 35, '2019/07/11 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Skellefteå (SC), Sweden', 64.76235, 21.002864, 35, '2016/10/05 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sollentuna (SC), Sweden', 59.496093, 17.924441, 35, '2014/11/27 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Stockholm Infracity  (SC), Sweden', 59.500624, 17.926818, 35, '2014/11/21 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Storlien (SC), Sweden', 63.31038, 12.109508, 35, '2020/02/13 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Storuman (SC), Sweden', 65.092773, 17.108301, 35, '2019/02/17 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sundsvall (SC), Sweden', 62.398404, 17.338877, 35, '2014/11/19 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sveg (SC), Sweden', 62.034603, 14.367991, 35, '2019/12/12 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tanum (SC), Sweden', 58.72117, 11.34538, 35, '2017/06/20 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Töcksfors (SC), Sweden', 59.509437, 11.822381, 35, '2017/07/01 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Töre (SC), Sweden', 65.911576, 22.657062, 35, '2019/04/18 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Torsby (SC), Sweden', 60.129704, 12.998069, 35, '2018/11/16 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Uddevalla (SC), Sweden', 58.3516862, 11.8116943, 35, '2014/07/09 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ulricehamn (SC), Sweden', 57.814003, 13.418759, 35, '2017/12/21 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Umeå (SC), Sweden', 63.811159, 20.250153, 35, '2016/10/05 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Uppsala (SC), Sweden', 59.939144, 17.656107, 35, '2017/10/19 00:00:00', '2020-05-12 12:18:59', 0.211570247933884, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Beckenried (SC), Switzerland', 46.971497, 8.459258, 35, '2014/10/17 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bussigny (SC), Switzerland', 46.556706, 6.561566, 35, '2019/06/14 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dietikon (SC), Switzerland', 47.418041, 8.396577, 35, '2019/05/09 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Egerkingen (SC), Switzerland', 47.326963, 7.805343, 35, '2014/08/08 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Flüelen (SC), Switzerland', 46.913185, 8.623031, 35, '2017/12/15 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kriegstetten (SC), Switzerland', 47.175596, 7.598601, 35, '2017/12/14 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lully (SC), Switzerland', 46.832137, 6.859096, 35, '2013/12/13 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Maienfeld (SC), Switzerland', 47.003972, 9.525835, 35, '2014/10/27 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Martigny (SC), Switzerland', 46.126595, 7.060944, 35, '2014/12/12 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Melide (SC), Switzerland', 45.954229, 8.950579, 35, '2018/04/27 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Monte Ceneri/Rivera (SC), Switzerland', 46.138926, 8.90781, 35, '2015/02/06 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Oftringen (SC), Switzerland', 47.310788, 7.934951, 35, '2017/09/29 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pratteln (SC), Switzerland', 47.524843, 7.682486, 35, '2015/11/13 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Quinto (SC), Switzerland', 46.515263, 8.67061, 35, '2018/09/27 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rubigen (SC), Switzerland', 46.891778, 7.542771, 35, '2015/10/02 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Schaffhausen (SC), Switzerland', 47.721034, 8.646353, 35, '2017/05/24 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('St. Moritz (SC), Switzerland', 46.496797, 9.84272, 35, '2014/12/05 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Steg-Hohtenn (SC), Switzerland', 46.310323, 7.74971, 35, '2016/12/09 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Zurich - Dietlikon (SC), Switzerland', 47.413063, 8.616766, 35, '2015/07/02 00:00:00', '2020-05-12 12:18:59', 0.25, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Abington (SC), UK', 55.507944, -3.694786, 35, '2015/08/03 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aviemore (SC), UK', 57.189774, -3.836206, 35, '2017/09/27 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Barnsley (SC), UK', 53.489393, -1.486223, 35, '2015/03/04 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Birchanger Green (SC), UK', 51.871619, 0.193886, 35, '2015/08/11 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Birmingham-Hopwood Park (SC), UK', 52.363197, -1.945572, 35, '2015/07/10 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bristol - Cribbs Causeway (SC), UK', 51.526694, -2.599806, 35, '2014/10/28 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bristol - Lysander Road  (SC), UK', 51.522889, -2.609222, 35, '2020/03/23 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bristol - M5 (SC), UK', 51.477207, -2.706308, 35, '2016/06/03 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Burtonwood (SC), UK', 53.417605, -2.639522, 35, '2018/07/02 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Canary Wharf (SC), UK', 51.504346, -0.016146, 35, '2014/08/27 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Charnock Richard Northbound (SC), UK', 53.630562, -2.692578, 35, '2016/12/24 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dartford (SC), UK', 51.438052, 0.26879, 35, '2014/11/25 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dundee (SC), UK', 56.466428, -3.062962, 35, '2016/12/02 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Edinburgh Airport (SC), UK', 55.945361, -3.366667, 35, '2014/09/30 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Elveden (SC), UK', 52.38641, 0.664606, 35, '2016/07/05 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Eurocentral (SC), UK', 55.8358, -3.9845, 35, '2019/12/19 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Exeter (SC), UK', 50.685442, -3.448837, 35, '2014/11/30 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Fleet Northbound (SC), UK', 51.296156, -0.857274, 35, '2018/03/13 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Folkestone (SC), UK', 51.096752, 1.121336, 35, '2015/10/07 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Grantham (SC), UK', 52.948794, -0.677802, 35, '2017/04/29 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gretna Green (SC), UK', 55.0078, -3.083018, 35, '2015/08/02 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Heathrow Airport Terminal 5 (SC), UK', 51.478181, -0.515753, 35, '2016/12/23 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Leeds (SC), UK', 53.732769, -1.585628, 35, '2015/02/03 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lifton (SC), UK', 50.643377, -4.284553, 35, '2017/08/15 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Liphook (SC), UK', 51.076281, -0.831807, 35, '2018/03/14 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('London - Brent Cross (SC), UK', 51.57753, -0.223753, 35, '2015/01/03 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('London - North Greenwich (SC), UK', 51.503454, -0.000312, 35, '2020/01/07 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('London - Westfield (SC), UK', 51.507888, -0.221972, 35, '2014/10/16 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('London Park Royal  (SC), UK', 51.526668, -0.283421, 35, '2019/12/20 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('London Tower (SC), UK', 51.506333, -0.072778, 35, '2014/10/14 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Maidstone (SC), UK', 51.286224, 0.545783, 35, '2014/11/27 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Manchester South  (SC), UK', 53.430295, -2.179375, 35, '2019/11/06 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Membury Services Eastbound (SC), UK', 51.4839, -1.5568, 35, '2018/06/29 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Membury Services Westbound (SC), UK', 51.4813, -1.5561, 35, '2018/03/14 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Michaelwood Services Northbound (SC), UK', 51.656431, -2.434545, 35, '2017/09/07 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Newport Pagnell Southbound (SC), UK', 52.084312, -0.748467, 35, '2017/03/21 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Northampton (SC), UK', 52.185729, -0.89127, 35, '2014/12/19 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Oxford (SC), UK', 51.7374, -1.0948, 35, '2015/07/20 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Penrith-Tebay Southbound (SC), UK', 54.453104, -2.605743, 35, '2017/10/03 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Perth (SC), UK', 56.386, -3.4792, 35, '2019/03/26 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Portsmouth (SC), UK', 50.847773, -0.991137, 35, '2017/12/20 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Reading (SC), UK', 51.420611, -0.988028, 35, '2014/10/01 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Royal Victoria Docks (SC), UK', 51.507022, 0.015928, 35, '2014/06/09 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sarn (SC), UK', 51.535351, -3.577637, 35, '2016/07/25 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Scotch Corner (SC), UK', 54.4421, -1.6713, 35, '2018/06/27 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('South Mimms (SC), UK', 51.687536, -0.223548, 35, '2015/06/26 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Stoke-on-Trent Northbound (SC), UK', 52.993, -2.2903, 35, '2017/09/27 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Stoke-on-Trent Southbound (SC), UK', 52.99413, -2.290797, 35, '2015/11/10 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Telford (SC), UK', 52.677334, -2.399552, 35, '2017/09/30 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Warrington (SC), UK', 53.339515, -2.569358, 35, '2014/11/16 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Warwick Northbound (SC), UK', 52.216831, -1.50513, 35, '2017/04/12 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Warwick Southbound (SC), UK', 52.219105, -1.502085, 35, '2017/05/28 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Washington (SC), UK', 54.88762, -1.557413, 35, '2015/12/23 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('West Drayton (SC), UK', 51.511647, -0.461166, 35, '2015/07/16 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Winchester - Norton Park (SC), UK', 51.16725, -1.328024, 35, '2015/01/20 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wokingham (SC), UK', 51.428346, -0.898911, 35, '2019/09/13 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Woodall Southbound (SC), UK', 53.314145, -1.281904, 35, '2017/03/21 00:00:00', '2020-05-12 12:18:59', 0.24, NULL);
 
Last edited:
This is brilliant, do you mind if I share it online (Facebook group and my blog where I’m detailing some of TeslaMate stuff I’ve been up to).

I’d like to reshare two versions, the above and one I’ll edit with 0.00 prices for those of us with either free supercharging or remaining free miles :)
Sure feel free to share, it's public here anyway. As regards a second version there is already a setting in Teslamate to flag if you have Free Supercharging, take a look on the Settings pane.
 
  • Like
Reactions: DaveW
I've managed to find some cost data on the website so included that below. for the ones i've found i've changed them over to GBP

That's not a bad start, but obviously won't help as FX rates change over time... I suppose it could be scripted to update those rows daily, but it seems like a lot of work!

Just so you're aware though that SQL is missing prices for the UK stations.
 
<snip>
You can run the SQL below to add these to your existing Teslamate database, however you might need to clean-out any duplicates if you already have some of these defined.

Code:
## To access the Teslamate database (on the default Docker install), from a CLI shell run:
docker exec -it teslamate_database_1 psql -U teslamate

Any chance helping a newbie please? I'm trying to run the above from the CLI on a headless PI using SSH connection but get this error:

upload_2020-5-12_14-19-19.png


I'm presumably trying to connect to the database using incorrect name but have installed as per default and have no issues with the installation. I know it's going to be something simple... TIA[/CODE][/QUOTE]
 
Last edited:

Your post is a little broken there, but from the picture you tried to attach it appears your Postgres docker container has different name other than "teslamate_database_1".

Run "docker ps" to check what labels you currently have on your containers and substitute the one I suggested with the one you have for the Postgres instance.
 
  • Like
Reactions: mpandrew
I've used a the OpenChargeMap feed for Destination chargers, imported into (ImportJSON script) Google Sheets and converted / concatenated the content so you can now import those into your TeslaMate following @dakaix 's instructions from earlier.

Code:
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Castle Hotel', 51.015426, -3.104144, 35, '2020-03-15 09:42:00 ', '2020-03-15 09:42:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ockenden Manor Hotel and Spa', 51.006566, -0.144636, 35, '2019-10-18 05:53:00 ', '2019-10-18 05:53:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Congham Hall Hotel & Spa', 52.776536, 0.535316, 35, '2019-10-12 05:46:00 ', '2019-10-12 05:46:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bloomsburys Biddenden', 51.115045, 0.627198, 35, '2019-10-12 05:43:00 ', '2019-10-12 05:43:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Little Silver House', 50.971722, -3.964766, 35, '2019-10-12 05:42:00 ', '2019-10-12 05:42:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bovey Castle Hotel', 50.647716, -3.802057, 35, '2019-09-08 05:35:00 ', '2019-09-08 05:35:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('University of Edinburgh - Salisbury Green Hotel', 55.938104, -3.171161, 35, '2019-09-08 05:34:00 ', '2019-09-08 05:34:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ashford Designer Outlet', 51.136274, 0.87736, 35, '2019-09-07 05:32:00 ', '2019-09-07 07:30:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Trenderway Farm B&B and Wedding Venue', 50.351933, -4.512193, 35, '2019-08-28 20:07:00 ', '2019-08-28 20:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Radisson Blu Hotel Edinburgh', 55.950078, -3.186821, 35, '2019-08-28 20:01:00 ', '2019-08-28 20:01:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lime Wood', 50.862364, -1.554802, 35, '2019-08-28 19:56:00 ', '2019-08-28 19:56:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Moat House, Acton Trussell', 52.756225, -2.09662, 35, '2019-08-28 19:52:00 ', '2019-08-28 19:52:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Helen Browning's Royal Oak', 51.552089, -1.648055, 35, '2019-08-28 19:51:00 ', '2019-08-28 19:51:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Queens Arms', 51.000471, -2.521205, 35, '2019-07-31 05:50:00 ', '2019-07-31 05:50:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Kingsley At Eversley', 51.348932, -0.872132, 35, '2019-07-30 09:33:00 ', '2019-07-30 09:33:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tigh An Truish Inn', 56.31776, -5.584132, 35, '2019-07-30 09:27:00 ', '2019-08-28 19:49:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Blacksmiths Arms', 54.413944, -1.268319, 35, '2019-07-30 09:24:00 ', '2019-07-30 09:24:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bagshaw Hall', 53.214315, -1.678081, 35, '2019-07-30 09:20:00 ', '2019-07-30 09:20:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Durrant House Hotel', 51.034214, -4.212188, 35, '2019-07-30 09:17:00 ', '2019-07-30 09:17:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Fraithwen Cottages', 52.5976839827516, -3.38449336307031, 35, '2019-07-27 12:31:00 ', '2019-07-30 09:39:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Bedruthan Hotel & Spa', 50.469472, -5.028714, 35, '2019-07-19 05:42:00 ', '2019-07-19 05:42:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Trevase Granary', 51.92598, -2.711679, 35, '2019-07-15 16:19:00 ', '2019-07-15 16:19:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Willowbeck Lodge', 54.887439, -2.874733, 35, '2019-07-15 16:19:00 ', '2019-07-15 16:19:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Baraset Barn', 52.202722, -1.663184, 35, '2019-07-15 16:18:00 ', '2019-07-15 16:18:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Goudhurst Parish Hall', 51.112304, 0.458989, 35, '2019-07-15 16:11:00 ', '2019-07-15 16:11:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Budock Vean Hotel', 50.105833, -5.132658, 35, '2019-07-15 16:08:00 ', '2019-07-15 16:08:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Angelo's Preston', 53.757734, -2.697432, 35, '2019-07-15 16:07:00 ', '2019-07-15 16:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Swan Hotel', 52.326206, 1.679486, 35, '2019-07-15 16:06:00 ', '2019-07-15 16:06:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Oxford Country Cottages', 51.810714, -1.201071, 35, '2019-06-13 06:05:00 ', '2019-06-13 06:05:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Grove End', 51.653968, -0.376298, 35, '2019-06-11 10:10:00 ', '2019-06-11 10:10:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Voco St David's Hotel', 51.460517, -3.167412, 35, '2019-06-05 12:01:00 ', '2019-06-05 12:01:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Maryculter House Hotel', 57.089645, -2.258955, 35, '2019-06-05 11:35:00 ', '2019-06-05 11:35:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Imperial Hotel', 53.323206, -3.823826, 35, '2019-05-22 05:39:00 ', '2019-05-22 05:39:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Best Western Plus Windmill Village Hotel, Golf Club & Spa', 52.426967, -1.575998, 35, '2019-05-17 05:49:00 ', '2019-05-17 05:49:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('South Lodge Hotel', 51.015448, -0.263598, 35, '2019-05-17 05:48:00 ', '2019-05-17 05:48:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Royal Berkshire Hotel', 51.407508, -0.634834, 35, '2019-05-16 05:42:00 ', '2019-05-16 05:42:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pentillie Castle', 50.4593552384828, -4.24168086642294, 35, '2019-05-16 05:39:00 ', '2019-05-30 19:01:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Huntstile Organic Farm', 51.098375, -3.049415, 35, '2019-05-15 05:47:00 ', '2019-05-15 07:54:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Best Western Hotel Bristol At Newquay', 50.417432, -5.071411, 35, '2019-05-14 05:36:00 ', '2019-05-14 05:36:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Stormont Hotel', 54.593724, -5.839142, 35, '2019-04-19 05:55:00 ', '2019-04-19 05:55:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Glenapp Castle', 55.084021, -4.988205, 35, '2019-03-21 06:50:00 ', '2019-03-21 06:50:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Santos Higham Farm Hotel & Restaurant', 53.125839, -1.418979, 35, '2019-03-14 23:32:00 ', '2019-03-14 23:32:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cheshire Oaks Designer Outlet', 53.265172, -2.881299, 35, '2019-03-14 23:30:00 ', '2019-03-14 23:30:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Derby Conference Centre', 52.904484, -1.448363, 35, '2019-03-14 23:29:00 ', '2019-03-14 23:29:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Beechenhill Farm', 53.069769, -1.808354, 35, '2019-03-14 23:29:00 ', '2019-03-14 23:29:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Ship Hotel', 52.962966, 0.638358, 35, '2019-03-14 23:28:00 ', '2019-03-14 23:28:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('De Vere Tortworth Court', 51.630529, -2.443997, 35, '2019-03-14 23:23:00 ', '2019-03-14 23:23:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mansion House Llansteffan', 51.795576, -4.367758, 35, '2019-03-14 23:22:00 ', '2019-04-20 05:33:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Bewicke Arms and Hare Pie Rooms', 52.560318, -0.83903, 35, '2019-03-14 23:08:00 ', '2019-03-14 23:08:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Potarch Cafe and Restaurant', 57.064838, -2.650853, 35, '2019-03-14 23:07:00 ', '2019-03-14 23:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Chapter One Restaurant', 51.365871, 0.053105, 35, '2019-02-12 11:38:00 ', '2019-02-12 11:38:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Duncombe Arms', 52.98619, -1.826397, 35, '2019-02-12 11:35:00 ', '2019-02-12 11:35:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Skeabost House Hotel', 57.454418, -6.314832, 35, '2019-01-19 06:35:00 ', '2019-01-19 06:35:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rickman Barn Warter Priory Estate', 53.9443646, -0.6694364, 35, '2019-01-18 06:38:00 ', '2019-01-18 06:38:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Loch Fyne Oyster Oyster Bar and Deli', 56.271957, -4.927212, 35, '2019-01-04 06:37:00 ', '2019-01-04 06:37:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gleneagles', 56.283383, -3.75199, 35, '2019-01-04 06:36:00 ', '2019-01-04 06:36:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('South Lodge Boutique B&B', 52.024315, -0.661978, 35, '2019-01-03 08:10:00 ', '2019-01-03 08:10:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('New Place Hotel', 50.91852, -1.194756, 35, '2019-01-03 08:09:00 ', '2019-11-26 11:37:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Van Hage Garden Centre', 51.794335, -0.019857, 35, '2019-01-03 08:04:00 ', '2019-01-03 08:04:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pennyhill Park Hotel & Spa', 51.356898, -0.708899, 35, '2019-01-03 08:03:00 ', '2019-01-03 08:34:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mottram Hall Hotel', 53.312196, -2.173484, 35, '2019-01-03 08:02:00 ', '2019-01-03 08:02:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Wellington Arms', 51.336993, -0.999648, 35, '2019-01-03 07:54:00 ', '2019-01-03 07:54:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pool House', 57.766515, -5.602653, 35, '2019-01-03 07:53:00 ', '2019-01-03 08:51:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Maunsel House', 51.06568, -2.993692, 35, '2019-01-03 07:48:00 ', '2019-01-03 07:48:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Silverlake', 50.691168, -2.347711, 35, '2019-01-03 06:45:00 ', '2019-01-03 06:45:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pant du', 53.053461, -4.271632, 35, '2019-01-02 22:06:00 ', '2019-01-02 22:06:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Beechfield House Hotel', 51.390026, -2.140125, 35, '2019-01-02 22:05:00 ', '2019-01-02 22:05:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sunseeker Poole', 50.714549, -1.992038, 35, '2019-01-02 22:05:00 ', '2019-01-02 22:05:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ramada Birmingham Sutton Coldfield', 52.53636, -1.807692, 35, '2019-01-02 22:03:00 ', '2019-01-02 22:03:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Alderley Edge Hotel', 53.298634, -2.234038, 35, '2019-01-02 22:00:00 ', '2019-01-02 22:00:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gilwell Park', 51.648851, 0.003133, 35, '2019-01-02 21:59:00 ', '2019-01-02 21:59:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Raffles', 50.729368, -3.527845, 35, '2019-01-02 21:58:00 ', '2019-01-02 21:58:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Abbeyfield Lodge', 54.520455, -1.357175, 35, '2019-01-02 21:57:00 ', '2019-01-02 21:57:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bidwell Farm Cottages', 50.857717, -3.131476, 35, '2019-01-02 21:50:00 ', '2019-01-02 21:50:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Belfry Hotel & Resort', 52.554266, -1.731653, 35, '2019-01-02 21:47:00 ', '2019-01-02 21:47:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Beacon Hill Farm', 55.21768, -1.772388, 35, '2019-01-02 21:43:00 ', '2019-01-02 21:43:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Impeccable Pig', 54.653993, -1.448381, 35, '2019-01-02 21:40:00 ', '2019-01-02 21:40:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lords of the Manor', 51.906492, -1.774743, 35, '2019-01-02 21:35:00 ', '2019-01-02 21:35:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Amhurst Hotel', 51.574688, -0.079415, 35, '2019-01-02 21:34:00 ', '2019-01-02 21:34:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Castlecourt Shopping Centre', 54.600554, -5.93401, 35, '2019-01-02 21:33:00 ', '2019-01-02 21:33:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Orchard Hotel & East Midlands Conference Centre', 52.939233, -1.202268, 35, '2019-01-02 21:32:00 ', '2019-01-02 21:32:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Casa Hotel', 53.250759, -1.423999, 35, '2019-01-02 21:27:00 ', '2019-01-02 21:27:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mackays Hotel', 58.441213, -3.093845, 35, '2018-10-11 14:40:00 ', '2018-10-11 14:40:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Cooden Beach Hotel', 50.833172, 0.427386, 35, '2018-10-11 14:36:00 ', '2018-10-11 14:36:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Goblin Parking', 51.3767, -2.725675, 35, '2018-10-11 14:34:00 ', '2018-10-11 14:34:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Coast View Holiday Park', 50.534673, -3.503398, 35, '2018-10-11 14:32:00 ', '2018-10-11 14:32:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mains of Newhall', 57.657867, -4.175886, 35, '2018-10-11 14:30:00 ', '2018-10-11 14:30:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rialto Lounge', 51.230305, -0.334356, 35, '2018-10-11 14:24:00 ', '2018-10-11 14:24:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Cavendish Hotel', 53.24552, -1.616198, 35, '2018-10-11 14:23:00 ', '2018-10-11 14:23:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Jockey Club Rooms', 52.243055, 0.404978, 35, '2018-10-11 14:18:00 ', '2018-10-11 14:18:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Plas Coch Holiday Park', 53.190417, -4.233559, 35, '2018-10-11 14:16:00 ', '2018-10-11 14:16:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Eastwell Manor', 51.191723, 0.884945, 35, '2018-10-11 14:15:00 ', '2018-10-11 14:15:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Crab & Boar', 51.464135, -1.345669, 35, '2018-10-11 14:13:00 ', '2018-10-11 14:13:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hotel Plas Hyfryd', 51.800553, -4.745481, 35, '2018-10-11 14:07:00 ', '2018-10-11 14:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Morley Hayes', 52.975428, -1.404159, 35, '2018-10-11 14:07:00 ', '2018-10-11 14:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Incom House - Manchester United Car Parking', 53.466788, -2.294976, 35, '2018-10-11 14:06:00 ', '2018-10-11 14:06:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Black Boy Inn', 53.141267, -4.275942, 35, '2018-10-11 13:53:00 ', '2018-10-11 13:53:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Stonehenge Campsite and Glamping Pods', 51.164319, -1.89469, 35, '2018-10-11 13:52:00 ', '2018-10-11 13:52:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Esplanade Hotel', 50.412163, -5.103441, 35, '2018-10-11 13:51:00 ', '2018-10-11 13:51:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Higher Wiscombe', 50.733902, -3.162412, 35, '2018-10-11 13:51:00 ', '2018-10-11 13:51:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Frilford Heath Golf Club', 51.678889, -1.361854, 35, '2018-10-11 13:49:00 ', '2018-10-11 13:49:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Knock Castle Hotel & Spa', 56.380648, -3.846406, 35, '2018-10-11 13:48:00 ', '2018-10-11 13:48:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bourne Valley Inn', 51.246825, -1.391967, 35, '2018-10-11 13:47:00 ', '2018-10-11 13:47:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Platform Lifestyle, Home & Gift', 57.667259, -2.504158, 35, '2018-10-11 13:37:00 ', '2018-10-11 13:37:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Old Barn Tregonetha', 50.441052, -4.881115, 35, '2018-10-11 13:31:00 ', '2018-10-11 13:31:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gara Rock Hotel', 50.22102, -3.751569, 35, '2018-10-11 13:29:00 ', '2018-10-11 13:29:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Park House Hotel', 50.960783, -0.774322, 35, '2018-10-11 13:24:00 ', '2018-10-11 13:24:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Crown', 53.296088018584, -2.09186626721316, 35, '2018-10-11 13:23:00 ', '2019-06-07 06:04:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Duncombe Arms Waresley', 52.17529, -0.173312, 35, '2018-10-11 13:19:00 ', '2018-10-11 13:19:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dunalastair Hotel Suites', 56.700737, -4.187606, 35, '2018-10-11 13:13:00 ', '2018-10-11 13:13:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Forthside Car Park', 56.117575, -3.929941, 35, '2018-10-11 13:08:00 ', '2018-10-11 13:08:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Badgemore Park', 51.542472, -0.923848, 35, '2018-10-11 13:06:00 ', '2018-10-11 13:06:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Knockendarroch Hotel', 56.703645, -3.727347, 35, '2018-10-11 13:01:00 ', '2018-10-11 13:01:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Fisherman's Retreat', 53.655762, -2.290255, 35, '2018-10-11 12:58:00 ', '2018-10-11 12:58:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Upper Vobster Farm', 51.244346, -2.425788, 35, '2018-10-11 12:51:00 ', '2018-10-11 12:51:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Manor By the Lake', 51.892218, -2.126606, 35, '2018-10-11 12:49:00 ', '2018-10-11 12:49:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('White Horse Graffham', 50.950135, -0.683522, 35, '2018-10-11 12:49:00 ', '2018-10-11 12:49:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bicester Hotel Golf & Spa', 51.886358, -1.197036, 35, '2018-10-11 12:45:00 ', '2018-10-11 12:45:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Glynnmeddig Barn', 51.970089, -3.582229, 35, '2018-10-11 12:43:00 ', '2018-10-11 12:43:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Glencoe House', 56.687745, -5.099769, 35, '2018-10-11 12:42:00 ', '2018-10-11 12:42:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Carnegie Club At Skibo Castle', 57.873125, -4.132442, 35, '2018-10-11 12:37:00 ', '2018-10-11 12:44:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Caer Beris Manor Hotel & Restaurant', 52.145899, -3.419994, 35, '2018-10-11 12:37:00 ', '2018-10-11 12:37:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Anchor Inn', 51.18836, -0.903896, 35, '2018-10-11 12:37:00 ', '2018-10-11 12:38:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Homeplay Experience Centre', 51.415915, -0.430213, 35, '2018-10-11 12:34:00 ', '2019-01-03 06:33:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Three Acres Inn & Restaurant', 53.608493, -1.675404, 35, '2018-10-11 12:29:00 ', '2018-10-11 12:29:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('West Compton Manor', 50.746058, -2.62077, 35, '2018-10-11 12:29:00 ', '2018-10-11 12:29:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Fistral Beach Hotel & Spa', 50.412192, -5.106451, 35, '2018-10-11 12:28:00 ', '2018-10-11 12:28:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The White Horse', 50.923853, -0.823455, 35, '2018-10-11 12:25:00 ', '2018-10-11 12:25:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bryn Elltyd Eco Guesthouse', 52.984863, -3.966485, 35, '2018-10-03 18:55:00 ', '2018-10-03 18:55:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Kingham Plough', 51.9152786, -1.62122039999997, 35, '2018-08-28 09:01:00 ', '2018-10-12 05:35:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Lake of Menteith Hotel', 56.182191, -4.285272, 35, '2018-06-23 05:30:00 ', '2018-10-03 14:52:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Boulder Hut', 53.293712, -2.918056, 35, '2018-06-17 05:36:00 ', '2018-10-03 17:48:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Val Wyatt Marine', 51.507627, -0.87058, 35, '2018-06-17 05:33:00 ', '2018-10-03 22:28:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Boringdon Hall Hotel and Gaia Spa', 50.4016, -4.056363, 35, '2018-06-17 05:33:00 ', '2018-10-03 18:25:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Pipe and Glass Inn', 53.895633, -0.535119, 35, '2018-06-17 05:33:00 ', '2018-10-03 21:31:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Cawdor', 51.882965, -3.992978, 35, '2018-06-17 05:30:00 ', '2018-10-03 15:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Artist Residence Oxford', 51.774723, -1.433803, 35, '2018-06-17 05:29:00 ', '2018-10-03 18:26:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Retreat East', 52.134322, 1.121377, 35, '2018-06-08 05:38:00 ', '2018-10-03 18:49:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Chapel Farm Guest House', 51.129246, -4.225431, 35, '2018-06-08 05:35:00 ', '2018-10-03 19:59:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Beach House Restaurant', 51.557063, -4.161065, 35, '2018-06-08 05:33:00 ', '2018-10-03 14:41:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Shipton Mill', 51.620039, -2.130961, 35, '2018-06-08 05:33:00 ', '2018-10-03 19:33:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brewery House Bed & Breakfast', 54.963404, -4.485371, 35, '2018-06-08 05:32:00 ', '2018-10-03 21:22:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kernock Cottages', 50.450996, -4.293139, 35, '2018-06-08 05:31:00 ', '2018-10-03 17:50:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Park Cornwall', 50.464978, -5.024464, 35, '2018-06-08 05:28:00 ', '2018-10-03 20:42:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Radisson Red Glasgow', 55.858578, -4.283023, 35, '2018-06-06 05:38:00 ', '2018-10-03 20:46:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Green House', 50.719526, -1.86817, 35, '2018-06-06 05:35:00 ', '2018-10-03 22:29:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Knockaloe Beg Farm', 54.209458, -4.703778, 35, '2018-06-06 05:31:00 ', '2018-10-03 19:54:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Holiday Inn Newport', 51.600069, -2.927657, 35, '2018-06-06 05:31:00 ', '2018-10-03 19:46:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Westwood Cross Shopping Centre', 51.359431, 1.392518, 35, '2018-05-26 05:41:00 ', '2018-10-12 05:31:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Seaview Holiday Park', 50.237213, -4.819088, 35, '2018-05-26 05:38:00 ', '2018-10-03 21:03:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Roehampton Club', 51.462948, -0.24512, 35, '2018-05-26 05:33:00 ', '2018-10-03 21:43:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Summer Lodge Hotel Restaurant & Spa', 50.838401, -2.605612, 35, '2018-05-26 05:32:00 ', '2018-10-03 14:15:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Idle Rocks Hotel', 50.15914, -5.013321, 35, '2018-05-20 05:43:00 ', '2018-10-03 17:47:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Aviator', 51.279313, -0.754894, 35, '2018-05-20 05:40:00 ', '2018-10-03 14:45:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wooldown Holiday Cottages', 50.803284, -4.517118, 35, '2018-05-20 05:39:00 ', '2018-10-03 22:08:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lower Mill Estate', 51.651803, -1.971886, 35, '2018-05-20 05:38:00 ', '2018-10-03 15:08:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The White Hart - Sherington', 52.112144, -0.69978, 35, '2018-05-20 05:37:00 ', '2018-10-03 16:41:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Orkney Distillery', 58.984492, -2.962882, 35, '2018-05-20 05:36:00 ', '2018-10-03 14:42:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dandy's Topsoil', 53.205904, -2.955098, 35, '2018-05-20 05:29:00 ', '2018-10-03 15:53:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Bijou', 53.998485, -1.547124, 35, '2018-05-18 05:35:00 ', '2018-10-03 17:41:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mannin Hotel', 54.157603, -4.47767, 35, '2018-05-18 05:34:00 ', '2018-10-03 19:21:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Penblaith Barn', 51.876102, -2.727669, 35, '2018-05-18 05:33:00 ', '2018-10-03 19:57:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Nook', 50.86183, -3.379127, 35, '2018-05-05 05:55:00 ', '2018-10-03 18:34:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Alexandra Hotel & Restaurant', 50.724969, -2.937107, 35, '2018-05-05 05:53:00 ', '2018-10-03 19:17:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Northcote Hotel', 53.809178, -2.447541, 35, '2018-05-05 05:44:00 ', '2018-10-03 17:00:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Angel Hotel', 51.821228, -3.017742, 35, '2018-05-04 05:46:00 ', '2018-10-03 21:40:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Neuadd Cottages', 51.847417, -3.155876, 35, '2018-05-04 05:44:00 ', '2018-10-03 21:18:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Oakley Hall Hotel', 51.246272, -1.200399, 35, '2018-05-04 05:41:00 ', '2018-10-03 16:55:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Manor Arms', 52.308466, -2.363561, 35, '2018-05-04 05:40:00 ', '2018-10-03 17:09:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Riverside At Aymestrey', 52.283917, -2.844314, 35, '2018-05-04 05:40:00 ', '2018-10-03 15:54:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brooks Country House', 51.927975, -2.665882, 35, '2018-05-04 05:38:00 ', '2018-10-03 19:01:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Savoy Jersey', 49.191688, -2.109773, 35, '2018-05-04 05:36:00 ', '2018-10-03 17:30:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ardgye House', 57.64803, -3.415786, 35, '2018-05-04 05:32:00 ', '2018-10-03 19:22:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Housing Units', 53.516067, -2.153164, 35, '2018-05-04 05:31:00 ', '2018-10-03 14:42:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Old Rectory', 52.712304, -0.44691, 35, '2018-05-04 05:31:00 ', '2018-10-03 17:09:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sopwell House Hotel', 51.734835, -0.326967, 35, '2018-05-04 05:31:00 ', '2018-10-03 20:32:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ynyshir Restaurant and Rooms', 52.544703, -3.944609, 35, '2018-05-04 05:30:00 ', '2018-10-03 15:17:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ston Easton Park Hotel', 51.28482, -2.538786, 35, '2018-05-03 06:14:00 ', '2018-10-03 17:40:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Bull', 50.921106, -0.114709, 35, '2018-05-03 06:08:00 ', '2018-10-03 18:27:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Great Tangley Manor', 51.20903, -0.54141, 35, '2018-05-03 06:07:00 ', '2018-10-03 15:03:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Langley Castle Hotel', 54.957351, -2.258098, 35, '2018-05-03 06:06:00 ', '2018-10-03 22:25:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Shorefield Country Park', 50.736253, -1.617557, 35, '2018-04-16 05:06:00 ', '2018-10-03 16:17:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Storehouse', 57.601319, -4.454244, 35, '2018-04-16 05:04:00 ', '2018-10-03 21:23:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('10 Castle Street', 50.917563, -1.921482, 35, '2018-04-16 04:54:00 ', '2018-10-03 20:49:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('New Forest Lodge Retreat', 50.736249, -1.617557, 35, '2018-04-16 04:52:00 ', '2018-10-03 17:47:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Woodlands Farm', 54.351295, -1.310569, 35, '2018-04-16 04:52:00 ', '2018-10-03 15:18:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Baskerville Hall Hotel', 52.07872, -3.156996, 35, '2018-04-16 04:49:00 ', '2018-10-03 21:12:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Loch Tay Highland Lodges', 56.494009, -4.250902, 35, '2018-04-16 04:40:00 ', '2018-10-03 18:38:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Baylis House Hotel', 51.518666, -0.603956, 35, '2018-04-16 04:38:00 ', '2018-10-03 14:28:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Smile Style Dental Care Centre', 52.800851, -2.107937, 35, '2018-04-16 04:36:00 ', '2018-10-03 14:35:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Staniland Marina', 53.611202, -0.971956, 35, '2018-04-16 04:36:00 ', '2018-10-03 17:55:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Stanneylands Hotel', 53.342974, -2.22745, 35, '2018-04-16 04:35:00 ', '2018-10-03 17:35:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Citipark Church Watford', 51.654712, -0.397127, 35, '2018-03-30 05:55:00 ', '2018-10-03 18:15:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kids Today LTD', 50.979224, -1.393462, 35, '2018-03-30 05:51:00 ', '2018-10-03 20:41:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Grange Guest House', 51.86795, 0.169746, 35, '2018-03-30 05:48:00 ', '2018-10-03 14:14:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Haven Hall', 50.636882, -1.170496, 35, '2018-03-30 05:45:00 ', '2018-10-03 21:25:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Grafton Manor Hotel', 52.320617, -2.090698, 35, '2018-03-30 05:43:00 ', '2018-10-03 19:02:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Business Aviation Centre', 55.869102, -4.425442, 35, '2018-03-10 07:04:00 ', '2018-10-03 14:36:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Battle Brewery', 50.923638, 0.463742, 35, '2018-03-10 07:03:00 ', '2018-10-03 14:22:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gordon Castle Walled Garden and Cafe', 57.617702, -3.092091, 35, '2018-03-10 06:54:00 ', '2018-10-03 22:05:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Castle Lodge', 52.402802, 0.270345, 35, '2018-03-10 06:48:00 ', '2018-10-03 19:46:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lochan Lodge', 57.341143, -3.517515, 35, '2018-03-10 06:47:00 ', '2018-10-03 18:28:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Horspool Retreat', 53.028472, -0.933407, 35, '2018-02-09 06:48:00 ', '2018-10-03 14:43:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Holiday Inn Express Wigan', 53.554934, -2.666903, 35, '2018-02-06 06:47:00 ', '2018-10-03 21:52:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pennsylvania Castle', 50.538887, -2.430422, 35, '2018-02-06 06:41:00 ', '2018-10-03 17:53:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Lowry Hotel', 53.483121, -2.250559, 35, '2018-02-01 07:11:00 ', '2018-10-03 15:23:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Druidstone Hotel', 51.809787, -5.101992, 35, '2018-02-01 07:11:00 ', '2018-10-03 21:19:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Flackley Ash Hotel & Restaurant', 50.978348, 0.676587, 35, '2018-02-01 07:10:00 ', '2018-10-03 20:55:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Halston Aparthotel', 54.892651, -2.931875, 35, '2018-02-01 07:09:00 ', '2018-10-03 19:35:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Intercontinental London Park Lane', 51.503851, -0.150187, 35, '2018-02-01 07:02:00 ', '2018-10-03 19:33:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Groes Inn', 53.24907, -3.834715, 35, '2018-01-26 06:53:00 ', '2018-10-03 21:46:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Red Lion', 53.631076, -2.370914, 35, '2018-01-26 06:49:00 ', '2018-10-03 22:32:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Old Parsonage', 51.297847, -2.532994, 35, '2018-01-26 06:46:00 ', '2018-10-03 18:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Trearddur Bay Hotel', 53.280792, -4.622538, 35, '2018-01-26 06:46:00 ', '2018-10-03 15:44:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('J.W. Lees Brewery', 53.541817, -2.173266, 35, '2018-01-21 17:51:00 ', '2018-10-03 18:17:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Bell At Iden', 50.982048, 0.730917, 35, '2018-01-21 17:41:00 ', '2018-10-03 21:55:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('JJ'S Fuel Station, Convenience Store & Garden Centre', 53.143806, -0.23926, 35, '2018-01-21 17:39:00 ', '2018-10-03 20:18:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('House in the Yard', 53.18761, -4.340583, 35, '2018-01-21 17:36:00 ', '2018-10-03 21:39:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Anglesey Arms', 53.22272, -4.166325, 35, '2018-01-21 17:25:00 ', '2018-10-03 21:55:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rookery Manor Hotel and Spa', 51.274792, -2.920342, 35, '2018-01-21 17:25:00 ', '2018-10-03 20:10:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cynfal Farm Cottages', 52.59677, -4.051771, 35, '2018-01-21 17:23:00 ', '2018-10-03 16:32:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Taymouth Marina', 56.579129, -4.003527, 35, '2018-01-21 16:56:00 ', '2018-10-03 18:59:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Golden Pheasant', 53.273948, -2.418634, 35, '2018-01-21 16:55:00 ', '2018-10-03 17:04:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ducati Manchester', 53.430532, -2.318762, 35, '2018-01-21 16:54:00 ', '2018-10-03 16:47:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Belmore At Sale', 53.412376, -2.31989, 35, '2018-01-21 16:48:00 ', '2018-10-03 21:32:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Balgove Larder', 56.345497, -2.823472, 35, '2018-01-21 16:46:00 ', '2018-10-03 17:58:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('London Luton Airport', 51.877474, -0.373728, 35, '2018-01-21 16:45:00 ', '2018-10-03 17:43:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Botleys Mansion', 51.37391, -0.533845, 35, '2018-01-21 16:44:00 ', '2018-10-03 19:22:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Crescent Link Retail Park', 54.998647, -7.27343, 35, '2018-01-21 16:42:00 ', '2018-10-03 18:52:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kenwick Park Golf Hotel & Spa.', 53.344266, 0.019434, 35, '2018-01-21 16:42:00 ', '2018-10-03 15:48:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Croft Acre Holiday Cottages', 51.545176, -4.209902, 35, '2018-01-21 16:42:00 ', '2018-10-03 14:27:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kings Arms Hotel', 51.666337, -0.618314, 35, '2018-01-21 16:39:00 ', '2018-10-03 15:20:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Purewell', 50.739976, -1.743149, 35, '2018-01-21 16:35:00 ', '2018-10-03 15:26:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Huntsman Inn', 53.570356, -1.83982, 35, '2018-01-21 16:34:00 ', '2018-10-03 16:26:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Old Hall Country Breaks', 52.742343, 0.317568, 35, '2018-01-21 16:32:00 ', '2018-10-03 16:46:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Glan Yr Afon Inn', 53.255279, -3.20757, 35, '2018-01-21 16:30:00 ', '2018-10-03 14:35:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Soar Mill Cove Hotel', 50.224692, -3.818012, 35, '2018-01-21 16:24:00 ', '2018-10-03 21:38:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brackenborough Hotel', 53.389477, -0.017335, 35, '2018-01-21 16:21:00 ', '2018-10-03 17:51:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Scourie Lodge', 58.354532, -5.153566, 35, '2018-01-21 16:21:00 ', '2018-10-03 20:03:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Great Fosters', 51.417011, -0.544561, 35, '2018-01-21 16:20:00 ', '2018-10-03 21:31:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sudbury House', 51.658624, -1.577048, 35, '2018-01-21 15:57:00 ', '2018-10-03 19:49:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Penton Hook Marina', 51.410405, -0.508057, 35, '2018-01-21 15:56:00 ', '2018-10-03 19:38:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Thornham Deli', 52.95919, 0.573176, 35, '2018-01-21 15:53:00 ', '2018-10-03 19:02:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tyn Y Cornel Hotel', 52.667401, -3.903532, 35, '2018-01-21 15:53:00 ', '2018-10-03 18:12:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Glyn Y Coed Hotel', 52.920238, -4.230054, 35, '2018-01-21 15:52:00 ', '2018-10-03 14:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Boathouse', 53.188948, -2.881718, 35, '2018-01-21 15:51:00 ', '2018-10-03 19:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gwesty Links Hotel', 53.3170614011294, -3.81911148122333, 35, '2018-01-21 15:51:00 ', '2019-08-31 10:59:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Parade House', 51.174912, -4.211622, 35, '2018-01-21 15:43:00 ', '2018-10-03 19:40:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Felbrigg Lodge', 52.897644, 1.251284, 35, '2018-01-21 15:43:00 ', '2018-10-03 16:23:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mill Park Caravan & Camping', 51.204766, -4.064086, 35, '2018-01-21 15:35:00 ', '2018-10-03 20:12:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Battlesteads', 55.085873, -2.22048, 35, '2018-01-21 15:27:00 ', '2018-10-03 18:40:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Kings Aparthotel', 52.243366, 0.405848, 35, '2018-01-21 15:25:00 ', '2018-10-03 17:10:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hotel Number Four', 51.917093, -1.725337, 35, '2018-01-21 15:17:00 ', '2018-10-03 20:39:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Trossachs Pier', 56.233315, -4.428674, 35, '2018-01-21 15:15:00 ', '2018-10-03 15:37:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pure Green Energy', 51.37169, -1.417123, 35, '2018-01-21 15:14:00 ', '2018-10-03 18:59:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Roadhouse Restaurant', 51.8251955375787, -4.59468841552734, 35, '2017-11-19 10:18:00 ', '2018-10-03 19:43:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Orchard Cottage Ulverston', 54.163396, -3.145813, 35, '2017-11-12 06:53:00 ', '2018-10-03 21:32:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The White House', 52.945165, 0.68074, 35, '2017-11-12 06:53:00 ', '2018-10-03 20:18:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Mansefield Hotel', 57.646198, -3.319917, 35, '2017-11-12 06:51:00 ', '2018-10-03 18:13:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brownsover Hall Hotel', 52.393495, -1.25599, 35, '2017-11-12 06:51:00 ', '2018-10-03 19:36:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tree Top Escape', 50.965021, -4.009333, 35, '2017-11-12 06:47:00 ', '2019-04-02 11:00:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Foxhill Manor', 52.045532, -1.839849, 35, '2017-11-05 07:07:00 ', '2018-10-03 18:03:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Radisson Blu Edwardian New Providence Wharf', 51.50656, -0.003953, 35, '2017-11-05 07:06:00 ', '2018-10-03 22:05:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Devonshire Arms Hotel & Spa', 53.974887, -1.893851, 35, '2017-11-05 07:04:00 ', '2018-10-03 14:19:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Painswick', 51.78485, -2.193088, 35, '2017-11-05 07:04:00 ', '2018-10-03 18:00:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Bull - Beaumaris', 53.263608, -4.091592, 35, '2017-11-05 07:03:00 ', '2018-10-03 15:11:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Boughton Golf Club', 51.296189, 0.938451, 35, '2017-11-05 07:02:00 ', '2018-10-03 19:31:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Fish Hotel', 52.046878, -1.841694, 35, '2017-11-05 07:02:00 ', '2018-10-03 21:00:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hurley House Hotel', 51.534832, -0.791157, 35, '2017-11-05 07:01:00 ', '2018-10-03 17:12:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Grange Hotel York', 53.965789, -1.091182, 35, '2017-11-05 07:01:00 ', '2018-10-03 21:48:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Crown Inn', 51.666293, -0.616727, 35, '2017-11-05 06:59:00 ', '2018-10-03 21:27:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Radisson Blu Edwardian Heathrow Hotel', 51.481476, -0.440958, 35, '2017-11-05 06:59:00 ', '2018-10-03 16:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Devonshire Fell', 54.044245, -1.953381, 35, '2017-11-05 06:58:00 ', '2018-10-03 17:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Barnsley House', 51.743257, -1.890791, 35, '2017-11-05 06:58:00 ', '2018-10-03 17:34:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Slieve Donard Resort & Spa', 54.215748, -5.885667, 35, '2017-11-05 06:57:00 ', '2018-10-03 21:21:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sheraton Grand Hotel & Spa', 55.946718, -3.208237, 35, '2017-11-05 06:57:00 ', '2018-10-03 22:08:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('English Oak Vineyard', 50.766851, -2.073197, 35, '2017-11-05 06:57:00 ', '2018-10-03 19:57:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Etchinghill Golf Club', 51.117691, 1.092621, 35, '2017-11-05 06:56:00 ', '2018-10-03 19:24:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Culloden Hotel & Spa', 54.652147, -5.802209, 35, '2017-11-05 06:55:00 ', '2018-10-03 18:32:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sharvedda', 58.574434, -4.014016, 35, '2017-11-05 06:54:00 ', '2018-10-03 16:46:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Calcot Manor Hotel & Spa', 51.652471, -2.231946, 35, '2017-11-05 06:54:00 ', '2018-10-03 17:46:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Barns Hotel', 52.124744, -0.430171, 35, '2017-11-05 06:54:00 ', '2018-10-03 17:11:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gillingham Retail Park', 51.368895, 0.577833, 35, '2017-11-05 06:54:00 ', '2019-12-12 16:22:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bower House Inn', 54.390547, -3.33964, 35, '2017-11-05 06:53:00 ', '2018-10-03 19:55:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Cow Co. & Tom's Eco Lodge', 50.679503, -1.469999, 35, '2017-11-05 06:53:00 ', '2019-12-30 19:06:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wyboston Lakes', 52.201358, -0.291466, 35, '2017-11-05 06:52:00 ', '2018-10-03 21:45:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Boskerris Hotel', 50.196282, -5.465052, 35, '2017-10-22 05:46:00 ', '2018-10-03 22:03:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Daylesford Farm', 51.929015, -1.642669, 35, '2017-10-22 05:46:00 ', '2018-10-03 17:10:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cononley Hall Bed & Breakfast', 53.91857, -2.018793, 35, '2017-10-22 05:44:00 ', '2018-10-03 21:17:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Taste Perthshire', 56.49179, -3.506574, 35, '2017-10-20 05:44:00 ', '2018-10-03 14:47:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Beach Lodge Hotel', 53.336436, 0.269174, 35, '2017-10-20 05:43:00 ', '2018-10-03 16:17:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Country Park Hotel', 53.715245, -0.454318, 35, '2017-10-20 05:40:00 ', '2018-10-03 19:39:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Mill House', 53.786105, -0.451577, 35, '2017-10-20 05:39:00 ', '2018-10-03 20:01:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Manchester Fort Shopping Park', 53.497949, -2.234909, 35, '2017-09-27 19:36:00 ', '2018-10-03 15:01:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Chateau Rhianfa', 53.2382, -4.14395, 35, '2017-09-27 19:31:00 ', '2018-10-03 17:36:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Devon Hotel', 50.69202, -3.517897, 35, '2017-09-27 19:29:00 ', '2018-10-03 15:45:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Strattons Hotel', 52.649129, 0.687113, 35, '2017-09-27 19:25:00 ', '2018-10-03 20:08:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lanhydrock Hotel & Golf Club', 50.449689, -4.714279, 35, '2017-09-27 19:20:00 ', '2018-10-03 20:25:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('River Dart Country Park', 50.517219, -3.789148, 35, '2017-09-27 19:19:00 ', '2018-10-03 21:03:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Carrington Arms', 52.068429, -0.670838, 35, '2017-09-15 05:36:00 ', '2018-10-03 14:46:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('St Moritz Hotel', 50.567, -4.9201, 35, '2017-09-15 05:36:00 ', '2018-10-03 22:08:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tankersley Manor', 53.489404, -1.486268, 35, '2017-09-15 05:34:00 ', '2018-10-03 18:43:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Grove of Narberth', 51.782833, -4.763913, 35, '2017-09-15 05:30:00 ', '2018-10-03 22:31:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('St. Brides Spa Hotel', 51.7089, -4.6982, 35, '2017-09-15 05:30:00 ', '2018-10-03 20:05:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Devonshire Arms At Beeley', 53.203328, -1.60467, 35, '2017-09-08 05:43:00 ', '2018-10-03 20:48:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Punch Bowl Inn and Restaurant', 54.313074, -2.852743, 35, '2017-09-08 05:41:00 ', '2018-10-03 21:51:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bailey Ground Hotel', 54.39432, -3.483791, 35, '2017-09-07 06:01:00 ', '2018-10-03 14:49:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Feversham Arms Hotel & Verbena Spa', 54.247294, -1.063175, 35, '2017-09-07 05:59:00 ', '2018-10-03 17:57:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Coast Restaurant', 51.71642, -4.693882, 35, '2017-09-07 05:58:00 ', '2018-10-03 14:11:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Pig At Combe', 50.773982, -3.21689, 35, '2017-09-07 05:57:00 ', '2018-10-03 20:04:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Beach Boys', 50.530075, -5.012034, 35, '2017-09-07 05:53:00 ', '2018-10-03 15:18:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Ashbourne Hotel', 53.639621, -0.269843, 35, '2017-09-07 05:46:00 ', '2018-10-03 19:04:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Pig in the Wall', 50.899077, -1.407, 35, '2017-09-07 05:45:00 ', '2018-10-03 14:28:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('South Sands Hotel & Restaurant', 50.224615, -3.784584, 35, '2017-09-01 05:47:00 ', '2018-10-03 18:32:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brecon Retreat - Aberyscir', 51.965554, -3.452627, 35, '2017-09-01 05:45:00 ', '2018-12-13 11:49:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Kellbank Hotel', 54.4175, -3.4309, 35, '2017-09-01 05:42:00 ', '2018-10-03 20:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Park Hotel', 51.678292, -4.709391, 35, '2017-09-01 05:39:00 ', '2018-10-03 19:31:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hotel Felix', 52.224454, 0.094236, 35, '2017-09-01 05:36:00 ', '2019-08-23 19:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Wowo Campsite', 50.993114, -0.007874, 35, '2017-09-01 05:36:00 ', '2018-10-03 21:04:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cringletie House Hotel', 55.688439, -3.218717, 35, '2017-09-01 05:35:00 ', '2018-10-03 14:22:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Titanic Hotel Liverpool', 53.42218, -2.999052, 35, '2017-09-01 05:35:00 ', '2018-10-03 17:57:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Belle Vue Barn', 53.640852, -1.875987, 35, '2017-09-01 05:35:00 ', '2018-10-03 15:21:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Another Place', 54.602941, -2.848902, 35, '2017-09-01 05:34:00 ', '2018-10-03 21:39:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Eagle Brae', 57.400085, -4.680843, 35, '2017-09-01 05:34:00 ', '2018-10-03 22:18:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cheltenham Park Hotel', 51.874817, -2.053748, 35, '2017-09-01 05:33:00 ', '2018-10-03 16:40:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Manor House', 51.493458, -2.232071, 35, '2017-09-01 05:31:00 ', '2018-10-03 19:36:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Links Country Park Hotel and Golf Club', 52.934128, 1.246359, 35, '2017-09-01 05:31:00 ', '2018-10-03 16:33:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Baileys Farm Bed and Breakfast', 51.882058, -0.327134, 35, '2017-09-01 05:30:00 ', '2018-10-03 14:30:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Victoria Hotel', 50.677089, -3.244075, 35, '2017-09-01 05:30:00 ', '2018-10-03 19:32:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Meldrum House Country Hotel & Golf Course', 57.351312, -2.313174, 35, '2017-08-24 05:59:00 ', '2018-10-03 17:54:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brampton Grange Estate', 52.282887, -0.931097, 35, '2017-08-18 07:42:00 ', '2018-10-03 19:40:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Gravetye Manor', 51.089302, -0.056507, 35, '2017-08-18 07:40:00 ', '2018-10-03 16:38:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Renaissance Club', 56.051556, -2.809547, 35, '2017-08-18 07:38:00 ', '2018-10-03 21:33:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Steading', 57.894827, -4.05345, 35, '2017-08-02 05:36:00 ', '2018-10-03 20:54:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Old Green Dragon', 53.058692, -1.061694, 35, '2017-08-02 05:31:00 ', '2018-10-03 18:32:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Saunton Sands Hotel', 51.11842, -4.221135, 35, '2017-08-02 05:29:00 ', '2018-10-03 16:35:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Raemoir House Hotel', 57.08549, -2.505439, 35, '2017-08-02 05:29:00 ', '2018-10-03 14:10:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bluestone National Park Resort', 51.783396, -4.801274, 35, '2017-07-28 05:46:00 ', '2018-10-03 20:37:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bayview Hotel', 55.215594, -6.544306, 35, '2017-07-28 05:43:00 ', '2018-10-03 17:50:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sygun Fawr Country House', 53.015329, -4.089655, 35, '2017-07-28 05:42:00 ', '2018-10-03 15:16:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Glenfall House', 51.89421, -2.031568, 35, '2017-07-28 05:40:00 ', '2018-10-03 22:30:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Old Downton Lodge Restaurant With Rooms', 52.35558, -2.84229, 35, '2017-07-28 05:37:00 ', '2018-10-03 17:33:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Diggerland Durham', 54.801434, -1.675714, 35, '2017-07-28 05:36:00 ', '2018-10-03 16:19:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Stawley Wood Farm', 50.999347, -3.334576, 35, '2017-07-28 05:31:00 ', '2018-10-03 17:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Red Rail Farm Bed & Breakfast', 51.950392, -2.658989, 35, '2017-07-28 05:30:00 ', '2018-10-03 14:59:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Nanteos Mansion', 52.388265, -4.028988, 35, '2017-07-28 05:30:00 ', '2018-10-03 17:50:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Devonshire Arms At Pilsley', 53.235946, -1.640703, 35, '2017-07-28 05:28:00 ', '2018-10-03 21:20:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bryncir Garden Centre and Cafe', 52.974161, -4.263637, 35, '2017-07-28 05:27:00 ', '2018-10-03 20:21:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Peckforton Castle', 53.117897, -2.698638, 35, '2017-07-28 05:25:00 ', '2018-10-03 14:26:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Donnington Valley Hotel & Spa', 51.42374, -1.328098, 35, '2017-07-13 21:28:00 ', '2018-10-03 16:53:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('170 Marylebone Road Car Park', 51.522022, -0.159412, 35, '2017-07-13 15:28:00 ', '2018-10-03 16:48:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hoburne Naish Holiday Park', 50.740565, -1.687432, 35, '2017-07-13 15:22:00 ', '2018-10-03 15:25:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Portsonachan Hotel', 56.339353, -5.158073, 35, '2017-07-13 15:21:00 ', '2018-10-03 18:33:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Northney Marina', 50.833464, -0.969182, 35, '2017-07-13 15:09:00 ', '2018-10-03 22:06:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Shamrock Quay', 50.909757, -1.38154, 35, '2017-07-13 14:52:00 ', '2018-10-03 14:43:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Crowne Plaza Gerrards Cross', 51.595456, -0.597343, 35, '2017-07-13 14:49:00 ', '2018-10-03 18:13:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Royal Golf Hotel', 57.879504, -4.023029, 35, '2017-07-13 14:36:00 ', '2018-10-03 21:13:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cherry Tree Lodge', 56.12934, -3.585835, 35, '2017-07-13 14:36:00 ', '2018-10-03 17:26:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('East Cambusmoon Holiday Cottages', 56.036423, -4.519517, 35, '2017-07-13 14:31:00 ', '2018-10-03 14:30:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mercury Yacht Harbour', 50.870977, -1.313358, 35, '2017-07-13 14:29:00 ', '2018-10-03 22:09:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Donnington Valley Golf Club', 51.424781, -1.329515, 35, '2017-07-13 14:14:00 ', '2018-10-03 19:22:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Woolverstone Marina', 52.00665, 1.194251, 35, '2017-07-13 14:13:00 ', '2018-10-03 20:02:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Horseshoe Guesthouse', 52.300341, -3.51307, 35, '2017-07-13 14:11:00 ', '2018-10-03 18:55:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Laurels B&B', 53.000949, -1.917362, 35, '2017-07-13 14:06:00 ', '2018-10-03 14:50:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lainston House', 51.082265, -1.369665, 35, '2017-06-09 14:01:00 ', '2018-10-03 21:28:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('St David's Shopping Centre', 51.479103, -3.174819, 35, '2017-06-09 13:39:00 ', '2018-10-03 15:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Qbic Hotel London City', 51.516146, -0.06752, 35, '2017-06-09 13:06:00 ', '2018-10-03 20:26:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Isle of Eriska Hotel and Spa', 56.533528, -5.41183, 35, '2017-06-09 12:52:00 ', '2019-11-09 21:08:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Clarendon Hotel', 51.468616, 0.009909, 35, '2017-06-01 06:15:00 ', '2018-10-11 12:21:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bloomfields Shopping Centre', 54.647366, -5.656311, 35, '2017-05-27 05:52:00 ', '2018-10-03 14:56:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ravenstone Lodge Hotel', 54.657235, -3.187692, 35, '2017-05-27 05:52:00 ', '2018-10-03 19:17:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Coach House At Lodge Farm', 52.548064, 0.386225, 35, '2017-05-27 05:52:00 ', '2018-10-03 20:28:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Best Western Rockingham Forest Hotel', 52.508648, -0.713252, 35, '2017-05-24 06:03:00 ', '2018-10-03 16:35:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Citipark Gade Car Park', 51.657402, -0.400939, 35, '2017-05-21 05:28:00 ', '2018-10-03 15:23:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Old Tredegar', 51.786649, -3.804058, 35, '2017-05-21 05:28:00 ', '2018-10-03 18:46:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Fairfield the Old Rectory', 53.21382, -0.969085, 35, '2017-05-21 05:27:00 ', '2018-10-03 14:34:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bankburn House', 58.820246, -2.955429, 35, '2017-05-21 05:26:00 ', '2018-10-03 17:49:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Exmoor White Horse Inn', 51.133114, -3.641299, 35, '2017-05-20 05:35:00 ', '2018-10-03 20:59:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The White Swan Inn', 54.245886, -0.777369, 35, '2017-05-19 05:33:00 ', '2018-10-03 16:54:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Storrs Hall', 54.339078, -2.936193, 35, '2017-05-19 05:31:00 ', '2019-11-15 04:38:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Watergate Bay Hotel', 50.444752, -5.041104, 35, '2017-05-18 05:41:00 ', '2018-10-03 17:22:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Erneside Shopping Centre', 54.342478, -7.635394, 35, '2017-05-18 05:39:00 ', '2018-10-03 15:52:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Park Hotel', 51.075185, -4.053657, 35, '2017-05-16 05:27:00 ', '2018-10-03 14:52:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Little Coombe Farm', 50.373373, -3.620392, 35, '2017-05-15 05:28:00 ', '2018-10-03 16:14:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Back to the Garden', 52.903474, 1.041804, 35, '2017-05-06 05:27:00 ', '2018-10-03 20:14:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Donington Park Farmhouse Hotel', 52.824899, -1.386217, 35, '2017-05-03 05:28:00 ', '2018-10-03 16:06:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Diggerland Devon', 50.877788, -3.379079, 35, '2017-05-02 05:24:00 ', '2018-10-03 20:33:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Diggerland Yorkshire', 53.717362, -1.383567, 35, '2017-05-02 05:24:00 ', '2018-10-03 19:38:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Seaview Hotel', 50.720493, -1.10985, 35, '2017-04-12 05:41:00 ', '2018-10-03 19:16:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Norfolk River Cottages', 52.69920908643359, 1.4676698592271853, 35, '2017-04-10 05:38:00 ', '2019-01-01 11:22:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Abbotsford Lodge', 56.241248, -4.202774, 35, '2017-04-09 05:40:00 ', '2018-10-03 17:24:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The White Swan', 53.916342, -1.277242, 35, '2017-04-08 05:41:00 ', '2018-10-03 18:14:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tewin Bury Farm Hotel', 51.811017, -0.164831, 35, '2017-04-06 05:43:00 ', '2018-10-03 19:25:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Duke of York', 53.987683, -0.95066, 35, '2017-04-06 05:43:00 ', '2019-01-02 22:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Dragon Hotel', 51.621436, -3.944424, 35, '2017-04-06 05:41:00 ', '2018-10-03 21:08:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Crowne Plaza Resort, Colchester Five Lakes', 51.786238, 0.804974, 35, '2017-04-05 05:40:00 ', '2018-10-03 18:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ashbrook Lets', 51.566745, -1.239634, 35, '2017-03-27 05:25:00 ', '2018-10-03 19:08:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Swan & Talbot', 53.929479, -1.385126, 35, '2017-03-26 05:26:00 ', '2018-10-03 19:15:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Redpoint Climbing Centre', 51.433797, -2.611556, 35, '2017-03-24 06:30:00 ', '2018-10-03 20:49:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Gardeners Arms', 51.99872, -2.002626, 35, '2017-03-24 06:29:00 ', '2018-10-03 15:51:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ocean View Chalets', 55.191617, -6.242496, 35, '2017-03-23 06:29:00 ', '2018-10-03 16:11:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Concierge Camping', 50.851885, -0.848095, 35, '2017-03-23 06:28:00 ', '2018-10-03 17:20:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Outlet', 54.331207, -6.276309, 35, '2017-03-23 06:28:00 ', '2018-10-03 21:37:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Grey Seal Coffee Roastery', 52.931908, 1.037459, 35, '2017-03-22 06:36:00 ', '2018-10-03 19:06:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Oakley Court Hotel', 51.490159, -0.672405, 35, '2017-03-22 06:36:00 ', '2018-10-03 20:12:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Dunston Hall Hotel', 52.5714346986175, 1.28315868105507, 35, '2017-03-22 06:36:00 ', '2019-10-22 05:47:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Queen's Head', 54.011137, -1.655352, 35, '2017-03-22 06:35:00 ', '2018-10-03 18:48:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Junction 1 Antrim Outlet', 54.730532, -6.233081, 35, '2017-03-22 06:34:00 ', '2018-10-03 19:47:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Galgorm Castle', 54.855313, -6.31209, 35, '2017-03-21 18:52:00 ', '2018-10-03 18:30:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Trattoria San Marco', 53.696245, -2.810528, 35, '2017-03-21 18:51:00 ', '2018-10-03 21:22:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Alexander House Hotel', 51.107856, -0.066426, 35, '2017-03-21 18:51:00 ', '2018-10-03 21:09:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Centre Livingston', 55.8848884395316, -3.51416725552212, 35, '2017-03-21 18:51:00 ', '2019-08-29 05:34:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rooms Inn', 54.968488, -1.632041, 35, '2017-02-26 06:35:00 ', '2018-10-03 18:52:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sandbanks Hotel', 50.694552, -1.930783, 35, '2017-02-25 06:37:00 ', '2018-10-03 22:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Champneys Springs Health Resort', 52.711603, -1.47919, 35, '2017-02-25 06:36:00 ', '2018-10-03 20:53:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Citipark Clements Road', 51.557413, 0.07284, 35, '2017-02-24 06:37:00 ', '2018-10-03 17:26:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Parc le Breos House', 51.584496, -4.124613, 35, '2017-02-24 06:36:00 ', '2018-10-03 19:13:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Arundell Arms Hotel', 50.643243, -4.284137, 35, '2017-02-16 17:30:00 ', '2018-10-03 19:00:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tylney Hall Hotel', 51.291671, -0.983266, 35, '2017-02-16 17:30:00 ', '2018-10-03 20:58:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Clevedon Hall', 51.437214, -2.864817, 35, '2017-02-16 17:26:00 ', '2018-10-03 20:47:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Citipark 30 Tariff Street', 53.48154, -2.231821, 35, '2017-02-16 17:23:00 ', '2018-10-03 15:10:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Moresby Hall', 54.57382, -3.573709, 35, '2017-02-16 17:20:00 ', '2018-10-03 15:42:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Citipark Bell Street', 51.520409, -0.169598, 35, '2017-02-16 17:07:00 ', '2018-10-03 14:04:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Stapleford Park Hotel', 52.754039, -0.795858, 35, '2017-02-16 17:04:00 ', '2018-10-03 15:25:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Sprowston Manor Marriott Hotel', 52.664274, 1.341352, 35, '2017-02-16 16:58:00 ', '2018-10-03 16:06:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Mandarin Oriental Hyde Park', 51.502148, -0.159996, 35, '2017-02-16 16:57:00 ', '2018-10-03 22:35:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hideaway House', 50.804713, -4.524367, 35, '2017-02-16 14:53:00 ', '2018-10-03 20:03:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Middlesex Stadium', 51.58669, -0.441616, 35, '2017-02-03 15:40:00 ', '2018-10-03 15:46:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Greenbanks', 52.68039600647736, 0.8423342910460851, 35, '2017-02-03 15:30:00 ', '2019-01-01 11:24:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hamble Yacht Services', 50.862351, -1.3132496, 35, '2017-02-03 15:27:00 ', '2018-10-03 14:12:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rockliffe Hall', 54.47874, -1.544861, 35, '2017-02-03 15:11:00 ', '2018-10-03 18:10:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Chelsea Design Centre', 51.474985, -0.181761, 35, '2017-02-03 15:06:00 ', '2018-10-03 20:37:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('No 131', 51.8971, -2.080145, 35, '2017-02-03 15:01:00 ', '2018-10-03 14:16:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Stoneleigh Park Lodge', 52.339949, -1.527122, 35, '2017-02-03 14:59:00 ', '2018-10-03 22:25:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Royal Duchy Hotel', 50.147491, -5.059909, 35, '2017-02-03 14:57:00 ', '2018-10-03 17:23:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Citipark Sutton', 51.658417, -0.395483, 35, '2017-02-03 14:50:00 ', '2018-10-03 16:32:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Citipark Clipstone Street', 51.521862, -0.140954, 35, '2017-02-03 14:43:00 ', '2018-10-03 16:23:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Burgh Island Hotel', 50.279813, -3.898081, 35, '2017-02-03 14:39:00 ', '2018-10-03 18:09:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Holiday Inn Garden Court Wolverhampton', 52.603618, -2.141018, 35, '2017-02-03 14:34:00 ', '2018-10-03 17:55:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hellidon Lakes Golf & Spa Hotel', 52.217197, -1.260284, 35, '2017-02-03 14:32:00 ', '2018-10-03 20:00:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Citipark Merrion Centre', 53.802178, -1.543019, 35, '2017-02-03 13:58:00 ', '2018-10-03 15:16:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Linen Mill Film & Television Studios', 54.339022, -7.304325, 35, '2017-02-03 13:56:00 ', '2018-10-03 17:01:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Champneys Henlow', 52.031714, -0.27668, 35, '2017-02-03 13:55:00 ', '2018-10-03 19:58:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Goldsborough Hall', 53.999045, -1.416372, 35, '2017-02-03 13:54:00 ', '2018-10-03 21:20:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Haven Hotel', 50.683042, -1.947168, 35, '2017-02-03 13:41:00 ', '2018-10-03 21:15:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The White Horse', 52.966055, 0.678897, 35, '2017-02-03 13:39:00 ', '2018-10-03 14:38:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Fairmont St Andrews', 56.320419, -2.730775, 35, '2017-02-03 13:39:00 ', '2018-10-03 19:25:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Talbot Hotel', 51.301481, -0.489212, 35, '2017-02-03 13:36:00 ', '2018-10-03 18:42:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Salcombe Harbour Hotel & Spa', 50.235264, -3.768555, 35, '2017-02-03 13:34:00 ', '2018-10-03 17:01:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Plume of Feathers', 50.351357, -5.009725, 35, '2017-02-03 13:24:00 ', '2018-10-03 17:26:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Doubletree By Hilton Cadbury House', 51.381558, -2.806812, 35, '2017-02-03 11:53:00 ', '2018-10-03 20:00:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cotswold House Hotel and Spa', 52.050554, -1.782291, 35, '2017-02-03 11:18:00 ', '2019-11-09 13:22:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Novotel London Greenwich', 51.477586, -0.01415, 35, '2017-02-03 11:16:00 ', '2018-10-03 18:32:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Fox', 51.961173, -0.2199, 35, '2017-02-03 11:13:00 ', '2018-10-03 22:26:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Fonab Castle', 56.697811, -3.74045, 35, '2017-02-03 09:14:00 ', '2018-10-03 20:25:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Harbour Heights Hotel', 50.699218, -1.930397, 35, '2017-02-03 09:13:00 ', '2018-10-03 22:02:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bedford Lodge Hotel', 52.25101, 0.415356, 35, '2017-02-03 09:12:00 ', '2018-10-03 14:57:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lucknam Park Hotel', 51.455099, -2.259527, 35, '2017-02-03 09:08:00 ', '2018-10-03 18:17:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bents Garden & Home', 53.4760414966117, -2.49404357678941, 35, '2017-02-02 22:52:00 ', '2018-10-03 20:51:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ellenborough Park Hotel', 51.926518, -2.041776, 35, '2017-02-02 22:47:00 ', '2018-10-03 18:06:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Whatley Manor Hotel and Spa', 51.583676, -2.1491, 35, '2017-02-02 17:28:00 ', '2018-10-03 18:05:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Carlyon Bay Hotel', 50.337394, -4.739296, 35, '2017-02-02 17:27:00 ', '2018-10-03 18:27:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('No 38 the Park', 51.905982, -2.070301, 35, '2017-02-01 09:43:00 ', '2018-10-03 21:21:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Meon Valley Marriott Hotel & Country Club', 50.921647, -1.210175, 35, '2017-02-01 09:33:00 ', '2018-10-03 21:52:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Club and Spa', 51.381069, -2.808293, 35, '2017-01-30 18:36:00 ', '2018-10-03 19:30:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Ardnamurchan Distillery', 56.691483, -5.940657, 35, '2017-01-30 17:53:00 ', '2018-10-03 15:15:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Three Glens House', 55.18522, -3.911187, 35, '2017-01-29 18:11:00 ', '2018-10-03 14:55:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Old Piggery', 52.810236, 1.498429, 35, '2016-12-14 20:25:00 ', '2018-10-03 22:35:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Four Seasons Hotel Hampshire', 51.257236, -0.89615, 35, '2016-12-14 20:25:00 ', '2018-10-03 18:09:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Carbis Bay Hotel', 50.198227, -5.466627, 35, '2016-12-14 19:37:00 ', '2018-10-03 15:34:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Q-Park Oxford Street', 51.516593, -0.144297, 35, '2016-12-14 19:30:00 ', '2018-10-03 14:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ocean Village Marina', 50.896945, -1.388259, 35, '2016-12-14 17:55:00 ', '2018-10-03 22:12:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pendragon Country House', 50.652631, -4.628714, 35, '2016-12-14 17:55:00 ', '2018-10-03 16:15:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Parc-Y-Scarlets', 51.678578, -4.127873, 35, '2016-12-14 17:55:00 ', '2018-10-03 17:45:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Champneys Forest Mere', 51.064152, -0.835497, 35, '2016-12-14 17:36:00 ', '2018-10-03 20:30:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Champneys Tring', 51.770056, -0.629643, 35, '2016-12-14 17:36:00 ', '2018-10-03 14:38:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Dales Country House Hotel', 52.931584, 1.185421, 35, '2016-12-14 17:34:00 ', '2018-10-03 19:51:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Gonville Hotel', 52.199851, 0.128561, 35, '2016-12-14 17:32:00 ', '2018-10-03 20:02:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Harrods', 51.499395, -0.163234, 35, '2016-12-14 17:25:00 ', '2018-10-03 18:13:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Langaller Manor House', 51.036076, -3.044447, 35, '2016-12-14 17:24:00 ', '2018-12-20 12:34:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('l'Ortolan Restaurant', 51.40864, -0.954065, 35, '2016-12-14 17:02:00 ', '2018-10-03 14:23:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Babington House', 51.257913, -2.425058, 35, '2016-12-14 17:00:00 ', '2018-10-03 17:21:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Q-Park Harley Street', 51.517933, -0.145537, 35, '2016-12-14 17:00:00 ', '2018-10-03 14:57:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Rudding Park Hotel', 53.973773, -1.492644, 35, '2016-12-14 16:58:00 ', '2018-10-03 15:02:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Glyndebourne Opera', 50.878292, 0.064169, 35, '2016-12-14 16:41:00 ', '2018-10-03 19:30:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Imperial Hotel', 52.613105, 1.737679, 35, '2016-12-14 16:41:00 ', '2018-10-03 15:28:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Wild Boar Inn', 54.350961, -2.870612, 35, '2016-12-14 16:39:00 ', '2018-10-03 17:30:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Luton Hoo Hotel Golf and Spa', 51.854446, -0.39796, 35, '2016-12-14 16:38:00 ', '2018-10-03 17:10:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Elen's Castle Hotel and Restaurant', 53.054727, -3.885812, 35, '2016-12-14 16:04:00 ', '2019-04-26 09:26:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Stoke Park', 51.535297, -0.605029, 35, '2016-12-13 20:56:00 ', '2018-10-03 17:34:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Lewinnick Lodge', 50.411985, -5.120182, 35, '2016-12-13 20:55:00 ', '2018-10-03 22:13:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Ashdown Park Hotel & Country Club', 51.070971, 0.041044, 35, '2016-12-11 18:22:00 ', '2018-10-03 19:08:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Camberley', 53.996658, -1.540473, 35, '2016-12-11 18:22:00 ', '2018-10-03 19:01:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Linthwaite House Hotel', 54.352693, -2.912637, 35, '2016-12-11 18:19:00 ', '2018-10-03 15:06:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Montagu Arms Hotel', 50.818394, -1.451415, 35, '2016-12-11 18:18:00 ', '2018-10-03 22:22:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Brimstone Hotel', 54.437159, -3.039814, 35, '2016-12-11 18:11:00 ', '2018-10-03 15:10:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Samling Hotel', 54.414629, -2.950827, 35, '2016-12-11 18:11:00 ', '2018-10-03 16:44:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Torridon', 57.528688, -5.528182, 35, '2016-12-11 17:59:00 ', '2018-10-03 18:19:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hamble Point Marina', 50.855836, -1.316898, 35, '2016-12-11 14:29:00 ', '2018-10-03 17:30:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Cobb Quay Marina', 50.721772, -2.003477, 35, '2016-12-11 14:29:00 ', '2018-10-03 18:43:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Royal Oak Hotel Restaurant and Pub', 51.466953, -1.206437, 35, '2016-12-11 14:28:00 ', '2018-10-03 17:54:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hambleton Hall', 52.657344, -0.668105, 35, '2016-12-11 13:46:00 ', '2018-10-03 14:51:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Diggerland', 51.38258, 0.478702, 35, '2016-12-11 10:18:00 ', '2018-10-03 18:38:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Citipark Leeds Dock', 53.790416, -1.530348, 35, '2016-12-11 10:18:00 ', '2018-10-03 21:02:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Q-Park Tower Bridge', 51.502367, -0.073739, 35, '2016-12-10 16:38:00 ', '2018-10-03 21:37:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Scarlet Hotel', 50.468163, -5.02977, 35, '2016-12-10 16:36:00 ', '2018-10-03 22:22:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Pig Brockenhurst', 50.82435, -1.553656, 35, '2016-12-10 16:26:00 ', '2018-10-03 20:07:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Soho Farmhouse', 51.940126, -1.42165, 35, '2016-12-09 09:56:00 ', '2018-10-03 19:27:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('TWR Y Felin Hotel', 51.8795684568384, -5.26028756322944, 35, '2016-12-06 12:17:00 ', '2018-10-03 15:48:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Indigo West India Quay', 51.508362, -0.023907, 35, '2016-12-04 21:55:00 ', '2018-10-03 14:47:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Pontlands Park', 51.70923, 0.50793, 35, '2016-12-04 21:50:00 ', '2018-10-03 14:57:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tag Farnborough Airport', 51.283219, -0.776574, 35, '2016-12-04 10:59:00 ', '2018-10-03 22:27:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Old Rectory', 50.693404, -4.657036, 35, '2016-12-04 10:52:00 ', '2018-10-03 17:31:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Queen Anne's Marina', 50.365046, -4.128979, 35, '2016-12-03 19:43:00 ', '2018-10-03 19:10:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tewkesbury Park', 51.979296, -2.171702, 35, '2016-12-02 18:11:00 ', '2018-10-03 14:16:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Royal Sportsman Hotel', 52.928395, -4.133445, 35, '2016-12-02 18:10:00 ', '2018-10-03 21:08:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Careys Manor Hotel & Senspa', 50.823201, -1.571568, 35, '2016-12-02 18:05:00 ', '2018-10-03 22:24:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Mayfair Car Park', 51.50497, -0.151181, 35, '2016-12-02 18:05:00 ', '2018-10-03 15:43:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Penderyn Distillery', 51.763688, -3.52129, 35, '2016-12-02 18:04:00 ', '2018-10-03 22:30:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Hintlesham Hall Hotel', 52.053384, 1.036673, 35, '2016-12-02 17:52:00 ', '2018-10-03 16:42:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('The Browns B&B', 51.7710028312483, -4.46224389259032, 35, '2016-11-19 16:51:00 ', '2018-10-03 16:33:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Bunchrew House Hotel', 57.482401790514, -4.30027306079864, 35, '2016-09-20 09:37:00 ', '2018-10-03 21:44:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('National Motorcycle Museum', 52.4437595298002, -1.7070333749939, 35, '2015-12-02 14:44:00 ', '2018-10-03 18:18:00 ', 0, NULL);
INSERT INTO public.geofences (name, latitude, longitude, radius, inserted_at, updated_at, cost_per_kwh, session_fee) VALUES ('Tesla Store and Service Centre', 51.1353243390917, -0.191257379167951, 35, '2015-10-19 16:01:00 ', '2016-11-23 19:57:00 ', 0, NULL);
 
@DaveW

I’ve noticed that you’ve updated your website to include instructions for adding all the Supercharger and Destination Charger sites as geofences in TeslaMate.

I imagine I’m being completely dense here (it comes with age...) but other than meaning TeslaMate knows the cost of charging at all these sites, are there any other advantages of doing this?
 
@DaveW

I’ve noticed that you’ve updated your website to include instructions for adding all the Supercharger and Destination Charger sites as geofences in TeslaMate.

I imagine I’m being completely dense here (it comes with age...) but other than meaning TeslaMate knows the cost of charging at all these sites, are there any other advantages of doing this?

They appear correctly in drives as locations, rather than 'KFC Warwick, M40' or similar I'm guessing?
 
  • Like
Reactions: Roy W. and drewpost
@DaveW

I’ve noticed that you’ve updated your website to include instructions for adding all the Supercharger and Destination Charger sites as geofences in TeslaMate.

I imagine I’m being completely dense here (it comes with age...) but other than meaning TeslaMate knows the cost of charging at all these sites, are there any other advantages of doing this?

Pretty much as @bhanorthy has said, it's so you know where you've charged and how much it cost (if there's a cost associated) :)
 
  • Like
Reactions: Roy W.
Hi all

I haven't yet installed TeslaMate on my RPI4 (which I'm definitely going to). I was browsing the documentation and saw that there are 2 ways of installing: One for local use and one open to the internet so that you can contact it everywhere in the world.

I was thinking: If I would install PiVPN along with the basic install of TeslaMate (so the one that can only be accessed via the local network)
Will I than be able to connect it once the VPN is connected? So in this way, I would be able to safely connect it from everywhere in the world without the advanced installation

Does anyone has the knowledge to confirm this?
 
PiVPN is just a scripted installation of OpenVPN, a widely used open-source VPN project used in many commercial products! Like all VPN's it's intended to be used to securely connect parts of a network together over an insecure medium (e.g. the internet). Depending on how OpenVPN is configured you can access just the RPi or your entire home network, or anywhere in between.

So yes, you install the matching VPN client on your laptop/smartphone, connect back to the VPN server and it's the same as if you're on your home wifi.

Personally I use OpenVPN Access Server, the commercial SSL VPN tool from the OpenVPN project. Again it's the same technology under-the-hood, just with a Web GUI for configuring OpenVPN and managing users. It's free for 2 concurrent connections which is perfect connecting back to home networks.